From 185e529fb27a3a7262a3e284e78c7b953d39fb1d Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Sat, 21 Dec 2024 20:03:24 -0800 Subject: [PATCH 1/7] feat: add try catch, while, while do, enum, and for --- grammar-declarations.js | 8 + grammar.js | 68 +- package.json | 28 +- src/grammar.json | 678 +- src/node-types.json | 3100 +- src/parser.c | 256896 ++++++++++++++++++++---------------- src/tree_sitter/alloc.h | 8 +- src/tree_sitter/array.h | 3 +- src/tree_sitter/parser.h | 1 + 9 files changed, 148389 insertions(+), 112401 deletions(-) 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.js b/grammar.js index f4b3fea..702962f 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', + '(', + field('range', $.range_expression), + ')', + field('body', $.statement), + ), + range_expression: ($) => prec( 1, - seq($.identifier, 'in', choice(seq($.integer, $._rangeOperator, $.integer), $.identifier)), + choice( + seq($.identifier, 'in', choice(seq($.integer, $._rangeOperator, $.integer), $.identifier, $.expression)), + seq($.pair, 'in', choice($.identifier, $.expression)), + ) ), expression: ($) => @@ -161,7 +182,6 @@ const haxe_grammar = { $.runtime_type_check_expression, $.cast_expression, $.type_trace_expression, - $.range_expression, $._parenthesized_expression, $.switch_expression, // simple expression, or chained. @@ -235,17 +255,53 @@ 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: ($) => prec.right(seq( + 'while', + field('condition', $._parenthesized_expression), + field('body', $.statement), + ), + ), + + do_while_statement: ($) => prec.right(seq( + 'do', + field('body', choice($.expression, $.block)), + 'while', + field('condition', $._parenthesized_expression), + $._semicolon, + ), + ), + _call: ($) => prec( 1, 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..722759e 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,111 @@ } ] }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "range", + "content": { + "type": "SYMBOL", + "name": "range_expression" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, "range_expression": { "type": "PREC", "value": 1, "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "integer" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "SYMBOL", + "name": "_rangeOperator" + }, + { + "type": "SYMBOL", + "name": "integer" + } + ] }, { "type": "SYMBOL", - "name": "_rangeOperator" + "name": "identifier" }, { "type": "SYMBOL", - "name": "integer" + "name": "expression" } ] - }, + } + ] + }, + { + "type": "SEQ", + "members": [ { "type": "SYMBOL", - "name": "identifier" + "name": "pair" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] } ] } @@ -739,10 +923,6 @@ "type": "SYMBOL", "name": "type_trace_expression" }, - { - "type": "SYMBOL", - "name": "range_expression" - }, { "type": "SYMBOL", "name": "_parenthesized_expression" @@ -1342,69 +1522,205 @@ } ] }, + "try_statement": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "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": 1, + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "else", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "while_statement": { + "type": "PREC_RIGHT", + "value": 0, "content": { "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "while" + }, { "type": "FIELD", - "name": "name", + "name": "condition", "content": { - "type": "STRING", - "value": "if" + "type": "SYMBOL", + "name": "_parenthesized_expression" } }, { "type": "FIELD", - "name": "arguments_list", + "name": "body", "content": { "type": "SYMBOL", - "name": "_arg_list" + "name": "statement" } + } + ] + } + }, + "do_while_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + } }, { - "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": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_parenthesized_expression" + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" } ] } @@ -1450,20 +1766,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 +2119,10 @@ { "type": "SYMBOL", "name": "variable_declaration" + }, + { + "type": "SYMBOL", + "name": "enum_declaration" } ] }, @@ -1918,25 +2291,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 +2336,7 @@ "name": "super_class_name", "content": { "type": "SYMBOL", - "name": "_lhs_expression" + "name": "_type_path" } }, { @@ -2016,7 +2375,7 @@ "name": "interface_name", "content": { "type": "SYMBOL", - "name": "_lhs_expression" + "name": "_type_path" } }, { @@ -2053,16 +2412,11 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "final" - }, - { - "type": "BLANK" - } - ] + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } }, { "type": "STRING", @@ -2105,7 +2459,7 @@ "name": "interface_name", "content": { "type": "SYMBOL", - "name": "_lhs_expression" + "name": "_type_path" } }, { @@ -2138,6 +2492,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 +2527,13 @@ "name": "metadata" } }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } + }, { "type": "STRING", "value": "typedef" @@ -2226,30 +2612,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", @@ -3298,10 +3675,6 @@ "typedef_declaration", "type" ], - [ - "call_expression", - "_constructor_call" - ], [ "_rhs_expression", "pair" @@ -3345,6 +3718,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..ae4184d 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 @@ -90,10 +94,6 @@ "type": "pair", "named": true }, - { - "type": "range_expression", - "named": true - }, { "type": "runtime_type_check_expression", "named": true @@ -157,10 +157,18 @@ "type": "declaration", "named": true }, + { + "type": "do_while_statement", + "named": true + }, { "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "identifier", "named": true @@ -205,10 +213,6 @@ "type": "preprocessor_statement", "named": true }, - { - "type": "range_expression", - "named": true - }, { "type": "runtime_type_check_expression", "named": true @@ -229,6 +233,10 @@ "type": "throw_statement", "named": true }, + { + "type": "try_statement", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -236,6 +244,10 @@ { "type": "using_statement", "named": true + }, + { + "type": "while_statement", + "named": true } ] } @@ -325,10 +337,6 @@ "type": "pair", "named": true }, - { - "type": "range_expression", - "named": true - }, { "type": "return", "named": false @@ -359,9 +367,19 @@ } ] }, + "constructor": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_name", + "named": true + } + ] + }, "object": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -375,9 +393,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 +451,18 @@ "type": "declaration", "named": true }, + { + "type": "do_while_statement", + "named": true + }, { "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "identifier", "named": true @@ -473,10 +507,6 @@ "type": "preprocessor_statement", "named": true }, - { - "type": "range_expression", - "named": true - }, { "type": "runtime_type_check_expression", "named": true @@ -497,6 +527,10 @@ "type": "throw_statement", "named": true }, + { + "type": "try_statement", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -504,6 +538,10 @@ { "type": "using_statement", "named": true + }, + { + "type": "while_statement", + "named": true } ] } @@ -579,82 +617,116 @@ } }, { - "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": "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 +739,11 @@ "named": false }, { - "type": ",", - "named": false + "type": "array", + "named": true }, { - "type": "array", + "type": "block", "named": true }, { @@ -690,18 +762,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,12 +818,16 @@ "type": "operator", "named": true }, + { + "type": "package_statement", + "named": true + }, { "type": "pair", "named": true }, { - "type": "range_expression", + "type": "preprocessor_statement", "named": true }, { @@ -754,6 +850,14 @@ "type": "switch_expression", "named": true }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -761,38 +865,1348 @@ { "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": { + "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": "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": "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": "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": "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": "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": 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": "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 + } + ] + }, + "range": { + "multiple": false, + "required": true, + "types": [ + { + "type": "range_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": "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": { @@ -822,10 +2236,22 @@ "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 @@ -834,6 +2260,10 @@ "type": "map", "named": true }, + { + "type": "member_expression", + "named": true + }, { "type": "null", "named": true @@ -842,203 +2272,226 @@ "type": "object", "named": true }, + { + "type": "operator", + "named": true + }, { "type": "pair", "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": "type_trace_expression", "named": true } ] } }, { - "type": "function_declaration", + "type": "module", "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 - } - ] - } - }, + "root": true, + "fields": {}, "children": { "multiple": true, "required": false, "types": [ { - "type": "function_arg", + "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": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", "named": true }, { - "type": "metadata", + "type": "throw_statement", "named": true }, { - "type": "type_params", + "type": "try_statement", "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", + "type": "type_trace_expression", "named": true }, { - "type": "type", + "type": "using_statement", + "named": true + }, + { + "type": "while_statement", "named": true } ] } }, { - "type": "identifier", + "type": "null", "named": true, "fields": {} }, { - "type": "import_statement", + "type": "object", "named": true, "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "identifier", - "named": true - }, - { - "type": "package_name", - "named": true - }, - { - "type": "type_name", + "type": "pair", "named": true } ] } }, { - "type": "integer", + "type": "operator", "named": true, "fields": {} }, { - "type": "interface_declaration", + "type": "package_name", + "named": true, + "fields": {} + }, + { + "type": "package_statement", "named": true, "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "interface_name": { + "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": ".", + "named": false }, { - "type": "member_expression", + "type": "package_name", "named": true } ] } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "type_params", - "named": true - } - ] } }, { - "type": "interpolation", + "type": "pair", "named": true, "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "array", @@ -1092,10 +2545,6 @@ "type": "pair", "named": true }, - { - "type": "range_expression", - "named": true - }, { "type": "runtime_type_check_expression", "named": true @@ -1113,132 +2562,20 @@ "named": true }, { - "type": "type_trace_expression", - "named": true - } - ] - } - }, - { - "type": "map", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "pair", + "type": "type", "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", + "type": "type_trace_expression", "named": true } ] } }, { - "type": "metadata", + "type": "preprocessor_statement", "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "member_expression", - "named": true - } - ] - } - }, + "fields": {}, "children": { "multiple": true, "required": false, @@ -1295,10 +2632,6 @@ "type": "pair", "named": true }, - { - "type": "range_expression", - "named": true - }, { "type": "runtime_type_check_expression", "named": true @@ -1323,21 +2656,17 @@ } }, { - "type": "module", + "type": "range_expression", "named": true, "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "array", "named": true }, - { - "type": "block", - "named": true - }, { "type": "bool", "named": true @@ -1351,23 +2680,11 @@ "named": true }, { - "type": "conditional_statement", - "named": true - }, - { - "type": "declaration", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", + "type": "float", "named": true }, { - "type": "import_statement", + "type": "identifier", "named": true }, { @@ -1394,22 +2711,10 @@ "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 @@ -1426,28 +2731,20 @@ "type": "switch_expression", "named": true }, - { - "type": "throw_statement", - "named": true - }, { "type": "type_trace_expression", "named": true - }, - { - "type": "using_statement", - "named": true } ] } }, { - "type": "null", + "type": "runtime_type_check_expression", "named": true, "fields": {} }, { - "type": "object", + "type": "string", "named": true, "fields": {}, "children": { @@ -1455,49 +2752,126 @@ "required": false, "types": [ { - "type": "pair", + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", "named": true } ] } }, { - "type": "operator", - "named": true, - "fields": {} - }, - { - "type": "package_name", - "named": true, - "fields": {} - }, - { - "type": "package_statement", + "type": "subscript_expression", "named": true, "fields": { - "name": { + "index": { "multiple": true, - "required": false, + "required": true, "types": [ { - "type": ".", + "type": "(", "named": false }, { - "type": "package_name", + "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": "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": "pair", - "named": true, - "fields": {}, + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "array", @@ -1551,10 +2925,6 @@ "type": "pair", "named": true }, - { - "type": "range_expression", - "named": true - }, { "type": "runtime_type_check_expression", "named": true @@ -1571,10 +2941,6 @@ "type": "switch_expression", "named": true }, - { - "type": "type", - "named": true - }, { "type": "type_trace_expression", "named": true @@ -1583,17 +2949,21 @@ } }, { - "type": "preprocessor_statement", + "type": "switch_expression", "named": true, "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "array", "named": true }, + { + "type": "block", + "named": true + }, { "type": "bool", "named": true @@ -1642,10 +3012,6 @@ "type": "pair", "named": true }, - { - "type": "range_expression", - "named": true - }, { "type": "runtime_type_check_expression", "named": true @@ -1670,13 +3036,33 @@ } }, { - "type": "range_expression", + "type": "throw_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 @@ -1684,39 +3070,59 @@ { "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", + "type": "map", "named": true }, { - "type": "interpolation", + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "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": "subscript_expression", + "type": "try_statement", "named": true, "fields": { - "index": { + "body": { "multiple": true, "required": true, "types": [ @@ -1729,7 +3135,11 @@ "named": false }, { - "type": "array", + "type": "array", + "named": true + }, + { + "type": "block", "named": true }, { @@ -1748,18 +3158,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 @@ -1784,12 +3214,16 @@ "type": "operator", "named": true }, + { + "type": "package_statement", + "named": true + }, { "type": "pair", "named": true }, { - "type": "range_expression", + "type": "preprocessor_statement", "named": true }, { @@ -1812,6 +3246,14 @@ "type": "switch_expression", "named": true }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -1819,191 +3261,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 +3399,6 @@ "type": "call_expression", "named": true }, - { - "type": "cast_expression", - "named": true - }, { "type": "float", "named": true @@ -2049,58 +3427,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", + "type": "string", "named": true } ] } }, { - "type": "type", + "type": "typedef_declaration", "named": true, "fields": { - "built_in": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "type_name": { + "name": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", @@ -2115,10 +3459,10 @@ }, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { - "type": "function_type", + "type": "block", "named": true }, { @@ -2130,7 +3474,11 @@ "named": true }, { - "type": "pair", + "type": "metadata", + "named": true + }, + { + "type": "type", "named": true }, { @@ -2141,52 +3489,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 +3556,10 @@ "type": "call_expression", "named": true }, + { + "type": "cast_expression", + "named": true + }, { "type": "float", "named": true @@ -2219,6 +3580,10 @@ "type": "member_expression", "named": true }, + { + "type": "metadata", + "named": true + }, { "type": "null", "named": true @@ -2227,204 +3592,293 @@ "type": "object", "named": true }, + { + "type": "operator", + "named": true + }, { "type": "pair", "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": 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": "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": "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 +3957,10 @@ "type": ".", "named": false }, + { + "type": "...", + "named": false + }, { "type": "/", "named": false @@ -2607,6 +4065,10 @@ "type": "abstract", "named": false }, + { + "type": "as", + "named": false + }, { "type": "break", "named": false @@ -2651,10 +4113,6 @@ "type": "else", "named": false }, - { - "type": "else if", - "named": false - }, { "type": "enum", "named": false @@ -2731,10 +4189,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..b4d9a8b 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 3497 +#define LARGE_STATE_COUNT 846 +#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 17 #define MAX_ALIAS_SEQUENCE_LENGTH 13 -#define PRODUCTION_ID_COUNT 113 +#define PRODUCTION_ID_COUNT 117 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,20 @@ 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_range = 13, + field_return_type = 14, + field_super_class_name = 15, + field_type = 16, + field_type_name = 17, }; static const char * const ts_field_names[] = { @@ -1560,12 +1620,16 @@ 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", [field_member] = "member", [field_name] = "name", [field_object] = "object", + [field_range] = "range", [field_return_type] = "return_type", [field_super_class_name] = "super_class_name", [field_type] = "type", @@ -1574,112 +1638,113 @@ 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}, + [2] = {.index = 2, .length = 2}, + [3] = {.index = 4, .length = 1}, [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}, - [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}, + [6] = {.index = 7, .length = 1}, + [7] = {.index = 8, .length = 2}, + [8] = {.index = 10, .length = 1}, + [9] = {.index = 11, .length = 2}, + [10] = {.index = 13, .length = 2}, + [11] = {.index = 15, .length = 2}, + [12] = {.index = 17, .length = 1}, + [13] = {.index = 18, .length = 1}, + [14] = {.index = 19, .length = 2}, + [15] = {.index = 21, .length = 2}, + [16] = {.index = 23, .length = 2}, + [17] = {.index = 25, .length = 2}, + [18] = {.index = 27, .length = 2}, [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}, + [21] = {.index = 34, .length = 3}, + [22] = {.index = 37, .length = 2}, + [23] = {.index = 39, .length = 2}, + [24] = {.index = 41, .length = 1}, + [25] = {.index = 42, .length = 2}, + [26] = {.index = 44, .length = 3}, + [27] = {.index = 47, .length = 2}, + [28] = {.index = 49, .length = 1}, + [29] = {.index = 50, .length = 1}, + [30] = {.index = 51, .length = 2}, + [31] = {.index = 53, .length = 1}, + [32] = {.index = 54, .length = 2}, + [34] = {.index = 56, .length = 2}, + [35] = {.index = 58, .length = 3}, + [36] = {.index = 61, .length = 4}, + [37] = {.index = 65, .length = 4}, + [38] = {.index = 69, .length = 2}, + [39] = {.index = 71, .length = 2}, + [40] = {.index = 73, .length = 2}, + [41] = {.index = 75, .length = 2}, + [42] = {.index = 77, .length = 3}, + [43] = {.index = 80, .length = 3}, + [44] = {.index = 83, .length = 2}, + [46] = {.index = 85, .length = 1}, + [47] = {.index = 86, .length = 2}, + [48] = {.index = 88, .length = 3}, + [49] = {.index = 91, .length = 1}, + [50] = {.index = 92, .length = 2}, + [52] = {.index = 94, .length = 1}, + [53] = {.index = 95, .length = 3}, + [54] = {.index = 98, .length = 5}, + [55] = {.index = 103, .length = 3}, + [56] = {.index = 106, .length = 2}, + [57] = {.index = 108, .length = 2}, + [58] = {.index = 110, .length = 3}, + [59] = {.index = 113, .length = 4}, + [60] = {.index = 117, .length = 3}, + [61] = {.index = 49, .length = 1}, + [62] = {.index = 120, .length = 2}, + [63] = {.index = 122, .length = 2}, + [64] = {.index = 124, .length = 2}, + [65] = {.index = 126, .length = 3}, + [66] = {.index = 129, .length = 3}, + [67] = {.index = 132, .length = 2}, + [68] = {.index = 134, .length = 3}, + [71] = {.index = 137, .length = 4}, + [72] = {.index = 141, .length = 2}, + [73] = {.index = 143, .length = 2}, + [74] = {.index = 145, .length = 4}, + [75] = {.index = 149, .length = 3}, + [76] = {.index = 152, .length = 4}, + [77] = {.index = 49, .length = 1}, + [78] = {.index = 156, .length = 2}, + [79] = {.index = 158, .length = 3}, + [80] = {.index = 161, .length = 2}, + [81] = {.index = 163, .length = 3}, + [82] = {.index = 166, .length = 4}, + [83] = {.index = 170, .length = 3}, + [84] = {.index = 173, .length = 2}, + [85] = {.index = 175, .length = 2}, + [86] = {.index = 177, .length = 2}, + [87] = {.index = 179, .length = 3}, + [88] = {.index = 182, .length = 3}, + [90] = {.index = 185, .length = 3}, + [91] = {.index = 188, .length = 4}, + [92] = {.index = 192, .length = 3}, + [93] = {.index = 195, .length = 2}, + [94] = {.index = 197, .length = 4}, + [95] = {.index = 201, .length = 3}, + [96] = {.index = 204, .length = 4}, + [97] = {.index = 208, .length = 2}, + [98] = {.index = 210, .length = 3}, + [99] = {.index = 213, .length = 2}, + [100] = {.index = 215, .length = 3}, + [101] = {.index = 218, .length = 4}, + [102] = {.index = 222, .length = 3}, + [103] = {.index = 225, .length = 2}, + [104] = {.index = 227, .length = 2}, + [106] = {.index = 229, .length = 4}, + [107] = {.index = 233, .length = 4}, + [108] = {.index = 237, .length = 3}, + [109] = {.index = 240, .length = 2}, + [110] = {.index = 242, .length = 4}, + [111] = {.index = 246, .length = 3}, + [112] = {.index = 249, .length = 4}, + [113] = {.index = 253, .length = 2}, + [114] = {.index = 255, .length = 3}, + [115] = {.index = 258, .length = 4}, + [116] = {.index = 262, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1687,288 +1752,370 @@ 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_arguments_list, 1}, {field_object, 0}, - [9] = + [7] = {field_member, 0}, - [10] = + [8] = {field_member, 2, .inherited = true}, {field_object, 0}, - [12] = + [10] = + {field_body, 1}, + [11] = + {field_body, 2}, + {field_condition, 1}, + [13] = + {field_arguments_list, 2}, + {field_constructor, 1}, + [15] = {field_body, 2}, {field_name, 1}, - [14] = + [17] = {field_type_name, 0}, - [15] = + [18] = {field_built_in, 0}, - [16] = + [19] = {field_arguments_list, 2}, {field_object, 0}, - [18] = + [21] = {field_literal, 0}, {field_member, 2, .inherited = true}, - [20] = + [23] = {field_name, 1}, {field_name, 2}, - [22] = + [25] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, - [24] = + [27] = {field_member, 3, .inherited = true}, {field_object, 0}, - [26] = + [29] = + {field_body, 1}, + {field_body, 2}, + [31] = + {field_body, 2}, {field_body, 3}, - {field_name, 2}, - [28] = + {field_condition, 1}, + [34] = + {field_body, 2}, + {field_condition, 1}, + {field_else, 3}, + [37] = + {field_arguments_list, 3}, + {field_constructor, 1}, + [39] = + {field_arguments_list, 3}, + {field_constructor, 2}, + [41] = {field_interface_name, 1}, - [29] = + [42] = {field_body, 3}, {field_name, 1}, - [31] = + [44] = {field_body, 3}, {field_interface_name, 2, .inherited = true}, {field_name, 1}, - [34] = + [47] = {field_interface_name, 0, .inherited = true}, {field_interface_name, 1, .inherited = true}, - [36] = + [49] = {field_name, 0}, - [37] = + [50] = {field_index, 2}, - [38] = + [51] = {field_literal, 0}, {field_member, 3, .inherited = true}, - [40] = + [53] = {field_name, 2}, - [41] = - {field_body, 4}, + [54] = + {field_body, 3}, {field_name, 2}, - [43] = + [56] = {field_body, 4}, - {field_interface_name, 3, .inherited = true}, - {field_name, 2}, - [46] = + {field_range, 2}, + [58] = + {field_body, 1}, + {field_body, 2}, + {field_body, 3}, + [61] = + {field_body, 2}, + {field_body, 3}, + {field_condition, 1}, + {field_else, 4}, + [65] = + {field_body, 2}, + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + [69] = + {field_body, 1}, + {field_condition, 3}, + [71] = + {field_arguments_list, 4}, + {field_constructor, 2}, + [73] = + {field_arguments_list, 4}, + {field_constructor, 3}, + [75] = {field_name, 1}, {field_type, 3}, - [48] = + [77] = {field_body, 4}, {field_name, 1}, {field_super_class_name, 3}, - [51] = + [80] = {field_body, 4}, {field_interface_name, 3, .inherited = true}, {field_name, 1}, - [54] = + [83] = {field_index, 2}, {field_index, 3}, - [56] = + [85] = {field_return_type, 2}, - [57] = + [86] = + {field_body, 4}, + {field_name, 2}, + [88] = {field_body, 4}, + {field_interface_name, 3, .inherited = true}, + {field_name, 2}, + [91] = {field_name, 3}, - [59] = + [92] = + {field_body, 4}, {field_name, 3}, - [60] = + [94] = {field_type, 4}, - [61] = - {field_body, 5}, - {field_name, 2}, - {field_super_class_name, 4}, - [64] = + [95] = + {field_body, 4}, {field_body, 5}, - {field_interface_name, 4, .inherited = true}, - {field_name, 2}, - [67] = + {field_range, 2}, + [98] = + {field_body, 2}, + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + {field_else, 5}, + [103] = + {field_body, 1}, + {field_body, 2}, + {field_condition, 4}, + [106] = + {field_arguments_list, 5}, + {field_constructor, 3}, + [108] = {field_name, 1}, {field_type, 4}, - [69] = + [110] = {field_body, 5}, {field_name, 1}, {field_super_class_name, 3}, - [72] = + [113] = {field_body, 5}, {field_interface_name, 4, .inherited = true}, {field_name, 1}, {field_super_class_name, 3}, - [76] = + [117] = {field_body, 5}, {field_name, 1}, {field_super_class_name, 4}, - [79] = + [120] = {field_body, 4}, {field_name, 1}, - [81] = + [122] = {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] = + [124] = {field_name, 2}, {field_type, 4}, - [90] = - {field_body, 6}, + [126] = + {field_body, 5}, {field_name, 2}, {field_super_class_name, 4}, - [93] = - {field_body, 6}, - {field_interface_name, 5, .inherited = true}, + [129] = + {field_body, 5}, + {field_interface_name, 4, .inherited = true}, {field_name, 2}, - {field_super_class_name, 4}, - [97] = + [132] = + {field_body, 5}, + {field_name, 3}, + [134] = + {field_body, 5}, + {field_interface_name, 4, .inherited = true}, + {field_name, 3}, + [137] = + {field_body, 4}, + {field_body, 5}, {field_body, 6}, - {field_name, 2}, - {field_super_class_name, 5}, - [100] = + {field_range, 2}, + [141] = + {field_arguments_list, 2}, + {field_body, 4}, + [143] = {field_name, 1}, {field_type, 5}, - [102] = + [145] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 1}, {field_super_class_name, 3}, - [106] = + [149] = {field_body, 6}, {field_name, 1}, {field_super_class_name, 4}, - [109] = + [152] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 1}, {field_super_class_name, 4}, - [113] = + [156] = {field_name, 1}, {field_return_type, 5}, - [115] = + [158] = {field_body, 5}, {field_name, 1}, {field_return_type, 4}, - [118] = + [161] = + {field_name, 2}, + {field_type, 5}, + [163] = {field_body, 6}, - {field_name, 3}, - {field_super_class_name, 5}, - [121] = + {field_name, 2}, + {field_super_class_name, 4}, + [166] = {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}, + [170] = + {field_body, 6}, + {field_name, 2}, + {field_super_class_name, 5}, + [173] = {field_body, 5}, {field_name, 2}, - [128] = + [175] = {field_name, 2}, {field_return_type, 5}, - [130] = + [177] = {field_name, 3}, {field_type, 5}, - [132] = + [179] = + {field_body, 6}, + {field_name, 3}, + {field_super_class_name, 5}, + [182] = + {field_body, 6}, + {field_interface_name, 5, .inherited = true}, + {field_name, 3}, + [185] = + {field_arguments_list, 2}, + {field_body, 4}, + {field_body, 5}, + [188] = + {field_body, 7}, + {field_interface_name, 6, .inherited = true}, + {field_name, 1}, + {field_super_class_name, 4}, + [192] = + {field_body, 6}, + {field_name, 1}, + {field_return_type, 5}, + [195] = + {field_name, 2}, + {field_type, 6}, + [197] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 2}, {field_super_class_name, 4}, - [136] = + [201] = {field_body, 7}, {field_name, 2}, {field_super_class_name, 5}, - [139] = + [204] = {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] = + [208] = + {field_name, 2}, + {field_return_type, 6}, + [210] = {field_body, 6}, - {field_name, 1}, + {field_name, 2}, {field_return_type, 5}, - [150] = + [213] = + {field_name, 3}, + {field_type, 6}, + [215] = {field_body, 7}, {field_name, 3}, {field_super_class_name, 5}, - [153] = + [218] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 3}, {field_super_class_name, 5}, - [157] = + [222] = {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] = + [225] = {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] = + [227] = {field_name, 3}, {field_return_type, 6}, - [173] = + [229] = + {field_arguments_list, 2}, + {field_body, 4}, + {field_body, 5}, + {field_body, 6}, + [233] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 2}, {field_super_class_name, 5}, - [177] = + [237] = + {field_body, 7}, + {field_name, 2}, + {field_return_type, 6}, + [240] = + {field_name, 3}, + {field_type, 7}, + [242] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 3}, {field_super_class_name, 5}, - [181] = + [246] = {field_body, 8}, {field_name, 3}, {field_super_class_name, 6}, - [184] = + [249] = {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] = + [253] = {field_name, 3}, {field_return_type, 7}, - [195] = + [255] = {field_body, 7}, {field_name, 3}, {field_return_type, 6}, - [198] = + [258] = {field_body, 9}, {field_interface_name, 8, .inherited = true}, {field_name, 3}, {field_super_class_name, 6}, - [202] = + [262] = {field_body, 8}, {field_name, 3}, {field_return_type, 7}, @@ -1976,95 +2123,44 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [6] = { + [5] = { [1] = anon_alias_sym_type_check, }, - [16] = { + [18] = { [1] = sym_operator, }, - [23] = { - [1] = sym_identifier, - }, - [25] = { + [30] = { [1] = sym_operator, }, - [27] = { - [3] = sym_identifier, - }, [33] = { - [1] = sym_identifier, + [3] = sym_identifier, }, - [35] = { + [45] = { [1] = anon_alias_sym_type, }, - [38] = { - [2] = sym_identifier, - }, - [40] = { + [51] = { [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, - }, - [106] = { - [3] = sym_identifier, - }, - [107] = { - [3] = sym_identifier, + [89] = { + [4] = sym_identifier, + [6] = sym_identifier, }, - [111] = { - [3] = sym_identifier, + [105] = { + [5] = sym_identifier, + [7] = sym_identifier, }, }; @@ -2088,179 +2184,179 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 2, [4] = 4, - [5] = 5, - [6] = 2, - [7] = 4, - [8] = 5, - [9] = 4, - [10] = 5, - [11] = 5, - [12] = 5, - [13] = 2, - [14] = 2, - [15] = 5, + [5] = 2, + [6] = 4, + [7] = 7, + [8] = 7, + [9] = 2, + [10] = 7, + [11] = 4, + [12] = 12, + [13] = 13, + [14] = 13, + [15] = 15, [16] = 16, [17] = 17, - [18] = 17, + [18] = 18, [19] = 19, [20] = 20, [21] = 21, [22] = 21, - [23] = 23, + [23] = 15, [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, + [25] = 21, + [26] = 16, + [27] = 17, + [28] = 20, + [29] = 24, + [30] = 15, + [31] = 15, + [32] = 21, + [33] = 15, + [34] = 24, + [35] = 16, + [36] = 17, + [37] = 20, + [38] = 15, + [39] = 24, + [40] = 16, + [41] = 17, + [42] = 20, + [43] = 15, + [44] = 15, + [45] = 21, + [46] = 15, + [47] = 24, + [48] = 16, + [49] = 20, + [50] = 15, + [51] = 24, + [52] = 16, + [53] = 17, + [54] = 15, + [55] = 21, + [56] = 21, + [57] = 24, + [58] = 16, + [59] = 20, + [60] = 24, + [61] = 16, + [62] = 17, + [63] = 24, + [64] = 16, + [65] = 15, + [66] = 24, + [67] = 16, + [68] = 20, + [69] = 15, + [70] = 24, + [71] = 16, + [72] = 20, + [73] = 24, + [74] = 16, + [75] = 24, + [76] = 16, + [77] = 17, + [78] = 24, + [79] = 16, + [80] = 21, + [81] = 21, + [82] = 21, + [83] = 21, + [84] = 21, + [85] = 21, + [86] = 21, + [87] = 15, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 91, [92] = 92, [93] = 93, [94] = 94, - [95] = 94, - [96] = 96, + [95] = 89, + [96] = 90, [97] = 97, - [98] = 98, + [98] = 97, [99] = 99, [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, - [104] = 103, + [101] = 92, + [102] = 93, + [103] = 91, + [104] = 88, [105] = 94, - [106] = 106, - [107] = 107, - [108] = 94, - [109] = 109, + [106] = 89, + [107] = 99, + [108] = 108, + [109] = 100, [110] = 110, - [111] = 111, - [112] = 100, - [113] = 113, - [114] = 114, - [115] = 115, - [116] = 116, - [117] = 117, - [118] = 113, + [111] = 108, + [112] = 110, + [113] = 89, + [114] = 92, + [115] = 91, + [116] = 88, + [117] = 93, + [118] = 94, [119] = 119, - [120] = 94, - [121] = 117, - [122] = 92, - [123] = 110, - [124] = 94, - [125] = 125, - [126] = 126, - [127] = 126, - [128] = 99, - [129] = 98, - [130] = 94, - [131] = 131, - [132] = 102, - [133] = 126, + [120] = 120, + [121] = 110, + [122] = 120, + [123] = 119, + [124] = 110, + [125] = 92, + [126] = 93, + [127] = 91, + [128] = 88, + [129] = 94, + [130] = 130, + [131] = 130, + [132] = 132, + [133] = 133, [134] = 134, [135] = 135, - [136] = 111, - [137] = 94, + [136] = 136, + [137] = 137, [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, + [139] = 137, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 137, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 140, + [156] = 137, + [157] = 140, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 140, + [166] = 166, + [167] = 167, + [168] = 168, [169] = 169, - [170] = 170, - [171] = 101, + [170] = 140, + [171] = 171, [172] = 172, [173] = 173, [174] = 174, [175] = 175, [176] = 176, - [177] = 177, + [177] = 137, [178] = 178, [179] = 179, [180] = 180, @@ -2285,131 +2381,131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [199] = 199, [200] = 200, [201] = 201, - [202] = 202, - [203] = 203, + [202] = 201, + [203] = 201, [204] = 204, [205] = 205, - [206] = 206, - [207] = 207, - [208] = 208, - [209] = 172, - [210] = 205, - [211] = 211, - [212] = 175, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 173, - [221] = 221, - [222] = 222, - [223] = 174, + [206] = 135, + [207] = 152, + [208] = 168, + [209] = 204, + [210] = 204, + [211] = 204, + [212] = 200, + [213] = 201, + [214] = 201, + [215] = 204, + [216] = 174, + [217] = 178, + [218] = 174, + [219] = 205, + [220] = 161, + [221] = 162, + [222] = 143, + [223] = 223, [224] = 224, [225] = 225, [226] = 226, [227] = 227, [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, - [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, - [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, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 186, + [243] = 235, + [244] = 193, + [245] = 141, + [246] = 142, + [247] = 145, + [248] = 147, + [249] = 148, + [250] = 149, + [251] = 151, + [252] = 235, + [253] = 153, + [254] = 154, + [255] = 158, + [256] = 159, + [257] = 160, + [258] = 163, + [259] = 164, + [260] = 199, + [261] = 167, + [262] = 262, + [263] = 172, + [264] = 173, + [265] = 175, + [266] = 179, + [267] = 180, + [268] = 181, + [269] = 182, + [270] = 183, + [271] = 184, + [272] = 185, + [273] = 188, + [274] = 189, + [275] = 190, + [276] = 191, + [277] = 192, + [278] = 194, + [279] = 195, + [280] = 196, + [281] = 197, + [282] = 198, + [283] = 136, + [284] = 146, + [285] = 235, + [286] = 161, + [287] = 162, + [288] = 169, + [289] = 171, + [290] = 178, + [291] = 187, + [292] = 135, + [293] = 150, + [294] = 235, + [295] = 295, + [296] = 166, [297] = 297, - [298] = 297, - [299] = 175, - [300] = 173, - [301] = 177, - [302] = 297, - [303] = 258, - [304] = 296, - [305] = 290, - [306] = 297, + [298] = 298, + [299] = 238, + [300] = 235, + [301] = 301, + [302] = 235, + [303] = 235, + [304] = 235, + [305] = 235, + [306] = 235, [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 313, + [308] = 238, + [309] = 235, + [310] = 235, + [311] = 235, + [312] = 238, + [313] = 235, [314] = 314, - [315] = 315, - [316] = 283, + [315] = 235, + [316] = 235, [317] = 317, - [318] = 288, + [318] = 229, [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, + [320] = 319, + [321] = 239, + [322] = 262, + [323] = 298, + [324] = 307, + [325] = 314, + [326] = 317, [327] = 327, [328] = 328, [329] = 329, @@ -2418,56 +2514,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [332] = 332, [333] = 333, [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, + [335] = 223, + [336] = 224, + [337] = 225, + [338] = 226, + [339] = 227, + [340] = 228, + [341] = 230, + [342] = 231, + [343] = 232, + [344] = 233, + [345] = 235, + [346] = 327, + [347] = 328, + [348] = 319, + [349] = 329, + [350] = 319, + [351] = 330, + [352] = 319, + [353] = 235, + [354] = 235, + [355] = 235, + [356] = 331, + [357] = 332, + [358] = 333, + [359] = 334, + [360] = 176, [361] = 361, [362] = 362, [363] = 363, [364] = 364, [365] = 365, - [366] = 366, - [367] = 367, + [366] = 363, + [367] = 234, [368] = 368, [369] = 369, - [370] = 370, + [370] = 362, [371] = 371, - [372] = 372, + [372] = 178, [373] = 373, [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, + [375] = 161, + [376] = 135, + [377] = 162, + [378] = 374, + [379] = 174, [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, + [381] = 362, + [382] = 374, + [383] = 362, + [384] = 374, [385] = 385, [386] = 386, [387] = 387, @@ -2511,25 +2607,25 @@ 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, + [446] = 361, [447] = 447, [448] = 448, [449] = 449, @@ -2563,7 +2659,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 +2667,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,579 +2678,579 @@ 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] = 295, + [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] = 546, + [547] = 547, + [548] = 486, + [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, - [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, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 486, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 486, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 361, + [571] = 571, + [572] = 361, + [573] = 573, + [574] = 574, + [575] = 441, + [576] = 573, + [577] = 574, + [578] = 578, + [579] = 441, + [580] = 573, + [581] = 574, + [582] = 441, + [583] = 583, + [584] = 584, + [585] = 578, + [586] = 573, + [587] = 574, + [588] = 588, + [589] = 361, + [590] = 369, + [591] = 574, + [592] = 365, + [593] = 364, + [594] = 368, + [595] = 365, + [596] = 365, + [597] = 578, + [598] = 368, + [599] = 369, + [600] = 441, + [601] = 369, + [602] = 573, + [603] = 368, + [604] = 441, + [605] = 371, + [606] = 361, + [607] = 573, + [608] = 574, + [609] = 441, + [610] = 441, + [611] = 373, + [612] = 573, + [613] = 574, + [614] = 578, + [615] = 574, + [616] = 380, + [617] = 573, + [618] = 409, + [619] = 451, + [620] = 444, + [621] = 445, + [622] = 447, + [623] = 448, + [624] = 496, + [625] = 497, + [626] = 505, + [627] = 508, + [628] = 473, + [629] = 450, + [630] = 460, + [631] = 549, + [632] = 550, + [633] = 553, + [634] = 463, + [635] = 453, + [636] = 555, + [637] = 556, + [638] = 559, + [639] = 563, + [640] = 469, + [641] = 571, + [642] = 461, + [643] = 386, + [644] = 387, + [645] = 474, + [646] = 365, + [647] = 388, + [648] = 454, + [649] = 389, + [650] = 365, + [651] = 390, + [652] = 391, + [653] = 392, + [654] = 393, + [655] = 476, + [656] = 477, + [657] = 478, + [658] = 479, + [659] = 480, + [660] = 394, + [661] = 481, + [662] = 482, + [663] = 483, + [664] = 485, + [665] = 487, + [666] = 457, + [667] = 488, + [668] = 395, + [669] = 491, + [670] = 369, + [671] = 492, + [672] = 458, + [673] = 459, + [674] = 396, + [675] = 462, + [676] = 494, + [677] = 495, + [678] = 588, + [679] = 397, + [680] = 499, + [681] = 398, + [682] = 385, + [683] = 502, + [684] = 503, + [685] = 504, + [686] = 506, + [687] = 399, + [688] = 400, + [689] = 507, + [690] = 509, + [691] = 510, + [692] = 511, + [693] = 512, + [694] = 513, + [695] = 464, + [696] = 514, + [697] = 515, + [698] = 516, + [699] = 517, + [700] = 518, + [701] = 401, + [702] = 402, + [703] = 368, + [704] = 519, + [705] = 403, + [706] = 404, + [707] = 465, + [708] = 405, + [709] = 520, + [710] = 406, + [711] = 407, + [712] = 472, + [713] = 475, + [714] = 484, + [715] = 410, + [716] = 466, + [717] = 467, + [718] = 468, + [719] = 411, + [720] = 412, + [721] = 413, + [722] = 489, + [723] = 414, + [724] = 490, + [725] = 415, + [726] = 521, + [727] = 522, + [728] = 416, + [729] = 417, + [730] = 523, + [731] = 418, + [732] = 524, + [733] = 369, + [734] = 525, + [735] = 526, + [736] = 527, + [737] = 528, + [738] = 529, + [739] = 530, + [740] = 531, + [741] = 419, + [742] = 420, + [743] = 532, + [744] = 421, + [745] = 422, + [746] = 423, + [747] = 533, + [748] = 534, + [749] = 535, + [750] = 536, + [751] = 537, + [752] = 538, + [753] = 456, + [754] = 539, + [755] = 424, + [756] = 425, + [757] = 426, + [758] = 540, + [759] = 427, + [760] = 541, + [761] = 542, + [762] = 428, + [763] = 543, + [764] = 544, + [765] = 545, + [766] = 493, + [767] = 546, + [768] = 429, + [769] = 547, + [770] = 551, + [771] = 552, + [772] = 430, + [773] = 554, + [774] = 557, + [775] = 558, + [776] = 431, + [777] = 561, + [778] = 562, + [779] = 432, + [780] = 565, + [781] = 566, + [782] = 368, + [783] = 449, + [784] = 567, + [785] = 568, + [786] = 569, + [787] = 583, + [788] = 433, + [789] = 434, + [790] = 584, + [791] = 470, + [792] = 435, + [793] = 471, + [794] = 436, + [795] = 437, + [796] = 438, + [797] = 439, + [798] = 440, + [799] = 501, + [800] = 498, + [801] = 442, + [802] = 452, + [803] = 443, + [804] = 455, + [805] = 408, + [806] = 806, + [807] = 806, + [808] = 808, + [809] = 808, + [810] = 810, + [811] = 810, + [812] = 91, + [813] = 92, + [814] = 93, + [815] = 88, + [816] = 94, + [817] = 92, + [818] = 93, + [819] = 94, + [820] = 88, + [821] = 91, + [822] = 89, + [823] = 90, + [824] = 91, + [825] = 94, + [826] = 88, + [827] = 92, + [828] = 93, + [829] = 108, + [830] = 110, + [831] = 89, + [832] = 99, [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, + [834] = 93, + [835] = 91, + [836] = 88, + [837] = 94, + [838] = 89, + [839] = 90, + [840] = 92, + [841] = 90, + [842] = 89, + [843] = 843, + [844] = 110, + [845] = 845, + [846] = 90, + [847] = 89, + [848] = 89, + [849] = 90, + [850] = 295, + [851] = 90, + [852] = 89, + [853] = 90, + [854] = 90, + [855] = 89, + [856] = 89, + [857] = 90, + [858] = 89, + [859] = 88, + [860] = 91, + [861] = 174, + [862] = 93, + [863] = 94, + [864] = 92, + [865] = 92, + [866] = 93, + [867] = 91, + [868] = 92, + [869] = 88, + [870] = 94, + [871] = 92, + [872] = 93, + [873] = 91, + [874] = 88, + [875] = 94, + [876] = 88, + [877] = 94, + [878] = 91, + [879] = 92, + [880] = 93, + [881] = 91, + [882] = 93, + [883] = 88, + [884] = 94, + [885] = 93, + [886] = 94, + [887] = 92, + [888] = 91, + [889] = 88, + [890] = 94, + [891] = 92, + [892] = 93, + [893] = 91, + [894] = 88, + [895] = 174, + [896] = 92, + [897] = 93, + [898] = 91, + [899] = 93, + [900] = 900, + [901] = 91, + [902] = 88, + [903] = 94, + [904] = 94, + [905] = 174, + [906] = 88, + [907] = 92, + [908] = 362, + [909] = 166, + [910] = 295, + [911] = 146, + [912] = 363, + [913] = 362, + [914] = 362, + [915] = 374, [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 918, - [921] = 921, + [917] = 374, + [918] = 486, + [919] = 486, + [920] = 486, + [921] = 486, [922] = 922, [923] = 923, - [924] = 924, - [925] = 916, - [926] = 926, - [927] = 908, - [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, + [924] = 108, + [925] = 99, + [926] = 99, + [927] = 108, + [928] = 110, + [929] = 99, + [930] = 99, + [931] = 110, + [932] = 110, + [933] = 110, + [934] = 174, + [935] = 174, + [936] = 120, + [937] = 110, + [938] = 110, + [939] = 119, + [940] = 108, + [941] = 136, + [942] = 193, + [943] = 99, + [944] = 174, + [945] = 99, + [946] = 166, + [947] = 176, + [948] = 99, + [949] = 108, + [950] = 186, + [951] = 295, + [952] = 174, [953] = 953, - [954] = 954, - [955] = 947, - [956] = 956, - [957] = 957, - [958] = 958, + [954] = 174, + [955] = 955, + [956] = 174, + [957] = 955, + [958] = 953, [959] = 953, - [960] = 960, - [961] = 907, - [962] = 962, - [963] = 909, - [964] = 946, - [965] = 909, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, + [960] = 295, + [961] = 955, + [962] = 174, + [963] = 953, + [964] = 953, + [965] = 955, + [966] = 955, + [967] = 166, + [968] = 174, + [969] = 295, [970] = 970, [971] = 971, [972] = 972, - [973] = 921, + [973] = 971, [974] = 974, - [975] = 975, - [976] = 907, + [975] = 974, + [976] = 166, [977] = 977, - [978] = 909, + [978] = 110, [979] = 979, [980] = 980, - [981] = 912, - [982] = 982, + [981] = 193, + [982] = 970, [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, - [1012] = 1012, - [1013] = 929, - [1014] = 975, - [1015] = 949, - [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, - [1040] = 1040, - [1041] = 1040, - [1042] = 1040, - [1043] = 284, - [1044] = 1044, - [1045] = 29, - [1046] = 30, + [984] = 99, + [985] = 110, + [986] = 110, + [987] = 987, + [988] = 983, + [989] = 980, + [990] = 99, + [991] = 108, + [992] = 99, + [993] = 110, + [994] = 983, + [995] = 995, + [996] = 99, + [997] = 193, + [998] = 99, + [999] = 983, + [1000] = 108, + [1001] = 108, + [1002] = 972, + [1003] = 99, + [1004] = 108, + [1005] = 979, + [1006] = 1006, + [1007] = 1007, + [1008] = 108, + [1009] = 110, + [1010] = 99, + [1011] = 1007, + [1012] = 99, + [1013] = 970, + [1014] = 99, + [1015] = 1015, + [1016] = 987, + [1017] = 136, + [1018] = 1018, + [1019] = 176, + [1020] = 1018, + [1021] = 970, + [1022] = 166, + [1023] = 136, + [1024] = 970, + [1025] = 176, + [1026] = 995, + [1027] = 186, + [1028] = 977, + [1029] = 295, + [1030] = 174, + [1031] = 1015, + [1032] = 1006, + [1033] = 983, + [1034] = 186, + [1035] = 91, + [1036] = 1036, + [1037] = 99, + [1038] = 92, + [1039] = 1039, + [1040] = 94, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 166, + [1045] = 1045, + [1046] = 1046, [1047] = 1047, - [1048] = 31, - [1049] = 39, - [1050] = 1044, - [1051] = 1047, - [1052] = 28, - [1053] = 284, - [1054] = 32, + [1048] = 1045, + [1049] = 1049, + [1050] = 1043, + [1051] = 1051, + [1052] = 88, + [1053] = 120, + [1054] = 1051, [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, + [1056] = 1055, + [1057] = 108, + [1058] = 93, + [1059] = 1059, + [1060] = 1039, + [1061] = 295, + [1062] = 1062, + [1063] = 1047, + [1064] = 1062, + [1065] = 1059, + [1066] = 119, + [1067] = 1041, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, @@ -3162,7 +3258,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1072, + [1079] = 1079, [1080] = 1080, [1081] = 1081, [1082] = 1082, @@ -3171,1561 +3267,1561 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1073, - [1089] = 1074, - [1090] = 1087, - [1091] = 33, - [1092] = 1086, - [1093] = 1075, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, [1094] = 1094, - [1095] = 31, - [1096] = 39, - [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, + [1095] = 1095, + [1096] = 1096, + [1097] = 99, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1073, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1081, + [1112] = 1106, + [1113] = 1113, + [1114] = 1068, + [1115] = 1115, [1116] = 1116, [1117] = 1117, - [1118] = 297, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 284, - [1123] = 1123, - [1124] = 1124, - [1125] = 39, - [1126] = 33, + [1118] = 1069, + [1119] = 1072, + [1120] = 1086, + [1121] = 1095, + [1122] = 1103, + [1123] = 1105, + [1124] = 1108, + [1125] = 1110, + [1126] = 1126, [1127] = 1127, - [1128] = 1116, + [1128] = 1128, [1129] = 1129, [1130] = 1130, [1131] = 1131, [1132] = 1132, - [1133] = 39, + [1133] = 1133, [1134] = 1134, - [1135] = 297, - [1136] = 284, - [1137] = 297, - [1138] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 284, + [1141] = 1141, [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, - [1156] = 1156, - [1157] = 39, - [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, - [1182] = 1182, - [1183] = 1123, - [1184] = 197, - [1185] = 176, - [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, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1070, + [1152] = 1126, + [1153] = 1071, + [1154] = 1074, + [1155] = 1075, + [1156] = 1076, + [1157] = 1077, + [1158] = 1078, + [1159] = 1079, + [1160] = 1080, + [1161] = 1082, + [1162] = 1083, + [1163] = 1084, + [1164] = 1087, + [1165] = 1088, + [1166] = 1089, + [1167] = 1090, + [1168] = 1091, + [1169] = 1092, + [1170] = 1093, + [1171] = 1094, + [1172] = 1096, + [1173] = 1098, + [1174] = 1099, + [1175] = 1100, + [1176] = 1101, + [1177] = 1109, + [1178] = 1127, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1128, + [1183] = 1113, + [1184] = 1129, + [1185] = 1113, + [1186] = 1116, + [1187] = 1130, + [1188] = 1117, + [1189] = 1086, + [1190] = 1190, + [1191] = 1131, + [1192] = 1115, + [1193] = 1113, + [1194] = 1116, + [1195] = 1117, + [1196] = 1086, + [1197] = 1132, + [1198] = 1133, + [1199] = 1116, + [1200] = 1086, + [1201] = 1201, + [1202] = 1202, + [1203] = 1134, + [1204] = 1204, + [1205] = 1179, + [1206] = 1190, + [1207] = 1207, + [1208] = 1208, + [1209] = 1116, + [1210] = 1135, + [1211] = 110, + [1212] = 1136, + [1213] = 1137, + [1214] = 1138, + [1215] = 1139, + [1216] = 1202, + [1217] = 1179, + [1218] = 1140, + [1219] = 110, + [1220] = 110, + [1221] = 1141, + [1222] = 1202, + [1223] = 1179, + [1224] = 1142, + [1225] = 1202, + [1226] = 1226, + [1227] = 1143, + [1228] = 1144, + [1229] = 1145, + [1230] = 1146, + [1231] = 1117, + [1232] = 1147, + [1233] = 108, + [1234] = 1148, + [1235] = 1113, + [1236] = 1117, + [1237] = 1149, + [1238] = 1117, + [1239] = 1113, + [1240] = 1117, + [1241] = 1113, + [1242] = 1150, + [1243] = 1243, + [1244] = 1113, + [1245] = 1117, + [1246] = 1113, + [1247] = 1204, + [1248] = 1202, + [1249] = 1179, + [1250] = 1202, + [1251] = 1179, + [1252] = 1202, + [1253] = 1179, + [1254] = 1202, + [1255] = 1179, + [1256] = 1202, + [1257] = 1179, + [1258] = 1202, + [1259] = 1179, + [1260] = 1202, + [1261] = 1179, + [1262] = 1179, + [1263] = 1202, + [1264] = 1179, + [1265] = 1117, + [1266] = 1202, + [1267] = 1179, + [1268] = 1202, + [1269] = 1269, + [1270] = 1270, + [1271] = 1269, + [1272] = 92, + [1273] = 93, + [1274] = 91, + [1275] = 88, + [1276] = 94, + [1277] = 1270, + [1278] = 1278, + [1279] = 90, + [1280] = 1278, + [1281] = 90, + [1282] = 92, + [1283] = 93, + [1284] = 91, + [1285] = 88, + [1286] = 94, + [1287] = 362, + [1288] = 362, + [1289] = 362, + [1290] = 362, + [1291] = 374, + [1292] = 89, + [1293] = 92, + [1294] = 374, + [1295] = 374, + [1296] = 89, + [1297] = 93, + [1298] = 91, + [1299] = 374, + [1300] = 88, + [1301] = 94, + [1302] = 363, + [1303] = 1303, + [1304] = 1303, + [1305] = 1303, + [1306] = 1303, + [1307] = 1307, + [1308] = 363, + [1309] = 1309, + [1310] = 94, + [1311] = 1311, + [1312] = 1312, [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, + [1314] = 1314, + [1315] = 1315, + [1316] = 362, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, + [1321] = 362, + [1322] = 1322, + [1323] = 362, + [1324] = 1317, + [1325] = 486, + [1326] = 90, + [1327] = 1327, [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1330, - [1332] = 1330, - [1333] = 1333, - [1334] = 1330, + [1329] = 486, + [1330] = 100, + [1331] = 1312, + [1332] = 1313, + [1333] = 1322, + [1334] = 1318, [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1330, - [1339] = 1336, + [1336] = 1314, + [1337] = 362, + [1338] = 486, + [1339] = 1315, [1340] = 1340, - [1341] = 1330, - [1342] = 1330, - [1343] = 1330, - [1344] = 1344, - [1345] = 176, - [1346] = 1330, - [1347] = 1347, - [1348] = 1330, - [1349] = 1330, + [1341] = 1311, + [1342] = 1328, + [1343] = 146, + [1344] = 362, + [1345] = 1320, + [1346] = 1346, + [1347] = 1327, + [1348] = 1348, + [1349] = 1349, [1350] = 1350, - [1351] = 33, + [1351] = 1348, [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, + [1353] = 1346, + [1354] = 1350, + [1355] = 486, + [1356] = 1335, + [1357] = 1349, + [1358] = 1340, + [1359] = 92, + [1360] = 93, + [1361] = 91, + [1362] = 88, + [1363] = 1319, + [1364] = 1364, [1365] = 1365, [1366] = 1366, - [1367] = 1367, - [1368] = 1330, + [1367] = 146, + [1368] = 374, [1369] = 1369, - [1370] = 1370, - [1371] = 1335, - [1372] = 1359, - [1373] = 1335, - [1374] = 1344, + [1370] = 374, + [1371] = 90, + [1372] = 1366, + [1373] = 171, + [1374] = 90, [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, + [1376] = 90, + [1377] = 374, + [1378] = 150, + [1379] = 1379, + [1380] = 1380, + [1381] = 1375, + [1382] = 1366, + [1383] = 1364, + [1384] = 152, + [1385] = 1385, + [1386] = 90, + [1387] = 1387, + [1388] = 1364, [1389] = 1389, - [1390] = 1330, + [1390] = 1375, [1391] = 1391, - [1392] = 1392, + [1392] = 90, [1393] = 1393, - [1394] = 1394, - [1395] = 296, + [1394] = 168, + [1395] = 1395, [1396] = 1396, - [1397] = 1397, - [1398] = 1330, + [1397] = 174, + [1398] = 1391, [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, - [1416] = 1416, - [1417] = 1330, - [1418] = 1355, - [1419] = 192, - [1420] = 1366, - [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, - [1445] = 1445, - [1446] = 1446, - [1447] = 215, - [1448] = 1448, - [1449] = 416, - [1450] = 1450, - [1451] = 1448, - [1452] = 32, - [1453] = 1453, - [1454] = 1454, - [1455] = 1448, - [1456] = 1448, - [1457] = 1450, - [1458] = 1450, - [1459] = 214, - [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, - [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, - [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, - [1566] = 1566, - [1567] = 175, - [1568] = 1446, - [1569] = 1448, - [1570] = 1471, - [1571] = 1465, - [1572] = 1460, - [1573] = 416, - [1574] = 219, + [1400] = 1393, + [1401] = 1365, + [1402] = 1396, + [1403] = 1389, + [1404] = 1393, + [1405] = 1364, + [1406] = 1395, + [1407] = 1375, + [1408] = 1387, + [1409] = 1365, + [1410] = 1364, + [1411] = 1380, + [1412] = 1379, + [1413] = 1365, + [1414] = 1393, + [1415] = 160, + [1416] = 143, + [1417] = 182, + [1418] = 1418, + [1419] = 189, + [1420] = 362, + [1421] = 152, + [1422] = 169, + [1423] = 1418, + [1424] = 92, + [1425] = 93, + [1426] = 91, + [1427] = 88, + [1428] = 94, + [1429] = 1429, + [1430] = 1430, + [1431] = 160, + [1432] = 1418, + [1433] = 1429, + [1434] = 1430, + [1435] = 168, + [1436] = 1418, + [1437] = 362, + [1438] = 178, + [1439] = 190, + [1440] = 191, + [1441] = 192, + [1442] = 194, + [1443] = 1418, + [1444] = 1429, + [1445] = 187, + [1446] = 195, + [1447] = 150, + [1448] = 135, + [1449] = 185, + [1450] = 90, + [1451] = 161, + [1452] = 162, + [1453] = 362, + [1454] = 1430, + [1455] = 196, + [1456] = 1456, + [1457] = 197, + [1458] = 362, + [1459] = 362, + [1460] = 141, + [1461] = 142, + [1462] = 183, + [1463] = 145, + [1464] = 147, + [1465] = 148, + [1466] = 363, + [1467] = 149, + [1468] = 151, + [1469] = 153, + [1470] = 154, + [1471] = 158, + [1472] = 159, + [1473] = 163, + [1474] = 164, + [1475] = 199, + [1476] = 167, + [1477] = 362, + [1478] = 362, + [1479] = 171, + [1480] = 198, + [1481] = 172, + [1482] = 173, + [1483] = 188, + [1484] = 1429, + [1485] = 175, + [1486] = 363, + [1487] = 1429, + [1488] = 1430, + [1489] = 1430, + [1490] = 179, + [1491] = 180, + [1492] = 181, + [1493] = 184, + [1494] = 374, + [1495] = 175, + [1496] = 153, + [1497] = 179, + [1498] = 180, + [1499] = 181, + [1500] = 182, + [1501] = 183, + [1502] = 184, + [1503] = 185, + [1504] = 188, + [1505] = 189, + [1506] = 1506, + [1507] = 190, + [1508] = 191, + [1509] = 192, + [1510] = 194, + [1511] = 195, + [1512] = 196, + [1513] = 197, + [1514] = 198, + [1515] = 154, + [1516] = 187, + [1517] = 486, + [1518] = 374, + [1519] = 158, + [1520] = 486, + [1521] = 159, + [1522] = 146, + [1523] = 374, + [1524] = 100, + [1525] = 89, + [1526] = 90, + [1527] = 163, + [1528] = 164, + [1529] = 148, + [1530] = 173, + [1531] = 141, + [1532] = 1532, + [1533] = 199, + [1534] = 92, + [1535] = 374, + [1536] = 93, + [1537] = 91, + [1538] = 88, + [1539] = 146, + [1540] = 94, + [1541] = 374, + [1542] = 142, + [1543] = 92, + [1544] = 93, + [1545] = 91, + [1546] = 88, + [1547] = 94, + [1548] = 486, + [1549] = 167, + [1550] = 374, + [1551] = 151, + [1552] = 89, + [1553] = 143, + [1554] = 145, + [1555] = 149, + [1556] = 362, + [1557] = 169, + [1558] = 172, + [1559] = 147, + [1560] = 146, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1561, + [1567] = 1567, + [1568] = 174, + [1569] = 1569, + [1570] = 1561, + [1571] = 1561, + [1572] = 1561, + [1573] = 1561, + [1574] = 1574, [1575] = 1575, - [1576] = 184, - [1577] = 1453, - [1578] = 1446, - [1579] = 1579, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 1577, [1580] = 1580, - [1581] = 182, - [1582] = 1468, - [1583] = 1486, - [1584] = 1446, - [1585] = 199, - [1586] = 1468, - [1587] = 1450, + [1581] = 1562, + [1582] = 152, + [1583] = 1583, + [1584] = 1584, + [1585] = 363, + [1586] = 1586, + [1587] = 1561, [1588] = 1588, - [1589] = 416, - [1590] = 1487, - [1591] = 1492, - [1592] = 1478, - [1593] = 1448, - [1594] = 1446, - [1595] = 1446, - [1596] = 211, - [1597] = 1547, + [1589] = 1589, + [1590] = 1575, + [1591] = 1561, + [1592] = 1561, + [1593] = 1575, + [1594] = 1594, + [1595] = 1575, + [1596] = 1596, + [1597] = 1564, [1598] = 1598, - [1599] = 1479, - [1600] = 216, - [1601] = 31, - [1602] = 1450, - [1603] = 1446, + [1599] = 1569, + [1600] = 1600, + [1601] = 1601, + [1602] = 374, + [1603] = 1603, [1604] = 1604, - [1605] = 1448, - [1606] = 1606, - [1607] = 1479, - [1608] = 1608, - [1609] = 1546, - [1610] = 198, - [1611] = 1486, - [1612] = 1612, - [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, - [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, - [1656] = 1656, - [1657] = 28, - [1658] = 1658, - [1659] = 32, - [1660] = 29, - [1661] = 31, - [1662] = 205, - [1663] = 1663, + [1605] = 1580, + [1606] = 171, + [1607] = 92, + [1608] = 1561, + [1609] = 1609, + [1610] = 1610, + [1611] = 93, + [1612] = 91, + [1613] = 1562, + [1614] = 1614, + [1615] = 88, + [1616] = 1561, + [1617] = 1617, + [1618] = 1600, + [1619] = 1619, + [1620] = 168, + [1621] = 486, + [1622] = 1561, + [1623] = 1603, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1594, + [1628] = 1628, + [1629] = 94, + [1630] = 1625, + [1631] = 89, + [1632] = 1574, + [1633] = 1577, + [1634] = 92, + [1635] = 1619, + [1636] = 93, + [1637] = 1567, + [1638] = 1638, + [1639] = 1639, + [1640] = 1563, + [1641] = 91, + [1642] = 1598, + [1643] = 1561, + [1644] = 88, + [1645] = 1561, + [1646] = 1646, + [1647] = 1601, + [1648] = 1565, + [1649] = 1561, + [1650] = 1624, + [1651] = 1577, + [1652] = 94, + [1653] = 1653, + [1654] = 363, + [1655] = 363, + [1656] = 1577, + [1657] = 1586, + [1658] = 1609, + [1659] = 1659, + [1660] = 1617, + [1661] = 1661, + [1662] = 1626, + [1663] = 1562, [1664] = 1664, - [1665] = 1665, - [1666] = 1666, + [1665] = 1577, + [1666] = 1577, [1667] = 1667, - [1668] = 1664, - [1669] = 1669, - [1670] = 1666, - [1671] = 1664, - [1672] = 1665, - [1673] = 1669, - [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, + [1668] = 1561, + [1669] = 1577, + [1670] = 1561, + [1671] = 1578, + [1672] = 1639, + [1673] = 1583, + [1674] = 1653, + [1675] = 1675, + [1676] = 1676, + [1677] = 1638, + [1678] = 1678, + [1679] = 1588, + [1680] = 1575, + [1681] = 1681, + [1682] = 363, + [1683] = 1561, + [1684] = 1575, + [1685] = 89, + [1686] = 1610, + [1687] = 1575, + [1688] = 1676, + [1689] = 150, + [1690] = 1561, + [1691] = 1575, + [1692] = 1646, + [1693] = 1584, + [1694] = 1575, + [1695] = 1695, + [1696] = 1696, + [1697] = 1575, + [1698] = 1561, + [1699] = 1699, + [1700] = 1561, + [1701] = 1575, + [1702] = 1561, + [1703] = 1561, + [1704] = 1561, + [1705] = 1575, + [1706] = 1561, + [1707] = 1561, [1708] = 1664, - [1709] = 1667, - [1710] = 1669, - [1711] = 1669, - [1712] = 1666, - [1713] = 1669, - [1714] = 1667, - [1715] = 1666, - [1716] = 1665, - [1717] = 1666, - [1718] = 1666, + [1709] = 1561, + [1710] = 1562, + [1711] = 1561, + [1712] = 1575, + [1713] = 1659, + [1714] = 1577, + [1715] = 1561, + [1716] = 1575, + [1717] = 160, + [1718] = 1718, [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, + [1720] = 1720, + [1721] = 194, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 148, + [1726] = 1726, + [1727] = 1727, + [1728] = 195, + [1729] = 1729, + [1730] = 1730, + [1731] = 198, + [1732] = 1732, + [1733] = 149, + [1734] = 1729, + [1735] = 1719, + [1736] = 1729, + [1737] = 363, + [1738] = 1738, + [1739] = 184, + [1740] = 1740, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, + [1744] = 1729, + [1745] = 1719, + [1746] = 1746, + [1747] = 1729, + [1748] = 486, + [1749] = 1749, + [1750] = 1729, + [1751] = 1732, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1743, + [1758] = 1758, + [1759] = 92, + [1760] = 1719, + [1761] = 187, + [1762] = 185, + [1763] = 1763, + [1764] = 1719, + [1765] = 163, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1732, + [1770] = 1770, + [1771] = 1771, + [1772] = 1729, + [1773] = 188, + [1774] = 1730, + [1775] = 1775, + [1776] = 91, + [1777] = 1724, + [1778] = 1719, + [1779] = 1775, + [1780] = 1780, + [1781] = 169, + [1782] = 1782, [1783] = 1783, - [1784] = 1784, - [1785] = 1783, + [1784] = 189, + [1785] = 1732, [1786] = 1786, - [1787] = 1787, - [1788] = 1788, - [1789] = 1789, - [1790] = 1790, + [1787] = 1783, + [1788] = 153, + [1789] = 154, + [1790] = 93, [1791] = 1791, [1792] = 1792, - [1793] = 1789, - [1794] = 1794, - [1795] = 1795, + [1793] = 1742, + [1794] = 190, + [1795] = 1754, [1796] = 1796, [1797] = 1797, - [1798] = 1791, - [1799] = 1799, + [1798] = 1798, + [1799] = 1768, [1800] = 1800, - [1801] = 1801, - [1802] = 1797, - [1803] = 1800, - [1804] = 1784, - [1805] = 1801, - [1806] = 1799, + [1801] = 1796, + [1802] = 1802, + [1803] = 94, + [1804] = 1804, + [1805] = 1805, + [1806] = 172, [1807] = 1807, - [1808] = 1792, - [1809] = 1792, - [1810] = 1790, - [1811] = 1811, - [1812] = 1790, + [1808] = 1808, + [1809] = 1732, + [1810] = 1810, + [1811] = 1723, + [1812] = 1741, [1813] = 1813, - [1814] = 1801, - [1815] = 1815, - [1816] = 1787, - [1817] = 1800, - [1818] = 1784, - [1819] = 1811, + [1814] = 1814, + [1815] = 173, + [1816] = 1727, + [1817] = 1738, + [1818] = 1818, + [1819] = 1771, [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, - [1874] = 1874, - [1875] = 1837, - [1876] = 213, - [1877] = 179, - [1878] = 196, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1881, - [1885] = 1882, - [1886] = 1886, - [1887] = 1887, - [1888] = 1886, - [1889] = 1886, - [1890] = 1887, - [1891] = 1887, - [1892] = 201, - [1893] = 297, + [1821] = 1797, + [1822] = 1740, + [1823] = 486, + [1824] = 1798, + [1825] = 1719, + [1826] = 1732, + [1827] = 91, + [1828] = 1770, + [1829] = 88, + [1830] = 1780, + [1831] = 1732, + [1832] = 1719, + [1833] = 1732, + [1834] = 175, + [1835] = 191, + [1836] = 1719, + [1837] = 192, + [1838] = 1758, + [1839] = 151, + [1840] = 1729, + [1841] = 1719, + [1842] = 1729, + [1843] = 1800, + [1844] = 1729, + [1845] = 1719, + [1846] = 486, + [1847] = 1756, + [1848] = 1743, + [1849] = 1758, + [1850] = 1766, + [1851] = 1768, + [1852] = 1770, + [1853] = 1719, + [1854] = 1732, + [1855] = 486, + [1856] = 142, + [1857] = 1732, + [1858] = 1755, + [1859] = 164, + [1860] = 1732, + [1861] = 158, + [1862] = 143, + [1863] = 1729, + [1864] = 1729, + [1865] = 1719, + [1866] = 1756, + [1867] = 1743, + [1868] = 1758, + [1869] = 1802, + [1870] = 1813, + [1871] = 1766, + [1872] = 1768, + [1873] = 1770, + [1874] = 1729, + [1875] = 1732, + [1876] = 179, + [1877] = 180, + [1878] = 486, + [1879] = 1732, + [1880] = 1729, + [1881] = 181, + [1882] = 1756, + [1883] = 1743, + [1884] = 1758, + [1885] = 1720, + [1886] = 1768, + [1887] = 1770, + [1888] = 199, + [1889] = 145, + [1890] = 1719, + [1891] = 1732, + [1892] = 94, + [1893] = 1729, [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, - [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, + [1895] = 1719, + [1896] = 486, + [1897] = 1732, + [1898] = 1804, + [1899] = 486, + [1900] = 1900, + [1901] = 486, + [1902] = 141, + [1903] = 1732, + [1904] = 1729, + [1905] = 1720, + [1906] = 1906, + [1907] = 88, + [1908] = 1729, + [1909] = 1805, + [1910] = 1719, + [1911] = 182, + [1912] = 1729, + [1913] = 1732, + [1914] = 183, + [1915] = 1915, + [1916] = 1814, + [1917] = 1719, + [1918] = 1906, + [1919] = 1729, + [1920] = 1782, + [1921] = 196, + [1922] = 1729, + [1923] = 1807, + [1924] = 1729, + [1925] = 1766, + [1926] = 1732, + [1927] = 1729, + [1928] = 1766, + [1929] = 1720, + [1930] = 234, + [1931] = 1729, + [1932] = 1729, + [1933] = 159, + [1934] = 1766, + [1935] = 1720, + [1936] = 1729, + [1937] = 1808, + [1938] = 1729, + [1939] = 1766, + [1940] = 1724, [1941] = 1941, - [1942] = 1408, - [1943] = 1941, - [1944] = 1927, - [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, + [1942] = 1766, + [1943] = 1719, + [1944] = 1724, + [1945] = 1766, + [1946] = 197, + [1947] = 92, + [1948] = 1791, + [1949] = 1719, + [1950] = 1767, + [1951] = 147, + [1952] = 1952, + [1953] = 1732, + [1954] = 1729, + [1955] = 1720, + [1956] = 1720, + [1957] = 1720, + [1958] = 1719, + [1959] = 167, + [1960] = 1720, + [1961] = 1720, + [1962] = 1732, + [1963] = 1720, + [1964] = 1720, + [1965] = 1729, + [1966] = 93, + [1967] = 1756, + [1968] = 1719, + [1969] = 1720, + [1970] = 1818, + [1971] = 1753, + [1972] = 1720, + [1973] = 1729, + [1974] = 94, + [1975] = 1975, + [1976] = 486, + [1977] = 92, + [1978] = 88, + [1979] = 166, + [1980] = 91, + [1981] = 93, + [1982] = 1982, + [1983] = 174, + [1984] = 295, + [1985] = 136, [1986] = 1986, - [1987] = 1987, - [1988] = 1984, - [1989] = 201, - [1990] = 1972, - [1991] = 1963, - [1992] = 416, - [1993] = 1987, - [1994] = 1983, - [1995] = 1950, - [1996] = 1950, - [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, + [1987] = 166, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1989, + [1993] = 1993, + [1994] = 1993, + [1995] = 1995, + [1996] = 1989, + [1997] = 1990, + [1998] = 1991, + [1999] = 1989, + [2000] = 1993, + [2001] = 1990, + [2002] = 1991, + [2003] = 1989, + [2004] = 1993, + [2005] = 1990, + [2006] = 1993, + [2007] = 1991, + [2008] = 1989, + [2009] = 1990, + [2010] = 1993, + [2011] = 1990, + [2012] = 1990, + [2013] = 2013, + [2014] = 174, + [2015] = 1989, + [2016] = 1993, + [2017] = 1990, + [2018] = 1990, + [2019] = 1993, + [2020] = 1990, + [2021] = 1991, + [2022] = 1989, + [2023] = 1993, + [2024] = 1991, + [2025] = 1991, + [2026] = 1993, + [2027] = 1990, + [2028] = 1990, + [2029] = 1991, + [2030] = 1989, + [2031] = 1993, + [2032] = 1993, + [2033] = 1991, + [2034] = 1990, + [2035] = 1991, + [2036] = 1989, + [2037] = 1989, + [2038] = 1993, + [2039] = 1990, [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, - [2058] = 2058, - [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 416, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, - [2071] = 2071, - [2072] = 2072, - [2073] = 2073, - [2074] = 2074, - [2075] = 2075, - [2076] = 2070, - [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, + [2041] = 1991, + [2042] = 1993, + [2043] = 2013, + [2044] = 1995, + [2045] = 1990, + [2046] = 1991, + [2047] = 1989, + [2048] = 1993, + [2049] = 1989, + [2050] = 1990, + [2051] = 1991, + [2052] = 1989, + [2053] = 1991, + [2054] = 1991, + [2055] = 1990, + [2056] = 1989, + [2057] = 1990, + [2058] = 1991, + [2059] = 1989, + [2060] = 1993, + [2061] = 1990, + [2062] = 1989, + [2063] = 1991, + [2064] = 1993, + [2065] = 1990, + [2066] = 1991, + [2067] = 1989, + [2068] = 1991, + [2069] = 1993, + [2070] = 1989, + [2071] = 1990, + [2072] = 1991, + [2073] = 1989, + [2074] = 1993, + [2075] = 1990, + [2076] = 1990, + [2077] = 1991, + [2078] = 1991, + [2079] = 1989, + [2080] = 1991, + [2081] = 1989, + [2082] = 1993, + [2083] = 1990, + [2084] = 1991, + [2085] = 1993, + [2086] = 1989, + [2087] = 1993, + [2088] = 1990, + [2089] = 1993, + [2090] = 1991, + [2091] = 1989, + [2092] = 1989, + [2093] = 1993, + [2094] = 1989, + [2095] = 1990, + [2096] = 1991, + [2097] = 1989, + [2098] = 1993, + [2099] = 1990, + [2100] = 1993, + [2101] = 1991, + [2102] = 1989, + [2103] = 2040, + [2104] = 1991, + [2105] = 1993, + [2106] = 1990, + [2107] = 1991, + [2108] = 1989, + [2109] = 1993, + [2110] = 1990, + [2111] = 1991, + [2112] = 1989, + [2113] = 1993, + [2114] = 2114, + [2115] = 1990, + [2116] = 1993, + [2117] = 2117, + [2118] = 2118, [2119] = 2119, - [2120] = 2111, - [2121] = 2072, - [2122] = 416, + [2120] = 295, + [2121] = 166, + [2122] = 2122, [2123] = 2123, - [2124] = 2123, - [2125] = 258, + [2124] = 2124, + [2125] = 2125, [2126] = 2126, - [2127] = 2127, + [2127] = 2119, [2128] = 2128, - [2129] = 2129, - [2130] = 2087, + [2129] = 2124, + [2130] = 1988, [2131] = 2131, - [2132] = 1535, + [2132] = 2117, [2133] = 2126, - [2134] = 2127, - [2135] = 2095, - [2136] = 2094, - [2137] = 2071, - [2138] = 2138, - [2139] = 2139, - [2140] = 2119, - [2141] = 2092, + [2134] = 2134, + [2135] = 174, + [2136] = 2134, + [2137] = 2137, + [2138] = 2137, + [2139] = 2123, + [2140] = 2140, + [2141] = 2122, [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, + [2143] = 2118, + [2144] = 2140, + [2145] = 2125, + [2146] = 2128, + [2147] = 2147, + [2148] = 2148, + [2149] = 2148, + [2150] = 136, + [2151] = 2148, + [2152] = 2148, + [2153] = 2148, + [2154] = 2154, + [2155] = 2154, + [2156] = 174, + [2157] = 2154, + [2158] = 2154, + [2159] = 2154, + [2160] = 2154, + [2161] = 2154, + [2162] = 2154, + [2163] = 2154, + [2164] = 2154, + [2165] = 2154, + [2166] = 2154, + [2167] = 2154, + [2168] = 2154, + [2169] = 1988, + [2170] = 2170, + [2171] = 2171, + [2172] = 136, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2175, + [2177] = 174, + [2178] = 1988, + [2179] = 174, + [2180] = 174, + [2181] = 166, + [2182] = 136, + [2183] = 174, [2184] = 2184, - [2185] = 2185, + [2185] = 295, [2186] = 2186, - [2187] = 2087, - [2188] = 2188, - [2189] = 2189, - [2190] = 2190, - [2191] = 2108, - [2192] = 2107, - [2193] = 2160, - [2194] = 2071, - [2195] = 2094, - [2196] = 2067, + [2187] = 1988, + [2188] = 174, + [2189] = 2184, + [2190] = 1988, + [2191] = 174, + [2192] = 174, + [2193] = 136, + [2194] = 2194, + [2195] = 2195, + [2196] = 166, [2197] = 2197, - [2198] = 2162, - [2199] = 2085, - [2200] = 2200, - [2201] = 2201, + [2198] = 2198, + [2199] = 1988, + [2200] = 295, + [2201] = 2195, [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, - [2217] = 2217, - [2218] = 2169, - [2219] = 2180, + [2203] = 136, + [2204] = 2204, + [2205] = 2205, + [2206] = 2205, + [2207] = 150, + [2208] = 374, + [2209] = 374, + [2210] = 374, + [2211] = 150, + [2212] = 374, + [2213] = 363, + [2214] = 363, + [2215] = 2215, + [2216] = 374, + [2217] = 2215, + [2218] = 2215, + [2219] = 2215, [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, - [2288] = 2288, - [2289] = 2289, - [2290] = 2290, + [2221] = 2221, + [2222] = 2221, + [2223] = 486, + [2224] = 374, + [2225] = 2225, + [2226] = 2215, + [2227] = 486, + [2228] = 2221, + [2229] = 2225, + [2230] = 2221, + [2231] = 1576, + [2232] = 174, + [2233] = 374, + [2234] = 2221, + [2235] = 2225, + [2236] = 2225, + [2237] = 1699, + [2238] = 2225, + [2239] = 486, + [2240] = 374, + [2241] = 2241, + [2242] = 486, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 2246, + [2247] = 374, + [2248] = 2248, + [2249] = 374, + [2250] = 2250, + [2251] = 2251, + [2252] = 2252, + [2253] = 2251, + [2254] = 1675, + [2255] = 374, + [2256] = 2256, + [2257] = 2257, + [2258] = 2252, + [2259] = 2259, + [2260] = 2259, + [2261] = 1628, + [2262] = 363, + [2263] = 2263, + [2264] = 2264, + [2265] = 374, + [2266] = 2264, + [2267] = 2244, + [2268] = 2268, + [2269] = 2256, + [2270] = 361, + [2271] = 2268, + [2272] = 2272, + [2273] = 374, + [2274] = 573, + [2275] = 574, + [2276] = 578, + [2277] = 441, + [2278] = 573, + [2279] = 574, + [2280] = 441, + [2281] = 2272, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 2285, + [2286] = 374, + [2287] = 2250, + [2288] = 2284, + [2289] = 2263, + [2290] = 2283, [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, - [2295] = 2293, + [2292] = 365, + [2293] = 368, + [2294] = 369, + [2295] = 2295, [2296] = 2296, [2297] = 2297, [2298] = 2298, [2299] = 2299, - [2300] = 2300, + [2300] = 2299, [2301] = 2301, - [2302] = 2302, - [2303] = 2289, + [2302] = 374, + [2303] = 2296, [2304] = 2304, - [2305] = 2305, - [2306] = 2290, - [2307] = 2291, - [2308] = 2292, - [2309] = 2293, + [2305] = 361, + [2306] = 2298, + [2307] = 2296, + [2308] = 486, + [2309] = 2309, [2310] = 2310, [2311] = 2311, - [2312] = 2312, + [2312] = 150, [2313] = 2313, [2314] = 2314, - [2315] = 2301, - [2316] = 204, - [2317] = 2317, - [2318] = 2299, + [2315] = 2310, + [2316] = 2296, + [2317] = 2298, + [2318] = 2310, [2319] = 2319, - [2320] = 2289, - [2321] = 2296, - [2322] = 1579, - [2323] = 2323, - [2324] = 2288, - [2325] = 2291, - [2326] = 2292, - [2327] = 2327, - [2328] = 2293, - [2329] = 1615, - [2330] = 1652, - [2331] = 2331, - [2332] = 2332, - [2333] = 2296, - [2334] = 2334, - [2335] = 2335, - [2336] = 2300, - [2337] = 2337, - [2338] = 2338, - [2339] = 2339, - [2340] = 2300, - [2341] = 2289, - [2342] = 2288, - [2343] = 2343, - [2344] = 1579, - [2345] = 2291, - [2346] = 2292, - [2347] = 2289, - [2348] = 2293, - [2349] = 2349, - [2350] = 1615, - [2351] = 2300, - [2352] = 1652, - [2353] = 1340, + [2320] = 2297, + [2321] = 1752, + [2322] = 2322, + [2323] = 2310, + [2324] = 2322, + [2325] = 2325, + [2326] = 2310, + [2327] = 573, + [2328] = 574, + [2329] = 578, + [2330] = 441, + [2331] = 573, + [2332] = 574, + [2333] = 441, + [2334] = 2297, + [2335] = 2319, + [2336] = 2301, + [2337] = 2313, + [2338] = 2314, + [2339] = 2297, + [2340] = 2340, + [2341] = 2296, + [2342] = 486, + [2343] = 2298, + [2344] = 162, + [2345] = 2345, + [2346] = 2345, + [2347] = 374, + [2348] = 486, + [2349] = 2295, + [2350] = 2297, + [2351] = 2311, + [2352] = 2298, + [2353] = 2304, [2354] = 2354, - [2355] = 2331, - [2356] = 1393, - [2357] = 2302, - [2358] = 2305, - [2359] = 1399, - [2360] = 2296, - [2361] = 2361, - [2362] = 2293, - [2363] = 2363, + [2355] = 1695, + [2356] = 2356, + [2357] = 2357, + [2358] = 1395, + [2359] = 2359, + [2360] = 2360, + [2361] = 1675, + [2362] = 2356, + [2363] = 1628, [2364] = 2364, - [2365] = 2310, - [2366] = 2300, - [2367] = 1404, - [2368] = 2292, - [2369] = 2291, - [2370] = 2300, - [2371] = 2300, - [2372] = 2372, - [2373] = 2300, - [2374] = 2290, - [2375] = 2300, - [2376] = 2296, - [2377] = 2300, - [2378] = 2378, + [2365] = 2354, + [2366] = 2366, + [2367] = 1395, + [2368] = 2368, + [2369] = 1749, + [2370] = 295, + [2371] = 2371, + [2372] = 2371, + [2373] = 2373, + [2374] = 2374, + [2375] = 2354, + [2376] = 365, + [2377] = 2354, + [2378] = 1810, [2379] = 2379, - [2380] = 2289, - [2381] = 2300, - [2382] = 2382, + [2380] = 2380, + [2381] = 2359, + [2382] = 1395, [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, - [2397] = 2397, + [2384] = 2371, + [2385] = 1395, + [2386] = 1675, + [2387] = 2387, + [2388] = 2388, + [2389] = 1696, + [2390] = 2387, + [2391] = 2391, + [2392] = 2392, + [2393] = 1718, + [2394] = 2379, + [2395] = 363, + [2396] = 2387, + [2397] = 369, [2398] = 2398, - [2399] = 2299, - [2400] = 2300, - [2401] = 2300, - [2402] = 2293, - [2403] = 2403, - [2404] = 2395, - [2405] = 2300, - [2406] = 2300, - [2407] = 2310, - [2408] = 2408, - [2409] = 2403, - [2410] = 2300, + [2399] = 1628, + [2400] = 2356, + [2401] = 2387, + [2402] = 2402, + [2403] = 2371, + [2404] = 1722, + [2405] = 2405, + [2406] = 2406, + [2407] = 1395, + [2408] = 363, + [2409] = 2356, + [2410] = 2354, [2411] = 2411, - [2412] = 2349, - [2413] = 2300, - [2414] = 2354, - [2415] = 2415, - [2416] = 2332, - [2417] = 2299, - [2418] = 2314, - [2419] = 2419, - [2420] = 2304, - [2421] = 2288, - [2422] = 2301, - [2423] = 2423, + [2412] = 2388, + [2413] = 2356, + [2414] = 2387, + [2415] = 363, + [2416] = 2411, + [2417] = 2402, + [2418] = 2418, + [2419] = 1681, + [2420] = 2420, + [2421] = 2373, + [2422] = 2383, + [2423] = 2371, [2424] = 2424, - [2425] = 2384, - [2426] = 2290, - [2427] = 2427, - [2428] = 2299, - [2429] = 2292, - [2430] = 2291, - [2431] = 2290, - [2432] = 2389, - [2433] = 2398, + [2425] = 486, + [2426] = 2391, + [2427] = 368, + [2428] = 2428, + [2429] = 2429, + [2430] = 2430, + [2431] = 2431, + [2432] = 2432, + [2433] = 486, [2434] = 2434, - [2435] = 2288, - [2436] = 2291, - [2437] = 2292, - [2438] = 2301, - [2439] = 2300, - [2440] = 2383, - [2441] = 2379, + [2435] = 2435, + [2436] = 2436, + [2437] = 2431, + [2438] = 2438, + [2439] = 2432, + [2440] = 2434, + [2441] = 2441, [2442] = 2442, - [2443] = 2415, - [2444] = 2419, - [2445] = 2445, + [2443] = 2435, + [2444] = 2436, + [2445] = 2432, [2446] = 2446, [2447] = 2447, [2448] = 2448, - [2449] = 2449, + [2449] = 2441, [2450] = 2450, [2451] = 2451, [2452] = 2452, - [2453] = 2453, + [2453] = 2431, [2454] = 2454, [2455] = 2455, - [2456] = 2456, + [2456] = 2438, [2457] = 2457, [2458] = 2458, [2459] = 2459, [2460] = 2460, - [2461] = 2461, - [2462] = 2457, - [2463] = 2463, + [2461] = 2436, + [2462] = 2434, + [2463] = 2441, [2464] = 2464, - [2465] = 2455, - [2466] = 2447, - [2467] = 2452, + [2465] = 2465, + [2466] = 2466, + [2467] = 2467, [2468] = 2468, [2469] = 2469, [2470] = 2470, - [2471] = 2471, - [2472] = 2464, + [2471] = 2432, + [2472] = 2452, [2473] = 2473, [2474] = 2474, - [2475] = 2451, + [2475] = 1752, [2476] = 2476, [2477] = 2477, [2478] = 2478, - [2479] = 2479, - [2480] = 2455, + [2479] = 2428, + [2480] = 2480, [2481] = 2481, - [2482] = 2455, - [2483] = 2455, - [2484] = 2455, - [2485] = 2455, - [2486] = 2486, - [2487] = 2447, - [2488] = 2481, - [2489] = 2489, + [2482] = 2429, + [2483] = 2483, + [2484] = 486, + [2485] = 2442, + [2486] = 2460, + [2487] = 2465, + [2488] = 2473, + [2489] = 2474, [2490] = 2490, - [2491] = 2455, - [2492] = 2455, - [2493] = 2455, - [2494] = 2455, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2458, [2495] = 2495, [2496] = 2496, - [2497] = 2455, + [2497] = 1699, [2498] = 2498, - [2499] = 2477, + [2499] = 2499, [2500] = 2500, - [2501] = 2486, - [2502] = 2455, - [2503] = 2455, - [2504] = 2442, - [2505] = 2455, + [2501] = 2501, + [2502] = 2470, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, [2506] = 2506, - [2507] = 2471, - [2508] = 2477, - [2509] = 2455, - [2510] = 2455, - [2511] = 2455, - [2512] = 2454, - [2513] = 2455, - [2514] = 2514, - [2515] = 2514, - [2516] = 2516, - [2517] = 2455, - [2518] = 2455, - [2519] = 2468, - [2520] = 2520, - [2521] = 2516, - [2522] = 2522, - [2523] = 2463, - [2524] = 2524, - [2525] = 2525, + [2507] = 1576, + [2508] = 2447, + [2509] = 2450, + [2510] = 2451, + [2511] = 2457, + [2512] = 2512, + [2513] = 2513, + [2514] = 2476, + [2515] = 2477, + [2516] = 2483, + [2517] = 2491, + [2518] = 2518, + [2519] = 2513, + [2520] = 2518, + [2521] = 2521, + [2522] = 2521, + [2523] = 2523, + [2524] = 234, + [2525] = 2455, [2526] = 2526, - [2527] = 2450, - [2528] = 2455, - [2529] = 2459, + [2527] = 2527, + [2528] = 2528, + [2529] = 2529, [2530] = 2530, - [2531] = 2500, - [2532] = 2455, - [2533] = 2490, - [2534] = 2473, + [2531] = 2531, + [2532] = 2532, + [2533] = 2533, + [2534] = 2534, [2535] = 2535, - [2536] = 296, - [2537] = 2474, - [2538] = 2461, + [2536] = 2536, + [2537] = 363, + [2538] = 486, [2539] = 2539, - [2540] = 2540, - [2541] = 2464, + [2540] = 2441, + [2541] = 2541, [2542] = 2542, - [2543] = 2455, - [2544] = 2544, - [2545] = 2522, - [2546] = 2546, - [2547] = 2547, - [2548] = 2476, - [2549] = 2478, - [2550] = 2477, - [2551] = 2535, - [2552] = 2454, - [2553] = 2553, - [2554] = 2524, - [2555] = 2455, - [2556] = 2449, - [2557] = 2479, - [2558] = 2558, - [2559] = 2559, - [2560] = 2560, - [2561] = 2561, - [2562] = 2495, - [2563] = 2563, - [2564] = 2520, - [2565] = 2496, - [2566] = 2530, - [2567] = 2477, - [2568] = 2568, - [2569] = 2569, - [2570] = 2570, - [2571] = 2463, - [2572] = 2498, - [2573] = 2573, - [2574] = 2456, - [2575] = 2575, - [2576] = 2542, - [2577] = 2558, - [2578] = 2544, - [2579] = 2579, - [2580] = 2525, - [2581] = 2490, - [2582] = 2489, - [2583] = 2463, - [2584] = 2584, - [2585] = 2477, - [2586] = 2455, + [2543] = 2543, + [2544] = 1752, + [2545] = 2506, + [2546] = 2446, + [2547] = 486, + [2548] = 2523, + [2549] = 2549, + [2550] = 2498, + [2551] = 2512, + [2552] = 2552, + [2553] = 2291, + [2554] = 2492, + [2555] = 2493, + [2556] = 2531, + [2557] = 486, + [2558] = 2495, + [2559] = 2526, + [2560] = 2527, + [2561] = 2528, + [2562] = 486, + [2563] = 2529, + [2564] = 2459, + [2565] = 486, + [2566] = 2566, + [2567] = 2466, + [2568] = 2478, + [2569] = 361, + [2570] = 2496, + [2571] = 2532, + [2572] = 2533, + [2573] = 2467, + [2574] = 2534, + [2575] = 2468, + [2576] = 2535, + [2577] = 2435, + [2578] = 2436, + [2579] = 2431, + [2580] = 2455, + [2581] = 363, + [2582] = 2438, + [2583] = 2583, + [2584] = 2434, + [2585] = 2469, + [2586] = 2441, [2587] = 2587, - [2588] = 2526, - [2589] = 2447, - [2590] = 2490, - [2591] = 2563, - [2592] = 2553, - [2593] = 2593, - [2594] = 2594, - [2595] = 2454, - [2596] = 2596, - [2597] = 2454, - [2598] = 2559, - [2599] = 2522, - [2600] = 2560, - [2601] = 2490, - [2602] = 2584, + [2588] = 2432, + [2589] = 2452, + [2590] = 2448, + [2591] = 486, + [2592] = 2442, + [2593] = 2499, + [2594] = 2490, + [2595] = 2500, + [2596] = 2455, + [2597] = 2455, + [2598] = 2455, + [2599] = 2501, + [2600] = 2600, + [2601] = 2601, + [2602] = 2435, [2603] = 2539, - [2604] = 2575, - [2605] = 2449, - [2606] = 2606, - [2607] = 2573, - [2608] = 2447, - [2609] = 2477, - [2610] = 2610, - [2611] = 2469, - [2612] = 2457, - [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, - [2628] = 2628, - [2629] = 2629, - [2630] = 2630, - [2631] = 2631, - [2632] = 2632, - [2633] = 288, + [2604] = 2604, + [2605] = 2480, + [2606] = 2503, + [2607] = 2455, + [2608] = 2455, + [2609] = 2504, + [2610] = 2505, + [2611] = 2481, + [2612] = 2612, + [2613] = 578, + [2614] = 2435, + [2615] = 2436, + [2616] = 2541, + [2617] = 2455, + [2618] = 2455, + [2619] = 2542, + [2620] = 2431, + [2621] = 2543, + [2622] = 2455, + [2623] = 2455, + [2624] = 2583, + [2625] = 573, + [2626] = 574, + [2627] = 441, + [2628] = 2455, + [2629] = 2438, + [2630] = 2438, + [2631] = 2434, + [2632] = 2455, + [2633] = 2612, [2634] = 2634, [2635] = 2635, - [2636] = 2636, + [2636] = 2634, [2637] = 2637, [2638] = 2638, [2639] = 2639, [2640] = 2640, [2641] = 2641, - [2642] = 2642, + [2642] = 1718, [2643] = 2643, [2644] = 2644, [2645] = 2645, @@ -4733,248 +4829,853 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2647] = 2647, [2648] = 2648, [2649] = 2649, - [2650] = 2650, - [2651] = 2649, + [2650] = 2646, + [2651] = 574, [2652] = 2652, - [2653] = 2647, - [2654] = 283, - [2655] = 2655, + [2653] = 2635, + [2654] = 2639, + [2655] = 2643, [2656] = 2656, - [2657] = 2657, - [2658] = 2657, - [2659] = 2659, - [2660] = 2655, - [2661] = 2638, + [2657] = 2649, + [2658] = 2658, + [2659] = 1695, + [2660] = 1696, + [2661] = 2645, [2662] = 2662, - [2663] = 2620, - [2664] = 2664, - [2665] = 2665, + [2663] = 2663, + [2664] = 369, + [2665] = 441, [2666] = 2666, - [2667] = 2643, - [2668] = 2641, - [2669] = 2649, - [2670] = 2644, - [2671] = 2625, - [2672] = 2672, - [2673] = 2673, - [2674] = 2619, - [2675] = 2621, + [2667] = 2635, + [2668] = 2668, + [2669] = 2637, + [2670] = 2670, + [2671] = 1681, + [2672] = 1722, + [2673] = 2638, + [2674] = 2674, + [2675] = 1749, [2676] = 2676, - [2677] = 2677, - [2678] = 2649, + [2677] = 1810, + [2678] = 2678, [2679] = 2679, - [2680] = 2622, - [2681] = 2623, - [2682] = 2624, - [2683] = 2683, - [2684] = 2684, - [2685] = 2685, - [2686] = 2686, - [2687] = 2627, - [2688] = 2688, - [2689] = 2624, - [2690] = 2635, + [2680] = 2680, + [2681] = 2666, + [2682] = 2635, + [2683] = 2640, + [2684] = 2641, + [2685] = 2678, + [2686] = 2640, + [2687] = 2687, + [2688] = 2645, + [2689] = 2646, + [2690] = 2690, [2691] = 2691, - [2692] = 2625, - [2693] = 2628, - [2694] = 2629, + [2692] = 2663, + [2693] = 2693, + [2694] = 2644, [2695] = 2695, [2696] = 2696, - [2697] = 2626, - [2698] = 2698, - [2699] = 2699, - [2700] = 2647, + [2697] = 2662, + [2698] = 2656, + [2699] = 2658, + [2700] = 2693, [2701] = 2701, - [2702] = 2702, - [2703] = 2703, - [2704] = 2630, + [2702] = 2648, + [2703] = 2646, + [2704] = 2704, [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, + [2706] = 2644, + [2707] = 2640, + [2708] = 2708, + [2709] = 2656, + [2710] = 2710, + [2711] = 2658, + [2712] = 2658, + [2713] = 2687, + [2714] = 2714, + [2715] = 2680, + [2716] = 2716, + [2717] = 2717, + [2718] = 2718, + [2719] = 2695, + [2720] = 1722, + [2721] = 2646, [2722] = 2722, - [2723] = 2666, - [2724] = 2688, - [2725] = 2725, - [2726] = 2726, - [2727] = 2618, - [2728] = 2728, + [2723] = 2644, + [2724] = 2696, + [2725] = 1749, + [2726] = 1810, + [2727] = 2656, + [2728] = 2658, [2729] = 2729, [2730] = 2730, - [2731] = 2731, - [2732] = 2673, - [2733] = 2733, - [2734] = 2734, - [2735] = 2676, - [2736] = 2736, - [2737] = 2636, - [2738] = 2738, - [2739] = 2739, - [2740] = 2688, - [2741] = 2619, - [2742] = 2742, - [2743] = 2679, - [2744] = 2686, - [2745] = 2745, - [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, - [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, + [2731] = 2674, + [2732] = 2641, + [2733] = 2646, + [2734] = 2645, + [2735] = 2646, + [2736] = 2656, + [2737] = 2646, + [2738] = 2646, + [2739] = 2663, + [2740] = 2646, + [2741] = 2646, + [2742] = 2646, + [2743] = 2646, + [2744] = 2646, + [2745] = 2646, + [2746] = 2646, + [2747] = 2646, + [2748] = 2646, + [2749] = 2646, + [2750] = 2646, + [2751] = 2646, + [2752] = 2646, + [2753] = 2646, + [2754] = 2646, + [2755] = 2646, + [2756] = 2646, + [2757] = 2646, + [2758] = 2646, + [2759] = 2759, + [2760] = 2760, + [2761] = 2761, + [2762] = 2646, + [2763] = 365, + [2764] = 2679, + [2765] = 2765, + [2766] = 2766, + [2767] = 368, + [2768] = 2768, + [2769] = 2690, + [2770] = 2676, + [2771] = 2771, + [2772] = 2772, + [2773] = 2773, + [2774] = 2662, + [2775] = 2775, + [2776] = 2776, + [2777] = 2777, + [2778] = 2778, + [2779] = 2779, [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, + [2782] = 2646, + [2783] = 2679, + [2784] = 2765, + [2785] = 2674, + [2786] = 2676, + [2787] = 2634, + [2788] = 2788, + [2789] = 2635, + [2790] = 2790, + [2791] = 2718, + [2792] = 2729, + [2793] = 2662, [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, + [2795] = 2640, + [2796] = 2777, + [2797] = 2641, + [2798] = 2645, + [2799] = 2663, + [2800] = 2761, + [2801] = 2641, + [2802] = 578, + [2803] = 2648, + [2804] = 2662, + [2805] = 162, + [2806] = 2679, + [2807] = 2634, + [2808] = 2641, + [2809] = 2679, + [2810] = 2634, + [2811] = 2641, [2812] = 2679, - [2813] = 2813, - [2814] = 2806, - [2815] = 2619, - [2816] = 2679, - [2817] = 2817, + [2813] = 2634, + [2814] = 2641, + [2815] = 2815, + [2816] = 2670, + [2817] = 2701, [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, + [2819] = 2674, + [2820] = 2644, + [2821] = 2679, + [2822] = 2676, + [2823] = 2634, + [2824] = 2641, + [2825] = 2679, + [2826] = 2634, + [2827] = 2641, + [2828] = 2828, + [2829] = 2634, + [2830] = 2830, + [2831] = 2679, + [2832] = 2832, + [2833] = 2634, + [2834] = 2641, + [2835] = 2679, + [2836] = 2634, + [2837] = 2641, + [2838] = 2668, + [2839] = 2679, [2840] = 2679, - [2841] = 2841, - [2842] = 2637, - [2843] = 2834, - [2844] = 2844, - [2845] = 2780, - [2846] = 2841, - [2847] = 2729, - [2848] = 2648, - [2849] = 2731, - [2850] = 2794, - [2851] = 2733, - [2852] = 2734, - [2853] = 2641, - [2854] = 2646, - [2855] = 2855, - [2856] = 2738, - [2857] = 2722, - [2858] = 2739, - [2859] = 2813, - [2860] = 2746, - [2861] = 2833, - [2862] = 2753, - [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, + [2841] = 2634, + [2842] = 573, + [2843] = 2843, + [2844] = 2679, + [2845] = 2634, + [2846] = 2641, + [2847] = 2768, + [2848] = 2848, + [2849] = 2849, + [2850] = 2679, + [2851] = 2634, + [2852] = 2641, + [2853] = 2674, + [2854] = 2854, + [2855] = 2676, + [2856] = 2663, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 2860, + [2864] = 2864, + [2865] = 2865, + [2866] = 2866, + [2867] = 2867, + [2868] = 2868, + [2869] = 2869, + [2870] = 2864, + [2871] = 2865, + [2872] = 2872, + [2873] = 2873, + [2874] = 2864, + [2875] = 2865, + [2876] = 2876, + [2877] = 2864, + [2878] = 2865, + [2879] = 2879, [2880] = 2880, - [2881] = 2643, - [2882] = 2882, - [2883] = 2679, - [2884] = 2818, - [2885] = 2844, - [2886] = 2643, - [2887] = 2844, - [2888] = 2638, - [2889] = 2880, - [2890] = 2798, - [2891] = 2647, + [2881] = 2864, + [2882] = 2865, + [2883] = 2883, + [2884] = 2864, + [2885] = 2885, + [2886] = 2864, + [2887] = 2887, + [2888] = 2864, + [2889] = 2889, + [2890] = 2864, + [2891] = 2891, + [2892] = 2864, + [2893] = 2893, + [2894] = 2864, + [2895] = 2895, + [2896] = 2864, + [2897] = 2880, + [2898] = 2864, + [2899] = 2864, + [2900] = 2864, + [2901] = 2901, + [2902] = 2864, + [2903] = 2887, + [2904] = 2864, + [2905] = 2905, + [2906] = 2864, + [2907] = 2907, + [2908] = 2864, + [2909] = 2865, + [2910] = 2864, + [2911] = 2911, + [2912] = 2864, + [2913] = 2913, + [2914] = 2864, + [2915] = 2915, + [2916] = 2864, + [2917] = 2917, + [2918] = 2864, + [2919] = 2864, + [2920] = 2864, + [2921] = 2865, + [2922] = 2922, + [2923] = 2923, + [2924] = 2864, + [2925] = 2922, + [2926] = 2926, + [2927] = 2927, + [2928] = 2928, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2932, + [2933] = 2717, + [2934] = 2873, + [2935] = 2866, + [2936] = 2867, + [2937] = 2865, + [2938] = 2938, + [2939] = 2939, + [2940] = 2915, + [2941] = 2859, + [2942] = 2942, + [2943] = 2943, + [2944] = 2944, + [2945] = 2945, + [2946] = 2946, + [2947] = 2947, + [2948] = 2923, + [2949] = 2949, + [2950] = 2950, + [2951] = 2928, + [2952] = 2952, + [2953] = 2953, + [2954] = 2913, + [2955] = 2955, + [2956] = 2956, + [2957] = 2895, + [2958] = 2931, + [2959] = 2942, + [2960] = 2960, + [2961] = 2961, + [2962] = 2962, + [2963] = 2963, + [2964] = 2864, + [2965] = 2931, + [2966] = 2865, + [2967] = 2922, + [2968] = 2927, + [2969] = 2922, + [2970] = 2922, + [2971] = 2865, + [2972] = 2972, + [2973] = 2865, + [2974] = 2922, + [2975] = 2865, + [2976] = 2922, + [2977] = 2922, + [2978] = 2978, + [2979] = 2979, + [2980] = 2866, + [2981] = 2907, + [2982] = 2952, + [2983] = 2876, + [2984] = 2938, + [2985] = 2985, + [2986] = 2986, + [2987] = 2987, + [2988] = 2985, + [2989] = 2895, + [2990] = 2990, + [2991] = 2942, + [2992] = 2928, + [2993] = 2922, + [2994] = 2922, + [2995] = 2862, + [2996] = 2866, + [2997] = 2985, + [2998] = 2922, + [2999] = 2922, + [3000] = 2943, + [3001] = 2866, + [3002] = 2922, + [3003] = 2942, + [3004] = 3004, + [3005] = 3005, + [3006] = 3006, + [3007] = 3007, + [3008] = 2917, + [3009] = 2873, + [3010] = 3010, + [3011] = 2942, + [3012] = 3012, + [3013] = 2866, + [3014] = 2913, + [3015] = 3006, + [3016] = 3016, + [3017] = 3017, + [3018] = 3018, + [3019] = 2885, + [3020] = 3020, + [3021] = 2879, + [3022] = 2942, + [3023] = 2913, + [3024] = 3024, + [3025] = 2961, + [3026] = 2942, + [3027] = 2866, + [3028] = 3028, + [3029] = 2866, + [3030] = 3030, + [3031] = 2949, + [3032] = 2963, + [3033] = 3033, + [3034] = 363, + [3035] = 2869, + [3036] = 2952, + [3037] = 2895, + [3038] = 2883, + [3039] = 2950, + [3040] = 3040, + [3041] = 3041, + [3042] = 3017, + [3043] = 2895, + [3044] = 3044, + [3045] = 3045, + [3046] = 3046, + [3047] = 3047, + [3048] = 2857, + [3049] = 2873, + [3050] = 3050, + [3051] = 3040, + [3052] = 2953, + [3053] = 2917, + [3054] = 2946, + [3055] = 2990, + [3056] = 2944, + [3057] = 2917, + [3058] = 2889, + [3059] = 2891, + [3060] = 2917, + [3061] = 3061, + [3062] = 2864, + [3063] = 2865, + [3064] = 2922, + [3065] = 2978, + [3066] = 2913, + [3067] = 3067, + [3068] = 3010, + [3069] = 2917, + [3070] = 2985, + [3071] = 3033, + [3072] = 363, + [3073] = 2929, + [3074] = 3061, + [3075] = 3075, + [3076] = 3045, + [3077] = 2917, + [3078] = 2952, + [3079] = 2917, + [3080] = 2917, + [3081] = 2972, + [3082] = 2979, + [3083] = 2901, + [3084] = 2942, + [3085] = 3085, + [3086] = 2931, + [3087] = 2905, + [3088] = 2868, + [3089] = 2962, + [3090] = 3090, + [3091] = 2932, + [3092] = 3020, + [3093] = 3028, + [3094] = 3075, + [3095] = 3030, + [3096] = 2857, + [3097] = 2917, + [3098] = 2990, + [3099] = 2986, + [3100] = 2987, + [3101] = 2917, + [3102] = 2942, + [3103] = 2990, + [3104] = 2857, + [3105] = 3050, + [3106] = 2928, + [3107] = 3107, + [3108] = 2864, + [3109] = 2865, + [3110] = 3107, + [3111] = 2955, + [3112] = 2917, + [3113] = 2985, + [3114] = 2956, + [3115] = 3018, + [3116] = 2930, + [3117] = 3085, + [3118] = 2952, + [3119] = 3016, + [3120] = 2990, + [3121] = 2917, + [3122] = 2873, + [3123] = 2931, + [3124] = 2893, + [3125] = 2857, + [3126] = 2917, + [3127] = 3090, + [3128] = 3128, + [3129] = 3129, + [3130] = 3130, + [3131] = 3131, + [3132] = 3132, + [3133] = 3129, + [3134] = 3134, + [3135] = 3135, + [3136] = 3132, + [3137] = 3129, + [3138] = 3138, + [3139] = 3139, + [3140] = 3140, + [3141] = 3131, + [3142] = 3142, + [3143] = 3143, + [3144] = 3144, + [3145] = 3145, + [3146] = 3144, + [3147] = 3147, + [3148] = 3132, + [3149] = 3149, + [3150] = 3150, + [3151] = 3151, + [3152] = 3152, + [3153] = 3153, + [3154] = 3154, + [3155] = 3130, + [3156] = 3156, + [3157] = 3157, + [3158] = 3158, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, + [3162] = 3162, + [3163] = 3147, + [3164] = 3164, + [3165] = 3165, + [3166] = 3166, + [3167] = 3139, + [3168] = 3168, + [3169] = 3169, + [3170] = 3132, + [3171] = 3161, + [3172] = 3153, + [3173] = 3173, + [3174] = 3174, + [3175] = 3175, + [3176] = 3176, + [3177] = 3177, + [3178] = 3178, + [3179] = 3179, + [3180] = 3180, + [3181] = 3181, + [3182] = 3182, + [3183] = 3183, + [3184] = 3184, + [3185] = 3150, + [3186] = 3186, + [3187] = 3187, + [3188] = 3183, + [3189] = 3179, + [3190] = 3175, + [3191] = 3191, + [3192] = 3192, + [3193] = 3174, + [3194] = 3179, + [3195] = 3195, + [3196] = 3196, + [3197] = 3197, + [3198] = 3147, + [3199] = 3199, + [3200] = 3166, + [3201] = 3132, + [3202] = 3202, + [3203] = 3203, + [3204] = 3204, + [3205] = 3205, + [3206] = 3157, + [3207] = 3205, + [3208] = 3195, + [3209] = 3130, + [3210] = 3160, + [3211] = 3139, + [3212] = 3212, + [3213] = 3213, + [3214] = 3214, + [3215] = 3158, + [3216] = 3162, + [3217] = 3217, + [3218] = 3130, + [3219] = 3139, + [3220] = 3129, + [3221] = 3130, + [3222] = 3132, + [3223] = 3128, + [3224] = 3224, + [3225] = 3130, + [3226] = 3131, + [3227] = 3227, + [3228] = 3228, + [3229] = 3229, + [3230] = 3230, + [3231] = 3130, + [3232] = 3196, + [3233] = 3233, + [3234] = 3234, + [3235] = 3235, + [3236] = 3147, + [3237] = 3138, + [3238] = 3139, + [3239] = 3145, + [3240] = 2872, + [3241] = 3191, + [3242] = 3217, + [3243] = 3129, + [3244] = 3244, + [3245] = 3245, + [3246] = 3204, + [3247] = 3247, + [3248] = 3247, + [3249] = 3179, + [3250] = 3235, + [3251] = 3138, + [3252] = 3129, + [3253] = 3147, + [3254] = 3254, + [3255] = 3169, + [3256] = 3224, + [3257] = 3130, + [3258] = 3258, + [3259] = 3131, + [3260] = 3135, + [3261] = 3261, + [3262] = 3191, + [3263] = 3130, + [3264] = 3140, + [3265] = 3139, + [3266] = 3266, + [3267] = 3245, + [3268] = 3268, + [3269] = 3269, + [3270] = 3130, + [3271] = 3131, + [3272] = 3149, + [3273] = 3191, + [3274] = 3130, + [3275] = 3275, + [3276] = 3179, + [3277] = 3277, + [3278] = 3228, + [3279] = 3130, + [3280] = 3139, + [3281] = 3281, + [3282] = 3147, + [3283] = 3283, + [3284] = 3247, + [3285] = 3132, + [3286] = 3166, + [3287] = 3156, + [3288] = 3128, + [3289] = 3289, + [3290] = 3179, + [3291] = 3173, + [3292] = 3160, + [3293] = 3129, + [3294] = 3204, + [3295] = 3233, + [3296] = 3181, + [3297] = 3184, + [3298] = 3199, + [3299] = 3299, + [3300] = 3197, + [3301] = 3191, + [3302] = 3302, + [3303] = 3303, + [3304] = 3214, + [3305] = 3179, + [3306] = 3203, + [3307] = 3160, + [3308] = 3147, + [3309] = 3147, + [3310] = 3310, + [3311] = 3283, + [3312] = 3312, + [3313] = 3156, + [3314] = 3314, + [3315] = 3247, + [3316] = 3179, + [3317] = 3213, + [3318] = 3129, + [3319] = 3319, + [3320] = 3283, + [3321] = 3202, + [3322] = 3156, + [3323] = 3132, + [3324] = 3283, + [3325] = 3244, + [3326] = 3156, + [3327] = 3283, + [3328] = 3129, + [3329] = 3283, + [3330] = 3283, + [3331] = 3283, + [3332] = 3132, + [3333] = 3156, + [3334] = 3214, + [3335] = 3138, + [3336] = 3176, + [3337] = 3337, + [3338] = 3338, + [3339] = 3245, + [3340] = 3182, + [3341] = 3258, + [3342] = 3247, + [3343] = 3195, + [3344] = 3266, + [3345] = 3205, + [3346] = 3303, + [3347] = 3177, + [3348] = 3348, + [3349] = 3132, + [3350] = 3195, + [3351] = 3129, + [3352] = 3310, + [3353] = 3132, + [3354] = 3212, + [3355] = 3178, + [3356] = 3356, + [3357] = 3357, + [3358] = 3358, + [3359] = 3359, + [3360] = 3132, + [3361] = 3129, + [3362] = 3160, + [3363] = 3205, + [3364] = 3268, + [3365] = 3147, + [3366] = 3128, + [3367] = 3154, + [3368] = 3134, + [3369] = 473, + [3370] = 3205, + [3371] = 3130, + [3372] = 3132, + [3373] = 3128, + [3374] = 3129, + [3375] = 3348, + [3376] = 3277, + [3377] = 3205, + [3378] = 3235, + [3379] = 3180, + [3380] = 3128, + [3381] = 3128, + [3382] = 3382, + [3383] = 3139, + [3384] = 3132, + [3385] = 3283, + [3386] = 3156, + [3387] = 3387, + [3388] = 3129, + [3389] = 3337, + [3390] = 3258, + [3391] = 3391, + [3392] = 3165, + [3393] = 3393, + [3394] = 3387, + [3395] = 3132, + [3396] = 3129, + [3397] = 3164, + [3398] = 3391, + [3399] = 3132, + [3400] = 3129, + [3401] = 3204, + [3402] = 3234, + [3403] = 3168, + [3404] = 3132, + [3405] = 3205, + [3406] = 3129, + [3407] = 3235, + [3408] = 3128, + [3409] = 3409, + [3410] = 3132, + [3411] = 3166, + [3412] = 3205, + [3413] = 3413, + [3414] = 3129, + [3415] = 3128, + [3416] = 3159, + [3417] = 3254, + [3418] = 3179, + [3419] = 3283, + [3420] = 3156, + [3421] = 3132, + [3422] = 3129, + [3423] = 453, + [3424] = 3424, + [3425] = 3275, + [3426] = 3204, + [3427] = 3427, + [3428] = 3427, + [3429] = 3132, + [3430] = 3129, + [3431] = 3413, + [3432] = 3151, + [3433] = 3132, + [3434] = 3129, + [3435] = 3132, + [3436] = 3269, + [3437] = 3160, + [3438] = 3132, + [3439] = 3205, + [3440] = 3129, + [3441] = 3205, + [3442] = 3442, + [3443] = 3261, + [3444] = 3129, + [3445] = 3132, + [3446] = 3205, + [3447] = 3129, + [3448] = 3448, + [3449] = 3128, + [3450] = 3258, + [3451] = 3227, + [3452] = 3452, + [3453] = 3283, + [3454] = 3283, + [3455] = 3132, + [3456] = 3283, + [3457] = 3129, + [3458] = 3128, + [3459] = 3338, + [3460] = 3452, + [3461] = 3142, + [3462] = 3314, + [3463] = 3132, + [3464] = 3319, + [3465] = 3129, + [3466] = 3229, + [3467] = 3467, + [3468] = 3409, + [3469] = 3205, + [3470] = 3132, + [3471] = 3129, + [3472] = 3128, + [3473] = 3393, + [3474] = 3129, + [3475] = 3132, + [3476] = 3129, + [3477] = 3166, + [3478] = 3130, + [3479] = 3230, + [3480] = 3128, + [3481] = 3132, + [3482] = 3129, + [3483] = 3235, + [3484] = 3205, + [3485] = 3485, + [3486] = 3382, + [3487] = 3128, + [3488] = 3160, + [3489] = 3132, + [3490] = 3258, + [3491] = 3129, + [3492] = 3214, + [3493] = 3205, + [3494] = 3467, + [3495] = 3186, + [3496] = 3283, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4982,82 +5683,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, + '"', 112, + '#', 39, + '$', 118, + '%', 67, + '&', 73, + '\'', 102, + '(', 47, + ')', 48, + '*', 46, + '+', 69, + ',', 52, + '-', 64, + '.', 45, + '/', 68, + '0', 94, + ':', 51, + '<', 81, + '=', 89, + '>', 84, + '?', 57, + '@', 59, + '[', 54, + '\\', 29, + ']', 55, + '^', 75, + '_', 92, + 'e', 126, + '{', 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(129); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(128); 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, + '"', 112, + '$', 28, + '%', 67, + '&', 73, + '\'', 102, + '(', 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 +5765,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(129); 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 +5801,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(129); 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, + '"', 112, + '\'', 102, + '(', 47, + ')', 48, + ',', 52, + '-', 19, + '.', 44, + '/', 13, + '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 +5834,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(129); END_STATE(); case 4: ADVANCE_MAP( - '"', 124, - '\'', 114, - '(', 53, - ')', 54, - ',', 58, - '-', 22, - '.', 51, + '"', 112, + '\'', 102, + '(', 47, + ')', 48, + ',', 52, + '-', 19, + '.', 44, '/', 13, - '0', 104, - ':', 57, - '<', 90, - '=', 100, - '>', 93, - '?', 62, - '[', 60, - ']', 61, - '_', 102, - '{', 56, - '}', 55, + '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 +5866,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(129); 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(112); + if (lookahead == '/') ADVANCE(114); + if (lookahead == '\\') ADVANCE(116); 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(115); + if (lookahead != 0) ADVANCE(113); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(124); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(128); + ADVANCE_MAP( + '"', 103, + '$', 118, + '\'', 102, + '.', 44, + '/', 108, + '0', 94, + ':', 51, + '=', 109, + '?', 56, + '[', 54, + '\\', 111, + '_', 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(104); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + if (lookahead != 0) ADVANCE(103); END_STATE(); case 7: ADVANCE_MAP( - '"', 115, - '$', 130, - '\'', 114, - '.', 51, - '/', 120, - '0', 104, - ':', 57, - '=', 121, - '?', 62, - '[', 60, - '\\', 123, - '_', 102, - '{', 56, + '"', 103, + '$', 118, + '\'', 102, + '/', 108, + '0', 94, + '[', 54, + '\\', 111, + '_', 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(105); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); - if (lookahead != 0) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + if (lookahead != 0) ADVANCE(103); END_STATE(); case 8: ADVANCE_MAP( - '"', 115, - '$', 130, - '\'', 114, - '/', 120, - '0', 104, - '[', 60, - '\\', 123, - '_', 102, - '{', 56, + '$', 118, + '\'', 102, + '.', 44, + '/', 108, + ':', 51, + '=', 109, + '?', 56, + '\\', 111, ); - 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(106); + if (lookahead != 0) ADVANCE(103); END_STATE(); case 9: - ADVANCE_MAP( - '$', 130, - '\'', 114, - '.', 51, - '/', 120, - ':', 57, - '=', 121, - '?', 62, - '\\', 123, - ); + if (lookahead == '$') ADVANCE(118); + if (lookahead == '\'') ADVANCE(102); + if (lookahead == '/') ADVANCE(108); + if (lookahead == '\\') ADVANCE(111); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(118); - if (lookahead != 0) ADVANCE(115); + lookahead == 0xfeff) ADVANCE(107); + if (lookahead != 0) ADVANCE(103); 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, + '-', 19, + '/', 13, + '=', 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(129); END_STATE(); case 11: ADVANCE_MAP( - '(', 53, - ')', 54, - ',', 58, - '-', 22, + '(', 47, + ')', 48, + ',', 52, + '.', 44, '/', 13, - '=', 98, - '>', 93, - '{', 56, + ':', 51, + '<', 80, + '=', 20, + '?', 56, + ']', 55, + '{', 50, + '}', 49, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -5314,40 +6006,28 @@ 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(129); END_STATE(); case 12: - ADVANCE_MAP( - '(', 53, - ')', 54, - ',', 58, - '.', 51, - '/', 13, - ':', 57, - '<', 90, - '=', 23, - '?', 62, - ']', 61, - '{', 56, - '}', 55, - ); + if (lookahead == '*') ADVANCE(46); + if (lookahead == '/') ADVANCE(13); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(12); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(133); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 13: if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '/') ADVANCE(123); END_STATE(); case 14: if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(135); + if (lookahead == '/') ADVANCE(122); if (lookahead != 0) ADVANCE(15); END_STATE(); case 15: @@ -5355,848 +6035,680 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(101); + if (lookahead == '.') ADVANCE(91); 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 == '0') ADVANCE(96); + 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(18); + if (('1' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(97); END_STATE(); case 18: if (lookahead == '/') ADVANCE(13); - if (lookahead == '0') ADVANCE(108); - if (lookahead == 'e') ADVANCE(30); - if (lookahead == 'i') ADVANCE(28); + if (lookahead == '0') ADVANCE(96); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(19); + lookahead == 0xfeff) SKIP(18); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(109); + lookahead == '_') ADVANCE(97); END_STATE(); case 19: - if (lookahead == '/') ADVANCE(13); - if (lookahead == '0') ADVANCE(108); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(19); - if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(109); + if (lookahead == '>') ADVANCE(58); 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(86); 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(121); + if (lookahead != 0) ADVANCE(119); 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(119); 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(98); 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, + '"', 112, + '#', 39, + '$', 118, + '%', 67, + '&', 73, + '\'', 102, + '(', 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(128); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); 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, + '"', 112, + '#', 39, + '$', 28, + '%', 67, + '&', 73, + '\'', 102, + '(', 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(129); 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: + case 40: ACCEPT_TOKEN(aux_sym_preprocessor_statement_token1); END_STATE(); - case 47: - 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(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); 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); 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(123); 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(99); + 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(129); 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(99); + 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(130); END_STATE(); - case 104: + case 94: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(111); - if (lookahead == 'x') ADVANCE(40); + if (lookahead == '.') ADVANCE(99); + 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(99); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(105); - END_STATE(); - case 106: - ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '_') ADVANCE(106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + lookahead == '_') ADVANCE(95); END_STATE(); - case 107: - ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '_') ADVANCE(109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); - END_STATE(); - case 108: + case 96: 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(97); END_STATE(); - case 109: + case 97: ACCEPT_TOKEN(aux_sym_integer_token1); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(109); + lookahead == '_') ADVANCE(97); END_STATE(); - case 110: + case 98: 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(98); END_STATE(); - case 111: + case 99: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == '.') ADVANCE(111); - if (lookahead == 'e') ADVANCE(113); + if (lookahead == '.') ADVANCE(99); + if (lookahead == 'e') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(112); + lookahead == '_') ADVANCE(100); END_STATE(); - case 112: + case 100: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'e') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(112); + lookahead == '_') ADVANCE(100); END_STATE(); - case 113: + case 101: ACCEPT_TOKEN(aux_sym_float_token2); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(113); + lookahead == '_') ADVANCE(101); END_STATE(); - case 114: + case 102: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 115: + case 103: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 116: + case 104: ACCEPT_TOKEN(aux_sym_string_token2); ADVANCE_MAP( - '"', 115, - '$', 130, - '.', 51, - '/', 120, - '0', 104, - ':', 57, - '=', 121, - '?', 62, - '[', 60, - '_', 102, - '{', 56, + '"', 103, + '$', 118, + '.', 44, + '/', 108, + '0', 94, + ':', 51, + '=', 109, + '?', 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(104); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); if (lookahead != 0 && - lookahead != '\'') ADVANCE(115); + lookahead != '\'') ADVANCE(103); END_STATE(); - case 117: + case 105: 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(103); + if (lookahead == '$') ADVANCE(118); + if (lookahead == '/') ADVANCE(108); + 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(105); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); if (lookahead != 0 && - lookahead != '\'') ADVANCE(115); + lookahead != '\'') ADVANCE(103); END_STATE(); - case 118: + case 106: 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(118); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '/') ADVANCE(108); + if (lookahead == ':') ADVANCE(51); + if (lookahead == '=') ADVANCE(109); + if (lookahead == '?') ADVANCE(56); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(118); + lookahead == 0xfeff) ADVANCE(106); if (lookahead != 0 && - lookahead != '\'') ADVANCE(115); + lookahead != '\'') ADVANCE(103); END_STATE(); - case 119: + case 107: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '$') ADVANCE(130); - if (lookahead == '/') ADVANCE(120); + if (lookahead == '$') ADVANCE(118); + if (lookahead == '/') ADVANCE(108); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(119); + lookahead == 0xfeff) ADVANCE(107); if (lookahead != 0 && - lookahead != '\'') ADVANCE(115); + lookahead != '\'') ADVANCE(103); END_STATE(); - case 120: + case 108: ACCEPT_TOKEN(aux_sym_string_token2); if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '/') ADVANCE(123); END_STATE(); - case 121: + case 109: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '>') ADVANCE(96); + if (lookahead == '>') ADVANCE(86); END_STATE(); - case 122: + case 110: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '_') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); END_STATE(); - case 123: + case 111: 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(121); + if (lookahead != 0) ADVANCE(119); END_STATE(); - case 124: + case 112: ACCEPT_TOKEN(aux_sym_string_token3); END_STATE(); - case 125: + case 113: ACCEPT_TOKEN(aux_sym_string_token4); END_STATE(); - case 126: + case 114: ACCEPT_TOKEN(aux_sym_string_token4); if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '/') ADVANCE(123); END_STATE(); - case 127: + case 115: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == '/') ADVANCE(126); + if (lookahead == '/') ADVANCE(114); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(127); + lookahead == 0xfeff) ADVANCE(115); if (lookahead != 0 && - lookahead != '"') ADVANCE(125); + lookahead != '"') ADVANCE(113); END_STATE(); - case 128: + case 116: 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(121); + if (lookahead != 0) ADVANCE(119); END_STATE(); - case 129: + case 117: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 130: + case 118: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(129); + if (lookahead == '{') ADVANCE(117); END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_LBRACE2); - END_STATE(); - case 132: + case 119: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 133: + case 120: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(132); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); END_STATE(); - case 134: + case 121: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(133); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); END_STATE(); - case 135: + case 122: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 136: + case 123: 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); - 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); + lookahead != '\n') ADVANCE(123); 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 124: 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(129); + if (lookahead == 'd') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); END_STATE(); - case 142: + case 125: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'l') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(129); + if (lookahead == 'e') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); END_STATE(); - case 143: + case 126: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 's') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(129); + if (lookahead == 'l') ADVANCE(127); + if (lookahead == 'n') ADVANCE(124); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); END_STATE(); - case 144: + case 127: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 's') ADVANCE(139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(129); + if (lookahead == 's') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); END_STATE(); - case 145: + case 128: 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(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(128); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); END_STATE(); - case 146: + case 129: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); END_STATE(); - case 147: + case 130: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(130); END_STATE(); - case 148: + case 131: ACCEPT_TOKEN(sym__camelCaseIdentifier); - if (lookahead == '_') ADVANCE(148); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(148); + if (lookahead == '_') ADVANCE(131); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(149); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(132); END_STATE(); - case 149: + case 132: ACCEPT_TOKEN(sym__camelCaseIdentifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); - case 150: + case 133: ACCEPT_TOKEN(sym__pascalCaseIdentifier); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(151); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); - case 151: + case 134: ACCEPT_TOKEN(sym__pascalCaseIdentifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(151); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); default: return false; @@ -6261,560 +6773,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 +7336,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 +7366,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 +7477,3502 @@ 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}, + [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 = 2}, + [13] = {.lex_state = 37, .external_lex_state = 3}, + [14] = {.lex_state = 37, .external_lex_state = 2}, + [15] = {.lex_state = 37, .external_lex_state = 2}, + [16] = {.lex_state = 37, .external_lex_state = 2}, + [17] = {.lex_state = 37, .external_lex_state = 2}, + [18] = {.lex_state = 37, .external_lex_state = 2}, + [19] = {.lex_state = 37, .external_lex_state = 2}, + [20] = {.lex_state = 37, .external_lex_state = 2}, + [21] = {.lex_state = 37, .external_lex_state = 2}, + [22] = {.lex_state = 37, .external_lex_state = 2}, + [23] = {.lex_state = 37, .external_lex_state = 2}, + [24] = {.lex_state = 37, .external_lex_state = 2}, + [25] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [32] = {.lex_state = 37, .external_lex_state = 2}, + [33] = {.lex_state = 37, .external_lex_state = 2}, + [34] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 2}, + [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 = 2}, + [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 = 3}, + [89] = {.lex_state = 37, .external_lex_state = 2}, + [90] = {.lex_state = 37, .external_lex_state = 3}, + [91] = {.lex_state = 37, .external_lex_state = 3}, + [92] = {.lex_state = 37, .external_lex_state = 3}, + [93] = {.lex_state = 37, .external_lex_state = 3}, + [94] = {.lex_state = 37, .external_lex_state = 3}, + [95] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, + [102] = {.lex_state = 37, .external_lex_state = 3}, + [103] = {.lex_state = 37, .external_lex_state = 3}, + [104] = {.lex_state = 37, .external_lex_state = 3}, + [105] = {.lex_state = 37, .external_lex_state = 3}, + [106] = {.lex_state = 37, .external_lex_state = 2}, + [107] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, + [113] = {.lex_state = 37, .external_lex_state = 3}, + [114] = {.lex_state = 37, .external_lex_state = 2}, + [115] = {.lex_state = 37, .external_lex_state = 2}, + [116] = {.lex_state = 37, .external_lex_state = 2}, + [117] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 2}, + [127] = {.lex_state = 37, .external_lex_state = 2}, + [128] = {.lex_state = 37, .external_lex_state = 2}, + [129] = {.lex_state = 37, .external_lex_state = 2}, + [130] = {.lex_state = 37, .external_lex_state = 2}, + [131] = {.lex_state = 37, .external_lex_state = 2}, + [132] = {.lex_state = 37, .external_lex_state = 2}, + [133] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [142] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 1}, + [207] = {.lex_state = 37, .external_lex_state = 3}, + [208] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, + [217] = {.lex_state = 37, .external_lex_state = 1}, + [218] = {.lex_state = 37, .external_lex_state = 3}, + [219] = {.lex_state = 37, .external_lex_state = 2}, + [220] = {.lex_state = 37, .external_lex_state = 1}, + [221] = {.lex_state = 37, .external_lex_state = 1}, + [222] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 1}, + [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 = 3}, + [243] = {.lex_state = 37, .external_lex_state = 2}, + [244] = {.lex_state = 37, .external_lex_state = 3}, + [245] = {.lex_state = 37, .external_lex_state = 3}, + [246] = {.lex_state = 37, .external_lex_state = 3}, + [247] = {.lex_state = 37, .external_lex_state = 3}, + [248] = {.lex_state = 37, .external_lex_state = 3}, + [249] = {.lex_state = 37, .external_lex_state = 3}, + [250] = {.lex_state = 37, .external_lex_state = 3}, + [251] = {.lex_state = 37, .external_lex_state = 3}, + [252] = {.lex_state = 37, .external_lex_state = 2}, + [253] = {.lex_state = 37, .external_lex_state = 3}, + [254] = {.lex_state = 37, .external_lex_state = 3}, + [255] = {.lex_state = 37, .external_lex_state = 3}, + [256] = {.lex_state = 37, .external_lex_state = 3}, + [257] = {.lex_state = 37, .external_lex_state = 3}, + [258] = {.lex_state = 37, .external_lex_state = 3}, + [259] = {.lex_state = 37, .external_lex_state = 3}, + [260] = {.lex_state = 37, .external_lex_state = 3}, + [261] = {.lex_state = 37, .external_lex_state = 3}, + [262] = {.lex_state = 37, .external_lex_state = 2}, + [263] = {.lex_state = 37, .external_lex_state = 3}, + [264] = {.lex_state = 37, .external_lex_state = 3}, + [265] = {.lex_state = 37, .external_lex_state = 3}, + [266] = {.lex_state = 37, .external_lex_state = 3}, + [267] = {.lex_state = 37, .external_lex_state = 3}, + [268] = {.lex_state = 37, .external_lex_state = 3}, + [269] = {.lex_state = 37, .external_lex_state = 3}, + [270] = {.lex_state = 37, .external_lex_state = 3}, + [271] = {.lex_state = 37, .external_lex_state = 3}, + [272] = {.lex_state = 37, .external_lex_state = 3}, + [273] = {.lex_state = 37, .external_lex_state = 3}, + [274] = {.lex_state = 37, .external_lex_state = 3}, + [275] = {.lex_state = 37, .external_lex_state = 3}, + [276] = {.lex_state = 37, .external_lex_state = 3}, + [277] = {.lex_state = 37, .external_lex_state = 3}, + [278] = {.lex_state = 37, .external_lex_state = 3}, + [279] = {.lex_state = 37, .external_lex_state = 3}, + [280] = {.lex_state = 37, .external_lex_state = 3}, + [281] = {.lex_state = 37, .external_lex_state = 3}, + [282] = {.lex_state = 37, .external_lex_state = 3}, + [283] = {.lex_state = 37, .external_lex_state = 3}, + [284] = {.lex_state = 37, .external_lex_state = 3}, + [285] = {.lex_state = 37, .external_lex_state = 2}, + [286] = {.lex_state = 37, .external_lex_state = 3}, + [287] = {.lex_state = 37, .external_lex_state = 3}, + [288] = {.lex_state = 37, .external_lex_state = 3}, + [289] = {.lex_state = 37, .external_lex_state = 3}, + [290] = {.lex_state = 37, .external_lex_state = 3}, + [291] = {.lex_state = 37, .external_lex_state = 3}, + [292] = {.lex_state = 37, .external_lex_state = 3}, + [293] = {.lex_state = 37, .external_lex_state = 3}, + [294] = {.lex_state = 37, .external_lex_state = 2}, + [295] = {.lex_state = 37, .external_lex_state = 3}, + [296] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 2}, + [303] = {.lex_state = 37, .external_lex_state = 2}, + [304] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [328] = {.lex_state = 37, .external_lex_state = 2}, + [329] = {.lex_state = 37, .external_lex_state = 2}, + [330] = {.lex_state = 37, .external_lex_state = 2}, + [331] = {.lex_state = 37, .external_lex_state = 2}, + [332] = {.lex_state = 37, .external_lex_state = 2}, + [333] = {.lex_state = 37, .external_lex_state = 2}, + [334] = {.lex_state = 37, .external_lex_state = 2}, + [335] = {.lex_state = 37, .external_lex_state = 2}, + [336] = {.lex_state = 37, .external_lex_state = 2}, + [337] = {.lex_state = 37, .external_lex_state = 2}, + [338] = {.lex_state = 37, .external_lex_state = 2}, + [339] = {.lex_state = 37, .external_lex_state = 2}, + [340] = {.lex_state = 37, .external_lex_state = 2}, + [341] = {.lex_state = 37, .external_lex_state = 2}, + [342] = {.lex_state = 37, .external_lex_state = 2}, + [343] = {.lex_state = 37, .external_lex_state = 2}, + [344] = {.lex_state = 37, .external_lex_state = 2}, + [345] = {.lex_state = 37, .external_lex_state = 2}, + [346] = {.lex_state = 37, .external_lex_state = 2}, + [347] = {.lex_state = 37, .external_lex_state = 2}, + [348] = {.lex_state = 37, .external_lex_state = 2}, + [349] = {.lex_state = 37, .external_lex_state = 2}, + [350] = {.lex_state = 37, .external_lex_state = 2}, + [351] = {.lex_state = 37, .external_lex_state = 2}, + [352] = {.lex_state = 37, .external_lex_state = 2}, + [353] = {.lex_state = 37, .external_lex_state = 2}, + [354] = {.lex_state = 37, .external_lex_state = 2}, + [355] = {.lex_state = 37, .external_lex_state = 2}, + [356] = {.lex_state = 37, .external_lex_state = 2}, + [357] = {.lex_state = 37, .external_lex_state = 2}, + [358] = {.lex_state = 37, .external_lex_state = 2}, + [359] = {.lex_state = 37, .external_lex_state = 2}, + [360] = {.lex_state = 37, .external_lex_state = 3}, + [361] = {.lex_state = 37, .external_lex_state = 1}, + [362] = {.lex_state = 37, .external_lex_state = 2}, + [363] = {.lex_state = 37, .external_lex_state = 2}, + [364] = {.lex_state = 37, .external_lex_state = 1}, + [365] = {.lex_state = 37, .external_lex_state = 3}, + [366] = {.lex_state = 37, .external_lex_state = 3}, + [367] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 1}, + [372] = {.lex_state = 37, .external_lex_state = 4}, + [373] = {.lex_state = 37, .external_lex_state = 1}, + [374] = {.lex_state = 37, .external_lex_state = 3}, + [375] = {.lex_state = 37, .external_lex_state = 4}, + [376] = {.lex_state = 37, .external_lex_state = 4}, + [377] = {.lex_state = 37, .external_lex_state = 4}, + [378] = {.lex_state = 37, .external_lex_state = 2}, + [379] = {.lex_state = 37, .external_lex_state = 2}, + [380] = {.lex_state = 37, .external_lex_state = 1}, + [381] = {.lex_state = 37, .external_lex_state = 3}, + [382] = {.lex_state = 37, .external_lex_state = 3}, + [383] = {.lex_state = 37, .external_lex_state = 2}, + [384] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 3}, + [393] = {.lex_state = 37, .external_lex_state = 3}, + [394] = {.lex_state = 37, .external_lex_state = 3}, + [395] = {.lex_state = 37, .external_lex_state = 3}, + [396] = {.lex_state = 37, .external_lex_state = 3}, + [397] = {.lex_state = 37, .external_lex_state = 3}, + [398] = {.lex_state = 37, .external_lex_state = 3}, + [399] = {.lex_state = 37, .external_lex_state = 3}, + [400] = {.lex_state = 37, .external_lex_state = 3}, + [401] = {.lex_state = 37, .external_lex_state = 3}, + [402] = {.lex_state = 37, .external_lex_state = 3}, + [403] = {.lex_state = 37, .external_lex_state = 3}, + [404] = {.lex_state = 37, .external_lex_state = 3}, + [405] = {.lex_state = 37, .external_lex_state = 3}, + [406] = {.lex_state = 37, .external_lex_state = 3}, + [407] = {.lex_state = 37, .external_lex_state = 3}, + [408] = {.lex_state = 37, .external_lex_state = 3}, + [409] = {.lex_state = 37, .external_lex_state = 3}, + [410] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, + [416] = {.lex_state = 37, .external_lex_state = 3}, + [417] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 2}, + [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 = 4}, + [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 = 2}, + [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 = 3}, + [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 = 3}, + [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 = 2}, + [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 = 4}, + [571] = {.lex_state = 37, .external_lex_state = 3}, + [572] = {.lex_state = 37, .external_lex_state = 1}, + [573] = {.lex_state = 37, .external_lex_state = 2}, + [574] = {.lex_state = 37, .external_lex_state = 2}, + [575] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [586] = {.lex_state = 37, .external_lex_state = 2}, + [587] = {.lex_state = 37, .external_lex_state = 2}, + [588] = {.lex_state = 37, .external_lex_state = 3}, + [589] = {.lex_state = 37, .external_lex_state = 1}, + [590] = {.lex_state = 37, .external_lex_state = 2}, + [591] = {.lex_state = 37, .external_lex_state = 2}, + [592] = {.lex_state = 37, .external_lex_state = 2}, + [593] = {.lex_state = 37, .external_lex_state = 4}, + [594] = {.lex_state = 37, .external_lex_state = 2}, + [595] = {.lex_state = 37, .external_lex_state = 2}, + [596] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 2}, + [602] = {.lex_state = 37, .external_lex_state = 2}, + [603] = {.lex_state = 37, .external_lex_state = 2}, + [604] = {.lex_state = 37, .external_lex_state = 3}, + [605] = {.lex_state = 37, .external_lex_state = 4}, + [606] = {.lex_state = 37, .external_lex_state = 4}, + [607] = {.lex_state = 37, .external_lex_state = 2}, + [608] = {.lex_state = 37, .external_lex_state = 2}, + [609] = {.lex_state = 37, .external_lex_state = 2}, + [610] = {.lex_state = 37, .external_lex_state = 2}, + [611] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [617] = {.lex_state = 37, .external_lex_state = 3}, + [618] = {.lex_state = 37, .external_lex_state = 2}, + [619] = {.lex_state = 37, .external_lex_state = 2}, + [620] = {.lex_state = 37, .external_lex_state = 2}, + [621] = {.lex_state = 37, .external_lex_state = 2}, + [622] = {.lex_state = 37, .external_lex_state = 2}, + [623] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [629] = {.lex_state = 37, .external_lex_state = 2}, + [630] = {.lex_state = 37, .external_lex_state = 2}, + [631] = {.lex_state = 37, .external_lex_state = 2}, + [632] = {.lex_state = 37, .external_lex_state = 2}, + [633] = {.lex_state = 37, .external_lex_state = 2}, + [634] = {.lex_state = 37, .external_lex_state = 2}, + [635] = {.lex_state = 37, .external_lex_state = 2}, + [636] = {.lex_state = 37, .external_lex_state = 2}, + [637] = {.lex_state = 37, .external_lex_state = 2}, + [638] = {.lex_state = 37, .external_lex_state = 2}, + [639] = {.lex_state = 37, .external_lex_state = 2}, + [640] = {.lex_state = 37, .external_lex_state = 2}, + [641] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [646] = {.lex_state = 37, .external_lex_state = 2}, + [647] = {.lex_state = 37, .external_lex_state = 2}, + [648] = {.lex_state = 37, .external_lex_state = 2}, + [649] = {.lex_state = 37, .external_lex_state = 2}, + [650] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, + [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 = 3}, + [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 = 2}, + [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 = 2}, + [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 = 2}, + [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 = 4}, + [807] = {.lex_state = 37, .external_lex_state = 1}, + [808] = {.lex_state = 37, .external_lex_state = 2}, + [809] = {.lex_state = 37, .external_lex_state = 3}, + [810] = {.lex_state = 37, .external_lex_state = 2}, + [811] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 1, .external_lex_state = 2}, + [825] = {.lex_state = 1, .external_lex_state = 2}, + [826] = {.lex_state = 1, .external_lex_state = 2}, + [827] = {.lex_state = 1, .external_lex_state = 2}, + [828] = {.lex_state = 1, .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 = 1, .external_lex_state = 2}, + [835] = {.lex_state = 1, .external_lex_state = 2}, + [836] = {.lex_state = 1, .external_lex_state = 2}, + [837] = {.lex_state = 1, .external_lex_state = 2}, + [838] = {.lex_state = 37, .external_lex_state = 3}, + [839] = {.lex_state = 37, .external_lex_state = 2}, + [840] = {.lex_state = 1, .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 = 1}, + [847] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 4}, + [855] = {.lex_state = 37, .external_lex_state = 2}, + [856] = {.lex_state = 37, .external_lex_state = 4}, + [857] = {.lex_state = 37, .external_lex_state = 2}, + [858] = {.lex_state = 37, .external_lex_state = 2}, + [859] = {.lex_state = 37, .external_lex_state = 1}, + [860] = {.lex_state = 37, .external_lex_state = 1}, + [861] = {.lex_state = 37, .external_lex_state = 2}, + [862] = {.lex_state = 37, .external_lex_state = 1}, + [863] = {.lex_state = 37, .external_lex_state = 1}, + [864] = {.lex_state = 37, .external_lex_state = 1}, + [865] = {.lex_state = 37, .external_lex_state = 4}, + [866] = {.lex_state = 37, .external_lex_state = 2}, + [867] = {.lex_state = 37, .external_lex_state = 2}, + [868] = {.lex_state = 37, .external_lex_state = 2}, + [869] = {.lex_state = 37, .external_lex_state = 2}, + [870] = {.lex_state = 37, .external_lex_state = 2}, + [871] = {.lex_state = 1, .external_lex_state = 3}, + [872] = {.lex_state = 1, .external_lex_state = 3}, + [873] = {.lex_state = 1, .external_lex_state = 3}, + [874] = {.lex_state = 1, .external_lex_state = 3}, + [875] = {.lex_state = 1, .external_lex_state = 3}, + [876] = {.lex_state = 37, .external_lex_state = 4}, + [877] = {.lex_state = 37, .external_lex_state = 4}, + [878] = {.lex_state = 37, .external_lex_state = 4}, + [879] = {.lex_state = 37, .external_lex_state = 2}, + [880] = {.lex_state = 37, .external_lex_state = 2}, + [881] = {.lex_state = 37, .external_lex_state = 2}, + [882] = {.lex_state = 37, .external_lex_state = 4}, + [883] = {.lex_state = 37, .external_lex_state = 2}, + [884] = {.lex_state = 37, .external_lex_state = 2}, + [885] = {.lex_state = 37, .external_lex_state = 4}, + [886] = {.lex_state = 1, .external_lex_state = 4}, + [887] = {.lex_state = 37, .external_lex_state = 4}, + [888] = {.lex_state = 37, .external_lex_state = 4}, + [889] = {.lex_state = 37, .external_lex_state = 4}, + [890] = {.lex_state = 37, .external_lex_state = 4}, + [891] = {.lex_state = 1, .external_lex_state = 4}, + [892] = {.lex_state = 1, .external_lex_state = 4}, + [893] = {.lex_state = 1, .external_lex_state = 4}, + [894] = {.lex_state = 1, .external_lex_state = 4}, + [895] = {.lex_state = 1, .external_lex_state = 2}, + [896] = {.lex_state = 37, .external_lex_state = 2}, + [897] = {.lex_state = 37, .external_lex_state = 4}, + [898] = {.lex_state = 37, .external_lex_state = 2}, + [899] = {.lex_state = 37, .external_lex_state = 2}, + [900] = {.lex_state = 1, .external_lex_state = 2}, + [901] = {.lex_state = 37, .external_lex_state = 4}, + [902] = {.lex_state = 37, .external_lex_state = 2}, + [903] = {.lex_state = 37, .external_lex_state = 2}, + [904] = {.lex_state = 37, .external_lex_state = 4}, + [905] = {.lex_state = 1, .external_lex_state = 2}, + [906] = {.lex_state = 37, .external_lex_state = 4}, + [907] = {.lex_state = 37, .external_lex_state = 4}, + [908] = {.lex_state = 1, .external_lex_state = 2}, + [909] = {.lex_state = 1, .external_lex_state = 2}, + [910] = {.lex_state = 1, .external_lex_state = 2}, + [911] = {.lex_state = 1, .external_lex_state = 2}, + [912] = {.lex_state = 37, .external_lex_state = 2}, + [913] = {.lex_state = 37, .external_lex_state = 2}, + [914] = {.lex_state = 37, .external_lex_state = 2}, + [915] = {.lex_state = 37, .external_lex_state = 2}, + [916] = {.lex_state = 37, .external_lex_state = 2}, + [917] = {.lex_state = 37, .external_lex_state = 2}, + [918] = {.lex_state = 37, .external_lex_state = 2}, + [919] = {.lex_state = 37, .external_lex_state = 2}, + [920] = {.lex_state = 37, .external_lex_state = 2}, + [921] = {.lex_state = 37, .external_lex_state = 2}, + [922] = {.lex_state = 37, .external_lex_state = 2}, + [923] = {.lex_state = 37, .external_lex_state = 2}, + [924] = {.lex_state = 2, .external_lex_state = 3}, + [925] = {.lex_state = 2, .external_lex_state = 2}, + [926] = {.lex_state = 2, .external_lex_state = 2}, + [927] = {.lex_state = 2, .external_lex_state = 2}, + [928] = {.lex_state = 2, .external_lex_state = 3}, + [929] = {.lex_state = 2, .external_lex_state = 3}, + [930] = {.lex_state = 2, .external_lex_state = 3}, + [931] = {.lex_state = 2, .external_lex_state = 2}, + [932] = {.lex_state = 2, .external_lex_state = 2}, + [933] = {.lex_state = 2, .external_lex_state = 3}, + [934] = {.lex_state = 37, .external_lex_state = 1}, + [935] = {.lex_state = 1, .external_lex_state = 3}, + [936] = {.lex_state = 2, .external_lex_state = 3}, + [937] = {.lex_state = 2, .external_lex_state = 2}, + [938] = {.lex_state = 37, .external_lex_state = 1}, + [939] = {.lex_state = 2, .external_lex_state = 3}, + [940] = {.lex_state = 2, .external_lex_state = 2}, + [941] = {.lex_state = 37, .external_lex_state = 1}, + [942] = {.lex_state = 37, .external_lex_state = 1}, + [943] = {.lex_state = 2, .external_lex_state = 2}, + [944] = {.lex_state = 1, .external_lex_state = 4}, + [945] = {.lex_state = 37, .external_lex_state = 1}, + [946] = {.lex_state = 37, .external_lex_state = 1}, + [947] = {.lex_state = 37, .external_lex_state = 1}, + [948] = {.lex_state = 2, .external_lex_state = 2}, + [949] = {.lex_state = 37, .external_lex_state = 1}, + [950] = {.lex_state = 37, .external_lex_state = 1}, + [951] = {.lex_state = 37, .external_lex_state = 1}, + [952] = {.lex_state = 37, .external_lex_state = 4}, + [953] = {.lex_state = 2, .external_lex_state = 2}, + [954] = {.lex_state = 37, .external_lex_state = 2}, + [955] = {.lex_state = 2, .external_lex_state = 2}, + [956] = {.lex_state = 37, .external_lex_state = 4}, + [957] = {.lex_state = 2, .external_lex_state = 2}, + [958] = {.lex_state = 2, .external_lex_state = 2}, + [959] = {.lex_state = 2, .external_lex_state = 2}, + [960] = {.lex_state = 37, .external_lex_state = 4}, + [961] = {.lex_state = 2, .external_lex_state = 2}, + [962] = {.lex_state = 37, .external_lex_state = 4}, + [963] = {.lex_state = 2, .external_lex_state = 2}, + [964] = {.lex_state = 2, .external_lex_state = 2}, + [965] = {.lex_state = 2, .external_lex_state = 2}, + [966] = {.lex_state = 2, .external_lex_state = 2}, + [967] = {.lex_state = 37, .external_lex_state = 4}, + [968] = {.lex_state = 37, .external_lex_state = 2}, + [969] = {.lex_state = 3, .external_lex_state = 2}, + [970] = {.lex_state = 37, .external_lex_state = 2}, + [971] = {.lex_state = 0, .external_lex_state = 4}, + [972] = {.lex_state = 0, .external_lex_state = 4}, + [973] = {.lex_state = 0, .external_lex_state = 4}, + [974] = {.lex_state = 0, .external_lex_state = 4}, + [975] = {.lex_state = 0, .external_lex_state = 4}, + [976] = {.lex_state = 37, .external_lex_state = 2}, + [977] = {.lex_state = 0, .external_lex_state = 4}, + [978] = {.lex_state = 2, .external_lex_state = 2}, + [979] = {.lex_state = 0, .external_lex_state = 4}, + [980] = {.lex_state = 0, .external_lex_state = 4}, + [981] = {.lex_state = 37, .external_lex_state = 2}, + [982] = {.lex_state = 37, .external_lex_state = 2}, + [983] = {.lex_state = 37, .external_lex_state = 2}, + [984] = {.lex_state = 37, .external_lex_state = 2}, + [985] = {.lex_state = 37, .external_lex_state = 2}, + [986] = {.lex_state = 37, .external_lex_state = 4}, + [987] = {.lex_state = 37, .external_lex_state = 4}, + [988] = {.lex_state = 37, .external_lex_state = 2}, + [989] = {.lex_state = 0, .external_lex_state = 4}, + [990] = {.lex_state = 37, .external_lex_state = 4}, + [991] = {.lex_state = 37, .external_lex_state = 2}, + [992] = {.lex_state = 37, .external_lex_state = 2}, + [993] = {.lex_state = 37, .external_lex_state = 2}, + [994] = {.lex_state = 37, .external_lex_state = 2}, + [995] = {.lex_state = 37, .external_lex_state = 4}, + [996] = {.lex_state = 2, .external_lex_state = 2}, + [997] = {.lex_state = 37, .external_lex_state = 4}, + [998] = {.lex_state = 37, .external_lex_state = 4}, + [999] = {.lex_state = 37, .external_lex_state = 2}, + [1000] = {.lex_state = 37, .external_lex_state = 2}, + [1001] = {.lex_state = 2, .external_lex_state = 2}, + [1002] = {.lex_state = 0, .external_lex_state = 4}, + [1003] = {.lex_state = 37, .external_lex_state = 2}, + [1004] = {.lex_state = 37, .external_lex_state = 2}, + [1005] = {.lex_state = 0, .external_lex_state = 4}, + [1006] = {.lex_state = 0, .external_lex_state = 4}, + [1007] = {.lex_state = 37, .external_lex_state = 4}, + [1008] = {.lex_state = 37, .external_lex_state = 4}, + [1009] = {.lex_state = 2, .external_lex_state = 2}, + [1010] = {.lex_state = 37, .external_lex_state = 2}, + [1011] = {.lex_state = 37, .external_lex_state = 4}, + [1012] = {.lex_state = 2, .external_lex_state = 2}, + [1013] = {.lex_state = 37, .external_lex_state = 2}, + [1014] = {.lex_state = 37, .external_lex_state = 2}, + [1015] = {.lex_state = 0, .external_lex_state = 4}, + [1016] = {.lex_state = 37, .external_lex_state = 4}, + [1017] = {.lex_state = 37, .external_lex_state = 4}, + [1018] = {.lex_state = 0, .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 = 1, .external_lex_state = 3}, + [1023] = {.lex_state = 37, .external_lex_state = 2}, + [1024] = {.lex_state = 37, .external_lex_state = 2}, + [1025] = {.lex_state = 37, .external_lex_state = 4}, + [1026] = {.lex_state = 37, .external_lex_state = 4}, + [1027] = {.lex_state = 37, .external_lex_state = 2}, + [1028] = {.lex_state = 0, .external_lex_state = 4}, + [1029] = {.lex_state = 1, .external_lex_state = 3}, + [1030] = {.lex_state = 37, .external_lex_state = 2}, + [1031] = {.lex_state = 0, .external_lex_state = 4}, + [1032] = {.lex_state = 0, .external_lex_state = 4}, + [1033] = {.lex_state = 37, .external_lex_state = 2}, + [1034] = {.lex_state = 37, .external_lex_state = 4}, + [1035] = {.lex_state = 37, .external_lex_state = 2}, + [1036] = {.lex_state = 37, .external_lex_state = 2}, + [1037] = {.lex_state = 37, .external_lex_state = 3}, + [1038] = {.lex_state = 37, .external_lex_state = 2}, + [1039] = {.lex_state = 37, .external_lex_state = 4}, + [1040] = {.lex_state = 37, .external_lex_state = 2}, + [1041] = {.lex_state = 37, .external_lex_state = 4}, + [1042] = {.lex_state = 37, .external_lex_state = 2}, + [1043] = {.lex_state = 37, .external_lex_state = 4}, + [1044] = {.lex_state = 1, .external_lex_state = 4}, + [1045] = {.lex_state = 37, .external_lex_state = 4}, + [1046] = {.lex_state = 37, .external_lex_state = 2}, + [1047] = {.lex_state = 37, .external_lex_state = 4}, + [1048] = {.lex_state = 37, .external_lex_state = 4}, + [1049] = {.lex_state = 37, .external_lex_state = 2}, + [1050] = {.lex_state = 37, .external_lex_state = 4}, + [1051] = {.lex_state = 37, .external_lex_state = 4}, + [1052] = {.lex_state = 37, .external_lex_state = 2}, + [1053] = {.lex_state = 2, .external_lex_state = 2}, + [1054] = {.lex_state = 37, .external_lex_state = 4}, + [1055] = {.lex_state = 37, .external_lex_state = 4}, + [1056] = {.lex_state = 37, .external_lex_state = 4}, + [1057] = {.lex_state = 37, .external_lex_state = 3}, + [1058] = {.lex_state = 37, .external_lex_state = 2}, + [1059] = {.lex_state = 37, .external_lex_state = 4}, + [1060] = {.lex_state = 37, .external_lex_state = 4}, + [1061] = {.lex_state = 1, .external_lex_state = 4}, + [1062] = {.lex_state = 37, .external_lex_state = 4}, + [1063] = {.lex_state = 37, .external_lex_state = 4}, + [1064] = {.lex_state = 37, .external_lex_state = 4}, + [1065] = {.lex_state = 37, .external_lex_state = 4}, + [1066] = {.lex_state = 2, .external_lex_state = 2}, + [1067] = {.lex_state = 37, .external_lex_state = 4}, + [1068] = {.lex_state = 37, .external_lex_state = 4}, + [1069] = {.lex_state = 37, .external_lex_state = 4}, + [1070] = {.lex_state = 37, .external_lex_state = 4}, + [1071] = {.lex_state = 37, .external_lex_state = 4}, + [1072] = {.lex_state = 37, .external_lex_state = 4}, + [1073] = {.lex_state = 37, .external_lex_state = 4}, + [1074] = {.lex_state = 37, .external_lex_state = 4}, + [1075] = {.lex_state = 37, .external_lex_state = 4}, + [1076] = {.lex_state = 37, .external_lex_state = 4}, + [1077] = {.lex_state = 37, .external_lex_state = 4}, + [1078] = {.lex_state = 37, .external_lex_state = 4}, + [1079] = {.lex_state = 37, .external_lex_state = 4}, + [1080] = {.lex_state = 37, .external_lex_state = 4}, + [1081] = {.lex_state = 37, .external_lex_state = 4}, + [1082] = {.lex_state = 37, .external_lex_state = 4}, + [1083] = {.lex_state = 37, .external_lex_state = 4}, + [1084] = {.lex_state = 37, .external_lex_state = 4}, + [1085] = {.lex_state = 37, .external_lex_state = 2}, + [1086] = {.lex_state = 37, .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 = 37, .external_lex_state = 4}, + [1091] = {.lex_state = 37, .external_lex_state = 4}, + [1092] = {.lex_state = 37, .external_lex_state = 4}, + [1093] = {.lex_state = 37, .external_lex_state = 4}, + [1094] = {.lex_state = 37, .external_lex_state = 4}, + [1095] = {.lex_state = 37, .external_lex_state = 4}, + [1096] = {.lex_state = 37, .external_lex_state = 4}, + [1097] = {.lex_state = 2, .external_lex_state = 2}, + [1098] = {.lex_state = 37, .external_lex_state = 4}, + [1099] = {.lex_state = 37, .external_lex_state = 4}, + [1100] = {.lex_state = 37, .external_lex_state = 4}, + [1101] = {.lex_state = 37, .external_lex_state = 4}, + [1102] = {.lex_state = 37, .external_lex_state = 2}, + [1103] = {.lex_state = 37, .external_lex_state = 4}, + [1104] = {.lex_state = 37, .external_lex_state = 2}, + [1105] = {.lex_state = 37, .external_lex_state = 4}, + [1106] = {.lex_state = 37, .external_lex_state = 4}, + [1107] = {.lex_state = 37, .external_lex_state = 4}, + [1108] = {.lex_state = 37, .external_lex_state = 4}, + [1109] = {.lex_state = 37, .external_lex_state = 4}, + [1110] = {.lex_state = 37, .external_lex_state = 4}, + [1111] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, + [1117] = {.lex_state = 37, .external_lex_state = 4}, + [1118] = {.lex_state = 37, .external_lex_state = 4}, + [1119] = {.lex_state = 37, .external_lex_state = 4}, + [1120] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 4}, + [1126] = {.lex_state = 37, .external_lex_state = 4}, + [1127] = {.lex_state = 37, .external_lex_state = 4}, + [1128] = {.lex_state = 37, .external_lex_state = 4}, + [1129] = {.lex_state = 37, .external_lex_state = 4}, + [1130] = {.lex_state = 37, .external_lex_state = 4}, + [1131] = {.lex_state = 37, .external_lex_state = 4}, + [1132] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 4}, + [1137] = {.lex_state = 37, .external_lex_state = 4}, + [1138] = {.lex_state = 37, .external_lex_state = 4}, + [1139] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [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 = 4}, + [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 = 2}, + [1182] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, + [1187] = {.lex_state = 37, .external_lex_state = 4}, + [1188] = {.lex_state = 37, .external_lex_state = 4}, + [1189] = {.lex_state = 37, .external_lex_state = 2}, + [1190] = {.lex_state = 2, .external_lex_state = 2}, + [1191] = {.lex_state = 37, .external_lex_state = 4}, + [1192] = {.lex_state = 37, .external_lex_state = 4}, + [1193] = {.lex_state = 37, .external_lex_state = 4}, + [1194] = {.lex_state = 37, .external_lex_state = 2}, + [1195] = {.lex_state = 37, .external_lex_state = 4}, + [1196] = {.lex_state = 37, .external_lex_state = 2}, + [1197] = {.lex_state = 37, .external_lex_state = 4}, + [1198] = {.lex_state = 37, .external_lex_state = 4}, + [1199] = {.lex_state = 37, .external_lex_state = 2}, + [1200] = {.lex_state = 37, .external_lex_state = 2}, + [1201] = {.lex_state = 37, .external_lex_state = 2}, + [1202] = {.lex_state = 37, .external_lex_state = 4}, + [1203] = {.lex_state = 37, .external_lex_state = 4}, + [1204] = {.lex_state = 2, .external_lex_state = 2}, + [1205] = {.lex_state = 37, .external_lex_state = 4}, + [1206] = {.lex_state = 2, .external_lex_state = 2}, + [1207] = {.lex_state = 37, .external_lex_state = 4}, + [1208] = {.lex_state = 37, .external_lex_state = 4}, + [1209] = {.lex_state = 37, .external_lex_state = 2}, + [1210] = {.lex_state = 37, .external_lex_state = 4}, + [1211] = {.lex_state = 37, .external_lex_state = 4}, + [1212] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, + [1221] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, + [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 = 4}, + [1240] = {.lex_state = 37, .external_lex_state = 4}, + [1241] = {.lex_state = 37, .external_lex_state = 4}, + [1242] = {.lex_state = 37, .external_lex_state = 4}, + [1243] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 2}, + [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 = 4}, + [1258] = {.lex_state = 37, .external_lex_state = 4}, + [1259] = {.lex_state = 37, .external_lex_state = 4}, + [1260] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, + [1270] = {.lex_state = 37, .external_lex_state = 2}, + [1271] = {.lex_state = 37, .external_lex_state = 2}, + [1272] = {.lex_state = 3, .external_lex_state = 2}, [1273] = {.lex_state = 3, .external_lex_state = 2}, - [1274] = {.lex_state = 4, .external_lex_state = 2}, + [1274] = {.lex_state = 3, .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}, - [2052] = {.lex_state = 3, .external_lex_state = 2}, - [2053] = {.lex_state = 3, .external_lex_state = 3}, - [2054] = {.lex_state = 21, .external_lex_state = 4}, - [2055] = {.lex_state = 3, .external_lex_state = 2}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, - [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}, + [1276] = {.lex_state = 3, .external_lex_state = 2}, + [1277] = {.lex_state = 37, .external_lex_state = 2}, + [1278] = {.lex_state = 37, .external_lex_state = 2}, + [1279] = {.lex_state = 37, .external_lex_state = 2}, + [1280] = {.lex_state = 37, .external_lex_state = 2}, + [1281] = {.lex_state = 37, .external_lex_state = 3}, + [1282] = {.lex_state = 4, .external_lex_state = 2}, + [1283] = {.lex_state = 4, .external_lex_state = 2}, + [1284] = {.lex_state = 4, .external_lex_state = 2}, + [1285] = {.lex_state = 4, .external_lex_state = 2}, + [1286] = {.lex_state = 4, .external_lex_state = 2}, + [1287] = {.lex_state = 2, .external_lex_state = 3}, + [1288] = {.lex_state = 2, .external_lex_state = 2}, + [1289] = {.lex_state = 2, .external_lex_state = 2}, + [1290] = {.lex_state = 2, .external_lex_state = 3}, + [1291] = {.lex_state = 2, .external_lex_state = 3}, + [1292] = {.lex_state = 37, .external_lex_state = 3}, + [1293] = {.lex_state = 4, .external_lex_state = 3}, + [1294] = {.lex_state = 2, .external_lex_state = 3}, + [1295] = {.lex_state = 2, .external_lex_state = 2}, + [1296] = {.lex_state = 37, .external_lex_state = 2}, + [1297] = {.lex_state = 4, .external_lex_state = 3}, + [1298] = {.lex_state = 4, .external_lex_state = 3}, + [1299] = {.lex_state = 2, .external_lex_state = 2}, + [1300] = {.lex_state = 4, .external_lex_state = 3}, + [1301] = {.lex_state = 4, .external_lex_state = 3}, + [1302] = {.lex_state = 2, .external_lex_state = 3}, + [1303] = {.lex_state = 37, .external_lex_state = 2}, + [1304] = {.lex_state = 37, .external_lex_state = 2}, + [1305] = {.lex_state = 37, .external_lex_state = 2}, + [1306] = {.lex_state = 37, .external_lex_state = 2}, + [1307] = {.lex_state = 37, .external_lex_state = 2}, + [1308] = {.lex_state = 2, .external_lex_state = 2}, + [1309] = {.lex_state = 37, .external_lex_state = 2}, + [1310] = {.lex_state = 3, .external_lex_state = 3}, + [1311] = {.lex_state = 37, .external_lex_state = 2}, + [1312] = {.lex_state = 37, .external_lex_state = 2}, + [1313] = {.lex_state = 37, .external_lex_state = 2}, + [1314] = {.lex_state = 37, .external_lex_state = 2}, + [1315] = {.lex_state = 37, .external_lex_state = 2}, + [1316] = {.lex_state = 0, .external_lex_state = 3}, + [1317] = {.lex_state = 37, .external_lex_state = 2}, + [1318] = {.lex_state = 37, .external_lex_state = 2}, + [1319] = {.lex_state = 37, .external_lex_state = 2}, + [1320] = {.lex_state = 37, .external_lex_state = 2}, + [1321] = {.lex_state = 2, .external_lex_state = 2}, + [1322] = {.lex_state = 37, .external_lex_state = 2}, + [1323] = {.lex_state = 2, .external_lex_state = 2}, + [1324] = {.lex_state = 37, .external_lex_state = 2}, + [1325] = {.lex_state = 2, .external_lex_state = 3}, + [1326] = {.lex_state = 37, .external_lex_state = 2}, + [1327] = {.lex_state = 37, .external_lex_state = 2}, + [1328] = {.lex_state = 37, .external_lex_state = 2}, + [1329] = {.lex_state = 2, .external_lex_state = 2}, + [1330] = {.lex_state = 37, .external_lex_state = 3}, + [1331] = {.lex_state = 37, .external_lex_state = 2}, + [1332] = {.lex_state = 37, .external_lex_state = 2}, + [1333] = {.lex_state = 37, .external_lex_state = 2}, + [1334] = {.lex_state = 37, .external_lex_state = 2}, + [1335] = {.lex_state = 37, .external_lex_state = 2}, + [1336] = {.lex_state = 37, .external_lex_state = 2}, + [1337] = {.lex_state = 0, .external_lex_state = 2}, + [1338] = {.lex_state = 2, .external_lex_state = 3}, + [1339] = {.lex_state = 37, .external_lex_state = 2}, + [1340] = {.lex_state = 37, .external_lex_state = 2}, + [1341] = {.lex_state = 37, .external_lex_state = 2}, + [1342] = {.lex_state = 37, .external_lex_state = 2}, + [1343] = {.lex_state = 2, .external_lex_state = 2}, + [1344] = {.lex_state = 37, .external_lex_state = 1}, + [1345] = {.lex_state = 37, .external_lex_state = 2}, + [1346] = {.lex_state = 37, .external_lex_state = 2}, + [1347] = {.lex_state = 37, .external_lex_state = 2}, + [1348] = {.lex_state = 37, .external_lex_state = 2}, + [1349] = {.lex_state = 37, .external_lex_state = 2}, + [1350] = {.lex_state = 37, .external_lex_state = 2}, + [1351] = {.lex_state = 37, .external_lex_state = 2}, + [1352] = {.lex_state = 37, .external_lex_state = 2}, + [1353] = {.lex_state = 37, .external_lex_state = 2}, + [1354] = {.lex_state = 37, .external_lex_state = 2}, + [1355] = {.lex_state = 2, .external_lex_state = 2}, + [1356] = {.lex_state = 37, .external_lex_state = 2}, + [1357] = {.lex_state = 37, .external_lex_state = 2}, + [1358] = {.lex_state = 37, .external_lex_state = 2}, + [1359] = {.lex_state = 3, .external_lex_state = 3}, + [1360] = {.lex_state = 3, .external_lex_state = 3}, + [1361] = {.lex_state = 3, .external_lex_state = 3}, + [1362] = {.lex_state = 3, .external_lex_state = 3}, + [1363] = {.lex_state = 37, .external_lex_state = 2}, + [1364] = {.lex_state = 37, .external_lex_state = 2}, + [1365] = {.lex_state = 37, .external_lex_state = 2}, + [1366] = {.lex_state = 37, .external_lex_state = 2}, + [1367] = {.lex_state = 37, .external_lex_state = 1}, + [1368] = {.lex_state = 2, .external_lex_state = 2}, + [1369] = {.lex_state = 37, .external_lex_state = 2}, + [1370] = {.lex_state = 2, .external_lex_state = 2}, + [1371] = {.lex_state = 37, .external_lex_state = 2}, + [1372] = {.lex_state = 37, .external_lex_state = 2}, + [1373] = {.lex_state = 2, .external_lex_state = 2}, + [1374] = {.lex_state = 37, .external_lex_state = 2}, + [1375] = {.lex_state = 37, .external_lex_state = 2}, + [1376] = {.lex_state = 37, .external_lex_state = 2}, + [1377] = {.lex_state = 37, .external_lex_state = 1}, + [1378] = {.lex_state = 2, .external_lex_state = 2}, + [1379] = {.lex_state = 37, .external_lex_state = 2}, + [1380] = {.lex_state = 37, .external_lex_state = 2}, + [1381] = {.lex_state = 37, .external_lex_state = 2}, + [1382] = {.lex_state = 37, .external_lex_state = 2}, + [1383] = {.lex_state = 37, .external_lex_state = 2}, + [1384] = {.lex_state = 2, .external_lex_state = 2}, + [1385] = {.lex_state = 37, .external_lex_state = 2}, + [1386] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, + [1391] = {.lex_state = 37, .external_lex_state = 2}, + [1392] = {.lex_state = 37, .external_lex_state = 2}, + [1393] = {.lex_state = 37, .external_lex_state = 2}, + [1394] = {.lex_state = 2, .external_lex_state = 2}, + [1395] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 37, .external_lex_state = 2}, + [1401] = {.lex_state = 37, .external_lex_state = 2}, + [1402] = {.lex_state = 37, .external_lex_state = 2}, + [1403] = {.lex_state = 37, .external_lex_state = 2}, + [1404] = {.lex_state = 37, .external_lex_state = 2}, + [1405] = {.lex_state = 37, .external_lex_state = 2}, + [1406] = {.lex_state = 37, .external_lex_state = 1}, + [1407] = {.lex_state = 37, .external_lex_state = 2}, + [1408] = {.lex_state = 37, .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 = 2, .external_lex_state = 2}, + [1416] = {.lex_state = 2, .external_lex_state = 2}, + [1417] = {.lex_state = 2, .external_lex_state = 2}, + [1418] = {.lex_state = 37, .external_lex_state = 2}, + [1419] = {.lex_state = 2, .external_lex_state = 2}, + [1420] = {.lex_state = 37, .external_lex_state = 2}, + [1421] = {.lex_state = 37, .external_lex_state = 1}, + [1422] = {.lex_state = 2, .external_lex_state = 2}, + [1423] = {.lex_state = 37, .external_lex_state = 2}, + [1424] = {.lex_state = 4, .external_lex_state = 2}, + [1425] = {.lex_state = 4, .external_lex_state = 2}, + [1426] = {.lex_state = 4, .external_lex_state = 2}, + [1427] = {.lex_state = 4, .external_lex_state = 2}, + [1428] = {.lex_state = 4, .external_lex_state = 2}, + [1429] = {.lex_state = 37, .external_lex_state = 2}, + [1430] = {.lex_state = 2, .external_lex_state = 2}, + [1431] = {.lex_state = 37, .external_lex_state = 1}, + [1432] = {.lex_state = 37, .external_lex_state = 2}, + [1433] = {.lex_state = 37, .external_lex_state = 2}, + [1434] = {.lex_state = 2, .external_lex_state = 2}, + [1435] = {.lex_state = 37, .external_lex_state = 1}, + [1436] = {.lex_state = 37, .external_lex_state = 2}, + [1437] = {.lex_state = 37, .external_lex_state = 4}, + [1438] = {.lex_state = 2, .external_lex_state = 2}, + [1439] = {.lex_state = 2, .external_lex_state = 2}, + [1440] = {.lex_state = 2, .external_lex_state = 2}, + [1441] = {.lex_state = 2, .external_lex_state = 2}, + [1442] = {.lex_state = 2, .external_lex_state = 2}, + [1443] = {.lex_state = 37, .external_lex_state = 2}, + [1444] = {.lex_state = 37, .external_lex_state = 2}, + [1445] = {.lex_state = 2, .external_lex_state = 2}, + [1446] = {.lex_state = 2, .external_lex_state = 2}, + [1447] = {.lex_state = 37, .external_lex_state = 1}, + [1448] = {.lex_state = 2, .external_lex_state = 2}, + [1449] = {.lex_state = 2, .external_lex_state = 2}, + [1450] = {.lex_state = 37, .external_lex_state = 3}, + [1451] = {.lex_state = 2, .external_lex_state = 2}, + [1452] = {.lex_state = 2, .external_lex_state = 2}, + [1453] = {.lex_state = 2, .external_lex_state = 2}, + [1454] = {.lex_state = 2, .external_lex_state = 2}, + [1455] = {.lex_state = 2, .external_lex_state = 2}, + [1456] = {.lex_state = 37, .external_lex_state = 2}, + [1457] = {.lex_state = 2, .external_lex_state = 2}, + [1458] = {.lex_state = 2, .external_lex_state = 2}, + [1459] = {.lex_state = 37, .external_lex_state = 2}, + [1460] = {.lex_state = 2, .external_lex_state = 2}, + [1461] = {.lex_state = 2, .external_lex_state = 2}, + [1462] = {.lex_state = 2, .external_lex_state = 2}, + [1463] = {.lex_state = 2, .external_lex_state = 2}, + [1464] = {.lex_state = 2, .external_lex_state = 2}, + [1465] = {.lex_state = 2, .external_lex_state = 2}, + [1466] = {.lex_state = 2, .external_lex_state = 2}, + [1467] = {.lex_state = 2, .external_lex_state = 2}, + [1468] = {.lex_state = 2, .external_lex_state = 2}, + [1469] = {.lex_state = 2, .external_lex_state = 2}, + [1470] = {.lex_state = 2, .external_lex_state = 2}, + [1471] = {.lex_state = 2, .external_lex_state = 2}, + [1472] = {.lex_state = 2, .external_lex_state = 2}, + [1473] = {.lex_state = 2, .external_lex_state = 2}, + [1474] = {.lex_state = 2, .external_lex_state = 2}, + [1475] = {.lex_state = 2, .external_lex_state = 2}, + [1476] = {.lex_state = 2, .external_lex_state = 2}, + [1477] = {.lex_state = 37, .external_lex_state = 4}, + [1478] = {.lex_state = 37, .external_lex_state = 4}, + [1479] = {.lex_state = 37, .external_lex_state = 1}, + [1480] = {.lex_state = 2, .external_lex_state = 2}, + [1481] = {.lex_state = 2, .external_lex_state = 2}, + [1482] = {.lex_state = 2, .external_lex_state = 2}, + [1483] = {.lex_state = 2, .external_lex_state = 2}, + [1484] = {.lex_state = 37, .external_lex_state = 2}, + [1485] = {.lex_state = 2, .external_lex_state = 2}, + [1486] = {.lex_state = 37, .external_lex_state = 1}, + [1487] = {.lex_state = 37, .external_lex_state = 2}, + [1488] = {.lex_state = 2, .external_lex_state = 2}, + [1489] = {.lex_state = 2, .external_lex_state = 2}, + [1490] = {.lex_state = 2, .external_lex_state = 2}, + [1491] = {.lex_state = 2, .external_lex_state = 2}, + [1492] = {.lex_state = 2, .external_lex_state = 2}, + [1493] = {.lex_state = 2, .external_lex_state = 2}, + [1494] = {.lex_state = 37, .external_lex_state = 2}, + [1495] = {.lex_state = 37, .external_lex_state = 1}, + [1496] = {.lex_state = 37, .external_lex_state = 1}, + [1497] = {.lex_state = 37, .external_lex_state = 1}, + [1498] = {.lex_state = 37, .external_lex_state = 1}, + [1499] = {.lex_state = 37, .external_lex_state = 1}, + [1500] = {.lex_state = 37, .external_lex_state = 1}, + [1501] = {.lex_state = 37, .external_lex_state = 1}, + [1502] = {.lex_state = 37, .external_lex_state = 1}, + [1503] = {.lex_state = 37, .external_lex_state = 1}, + [1504] = {.lex_state = 37, .external_lex_state = 1}, + [1505] = {.lex_state = 37, .external_lex_state = 1}, + [1506] = {.lex_state = 37, .external_lex_state = 2}, + [1507] = {.lex_state = 37, .external_lex_state = 1}, + [1508] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 1}, + [1513] = {.lex_state = 37, .external_lex_state = 1}, + [1514] = {.lex_state = 37, .external_lex_state = 1}, + [1515] = {.lex_state = 37, .external_lex_state = 1}, + [1516] = {.lex_state = 37, .external_lex_state = 1}, + [1517] = {.lex_state = 37, .external_lex_state = 1}, + [1518] = {.lex_state = 37, .external_lex_state = 4}, + [1519] = {.lex_state = 37, .external_lex_state = 1}, + [1520] = {.lex_state = 2, .external_lex_state = 2}, + [1521] = {.lex_state = 37, .external_lex_state = 1}, + [1522] = {.lex_state = 0, .external_lex_state = 3}, + [1523] = {.lex_state = 2, .external_lex_state = 2}, + [1524] = {.lex_state = 37, .external_lex_state = 2}, + [1525] = {.lex_state = 37, .external_lex_state = 2}, + [1526] = {.lex_state = 37, .external_lex_state = 2}, + [1527] = {.lex_state = 37, .external_lex_state = 1}, + [1528] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 2}, + [1533] = {.lex_state = 37, .external_lex_state = 1}, + [1534] = {.lex_state = 4, .external_lex_state = 4}, + [1535] = {.lex_state = 37, .external_lex_state = 2}, + [1536] = {.lex_state = 4, .external_lex_state = 4}, + [1537] = {.lex_state = 4, .external_lex_state = 4}, + [1538] = {.lex_state = 4, .external_lex_state = 4}, + [1539] = {.lex_state = 37, .external_lex_state = 2}, + [1540] = {.lex_state = 4, .external_lex_state = 4}, + [1541] = {.lex_state = 37, .external_lex_state = 4}, + [1542] = {.lex_state = 37, .external_lex_state = 1}, + [1543] = {.lex_state = 4, .external_lex_state = 2}, + [1544] = {.lex_state = 4, .external_lex_state = 2}, + [1545] = {.lex_state = 4, .external_lex_state = 2}, + [1546] = {.lex_state = 4, .external_lex_state = 2}, + [1547] = {.lex_state = 4, .external_lex_state = 2}, + [1548] = {.lex_state = 2, .external_lex_state = 2}, + [1549] = {.lex_state = 37, .external_lex_state = 1}, + [1550] = {.lex_state = 2, .external_lex_state = 2}, + [1551] = {.lex_state = 37, .external_lex_state = 1}, + [1552] = {.lex_state = 37, .external_lex_state = 2}, + [1553] = {.lex_state = 37, .external_lex_state = 1}, + [1554] = {.lex_state = 37, .external_lex_state = 1}, + [1555] = {.lex_state = 37, .external_lex_state = 1}, + [1556] = {.lex_state = 37, .external_lex_state = 2}, + [1557] = {.lex_state = 37, .external_lex_state = 1}, + [1558] = {.lex_state = 37, .external_lex_state = 1}, + [1559] = {.lex_state = 37, .external_lex_state = 1}, + [1560] = {.lex_state = 37, .external_lex_state = 4}, + [1561] = {.lex_state = 37, .external_lex_state = 2}, + [1562] = {.lex_state = 37, .external_lex_state = 2}, + [1563] = {.lex_state = 37, .external_lex_state = 4}, + [1564] = {.lex_state = 37, .external_lex_state = 4}, + [1565] = {.lex_state = 37, .external_lex_state = 4}, + [1566] = {.lex_state = 37, .external_lex_state = 2}, + [1567] = {.lex_state = 37, .external_lex_state = 4}, + [1568] = {.lex_state = 4, .external_lex_state = 2}, + [1569] = {.lex_state = 37, .external_lex_state = 4}, + [1570] = {.lex_state = 37, .external_lex_state = 2}, + [1571] = {.lex_state = 37, .external_lex_state = 2}, + [1572] = {.lex_state = 37, .external_lex_state = 2}, + [1573] = {.lex_state = 37, .external_lex_state = 2}, + [1574] = {.lex_state = 37, .external_lex_state = 4}, + [1575] = {.lex_state = 37, .external_lex_state = 4}, + [1576] = {.lex_state = 0, .external_lex_state = 4}, + [1577] = {.lex_state = 37, .external_lex_state = 4}, + [1578] = {.lex_state = 37, .external_lex_state = 4}, + [1579] = {.lex_state = 37, .external_lex_state = 4}, + [1580] = {.lex_state = 37, .external_lex_state = 4}, + [1581] = {.lex_state = 37, .external_lex_state = 2}, + [1582] = {.lex_state = 37, .external_lex_state = 4}, + [1583] = {.lex_state = 37, .external_lex_state = 4}, + [1584] = {.lex_state = 37, .external_lex_state = 4}, + [1585] = {.lex_state = 2, .external_lex_state = 2}, + [1586] = {.lex_state = 37, .external_lex_state = 4}, + [1587] = {.lex_state = 37, .external_lex_state = 2}, + [1588] = {.lex_state = 37, .external_lex_state = 4}, + [1589] = {.lex_state = 37, .external_lex_state = 2}, + [1590] = {.lex_state = 37, .external_lex_state = 4}, + [1591] = {.lex_state = 37, .external_lex_state = 2}, + [1592] = {.lex_state = 37, .external_lex_state = 2}, + [1593] = {.lex_state = 37, .external_lex_state = 4}, + [1594] = {.lex_state = 37, .external_lex_state = 4}, + [1595] = {.lex_state = 37, .external_lex_state = 4}, + [1596] = {.lex_state = 37, .external_lex_state = 2}, + [1597] = {.lex_state = 37, .external_lex_state = 4}, + [1598] = {.lex_state = 37, .external_lex_state = 4}, + [1599] = {.lex_state = 37, .external_lex_state = 4}, + [1600] = {.lex_state = 37, .external_lex_state = 4}, + [1601] = {.lex_state = 37, .external_lex_state = 4}, + [1602] = {.lex_state = 37, .external_lex_state = 2}, + [1603] = {.lex_state = 37, .external_lex_state = 4}, + [1604] = {.lex_state = 37, .external_lex_state = 2}, + [1605] = {.lex_state = 37, .external_lex_state = 4}, + [1606] = {.lex_state = 37, .external_lex_state = 4}, + [1607] = {.lex_state = 3, .external_lex_state = 2}, + [1608] = {.lex_state = 37, .external_lex_state = 2}, + [1609] = {.lex_state = 37, .external_lex_state = 4}, + [1610] = {.lex_state = 37, .external_lex_state = 4}, + [1611] = {.lex_state = 3, .external_lex_state = 2}, + [1612] = {.lex_state = 3, .external_lex_state = 2}, + [1613] = {.lex_state = 37, .external_lex_state = 2}, + [1614] = {.lex_state = 37, .external_lex_state = 4}, + [1615] = {.lex_state = 3, .external_lex_state = 2}, + [1616] = {.lex_state = 37, .external_lex_state = 2}, + [1617] = {.lex_state = 37, .external_lex_state = 4}, + [1618] = {.lex_state = 37, .external_lex_state = 4}, + [1619] = {.lex_state = 37, .external_lex_state = 4}, + [1620] = {.lex_state = 37, .external_lex_state = 4}, + [1621] = {.lex_state = 37, .external_lex_state = 3}, + [1622] = {.lex_state = 37, .external_lex_state = 2}, + [1623] = {.lex_state = 37, .external_lex_state = 4}, + [1624] = {.lex_state = 37, .external_lex_state = 4}, + [1625] = {.lex_state = 37, .external_lex_state = 2}, + [1626] = {.lex_state = 37, .external_lex_state = 4}, + [1627] = {.lex_state = 37, .external_lex_state = 4}, + [1628] = {.lex_state = 0, .external_lex_state = 4}, + [1629] = {.lex_state = 3, .external_lex_state = 2}, + [1630] = {.lex_state = 37, .external_lex_state = 2}, + [1631] = {.lex_state = 37, .external_lex_state = 2}, + [1632] = {.lex_state = 37, .external_lex_state = 4}, + [1633] = {.lex_state = 37, .external_lex_state = 4}, + [1634] = {.lex_state = 4, .external_lex_state = 3}, + [1635] = {.lex_state = 37, .external_lex_state = 4}, + [1636] = {.lex_state = 4, .external_lex_state = 3}, + [1637] = {.lex_state = 37, .external_lex_state = 4}, + [1638] = {.lex_state = 37, .external_lex_state = 4}, + [1639] = {.lex_state = 37, .external_lex_state = 4}, + [1640] = {.lex_state = 37, .external_lex_state = 4}, + [1641] = {.lex_state = 4, .external_lex_state = 3}, + [1642] = {.lex_state = 37, .external_lex_state = 4}, + [1643] = {.lex_state = 37, .external_lex_state = 2}, + [1644] = {.lex_state = 4, .external_lex_state = 3}, + [1645] = {.lex_state = 37, .external_lex_state = 2}, + [1646] = {.lex_state = 37, .external_lex_state = 4}, + [1647] = {.lex_state = 37, .external_lex_state = 4}, + [1648] = {.lex_state = 37, .external_lex_state = 4}, + [1649] = {.lex_state = 37, .external_lex_state = 2}, + [1650] = {.lex_state = 37, .external_lex_state = 4}, + [1651] = {.lex_state = 37, .external_lex_state = 4}, + [1652] = {.lex_state = 4, .external_lex_state = 3}, + [1653] = {.lex_state = 37, .external_lex_state = 4}, + [1654] = {.lex_state = 37, .external_lex_state = 4}, + [1655] = {.lex_state = 37, .external_lex_state = 2}, + [1656] = {.lex_state = 37, .external_lex_state = 4}, + [1657] = {.lex_state = 37, .external_lex_state = 4}, + [1658] = {.lex_state = 37, .external_lex_state = 4}, + [1659] = {.lex_state = 37, .external_lex_state = 4}, + [1660] = {.lex_state = 37, .external_lex_state = 4}, + [1661] = {.lex_state = 37, .external_lex_state = 2}, + [1662] = {.lex_state = 37, .external_lex_state = 4}, + [1663] = {.lex_state = 37, .external_lex_state = 2}, + [1664] = {.lex_state = 37, .external_lex_state = 4}, + [1665] = {.lex_state = 37, .external_lex_state = 4}, + [1666] = {.lex_state = 37, .external_lex_state = 4}, + [1667] = {.lex_state = 37, .external_lex_state = 4}, + [1668] = {.lex_state = 37, .external_lex_state = 2}, + [1669] = {.lex_state = 37, .external_lex_state = 4}, + [1670] = {.lex_state = 37, .external_lex_state = 2}, + [1671] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 4}, + [1676] = {.lex_state = 37, .external_lex_state = 4}, + [1677] = {.lex_state = 37, .external_lex_state = 4}, + [1678] = {.lex_state = 37, .external_lex_state = 2}, + [1679] = {.lex_state = 37, .external_lex_state = 4}, + [1680] = {.lex_state = 37, .external_lex_state = 4}, + [1681] = {.lex_state = 0, .external_lex_state = 4}, + [1682] = {.lex_state = 37, .external_lex_state = 4}, + [1683] = {.lex_state = 37, .external_lex_state = 2}, + [1684] = {.lex_state = 37, .external_lex_state = 4}, + [1685] = {.lex_state = 37, .external_lex_state = 4}, + [1686] = {.lex_state = 37, .external_lex_state = 4}, + [1687] = {.lex_state = 37, .external_lex_state = 4}, + [1688] = {.lex_state = 37, .external_lex_state = 4}, + [1689] = {.lex_state = 37, .external_lex_state = 4}, + [1690] = {.lex_state = 37, .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 = 37, .external_lex_state = 4}, + [1695] = {.lex_state = 0, .external_lex_state = 4}, + [1696] = {.lex_state = 0, .external_lex_state = 4}, + [1697] = {.lex_state = 37, .external_lex_state = 4}, + [1698] = {.lex_state = 37, .external_lex_state = 2}, + [1699] = {.lex_state = 0, .external_lex_state = 4}, + [1700] = {.lex_state = 37, .external_lex_state = 2}, + [1701] = {.lex_state = 37, .external_lex_state = 4}, + [1702] = {.lex_state = 37, .external_lex_state = 2}, + [1703] = {.lex_state = 37, .external_lex_state = 2}, + [1704] = {.lex_state = 37, .external_lex_state = 2}, + [1705] = {.lex_state = 37, .external_lex_state = 4}, + [1706] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 4}, + [1715] = {.lex_state = 37, .external_lex_state = 2}, + [1716] = {.lex_state = 37, .external_lex_state = 4}, + [1717] = {.lex_state = 37, .external_lex_state = 4}, + [1718] = {.lex_state = 0, .external_lex_state = 4}, + [1719] = {.lex_state = 37, .external_lex_state = 2}, + [1720] = {.lex_state = 37, .external_lex_state = 2}, + [1721] = {.lex_state = 37, .external_lex_state = 4}, + [1722] = {.lex_state = 0, .external_lex_state = 4}, + [1723] = {.lex_state = 37, .external_lex_state = 2}, + [1724] = {.lex_state = 37, .external_lex_state = 2}, + [1725] = {.lex_state = 37, .external_lex_state = 4}, + [1726] = {.lex_state = 37, .external_lex_state = 2}, + [1727] = {.lex_state = 37, .external_lex_state = 2}, + [1728] = {.lex_state = 37, .external_lex_state = 4}, + [1729] = {.lex_state = 37, .external_lex_state = 2}, + [1730] = {.lex_state = 37, .external_lex_state = 2}, + [1731] = {.lex_state = 37, .external_lex_state = 4}, + [1732] = {.lex_state = 37, .external_lex_state = 2}, + [1733] = {.lex_state = 37, .external_lex_state = 4}, + [1734] = {.lex_state = 37, .external_lex_state = 2}, + [1735] = {.lex_state = 37, .external_lex_state = 2}, + [1736] = {.lex_state = 37, .external_lex_state = 2}, + [1737] = {.lex_state = 37, .external_lex_state = 2}, + [1738] = {.lex_state = 37, .external_lex_state = 2}, + [1739] = {.lex_state = 37, .external_lex_state = 4}, + [1740] = {.lex_state = 37, .external_lex_state = 2}, + [1741] = {.lex_state = 37, .external_lex_state = 2}, + [1742] = {.lex_state = 37, .external_lex_state = 2}, + [1743] = {.lex_state = 37, .external_lex_state = 2}, + [1744] = {.lex_state = 37, .external_lex_state = 2}, + [1745] = {.lex_state = 37, .external_lex_state = 2}, + [1746] = {.lex_state = 37, .external_lex_state = 2}, + [1747] = {.lex_state = 37, .external_lex_state = 2}, + [1748] = {.lex_state = 37, .external_lex_state = 2}, + [1749] = {.lex_state = 0, .external_lex_state = 4}, + [1750] = {.lex_state = 37, .external_lex_state = 2}, + [1751] = {.lex_state = 37, .external_lex_state = 2}, + [1752] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 2}, + [1757] = {.lex_state = 37, .external_lex_state = 2}, + [1758] = {.lex_state = 37, .external_lex_state = 2}, + [1759] = {.lex_state = 7, .external_lex_state = 2}, + [1760] = {.lex_state = 37, .external_lex_state = 2}, + [1761] = {.lex_state = 37, .external_lex_state = 4}, + [1762] = {.lex_state = 37, .external_lex_state = 4}, + [1763] = {.lex_state = 37, .external_lex_state = 2}, + [1764] = {.lex_state = 37, .external_lex_state = 2}, + [1765] = {.lex_state = 37, .external_lex_state = 4}, + [1766] = {.lex_state = 37, .external_lex_state = 2}, + [1767] = {.lex_state = 37, .external_lex_state = 2}, + [1768] = {.lex_state = 37, .external_lex_state = 2}, + [1769] = {.lex_state = 37, .external_lex_state = 2}, + [1770] = {.lex_state = 37, .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 = 4}, + [1774] = {.lex_state = 37, .external_lex_state = 2}, + [1775] = {.lex_state = 37, .external_lex_state = 2}, + [1776] = {.lex_state = 3, .external_lex_state = 4}, + [1777] = {.lex_state = 37, .external_lex_state = 2}, + [1778] = {.lex_state = 37, .external_lex_state = 2}, + [1779] = {.lex_state = 37, .external_lex_state = 2}, + [1780] = {.lex_state = 37, .external_lex_state = 2}, + [1781] = {.lex_state = 37, .external_lex_state = 4}, + [1782] = {.lex_state = 37, .external_lex_state = 2}, + [1783] = {.lex_state = 37, .external_lex_state = 2}, + [1784] = {.lex_state = 37, .external_lex_state = 4}, + [1785] = {.lex_state = 37, .external_lex_state = 2}, + [1786] = {.lex_state = 37, .external_lex_state = 2}, + [1787] = {.lex_state = 37, .external_lex_state = 2}, + [1788] = {.lex_state = 37, .external_lex_state = 4}, + [1789] = {.lex_state = 37, .external_lex_state = 4}, + [1790] = {.lex_state = 7, .external_lex_state = 2}, + [1791] = {.lex_state = 37, .external_lex_state = 2}, + [1792] = {.lex_state = 37, .external_lex_state = 2}, + [1793] = {.lex_state = 37, .external_lex_state = 2}, + [1794] = {.lex_state = 37, .external_lex_state = 4}, + [1795] = {.lex_state = 37, .external_lex_state = 2}, + [1796] = {.lex_state = 37, .external_lex_state = 2}, + [1797] = {.lex_state = 37, .external_lex_state = 2}, + [1798] = {.lex_state = 37, .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 = 37, .external_lex_state = 2}, + [1803] = {.lex_state = 3, .external_lex_state = 4}, + [1804] = {.lex_state = 37, .external_lex_state = 2}, + [1805] = {.lex_state = 37, .external_lex_state = 2}, + [1806] = {.lex_state = 37, .external_lex_state = 4}, + [1807] = {.lex_state = 37, .external_lex_state = 2}, + [1808] = {.lex_state = 37, .external_lex_state = 2}, + [1809] = {.lex_state = 37, .external_lex_state = 2}, + [1810] = {.lex_state = 0, .external_lex_state = 4}, + [1811] = {.lex_state = 37, .external_lex_state = 2}, + [1812] = {.lex_state = 37, .external_lex_state = 2}, + [1813] = {.lex_state = 37, .external_lex_state = 2}, + [1814] = {.lex_state = 37, .external_lex_state = 2}, + [1815] = {.lex_state = 37, .external_lex_state = 4}, + [1816] = {.lex_state = 37, .external_lex_state = 2}, + [1817] = {.lex_state = 37, .external_lex_state = 2}, + [1818] = {.lex_state = 37, .external_lex_state = 2}, + [1819] = {.lex_state = 37, .external_lex_state = 2}, + [1820] = {.lex_state = 37, .external_lex_state = 2}, + [1821] = {.lex_state = 37, .external_lex_state = 2}, + [1822] = {.lex_state = 37, .external_lex_state = 2}, + [1823] = {.lex_state = 37, .external_lex_state = 4}, + [1824] = {.lex_state = 37, .external_lex_state = 2}, + [1825] = {.lex_state = 37, .external_lex_state = 2}, + [1826] = {.lex_state = 37, .external_lex_state = 2}, + [1827] = {.lex_state = 7, .external_lex_state = 2}, + [1828] = {.lex_state = 37, .external_lex_state = 2}, + [1829] = {.lex_state = 7, .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 = 2}, + [1833] = {.lex_state = 37, .external_lex_state = 2}, + [1834] = {.lex_state = 37, .external_lex_state = 4}, + [1835] = {.lex_state = 37, .external_lex_state = 4}, + [1836] = {.lex_state = 37, .external_lex_state = 2}, + [1837] = {.lex_state = 37, .external_lex_state = 4}, + [1838] = {.lex_state = 37, .external_lex_state = 2}, + [1839] = {.lex_state = 37, .external_lex_state = 4}, + [1840] = {.lex_state = 37, .external_lex_state = 2}, + [1841] = {.lex_state = 37, .external_lex_state = 2}, + [1842] = {.lex_state = 37, .external_lex_state = 2}, + [1843] = {.lex_state = 37, .external_lex_state = 2}, + [1844] = {.lex_state = 37, .external_lex_state = 2}, + [1845] = {.lex_state = 37, .external_lex_state = 2}, + [1846] = {.lex_state = 37, .external_lex_state = 4}, + [1847] = {.lex_state = 37, .external_lex_state = 2}, + [1848] = {.lex_state = 37, .external_lex_state = 2}, + [1849] = {.lex_state = 37, .external_lex_state = 2}, + [1850] = {.lex_state = 37, .external_lex_state = 2}, + [1851] = {.lex_state = 37, .external_lex_state = 2}, + [1852] = {.lex_state = 37, .external_lex_state = 2}, + [1853] = {.lex_state = 37, .external_lex_state = 2}, + [1854] = {.lex_state = 37, .external_lex_state = 2}, + [1855] = {.lex_state = 37, .external_lex_state = 2}, + [1856] = {.lex_state = 37, .external_lex_state = 4}, + [1857] = {.lex_state = 37, .external_lex_state = 2}, + [1858] = {.lex_state = 37, .external_lex_state = 2}, + [1859] = {.lex_state = 37, .external_lex_state = 4}, + [1860] = {.lex_state = 37, .external_lex_state = 2}, + [1861] = {.lex_state = 37, .external_lex_state = 4}, + [1862] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, + [1869] = {.lex_state = 37, .external_lex_state = 2}, + [1870] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 4}, + [1877] = {.lex_state = 37, .external_lex_state = 4}, + [1878] = {.lex_state = 2, .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 = 4}, + [1882] = {.lex_state = 37, .external_lex_state = 2}, + [1883] = {.lex_state = 37, .external_lex_state = 2}, + [1884] = {.lex_state = 37, .external_lex_state = 2}, + [1885] = {.lex_state = 37, .external_lex_state = 2}, + [1886] = {.lex_state = 37, .external_lex_state = 2}, + [1887] = {.lex_state = 37, .external_lex_state = 2}, + [1888] = {.lex_state = 37, .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 = 7, .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 = 4}, + [1897] = {.lex_state = 37, .external_lex_state = 2}, + [1898] = {.lex_state = 37, .external_lex_state = 2}, + [1899] = {.lex_state = 2, .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 = 2}, + [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 = 3, .external_lex_state = 4}, + [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 = 4}, + [1912] = {.lex_state = 37, .external_lex_state = 2}, + [1913] = {.lex_state = 37, .external_lex_state = 2}, + [1914] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [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 = 2}, + [1927] = {.lex_state = 37, .external_lex_state = 2}, + [1928] = {.lex_state = 37, .external_lex_state = 2}, + [1929] = {.lex_state = 37, .external_lex_state = 2}, + [1930] = {.lex_state = 2, .external_lex_state = 2}, + [1931] = {.lex_state = 37, .external_lex_state = 2}, + [1932] = {.lex_state = 37, .external_lex_state = 2}, + [1933] = {.lex_state = 37, .external_lex_state = 4}, + [1934] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [1943] = {.lex_state = 37, .external_lex_state = 2}, + [1944] = {.lex_state = 37, .external_lex_state = 2}, + [1945] = {.lex_state = 37, .external_lex_state = 2}, + [1946] = {.lex_state = 37, .external_lex_state = 4}, + [1947] = {.lex_state = 3, .external_lex_state = 4}, + [1948] = {.lex_state = 37, .external_lex_state = 2}, + [1949] = {.lex_state = 37, .external_lex_state = 2}, + [1950] = {.lex_state = 37, .external_lex_state = 2}, + [1951] = {.lex_state = 37, .external_lex_state = 4}, + [1952] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [1960] = {.lex_state = 37, .external_lex_state = 2}, + [1961] = {.lex_state = 37, .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 = 3, .external_lex_state = 4}, + [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 = 2}, + [1974] = {.lex_state = 3, .external_lex_state = 2}, + [1975] = {.lex_state = 37, .external_lex_state = 4}, + [1976] = {.lex_state = 37, .external_lex_state = 2}, + [1977] = {.lex_state = 3, .external_lex_state = 2}, + [1978] = {.lex_state = 3, .external_lex_state = 2}, + [1979] = {.lex_state = 3, .external_lex_state = 2}, + [1980] = {.lex_state = 3, .external_lex_state = 2}, + [1981] = {.lex_state = 3, .external_lex_state = 2}, + [1982] = {.lex_state = 37, .external_lex_state = 4}, + [1983] = {.lex_state = 4, .external_lex_state = 2}, + [1984] = {.lex_state = 4, .external_lex_state = 2}, + [1985] = {.lex_state = 4, .external_lex_state = 2}, + [1986] = {.lex_state = 37, .external_lex_state = 2}, + [1987] = {.lex_state = 4, .external_lex_state = 2}, + [1988] = {.lex_state = 4, .external_lex_state = 2}, + [1989] = {.lex_state = 37, .external_lex_state = 2}, + [1990] = {.lex_state = 37, .external_lex_state = 2}, + [1991] = {.lex_state = 37, .external_lex_state = 2}, + [1992] = {.lex_state = 37, .external_lex_state = 2}, + [1993] = {.lex_state = 37, .external_lex_state = 2}, + [1994] = {.lex_state = 37, .external_lex_state = 2}, + [1995] = {.lex_state = 37, .external_lex_state = 2}, + [1996] = {.lex_state = 37, .external_lex_state = 2}, + [1997] = {.lex_state = 37, .external_lex_state = 2}, + [1998] = {.lex_state = 37, .external_lex_state = 2}, + [1999] = {.lex_state = 37, .external_lex_state = 2}, + [2000] = {.lex_state = 37, .external_lex_state = 2}, + [2001] = {.lex_state = 37, .external_lex_state = 2}, + [2002] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [2009] = {.lex_state = 37, .external_lex_state = 2}, + [2010] = {.lex_state = 37, .external_lex_state = 2}, + [2011] = {.lex_state = 37, .external_lex_state = 2}, + [2012] = {.lex_state = 37, .external_lex_state = 2}, + [2013] = {.lex_state = 37, .external_lex_state = 2}, + [2014] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 2}, + [2020] = {.lex_state = 37, .external_lex_state = 2}, + [2021] = {.lex_state = 37, .external_lex_state = 2}, + [2022] = {.lex_state = 37, .external_lex_state = 2}, + [2023] = {.lex_state = 37, .external_lex_state = 2}, + [2024] = {.lex_state = 37, .external_lex_state = 2}, + [2025] = {.lex_state = 37, .external_lex_state = 2}, + [2026] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 37, .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 = 37, .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 = 2}, + [2052] = {.lex_state = 37, .external_lex_state = 2}, + [2053] = {.lex_state = 37, .external_lex_state = 2}, + [2054] = {.lex_state = 37, .external_lex_state = 2}, + [2055] = {.lex_state = 37, .external_lex_state = 2}, + [2056] = {.lex_state = 37, .external_lex_state = 2}, + [2057] = {.lex_state = 37, .external_lex_state = 2}, + [2058] = {.lex_state = 37, .external_lex_state = 2}, + [2059] = {.lex_state = 37, .external_lex_state = 2}, + [2060] = {.lex_state = 37, .external_lex_state = 2}, + [2061] = {.lex_state = 37, .external_lex_state = 2}, + [2062] = {.lex_state = 37, .external_lex_state = 2}, + [2063] = {.lex_state = 37, .external_lex_state = 2}, + [2064] = {.lex_state = 37, .external_lex_state = 2}, + [2065] = {.lex_state = 37, .external_lex_state = 2}, + [2066] = {.lex_state = 37, .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 = 4, .external_lex_state = 3}, + [2121] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 4, .external_lex_state = 3}, + [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 = 4, .external_lex_state = 3}, + [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 = 37, .external_lex_state = 2}, + [2140] = {.lex_state = 37, .external_lex_state = 2}, + [2141] = {.lex_state = 37, .external_lex_state = 2}, + [2142] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, + [2149] = {.lex_state = 37, .external_lex_state = 3}, + [2150] = {.lex_state = 4, .external_lex_state = 3}, + [2151] = {.lex_state = 37, .external_lex_state = 3}, + [2152] = {.lex_state = 37, .external_lex_state = 3}, + [2153] = {.lex_state = 37, .external_lex_state = 3}, + [2154] = {.lex_state = 37, .external_lex_state = 2}, + [2155] = {.lex_state = 37, .external_lex_state = 2}, + [2156] = {.lex_state = 4, .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 = 3, .external_lex_state = 2}, - [2170] = {.lex_state = 3, .external_lex_state = 2}, - [2171] = {.lex_state = 3, .external_lex_state = 2}, + [2170] = {.lex_state = 37, .external_lex_state = 2}, + [2171] = {.lex_state = 37, .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}, - [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}, + [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 = 4, .external_lex_state = 3}, + [2178] = {.lex_state = 3, .external_lex_state = 3}, + [2179] = {.lex_state = 6, .external_lex_state = 2}, + [2180] = {.lex_state = 4, .external_lex_state = 4}, + [2181] = {.lex_state = 4, .external_lex_state = 4}, + [2182] = {.lex_state = 3, .external_lex_state = 3}, + [2183] = {.lex_state = 4, .external_lex_state = 2}, + [2184] = {.lex_state = 2, .external_lex_state = 2}, + [2185] = {.lex_state = 4, .external_lex_state = 4}, + [2186] = {.lex_state = 37, .external_lex_state = 2}, + [2187] = {.lex_state = 4, .external_lex_state = 2}, + [2188] = {.lex_state = 4, .external_lex_state = 4}, + [2189] = {.lex_state = 2, .external_lex_state = 2}, + [2190] = {.lex_state = 4, .external_lex_state = 4}, + [2191] = {.lex_state = 4, .external_lex_state = 2}, + [2192] = {.lex_state = 4, .external_lex_state = 2}, + [2193] = {.lex_state = 4, .external_lex_state = 4}, + [2194] = {.lex_state = 2, .external_lex_state = 2}, + [2195] = {.lex_state = 2, .external_lex_state = 2}, + [2196] = {.lex_state = 7, .external_lex_state = 2}, + [2197] = {.lex_state = 2, .external_lex_state = 2}, + [2198] = {.lex_state = 2, .external_lex_state = 2}, + [2199] = {.lex_state = 3, .external_lex_state = 4}, + [2200] = {.lex_state = 7, .external_lex_state = 2}, + [2201] = {.lex_state = 2, .external_lex_state = 2}, + [2202] = {.lex_state = 2, .external_lex_state = 2}, + [2203] = {.lex_state = 3, .external_lex_state = 4}, + [2204] = {.lex_state = 2, .external_lex_state = 2}, + [2205] = {.lex_state = 2, .external_lex_state = 2}, + [2206] = {.lex_state = 2, .external_lex_state = 2}, + [2207] = {.lex_state = 11, .external_lex_state = 2}, + [2208] = {.lex_state = 11, .external_lex_state = 2}, + [2209] = {.lex_state = 11, .external_lex_state = 3}, + [2210] = {.lex_state = 11, .external_lex_state = 2}, + [2211] = {.lex_state = 11, .external_lex_state = 3}, + [2212] = {.lex_state = 11, .external_lex_state = 3}, + [2213] = {.lex_state = 2, .external_lex_state = 2}, + [2214] = {.lex_state = 2, .external_lex_state = 3}, + [2215] = {.lex_state = 9, .external_lex_state = 2}, + [2216] = {.lex_state = 11, .external_lex_state = 2}, + [2217] = {.lex_state = 9, .external_lex_state = 2}, + [2218] = {.lex_state = 9, .external_lex_state = 2}, + [2219] = {.lex_state = 9, .external_lex_state = 2}, + [2220] = {.lex_state = 9, .external_lex_state = 2}, + [2221] = {.lex_state = 9, .external_lex_state = 2}, + [2222] = {.lex_state = 9, .external_lex_state = 2}, + [2223] = {.lex_state = 2, .external_lex_state = 2}, + [2224] = {.lex_state = 4, .external_lex_state = 2}, + [2225] = {.lex_state = 11, .external_lex_state = 2}, + [2226] = {.lex_state = 9, .external_lex_state = 2}, + [2227] = {.lex_state = 2, .external_lex_state = 3}, + [2228] = {.lex_state = 9, .external_lex_state = 2}, + [2229] = {.lex_state = 11, .external_lex_state = 2}, + [2230] = {.lex_state = 9, .external_lex_state = 2}, + [2231] = {.lex_state = 10, .external_lex_state = 2}, + [2232] = {.lex_state = 8, .external_lex_state = 2}, + [2233] = {.lex_state = 11, .external_lex_state = 2}, + [2234] = {.lex_state = 9, .external_lex_state = 2}, + [2235] = {.lex_state = 11, .external_lex_state = 2}, + [2236] = {.lex_state = 11, .external_lex_state = 2}, + [2237] = {.lex_state = 10, .external_lex_state = 2}, + [2238] = {.lex_state = 11, .external_lex_state = 2}, + [2239] = {.lex_state = 2, .external_lex_state = 2}, + [2240] = {.lex_state = 4, .external_lex_state = 3}, + [2241] = {.lex_state = 4, .external_lex_state = 2}, + [2242] = {.lex_state = 2, .external_lex_state = 3}, + [2243] = {.lex_state = 4, .external_lex_state = 2}, + [2244] = {.lex_state = 12, .external_lex_state = 2}, + [2245] = {.lex_state = 12, .external_lex_state = 2}, + [2246] = {.lex_state = 3, .external_lex_state = 2}, + [2247] = {.lex_state = 11, .external_lex_state = 2}, + [2248] = {.lex_state = 2, .external_lex_state = 2}, + [2249] = {.lex_state = 11, .external_lex_state = 2}, + [2250] = {.lex_state = 11, .external_lex_state = 2}, + [2251] = {.lex_state = 12, .external_lex_state = 2}, + [2252] = {.lex_state = 12, .external_lex_state = 2}, + [2253] = {.lex_state = 12, .external_lex_state = 2}, + [2254] = {.lex_state = 3, .external_lex_state = 2}, + [2255] = {.lex_state = 4, .external_lex_state = 2}, + [2256] = {.lex_state = 3, .external_lex_state = 2}, + [2257] = {.lex_state = 12, .external_lex_state = 2}, + [2258] = {.lex_state = 12, .external_lex_state = 2}, + [2259] = {.lex_state = 12, .external_lex_state = 2}, + [2260] = {.lex_state = 12, .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}, + [2262] = {.lex_state = 2, .external_lex_state = 2}, + [2263] = {.lex_state = 12, .external_lex_state = 2}, + [2264] = {.lex_state = 11, .external_lex_state = 2}, + [2265] = {.lex_state = 4, .external_lex_state = 4}, + [2266] = {.lex_state = 11, .external_lex_state = 2}, + [2267] = {.lex_state = 12, .external_lex_state = 2}, + [2268] = {.lex_state = 11, .external_lex_state = 2}, + [2269] = {.lex_state = 3, .external_lex_state = 3}, + [2270] = {.lex_state = 2, .external_lex_state = 1}, + [2271] = {.lex_state = 11, .external_lex_state = 2}, + [2272] = {.lex_state = 12, .external_lex_state = 2}, + [2273] = {.lex_state = 4, .external_lex_state = 4}, + [2274] = {.lex_state = 2, .external_lex_state = 3}, + [2275] = {.lex_state = 2, .external_lex_state = 3}, + [2276] = {.lex_state = 2, .external_lex_state = 3}, + [2277] = {.lex_state = 2, .external_lex_state = 3}, + [2278] = {.lex_state = 2, .external_lex_state = 3}, + [2279] = {.lex_state = 2, .external_lex_state = 3}, + [2280] = {.lex_state = 2, .external_lex_state = 3}, + [2281] = {.lex_state = 12, .external_lex_state = 2}, + [2282] = {.lex_state = 2, .external_lex_state = 2}, + [2283] = {.lex_state = 12, .external_lex_state = 2}, + [2284] = {.lex_state = 12, .external_lex_state = 2}, + [2285] = {.lex_state = 3, .external_lex_state = 2}, + [2286] = {.lex_state = 4, .external_lex_state = 2}, + [2287] = {.lex_state = 11, .external_lex_state = 2}, + [2288] = {.lex_state = 12, .external_lex_state = 2}, + [2289] = {.lex_state = 12, .external_lex_state = 2}, + [2290] = {.lex_state = 12, .external_lex_state = 2}, + [2291] = {.lex_state = 11, .external_lex_state = 2}, + [2292] = {.lex_state = 2, .external_lex_state = 3}, + [2293] = {.lex_state = 2, .external_lex_state = 3}, + [2294] = {.lex_state = 2, .external_lex_state = 3}, + [2295] = {.lex_state = 11, .external_lex_state = 2}, + [2296] = {.lex_state = 12, .external_lex_state = 2}, + [2297] = {.lex_state = 2, .external_lex_state = 3}, + [2298] = {.lex_state = 2, .external_lex_state = 3}, + [2299] = {.lex_state = 12, .external_lex_state = 2}, + [2300] = {.lex_state = 12, .external_lex_state = 2}, + [2301] = {.lex_state = 11, .external_lex_state = 2}, + [2302] = {.lex_state = 4, .external_lex_state = 2}, + [2303] = {.lex_state = 12, .external_lex_state = 2}, + [2304] = {.lex_state = 11, .external_lex_state = 2}, + [2305] = {.lex_state = 2, .external_lex_state = 1}, + [2306] = {.lex_state = 2, .external_lex_state = 3}, + [2307] = {.lex_state = 12, .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}, + [2309] = {.lex_state = 3, .external_lex_state = 2}, + [2310] = {.lex_state = 12, .external_lex_state = 2}, + [2311] = {.lex_state = 12, .external_lex_state = 2}, + [2312] = {.lex_state = 4, .external_lex_state = 4}, + [2313] = {.lex_state = 11, .external_lex_state = 2}, + [2314] = {.lex_state = 11, .external_lex_state = 2}, + [2315] = {.lex_state = 12, .external_lex_state = 2}, + [2316] = {.lex_state = 12, .external_lex_state = 2}, + [2317] = {.lex_state = 2, .external_lex_state = 3}, + [2318] = {.lex_state = 12, .external_lex_state = 2}, + [2319] = {.lex_state = 11, .external_lex_state = 2}, + [2320] = {.lex_state = 2, .external_lex_state = 3}, + [2321] = {.lex_state = 3, .external_lex_state = 2}, + [2322] = {.lex_state = 11, .external_lex_state = 2}, + [2323] = {.lex_state = 12, .external_lex_state = 2}, + [2324] = {.lex_state = 11, .external_lex_state = 2}, + [2325] = {.lex_state = 12, .external_lex_state = 2}, + [2326] = {.lex_state = 12, .external_lex_state = 2}, + [2327] = {.lex_state = 2, .external_lex_state = 3}, + [2328] = {.lex_state = 2, .external_lex_state = 3}, + [2329] = {.lex_state = 2, .external_lex_state = 3}, + [2330] = {.lex_state = 2, .external_lex_state = 3}, + [2331] = {.lex_state = 2, .external_lex_state = 3}, + [2332] = {.lex_state = 2, .external_lex_state = 3}, + [2333] = {.lex_state = 2, .external_lex_state = 3}, + [2334] = {.lex_state = 2, .external_lex_state = 3}, + [2335] = {.lex_state = 11, .external_lex_state = 2}, + [2336] = {.lex_state = 11, .external_lex_state = 2}, + [2337] = {.lex_state = 11, .external_lex_state = 2}, + [2338] = {.lex_state = 11, .external_lex_state = 2}, + [2339] = {.lex_state = 2, .external_lex_state = 3}, + [2340] = {.lex_state = 4, .external_lex_state = 2}, + [2341] = {.lex_state = 12, .external_lex_state = 2}, + [2342] = {.lex_state = 2, .external_lex_state = 2}, + [2343] = {.lex_state = 2, .external_lex_state = 3}, + [2344] = {.lex_state = 4, .external_lex_state = 2}, + [2345] = {.lex_state = 11, .external_lex_state = 2}, + [2346] = {.lex_state = 11, .external_lex_state = 2}, + [2347] = {.lex_state = 4, .external_lex_state = 2}, + [2348] = {.lex_state = 2, .external_lex_state = 2}, + [2349] = {.lex_state = 11, .external_lex_state = 2}, + [2350] = {.lex_state = 2, .external_lex_state = 3}, + [2351] = {.lex_state = 12, .external_lex_state = 2}, + [2352] = {.lex_state = 2, .external_lex_state = 3}, + [2353] = {.lex_state = 11, .external_lex_state = 2}, + [2354] = {.lex_state = 2, .external_lex_state = 2}, + [2355] = {.lex_state = 3, .external_lex_state = 2}, + [2356] = {.lex_state = 3, .external_lex_state = 2}, + [2357] = {.lex_state = 3, .external_lex_state = 2}, + [2358] = {.lex_state = 0, .external_lex_state = 3}, + [2359] = {.lex_state = 0, .external_lex_state = 2}, + [2360] = {.lex_state = 9, .external_lex_state = 2}, + [2361] = {.lex_state = 3, .external_lex_state = 3}, + [2362] = {.lex_state = 3, .external_lex_state = 2}, + [2363] = {.lex_state = 3, .external_lex_state = 3}, + [2364] = {.lex_state = 9, .external_lex_state = 2}, + [2365] = {.lex_state = 2, .external_lex_state = 2}, + [2366] = {.lex_state = 9, .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}, - [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}, + [2368] = {.lex_state = 11, .external_lex_state = 2}, + [2369] = {.lex_state = 3, .external_lex_state = 2}, + [2370] = {.lex_state = 9, .external_lex_state = 2}, + [2371] = {.lex_state = 3, .external_lex_state = 2}, + [2372] = {.lex_state = 3, .external_lex_state = 2}, + [2373] = {.lex_state = 2, .external_lex_state = 2}, + [2374] = {.lex_state = 2, .external_lex_state = 3}, + [2375] = {.lex_state = 2, .external_lex_state = 2}, + [2376] = {.lex_state = 2, .external_lex_state = 3}, + [2377] = {.lex_state = 2, .external_lex_state = 2}, + [2378] = {.lex_state = 3, .external_lex_state = 2}, + [2379] = {.lex_state = 12, .external_lex_state = 4}, + [2380] = {.lex_state = 9, .external_lex_state = 2}, + [2381] = {.lex_state = 0, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2383] = {.lex_state = 2, .external_lex_state = 2}, + [2384] = {.lex_state = 3, .external_lex_state = 2}, + [2385] = {.lex_state = 0, .external_lex_state = 3}, + [2386] = {.lex_state = 3, .external_lex_state = 4}, + [2387] = {.lex_state = 3, .external_lex_state = 2}, + [2388] = {.lex_state = 2, .external_lex_state = 4}, + [2389] = {.lex_state = 3, .external_lex_state = 2}, + [2390] = {.lex_state = 3, .external_lex_state = 2}, + [2391] = {.lex_state = 2, .external_lex_state = 4}, + [2392] = {.lex_state = 9, .external_lex_state = 2}, + [2393] = {.lex_state = 3, .external_lex_state = 2}, + [2394] = {.lex_state = 12, .external_lex_state = 4}, + [2395] = {.lex_state = 0, .external_lex_state = 4}, + [2396] = {.lex_state = 3, .external_lex_state = 2}, + [2397] = {.lex_state = 2, .external_lex_state = 3}, + [2398] = {.lex_state = 11, .external_lex_state = 2}, + [2399] = {.lex_state = 3, .external_lex_state = 4}, + [2400] = {.lex_state = 3, .external_lex_state = 2}, + [2401] = {.lex_state = 3, .external_lex_state = 2}, + [2402] = {.lex_state = 2, .external_lex_state = 2}, + [2403] = {.lex_state = 3, .external_lex_state = 2}, + [2404] = {.lex_state = 3, .external_lex_state = 2}, + [2405] = {.lex_state = 11, .external_lex_state = 2}, + [2406] = {.lex_state = 3, .external_lex_state = 2}, + [2407] = {.lex_state = 0, .external_lex_state = 3}, [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}, - [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}, + [2409] = {.lex_state = 3, .external_lex_state = 2}, + [2410] = {.lex_state = 2, .external_lex_state = 2}, + [2411] = {.lex_state = 2, .external_lex_state = 4}, + [2412] = {.lex_state = 2, .external_lex_state = 4}, + [2413] = {.lex_state = 3, .external_lex_state = 2}, + [2414] = {.lex_state = 3, .external_lex_state = 2}, + [2415] = {.lex_state = 2, .external_lex_state = 2}, + [2416] = {.lex_state = 2, .external_lex_state = 4}, + [2417] = {.lex_state = 2, .external_lex_state = 2}, + [2418] = {.lex_state = 3, .external_lex_state = 2}, + [2419] = {.lex_state = 3, .external_lex_state = 2}, + [2420] = {.lex_state = 3, .external_lex_state = 2}, + [2421] = {.lex_state = 2, .external_lex_state = 2}, + [2422] = {.lex_state = 2, .external_lex_state = 2}, + [2423] = {.lex_state = 3, .external_lex_state = 2}, + [2424] = {.lex_state = 12, .external_lex_state = 2}, + [2425] = {.lex_state = 0, .external_lex_state = 3}, + [2426] = {.lex_state = 2, .external_lex_state = 4}, + [2427] = {.lex_state = 2, .external_lex_state = 3}, + [2428] = {.lex_state = 2, .external_lex_state = 2}, + [2429] = {.lex_state = 0, .external_lex_state = 4}, + [2430] = {.lex_state = 2, .external_lex_state = 1}, + [2431] = {.lex_state = 2, .external_lex_state = 2}, + [2432] = {.lex_state = 0, .external_lex_state = 2}, + [2433] = {.lex_state = 0, .external_lex_state = 2}, + [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2435] = {.lex_state = 5, .external_lex_state = 2}, + [2436] = {.lex_state = 3, .external_lex_state = 2}, + [2437] = {.lex_state = 2, .external_lex_state = 2}, + [2438] = {.lex_state = 5, .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}, - [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}, - [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}, - [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}, + [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2441] = {.lex_state = 2, .external_lex_state = 2}, + [2442] = {.lex_state = 0, .external_lex_state = 2}, + [2443] = {.lex_state = 5, .external_lex_state = 2}, + [2444] = {.lex_state = 3, .external_lex_state = 2}, + [2445] = {.lex_state = 0, .external_lex_state = 2}, + [2446] = {.lex_state = 2, .external_lex_state = 2}, + [2447] = {.lex_state = 2, .external_lex_state = 2}, + [2448] = {.lex_state = 12, .external_lex_state = 2}, + [2449] = {.lex_state = 2, .external_lex_state = 2}, + [2450] = {.lex_state = 2, .external_lex_state = 2}, + [2451] = {.lex_state = 2, .external_lex_state = 2}, + [2452] = {.lex_state = 3, .external_lex_state = 2}, + [2453] = {.lex_state = 2, .external_lex_state = 2}, + [2454] = {.lex_state = 3, .external_lex_state = 2}, + [2455] = {.lex_state = 2, .external_lex_state = 4}, + [2456] = {.lex_state = 5, .external_lex_state = 2}, + [2457] = {.lex_state = 0, .external_lex_state = 4}, + [2458] = {.lex_state = 3, .external_lex_state = 2}, + [2459] = {.lex_state = 12, .external_lex_state = 2}, + [2460] = {.lex_state = 2, .external_lex_state = 2}, + [2461] = {.lex_state = 3, .external_lex_state = 2}, + [2462] = {.lex_state = 0, .external_lex_state = 3}, + [2463] = {.lex_state = 2, .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}, + [2465] = {.lex_state = 0, .external_lex_state = 4}, + [2466] = {.lex_state = 2, .external_lex_state = 2}, + [2467] = {.lex_state = 2, .external_lex_state = 2}, + [2468] = {.lex_state = 2, .external_lex_state = 2}, + [2469] = {.lex_state = 0, .external_lex_state = 4}, + [2470] = {.lex_state = 3, .external_lex_state = 2}, + [2471] = {.lex_state = 0, .external_lex_state = 2}, + [2472] = {.lex_state = 3, .external_lex_state = 2}, + [2473] = {.lex_state = 2, .external_lex_state = 2}, + [2474] = {.lex_state = 2, .external_lex_state = 2}, + [2475] = {.lex_state = 3, .external_lex_state = 4}, + [2476] = {.lex_state = 2, .external_lex_state = 2}, + [2477] = {.lex_state = 2, .external_lex_state = 2}, + [2478] = {.lex_state = 2, .external_lex_state = 4}, + [2479] = {.lex_state = 2, .external_lex_state = 2}, + [2480] = {.lex_state = 2, .external_lex_state = 2}, + [2481] = {.lex_state = 3, .external_lex_state = 4}, + [2482] = {.lex_state = 0, .external_lex_state = 4}, + [2483] = {.lex_state = 3, .external_lex_state = 4}, + [2484] = {.lex_state = 0, .external_lex_state = 4}, [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}, - [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}, + [2486] = {.lex_state = 2, .external_lex_state = 2}, + [2487] = {.lex_state = 0, .external_lex_state = 4}, + [2488] = {.lex_state = 2, .external_lex_state = 2}, + [2489] = {.lex_state = 2, .external_lex_state = 2}, + [2490] = {.lex_state = 3, .external_lex_state = 2}, + [2491] = {.lex_state = 0, .external_lex_state = 4}, + [2492] = {.lex_state = 2, .external_lex_state = 2}, + [2493] = {.lex_state = 2, .external_lex_state = 2}, + [2494] = {.lex_state = 3, .external_lex_state = 2}, + [2495] = {.lex_state = 3, .external_lex_state = 4}, + [2496] = {.lex_state = 0, .external_lex_state = 4}, + [2497] = {.lex_state = 0, .external_lex_state = 3}, + [2498] = {.lex_state = 2, .external_lex_state = 4}, + [2499] = {.lex_state = 2, .external_lex_state = 2}, + [2500] = {.lex_state = 3, .external_lex_state = 4}, + [2501] = {.lex_state = 0, .external_lex_state = 4}, + [2502] = {.lex_state = 3, .external_lex_state = 2}, + [2503] = {.lex_state = 2, .external_lex_state = 2}, + [2504] = {.lex_state = 0, .external_lex_state = 4}, + [2505] = {.lex_state = 2, .external_lex_state = 2}, + [2506] = {.lex_state = 2, .external_lex_state = 4}, + [2507] = {.lex_state = 0, .external_lex_state = 3}, + [2508] = {.lex_state = 2, .external_lex_state = 2}, + [2509] = {.lex_state = 2, .external_lex_state = 2}, + [2510] = {.lex_state = 2, .external_lex_state = 2}, + [2511] = {.lex_state = 0, .external_lex_state = 4}, + [2512] = {.lex_state = 2, .external_lex_state = 4}, + [2513] = {.lex_state = 2, .external_lex_state = 2}, + [2514] = {.lex_state = 2, .external_lex_state = 2}, + [2515] = {.lex_state = 2, .external_lex_state = 2}, + [2516] = {.lex_state = 3, .external_lex_state = 4}, + [2517] = {.lex_state = 0, .external_lex_state = 4}, + [2518] = {.lex_state = 3, .external_lex_state = 4}, + [2519] = {.lex_state = 2, .external_lex_state = 2}, + [2520] = {.lex_state = 3, .external_lex_state = 4}, + [2521] = {.lex_state = 0, .external_lex_state = 4}, + [2522] = {.lex_state = 0, .external_lex_state = 4}, + [2523] = {.lex_state = 2, .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}, + [2525] = {.lex_state = 2, .external_lex_state = 4}, + [2526] = {.lex_state = 2, .external_lex_state = 2}, + [2527] = {.lex_state = 2, .external_lex_state = 2}, + [2528] = {.lex_state = 2, .external_lex_state = 2}, [2529] = {.lex_state = 0, .external_lex_state = 4}, - [2530] = {.lex_state = 0, .external_lex_state = 4}, - [2531] = {.lex_state = 0, .external_lex_state = 4}, - [2532] = {.lex_state = 0, .external_lex_state = 2}, - [2533] = {.lex_state = 0, .external_lex_state = 2}, - [2534] = {.lex_state = 0, .external_lex_state = 4}, + [2530] = {.lex_state = 0, .external_lex_state = 2}, + [2531] = {.lex_state = 2, .external_lex_state = 4}, + [2532] = {.lex_state = 2, .external_lex_state = 2}, + [2533] = {.lex_state = 2, .external_lex_state = 2}, + [2534] = {.lex_state = 3, .external_lex_state = 4}, [2535] = {.lex_state = 0, .external_lex_state = 4}, - [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}, - [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}, - [2549] = {.lex_state = 0, .external_lex_state = 4}, - [2550] = {.lex_state = 0, .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}, - [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}, + [2536] = {.lex_state = 2, .external_lex_state = 1}, + [2537] = {.lex_state = 0, .external_lex_state = 2}, + [2538] = {.lex_state = 0, .external_lex_state = 2}, + [2539] = {.lex_state = 2, .external_lex_state = 2}, + [2540] = {.lex_state = 2, .external_lex_state = 2}, + [2541] = {.lex_state = 2, .external_lex_state = 2}, + [2542] = {.lex_state = 2, .external_lex_state = 2}, + [2543] = {.lex_state = 0, .external_lex_state = 4}, + [2544] = {.lex_state = 3, .external_lex_state = 3}, + [2545] = {.lex_state = 2, .external_lex_state = 4}, + [2546] = {.lex_state = 2, .external_lex_state = 2}, + [2547] = {.lex_state = 0, .external_lex_state = 4}, + [2548] = {.lex_state = 2, .external_lex_state = 2}, + [2549] = {.lex_state = 0, .external_lex_state = 3}, + [2550] = {.lex_state = 2, .external_lex_state = 4}, + [2551] = {.lex_state = 2, .external_lex_state = 4}, + [2552] = {.lex_state = 3, .external_lex_state = 2}, + [2553] = {.lex_state = 2, .external_lex_state = 4}, + [2554] = {.lex_state = 2, .external_lex_state = 2}, + [2555] = {.lex_state = 2, .external_lex_state = 2}, + [2556] = {.lex_state = 2, .external_lex_state = 4}, + [2557] = {.lex_state = 2, .external_lex_state = 2}, + [2558] = {.lex_state = 3, .external_lex_state = 4}, + [2559] = {.lex_state = 2, .external_lex_state = 2}, + [2560] = {.lex_state = 2, .external_lex_state = 2}, + [2561] = {.lex_state = 2, .external_lex_state = 2}, + [2562] = {.lex_state = 2, .external_lex_state = 2}, [2563] = {.lex_state = 0, .external_lex_state = 4}, - [2564] = {.lex_state = 0, .external_lex_state = 4}, + [2564] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [2566] = {.lex_state = 12, .external_lex_state = 2}, + [2567] = {.lex_state = 2, .external_lex_state = 2}, + [2568] = {.lex_state = 2, .external_lex_state = 4}, + [2569] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [2571] = {.lex_state = 2, .external_lex_state = 2}, + [2572] = {.lex_state = 2, .external_lex_state = 2}, + [2573] = {.lex_state = 2, .external_lex_state = 2}, + [2574] = {.lex_state = 3, .external_lex_state = 4}, + [2575] = {.lex_state = 2, .external_lex_state = 2}, [2576] = {.lex_state = 0, .external_lex_state = 4}, - [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}, + [2577] = {.lex_state = 5, .external_lex_state = 2}, + [2578] = {.lex_state = 3, .external_lex_state = 2}, + [2579] = {.lex_state = 2, .external_lex_state = 2}, + [2580] = {.lex_state = 2, .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}, - [2584] = {.lex_state = 0, .external_lex_state = 4}, - [2585] = {.lex_state = 0, .external_lex_state = 2}, - [2586] = {.lex_state = 0, .external_lex_state = 2}, - [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}, - [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}, - [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}, - [2618] = {.lex_state = 0, .external_lex_state = 4}, - [2619] = {.lex_state = 0, .external_lex_state = 2}, - [2620] = {.lex_state = 0, .external_lex_state = 2}, + [2582] = {.lex_state = 5, .external_lex_state = 2}, + [2583] = {.lex_state = 2, .external_lex_state = 4}, + [2584] = {.lex_state = 0, .external_lex_state = 3}, + [2585] = {.lex_state = 0, .external_lex_state = 4}, + [2586] = {.lex_state = 2, .external_lex_state = 2}, + [2587] = {.lex_state = 0, .external_lex_state = 3}, + [2588] = {.lex_state = 0, .external_lex_state = 2}, + [2589] = {.lex_state = 3, .external_lex_state = 2}, + [2590] = {.lex_state = 12, .external_lex_state = 2}, + [2591] = {.lex_state = 0, .external_lex_state = 2}, + [2592] = {.lex_state = 0, .external_lex_state = 2}, + [2593] = {.lex_state = 2, .external_lex_state = 2}, + [2594] = {.lex_state = 3, .external_lex_state = 2}, + [2595] = {.lex_state = 3, .external_lex_state = 4}, + [2596] = {.lex_state = 2, .external_lex_state = 4}, + [2597] = {.lex_state = 2, .external_lex_state = 4}, + [2598] = {.lex_state = 2, .external_lex_state = 4}, + [2599] = {.lex_state = 0, .external_lex_state = 4}, + [2600] = {.lex_state = 11, .external_lex_state = 2}, + [2601] = {.lex_state = 5, .external_lex_state = 2}, + [2602] = {.lex_state = 5, .external_lex_state = 2}, + [2603] = {.lex_state = 2, .external_lex_state = 2}, + [2604] = {.lex_state = 11, .external_lex_state = 2}, + [2605] = {.lex_state = 2, .external_lex_state = 2}, + [2606] = {.lex_state = 2, .external_lex_state = 2}, + [2607] = {.lex_state = 2, .external_lex_state = 4}, + [2608] = {.lex_state = 2, .external_lex_state = 4}, + [2609] = {.lex_state = 0, .external_lex_state = 4}, + [2610] = {.lex_state = 2, .external_lex_state = 2}, + [2611] = {.lex_state = 3, .external_lex_state = 4}, + [2612] = {.lex_state = 2, .external_lex_state = 2}, + [2613] = {.lex_state = 2, .external_lex_state = 2}, + [2614] = {.lex_state = 5, .external_lex_state = 2}, + [2615] = {.lex_state = 3, .external_lex_state = 2}, + [2616] = {.lex_state = 2, .external_lex_state = 2}, + [2617] = {.lex_state = 2, .external_lex_state = 4}, + [2618] = {.lex_state = 2, .external_lex_state = 4}, + [2619] = {.lex_state = 2, .external_lex_state = 2}, + [2620] = {.lex_state = 2, .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}, - [2626] = {.lex_state = 0, .external_lex_state = 4}, - [2627] = {.lex_state = 0, .external_lex_state = 4}, - [2628] = {.lex_state = 0, .external_lex_state = 4}, - [2629] = {.lex_state = 0, .external_lex_state = 4}, - [2630] = {.lex_state = 0, .external_lex_state = 4}, - [2631] = {.lex_state = 0, .external_lex_state = 2}, - [2632] = {.lex_state = 0, .external_lex_state = 4}, - [2633] = {.lex_state = 0, .external_lex_state = 4}, - [2634] = {.lex_state = 0, .external_lex_state = 4}, - [2635] = {.lex_state = 0, .external_lex_state = 4}, - [2636] = {.lex_state = 0, .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}, - [2640] = {.lex_state = 0, .external_lex_state = 4}, - [2641] = {.lex_state = 0, .external_lex_state = 2}, - [2642] = {.lex_state = 0, .external_lex_state = 4}, - [2643] = {.lex_state = 0, .external_lex_state = 2}, - [2644] = {.lex_state = 0, .external_lex_state = 4}, - [2645] = {.lex_state = 0, .external_lex_state = 4}, - [2646] = {.lex_state = 5, .external_lex_state = 2}, - [2647] = {.lex_state = 0, .external_lex_state = 2}, - [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}, + [2622] = {.lex_state = 2, .external_lex_state = 4}, + [2623] = {.lex_state = 2, .external_lex_state = 4}, + [2624] = {.lex_state = 2, .external_lex_state = 4}, + [2625] = {.lex_state = 2, .external_lex_state = 2}, + [2626] = {.lex_state = 2, .external_lex_state = 2}, + [2627] = {.lex_state = 2, .external_lex_state = 2}, + [2628] = {.lex_state = 2, .external_lex_state = 4}, + [2629] = {.lex_state = 5, .external_lex_state = 2}, + [2630] = {.lex_state = 5, .external_lex_state = 2}, + [2631] = {.lex_state = 0, .external_lex_state = 3}, + [2632] = {.lex_state = 2, .external_lex_state = 4}, + [2633] = {.lex_state = 2, .external_lex_state = 2}, + [2634] = {.lex_state = 2, .external_lex_state = 2}, + [2635] = {.lex_state = 0, .external_lex_state = 2}, + [2636] = {.lex_state = 2, .external_lex_state = 2}, + [2637] = {.lex_state = 12, .external_lex_state = 2}, + [2638] = {.lex_state = 12, .external_lex_state = 2}, + [2639] = {.lex_state = 12, .external_lex_state = 2}, + [2640] = {.lex_state = 0, .external_lex_state = 2}, + [2641] = {.lex_state = 2, .external_lex_state = 2}, + [2642] = {.lex_state = 0, .external_lex_state = 3}, + [2643] = {.lex_state = 12, .external_lex_state = 2}, + [2644] = {.lex_state = 2, .external_lex_state = 2}, + [2645] = {.lex_state = 0, .external_lex_state = 2}, + [2646] = {.lex_state = 0, .external_lex_state = 2}, + [2647] = {.lex_state = 2, .external_lex_state = 2}, + [2648] = {.lex_state = 3, .external_lex_state = 2}, + [2649] = {.lex_state = 12, .external_lex_state = 2}, + [2650] = {.lex_state = 0, .external_lex_state = 2}, + [2651] = {.lex_state = 2, .external_lex_state = 2}, + [2652] = {.lex_state = 2, .external_lex_state = 3}, [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}, - [2660] = {.lex_state = 0, .external_lex_state = 4}, + [2654] = {.lex_state = 12, .external_lex_state = 2}, + [2655] = {.lex_state = 12, .external_lex_state = 2}, + [2656] = {.lex_state = 12, .external_lex_state = 2}, + [2657] = {.lex_state = 12, .external_lex_state = 2}, + [2658] = {.lex_state = 12, .external_lex_state = 2}, + [2659] = {.lex_state = 0, .external_lex_state = 3}, + [2660] = {.lex_state = 0, .external_lex_state = 3}, [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}, + [2664] = {.lex_state = 2, .external_lex_state = 2}, + [2665] = {.lex_state = 2, .external_lex_state = 2}, [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}, + [2668] = {.lex_state = 12, .external_lex_state = 2}, + [2669] = {.lex_state = 12, .external_lex_state = 2}, [2670] = {.lex_state = 0, .external_lex_state = 4}, - [2671] = {.lex_state = 0, .external_lex_state = 2}, + [2671] = {.lex_state = 0, .external_lex_state = 3}, [2672] = {.lex_state = 0, .external_lex_state = 4}, - [2673] = {.lex_state = 0, .external_lex_state = 4}, + [2673] = {.lex_state = 12, .external_lex_state = 2}, [2674] = {.lex_state = 0, .external_lex_state = 2}, [2675] = {.lex_state = 0, .external_lex_state = 4}, - [2676] = {.lex_state = 0, .external_lex_state = 4}, + [2676] = {.lex_state = 0, .external_lex_state = 2}, [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 = 12, .external_lex_state = 2}, + [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}, - [2684] = {.lex_state = 0, .external_lex_state = 4}, - [2685] = {.lex_state = 0, .external_lex_state = 4}, - [2686] = {.lex_state = 0, .external_lex_state = 4}, + [2683] = {.lex_state = 0, .external_lex_state = 2}, + [2684] = {.lex_state = 2, .external_lex_state = 2}, + [2685] = {.lex_state = 12, .external_lex_state = 2}, + [2686] = {.lex_state = 0, .external_lex_state = 2}, [2687] = {.lex_state = 0, .external_lex_state = 4}, [2688] = {.lex_state = 0, .external_lex_state = 2}, [2689] = {.lex_state = 0, .external_lex_state = 2}, [2690] = {.lex_state = 0, .external_lex_state = 4}, - [2691] = {.lex_state = 0, .external_lex_state = 4}, + [2691] = {.lex_state = 2, .external_lex_state = 3}, [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}, - [2698] = {.lex_state = 0, .external_lex_state = 4}, - [2699] = {.lex_state = 0, .external_lex_state = 4}, - [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}, - [2704] = {.lex_state = 0, .external_lex_state = 4}, - [2705] = {.lex_state = 0, .external_lex_state = 4}, - [2706] = {.lex_state = 0, .external_lex_state = 4}, - [2707] = {.lex_state = 0, .external_lex_state = 4}, - [2708] = {.lex_state = 0, .external_lex_state = 4}, - [2709] = {.lex_state = 0, .external_lex_state = 4}, - [2710] = {.lex_state = 0, .external_lex_state = 4}, - [2711] = {.lex_state = 0, .external_lex_state = 2}, - [2712] = {.lex_state = 0, .external_lex_state = 4}, + [2693] = {.lex_state = 12, .external_lex_state = 2}, + [2694] = {.lex_state = 2, .external_lex_state = 2}, + [2695] = {.lex_state = 0, .external_lex_state = 3}, + [2696] = {.lex_state = 0, .external_lex_state = 3}, + [2697] = {.lex_state = 0, .external_lex_state = 2}, + [2698] = {.lex_state = 12, .external_lex_state = 2}, + [2699] = {.lex_state = 12, .external_lex_state = 2}, + [2700] = {.lex_state = 12, .external_lex_state = 2}, + [2701] = {.lex_state = 12, .external_lex_state = 2}, + [2702] = {.lex_state = 3, .external_lex_state = 2}, + [2703] = {.lex_state = 0, .external_lex_state = 2}, + [2704] = {.lex_state = 12, .external_lex_state = 2}, + [2705] = {.lex_state = 0, .external_lex_state = 2}, + [2706] = {.lex_state = 2, .external_lex_state = 2}, + [2707] = {.lex_state = 0, .external_lex_state = 2}, + [2708] = {.lex_state = 0, .external_lex_state = 2}, + [2709] = {.lex_state = 12, .external_lex_state = 2}, + [2710] = {.lex_state = 3, .external_lex_state = 2}, + [2711] = {.lex_state = 12, .external_lex_state = 2}, + [2712] = {.lex_state = 12, .external_lex_state = 2}, [2713] = {.lex_state = 0, .external_lex_state = 4}, - [2714] = {.lex_state = 0, .external_lex_state = 4}, + [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}, + [2716] = {.lex_state = 0, .external_lex_state = 3}, + [2717] = {.lex_state = 0, .external_lex_state = 3}, + [2718] = {.lex_state = 12, .external_lex_state = 2}, [2719] = {.lex_state = 0, .external_lex_state = 2}, - [2720] = {.lex_state = 0, .external_lex_state = 4}, + [2720] = {.lex_state = 0, .external_lex_state = 3}, [2721] = {.lex_state = 0, .external_lex_state = 2}, - [2722] = {.lex_state = 5, .external_lex_state = 2}, - [2723] = {.lex_state = 0, .external_lex_state = 4}, + [2722] = {.lex_state = 0, .external_lex_state = 2}, + [2723] = {.lex_state = 2, .external_lex_state = 2}, [2724] = {.lex_state = 0, .external_lex_state = 2}, - [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}, - [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}, - [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}, - [2738] = {.lex_state = 0, .external_lex_state = 4}, - [2739] = {.lex_state = 0, .external_lex_state = 4}, + [2725] = {.lex_state = 0, .external_lex_state = 3}, + [2726] = {.lex_state = 0, .external_lex_state = 3}, + [2727] = {.lex_state = 12, .external_lex_state = 2}, + [2728] = {.lex_state = 12, .external_lex_state = 2}, + [2729] = {.lex_state = 12, .external_lex_state = 2}, + [2730] = {.lex_state = 12, .external_lex_state = 2}, + [2731] = {.lex_state = 0, .external_lex_state = 2}, + [2732] = {.lex_state = 2, .external_lex_state = 2}, + [2733] = {.lex_state = 0, .external_lex_state = 2}, + [2734] = {.lex_state = 0, .external_lex_state = 2}, + [2735] = {.lex_state = 0, .external_lex_state = 2}, + [2736] = {.lex_state = 12, .external_lex_state = 2}, + [2737] = {.lex_state = 0, .external_lex_state = 2}, + [2738] = {.lex_state = 0, .external_lex_state = 2}, + [2739] = {.lex_state = 0, .external_lex_state = 2}, [2740] = {.lex_state = 0, .external_lex_state = 2}, [2741] = {.lex_state = 0, .external_lex_state = 2}, - [2742] = {.lex_state = 0, .external_lex_state = 4}, + [2742] = {.lex_state = 0, .external_lex_state = 2}, [2743] = {.lex_state = 0, .external_lex_state = 2}, - [2744] = {.lex_state = 0, .external_lex_state = 4}, + [2744] = {.lex_state = 0, .external_lex_state = 2}, [2745] = {.lex_state = 0, .external_lex_state = 2}, - [2746] = {.lex_state = 0, .external_lex_state = 4}, + [2746] = {.lex_state = 0, .external_lex_state = 2}, [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}, + [2749] = {.lex_state = 0, .external_lex_state = 2}, + [2750] = {.lex_state = 0, .external_lex_state = 2}, [2751] = {.lex_state = 0, .external_lex_state = 2}, - [2752] = {.lex_state = 0, .external_lex_state = 4}, - [2753] = {.lex_state = 0, .external_lex_state = 4}, - [2754] = {.lex_state = 0, .external_lex_state = 4}, - [2755] = {.lex_state = 0, .external_lex_state = 4}, + [2752] = {.lex_state = 0, .external_lex_state = 2}, + [2753] = {.lex_state = 0, .external_lex_state = 2}, + [2754] = {.lex_state = 0, .external_lex_state = 2}, + [2755] = {.lex_state = 0, .external_lex_state = 2}, [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}, + [2759] = {.lex_state = 0, .external_lex_state = 4}, + [2760] = {.lex_state = 0, .external_lex_state = 2}, + [2761] = {.lex_state = 3, .external_lex_state = 2}, [2762] = {.lex_state = 0, .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}, + [2763] = {.lex_state = 2, .external_lex_state = 2}, + [2764] = {.lex_state = 2, .external_lex_state = 2}, + [2765] = {.lex_state = 3, .external_lex_state = 2}, [2766] = {.lex_state = 0, .external_lex_state = 2}, - [2767] = {.lex_state = 0, .external_lex_state = 4}, - [2768] = {.lex_state = 0, .external_lex_state = 2}, - [2769] = {.lex_state = 0, .external_lex_state = 2}, - [2770] = {.lex_state = 0, .external_lex_state = 4}, + [2767] = {.lex_state = 2, .external_lex_state = 2}, + [2768] = {.lex_state = 3, .external_lex_state = 2}, + [2769] = {.lex_state = 0, .external_lex_state = 4}, + [2770] = {.lex_state = 0, .external_lex_state = 2}, [2771] = {.lex_state = 0, .external_lex_state = 2}, [2772] = {.lex_state = 0, .external_lex_state = 2}, - [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}, + [2773] = {.lex_state = 0, .external_lex_state = 4}, + [2774] = {.lex_state = 0, .external_lex_state = 2}, + [2775] = {.lex_state = 0, .external_lex_state = 2}, + [2776] = {.lex_state = 2, .external_lex_state = 3}, + [2777] = {.lex_state = 12, .external_lex_state = 2}, [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}, - [2782] = {.lex_state = 0, .external_lex_state = 4}, - [2783] = {.lex_state = 0, .external_lex_state = 2}, - [2784] = {.lex_state = 0, .external_lex_state = 2}, + [2780] = {.lex_state = 3, .external_lex_state = 2}, + [2781] = {.lex_state = 3, .external_lex_state = 2}, + [2782] = {.lex_state = 0, .external_lex_state = 2}, + [2783] = {.lex_state = 2, .external_lex_state = 2}, + [2784] = {.lex_state = 3, .external_lex_state = 2}, [2785] = {.lex_state = 0, .external_lex_state = 2}, - [2786] = {.lex_state = 0, .external_lex_state = 4}, - [2787] = {.lex_state = 0, .external_lex_state = 2}, - [2788] = {.lex_state = 0, .external_lex_state = 2}, + [2786] = {.lex_state = 0, .external_lex_state = 2}, + [2787] = {.lex_state = 2, .external_lex_state = 2}, + [2788] = {.lex_state = 3, .external_lex_state = 2}, [2789] = {.lex_state = 0, .external_lex_state = 2}, - [2790] = {.lex_state = 0, .external_lex_state = 4}, - [2791] = {.lex_state = 0, .external_lex_state = 2}, - [2792] = {.lex_state = 0, .external_lex_state = 2}, + [2790] = {.lex_state = 0, .external_lex_state = 2}, + [2791] = {.lex_state = 12, .external_lex_state = 2}, + [2792] = {.lex_state = 12, .external_lex_state = 2}, [2793] = {.lex_state = 0, .external_lex_state = 2}, - [2794] = {.lex_state = 0, .external_lex_state = 4}, + [2794] = {.lex_state = 0, .external_lex_state = 2}, [2795] = {.lex_state = 0, .external_lex_state = 2}, - [2796] = {.lex_state = 0, .external_lex_state = 2}, - [2797] = {.lex_state = 0, .external_lex_state = 2}, - [2798] = {.lex_state = 0, .external_lex_state = 4}, + [2796] = {.lex_state = 12, .external_lex_state = 2}, + [2797] = {.lex_state = 2, .external_lex_state = 2}, + [2798] = {.lex_state = 0, .external_lex_state = 2}, [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}, + [2800] = {.lex_state = 3, .external_lex_state = 2}, + [2801] = {.lex_state = 2, .external_lex_state = 2}, + [2802] = {.lex_state = 2, .external_lex_state = 2}, + [2803] = {.lex_state = 3, .external_lex_state = 2}, [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}, - [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}, - [2818] = {.lex_state = 0, .external_lex_state = 4}, + [2805] = {.lex_state = 3, .external_lex_state = 2}, + [2806] = {.lex_state = 2, .external_lex_state = 2}, + [2807] = {.lex_state = 2, .external_lex_state = 2}, + [2808] = {.lex_state = 2, .external_lex_state = 2}, + [2809] = {.lex_state = 2, .external_lex_state = 2}, + [2810] = {.lex_state = 2, .external_lex_state = 2}, + [2811] = {.lex_state = 2, .external_lex_state = 2}, + [2812] = {.lex_state = 2, .external_lex_state = 2}, + [2813] = {.lex_state = 2, .external_lex_state = 2}, + [2814] = {.lex_state = 2, .external_lex_state = 2}, + [2815] = {.lex_state = 12, .external_lex_state = 2}, + [2816] = {.lex_state = 0, .external_lex_state = 4}, + [2817] = {.lex_state = 12, .external_lex_state = 2}, + [2818] = {.lex_state = 2, .external_lex_state = 2}, [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}, + [2820] = {.lex_state = 2, .external_lex_state = 2}, + [2821] = {.lex_state = 2, .external_lex_state = 2}, + [2822] = {.lex_state = 0, .external_lex_state = 2}, + [2823] = {.lex_state = 2, .external_lex_state = 2}, + [2824] = {.lex_state = 2, .external_lex_state = 2}, + [2825] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 2}, [2830] = {.lex_state = 0, .external_lex_state = 2}, - [2831] = {.lex_state = 0, .external_lex_state = 2}, + [2831] = {.lex_state = 2, .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}, - [2844] = {.lex_state = 0, .external_lex_state = 2}, - [2845] = {.lex_state = 0, .external_lex_state = 4}, - [2846] = {.lex_state = 0, .external_lex_state = 4}, - [2847] = {.lex_state = 0, .external_lex_state = 4}, - [2848] = {.lex_state = 0, .external_lex_state = 4}, + [2833] = {.lex_state = 2, .external_lex_state = 2}, + [2834] = {.lex_state = 2, .external_lex_state = 2}, + [2835] = {.lex_state = 2, .external_lex_state = 2}, + [2836] = {.lex_state = 2, .external_lex_state = 2}, + [2837] = {.lex_state = 2, .external_lex_state = 2}, + [2838] = {.lex_state = 12, .external_lex_state = 2}, + [2839] = {.lex_state = 2, .external_lex_state = 2}, + [2840] = {.lex_state = 2, .external_lex_state = 2}, + [2841] = {.lex_state = 2, .external_lex_state = 2}, + [2842] = {.lex_state = 2, .external_lex_state = 2}, + [2843] = {.lex_state = 17, .external_lex_state = 2}, + [2844] = {.lex_state = 2, .external_lex_state = 2}, + [2845] = {.lex_state = 2, .external_lex_state = 2}, + [2846] = {.lex_state = 2, .external_lex_state = 2}, + [2847] = {.lex_state = 3, .external_lex_state = 2}, + [2848] = {.lex_state = 2, .external_lex_state = 3}, [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}, + [2850] = {.lex_state = 2, .external_lex_state = 2}, + [2851] = {.lex_state = 2, .external_lex_state = 2}, + [2852] = {.lex_state = 2, .external_lex_state = 2}, [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}, + [2854] = {.lex_state = 0, .external_lex_state = 2}, + [2855] = {.lex_state = 0, .external_lex_state = 2}, + [2856] = {.lex_state = 0, .external_lex_state = 2}, + [2857] = {.lex_state = 0, .external_lex_state = 2}, + [2858] = {.lex_state = 0, .external_lex_state = 2}, [2859] = {.lex_state = 0, .external_lex_state = 4}, [2860] = {.lex_state = 0, .external_lex_state = 4}, - [2861] = {.lex_state = 0, .external_lex_state = 4}, + [2861] = {.lex_state = 2, .external_lex_state = 2}, [2862] = {.lex_state = 0, .external_lex_state = 4}, [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 = 0, .external_lex_state = 2}, + [2865] = {.lex_state = 0, .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}, + [2870] = {.lex_state = 0, .external_lex_state = 2}, [2871] = {.lex_state = 0, .external_lex_state = 2}, - [2872] = {.lex_state = 0, .external_lex_state = 2}, + [2872] = {.lex_state = 0, .external_lex_state = 4}, [2873] = {.lex_state = 0, .external_lex_state = 2}, [2874] = {.lex_state = 0, .external_lex_state = 2}, [2875] = {.lex_state = 0, .external_lex_state = 2}, - [2876] = {.lex_state = 0, .external_lex_state = 2}, + [2876] = {.lex_state = 0, .external_lex_state = 4}, [2877] = {.lex_state = 0, .external_lex_state = 2}, [2878] = {.lex_state = 0, .external_lex_state = 2}, - [2879] = {.lex_state = 0, .external_lex_state = 2}, + [2879] = {.lex_state = 0, .external_lex_state = 4}, [2880] = {.lex_state = 0, .external_lex_state = 4}, [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}, - [2885] = {.lex_state = 0, .external_lex_state = 2}, + [2883] = {.lex_state = 0, .external_lex_state = 4}, + [2884] = {.lex_state = 0, .external_lex_state = 2}, + [2885] = {.lex_state = 0, .external_lex_state = 4}, [2886] = {.lex_state = 0, .external_lex_state = 2}, - [2887] = {.lex_state = 0, .external_lex_state = 2}, + [2887] = {.lex_state = 0, .external_lex_state = 4}, [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}, + [2890] = {.lex_state = 0, .external_lex_state = 2}, + [2891] = {.lex_state = 0, .external_lex_state = 4}, + [2892] = {.lex_state = 0, .external_lex_state = 2}, + [2893] = {.lex_state = 0, .external_lex_state = 4}, + [2894] = {.lex_state = 0, .external_lex_state = 2}, + [2895] = {.lex_state = 0, .external_lex_state = 2}, + [2896] = {.lex_state = 0, .external_lex_state = 2}, + [2897] = {.lex_state = 0, .external_lex_state = 4}, + [2898] = {.lex_state = 0, .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 = 4}, + [2902] = {.lex_state = 0, .external_lex_state = 2}, + [2903] = {.lex_state = 0, .external_lex_state = 4}, + [2904] = {.lex_state = 0, .external_lex_state = 2}, + [2905] = {.lex_state = 0, .external_lex_state = 4}, + [2906] = {.lex_state = 0, .external_lex_state = 2}, + [2907] = {.lex_state = 0, .external_lex_state = 2}, + [2908] = {.lex_state = 0, .external_lex_state = 2}, + [2909] = {.lex_state = 0, .external_lex_state = 2}, + [2910] = {.lex_state = 0, .external_lex_state = 2}, + [2911] = {.lex_state = 0, .external_lex_state = 2}, + [2912] = {.lex_state = 0, .external_lex_state = 2}, + [2913] = {.lex_state = 0, .external_lex_state = 2}, + [2914] = {.lex_state = 0, .external_lex_state = 2}, + [2915] = {.lex_state = 0, .external_lex_state = 4}, + [2916] = {.lex_state = 0, .external_lex_state = 2}, + [2917] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [2924] = {.lex_state = 0, .external_lex_state = 2}, + [2925] = {.lex_state = 0, .external_lex_state = 2}, + [2926] = {.lex_state = 12, .external_lex_state = 2}, + [2927] = {.lex_state = 0, .external_lex_state = 4}, + [2928] = {.lex_state = 17, .external_lex_state = 2}, + [2929] = {.lex_state = 0, .external_lex_state = 4}, + [2930] = {.lex_state = 0, .external_lex_state = 4}, + [2931] = {.lex_state = 0, .external_lex_state = 2}, + [2932] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [2937] = {.lex_state = 0, .external_lex_state = 2}, + [2938] = {.lex_state = 0, .external_lex_state = 4}, + [2939] = {.lex_state = 0, .external_lex_state = 4}, + [2940] = {.lex_state = 0, .external_lex_state = 4}, + [2941] = {.lex_state = 0, .external_lex_state = 4}, + [2942] = {.lex_state = 0, .external_lex_state = 4}, + [2943] = {.lex_state = 0, .external_lex_state = 4}, + [2944] = {.lex_state = 0, .external_lex_state = 2}, + [2945] = {.lex_state = 0, .external_lex_state = 2}, + [2946] = {.lex_state = 0, .external_lex_state = 4}, + [2947] = {.lex_state = 0, .external_lex_state = 2}, + [2948] = {.lex_state = 0, .external_lex_state = 4}, + [2949] = {.lex_state = 0, .external_lex_state = 4}, + [2950] = {.lex_state = 0, .external_lex_state = 4}, + [2951] = {.lex_state = 17, .external_lex_state = 2}, + [2952] = {.lex_state = 0, .external_lex_state = 2}, + [2953] = {.lex_state = 0, .external_lex_state = 4}, + [2954] = {.lex_state = 0, .external_lex_state = 2}, + [2955] = {.lex_state = 0, .external_lex_state = 4}, + [2956] = {.lex_state = 0, .external_lex_state = 4}, + [2957] = {.lex_state = 0, .external_lex_state = 2}, + [2958] = {.lex_state = 0, .external_lex_state = 2}, + [2959] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 2}, + [2965] = {.lex_state = 0, .external_lex_state = 2}, + [2966] = {.lex_state = 0, .external_lex_state = 2}, + [2967] = {.lex_state = 0, .external_lex_state = 2}, + [2968] = {.lex_state = 0, .external_lex_state = 4}, + [2969] = {.lex_state = 0, .external_lex_state = 2}, + [2970] = {.lex_state = 0, .external_lex_state = 2}, + [2971] = {.lex_state = 0, .external_lex_state = 2}, + [2972] = {.lex_state = 0, .external_lex_state = 4}, + [2973] = {.lex_state = 0, .external_lex_state = 2}, + [2974] = {.lex_state = 0, .external_lex_state = 2}, + [2975] = {.lex_state = 0, .external_lex_state = 2}, + [2976] = {.lex_state = 0, .external_lex_state = 2}, + [2977] = {.lex_state = 0, .external_lex_state = 2}, + [2978] = {.lex_state = 0, .external_lex_state = 4}, + [2979] = {.lex_state = 0, .external_lex_state = 4}, + [2980] = {.lex_state = 0, .external_lex_state = 2}, + [2981] = {.lex_state = 0, .external_lex_state = 2}, + [2982] = {.lex_state = 0, .external_lex_state = 2}, + [2983] = {.lex_state = 0, .external_lex_state = 4}, + [2984] = {.lex_state = 0, .external_lex_state = 4}, + [2985] = {.lex_state = 0, .external_lex_state = 2}, + [2986] = {.lex_state = 0, .external_lex_state = 4}, + [2987] = {.lex_state = 0, .external_lex_state = 4}, + [2988] = {.lex_state = 0, .external_lex_state = 2}, + [2989] = {.lex_state = 0, .external_lex_state = 2}, + [2990] = {.lex_state = 0, .external_lex_state = 2}, + [2991] = {.lex_state = 0, .external_lex_state = 4}, + [2992] = {.lex_state = 17, .external_lex_state = 2}, + [2993] = {.lex_state = 0, .external_lex_state = 2}, + [2994] = {.lex_state = 0, .external_lex_state = 2}, + [2995] = {.lex_state = 0, .external_lex_state = 4}, + [2996] = {.lex_state = 0, .external_lex_state = 2}, + [2997] = {.lex_state = 0, .external_lex_state = 2}, + [2998] = {.lex_state = 0, .external_lex_state = 2}, + [2999] = {.lex_state = 0, .external_lex_state = 2}, + [3000] = {.lex_state = 0, .external_lex_state = 4}, + [3001] = {.lex_state = 0, .external_lex_state = 2}, + [3002] = {.lex_state = 0, .external_lex_state = 2}, + [3003] = {.lex_state = 0, .external_lex_state = 4}, + [3004] = {.lex_state = 0, .external_lex_state = 2}, + [3005] = {.lex_state = 2, .external_lex_state = 2}, + [3006] = {.lex_state = 0, .external_lex_state = 4}, + [3007] = {.lex_state = 2, .external_lex_state = 2}, + [3008] = {.lex_state = 0, .external_lex_state = 4}, + [3009] = {.lex_state = 0, .external_lex_state = 2}, + [3010] = {.lex_state = 0, .external_lex_state = 4}, + [3011] = {.lex_state = 0, .external_lex_state = 4}, + [3012] = {.lex_state = 0, .external_lex_state = 3}, + [3013] = {.lex_state = 0, .external_lex_state = 2}, + [3014] = {.lex_state = 0, .external_lex_state = 2}, + [3015] = {.lex_state = 0, .external_lex_state = 4}, + [3016] = {.lex_state = 0, .external_lex_state = 4}, + [3017] = {.lex_state = 0, .external_lex_state = 4}, + [3018] = {.lex_state = 0, .external_lex_state = 4}, + [3019] = {.lex_state = 0, .external_lex_state = 4}, + [3020] = {.lex_state = 0, .external_lex_state = 4}, + [3021] = {.lex_state = 0, .external_lex_state = 4}, + [3022] = {.lex_state = 0, .external_lex_state = 4}, + [3023] = {.lex_state = 0, .external_lex_state = 2}, + [3024] = {.lex_state = 0, .external_lex_state = 2}, + [3025] = {.lex_state = 0, .external_lex_state = 2}, + [3026] = {.lex_state = 0, .external_lex_state = 4}, + [3027] = {.lex_state = 0, .external_lex_state = 2}, + [3028] = {.lex_state = 0, .external_lex_state = 4}, + [3029] = {.lex_state = 0, .external_lex_state = 2}, + [3030] = {.lex_state = 0, .external_lex_state = 2}, + [3031] = {.lex_state = 0, .external_lex_state = 4}, + [3032] = {.lex_state = 0, .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 = 4}, + [3036] = {.lex_state = 0, .external_lex_state = 2}, + [3037] = {.lex_state = 0, .external_lex_state = 2}, + [3038] = {.lex_state = 0, .external_lex_state = 4}, + [3039] = {.lex_state = 0, .external_lex_state = 4}, + [3040] = {.lex_state = 0, .external_lex_state = 4}, + [3041] = {.lex_state = 0, .external_lex_state = 2}, + [3042] = {.lex_state = 0, .external_lex_state = 4}, + [3043] = {.lex_state = 0, .external_lex_state = 2}, + [3044] = {.lex_state = 2, .external_lex_state = 2}, + [3045] = {.lex_state = 0, .external_lex_state = 2}, + [3046] = {.lex_state = 0, .external_lex_state = 4}, + [3047] = {.lex_state = 0, .external_lex_state = 2}, + [3048] = {.lex_state = 0, .external_lex_state = 2}, + [3049] = {.lex_state = 0, .external_lex_state = 2}, + [3050] = {.lex_state = 2, .external_lex_state = 2}, + [3051] = {.lex_state = 0, .external_lex_state = 4}, + [3052] = {.lex_state = 0, .external_lex_state = 4}, + [3053] = {.lex_state = 0, .external_lex_state = 4}, + [3054] = {.lex_state = 0, .external_lex_state = 4}, + [3055] = {.lex_state = 0, .external_lex_state = 2}, + [3056] = {.lex_state = 0, .external_lex_state = 2}, + [3057] = {.lex_state = 0, .external_lex_state = 4}, + [3058] = {.lex_state = 0, .external_lex_state = 4}, + [3059] = {.lex_state = 0, .external_lex_state = 4}, + [3060] = {.lex_state = 0, .external_lex_state = 4}, + [3061] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 4}, + [3066] = {.lex_state = 0, .external_lex_state = 2}, + [3067] = {.lex_state = 0, .external_lex_state = 2}, + [3068] = {.lex_state = 0, .external_lex_state = 4}, + [3069] = {.lex_state = 0, .external_lex_state = 4}, + [3070] = {.lex_state = 0, .external_lex_state = 2}, + [3071] = {.lex_state = 0, .external_lex_state = 4}, + [3072] = {.lex_state = 0, .external_lex_state = 2}, + [3073] = {.lex_state = 0, .external_lex_state = 4}, + [3074] = {.lex_state = 0, .external_lex_state = 4}, + [3075] = {.lex_state = 0, .external_lex_state = 2}, + [3076] = {.lex_state = 0, .external_lex_state = 2}, + [3077] = {.lex_state = 0, .external_lex_state = 4}, + [3078] = {.lex_state = 0, .external_lex_state = 2}, + [3079] = {.lex_state = 0, .external_lex_state = 4}, + [3080] = {.lex_state = 0, .external_lex_state = 4}, + [3081] = {.lex_state = 0, .external_lex_state = 4}, + [3082] = {.lex_state = 0, .external_lex_state = 4}, + [3083] = {.lex_state = 0, .external_lex_state = 4}, + [3084] = {.lex_state = 0, .external_lex_state = 4}, + [3085] = {.lex_state = 0, .external_lex_state = 4}, + [3086] = {.lex_state = 0, .external_lex_state = 2}, + [3087] = {.lex_state = 0, .external_lex_state = 4}, + [3088] = {.lex_state = 0, .external_lex_state = 4}, + [3089] = {.lex_state = 0, .external_lex_state = 4}, + [3090] = {.lex_state = 0, .external_lex_state = 4}, + [3091] = {.lex_state = 0, .external_lex_state = 4}, + [3092] = {.lex_state = 0, .external_lex_state = 4}, + [3093] = {.lex_state = 0, .external_lex_state = 4}, + [3094] = {.lex_state = 0, .external_lex_state = 2}, + [3095] = {.lex_state = 0, .external_lex_state = 2}, + [3096] = {.lex_state = 0, .external_lex_state = 2}, + [3097] = {.lex_state = 0, .external_lex_state = 4}, + [3098] = {.lex_state = 0, .external_lex_state = 2}, + [3099] = {.lex_state = 0, .external_lex_state = 4}, + [3100] = {.lex_state = 0, .external_lex_state = 4}, + [3101] = {.lex_state = 0, .external_lex_state = 4}, + [3102] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 17, .external_lex_state = 2}, + [3107] = {.lex_state = 0, .external_lex_state = 4}, + [3108] = {.lex_state = 0, .external_lex_state = 2}, + [3109] = {.lex_state = 0, .external_lex_state = 2}, + [3110] = {.lex_state = 0, .external_lex_state = 4}, + [3111] = {.lex_state = 0, .external_lex_state = 4}, + [3112] = {.lex_state = 0, .external_lex_state = 4}, + [3113] = {.lex_state = 0, .external_lex_state = 2}, + [3114] = {.lex_state = 0, .external_lex_state = 4}, + [3115] = {.lex_state = 0, .external_lex_state = 4}, + [3116] = {.lex_state = 0, .external_lex_state = 4}, + [3117] = {.lex_state = 0, .external_lex_state = 4}, + [3118] = {.lex_state = 0, .external_lex_state = 2}, + [3119] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3125] = {.lex_state = 0, .external_lex_state = 2}, + [3126] = {.lex_state = 0, .external_lex_state = 4}, + [3127] = {.lex_state = 0, .external_lex_state = 4}, + [3128] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3135] = {.lex_state = 2, .external_lex_state = 2}, + [3136] = {.lex_state = 0, .external_lex_state = 2}, + [3137] = {.lex_state = 0, .external_lex_state = 2}, + [3138] = {.lex_state = 0, .external_lex_state = 2}, + [3139] = {.lex_state = 0, .external_lex_state = 2}, + [3140] = {.lex_state = 0, .external_lex_state = 4}, + [3141] = {.lex_state = 0, .external_lex_state = 2}, + [3142] = {.lex_state = 0, .external_lex_state = 4}, + [3143] = {.lex_state = 0, .external_lex_state = 2}, + [3144] = {.lex_state = 0, .external_lex_state = 4}, + [3145] = {.lex_state = 0, .external_lex_state = 4}, + [3146] = {.lex_state = 0, .external_lex_state = 4}, + [3147] = {.lex_state = 0, .external_lex_state = 4}, + [3148] = {.lex_state = 0, .external_lex_state = 2}, + [3149] = {.lex_state = 0, .external_lex_state = 4}, + [3150] = {.lex_state = 0, .external_lex_state = 4}, + [3151] = {.lex_state = 0, .external_lex_state = 4}, + [3152] = {.lex_state = 0, .external_lex_state = 2}, + [3153] = {.lex_state = 0, .external_lex_state = 4}, + [3154] = {.lex_state = 0, .external_lex_state = 4}, + [3155] = {.lex_state = 0, .external_lex_state = 2}, + [3156] = {.lex_state = 0, .external_lex_state = 2}, + [3157] = {.lex_state = 0, .external_lex_state = 4}, + [3158] = {.lex_state = 3, .external_lex_state = 2}, + [3159] = {.lex_state = 2, .external_lex_state = 2}, + [3160] = {.lex_state = 0, .external_lex_state = 2}, + [3161] = {.lex_state = 0, .external_lex_state = 4}, + [3162] = {.lex_state = 0, .external_lex_state = 4}, + [3163] = {.lex_state = 0, .external_lex_state = 4}, + [3164] = {.lex_state = 0, .external_lex_state = 4}, + [3165] = {.lex_state = 3, .external_lex_state = 2}, + [3166] = {.lex_state = 0, .external_lex_state = 2}, + [3167] = {.lex_state = 0, .external_lex_state = 2}, + [3168] = {.lex_state = 3, .external_lex_state = 2}, + [3169] = {.lex_state = 0, .external_lex_state = 4}, + [3170] = {.lex_state = 0, .external_lex_state = 2}, + [3171] = {.lex_state = 0, .external_lex_state = 4}, + [3172] = {.lex_state = 0, .external_lex_state = 4}, + [3173] = {.lex_state = 0, .external_lex_state = 4}, + [3174] = {.lex_state = 0, .external_lex_state = 4}, + [3175] = {.lex_state = 0, .external_lex_state = 4}, + [3176] = {.lex_state = 0, .external_lex_state = 4}, + [3177] = {.lex_state = 0, .external_lex_state = 4}, + [3178] = {.lex_state = 0, .external_lex_state = 4}, + [3179] = {.lex_state = 0, .external_lex_state = 4}, + [3180] = {.lex_state = 0, .external_lex_state = 4}, + [3181] = {.lex_state = 0, .external_lex_state = 4}, + [3182] = {.lex_state = 0, .external_lex_state = 4}, + [3183] = {.lex_state = 0, .external_lex_state = 4}, + [3184] = {.lex_state = 0, .external_lex_state = 4}, + [3185] = {.lex_state = 0, .external_lex_state = 4}, + [3186] = {.lex_state = 0, .external_lex_state = 4}, + [3187] = {.lex_state = 0, .external_lex_state = 2}, + [3188] = {.lex_state = 0, .external_lex_state = 4}, + [3189] = {.lex_state = 0, .external_lex_state = 4}, + [3190] = {.lex_state = 0, .external_lex_state = 4}, + [3191] = {.lex_state = 0, .external_lex_state = 2}, + [3192] = {.lex_state = 0, .external_lex_state = 4}, + [3193] = {.lex_state = 0, .external_lex_state = 4}, + [3194] = {.lex_state = 0, .external_lex_state = 4}, + [3195] = {.lex_state = 0, .external_lex_state = 2}, + [3196] = {.lex_state = 0, .external_lex_state = 4}, + [3197] = {.lex_state = 0, .external_lex_state = 4}, + [3198] = {.lex_state = 0, .external_lex_state = 4}, + [3199] = {.lex_state = 0, .external_lex_state = 4}, + [3200] = {.lex_state = 0, .external_lex_state = 2}, + [3201] = {.lex_state = 0, .external_lex_state = 2}, + [3202] = {.lex_state = 0, .external_lex_state = 4}, + [3203] = {.lex_state = 0, .external_lex_state = 4}, + [3204] = {.lex_state = 0, .external_lex_state = 2}, + [3205] = {.lex_state = 0, .external_lex_state = 4}, + [3206] = {.lex_state = 0, .external_lex_state = 4}, + [3207] = {.lex_state = 0, .external_lex_state = 4}, + [3208] = {.lex_state = 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 = 4}, + [3213] = {.lex_state = 0, .external_lex_state = 4}, + [3214] = {.lex_state = 0, .external_lex_state = 2}, + [3215] = {.lex_state = 3, .external_lex_state = 2}, + [3216] = {.lex_state = 0, .external_lex_state = 4}, + [3217] = {.lex_state = 0, .external_lex_state = 4}, + [3218] = {.lex_state = 0, .external_lex_state = 2}, + [3219] = {.lex_state = 0, .external_lex_state = 2}, + [3220] = {.lex_state = 0, .external_lex_state = 2}, + [3221] = {.lex_state = 0, .external_lex_state = 2}, + [3222] = {.lex_state = 0, .external_lex_state = 2}, + [3223] = {.lex_state = 0, .external_lex_state = 4}, + [3224] = {.lex_state = 0, .external_lex_state = 4}, + [3225] = {.lex_state = 0, .external_lex_state = 2}, + [3226] = {.lex_state = 0, .external_lex_state = 2}, + [3227] = {.lex_state = 0, .external_lex_state = 4}, + [3228] = {.lex_state = 0, .external_lex_state = 4}, + [3229] = {.lex_state = 0, .external_lex_state = 4}, + [3230] = {.lex_state = 0, .external_lex_state = 4}, + [3231] = {.lex_state = 0, .external_lex_state = 2}, + [3232] = {.lex_state = 0, .external_lex_state = 4}, + [3233] = {.lex_state = 0, .external_lex_state = 4}, + [3234] = {.lex_state = 0, .external_lex_state = 4}, + [3235] = {.lex_state = 0, .external_lex_state = 2}, + [3236] = {.lex_state = 0, .external_lex_state = 4}, + [3237] = {.lex_state = 0, .external_lex_state = 2}, + [3238] = {.lex_state = 0, .external_lex_state = 2}, + [3239] = {.lex_state = 0, .external_lex_state = 4}, + [3240] = {.lex_state = 0, .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 = 2}, + [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 = 4}, + [3255] = {.lex_state = 0, .external_lex_state = 4}, + [3256] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [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 = 4}, + [3269] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, + [3275] = {.lex_state = 0, .external_lex_state = 4}, + [3276] = {.lex_state = 0, .external_lex_state = 4}, + [3277] = {.lex_state = 0, .external_lex_state = 4}, + [3278] = {.lex_state = 0, .external_lex_state = 4}, + [3279] = {.lex_state = 0, .external_lex_state = 2}, + [3280] = {.lex_state = 0, .external_lex_state = 2}, + [3281] = {.lex_state = 0, .external_lex_state = 2}, + [3282] = {.lex_state = 0, .external_lex_state = 4}, + [3283] = {.lex_state = 0, .external_lex_state = 2}, + [3284] = {.lex_state = 0, .external_lex_state = 2}, + [3285] = {.lex_state = 0, .external_lex_state = 2}, + [3286] = {.lex_state = 0, .external_lex_state = 2}, + [3287] = {.lex_state = 0, .external_lex_state = 2}, + [3288] = {.lex_state = 0, .external_lex_state = 4}, + [3289] = {.lex_state = 0, .external_lex_state = 2}, + [3290] = {.lex_state = 0, .external_lex_state = 4}, + [3291] = {.lex_state = 0, .external_lex_state = 4}, + [3292] = {.lex_state = 0, .external_lex_state = 2}, + [3293] = {.lex_state = 0, .external_lex_state = 2}, + [3294] = {.lex_state = 0, .external_lex_state = 2}, + [3295] = {.lex_state = 0, .external_lex_state = 4}, + [3296] = {.lex_state = 0, .external_lex_state = 4}, + [3297] = {.lex_state = 0, .external_lex_state = 4}, + [3298] = {.lex_state = 0, .external_lex_state = 4}, + [3299] = {.lex_state = 0, .external_lex_state = 2}, + [3300] = {.lex_state = 0, .external_lex_state = 4}, + [3301] = {.lex_state = 0, .external_lex_state = 2}, + [3302] = {.lex_state = 0, .external_lex_state = 4}, + [3303] = {.lex_state = 0, .external_lex_state = 4}, + [3304] = {.lex_state = 0, .external_lex_state = 2}, + [3305] = {.lex_state = 0, .external_lex_state = 4}, + [3306] = {.lex_state = 0, .external_lex_state = 4}, + [3307] = {.lex_state = 0, .external_lex_state = 2}, + [3308] = {.lex_state = 0, .external_lex_state = 4}, + [3309] = {.lex_state = 0, .external_lex_state = 4}, + [3310] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3315] = {.lex_state = 0, .external_lex_state = 2}, + [3316] = {.lex_state = 0, .external_lex_state = 4}, + [3317] = {.lex_state = 0, .external_lex_state = 4}, + [3318] = {.lex_state = 0, .external_lex_state = 2}, + [3319] = {.lex_state = 0, .external_lex_state = 4}, + [3320] = {.lex_state = 0, .external_lex_state = 2}, + [3321] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3326] = {.lex_state = 0, .external_lex_state = 2}, + [3327] = {.lex_state = 0, .external_lex_state = 2}, + [3328] = {.lex_state = 0, .external_lex_state = 2}, + [3329] = {.lex_state = 0, .external_lex_state = 2}, + [3330] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3338] = {.lex_state = 0, .external_lex_state = 4}, + [3339] = {.lex_state = 0, .external_lex_state = 2}, + [3340] = {.lex_state = 0, .external_lex_state = 4}, + [3341] = {.lex_state = 0, .external_lex_state = 2}, + [3342] = {.lex_state = 0, .external_lex_state = 2}, + [3343] = {.lex_state = 0, .external_lex_state = 2}, + [3344] = {.lex_state = 0, .external_lex_state = 4}, + [3345] = {.lex_state = 0, .external_lex_state = 4}, + [3346] = {.lex_state = 0, .external_lex_state = 4}, + [3347] = {.lex_state = 0, .external_lex_state = 4}, + [3348] = {.lex_state = 0, .external_lex_state = 4}, + [3349] = {.lex_state = 0, .external_lex_state = 2}, + [3350] = {.lex_state = 0, .external_lex_state = 2}, + [3351] = {.lex_state = 0, .external_lex_state = 2}, + [3352] = {.lex_state = 0, .external_lex_state = 4}, + [3353] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [3359] = {.lex_state = 0, .external_lex_state = 2}, + [3360] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3366] = {.lex_state = 0, .external_lex_state = 4}, + [3367] = {.lex_state = 0, .external_lex_state = 4}, + [3368] = {.lex_state = 0, .external_lex_state = 4}, + [3369] = {.lex_state = 0, .external_lex_state = 4}, + [3370] = {.lex_state = 0, .external_lex_state = 4}, + [3371] = {.lex_state = 0, .external_lex_state = 2}, + [3372] = {.lex_state = 0, .external_lex_state = 2}, + [3373] = {.lex_state = 0, .external_lex_state = 4}, + [3374] = {.lex_state = 0, .external_lex_state = 2}, + [3375] = {.lex_state = 0, .external_lex_state = 4}, + [3376] = {.lex_state = 0, .external_lex_state = 4}, + [3377] = {.lex_state = 0, .external_lex_state = 4}, + [3378] = {.lex_state = 0, .external_lex_state = 2}, + [3379] = {.lex_state = 0, .external_lex_state = 4}, + [3380] = {.lex_state = 0, .external_lex_state = 4}, + [3381] = {.lex_state = 0, .external_lex_state = 4}, + [3382] = {.lex_state = 0, .external_lex_state = 4}, + [3383] = {.lex_state = 0, .external_lex_state = 2}, + [3384] = {.lex_state = 0, .external_lex_state = 2}, + [3385] = {.lex_state = 0, .external_lex_state = 2}, + [3386] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3392] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 0, .external_lex_state = 2}, + [3397] = {.lex_state = 0, .external_lex_state = 4}, + [3398] = {.lex_state = 0, .external_lex_state = 4}, + [3399] = {.lex_state = 0, .external_lex_state = 2}, + [3400] = {.lex_state = 0, .external_lex_state = 2}, + [3401] = {.lex_state = 0, .external_lex_state = 2}, + [3402] = {.lex_state = 0, .external_lex_state = 4}, + [3403] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 4}, + [3413] = {.lex_state = 0, .external_lex_state = 4}, + [3414] = {.lex_state = 0, .external_lex_state = 2}, + [3415] = {.lex_state = 0, .external_lex_state = 4}, + [3416] = {.lex_state = 2, .external_lex_state = 2}, + [3417] = {.lex_state = 0, .external_lex_state = 4}, + [3418] = {.lex_state = 0, .external_lex_state = 4}, + [3419] = {.lex_state = 0, .external_lex_state = 2}, + [3420] = {.lex_state = 0, .external_lex_state = 2}, + [3421] = {.lex_state = 0, .external_lex_state = 2}, + [3422] = {.lex_state = 0, .external_lex_state = 2}, + [3423] = {.lex_state = 0, .external_lex_state = 4}, + [3424] = {.lex_state = 0, .external_lex_state = 2}, + [3425] = {.lex_state = 0, .external_lex_state = 4}, + [3426] = {.lex_state = 0, .external_lex_state = 2}, + [3427] = {.lex_state = 0, .external_lex_state = 4}, + [3428] = {.lex_state = 0, .external_lex_state = 4}, + [3429] = {.lex_state = 0, .external_lex_state = 2}, + [3430] = {.lex_state = 0, .external_lex_state = 2}, + [3431] = {.lex_state = 0, .external_lex_state = 4}, + [3432] = {.lex_state = 0, .external_lex_state = 4}, + [3433] = {.lex_state = 0, .external_lex_state = 2}, + [3434] = {.lex_state = 0, .external_lex_state = 2}, + [3435] = {.lex_state = 0, .external_lex_state = 2}, + [3436] = {.lex_state = 0, .external_lex_state = 4}, + [3437] = {.lex_state = 0, .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 = 4}, + [3442] = {.lex_state = 0, .external_lex_state = 4}, + [3443] = {.lex_state = 0, .external_lex_state = 4}, + [3444] = {.lex_state = 0, .external_lex_state = 2}, + [3445] = {.lex_state = 0, .external_lex_state = 2}, + [3446] = {.lex_state = 0, .external_lex_state = 4}, + [3447] = {.lex_state = 0, .external_lex_state = 2}, + [3448] = {.lex_state = 0, .external_lex_state = 2}, + [3449] = {.lex_state = 0, .external_lex_state = 4}, + [3450] = {.lex_state = 0, .external_lex_state = 2}, + [3451] = {.lex_state = 0, .external_lex_state = 4}, + [3452] = {.lex_state = 0, .external_lex_state = 4}, + [3453] = {.lex_state = 0, .external_lex_state = 2}, + [3454] = {.lex_state = 0, .external_lex_state = 2}, + [3455] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 0, .external_lex_state = 4}, + [3461] = {.lex_state = 0, .external_lex_state = 4}, + [3462] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3467] = {.lex_state = 0, .external_lex_state = 4}, + [3468] = {.lex_state = 0, .external_lex_state = 4}, + [3469] = {.lex_state = 0, .external_lex_state = 4}, + [3470] = {.lex_state = 0, .external_lex_state = 2}, + [3471] = {.lex_state = 0, .external_lex_state = 2}, + [3472] = {.lex_state = 0, .external_lex_state = 4}, + [3473] = {.lex_state = 0, .external_lex_state = 4}, + [3474] = {.lex_state = 0, .external_lex_state = 2}, + [3475] = {.lex_state = 0, .external_lex_state = 2}, + [3476] = {.lex_state = 0, .external_lex_state = 2}, + [3477] = {.lex_state = 0, .external_lex_state = 2}, + [3478] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [3484] = {.lex_state = 0, .external_lex_state = 4}, + [3485] = {.lex_state = 0, .external_lex_state = 2}, + [3486] = {.lex_state = 0, .external_lex_state = 4}, + [3487] = {.lex_state = 0, .external_lex_state = 4}, + [3488] = {.lex_state = 0, .external_lex_state = 2}, + [3489] = {.lex_state = 0, .external_lex_state = 2}, + [3490] = {.lex_state = 0, .external_lex_state = 2}, + [3491] = {.lex_state = 0, .external_lex_state = 2}, + [3492] = {.lex_state = 0, .external_lex_state = 2}, + [3493] = {.lex_state = 0, .external_lex_state = 4}, + [3494] = {.lex_state = 0, .external_lex_state = 4}, + [3495] = {.lex_state = 0, .external_lex_state = 4}, + [3496] = {.lex_state = 0, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9871,11 +10980,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 +11000,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 +11017,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 +11030,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 +11049,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 +11069,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,33927 +11083,37091 @@ 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(3485), + [sym_preprocessor_statement] = STATE(12), + [sym_package_statement] = STATE(12), + [sym_import_statement] = STATE(12), + [sym_using_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym__rhs_expression] = STATE(1073), + [sym__unaryExpression] = STATE(3468), + [sym_runtime_type_check_expression] = STATE(3468), + [sym_switch_expression] = STATE(806), + [sym_cast_expression] = STATE(3468), + [sym_type_trace_expression] = STATE(3468), + [sym__parenthesized_expression] = STATE(2903), + [sym_for_statement] = STATE(12), + [sym_subscript_expression] = STATE(3468), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(12), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(12), + [sym_conditional_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_while_statement] = STATE(12), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1073), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(12), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_module_repeat1] = STATE(12), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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_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), + [sym_preprocessor_statement] = STATE(7), + [sym_package_statement] = STATE(7), + [sym_import_statement] = STATE(7), + [sym_using_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym__rhs_expression] = STATE(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(367), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(7), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(7), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(7), + [sym_conditional_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_while_statement] = STATE(7), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(7), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1896), + [sym_integer] = STATE(1896), + [sym_float] = STATE(1896), + [sym_bool] = STATE(1896), + [sym_string] = STATE(1682), + [sym_null] = STATE(1896), + [sym_array] = STATE(1896), + [sym_map] = STATE(1896), + [sym_object] = STATE(1896), + [sym_pair] = STATE(1406), + [aux_sym_module_repeat1] = STATE(7), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(99), + [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(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), [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_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(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(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(234), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(8), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(8), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(8), + [sym_conditional_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_while_statement] = STATE(8), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(8), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1896), + [sym_integer] = STATE(1896), + [sym_float] = STATE(1896), + [sym_bool] = STATE(1896), + [sym_string] = STATE(1682), + [sym_null] = STATE(1896), + [sym_array] = STATE(1896), + [sym_map] = STATE(1896), + [sym_object] = STATE(1896), + [sym_pair] = STATE(1406), + [aux_sym_module_repeat1] = STATE(8), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(99), + [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(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [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(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(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(473), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(8), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(8), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(8), + [sym_conditional_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_while_statement] = STATE(8), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(8), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_module_repeat1] = STATE(8), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(151), [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_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), + [sym_preprocessor_statement] = STATE(10), + [sym_package_statement] = STATE(10), + [sym_import_statement] = STATE(10), + [sym_using_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym__rhs_expression] = STATE(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(2524), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(10), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(10), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(10), + [sym_conditional_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_while_statement] = STATE(10), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(10), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1896), + [sym_integer] = STATE(1896), + [sym_float] = STATE(1896), + [sym_bool] = STATE(1896), + [sym_string] = STATE(1682), + [sym_null] = STATE(1896), + [sym_array] = STATE(1896), + [sym_map] = STATE(1896), + [sym_object] = STATE(1896), + [sym_pair] = STATE(1395), + [aux_sym_module_repeat1] = STATE(10), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(99), + [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(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), [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(7), + [sym_package_statement] = STATE(7), + [sym_import_statement] = STATE(7), + [sym_using_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym__rhs_expression] = STATE(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(628), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(7), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(7), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(7), + [sym_conditional_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_while_statement] = STATE(7), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(7), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_module_repeat1] = STATE(7), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), [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_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(153), [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(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(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(635), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(13), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(13), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(13), + [sym_conditional_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_while_statement] = STATE(13), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(13), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_module_repeat1] = STATE(13), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(153), [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(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(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(453), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(13), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(13), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(13), + [sym_conditional_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_while_statement] = STATE(13), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(13), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_module_repeat1] = STATE(13), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), [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_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(151), [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(7), + [sym_package_statement] = STATE(7), + [sym_import_statement] = STATE(7), + [sym_using_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym__rhs_expression] = STATE(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(1930), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(7), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(7), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(7), + [sym_conditional_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_while_statement] = STATE(7), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(7), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1896), + [sym_integer] = STATE(1896), + [sym_float] = STATE(1896), + [sym_bool] = STATE(1896), + [sym_string] = STATE(1682), + [sym_null] = STATE(1896), + [sym_array] = STATE(1896), + [sym_map] = STATE(1896), + [sym_object] = STATE(1896), + [sym_pair] = STATE(1395), + [aux_sym_module_repeat1] = STATE(7), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(99), + [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(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(153), [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_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(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(3423), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(13), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(13), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(13), + [sym_conditional_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_while_statement] = STATE(13), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(13), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_module_repeat1] = STATE(13), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), [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_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), [sym__closing_brace_unmarker] = ACTIONS(3), }, [11] = { + [sym_preprocessor_statement] = STATE(10), + [sym_package_statement] = STATE(10), + [sym_import_statement] = STATE(10), + [sym_using_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym__rhs_expression] = STATE(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym__closing_brace] = STATE(3369), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(10), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(10), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(10), + [sym_conditional_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_while_statement] = STATE(10), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(10), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_module_repeat1] = STATE(10), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(115), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [12] = { [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__rhs_expression] = STATE(1073), + [sym__unaryExpression] = STATE(3468), + [sym_runtime_type_check_expression] = STATE(3468), + [sym_switch_expression] = STATE(806), + [sym_cast_expression] = STATE(3468), + [sym_type_trace_expression] = STATE(3468), + [sym__parenthesized_expression] = STATE(2903), + [sym_for_statement] = STATE(14), + [sym_subscript_expression] = STATE(3468), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), [sym_block] = STATE(14), - [sym_metadata] = STATE(1866), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(14), [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_while_statement] = STATE(14), + [sym_do_while_statement] = STATE(14), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1073), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), [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), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), [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__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), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [ts_builtin_sym_end] = ACTIONS(155), [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(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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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_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), - [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_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__closing_brace_unmarker] = ACTIONS(3), - }, - [15] = { [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(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(1107), + [sym__unaryExpression] = STATE(3409), + [sym_runtime_type_check_expression] = STATE(3409), + [sym_switch_expression] = STATE(807), + [sym_cast_expression] = STATE(3409), + [sym_type_trace_expression] = STATE(3409), + [sym__parenthesized_expression] = STATE(2887), + [sym_for_statement] = STATE(13), + [sym_subscript_expression] = STATE(3409), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), [sym_block] = STATE(13), - [sym_metadata] = STATE(1866), + [sym_metadata] = STATE(2184), + [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(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1107), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), [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(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), [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(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(160), + [anon_sym_package] = ACTIONS(163), + [anon_sym_import] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(169), + [anon_sym_using] = ACTIONS(172), + [anon_sym_throw] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(184), + [anon_sym_cast] = ACTIONS(187), + [anon_sym_DOLLARtype] = ACTIONS(190), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(196), + [anon_sym_untyped] = ACTIONS(199), + [anon_sym_break] = ACTIONS(202), + [anon_sym_continue] = ACTIONS(202), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_this] = ACTIONS(208), + [anon_sym_AT] = ACTIONS(211), + [anon_sym_AT_COLON] = ACTIONS(214), + [anon_sym_try] = ACTIONS(217), + [anon_sym_if] = ACTIONS(220), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(226), + [anon_sym_new] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(238), + [anon_sym_PLUS_PLUS] = ACTIONS(241), + [anon_sym_DASH_DASH] = ACTIONS(241), + [anon_sym_PERCENT] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(244), + [anon_sym_PLUS] = ACTIONS(244), + [anon_sym_LT_LT] = ACTIONS(169), + [anon_sym_GT_GT] = ACTIONS(244), + [anon_sym_GT_GT_GT] = ACTIONS(169), + [anon_sym_AMP] = ACTIONS(244), + [anon_sym_PIPE] = ACTIONS(244), + [anon_sym_CARET] = ACTIONS(169), + [anon_sym_AMP_AMP] = ACTIONS(232), + [anon_sym_PIPE_PIPE] = ACTIONS(232), + [anon_sym_EQ_EQ] = ACTIONS(232), + [anon_sym_BANG_EQ] = ACTIONS(232), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(232), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(232), + [anon_sym_EQ_GT] = ACTIONS(232), + [anon_sym_QMARK_QMARK] = ACTIONS(232), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(232), + [anon_sym_null] = ACTIONS(247), + [anon_sym_macro] = ACTIONS(250), + [anon_sym_abstract] = ACTIONS(250), + [anon_sym_static] = ACTIONS(250), + [anon_sym_public] = ACTIONS(250), + [anon_sym_private] = ACTIONS(250), + [anon_sym_extern] = ACTIONS(250), + [anon_sym_inline] = ACTIONS(250), + [anon_sym_overload] = ACTIONS(250), + [anon_sym_override] = ACTIONS(250), + [anon_sym_final] = ACTIONS(253), + [anon_sym_class] = ACTIONS(256), + [anon_sym_interface] = ACTIONS(259), + [anon_sym_enum] = ACTIONS(262), + [anon_sym_typedef] = ACTIONS(265), + [anon_sym_function] = ACTIONS(268), + [anon_sym_var] = ACTIONS(271), + [aux_sym_integer_token1] = ACTIONS(274), + [aux_sym_integer_token2] = ACTIONS(277), + [aux_sym_float_token1] = ACTIONS(280), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_true] = ACTIONS(286), + [anon_sym_false] = ACTIONS(286), + [aux_sym_string_token1] = ACTIONS(289), + [aux_sym_string_token3] = ACTIONS(292), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(295), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [14] = { + [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(1073), + [sym__unaryExpression] = STATE(3468), + [sym_runtime_type_check_expression] = STATE(3468), + [sym_switch_expression] = STATE(806), + [sym_cast_expression] = STATE(3468), + [sym_type_trace_expression] = STATE(3468), + [sym__parenthesized_expression] = STATE(2903), + [sym_for_statement] = STATE(14), + [sym_subscript_expression] = STATE(3468), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(14), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(14), + [sym_conditional_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_while_statement] = STATE(14), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1073), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(14), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_module_repeat1] = STATE(14), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [ts_builtin_sym_end] = ACTIONS(295), + [sym_identifier] = ACTIONS(157), + [anon_sym_POUND] = ACTIONS(297), + [anon_sym_package] = ACTIONS(300), + [anon_sym_import] = ACTIONS(303), + [anon_sym_STAR] = ACTIONS(169), + [anon_sym_using] = ACTIONS(306), + [anon_sym_throw] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_switch] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_cast] = ACTIONS(187), + [anon_sym_DOLLARtype] = ACTIONS(190), + [anon_sym_for] = ACTIONS(318), + [anon_sym_return] = ACTIONS(321), + [anon_sym_untyped] = ACTIONS(324), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_this] = ACTIONS(208), + [anon_sym_AT] = ACTIONS(211), + [anon_sym_AT_COLON] = ACTIONS(214), + [anon_sym_try] = ACTIONS(330), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(336), + [anon_sym_do] = ACTIONS(339), + [anon_sym_new] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(232), + [anon_sym_BANG] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(238), + [anon_sym_PLUS_PLUS] = ACTIONS(241), + [anon_sym_DASH_DASH] = ACTIONS(241), + [anon_sym_PERCENT] = ACTIONS(169), + [anon_sym_SLASH] = ACTIONS(244), + [anon_sym_PLUS] = ACTIONS(244), + [anon_sym_LT_LT] = ACTIONS(169), + [anon_sym_GT_GT] = ACTIONS(244), + [anon_sym_GT_GT_GT] = ACTIONS(169), + [anon_sym_AMP] = ACTIONS(244), + [anon_sym_PIPE] = ACTIONS(244), + [anon_sym_CARET] = ACTIONS(169), + [anon_sym_AMP_AMP] = ACTIONS(232), + [anon_sym_PIPE_PIPE] = ACTIONS(232), + [anon_sym_EQ_EQ] = ACTIONS(232), + [anon_sym_BANG_EQ] = ACTIONS(232), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(232), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(232), + [anon_sym_EQ_GT] = ACTIONS(232), + [anon_sym_QMARK_QMARK] = ACTIONS(232), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(232), + [anon_sym_null] = ACTIONS(247), + [anon_sym_macro] = ACTIONS(342), + [anon_sym_abstract] = ACTIONS(342), + [anon_sym_static] = ACTIONS(342), + [anon_sym_public] = ACTIONS(342), + [anon_sym_private] = ACTIONS(342), + [anon_sym_extern] = ACTIONS(342), + [anon_sym_inline] = ACTIONS(342), + [anon_sym_overload] = ACTIONS(342), + [anon_sym_override] = ACTIONS(342), + [anon_sym_final] = ACTIONS(345), + [anon_sym_class] = ACTIONS(348), + [anon_sym_interface] = ACTIONS(351), + [anon_sym_enum] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(357), + [anon_sym_function] = ACTIONS(360), + [anon_sym_var] = ACTIONS(363), + [aux_sym_integer_token1] = ACTIONS(274), + [aux_sym_integer_token2] = ACTIONS(277), + [aux_sym_float_token1] = ACTIONS(280), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_true] = ACTIONS(286), + [anon_sym_false] = ACTIONS(286), + [aux_sym_string_token1] = ACTIONS(289), + [aux_sym_string_token3] = ACTIONS(292), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [15] = { + [sym_preprocessor_statement] = STATE(646), + [sym_package_statement] = STATE(646), + [sym_import_statement] = STATE(646), + [sym_using_statement] = STATE(646), + [sym_throw_statement] = STATE(646), + [sym__rhs_expression] = STATE(1183), + [sym__unaryExpression] = STATE(3189), + [sym_runtime_type_check_expression] = STATE(3189), + [sym_switch_expression] = STATE(606), + [sym_cast_expression] = STATE(3189), + [sym_type_trace_expression] = STATE(3189), + [sym__parenthesized_expression] = STATE(2942), + [sym_for_statement] = STATE(646), + [sym_subscript_expression] = STATE(3189), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(646), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(646), + [sym_conditional_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_do_while_statement] = STATE(646), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1183), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(646), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), [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(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(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(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(374), + [anon_sym_if] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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_preprocessor_statement] = STATE(667), + [sym_package_statement] = STATE(667), + [sym_import_statement] = STATE(667), + [sym_using_statement] = STATE(667), + [sym_throw_statement] = STATE(667), + [sym__rhs_expression] = STATE(1103), + [sym__unaryExpression] = STATE(3202), + [sym_runtime_type_check_expression] = STATE(3202), + [sym_switch_expression] = STATE(605), + [sym_cast_expression] = STATE(3202), + [sym_type_trace_expression] = STATE(3202), + [sym__parenthesized_expression] = STATE(2897), + [sym_for_statement] = STATE(667), + [sym_subscript_expression] = STATE(3202), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(667), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(667), + [sym_conditional_statement] = STATE(667), + [sym_while_statement] = STATE(667), + [sym_do_while_statement] = STATE(667), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1103), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(667), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), [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(380), + [anon_sym_untyped] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(384), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [17] = { - [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_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_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_preprocessor_statement] = STATE(671), + [sym_package_statement] = STATE(671), + [sym_import_statement] = STATE(671), + [sym_using_statement] = STATE(671), + [sym_throw_statement] = STATE(671), + [sym__rhs_expression] = STATE(1105), + [sym__unaryExpression] = STATE(3473), + [sym_runtime_type_check_expression] = STATE(3473), + [sym_switch_expression] = STATE(611), + [sym_cast_expression] = STATE(3473), + [sym_type_trace_expression] = STATE(3473), + [sym__parenthesized_expression] = STATE(3019), + [sym_for_statement] = STATE(671), + [sym_subscript_expression] = STATE(3473), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(671), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(671), + [sym_conditional_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_do_while_statement] = STATE(671), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1105), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(671), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(386), + [anon_sym_untyped] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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_preprocessor_statement] = STATE(2652), + [sym_package_statement] = STATE(2652), + [sym_import_statement] = STATE(2652), + [sym_using_statement] = STATE(2652), + [sym_throw_statement] = STATE(2652), + [sym__rhs_expression] = STATE(1180), + [sym__unaryExpression] = STATE(3442), + [sym_runtime_type_check_expression] = STATE(3442), + [sym_switch_expression] = STATE(2430), + [sym_cast_expression] = STATE(3442), + [sym_type_trace_expression] = STATE(3442), + [sym__parenthesized_expression] = STATE(3046), + [sym_for_statement] = STATE(2652), + [sym_subscript_expression] = STATE(3442), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2652), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(2652), + [sym_conditional_statement] = STATE(2652), + [sym_while_statement] = STATE(2652), + [sym_do_while_statement] = STATE(2652), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1180), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2652), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_untyped] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(400), + [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(402), + [anon_sym_if] = ACTIONS(404), + [anon_sym_while] = ACTIONS(406), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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_preprocessor_statement] = STATE(2691), + [sym_package_statement] = STATE(2691), + [sym_import_statement] = STATE(2691), + [sym_using_statement] = STATE(2691), + [sym_throw_statement] = STATE(2691), + [sym__rhs_expression] = STATE(1207), + [sym__unaryExpression] = STATE(3302), + [sym_runtime_type_check_expression] = STATE(3302), + [sym_switch_expression] = STATE(2536), + [sym_cast_expression] = STATE(3302), + [sym_type_trace_expression] = STATE(3302), + [sym__parenthesized_expression] = STATE(2939), + [sym_for_statement] = STATE(2691), + [sym_subscript_expression] = STATE(3302), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2691), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(2691), + [sym_conditional_statement] = STATE(2691), + [sym_while_statement] = STATE(2691), + [sym_do_while_statement] = STATE(2691), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1207), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2691), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), [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), + [anon_sym_POUND] = ACTIONS(392), + [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(394), + [anon_sym_return] = ACTIONS(408), + [anon_sym_untyped] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_continue] = ACTIONS(412), + [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(402), + [anon_sym_if] = ACTIONS(404), + [anon_sym_while] = ACTIONS(406), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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_preprocessor_statement] = STATE(771), + [sym_package_statement] = STATE(771), + [sym_import_statement] = STATE(771), + [sym_using_statement] = STATE(771), + [sym_throw_statement] = STATE(771), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3379), + [sym_runtime_type_check_expression] = STATE(3379), + [sym_switch_expression] = STATE(616), + [sym_cast_expression] = STATE(3379), + [sym_type_trace_expression] = STATE(3379), + [sym__parenthesized_expression] = STATE(2983), + [sym_for_statement] = STATE(771), + [sym_subscript_expression] = STATE(3379), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(773), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(771), + [sym_conditional_statement] = STATE(771), + [sym_while_statement] = STATE(771), + [sym_do_while_statement] = STATE(771), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(771), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), [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), + [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(414), + [anon_sym_return] = ACTIONS(416), + [anon_sym_untyped] = ACTIONS(418), + [anon_sym_break] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [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(422), + [anon_sym_if] = ACTIONS(424), + [anon_sym_while] = ACTIONS(426), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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(2840), + [sym_package_statement] = STATE(2840), + [sym_import_statement] = STATE(2840), + [sym_using_statement] = STATE(2840), + [sym_throw_statement] = STATE(2840), + [sym__rhs_expression] = STATE(1268), + [sym__unaryExpression] = STATE(3493), + [sym_runtime_type_check_expression] = STATE(3493), + [sym_switch_expression] = STATE(2623), + [sym_cast_expression] = STATE(3493), + [sym_type_trace_expression] = STATE(3493), + [sym__parenthesized_expression] = STATE(3126), + [sym_for_statement] = STATE(2840), + [sym_subscript_expression] = STATE(3493), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2840), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2840), + [sym_conditional_statement] = STATE(2840), + [sym_while_statement] = STATE(2840), + [sym_do_while_statement] = STATE(2840), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1268), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2840), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(432), + [anon_sym_untyped] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(436), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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_preprocessor_statement] = STATE(2679), + [sym_package_statement] = STATE(2679), + [sym_import_statement] = STATE(2679), + [sym_using_statement] = STATE(2679), + [sym_throw_statement] = STATE(2679), + [sym__rhs_expression] = STATE(1225), + [sym__unaryExpression] = STATE(3345), + [sym_runtime_type_check_expression] = STATE(3345), + [sym_switch_expression] = STATE(2525), + [sym_cast_expression] = STATE(3345), + [sym_type_trace_expression] = STATE(3345), + [sym__parenthesized_expression] = STATE(2917), + [sym_for_statement] = STATE(2679), + [sym_subscript_expression] = STATE(3345), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2679), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2679), + [sym_conditional_statement] = STATE(2679), + [sym_while_statement] = STATE(2679), + [sym_do_while_statement] = STATE(2679), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1225), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2679), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(444), + [anon_sym_untyped] = ACTIONS(446), + [anon_sym_break] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(448), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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_preprocessor_statement] = STATE(650), + [sym_package_statement] = STATE(650), + [sym_import_statement] = STATE(650), + [sym_using_statement] = STATE(650), + [sym_throw_statement] = STATE(650), + [sym__rhs_expression] = STATE(1113), + [sym__unaryExpression] = STATE(3418), + [sym_runtime_type_check_expression] = STATE(3418), + [sym_switch_expression] = STATE(589), + [sym_cast_expression] = STATE(3418), + [sym_type_trace_expression] = STATE(3418), + [sym__parenthesized_expression] = STATE(3084), + [sym_for_statement] = STATE(650), + [sym_subscript_expression] = STATE(3418), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(650), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(650), + [sym_conditional_statement] = STATE(650), + [sym_while_statement] = STATE(650), + [sym_do_while_statement] = STATE(650), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1113), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(650), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(450), + [anon_sym_return] = ACTIONS(452), + [anon_sym_untyped] = ACTIONS(454), + [anon_sym_break] = ACTIONS(456), + [anon_sym_continue] = ACTIONS(456), + [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(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(462), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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(454), + [sym_package_statement] = STATE(454), + [sym_import_statement] = STATE(454), + [sym_using_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym__rhs_expression] = STATE(1114), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(364), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(3092), + [sym_for_statement] = STATE(454), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(454), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(454), + [sym_conditional_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_while_statement] = STATE(454), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1114), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(454), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(115), + [anon_sym_return] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(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(1266), + [sym__unaryExpression] = STATE(3484), + [sym_runtime_type_check_expression] = STATE(3484), + [sym_switch_expression] = STATE(2632), + [sym_cast_expression] = STATE(3484), + [sym_type_trace_expression] = STATE(3484), + [sym__parenthesized_expression] = STATE(3121), + [sym_for_statement] = STATE(2850), + [sym_subscript_expression] = STATE(3484), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2850), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2850), + [sym_conditional_statement] = STATE(2850), + [sym_while_statement] = STATE(2850), + [sym_do_while_statement] = STATE(2850), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1266), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2850), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(470), + [anon_sym_untyped] = ACTIONS(472), + [anon_sym_break] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(474), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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(488), + [sym_package_statement] = STATE(488), + [sym_import_statement] = STATE(488), + [sym_using_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym__rhs_expression] = STATE(1122), + [sym__unaryExpression] = STATE(3321), + [sym_runtime_type_check_expression] = STATE(3321), + [sym_switch_expression] = STATE(371), + [sym_cast_expression] = STATE(3321), + [sym_type_trace_expression] = STATE(3321), + [sym__parenthesized_expression] = STATE(2880), + [sym_for_statement] = STATE(488), + [sym_subscript_expression] = STATE(3321), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(488), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(488), + [sym_conditional_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_while_statement] = STATE(488), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1122), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(488), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(115), + [anon_sym_return] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(492), + [sym_package_statement] = STATE(492), + [sym_import_statement] = STATE(492), + [sym_using_statement] = STATE(492), + [sym_throw_statement] = STATE(492), + [sym__rhs_expression] = STATE(1123), + [sym__unaryExpression] = STATE(3393), + [sym_runtime_type_check_expression] = STATE(3393), + [sym_switch_expression] = STATE(373), + [sym_cast_expression] = STATE(3393), + [sym_type_trace_expression] = STATE(3393), + [sym__parenthesized_expression] = STATE(2885), + [sym_for_statement] = STATE(492), + [sym_subscript_expression] = STATE(3393), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(492), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(492), + [sym_conditional_statement] = STATE(492), + [sym_while_statement] = STATE(492), + [sym_do_while_statement] = STATE(492), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1123), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(492), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(115), + [anon_sym_return] = ACTIONS(482), + [anon_sym_untyped] = ACTIONS(484), + [anon_sym_break] = ACTIONS(486), + [anon_sym_continue] = ACTIONS(486), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(552), + [sym_package_statement] = STATE(552), + [sym_import_statement] = STATE(552), + [sym_using_statement] = STATE(552), + [sym_throw_statement] = STATE(552), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3180), + [sym_runtime_type_check_expression] = STATE(3180), + [sym_switch_expression] = STATE(380), + [sym_cast_expression] = STATE(3180), + [sym_type_trace_expression] = STATE(3180), + [sym__parenthesized_expression] = STATE(2876), + [sym_for_statement] = STATE(552), + [sym_subscript_expression] = STATE(3180), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(554), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(552), + [sym_conditional_statement] = STATE(552), + [sym_while_statement] = STATE(552), + [sym_do_while_statement] = STATE(552), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(552), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(488), + [anon_sym_return] = ACTIONS(490), + [anon_sym_untyped] = ACTIONS(492), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [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(496), + [anon_sym_if] = ACTIONS(498), + [anon_sym_while] = ACTIONS(500), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(648), + [sym_package_statement] = STATE(648), + [sym_import_statement] = STATE(648), + [sym_using_statement] = STATE(648), + [sym_throw_statement] = STATE(648), + [sym__rhs_expression] = STATE(1068), + [sym__unaryExpression] = STATE(3428), + [sym_runtime_type_check_expression] = STATE(3428), + [sym_switch_expression] = STATE(593), + [sym_cast_expression] = STATE(3428), + [sym_type_trace_expression] = STATE(3428), + [sym__parenthesized_expression] = STATE(3020), + [sym_for_statement] = STATE(648), + [sym_subscript_expression] = STATE(3428), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(648), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(648), + [sym_conditional_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_do_while_statement] = STATE(648), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1068), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(648), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(502), + [anon_sym_untyped] = ACTIONS(504), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(595), + [sym_package_statement] = STATE(595), + [sym_import_statement] = STATE(595), + [sym_using_statement] = STATE(595), + [sym_throw_statement] = STATE(595), + [sym__rhs_expression] = STATE(1185), + [sym__unaryExpression] = STATE(3276), + [sym_runtime_type_check_expression] = STATE(3276), + [sym_switch_expression] = STATE(446), + [sym_cast_expression] = STATE(3276), + [sym_type_trace_expression] = STATE(3276), + [sym__parenthesized_expression] = STATE(3003), + [sym_for_statement] = STATE(595), + [sym_subscript_expression] = STATE(3276), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(595), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(595), + [sym_conditional_statement] = STATE(595), + [sym_while_statement] = STATE(595), + [sym_do_while_statement] = STATE(595), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1185), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(595), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(366), + [anon_sym_return] = ACTIONS(508), + [anon_sym_untyped] = ACTIONS(510), + [anon_sym_break] = ACTIONS(512), + [anon_sym_continue] = ACTIONS(512), + [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(374), + [anon_sym_if] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), - [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_preprocessor_statement] = STATE(365), + [sym_package_statement] = STATE(365), + [sym_import_statement] = STATE(365), + [sym_using_statement] = STATE(365), + [sym_throw_statement] = STATE(365), + [sym__rhs_expression] = STATE(1193), + [sym__unaryExpression] = STATE(3179), + [sym_runtime_type_check_expression] = STATE(3179), + [sym_switch_expression] = STATE(361), + [sym_cast_expression] = STATE(3179), + [sym_type_trace_expression] = STATE(3179), + [sym__parenthesized_expression] = STATE(3102), + [sym_for_statement] = STATE(365), + [sym_subscript_expression] = STATE(3179), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(365), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(365), + [sym_conditional_statement] = STATE(365), + [sym_while_statement] = STATE(365), + [sym_do_while_statement] = STATE(365), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1193), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(365), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(450), + [anon_sym_return] = ACTIONS(514), + [anon_sym_untyped] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [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(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(462), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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), + [sym_preprocessor_statement] = STATE(2764), + [sym_package_statement] = STATE(2764), + [sym_import_statement] = STATE(2764), + [sym_using_statement] = STATE(2764), + [sym_throw_statement] = STATE(2764), + [sym__rhs_expression] = STATE(1202), + [sym__unaryExpression] = STATE(3207), + [sym_runtime_type_check_expression] = STATE(3207), + [sym_switch_expression] = STATE(2455), + [sym_cast_expression] = STATE(3207), + [sym_type_trace_expression] = STATE(3207), + [sym__parenthesized_expression] = STATE(3079), + [sym_for_statement] = STATE(2764), + [sym_subscript_expression] = STATE(3207), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2764), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2764), + [sym_conditional_statement] = STATE(2764), + [sym_while_statement] = STATE(2764), + [sym_do_while_statement] = STATE(2764), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1202), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2764), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(520), + [anon_sym_untyped] = ACTIONS(522), [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), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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(2763), + [sym_package_statement] = STATE(2763), + [sym_import_statement] = STATE(2763), + [sym_using_statement] = STATE(2763), + [sym_throw_statement] = STATE(2763), + [sym__rhs_expression] = STATE(1241), + [sym__unaryExpression] = STATE(3290), + [sym_runtime_type_check_expression] = STATE(3290), + [sym_switch_expression] = STATE(2569), + [sym_cast_expression] = STATE(3290), + [sym_type_trace_expression] = STATE(3290), + [sym__parenthesized_expression] = STATE(3011), + [sym_for_statement] = STATE(2763), + [sym_subscript_expression] = STATE(3290), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2763), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2763), + [sym_conditional_statement] = STATE(2763), + [sym_while_statement] = STATE(2763), + [sym_do_while_statement] = STATE(2763), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1241), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2763), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(526), + [anon_sym_return] = ACTIONS(528), + [anon_sym_untyped] = ACTIONS(530), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [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(534), + [anon_sym_if] = ACTIONS(536), + [anon_sym_while] = ACTIONS(538), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(648), + [sym_package_statement] = STATE(648), + [sym_import_statement] = STATE(648), + [sym_using_statement] = STATE(648), + [sym_throw_statement] = STATE(648), + [sym__rhs_expression] = STATE(1068), + [sym__unaryExpression] = STATE(3428), + [sym_runtime_type_check_expression] = STATE(3428), + [sym_switch_expression] = STATE(593), + [sym_cast_expression] = STATE(3428), + [sym_type_trace_expression] = STATE(3428), + [sym__parenthesized_expression] = STATE(3020), + [sym_for_statement] = STATE(648), + [sym_subscript_expression] = STATE(3428), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(648), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(648), + [sym_conditional_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_do_while_statement] = STATE(648), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1068), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(648), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(502), + [anon_sym_untyped] = ACTIONS(504), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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(667), + [sym_package_statement] = STATE(667), + [sym_import_statement] = STATE(667), + [sym_using_statement] = STATE(667), + [sym_throw_statement] = STATE(667), + [sym__rhs_expression] = STATE(1103), + [sym__unaryExpression] = STATE(3202), + [sym_runtime_type_check_expression] = STATE(3202), + [sym_switch_expression] = STATE(605), + [sym_cast_expression] = STATE(3202), + [sym_type_trace_expression] = STATE(3202), + [sym__parenthesized_expression] = STATE(2897), + [sym_for_statement] = STATE(667), + [sym_subscript_expression] = STATE(3202), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(667), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(667), + [sym_conditional_statement] = STATE(667), + [sym_while_statement] = STATE(667), + [sym_do_while_statement] = STATE(667), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1103), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(667), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(380), + [anon_sym_untyped] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(384), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(671), + [sym_package_statement] = STATE(671), + [sym_import_statement] = STATE(671), + [sym_using_statement] = STATE(671), + [sym_throw_statement] = STATE(671), + [sym__rhs_expression] = STATE(1105), + [sym__unaryExpression] = STATE(3473), + [sym_runtime_type_check_expression] = STATE(3473), + [sym_switch_expression] = STATE(611), + [sym_cast_expression] = STATE(3473), + [sym_type_trace_expression] = STATE(3473), + [sym__parenthesized_expression] = STATE(3019), + [sym_for_statement] = STATE(671), + [sym_subscript_expression] = STATE(3473), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(671), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(671), + [sym_conditional_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_do_while_statement] = STATE(671), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1105), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(671), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(386), + [anon_sym_untyped] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(771), + [sym_package_statement] = STATE(771), + [sym_import_statement] = STATE(771), + [sym_using_statement] = STATE(771), + [sym_throw_statement] = STATE(771), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3379), + [sym_runtime_type_check_expression] = STATE(3379), + [sym_switch_expression] = STATE(616), + [sym_cast_expression] = STATE(3379), + [sym_type_trace_expression] = STATE(3379), + [sym__parenthesized_expression] = STATE(2983), + [sym_for_statement] = STATE(771), + [sym_subscript_expression] = STATE(3379), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(773), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(771), + [sym_conditional_statement] = STATE(771), + [sym_while_statement] = STATE(771), + [sym_do_while_statement] = STATE(771), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(771), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(416), + [anon_sym_untyped] = ACTIONS(418), + [anon_sym_break] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(2376), + [sym_package_statement] = STATE(2376), + [sym_import_statement] = STATE(2376), + [sym_using_statement] = STATE(2376), + [sym_throw_statement] = STATE(2376), + [sym__rhs_expression] = STATE(1235), + [sym__unaryExpression] = STATE(3194), + [sym_runtime_type_check_expression] = STATE(3194), + [sym_switch_expression] = STATE(2305), + [sym_cast_expression] = STATE(3194), + [sym_type_trace_expression] = STATE(3194), + [sym__parenthesized_expression] = STATE(2959), + [sym_for_statement] = STATE(2376), + [sym_subscript_expression] = STATE(3194), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2376), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(2376), + [sym_conditional_statement] = STATE(2376), + [sym_while_statement] = STATE(2376), + [sym_do_while_statement] = STATE(2376), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1235), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2376), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(540), + [anon_sym_return] = ACTIONS(542), + [anon_sym_untyped] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [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(548), + [anon_sym_if] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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(454), + [sym_package_statement] = STATE(454), + [sym_import_statement] = STATE(454), + [sym_using_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym__rhs_expression] = STATE(1114), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(364), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(3092), + [sym_for_statement] = STATE(454), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(454), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(454), + [sym_conditional_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_while_statement] = STATE(454), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1114), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(454), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(394), + [anon_sym_return] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [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(402), + [anon_sym_if] = ACTIONS(404), + [anon_sym_while] = ACTIONS(406), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(488), + [sym_package_statement] = STATE(488), + [sym_import_statement] = STATE(488), + [sym_using_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym__rhs_expression] = STATE(1122), + [sym__unaryExpression] = STATE(3321), + [sym_runtime_type_check_expression] = STATE(3321), + [sym_switch_expression] = STATE(371), + [sym_cast_expression] = STATE(3321), + [sym_type_trace_expression] = STATE(3321), + [sym__parenthesized_expression] = STATE(2880), + [sym_for_statement] = STATE(488), + [sym_subscript_expression] = STATE(3321), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(488), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(488), + [sym_conditional_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_while_statement] = STATE(488), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1122), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(488), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(394), + [anon_sym_return] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [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(402), + [anon_sym_if] = ACTIONS(404), + [anon_sym_while] = ACTIONS(406), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(492), + [sym_package_statement] = STATE(492), + [sym_import_statement] = STATE(492), + [sym_using_statement] = STATE(492), + [sym_throw_statement] = STATE(492), + [sym__rhs_expression] = STATE(1123), + [sym__unaryExpression] = STATE(3393), + [sym_runtime_type_check_expression] = STATE(3393), + [sym_switch_expression] = STATE(373), + [sym_cast_expression] = STATE(3393), + [sym_type_trace_expression] = STATE(3393), + [sym__parenthesized_expression] = STATE(2885), + [sym_for_statement] = STATE(492), + [sym_subscript_expression] = STATE(3393), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(492), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(492), + [sym_conditional_statement] = STATE(492), + [sym_while_statement] = STATE(492), + [sym_do_while_statement] = STATE(492), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1123), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(492), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(394), + [anon_sym_return] = ACTIONS(482), + [anon_sym_untyped] = ACTIONS(484), + [anon_sym_break] = ACTIONS(486), + [anon_sym_continue] = ACTIONS(486), + [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(402), + [anon_sym_if] = ACTIONS(404), + [anon_sym_while] = ACTIONS(406), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(552), + [sym_package_statement] = STATE(552), + [sym_import_statement] = STATE(552), + [sym_using_statement] = STATE(552), + [sym_throw_statement] = STATE(552), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3180), + [sym_runtime_type_check_expression] = STATE(3180), + [sym_switch_expression] = STATE(380), + [sym_cast_expression] = STATE(3180), + [sym_type_trace_expression] = STATE(3180), + [sym__parenthesized_expression] = STATE(2876), + [sym_for_statement] = STATE(552), + [sym_subscript_expression] = STATE(3180), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(554), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(552), + [sym_conditional_statement] = STATE(552), + [sym_while_statement] = STATE(552), + [sym_do_while_statement] = STATE(552), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(552), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(554), + [anon_sym_return] = ACTIONS(490), + [anon_sym_untyped] = ACTIONS(492), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [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(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_while] = ACTIONS(560), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [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(595), + [sym_package_statement] = STATE(595), + [sym_import_statement] = STATE(595), + [sym_using_statement] = STATE(595), + [sym_throw_statement] = STATE(595), + [sym__rhs_expression] = STATE(1185), + [sym__unaryExpression] = STATE(3276), + [sym_runtime_type_check_expression] = STATE(3276), + [sym_switch_expression] = STATE(446), + [sym_cast_expression] = STATE(3276), + [sym_type_trace_expression] = STATE(3276), + [sym__parenthesized_expression] = STATE(3003), + [sym_for_statement] = STATE(595), + [sym_subscript_expression] = STATE(3276), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(595), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(595), + [sym_conditional_statement] = STATE(595), + [sym_while_statement] = STATE(595), + [sym_do_while_statement] = STATE(595), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1185), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(595), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(526), + [anon_sym_return] = ACTIONS(508), + [anon_sym_untyped] = ACTIONS(510), + [anon_sym_break] = ACTIONS(512), + [anon_sym_continue] = ACTIONS(512), + [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(534), + [anon_sym_if] = ACTIONS(536), + [anon_sym_while] = ACTIONS(538), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(365), + [sym_package_statement] = STATE(365), + [sym_import_statement] = STATE(365), + [sym_using_statement] = STATE(365), + [sym_throw_statement] = STATE(365), + [sym__rhs_expression] = STATE(1193), + [sym__unaryExpression] = STATE(3179), + [sym_runtime_type_check_expression] = STATE(3179), + [sym_switch_expression] = STATE(361), + [sym_cast_expression] = STATE(3179), + [sym_type_trace_expression] = STATE(3179), + [sym__parenthesized_expression] = STATE(3102), + [sym_for_statement] = STATE(365), + [sym_subscript_expression] = STATE(3179), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(365), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(365), + [sym_conditional_statement] = STATE(365), + [sym_while_statement] = STATE(365), + [sym_do_while_statement] = STATE(365), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1193), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(365), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(540), + [anon_sym_return] = ACTIONS(514), + [anon_sym_untyped] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [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(548), + [anon_sym_if] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(2783), + [sym_package_statement] = STATE(2783), + [sym_import_statement] = STATE(2783), + [sym_using_statement] = STATE(2783), + [sym_throw_statement] = STATE(2783), + [sym__rhs_expression] = STATE(1216), + [sym__unaryExpression] = STATE(3441), + [sym_runtime_type_check_expression] = STATE(3441), + [sym_switch_expression] = STATE(2580), + [sym_cast_expression] = STATE(3441), + [sym_type_trace_expression] = STATE(3441), + [sym__parenthesized_expression] = STATE(3008), + [sym_for_statement] = STATE(2783), + [sym_subscript_expression] = STATE(3441), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2783), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2783), + [sym_conditional_statement] = STATE(2783), + [sym_while_statement] = STATE(2783), + [sym_do_while_statement] = STATE(2783), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1216), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2783), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(562), + [anon_sym_untyped] = ACTIONS(564), + [anon_sym_break] = ACTIONS(566), + [anon_sym_continue] = ACTIONS(566), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(592), + [sym_package_statement] = STATE(592), + [sym_import_statement] = STATE(592), + [sym_using_statement] = STATE(592), + [sym_throw_statement] = STATE(592), + [sym__rhs_expression] = STATE(1246), + [sym__unaryExpression] = STATE(3316), + [sym_runtime_type_check_expression] = STATE(3316), + [sym_switch_expression] = STATE(570), + [sym_cast_expression] = STATE(3316), + [sym_type_trace_expression] = STATE(3316), + [sym__parenthesized_expression] = STATE(3026), + [sym_for_statement] = STATE(592), + [sym_subscript_expression] = STATE(3316), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(592), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(592), + [sym_conditional_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_do_while_statement] = STATE(592), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1246), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(592), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_untyped] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [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(576), + [anon_sym_if] = ACTIONS(578), + [anon_sym_while] = ACTIONS(580), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(648), + [sym_package_statement] = STATE(648), + [sym_import_statement] = STATE(648), + [sym_using_statement] = STATE(648), + [sym_throw_statement] = STATE(648), + [sym__rhs_expression] = STATE(1068), + [sym__unaryExpression] = STATE(3428), + [sym_runtime_type_check_expression] = STATE(3428), + [sym_switch_expression] = STATE(593), + [sym_cast_expression] = STATE(3428), + [sym_type_trace_expression] = STATE(3428), + [sym__parenthesized_expression] = STATE(3020), + [sym_for_statement] = STATE(648), + [sym_subscript_expression] = STATE(3428), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(648), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(648), + [sym_conditional_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_do_while_statement] = STATE(648), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1068), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(648), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(366), + [anon_sym_return] = ACTIONS(502), + [anon_sym_untyped] = ACTIONS(504), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [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(374), + [anon_sym_if] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(667), + [sym_package_statement] = STATE(667), + [sym_import_statement] = STATE(667), + [sym_using_statement] = STATE(667), + [sym_throw_statement] = STATE(667), + [sym__rhs_expression] = STATE(1103), + [sym__unaryExpression] = STATE(3202), + [sym_runtime_type_check_expression] = STATE(3202), + [sym_switch_expression] = STATE(605), + [sym_cast_expression] = STATE(3202), + [sym_type_trace_expression] = STATE(3202), + [sym__parenthesized_expression] = STATE(2897), + [sym_for_statement] = STATE(667), + [sym_subscript_expression] = STATE(3202), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(667), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(667), + [sym_conditional_statement] = STATE(667), + [sym_while_statement] = STATE(667), + [sym_do_while_statement] = STATE(667), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1103), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(667), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(366), + [anon_sym_return] = ACTIONS(380), + [anon_sym_untyped] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(384), + [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(374), + [anon_sym_if] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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(771), + [sym_package_statement] = STATE(771), + [sym_import_statement] = STATE(771), + [sym_using_statement] = STATE(771), + [sym_throw_statement] = STATE(771), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3379), + [sym_runtime_type_check_expression] = STATE(3379), + [sym_switch_expression] = STATE(616), + [sym_cast_expression] = STATE(3379), + [sym_type_trace_expression] = STATE(3379), + [sym__parenthesized_expression] = STATE(2983), + [sym_for_statement] = STATE(771), + [sym_subscript_expression] = STATE(3379), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(773), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(771), + [sym_conditional_statement] = STATE(771), + [sym_while_statement] = STATE(771), + [sym_do_while_statement] = STATE(771), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(771), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(568), + [anon_sym_return] = ACTIONS(416), + [anon_sym_untyped] = ACTIONS(418), + [anon_sym_break] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [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(576), + [anon_sym_if] = ACTIONS(578), + [anon_sym_while] = ACTIONS(580), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(2292), + [sym_package_statement] = STATE(2292), + [sym_import_statement] = STATE(2292), + [sym_using_statement] = STATE(2292), + [sym_throw_statement] = STATE(2292), + [sym__rhs_expression] = STATE(1239), + [sym__unaryExpression] = STATE(3249), + [sym_runtime_type_check_expression] = STATE(3249), + [sym_switch_expression] = STATE(2270), + [sym_cast_expression] = STATE(3249), + [sym_type_trace_expression] = STATE(3249), + [sym__parenthesized_expression] = STATE(2991), + [sym_for_statement] = STATE(2292), + [sym_subscript_expression] = STATE(3249), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2292), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(2292), + [sym_conditional_statement] = STATE(2292), + [sym_while_statement] = STATE(2292), + [sym_do_while_statement] = STATE(2292), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1239), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2292), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(582), + [anon_sym_return] = ACTIONS(584), + [anon_sym_untyped] = ACTIONS(586), + [anon_sym_break] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [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(590), + [anon_sym_if] = ACTIONS(592), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(454), + [sym_package_statement] = STATE(454), + [sym_import_statement] = STATE(454), + [sym_using_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym__rhs_expression] = STATE(1114), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(364), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(3092), + [sym_for_statement] = STATE(454), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(454), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(454), + [sym_conditional_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_while_statement] = STATE(454), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1114), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(454), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(554), + [anon_sym_return] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [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(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_while] = ACTIONS(560), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(488), + [sym_package_statement] = STATE(488), + [sym_import_statement] = STATE(488), + [sym_using_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym__rhs_expression] = STATE(1122), + [sym__unaryExpression] = STATE(3321), + [sym_runtime_type_check_expression] = STATE(3321), + [sym_switch_expression] = STATE(371), + [sym_cast_expression] = STATE(3321), + [sym_type_trace_expression] = STATE(3321), + [sym__parenthesized_expression] = STATE(2880), + [sym_for_statement] = STATE(488), + [sym_subscript_expression] = STATE(3321), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(488), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(488), + [sym_conditional_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_while_statement] = STATE(488), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1122), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(488), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(554), + [anon_sym_return] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [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(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_while] = ACTIONS(560), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(492), + [sym_package_statement] = STATE(492), + [sym_import_statement] = STATE(492), + [sym_using_statement] = STATE(492), + [sym_throw_statement] = STATE(492), + [sym__rhs_expression] = STATE(1123), + [sym__unaryExpression] = STATE(3393), + [sym_runtime_type_check_expression] = STATE(3393), + [sym_switch_expression] = STATE(373), + [sym_cast_expression] = STATE(3393), + [sym_type_trace_expression] = STATE(3393), + [sym__parenthesized_expression] = STATE(2885), + [sym_for_statement] = STATE(492), + [sym_subscript_expression] = STATE(3393), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(492), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(492), + [sym_conditional_statement] = STATE(492), + [sym_while_statement] = STATE(492), + [sym_do_while_statement] = STATE(492), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1123), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(492), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(554), + [anon_sym_return] = ACTIONS(482), + [anon_sym_untyped] = ACTIONS(484), + [anon_sym_break] = ACTIONS(486), + [anon_sym_continue] = ACTIONS(486), + [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(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_while] = ACTIONS(560), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(595), + [sym_package_statement] = STATE(595), + [sym_import_statement] = STATE(595), + [sym_using_statement] = STATE(595), + [sym_throw_statement] = STATE(595), + [sym__rhs_expression] = STATE(1185), + [sym__unaryExpression] = STATE(3276), + [sym_runtime_type_check_expression] = STATE(3276), + [sym_switch_expression] = STATE(446), + [sym_cast_expression] = STATE(3276), + [sym_type_trace_expression] = STATE(3276), + [sym__parenthesized_expression] = STATE(3003), + [sym_for_statement] = STATE(595), + [sym_subscript_expression] = STATE(3276), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(595), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(595), + [sym_conditional_statement] = STATE(595), + [sym_while_statement] = STATE(595), + [sym_do_while_statement] = STATE(595), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1185), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(595), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(568), + [anon_sym_return] = ACTIONS(508), + [anon_sym_untyped] = ACTIONS(510), + [anon_sym_break] = ACTIONS(512), + [anon_sym_continue] = ACTIONS(512), + [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(576), + [anon_sym_if] = ACTIONS(578), + [anon_sym_while] = ACTIONS(580), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(2844), + [sym_package_statement] = STATE(2844), + [sym_import_statement] = STATE(2844), + [sym_using_statement] = STATE(2844), + [sym_throw_statement] = STATE(2844), + [sym__rhs_expression] = STATE(1263), + [sym__unaryExpression] = STATE(3469), + [sym_runtime_type_check_expression] = STATE(3469), + [sym_switch_expression] = STATE(2628), + [sym_cast_expression] = STATE(3469), + [sym_type_trace_expression] = STATE(3469), + [sym__parenthesized_expression] = STATE(3112), + [sym_for_statement] = STATE(2844), + [sym_subscript_expression] = STATE(3469), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2844), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2844), + [sym_conditional_statement] = STATE(2844), + [sym_while_statement] = STATE(2844), + [sym_do_while_statement] = STATE(2844), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1263), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2844), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(596), + [anon_sym_untyped] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(2839), + [sym_package_statement] = STATE(2839), + [sym_import_statement] = STATE(2839), + [sym_using_statement] = STATE(2839), + [sym_throw_statement] = STATE(2839), + [sym__rhs_expression] = STATE(1222), + [sym__unaryExpression] = STATE(3205), + [sym_runtime_type_check_expression] = STATE(3205), + [sym_switch_expression] = STATE(2622), + [sym_cast_expression] = STATE(3205), + [sym_type_trace_expression] = STATE(3205), + [sym__parenthesized_expression] = STATE(3069), + [sym_for_statement] = STATE(2839), + [sym_subscript_expression] = STATE(3205), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2839), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2839), + [sym_conditional_statement] = STATE(2839), + [sym_while_statement] = STATE(2839), + [sym_do_while_statement] = STATE(2839), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1222), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2839), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(602), + [anon_sym_untyped] = ACTIONS(604), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(648), + [sym_package_statement] = STATE(648), + [sym_import_statement] = STATE(648), + [sym_using_statement] = STATE(648), + [sym_throw_statement] = STATE(648), + [sym__rhs_expression] = STATE(1068), + [sym__unaryExpression] = STATE(3428), + [sym_runtime_type_check_expression] = STATE(3428), + [sym_switch_expression] = STATE(593), + [sym_cast_expression] = STATE(3428), + [sym_type_trace_expression] = STATE(3428), + [sym__parenthesized_expression] = STATE(3020), + [sym_for_statement] = STATE(648), + [sym_subscript_expression] = STATE(3428), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(648), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(648), + [sym_conditional_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_do_while_statement] = STATE(648), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1068), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(648), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(526), + [anon_sym_return] = ACTIONS(502), + [anon_sym_untyped] = ACTIONS(504), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [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(534), + [anon_sym_if] = ACTIONS(536), + [anon_sym_while] = ACTIONS(538), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(667), + [sym_package_statement] = STATE(667), + [sym_import_statement] = STATE(667), + [sym_using_statement] = STATE(667), + [sym_throw_statement] = STATE(667), + [sym__rhs_expression] = STATE(1103), + [sym__unaryExpression] = STATE(3202), + [sym_runtime_type_check_expression] = STATE(3202), + [sym_switch_expression] = STATE(605), + [sym_cast_expression] = STATE(3202), + [sym_type_trace_expression] = STATE(3202), + [sym__parenthesized_expression] = STATE(2897), + [sym_for_statement] = STATE(667), + [sym_subscript_expression] = STATE(3202), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(667), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(667), + [sym_conditional_statement] = STATE(667), + [sym_while_statement] = STATE(667), + [sym_do_while_statement] = STATE(667), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1103), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(667), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(526), + [anon_sym_return] = ACTIONS(380), + [anon_sym_untyped] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(384), + [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(534), + [anon_sym_if] = ACTIONS(536), + [anon_sym_while] = ACTIONS(538), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(771), + [sym_package_statement] = STATE(771), + [sym_import_statement] = STATE(771), + [sym_using_statement] = STATE(771), + [sym_throw_statement] = STATE(771), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3379), + [sym_runtime_type_check_expression] = STATE(3379), + [sym_switch_expression] = STATE(616), + [sym_cast_expression] = STATE(3379), + [sym_type_trace_expression] = STATE(3379), + [sym__parenthesized_expression] = STATE(2983), + [sym_for_statement] = STATE(771), + [sym_subscript_expression] = STATE(3379), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(773), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(771), + [sym_conditional_statement] = STATE(771), + [sym_while_statement] = STATE(771), + [sym_do_while_statement] = STATE(771), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(771), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(526), + [anon_sym_return] = ACTIONS(416), + [anon_sym_untyped] = ACTIONS(418), + [anon_sym_break] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [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(534), + [anon_sym_if] = ACTIONS(536), + [anon_sym_while] = ACTIONS(538), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(648), + [sym_package_statement] = STATE(648), + [sym_import_statement] = STATE(648), + [sym_using_statement] = STATE(648), + [sym_throw_statement] = STATE(648), + [sym__rhs_expression] = STATE(1068), + [sym__unaryExpression] = STATE(3428), + [sym_runtime_type_check_expression] = STATE(3428), + [sym_switch_expression] = STATE(593), + [sym_cast_expression] = STATE(3428), + [sym_type_trace_expression] = STATE(3428), + [sym__parenthesized_expression] = STATE(3020), + [sym_for_statement] = STATE(648), + [sym_subscript_expression] = STATE(3428), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(648), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(648), + [sym_conditional_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_do_while_statement] = STATE(648), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1068), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(648), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(414), + [anon_sym_return] = ACTIONS(502), + [anon_sym_untyped] = ACTIONS(504), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [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(422), + [anon_sym_if] = ACTIONS(424), + [anon_sym_while] = ACTIONS(426), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(667), + [sym_package_statement] = STATE(667), + [sym_import_statement] = STATE(667), + [sym_using_statement] = STATE(667), + [sym_throw_statement] = STATE(667), + [sym__rhs_expression] = STATE(1103), + [sym__unaryExpression] = STATE(3202), + [sym_runtime_type_check_expression] = STATE(3202), + [sym_switch_expression] = STATE(605), + [sym_cast_expression] = STATE(3202), + [sym_type_trace_expression] = STATE(3202), + [sym__parenthesized_expression] = STATE(2897), + [sym_for_statement] = STATE(667), + [sym_subscript_expression] = STATE(3202), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(667), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(667), + [sym_conditional_statement] = STATE(667), + [sym_while_statement] = STATE(667), + [sym_do_while_statement] = STATE(667), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1103), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(667), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(414), + [anon_sym_return] = ACTIONS(380), + [anon_sym_untyped] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(384), + [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(422), + [anon_sym_if] = ACTIONS(424), + [anon_sym_while] = ACTIONS(426), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(671), + [sym_package_statement] = STATE(671), + [sym_import_statement] = STATE(671), + [sym_using_statement] = STATE(671), + [sym_throw_statement] = STATE(671), + [sym__rhs_expression] = STATE(1105), + [sym__unaryExpression] = STATE(3473), + [sym_runtime_type_check_expression] = STATE(3473), + [sym_switch_expression] = STATE(611), + [sym_cast_expression] = STATE(3473), + [sym_type_trace_expression] = STATE(3473), + [sym__parenthesized_expression] = STATE(3019), + [sym_for_statement] = STATE(671), + [sym_subscript_expression] = STATE(3473), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(671), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(671), + [sym_conditional_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_do_while_statement] = STATE(671), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1105), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(671), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(414), + [anon_sym_return] = ACTIONS(386), + [anon_sym_untyped] = ACTIONS(388), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [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(422), + [anon_sym_if] = ACTIONS(424), + [anon_sym_while] = ACTIONS(426), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(648), + [sym_package_statement] = STATE(648), + [sym_import_statement] = STATE(648), + [sym_using_statement] = STATE(648), + [sym_throw_statement] = STATE(648), + [sym__rhs_expression] = STATE(1068), + [sym__unaryExpression] = STATE(3428), + [sym_runtime_type_check_expression] = STATE(3428), + [sym_switch_expression] = STATE(593), + [sym_cast_expression] = STATE(3428), + [sym_type_trace_expression] = STATE(3428), + [sym__parenthesized_expression] = STATE(3020), + [sym_for_statement] = STATE(648), + [sym_subscript_expression] = STATE(3428), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(648), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(648), + [sym_conditional_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_do_while_statement] = STATE(648), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1068), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(648), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(568), + [anon_sym_return] = ACTIONS(502), + [anon_sym_untyped] = ACTIONS(504), + [anon_sym_break] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [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(576), + [anon_sym_if] = ACTIONS(578), + [anon_sym_while] = ACTIONS(580), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(667), + [sym_package_statement] = STATE(667), + [sym_import_statement] = STATE(667), + [sym_using_statement] = STATE(667), + [sym_throw_statement] = STATE(667), + [sym__rhs_expression] = STATE(1103), + [sym__unaryExpression] = STATE(3202), + [sym_runtime_type_check_expression] = STATE(3202), + [sym_switch_expression] = STATE(605), + [sym_cast_expression] = STATE(3202), + [sym_type_trace_expression] = STATE(3202), + [sym__parenthesized_expression] = STATE(2897), + [sym_for_statement] = STATE(667), + [sym_subscript_expression] = STATE(3202), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(667), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(667), + [sym_conditional_statement] = STATE(667), + [sym_while_statement] = STATE(667), + [sym_do_while_statement] = STATE(667), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1103), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(667), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [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(568), + [anon_sym_return] = ACTIONS(380), + [anon_sym_untyped] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(384), + [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(576), + [anon_sym_if] = ACTIONS(578), + [anon_sym_while] = ACTIONS(580), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(596), + [sym_package_statement] = STATE(596), + [sym_import_statement] = STATE(596), + [sym_using_statement] = STATE(596), + [sym_throw_statement] = STATE(596), + [sym__rhs_expression] = STATE(1244), + [sym__unaryExpression] = STATE(3305), + [sym_runtime_type_check_expression] = STATE(3305), + [sym_switch_expression] = STATE(572), + [sym_cast_expression] = STATE(3305), + [sym_type_trace_expression] = STATE(3305), + [sym__parenthesized_expression] = STATE(3022), + [sym_for_statement] = STATE(596), + [sym_subscript_expression] = STATE(3305), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(596), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(596), + [sym_conditional_statement] = STATE(596), + [sym_while_statement] = STATE(596), + [sym_do_while_statement] = STATE(596), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1244), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(596), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(608), + [anon_sym_return] = ACTIONS(610), + [anon_sym_untyped] = ACTIONS(612), + [anon_sym_break] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [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(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_while] = ACTIONS(620), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(454), + [sym_package_statement] = STATE(454), + [sym_import_statement] = STATE(454), + [sym_using_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym__rhs_expression] = STATE(1114), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(364), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(3092), + [sym_for_statement] = STATE(454), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(454), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(454), + [sym_conditional_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_while_statement] = STATE(454), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1114), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(454), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(450), + [anon_sym_return] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [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(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(462), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(488), + [sym_package_statement] = STATE(488), + [sym_import_statement] = STATE(488), + [sym_using_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym__rhs_expression] = STATE(1122), + [sym__unaryExpression] = STATE(3321), + [sym_runtime_type_check_expression] = STATE(3321), + [sym_switch_expression] = STATE(371), + [sym_cast_expression] = STATE(3321), + [sym_type_trace_expression] = STATE(3321), + [sym__parenthesized_expression] = STATE(2880), + [sym_for_statement] = STATE(488), + [sym_subscript_expression] = STATE(3321), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(488), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(488), + [sym_conditional_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_while_statement] = STATE(488), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1122), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(488), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(450), + [anon_sym_return] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [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(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_while] = ACTIONS(462), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(552), + [sym_package_statement] = STATE(552), + [sym_import_statement] = STATE(552), + [sym_using_statement] = STATE(552), + [sym_throw_statement] = STATE(552), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3180), + [sym_runtime_type_check_expression] = STATE(3180), + [sym_switch_expression] = STATE(380), + [sym_cast_expression] = STATE(3180), + [sym_type_trace_expression] = STATE(3180), + [sym__parenthesized_expression] = STATE(2876), + [sym_for_statement] = STATE(552), + [sym_subscript_expression] = STATE(3180), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(554), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(552), + [sym_conditional_statement] = STATE(552), + [sym_while_statement] = STATE(552), + [sym_do_while_statement] = STATE(552), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(552), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(608), + [anon_sym_return] = ACTIONS(490), + [anon_sym_untyped] = ACTIONS(492), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [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(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_while] = ACTIONS(620), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(365), + [sym_package_statement] = STATE(365), + [sym_import_statement] = STATE(365), + [sym_using_statement] = STATE(365), + [sym_throw_statement] = STATE(365), + [sym__rhs_expression] = STATE(1193), + [sym__unaryExpression] = STATE(3179), + [sym_runtime_type_check_expression] = STATE(3179), + [sym_switch_expression] = STATE(361), + [sym_cast_expression] = STATE(3179), + [sym_type_trace_expression] = STATE(3179), + [sym__parenthesized_expression] = STATE(3102), + [sym_for_statement] = STATE(365), + [sym_subscript_expression] = STATE(3179), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(365), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(365), + [sym_conditional_statement] = STATE(365), + [sym_while_statement] = STATE(365), + [sym_do_while_statement] = STATE(365), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1193), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(365), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(608), + [anon_sym_return] = ACTIONS(514), + [anon_sym_untyped] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [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(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_while] = ACTIONS(620), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(454), + [sym_package_statement] = STATE(454), + [sym_import_statement] = STATE(454), + [sym_using_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym__rhs_expression] = STATE(1114), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(364), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(3092), + [sym_for_statement] = STATE(454), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(454), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(454), + [sym_conditional_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_while_statement] = STATE(454), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1114), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(454), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(540), + [anon_sym_return] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [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(548), + [anon_sym_if] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(488), + [sym_package_statement] = STATE(488), + [sym_import_statement] = STATE(488), + [sym_using_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym__rhs_expression] = STATE(1122), + [sym__unaryExpression] = STATE(3321), + [sym_runtime_type_check_expression] = STATE(3321), + [sym_switch_expression] = STATE(371), + [sym_cast_expression] = STATE(3321), + [sym_type_trace_expression] = STATE(3321), + [sym__parenthesized_expression] = STATE(2880), + [sym_for_statement] = STATE(488), + [sym_subscript_expression] = STATE(3321), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(488), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(488), + [sym_conditional_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_while_statement] = STATE(488), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1122), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(488), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(540), + [anon_sym_return] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [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(548), + [anon_sym_if] = ACTIONS(550), + [anon_sym_while] = ACTIONS(552), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(552), + [sym_package_statement] = STATE(552), + [sym_import_statement] = STATE(552), + [sym_using_statement] = STATE(552), + [sym_throw_statement] = STATE(552), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3180), + [sym_runtime_type_check_expression] = STATE(3180), + [sym_switch_expression] = STATE(380), + [sym_cast_expression] = STATE(3180), + [sym_type_trace_expression] = STATE(3180), + [sym__parenthesized_expression] = STATE(2876), + [sym_for_statement] = STATE(552), + [sym_subscript_expression] = STATE(3180), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(554), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(552), + [sym_conditional_statement] = STATE(552), + [sym_while_statement] = STATE(552), + [sym_do_while_statement] = STATE(552), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(552), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(582), + [anon_sym_return] = ACTIONS(490), + [anon_sym_untyped] = ACTIONS(492), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [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(590), + [anon_sym_if] = ACTIONS(592), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(454), + [sym_package_statement] = STATE(454), + [sym_import_statement] = STATE(454), + [sym_using_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym__rhs_expression] = STATE(1114), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(364), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(3092), + [sym_for_statement] = STATE(454), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(454), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(454), + [sym_conditional_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_while_statement] = STATE(454), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1114), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(454), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(582), + [anon_sym_return] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [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(590), + [anon_sym_if] = ACTIONS(592), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(488), + [sym_package_statement] = STATE(488), + [sym_import_statement] = STATE(488), + [sym_using_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym__rhs_expression] = STATE(1122), + [sym__unaryExpression] = STATE(3321), + [sym_runtime_type_check_expression] = STATE(3321), + [sym_switch_expression] = STATE(371), + [sym_cast_expression] = STATE(3321), + [sym_type_trace_expression] = STATE(3321), + [sym__parenthesized_expression] = STATE(2880), + [sym_for_statement] = STATE(488), + [sym_subscript_expression] = STATE(3321), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(488), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(488), + [sym_conditional_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_while_statement] = STATE(488), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1122), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(488), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(582), + [anon_sym_return] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [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(590), + [anon_sym_if] = ACTIONS(592), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(454), + [sym_package_statement] = STATE(454), + [sym_import_statement] = STATE(454), + [sym_using_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym__rhs_expression] = STATE(1114), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(364), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(3092), + [sym_for_statement] = STATE(454), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(454), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(454), + [sym_conditional_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_while_statement] = STATE(454), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1114), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(454), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(488), + [anon_sym_return] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [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(496), + [anon_sym_if] = ACTIONS(498), + [anon_sym_while] = ACTIONS(500), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(488), + [sym_package_statement] = STATE(488), + [sym_import_statement] = STATE(488), + [sym_using_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym__rhs_expression] = STATE(1122), + [sym__unaryExpression] = STATE(3321), + [sym_runtime_type_check_expression] = STATE(3321), + [sym_switch_expression] = STATE(371), + [sym_cast_expression] = STATE(3321), + [sym_type_trace_expression] = STATE(3321), + [sym__parenthesized_expression] = STATE(2880), + [sym_for_statement] = STATE(488), + [sym_subscript_expression] = STATE(3321), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(488), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(488), + [sym_conditional_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_while_statement] = STATE(488), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1122), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(488), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(488), + [anon_sym_return] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [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(496), + [anon_sym_if] = ACTIONS(498), + [anon_sym_while] = ACTIONS(500), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(772), [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(492), + [sym_package_statement] = STATE(492), + [sym_import_statement] = STATE(492), + [sym_using_statement] = STATE(492), + [sym_throw_statement] = STATE(492), + [sym__rhs_expression] = STATE(1123), + [sym__unaryExpression] = STATE(3393), + [sym_runtime_type_check_expression] = STATE(3393), + [sym_switch_expression] = STATE(373), + [sym_cast_expression] = STATE(3393), + [sym_type_trace_expression] = STATE(3393), + [sym__parenthesized_expression] = STATE(2885), + [sym_for_statement] = STATE(492), + [sym_subscript_expression] = STATE(3393), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(492), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(492), + [sym_conditional_statement] = STATE(492), + [sym_while_statement] = STATE(492), + [sym_do_while_statement] = STATE(492), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1123), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(492), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(488), + [anon_sym_return] = ACTIONS(482), + [anon_sym_untyped] = ACTIONS(484), + [anon_sym_break] = ACTIONS(486), + [anon_sym_continue] = ACTIONS(486), + [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(496), + [anon_sym_if] = ACTIONS(498), + [anon_sym_while] = ACTIONS(500), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(454), + [sym_package_statement] = STATE(454), + [sym_import_statement] = STATE(454), + [sym_using_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym__rhs_expression] = STATE(1114), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(364), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(3092), + [sym_for_statement] = STATE(454), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(454), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(454), + [sym_conditional_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_while_statement] = STATE(454), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1114), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(454), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(608), + [anon_sym_return] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [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(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_while] = ACTIONS(620), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(488), + [sym_package_statement] = STATE(488), + [sym_import_statement] = STATE(488), + [sym_using_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym__rhs_expression] = STATE(1122), + [sym__unaryExpression] = STATE(3321), + [sym_runtime_type_check_expression] = STATE(3321), + [sym_switch_expression] = STATE(371), + [sym_cast_expression] = STATE(3321), + [sym_type_trace_expression] = STATE(3321), + [sym__parenthesized_expression] = STATE(2880), + [sym_for_statement] = STATE(488), + [sym_subscript_expression] = STATE(3321), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(488), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(488), + [sym_conditional_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_while_statement] = STATE(488), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1122), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(488), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [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(608), + [anon_sym_return] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [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(616), + [anon_sym_if] = ACTIONS(618), + [anon_sym_while] = ACTIONS(620), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(2806), + [sym_package_statement] = STATE(2806), + [sym_import_statement] = STATE(2806), + [sym_using_statement] = STATE(2806), + [sym_throw_statement] = STATE(2806), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3363), + [sym_runtime_type_check_expression] = STATE(3363), + [sym_switch_expression] = STATE(2596), + [sym_cast_expression] = STATE(3363), + [sym_type_trace_expression] = STATE(3363), + [sym__parenthesized_expression] = STATE(3053), + [sym_for_statement] = STATE(2806), + [sym_subscript_expression] = STATE(3363), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2806), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2806), + [sym_conditional_statement] = STATE(2806), + [sym_while_statement] = STATE(2806), + [sym_do_while_statement] = STATE(2806), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2806), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(622), + [anon_sym_untyped] = ACTIONS(624), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(2809), + [sym_package_statement] = STATE(2809), + [sym_import_statement] = STATE(2809), + [sym_using_statement] = STATE(2809), + [sym_throw_statement] = STATE(2809), + [sym__rhs_expression] = STATE(1250), + [sym__unaryExpression] = STATE(3370), + [sym_runtime_type_check_expression] = STATE(3370), + [sym_switch_expression] = STATE(2597), + [sym_cast_expression] = STATE(3370), + [sym_type_trace_expression] = STATE(3370), + [sym__parenthesized_expression] = STATE(3057), + [sym_for_statement] = STATE(2809), + [sym_subscript_expression] = STATE(3370), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2809), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2809), + [sym_conditional_statement] = STATE(2809), + [sym_while_statement] = STATE(2809), + [sym_do_while_statement] = STATE(2809), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1250), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2809), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(628), + [anon_sym_untyped] = ACTIONS(630), + [anon_sym_break] = ACTIONS(632), + [anon_sym_continue] = ACTIONS(632), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(2812), + [sym_package_statement] = STATE(2812), + [sym_import_statement] = STATE(2812), + [sym_using_statement] = STATE(2812), + [sym_throw_statement] = STATE(2812), + [sym__rhs_expression] = STATE(1252), + [sym__unaryExpression] = STATE(3377), + [sym_runtime_type_check_expression] = STATE(3377), + [sym_switch_expression] = STATE(2598), + [sym_cast_expression] = STATE(3377), + [sym_type_trace_expression] = STATE(3377), + [sym__parenthesized_expression] = STATE(3060), + [sym_for_statement] = STATE(2812), + [sym_subscript_expression] = STATE(3377), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2812), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2812), + [sym_conditional_statement] = STATE(2812), + [sym_while_statement] = STATE(2812), + [sym_do_while_statement] = STATE(2812), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1252), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2812), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(634), + [anon_sym_untyped] = ACTIONS(636), + [anon_sym_break] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(2821), + [sym_package_statement] = STATE(2821), + [sym_import_statement] = STATE(2821), + [sym_using_statement] = STATE(2821), + [sym_throw_statement] = STATE(2821), + [sym__rhs_expression] = STATE(1254), + [sym__unaryExpression] = STATE(3405), + [sym_runtime_type_check_expression] = STATE(3405), + [sym_switch_expression] = STATE(2607), + [sym_cast_expression] = STATE(3405), + [sym_type_trace_expression] = STATE(3405), + [sym__parenthesized_expression] = STATE(3077), + [sym_for_statement] = STATE(2821), + [sym_subscript_expression] = STATE(3405), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2821), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2821), + [sym_conditional_statement] = STATE(2821), + [sym_while_statement] = STATE(2821), + [sym_do_while_statement] = STATE(2821), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1254), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2821), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(640), + [anon_sym_untyped] = ACTIONS(642), + [anon_sym_break] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(644), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(2825), + [sym_package_statement] = STATE(2825), + [sym_import_statement] = STATE(2825), + [sym_using_statement] = STATE(2825), + [sym_throw_statement] = STATE(2825), + [sym__rhs_expression] = STATE(1256), + [sym__unaryExpression] = STATE(3412), + [sym_runtime_type_check_expression] = STATE(3412), + [sym_switch_expression] = STATE(2608), + [sym_cast_expression] = STATE(3412), + [sym_type_trace_expression] = STATE(3412), + [sym__parenthesized_expression] = STATE(3080), + [sym_for_statement] = STATE(2825), + [sym_subscript_expression] = STATE(3412), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2825), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2825), + [sym_conditional_statement] = STATE(2825), + [sym_while_statement] = STATE(2825), + [sym_do_while_statement] = STATE(2825), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1256), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2825), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(646), + [anon_sym_untyped] = ACTIONS(648), + [anon_sym_break] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(2831), + [sym_package_statement] = STATE(2831), + [sym_import_statement] = STATE(2831), + [sym_using_statement] = STATE(2831), + [sym_throw_statement] = STATE(2831), + [sym__rhs_expression] = STATE(1258), + [sym__unaryExpression] = STATE(3439), + [sym_runtime_type_check_expression] = STATE(3439), + [sym_switch_expression] = STATE(2617), + [sym_cast_expression] = STATE(3439), + [sym_type_trace_expression] = STATE(3439), + [sym__parenthesized_expression] = STATE(3097), + [sym_for_statement] = STATE(2831), + [sym_subscript_expression] = STATE(3439), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2831), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2831), + [sym_conditional_statement] = STATE(2831), + [sym_while_statement] = STATE(2831), + [sym_do_while_statement] = STATE(2831), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1258), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2831), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(652), + [anon_sym_untyped] = ACTIONS(654), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(2835), + [sym_package_statement] = STATE(2835), + [sym_import_statement] = STATE(2835), + [sym_using_statement] = STATE(2835), + [sym_throw_statement] = STATE(2835), + [sym__rhs_expression] = STATE(1260), + [sym__unaryExpression] = STATE(3446), + [sym_runtime_type_check_expression] = STATE(3446), + [sym_switch_expression] = STATE(2618), + [sym_cast_expression] = STATE(3446), + [sym_type_trace_expression] = STATE(3446), + [sym__parenthesized_expression] = STATE(3101), + [sym_for_statement] = STATE(2835), + [sym_subscript_expression] = STATE(3446), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(2835), + [sym_metadata] = STATE(2189), + [sym_try_statement] = STATE(2835), + [sym_conditional_statement] = STATE(2835), + [sym_while_statement] = STATE(2835), + [sym_do_while_statement] = STATE(2835), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1260), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(2835), + [sym__modifier] = STATE(2195), + [sym_class_declaration] = STATE(619), + [sym_interface_declaration] = STATE(619), + [sym_enum_declaration] = STATE(619), + [sym_typedef_declaration] = STATE(619), + [sym_function_declaration] = STATE(619), + [sym_variable_declaration] = STATE(619), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2189), + [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(428), + [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(430), + [anon_sym_return] = ACTIONS(658), + [anon_sym_untyped] = ACTIONS(660), + [anon_sym_break] = ACTIONS(662), + [anon_sym_continue] = ACTIONS(662), + [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(438), + [anon_sym_if] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), + [sym_preprocessor_statement] = STATE(365), + [sym_package_statement] = STATE(365), + [sym_import_statement] = STATE(365), + [sym_using_statement] = STATE(365), + [sym_throw_statement] = STATE(365), + [sym__rhs_expression] = STATE(1193), + [sym__unaryExpression] = STATE(3179), + [sym_runtime_type_check_expression] = STATE(3179), + [sym_switch_expression] = STATE(361), + [sym_cast_expression] = STATE(3179), + [sym_type_trace_expression] = STATE(3179), + [sym__parenthesized_expression] = STATE(3102), + [sym_for_statement] = STATE(365), + [sym_subscript_expression] = STATE(3179), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym_block] = STATE(365), + [sym_metadata] = STATE(2184), + [sym_try_statement] = STATE(365), + [sym_conditional_statement] = STATE(365), + [sym_while_statement] = STATE(365), + [sym_do_while_statement] = STATE(365), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1193), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym_declaration] = STATE(365), + [sym__modifier] = STATE(2201), + [sym_class_declaration] = STATE(451), + [sym_interface_declaration] = STATE(451), + [sym_enum_declaration] = STATE(451), + [sym_typedef_declaration] = STATE(451), + [sym_function_declaration] = STATE(451), + [sym_variable_declaration] = STATE(451), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [aux_sym_class_declaration_repeat1] = STATE(2184), + [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(392), + [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(582), + [anon_sym_return] = ACTIONS(514), + [anon_sym_untyped] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [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(590), [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), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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_comment] = ACTIONS(3), + [sym_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2751), + [sym_integer] = STATE(2751), + [sym_float] = STATE(2751), + [sym_bool] = STATE(2751), + [sym_string] = STATE(2213), + [sym_null] = STATE(2751), + [sym_array] = STATE(2751), + [sym_map] = STATE(2751), + [sym_object] = STATE(2751), + [sym_pair] = STATE(2751), + [aux_sym_member_expression_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(666), + [anon_sym_package] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_using] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(668), + [anon_sym_default] = ACTIONS(668), + [anon_sym_cast] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_for] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_untyped] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_AT_COLON] = ACTIONS(666), + [anon_sym_try] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_do] = ACTIONS(668), + [anon_sym_new] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_GT_GT_GT] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_EQ_GT] = ACTIONS(666), + [anon_sym_QMARK_QMARK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(666), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(668), + [anon_sym_static] = ACTIONS(668), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_extern] = ACTIONS(668), + [anon_sym_inline] = ACTIONS(668), + [anon_sym_overload] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_final] = ACTIONS(668), + [anon_sym_class] = ACTIONS(668), + [anon_sym_interface] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(668), + [anon_sym_typedef] = ACTIONS(668), + [anon_sym_function] = ACTIONS(668), + [anon_sym_var] = ACTIONS(668), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(666), [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__rhs_expression] = STATE(172), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(172), + [sym__literal] = STATE(564), + [sym_integer] = STATE(564), + [sym_float] = STATE(564), + [sym_bool] = STATE(564), + [sym_string] = STATE(363), + [sym_null] = STATE(564), + [sym_array] = STATE(564), + [sym_map] = STATE(564), + [sym_object] = STATE(564), + [sym_pair] = STATE(564), + [ts_builtin_sym_end] = ACTIONS(692), + [sym_identifier] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_package] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_import] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_using] = ACTIONS(694), + [anon_sym_throw] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_cast] = ACTIONS(694), + [anon_sym_DOLLARtype] = ACTIONS(692), + [anon_sym_for] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_untyped] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_AT_COLON] = ACTIONS(692), + [anon_sym_try] = ACTIONS(694), + [anon_sym_catch] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_do] = ACTIONS(694), + [anon_sym_new] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(694), + [anon_sym_macro] = ACTIONS(694), + [anon_sym_abstract] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(694), + [anon_sym_inline] = ACTIONS(694), + [anon_sym_overload] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_final] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_function] = ACTIONS(694), + [anon_sym_var] = ACTIONS(694), + [aux_sym_integer_token1] = ACTIONS(694), + [aux_sym_integer_token2] = ACTIONS(692), + [aux_sym_float_token1] = ACTIONS(694), + [aux_sym_float_token2] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [aux_sym_string_token1] = ACTIONS(692), + [aux_sym_string_token3] = ACTIONS(692), [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_comment] = ACTIONS(3), + [sym__rhs_expression] = STATE(291), + [sym_member_expression] = STATE(293), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(291), + [sym__literal] = STATE(560), + [sym_integer] = STATE(560), + [sym_float] = STATE(560), + [sym_bool] = STATE(560), + [sym_string] = STATE(366), + [sym_null] = STATE(560), + [sym_array] = STATE(560), + [sym_map] = STATE(560), + [sym_object] = STATE(560), + [sym_pair] = STATE(560), + [sym_identifier] = ACTIONS(696), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_package] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_using] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_for] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_AT_COLON] = ACTIONS(698), + [anon_sym_try] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_new] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(708), + [anon_sym_macro] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(700), + [anon_sym_inline] = ACTIONS(700), + [anon_sym_overload] = ACTIONS(700), + [anon_sym_override] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_function] = ACTIONS(700), + [anon_sym_var] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(698), [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_comment] = ACTIONS(3), + [sym_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2751), + [sym_integer] = STATE(2751), + [sym_float] = STATE(2751), + [sym_bool] = STATE(2751), + [sym_string] = STATE(2213), + [sym_null] = STATE(2751), + [sym_array] = STATE(2751), + [sym_map] = STATE(2751), + [sym_object] = STATE(2751), + [sym_pair] = STATE(2751), + [aux_sym_member_expression_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(724), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_package] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(729), + [anon_sym_import] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_using] = ACTIONS(729), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_case] = ACTIONS(729), + [anon_sym_default] = ACTIONS(729), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_for] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_this] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(729), + [anon_sym_AT_COLON] = ACTIONS(727), + [anon_sym_try] = ACTIONS(729), + [anon_sym_catch] = ACTIONS(729), + [anon_sym_else] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_new] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_GT_GT_GT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(727), + [anon_sym_QMARK_QMARK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_null] = ACTIONS(740), + [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(729), + [anon_sym_class] = ACTIONS(729), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_enum] = ACTIONS(729), + [anon_sym_typedef] = ACTIONS(729), + [anon_sym_function] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [aux_sym_integer_token1] = ACTIONS(743), + [aux_sym_integer_token2] = ACTIONS(746), + [aux_sym_float_token1] = ACTIONS(749), + [aux_sym_float_token2] = ACTIONS(752), + [anon_sym_true] = ACTIONS(755), + [anon_sym_false] = ACTIONS(755), + [aux_sym_string_token1] = ACTIONS(758), + [aux_sym_string_token3] = ACTIONS(761), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(727), [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_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), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2751), + [sym_integer] = STATE(2751), + [sym_float] = STATE(2751), + [sym_bool] = STATE(2751), + [sym_string] = STATE(2213), + [sym_null] = STATE(2751), + [sym_array] = STATE(2751), + [sym_map] = STATE(2751), + [sym_object] = STATE(2751), + [sym_pair] = STATE(2751), + [aux_sym_member_expression_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_package] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_import] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_using] = ACTIONS(766), + [anon_sym_throw] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(766), + [anon_sym_default] = ACTIONS(766), + [anon_sym_cast] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_DOLLARtype] = ACTIONS(764), + [anon_sym_for] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_untyped] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(766), + [anon_sym_AT] = ACTIONS(766), + [anon_sym_AT_COLON] = ACTIONS(764), + [anon_sym_try] = ACTIONS(766), + [anon_sym_catch] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_do] = ACTIONS(766), + [anon_sym_new] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_QMARK] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(766), + [anon_sym_abstract] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_public] = ACTIONS(766), + [anon_sym_private] = ACTIONS(766), + [anon_sym_extern] = ACTIONS(766), + [anon_sym_inline] = ACTIONS(766), + [anon_sym_overload] = ACTIONS(766), + [anon_sym_override] = ACTIONS(766), + [anon_sym_final] = ACTIONS(766), + [anon_sym_class] = ACTIONS(766), + [anon_sym_interface] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_typedef] = ACTIONS(766), + [anon_sym_function] = ACTIONS(766), + [anon_sym_var] = ACTIONS(766), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(764), [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_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), + [sym_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2751), + [sym_integer] = STATE(2751), + [sym_float] = STATE(2751), + [sym_bool] = STATE(2751), + [sym_string] = STATE(2213), + [sym_null] = STATE(2751), + [sym_array] = STATE(2751), + [sym_map] = STATE(2751), + [sym_object] = STATE(2751), + [sym_pair] = STATE(2751), + [aux_sym_member_expression_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_package] = ACTIONS(770), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_import] = ACTIONS(770), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_using] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(770), + [anon_sym_default] = ACTIONS(770), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_for] = ACTIONS(770), + [anon_sym_return] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(770), + [anon_sym_AT_COLON] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_do] = ACTIONS(770), + [anon_sym_new] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_null] = ACTIONS(676), + [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_enum] = ACTIONS(770), + [anon_sym_typedef] = ACTIONS(770), + [anon_sym_function] = ACTIONS(770), + [anon_sym_var] = ACTIONS(770), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(768), [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_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2751), + [sym_integer] = STATE(2751), + [sym_float] = STATE(2751), + [sym_bool] = STATE(2751), + [sym_string] = STATE(2213), + [sym_null] = STATE(2751), + [sym_array] = STATE(2751), + [sym_map] = STATE(2751), + [sym_object] = STATE(2751), + [sym_pair] = STATE(2751), + [aux_sym_member_expression_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(772), + [anon_sym_package] = ACTIONS(774), + [anon_sym_DOT] = ACTIONS(774), + [anon_sym_import] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_using] = ACTIONS(774), + [anon_sym_throw] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(774), + [anon_sym_default] = ACTIONS(774), + [anon_sym_cast] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_DOLLARtype] = ACTIONS(772), + [anon_sym_for] = ACTIONS(774), + [anon_sym_return] = ACTIONS(774), + [anon_sym_untyped] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_AT] = ACTIONS(774), + [anon_sym_AT_COLON] = ACTIONS(772), + [anon_sym_try] = ACTIONS(774), + [anon_sym_catch] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_do] = ACTIONS(774), + [anon_sym_new] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [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(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_QMARK_QMARK] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(774), + [anon_sym_abstract] = ACTIONS(774), + [anon_sym_static] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_extern] = ACTIONS(774), + [anon_sym_inline] = ACTIONS(774), + [anon_sym_overload] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_final] = ACTIONS(774), + [anon_sym_class] = ACTIONS(774), + [anon_sym_interface] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(774), + [anon_sym_typedef] = ACTIONS(774), + [anon_sym_function] = ACTIONS(774), + [anon_sym_var] = ACTIONS(774), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(772), [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_comment] = ACTIONS(3), + [sym__rhs_expression] = STATE(263), + [sym_member_expression] = STATE(293), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(263), + [sym__literal] = STATE(560), + [sym_integer] = STATE(560), + [sym_float] = STATE(560), + [sym_bool] = STATE(560), + [sym_string] = STATE(366), + [sym_null] = STATE(560), + [sym_array] = STATE(560), + [sym_map] = STATE(560), + [sym_object] = STATE(560), + [sym_pair] = STATE(560), + [sym_identifier] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_package] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_import] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_using] = ACTIONS(694), + [anon_sym_throw] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_cast] = ACTIONS(694), + [anon_sym_DOLLARtype] = ACTIONS(692), + [anon_sym_for] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_untyped] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_AT_COLON] = ACTIONS(692), + [anon_sym_try] = ACTIONS(694), + [anon_sym_catch] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_do] = ACTIONS(694), + [anon_sym_new] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(694), + [anon_sym_macro] = ACTIONS(694), + [anon_sym_abstract] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(694), + [anon_sym_inline] = ACTIONS(694), + [anon_sym_overload] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_final] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_function] = ACTIONS(694), + [anon_sym_var] = ACTIONS(694), + [aux_sym_integer_token1] = ACTIONS(694), + [aux_sym_integer_token2] = ACTIONS(692), + [aux_sym_float_token1] = ACTIONS(694), + [aux_sym_float_token2] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [aux_sym_string_token1] = ACTIONS(692), + [aux_sym_string_token3] = ACTIONS(692), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(692), [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__rhs_expression] = STATE(187), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(187), + [sym__literal] = STATE(564), + [sym_integer] = STATE(564), + [sym_float] = STATE(564), + [sym_bool] = STATE(564), + [sym_string] = STATE(363), + [sym_null] = STATE(564), + [sym_array] = STATE(564), + [sym_map] = STATE(564), + [sym_object] = STATE(564), + [sym_pair] = STATE(564), + [ts_builtin_sym_end] = ACTIONS(698), + [sym_identifier] = ACTIONS(776), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_package] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_using] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_for] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(778), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_AT_COLON] = ACTIONS(698), + [anon_sym_try] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_new] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(700), + [anon_sym_inline] = ACTIONS(700), + [anon_sym_overload] = ACTIONS(700), + [anon_sym_override] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_function] = ACTIONS(700), + [anon_sym_var] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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_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), + [sym__rhs_expression] = STATE(845), + [sym__unaryExpression] = STATE(144), + [sym_runtime_type_check_expression] = STATE(144), + [sym_switch_expression] = STATE(144), + [sym_cast_expression] = STATE(144), + [sym_type_trace_expression] = STATE(144), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(144), + [sym_member_expression] = STATE(911), + [sym__lhs_expression] = STATE(2256), + [sym_builtin_type] = STATE(2261), + [sym__function_type_args] = STATE(3335), + [sym_function_type] = STATE(2393), + [sym_type] = STATE(2442), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(918), + [sym_integer] = STATE(918), + [sym_float] = STATE(918), + [sym_bool] = STATE(918), + [sym_string] = STATE(912), + [sym_null] = STATE(918), + [sym_array] = STATE(918), + [sym_map] = STATE(918), + [sym_object] = STATE(918), + [sym_structure_type_pair] = STATE(3246), + [sym_pair] = STATE(918), + [aux_sym__parenthesized_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(782), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(800), + [anon_sym_Void] = ACTIONS(802), + [anon_sym_Int] = ACTIONS(802), + [anon_sym_Float] = ACTIONS(802), + [anon_sym_Bool] = ACTIONS(802), + [anon_sym_Null] = ACTIONS(802), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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_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), + [sym__rhs_expression] = STATE(845), + [sym__unaryExpression] = STATE(137), + [sym_runtime_type_check_expression] = STATE(137), + [sym_switch_expression] = STATE(137), + [sym_cast_expression] = STATE(137), + [sym_type_trace_expression] = STATE(137), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(137), + [sym_member_expression] = STATE(911), + [sym__lhs_expression] = STATE(2256), + [sym_builtin_type] = STATE(2261), + [sym__function_type_args] = STATE(3237), + [sym_function_type] = STATE(2393), + [sym_type] = STATE(2592), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(918), + [sym_integer] = STATE(918), + [sym_float] = STATE(918), + [sym_bool] = STATE(918), + [sym_string] = STATE(912), + [sym_null] = STATE(918), + [sym_array] = STATE(918), + [sym_map] = STATE(918), + [sym_object] = STATE(918), + [sym_structure_type_pair] = STATE(3426), + [sym_pair] = STATE(918), + [aux_sym__parenthesized_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(782), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(800), + [anon_sym_Void] = ACTIONS(802), + [anon_sym_Int] = ACTIONS(802), + [anon_sym_Float] = ACTIONS(802), + [anon_sym_Bool] = ACTIONS(802), + [anon_sym_Null] = ACTIONS(802), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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_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), + [sym_operator] = STATE(89), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(186), + [sym__bitwiseOperator] = STATE(186), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(111), + [ts_builtin_sym_end] = ACTIONS(698), + [sym_identifier] = ACTIONS(700), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_package] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_using] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_for] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_this] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_AT_COLON] = ACTIONS(698), + [anon_sym_try] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_new] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(808), + [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(57), + [anon_sym_null] = ACTIONS(700), + [anon_sym_macro] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(700), + [anon_sym_inline] = ACTIONS(700), + [anon_sym_overload] = ACTIONS(700), + [anon_sym_override] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_function] = ACTIONS(700), + [anon_sym_var] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(700), + [aux_sym_integer_token2] = ACTIONS(698), + [aux_sym_float_token1] = ACTIONS(700), + [aux_sym_float_token2] = ACTIONS(698), + [anon_sym_true] = ACTIONS(700), + [anon_sym_false] = ACTIONS(700), + [aux_sym_string_token1] = ACTIONS(698), + [aux_sym_string_token3] = ACTIONS(698), [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_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), + [sym__rhs_expression] = STATE(695), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(695), + [sym__literal] = STATE(548), + [sym_integer] = STATE(548), + [sym_float] = STATE(548), + [sym_bool] = STATE(548), + [sym_string] = STATE(363), + [sym_null] = STATE(548), + [sym_array] = STATE(548), + [sym_map] = STATE(548), + [sym_object] = STATE(548), + [sym_pair] = STATE(548), + [ts_builtin_sym_end] = ACTIONS(810), + [sym_identifier] = ACTIONS(812), + [anon_sym_POUND] = ACTIONS(810), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_using] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(814), + [anon_sym_DOLLARtype] = ACTIONS(810), + [anon_sym_for] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_untyped] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_AT_COLON] = ACTIONS(810), + [anon_sym_try] = ACTIONS(814), + [anon_sym_catch] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_new] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_PLUS_PLUS] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_GT_GT_GT] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(810), + [anon_sym_BANG_EQ] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_LT_EQ] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_EQ] = ACTIONS(810), + [anon_sym_EQ_GT] = ACTIONS(810), + [anon_sym_QMARK_QMARK] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(810), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_inline] = ACTIONS(814), + [anon_sym_overload] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_function] = ACTIONS(814), + [anon_sym_var] = ACTIONS(814), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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_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), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2742), + [sym_integer] = STATE(2742), + [sym_float] = STATE(2742), + [sym_bool] = STATE(2742), + [sym_string] = STATE(2213), + [sym_null] = STATE(2742), + [sym_array] = STATE(2742), + [sym_map] = STATE(2742), + [sym_object] = STATE(2742), + [sym_pair] = STATE(2742), + [aux_sym_member_expression_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(818), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_package] = ACTIONS(766), + [anon_sym_import] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_using] = ACTIONS(766), + [anon_sym_throw] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(766), + [anon_sym_default] = ACTIONS(766), + [anon_sym_cast] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_DOLLARtype] = ACTIONS(764), + [anon_sym_for] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_untyped] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(820), + [anon_sym_AT] = ACTIONS(766), + [anon_sym_AT_COLON] = ACTIONS(764), + [anon_sym_try] = ACTIONS(766), + [anon_sym_catch] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_do] = ACTIONS(766), + [anon_sym_new] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_QMARK] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(766), + [anon_sym_abstract] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_public] = ACTIONS(766), + [anon_sym_private] = ACTIONS(766), + [anon_sym_extern] = ACTIONS(766), + [anon_sym_inline] = ACTIONS(766), + [anon_sym_overload] = ACTIONS(766), + [anon_sym_override] = ACTIONS(766), + [anon_sym_final] = ACTIONS(766), + [anon_sym_class] = ACTIONS(766), + [anon_sym_interface] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_typedef] = ACTIONS(766), + [anon_sym_function] = ACTIONS(766), + [anon_sym_var] = ACTIONS(766), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(764), [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_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), + [sym_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2742), + [sym_integer] = STATE(2742), + [sym_float] = STATE(2742), + [sym_bool] = STATE(2742), + [sym_string] = STATE(2213), + [sym_null] = STATE(2742), + [sym_array] = STATE(2742), + [sym_map] = STATE(2742), + [sym_object] = STATE(2742), + [sym_pair] = STATE(2742), + [aux_sym_member_expression_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(818), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_package] = ACTIONS(770), + [anon_sym_import] = ACTIONS(770), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_using] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(770), + [anon_sym_default] = ACTIONS(770), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_for] = ACTIONS(770), + [anon_sym_return] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(820), + [anon_sym_AT] = ACTIONS(770), + [anon_sym_AT_COLON] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_do] = ACTIONS(770), + [anon_sym_new] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_null] = ACTIONS(676), + [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_enum] = ACTIONS(770), + [anon_sym_typedef] = ACTIONS(770), + [anon_sym_function] = ACTIONS(770), + [anon_sym_var] = ACTIONS(770), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(768), [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_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), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2742), + [sym_integer] = STATE(2742), + [sym_float] = STATE(2742), + [sym_bool] = STATE(2742), + [sym_string] = STATE(2213), + [sym_null] = STATE(2742), + [sym_array] = STATE(2742), + [sym_map] = STATE(2742), + [sym_object] = STATE(2742), + [sym_pair] = STATE(2742), + [aux_sym_member_expression_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_package] = ACTIONS(729), + [anon_sym_import] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_using] = ACTIONS(729), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_case] = ACTIONS(729), + [anon_sym_default] = ACTIONS(729), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_for] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_this] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(729), + [anon_sym_AT_COLON] = ACTIONS(727), + [anon_sym_try] = ACTIONS(729), + [anon_sym_catch] = ACTIONS(729), + [anon_sym_else] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_new] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_GT_GT_GT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(727), + [anon_sym_QMARK_QMARK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_null] = ACTIONS(740), + [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(729), + [anon_sym_class] = ACTIONS(729), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_enum] = ACTIONS(729), + [anon_sym_typedef] = ACTIONS(729), + [anon_sym_function] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [aux_sym_integer_token1] = ACTIONS(743), + [aux_sym_integer_token2] = ACTIONS(746), + [aux_sym_float_token1] = ACTIONS(749), + [aux_sym_float_token2] = ACTIONS(752), + [anon_sym_true] = ACTIONS(755), + [anon_sym_false] = ACTIONS(755), + [aux_sym_string_token1] = ACTIONS(758), + [aux_sym_string_token3] = ACTIONS(761), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(727), [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_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), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2742), + [sym_integer] = STATE(2742), + [sym_float] = STATE(2742), + [sym_bool] = STATE(2742), + [sym_string] = STATE(2213), + [sym_null] = STATE(2742), + [sym_array] = STATE(2742), + [sym_map] = STATE(2742), + [sym_object] = STATE(2742), + [sym_pair] = STATE(2742), + [aux_sym_member_expression_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(818), + [anon_sym_POUND] = ACTIONS(666), + [anon_sym_package] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_using] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(668), + [anon_sym_default] = ACTIONS(668), + [anon_sym_cast] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_for] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_untyped] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(820), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_AT_COLON] = ACTIONS(666), + [anon_sym_try] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_do] = ACTIONS(668), + [anon_sym_new] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_GT_GT_GT] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_EQ_GT] = ACTIONS(666), + [anon_sym_QMARK_QMARK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(666), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(668), + [anon_sym_static] = ACTIONS(668), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_extern] = ACTIONS(668), + [anon_sym_inline] = ACTIONS(668), + [anon_sym_overload] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_final] = ACTIONS(668), + [anon_sym_class] = ACTIONS(668), + [anon_sym_interface] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(668), + [anon_sym_typedef] = ACTIONS(668), + [anon_sym_function] = ACTIONS(668), + [anon_sym_var] = ACTIONS(668), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(666), [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_member_expression] = STATE(295), + [sym__lhs_expression] = STATE(296), + [sym__literal] = STATE(2742), + [sym_integer] = STATE(2742), + [sym_float] = STATE(2742), + [sym_bool] = STATE(2742), + [sym_string] = STATE(2213), + [sym_null] = STATE(2742), + [sym_array] = STATE(2742), + [sym_map] = STATE(2742), + [sym_object] = STATE(2742), + [sym_pair] = STATE(2742), + [aux_sym_member_expression_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(818), + [anon_sym_POUND] = ACTIONS(772), + [anon_sym_package] = ACTIONS(774), + [anon_sym_import] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_using] = ACTIONS(774), + [anon_sym_throw] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(774), + [anon_sym_default] = ACTIONS(774), + [anon_sym_cast] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_DOLLARtype] = ACTIONS(772), + [anon_sym_for] = ACTIONS(774), + [anon_sym_return] = ACTIONS(774), + [anon_sym_untyped] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(820), + [anon_sym_AT] = ACTIONS(774), + [anon_sym_AT_COLON] = ACTIONS(772), + [anon_sym_try] = ACTIONS(774), + [anon_sym_catch] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_do] = ACTIONS(774), + [anon_sym_new] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [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(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_QMARK_QMARK] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(774), + [anon_sym_abstract] = ACTIONS(774), + [anon_sym_static] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_extern] = ACTIONS(774), + [anon_sym_inline] = ACTIONS(774), + [anon_sym_overload] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_final] = ACTIONS(774), + [anon_sym_class] = ACTIONS(774), + [anon_sym_interface] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(774), + [anon_sym_typedef] = ACTIONS(774), + [anon_sym_function] = ACTIONS(774), + [anon_sym_var] = ACTIONS(774), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(772), [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_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), + [sym__rhs_expression] = STATE(172), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(172), + [sym__literal] = STATE(548), + [sym_integer] = STATE(548), + [sym_float] = STATE(548), + [sym_bool] = STATE(548), + [sym_string] = STATE(363), + [sym_null] = STATE(548), + [sym_array] = STATE(548), + [sym_map] = STATE(548), + [sym_object] = STATE(548), + [sym_pair] = STATE(548), + [ts_builtin_sym_end] = ACTIONS(692), + [sym_identifier] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_package] = ACTIONS(694), + [anon_sym_import] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_using] = ACTIONS(694), + [anon_sym_throw] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_cast] = ACTIONS(694), + [anon_sym_DOLLARtype] = ACTIONS(692), + [anon_sym_for] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_untyped] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_AT_COLON] = ACTIONS(692), + [anon_sym_try] = ACTIONS(694), + [anon_sym_catch] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_do] = ACTIONS(694), + [anon_sym_new] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(694), + [anon_sym_macro] = ACTIONS(694), + [anon_sym_abstract] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(694), + [anon_sym_inline] = ACTIONS(694), + [anon_sym_overload] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_final] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_function] = ACTIONS(694), + [anon_sym_var] = ACTIONS(694), + [aux_sym_integer_token1] = ACTIONS(694), + [aux_sym_integer_token2] = ACTIONS(692), + [aux_sym_float_token1] = ACTIONS(694), + [aux_sym_float_token2] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [aux_sym_string_token1] = ACTIONS(692), + [aux_sym_string_token3] = ACTIONS(692), [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_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), - [sym_comment] = ACTIONS(3), + [sym_operator] = STATE(95), + [sym__unaryOperator] = STATE(242), + [sym__prefixUnaryOperator] = STATE(242), + [sym__postfixUnaryOperator] = STATE(242), + [sym__binaryOperator] = STATE(242), + [sym__arithmeticOperator] = STATE(242), + [sym__bitwiseOperator] = STATE(242), + [sym__logicalOperator] = STATE(242), + [sym__comparisonOperator] = STATE(242), + [sym__miscOperator] = STATE(242), + [sym__assignmentOperator] = STATE(242), + [sym__compoundAssignmentOperator] = STATE(242), + [sym__rangeOperator] = STATE(242), + [aux_sym_expression_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(700), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_package] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_using] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_for] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_this] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_AT_COLON] = ACTIONS(698), + [anon_sym_try] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_new] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_GT_GT_GT] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_EQ_GT] = ACTIONS(828), + [anon_sym_QMARK_QMARK] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(828), + [anon_sym_null] = ACTIONS(700), + [anon_sym_macro] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(700), + [anon_sym_inline] = ACTIONS(700), + [anon_sym_overload] = ACTIONS(700), + [anon_sym_override] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_function] = ACTIONS(700), + [anon_sym_var] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(700), + [aux_sym_integer_token2] = ACTIONS(698), + [aux_sym_float_token1] = ACTIONS(700), + [aux_sym_float_token2] = ACTIONS(698), + [anon_sym_true] = ACTIONS(700), + [anon_sym_false] = ACTIONS(700), + [aux_sym_string_token1] = ACTIONS(698), + [aux_sym_string_token3] = ACTIONS(698), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(698), [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_operator] = STATE(1913), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_package] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_import] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_cast] = ACTIONS(836), + [anon_sym_DOLLARtype] = ACTIONS(838), + [anon_sym_for] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_untyped] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_this] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_AT_COLON] = ACTIONS(838), + [anon_sym_try] = ACTIONS(836), + [anon_sym_catch] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_new] = ACTIONS(836), + [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(57), + [anon_sym_null] = ACTIONS(836), + [anon_sym_macro] = ACTIONS(836), + [anon_sym_abstract] = ACTIONS(836), + [anon_sym_static] = ACTIONS(836), + [anon_sym_public] = ACTIONS(836), + [anon_sym_private] = ACTIONS(836), + [anon_sym_extern] = ACTIONS(836), + [anon_sym_inline] = ACTIONS(836), + [anon_sym_overload] = ACTIONS(836), + [anon_sym_override] = ACTIONS(836), + [anon_sym_final] = ACTIONS(836), + [anon_sym_class] = ACTIONS(836), + [anon_sym_interface] = ACTIONS(836), + [anon_sym_enum] = ACTIONS(836), + [anon_sym_typedef] = ACTIONS(836), + [anon_sym_function] = ACTIONS(836), + [anon_sym_var] = ACTIONS(836), + [aux_sym_integer_token1] = ACTIONS(836), + [aux_sym_integer_token2] = ACTIONS(838), + [aux_sym_float_token1] = ACTIONS(836), + [aux_sym_float_token2] = ACTIONS(838), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [aux_sym_string_token1] = ACTIONS(838), + [aux_sym_string_token3] = ACTIONS(838), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(838), [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__rhs_expression] = STATE(464), + [sym_member_expression] = STATE(293), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(464), + [sym__literal] = STATE(486), + [sym_integer] = STATE(486), + [sym_float] = STATE(486), + [sym_bool] = STATE(486), + [sym_string] = STATE(366), + [sym_null] = STATE(486), + [sym_array] = STATE(486), + [sym_map] = STATE(486), + [sym_object] = STATE(486), + [sym_pair] = STATE(486), + [sym_identifier] = ACTIONS(840), + [anon_sym_POUND] = ACTIONS(810), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_using] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_cast] = ACTIONS(814), + [anon_sym_DOLLARtype] = ACTIONS(810), + [anon_sym_for] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_untyped] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(820), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_AT_COLON] = ACTIONS(810), + [anon_sym_try] = ACTIONS(814), + [anon_sym_catch] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_new] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_PLUS_PLUS] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_GT_GT_GT] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(810), + [anon_sym_BANG_EQ] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_LT_EQ] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_EQ] = ACTIONS(810), + [anon_sym_EQ_GT] = ACTIONS(810), + [anon_sym_QMARK_QMARK] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(810), + [anon_sym_null] = ACTIONS(708), + [anon_sym_macro] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_inline] = ACTIONS(814), + [anon_sym_overload] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_function] = ACTIONS(814), + [anon_sym_var] = ACTIONS(814), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(810), [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_operator] = STATE(1891), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(110), + [ts_builtin_sym_end] = ACTIONS(842), + [sym_identifier] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(842), + [anon_sym_package] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_using] = ACTIONS(844), + [anon_sym_throw] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_cast] = ACTIONS(844), + [anon_sym_DOLLARtype] = ACTIONS(842), + [anon_sym_for] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_untyped] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_this] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_AT_COLON] = ACTIONS(842), + [anon_sym_try] = ACTIONS(844), + [anon_sym_catch] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_new] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_PERCENT] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_GT_GT_GT] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_QMARK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(849), + [anon_sym_null] = ACTIONS(844), + [anon_sym_macro] = ACTIONS(844), + [anon_sym_abstract] = ACTIONS(844), + [anon_sym_static] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_extern] = ACTIONS(844), + [anon_sym_inline] = ACTIONS(844), + [anon_sym_overload] = ACTIONS(844), + [anon_sym_override] = ACTIONS(844), + [anon_sym_final] = ACTIONS(844), + [anon_sym_class] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(844), + [anon_sym_enum] = ACTIONS(844), + [anon_sym_typedef] = ACTIONS(844), + [anon_sym_function] = ACTIONS(844), + [anon_sym_var] = ACTIONS(844), + [aux_sym_integer_token1] = ACTIONS(844), + [aux_sym_integer_token2] = ACTIONS(842), + [aux_sym_float_token1] = ACTIONS(844), + [aux_sym_float_token2] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [aux_sym_string_token1] = ACTIONS(842), + [aux_sym_string_token3] = ACTIONS(842), [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_operator] = STATE(1891), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(110), + [ts_builtin_sym_end] = ACTIONS(838), + [sym_identifier] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_package] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_import] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_cast] = ACTIONS(836), + [anon_sym_DOLLARtype] = ACTIONS(838), + [anon_sym_for] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_untyped] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_this] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_AT_COLON] = ACTIONS(838), + [anon_sym_try] = ACTIONS(836), + [anon_sym_catch] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_new] = ACTIONS(836), + [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(57), + [anon_sym_null] = ACTIONS(836), + [anon_sym_macro] = ACTIONS(836), + [anon_sym_abstract] = ACTIONS(836), + [anon_sym_static] = ACTIONS(836), + [anon_sym_public] = ACTIONS(836), + [anon_sym_private] = ACTIONS(836), + [anon_sym_extern] = ACTIONS(836), + [anon_sym_inline] = ACTIONS(836), + [anon_sym_overload] = ACTIONS(836), + [anon_sym_override] = ACTIONS(836), + [anon_sym_final] = ACTIONS(836), + [anon_sym_class] = ACTIONS(836), + [anon_sym_interface] = ACTIONS(836), + [anon_sym_enum] = ACTIONS(836), + [anon_sym_typedef] = ACTIONS(836), + [anon_sym_function] = ACTIONS(836), + [anon_sym_var] = ACTIONS(836), + [aux_sym_integer_token1] = ACTIONS(836), + [aux_sym_integer_token2] = ACTIONS(838), + [aux_sym_float_token1] = ACTIONS(836), + [aux_sym_float_token2] = ACTIONS(838), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [aux_sym_string_token1] = ACTIONS(838), + [aux_sym_string_token3] = ACTIONS(838), [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_comment] = ACTIONS(3), + [sym_operator] = STATE(1913), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(842), + [anon_sym_package] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_using] = ACTIONS(844), + [anon_sym_throw] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_cast] = ACTIONS(844), + [anon_sym_DOLLARtype] = ACTIONS(842), + [anon_sym_for] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_untyped] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_this] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_AT_COLON] = ACTIONS(842), + [anon_sym_try] = ACTIONS(844), + [anon_sym_catch] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_new] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_PERCENT] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_GT_GT_GT] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_QMARK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(849), + [anon_sym_null] = ACTIONS(844), + [anon_sym_macro] = ACTIONS(844), + [anon_sym_abstract] = ACTIONS(844), + [anon_sym_static] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_extern] = ACTIONS(844), + [anon_sym_inline] = ACTIONS(844), + [anon_sym_overload] = ACTIONS(844), + [anon_sym_override] = ACTIONS(844), + [anon_sym_final] = ACTIONS(844), + [anon_sym_class] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(844), + [anon_sym_enum] = ACTIONS(844), + [anon_sym_typedef] = ACTIONS(844), + [anon_sym_function] = ACTIONS(844), + [anon_sym_var] = ACTIONS(844), + [aux_sym_integer_token1] = ACTIONS(844), + [aux_sym_integer_token2] = ACTIONS(842), + [aux_sym_float_token1] = ACTIONS(844), + [aux_sym_float_token2] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [aux_sym_string_token1] = ACTIONS(842), + [aux_sym_string_token3] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(842), [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__rhs_expression] = STATE(263), + [sym_member_expression] = STATE(293), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(263), + [sym__literal] = STATE(486), + [sym_integer] = STATE(486), + [sym_float] = STATE(486), + [sym_bool] = STATE(486), + [sym_string] = STATE(366), + [sym_null] = STATE(486), + [sym_array] = STATE(486), + [sym_map] = STATE(486), + [sym_object] = STATE(486), + [sym_pair] = STATE(486), + [sym_identifier] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_package] = ACTIONS(694), + [anon_sym_import] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_using] = ACTIONS(694), + [anon_sym_throw] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_cast] = ACTIONS(694), + [anon_sym_DOLLARtype] = ACTIONS(692), + [anon_sym_for] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_untyped] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_AT_COLON] = ACTIONS(692), + [anon_sym_try] = ACTIONS(694), + [anon_sym_catch] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_do] = ACTIONS(694), + [anon_sym_new] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(694), + [anon_sym_macro] = ACTIONS(694), + [anon_sym_abstract] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(694), + [anon_sym_inline] = ACTIONS(694), + [anon_sym_overload] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_final] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_function] = ACTIONS(694), + [anon_sym_var] = ACTIONS(694), + [aux_sym_integer_token1] = ACTIONS(694), + [aux_sym_integer_token2] = ACTIONS(692), + [aux_sym_float_token1] = ACTIONS(694), + [aux_sym_float_token2] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [aux_sym_string_token1] = ACTIONS(692), + [aux_sym_string_token3] = ACTIONS(692), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(692), [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(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2744), + [sym_integer] = STATE(2744), + [sym_float] = STATE(2744), + [sym_bool] = STATE(2744), + [sym_string] = STATE(2213), + [sym_null] = STATE(2744), + [sym_array] = STATE(2744), + [sym_map] = STATE(2744), + [sym_object] = STATE(2744), + [sym_pair] = STATE(2744), + [aux_sym_member_expression_repeat1] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(764), + [sym_identifier] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_package] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_import] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_using] = ACTIONS(766), + [anon_sym_throw] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(766), + [anon_sym_DOLLARtype] = ACTIONS(764), + [anon_sym_for] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_untyped] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(778), + [anon_sym_QMARK] = ACTIONS(766), + [anon_sym_AT] = ACTIONS(766), + [anon_sym_AT_COLON] = ACTIONS(764), + [anon_sym_try] = ACTIONS(766), + [anon_sym_catch] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_do] = ACTIONS(766), + [anon_sym_new] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_QMARK] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(766), + [anon_sym_abstract] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_public] = ACTIONS(766), + [anon_sym_private] = ACTIONS(766), + [anon_sym_extern] = ACTIONS(766), + [anon_sym_inline] = ACTIONS(766), + [anon_sym_overload] = ACTIONS(766), + [anon_sym_override] = ACTIONS(766), + [anon_sym_final] = ACTIONS(766), + [anon_sym_class] = ACTIONS(766), + [anon_sym_interface] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_typedef] = ACTIONS(766), + [anon_sym_function] = ACTIONS(766), + [anon_sym_var] = ACTIONS(766), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), [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_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2744), + [sym_integer] = STATE(2744), + [sym_float] = STATE(2744), + [sym_bool] = STATE(2744), + [sym_string] = STATE(2213), + [sym_null] = STATE(2744), + [sym_array] = STATE(2744), + [sym_map] = STATE(2744), + [sym_object] = STATE(2744), + [sym_pair] = STATE(2744), + [aux_sym_member_expression_repeat1] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(727), + [sym_identifier] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_package] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(729), + [anon_sym_import] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_using] = ACTIONS(729), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_for] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_this] = ACTIONS(869), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(729), + [anon_sym_AT_COLON] = ACTIONS(727), + [anon_sym_try] = ACTIONS(729), + [anon_sym_catch] = ACTIONS(729), + [anon_sym_else] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_new] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_GT_GT_GT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(727), + [anon_sym_QMARK_QMARK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_null] = ACTIONS(740), + [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(729), + [anon_sym_class] = ACTIONS(729), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_enum] = ACTIONS(729), + [anon_sym_typedef] = ACTIONS(729), + [anon_sym_function] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [aux_sym_integer_token1] = ACTIONS(743), + [aux_sym_integer_token2] = ACTIONS(746), + [aux_sym_float_token1] = ACTIONS(749), + [aux_sym_float_token2] = ACTIONS(752), + [anon_sym_true] = ACTIONS(755), + [anon_sym_false] = ACTIONS(755), + [aux_sym_string_token1] = ACTIONS(758), + [aux_sym_string_token3] = ACTIONS(761), [sym_comment] = ACTIONS(3), [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_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2744), + [sym_integer] = STATE(2744), + [sym_float] = STATE(2744), + [sym_bool] = STATE(2744), + [sym_string] = STATE(2213), + [sym_null] = STATE(2744), + [sym_array] = STATE(2744), + [sym_map] = STATE(2744), + [sym_object] = STATE(2744), + [sym_pair] = STATE(2744), + [aux_sym_member_expression_repeat1] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(666), + [anon_sym_package] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_using] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(668), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_for] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_untyped] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(778), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_AT_COLON] = ACTIONS(666), + [anon_sym_try] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_do] = ACTIONS(668), + [anon_sym_new] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_GT_GT_GT] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_EQ_GT] = ACTIONS(666), + [anon_sym_QMARK_QMARK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(666), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(668), + [anon_sym_static] = ACTIONS(668), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_extern] = ACTIONS(668), + [anon_sym_inline] = ACTIONS(668), + [anon_sym_overload] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_final] = ACTIONS(668), + [anon_sym_class] = ACTIONS(668), + [anon_sym_interface] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(668), + [anon_sym_typedef] = ACTIONS(668), + [anon_sym_function] = ACTIONS(668), + [anon_sym_var] = ACTIONS(668), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), [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_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2744), + [sym_integer] = STATE(2744), + [sym_float] = STATE(2744), + [sym_bool] = STATE(2744), + [sym_string] = STATE(2213), + [sym_null] = STATE(2744), + [sym_array] = STATE(2744), + [sym_map] = STATE(2744), + [sym_object] = STATE(2744), + [sym_pair] = STATE(2744), + [aux_sym_member_expression_repeat1] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(768), + [sym_identifier] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_package] = ACTIONS(770), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_import] = ACTIONS(770), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_using] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_for] = ACTIONS(770), + [anon_sym_return] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(778), + [anon_sym_QMARK] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(770), + [anon_sym_AT_COLON] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_do] = ACTIONS(770), + [anon_sym_new] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_null] = ACTIONS(676), + [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_enum] = ACTIONS(770), + [anon_sym_typedef] = ACTIONS(770), + [anon_sym_function] = ACTIONS(770), + [anon_sym_var] = ACTIONS(770), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), [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_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2744), + [sym_integer] = STATE(2744), + [sym_float] = STATE(2744), + [sym_bool] = STATE(2744), + [sym_string] = STATE(2213), + [sym_null] = STATE(2744), + [sym_array] = STATE(2744), + [sym_map] = STATE(2744), + [sym_object] = STATE(2744), + [sym_pair] = STATE(2744), + [aux_sym_member_expression_repeat1] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(772), + [anon_sym_package] = ACTIONS(774), + [anon_sym_DOT] = ACTIONS(774), + [anon_sym_import] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_using] = ACTIONS(774), + [anon_sym_throw] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(774), + [anon_sym_DOLLARtype] = ACTIONS(772), + [anon_sym_for] = ACTIONS(774), + [anon_sym_return] = ACTIONS(774), + [anon_sym_untyped] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(778), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_AT] = ACTIONS(774), + [anon_sym_AT_COLON] = ACTIONS(772), + [anon_sym_try] = ACTIONS(774), + [anon_sym_catch] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_do] = ACTIONS(774), + [anon_sym_new] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [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(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_QMARK_QMARK] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(774), + [anon_sym_abstract] = ACTIONS(774), + [anon_sym_static] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_extern] = ACTIONS(774), + [anon_sym_inline] = ACTIONS(774), + [anon_sym_overload] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_final] = ACTIONS(774), + [anon_sym_class] = ACTIONS(774), + [anon_sym_interface] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(774), + [anon_sym_typedef] = ACTIONS(774), + [anon_sym_function] = ACTIONS(774), + [anon_sym_var] = ACTIONS(774), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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_operator] = STATE(1826), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(121), + [ts_builtin_sym_end] = ACTIONS(872), + [sym_identifier] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_package] = ACTIONS(874), + [anon_sym_import] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(874), + [anon_sym_throw] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_cast] = ACTIONS(874), + [anon_sym_DOLLARtype] = ACTIONS(872), + [anon_sym_for] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_untyped] = ACTIONS(874), + [anon_sym_break] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_this] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_AT_COLON] = ACTIONS(872), + [anon_sym_try] = ACTIONS(874), + [anon_sym_catch] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_if] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [anon_sym_do] = ACTIONS(874), + [anon_sym_new] = ACTIONS(874), + [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(57), + [anon_sym_null] = ACTIONS(874), + [anon_sym_macro] = ACTIONS(874), + [anon_sym_abstract] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(874), + [anon_sym_inline] = ACTIONS(874), + [anon_sym_overload] = ACTIONS(874), + [anon_sym_override] = ACTIONS(874), + [anon_sym_final] = ACTIONS(874), + [anon_sym_class] = ACTIONS(874), + [anon_sym_interface] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_typedef] = ACTIONS(874), + [anon_sym_function] = ACTIONS(874), + [anon_sym_var] = ACTIONS(874), + [aux_sym_integer_token1] = ACTIONS(874), + [aux_sym_integer_token2] = ACTIONS(872), + [aux_sym_float_token1] = ACTIONS(874), + [aux_sym_float_token2] = ACTIONS(872), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [aux_sym_string_token1] = ACTIONS(872), + [aux_sym_string_token3] = ACTIONS(872), [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(106), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(186), + [sym__bitwiseOperator] = STATE(186), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(119), + [ts_builtin_sym_end] = ACTIONS(810), + [sym_identifier] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(810), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_using] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_cast] = ACTIONS(814), + [anon_sym_DOLLARtype] = ACTIONS(810), + [anon_sym_for] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_untyped] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(810), + [anon_sym_this] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_AT_COLON] = ACTIONS(810), + [anon_sym_try] = ACTIONS(814), + [anon_sym_catch] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_new] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(808), + [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(57), + [anon_sym_null] = ACTIONS(814), + [anon_sym_macro] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_inline] = ACTIONS(814), + [anon_sym_overload] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_function] = ACTIONS(814), + [anon_sym_var] = ACTIONS(814), + [aux_sym_integer_token1] = ACTIONS(814), + [aux_sym_integer_token2] = ACTIONS(810), + [aux_sym_float_token1] = ACTIONS(814), + [aux_sym_float_token2] = ACTIONS(810), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [aux_sym_string_token1] = ACTIONS(810), + [aux_sym_string_token3] = ACTIONS(810), [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_operator] = STATE(1826), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(121), + [ts_builtin_sym_end] = ACTIONS(842), + [sym_identifier] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(842), + [anon_sym_package] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_using] = ACTIONS(844), + [anon_sym_throw] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_cast] = ACTIONS(844), + [anon_sym_DOLLARtype] = ACTIONS(842), + [anon_sym_for] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_untyped] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_this] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_AT_COLON] = ACTIONS(842), + [anon_sym_try] = ACTIONS(844), + [anon_sym_catch] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_new] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_PERCENT] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_GT_GT_GT] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_QMARK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(849), + [anon_sym_null] = ACTIONS(844), + [anon_sym_macro] = ACTIONS(844), + [anon_sym_abstract] = ACTIONS(844), + [anon_sym_static] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_extern] = ACTIONS(844), + [anon_sym_inline] = ACTIONS(844), + [anon_sym_overload] = ACTIONS(844), + [anon_sym_override] = ACTIONS(844), + [anon_sym_final] = ACTIONS(844), + [anon_sym_class] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(844), + [anon_sym_enum] = ACTIONS(844), + [anon_sym_typedef] = ACTIONS(844), + [anon_sym_function] = ACTIONS(844), + [anon_sym_var] = ACTIONS(844), + [aux_sym_integer_token1] = ACTIONS(844), + [aux_sym_integer_token2] = ACTIONS(842), + [aux_sym_float_token1] = ACTIONS(844), + [aux_sym_float_token2] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [aux_sym_string_token1] = ACTIONS(842), + [aux_sym_string_token3] = ACTIONS(842), [sym_comment] = ACTIONS(3), [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(113), + [sym__unaryOperator] = STATE(242), + [sym__prefixUnaryOperator] = STATE(242), + [sym__postfixUnaryOperator] = STATE(242), + [sym__binaryOperator] = STATE(242), + [sym__arithmeticOperator] = STATE(242), + [sym__bitwiseOperator] = STATE(242), + [sym__logicalOperator] = STATE(242), + [sym__comparisonOperator] = STATE(242), + [sym__miscOperator] = STATE(242), + [sym__assignmentOperator] = STATE(242), + [sym__compoundAssignmentOperator] = STATE(242), + [sym__rangeOperator] = STATE(242), + [aux_sym_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(810), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_using] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_cast] = ACTIONS(814), + [anon_sym_DOLLARtype] = ACTIONS(810), + [anon_sym_for] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_untyped] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(810), + [anon_sym_this] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_AT_COLON] = ACTIONS(810), + [anon_sym_try] = ACTIONS(814), + [anon_sym_catch] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_new] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(834), + [anon_sym_DASH_DASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_GT_GT_GT] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_EQ_GT] = ACTIONS(828), + [anon_sym_QMARK_QMARK] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(828), + [anon_sym_null] = ACTIONS(814), + [anon_sym_macro] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_inline] = ACTIONS(814), + [anon_sym_overload] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_function] = ACTIONS(814), + [anon_sym_var] = ACTIONS(814), + [aux_sym_integer_token1] = ACTIONS(814), + [aux_sym_integer_token2] = ACTIONS(810), + [aux_sym_float_token1] = ACTIONS(814), + [aux_sym_float_token2] = ACTIONS(810), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [aux_sym_string_token1] = ACTIONS(810), + [aux_sym_string_token3] = ACTIONS(810), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(810), [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_comment] = ACTIONS(3), + [sym_operator] = STATE(1903), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_package] = ACTIONS(874), + [anon_sym_import] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(874), + [anon_sym_throw] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_cast] = ACTIONS(874), + [anon_sym_DOLLARtype] = ACTIONS(872), + [anon_sym_for] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_untyped] = ACTIONS(874), + [anon_sym_break] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_this] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_AT_COLON] = ACTIONS(872), + [anon_sym_try] = ACTIONS(874), + [anon_sym_catch] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_if] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [anon_sym_do] = ACTIONS(874), + [anon_sym_new] = ACTIONS(874), + [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(57), + [anon_sym_null] = ACTIONS(874), + [anon_sym_macro] = ACTIONS(874), + [anon_sym_abstract] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(874), + [anon_sym_inline] = ACTIONS(874), + [anon_sym_overload] = ACTIONS(874), + [anon_sym_override] = ACTIONS(874), + [anon_sym_final] = ACTIONS(874), + [anon_sym_class] = ACTIONS(874), + [anon_sym_interface] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_typedef] = ACTIONS(874), + [anon_sym_function] = ACTIONS(874), + [anon_sym_var] = ACTIONS(874), + [aux_sym_integer_token1] = ACTIONS(874), + [aux_sym_integer_token2] = ACTIONS(872), + [aux_sym_float_token1] = ACTIONS(874), + [aux_sym_float_token2] = ACTIONS(872), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [aux_sym_string_token1] = ACTIONS(872), + [aux_sym_string_token3] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(872), [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_operator] = STATE(1903), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(842), + [anon_sym_package] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_using] = ACTIONS(844), + [anon_sym_throw] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_cast] = ACTIONS(844), + [anon_sym_DOLLARtype] = ACTIONS(842), + [anon_sym_for] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_untyped] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_this] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_AT_COLON] = ACTIONS(842), + [anon_sym_try] = ACTIONS(844), + [anon_sym_catch] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_new] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_PERCENT] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_GT_GT_GT] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_QMARK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(849), + [anon_sym_null] = ACTIONS(844), + [anon_sym_macro] = ACTIONS(844), + [anon_sym_abstract] = ACTIONS(844), + [anon_sym_static] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_extern] = ACTIONS(844), + [anon_sym_inline] = ACTIONS(844), + [anon_sym_overload] = ACTIONS(844), + [anon_sym_override] = ACTIONS(844), + [anon_sym_final] = ACTIONS(844), + [anon_sym_class] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(844), + [anon_sym_enum] = ACTIONS(844), + [anon_sym_typedef] = ACTIONS(844), + [anon_sym_function] = ACTIONS(844), + [anon_sym_var] = ACTIONS(844), + [aux_sym_integer_token1] = ACTIONS(844), + [aux_sym_integer_token2] = ACTIONS(842), + [aux_sym_float_token1] = ACTIONS(844), + [aux_sym_float_token2] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [aux_sym_string_token1] = ACTIONS(842), + [aux_sym_string_token3] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(842), [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_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2737), + [sym_integer] = STATE(2737), + [sym_float] = STATE(2737), + [sym_bool] = STATE(2737), + [sym_string] = STATE(2213), + [sym_null] = STATE(2737), + [sym_array] = STATE(2737), + [sym_map] = STATE(2737), + [sym_object] = STATE(2737), + [sym_pair] = STATE(2737), + [aux_sym_member_expression_repeat1] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(764), + [sym_identifier] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_package] = ACTIONS(766), + [anon_sym_import] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_using] = ACTIONS(766), + [anon_sym_throw] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(766), + [anon_sym_DOLLARtype] = ACTIONS(764), + [anon_sym_for] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_untyped] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(766), + [anon_sym_AT_COLON] = ACTIONS(764), + [anon_sym_try] = ACTIONS(766), + [anon_sym_catch] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_do] = ACTIONS(766), + [anon_sym_new] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_QMARK] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(766), + [anon_sym_abstract] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_public] = ACTIONS(766), + [anon_sym_private] = ACTIONS(766), + [anon_sym_extern] = ACTIONS(766), + [anon_sym_inline] = ACTIONS(766), + [anon_sym_overload] = ACTIONS(766), + [anon_sym_override] = ACTIONS(766), + [anon_sym_final] = ACTIONS(766), + [anon_sym_class] = ACTIONS(766), + [anon_sym_interface] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_typedef] = ACTIONS(766), + [anon_sym_function] = ACTIONS(766), + [anon_sym_var] = ACTIONS(766), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2737), + [sym_integer] = STATE(2737), + [sym_float] = STATE(2737), + [sym_bool] = STATE(2737), + [sym_string] = STATE(2213), + [sym_null] = STATE(2737), + [sym_array] = STATE(2737), + [sym_map] = STATE(2737), + [sym_object] = STATE(2737), + [sym_pair] = STATE(2737), + [aux_sym_member_expression_repeat1] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(768), + [sym_identifier] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_package] = ACTIONS(770), + [anon_sym_import] = ACTIONS(770), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_using] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_for] = ACTIONS(770), + [anon_sym_return] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(770), + [anon_sym_AT_COLON] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_do] = ACTIONS(770), + [anon_sym_new] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_null] = ACTIONS(676), + [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_enum] = ACTIONS(770), + [anon_sym_typedef] = ACTIONS(770), + [anon_sym_function] = ACTIONS(770), + [anon_sym_var] = ACTIONS(770), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), [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_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2737), + [sym_integer] = STATE(2737), + [sym_float] = STATE(2737), + [sym_bool] = STATE(2737), + [sym_string] = STATE(2213), + [sym_null] = STATE(2737), + [sym_array] = STATE(2737), + [sym_map] = STATE(2737), + [sym_object] = STATE(2737), + [sym_pair] = STATE(2737), + [aux_sym_member_expression_repeat1] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(727), + [sym_identifier] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_package] = ACTIONS(729), + [anon_sym_import] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_using] = ACTIONS(729), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_for] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_this] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(729), + [anon_sym_AT_COLON] = ACTIONS(727), + [anon_sym_try] = ACTIONS(729), + [anon_sym_catch] = ACTIONS(729), + [anon_sym_else] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_new] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_GT_GT_GT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(727), + [anon_sym_QMARK_QMARK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_null] = ACTIONS(740), + [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(729), + [anon_sym_class] = ACTIONS(729), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_enum] = ACTIONS(729), + [anon_sym_typedef] = ACTIONS(729), + [anon_sym_function] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [aux_sym_integer_token1] = ACTIONS(743), + [aux_sym_integer_token2] = ACTIONS(746), + [aux_sym_float_token1] = ACTIONS(749), + [aux_sym_float_token2] = ACTIONS(752), + [anon_sym_true] = ACTIONS(755), + [anon_sym_false] = ACTIONS(755), + [aux_sym_string_token1] = ACTIONS(758), + [aux_sym_string_token3] = ACTIONS(761), [sym_comment] = ACTIONS(3), [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_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2737), + [sym_integer] = STATE(2737), + [sym_float] = STATE(2737), + [sym_bool] = STATE(2737), + [sym_string] = STATE(2213), + [sym_null] = STATE(2737), + [sym_array] = STATE(2737), + [sym_map] = STATE(2737), + [sym_object] = STATE(2737), + [sym_pair] = STATE(2737), + [aux_sym_member_expression_repeat1] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(666), + [anon_sym_package] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_using] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(668), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_for] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_untyped] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_AT_COLON] = ACTIONS(666), + [anon_sym_try] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_do] = ACTIONS(668), + [anon_sym_new] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_GT_GT_GT] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_EQ_GT] = ACTIONS(666), + [anon_sym_QMARK_QMARK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(666), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(668), + [anon_sym_static] = ACTIONS(668), + [anon_sym_public] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_extern] = ACTIONS(668), + [anon_sym_inline] = ACTIONS(668), + [anon_sym_overload] = ACTIONS(668), + [anon_sym_override] = ACTIONS(668), + [anon_sym_final] = ACTIONS(668), + [anon_sym_class] = ACTIONS(668), + [anon_sym_interface] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(668), + [anon_sym_typedef] = ACTIONS(668), + [anon_sym_function] = ACTIONS(668), + [anon_sym_var] = ACTIONS(668), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), [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__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_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_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, + [sym_member_expression] = STATE(500), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2737), + [sym_integer] = STATE(2737), + [sym_float] = STATE(2737), + [sym_bool] = STATE(2737), + [sym_string] = STATE(2213), + [sym_null] = STATE(2737), + [sym_array] = STATE(2737), + [sym_map] = STATE(2737), + [sym_object] = STATE(2737), + [sym_pair] = STATE(2737), + [aux_sym_member_expression_repeat1] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(772), + [anon_sym_package] = ACTIONS(774), + [anon_sym_import] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_using] = ACTIONS(774), + [anon_sym_throw] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(774), + [anon_sym_DOLLARtype] = ACTIONS(772), + [anon_sym_for] = ACTIONS(774), + [anon_sym_return] = ACTIONS(774), + [anon_sym_untyped] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(774), + [anon_sym_AT_COLON] = ACTIONS(772), + [anon_sym_try] = ACTIONS(774), + [anon_sym_catch] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_do] = ACTIONS(774), + [anon_sym_new] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [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(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_QMARK_QMARK] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_null] = ACTIONS(676), + [anon_sym_macro] = ACTIONS(774), + [anon_sym_abstract] = ACTIONS(774), + [anon_sym_static] = ACTIONS(774), + [anon_sym_public] = ACTIONS(774), + [anon_sym_private] = ACTIONS(774), + [anon_sym_extern] = ACTIONS(774), + [anon_sym_inline] = ACTIONS(774), + [anon_sym_overload] = ACTIONS(774), + [anon_sym_override] = ACTIONS(774), + [anon_sym_final] = ACTIONS(774), + [anon_sym_class] = ACTIONS(774), + [anon_sym_interface] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(774), + [anon_sym_typedef] = ACTIONS(774), + [anon_sym_function] = ACTIONS(774), + [anon_sym_var] = ACTIONS(774), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [130] = { + [sym__rhs_expression] = STATE(832), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(911), + [sym__lhs_expression] = STATE(2256), + [sym_builtin_type] = STATE(2261), + [sym_function_type] = STATE(2393), + [sym_type] = STATE(2933), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(832), + [sym_operator] = STATE(1931), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(920), + [sym_integer] = STATE(920), + [sym_float] = STATE(920), + [sym_bool] = STATE(920), + [sym_string] = STATE(912), + [sym_null] = STATE(920), + [sym_array] = STATE(920), + [sym_map] = STATE(920), + [sym_object] = STATE(920), + [sym_pair] = STATE(920), + [sym_identifier] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(886), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(888), + [anon_sym_untyped] = ACTIONS(890), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(894), + [anon_sym_Void] = ACTIONS(802), + [anon_sym_Int] = ACTIONS(802), + [anon_sym_Float] = ACTIONS(802), + [anon_sym_Bool] = ACTIONS(802), + [anon_sym_Null] = ACTIONS(802), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [131] = { + [sym__rhs_expression] = STATE(1037), + [sym__unaryExpression] = STATE(288), + [sym_runtime_type_check_expression] = STATE(288), + [sym_switch_expression] = STATE(288), + [sym_cast_expression] = STATE(288), + [sym_type_trace_expression] = STATE(288), + [sym__parenthesized_expression] = STATE(289), + [sym_subscript_expression] = STATE(288), + [sym_member_expression] = STATE(1522), + [sym__lhs_expression] = STATE(2269), + [sym_builtin_type] = STATE(2363), + [sym_function_type] = STATE(2642), + [sym_type] = STATE(2717), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(1037), + [sym_operator] = STATE(1874), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1621), + [sym_integer] = STATE(1621), + [sym_float] = STATE(1621), + [sym_bool] = STATE(1621), + [sym_string] = STATE(1302), + [sym_null] = STATE(1621), + [sym_array] = STATE(1621), + [sym_map] = STATE(1621), + [sym_object] = STATE(1621), + [sym_pair] = STATE(1621), + [sym_identifier] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_cast] = ACTIONS(902), + [anon_sym_DOLLARtype] = ACTIONS(904), + [anon_sym_return] = ACTIONS(906), + [anon_sym_untyped] = ACTIONS(908), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(912), + [anon_sym_Void] = ACTIONS(914), + [anon_sym_Int] = ACTIONS(914), + [anon_sym_Float] = ACTIONS(914), + [anon_sym_Bool] = ACTIONS(914), + [anon_sym_Null] = ACTIONS(914), + [anon_sym_new] = ACTIONS(706), + [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(57), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [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(926), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(911), + [sym__lhs_expression] = STATE(2256), + [sym_builtin_type] = STATE(2261), + [sym_function_type] = STATE(2393), + [sym_type] = STATE(2464), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(926), + [sym_operator] = STATE(1729), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1976), + [sym_integer] = STATE(1976), + [sym_float] = STATE(1976), + [sym_bool] = STATE(1976), + [sym_string] = STATE(1308), + [sym_null] = STATE(1976), + [sym_array] = STATE(1976), + [sym_map] = STATE(1976), + [sym_object] = STATE(1976), + [sym_pair] = STATE(1976), + [sym_identifier] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(918), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(920), + [anon_sym_untyped] = ACTIONS(922), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(894), + [anon_sym_Void] = ACTIONS(802), + [anon_sym_Int] = ACTIONS(802), + [anon_sym_Float] = ACTIONS(802), + [anon_sym_Bool] = ACTIONS(802), + [anon_sym_Null] = ACTIONS(802), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), [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__rhs_expression] = STATE(832), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(911), + [sym__lhs_expression] = STATE(2256), + [sym_builtin_type] = STATE(2261), + [sym_function_type] = STATE(2393), + [sym_type] = STATE(2530), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(832), + [sym_operator] = STATE(1931), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(920), + [sym_integer] = STATE(920), + [sym_float] = STATE(920), + [sym_bool] = STATE(920), + [sym_string] = STATE(912), + [sym_null] = STATE(920), + [sym_array] = STATE(920), + [sym_map] = STATE(920), + [sym_object] = STATE(920), + [sym_pair] = STATE(920), + [sym_identifier] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(886), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(888), + [anon_sym_untyped] = ACTIONS(890), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(894), + [anon_sym_Void] = ACTIONS(802), + [anon_sym_Int] = ACTIONS(802), + [anon_sym_Float] = ACTIONS(802), + [anon_sym_Bool] = ACTIONS(802), + [anon_sym_Null] = ACTIONS(802), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), [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__rhs_expression] = STATE(926), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(911), + [sym__lhs_expression] = STATE(2256), + [sym_builtin_type] = STATE(2261), + [sym_function_type] = STATE(2393), + [sym_type] = STATE(2794), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(926), + [sym_operator] = STATE(1729), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1976), + [sym_integer] = STATE(1976), + [sym_float] = STATE(1976), + [sym_bool] = STATE(1976), + [sym_string] = STATE(1308), + [sym_null] = STATE(1976), + [sym_array] = STATE(1976), + [sym_map] = STATE(1976), + [sym_object] = STATE(1976), + [sym_pair] = STATE(1976), + [sym_identifier] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(918), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(920), + [anon_sym_untyped] = ACTIONS(922), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(894), + [anon_sym_Void] = ACTIONS(802), + [anon_sym_Int] = ACTIONS(802), + [anon_sym_Float] = ACTIONS(802), + [anon_sym_Bool] = ACTIONS(802), + [anon_sym_Null] = ACTIONS(802), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(924), + [anon_sym_package] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_import] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_using] = ACTIONS(926), + [anon_sym_throw] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_COLON] = ACTIONS(924), + [anon_sym_cast] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_DOLLARtype] = ACTIONS(924), + [anon_sym_for] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_untyped] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_RBRACK] = ACTIONS(924), + [anon_sym_this] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_AT_COLON] = ACTIONS(924), + [anon_sym_try] = ACTIONS(926), + [anon_sym_catch] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_new] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PERCENT] = ACTIONS(924), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_GT_GT_GT] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_QMARK] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(924), + [anon_sym_null] = ACTIONS(926), + [anon_sym_macro] = ACTIONS(926), + [anon_sym_abstract] = ACTIONS(926), + [anon_sym_static] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_overload] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_final] = ACTIONS(926), + [anon_sym_class] = ACTIONS(926), + [anon_sym_interface] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(926), + [anon_sym_function] = ACTIONS(926), + [anon_sym_var] = ACTIONS(926), + [aux_sym_integer_token1] = ACTIONS(926), + [aux_sym_integer_token2] = ACTIONS(924), + [aux_sym_float_token1] = ACTIONS(926), + [aux_sym_float_token2] = ACTIONS(924), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_string_token1] = ACTIONS(924), + [aux_sym_string_token3] = ACTIONS(924), [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), + [ts_builtin_sym_end] = ACTIONS(928), + [sym_identifier] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(928), + [anon_sym_package] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_import] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_using] = ACTIONS(931), + [anon_sym_throw] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_COLON] = ACTIONS(928), + [anon_sym_cast] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(928), + [anon_sym_DOLLARtype] = ACTIONS(928), + [anon_sym_for] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_untyped] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_RBRACK] = ACTIONS(928), + [anon_sym_this] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [anon_sym_AT_COLON] = ACTIONS(928), + [anon_sym_try] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_new] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(928), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(928), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_GT_GT_GT] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_AMP_AMP] = ACTIONS(928), + [anon_sym_PIPE_PIPE] = ACTIONS(928), + [anon_sym_EQ_EQ] = ACTIONS(928), + [anon_sym_BANG_EQ] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(928), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(928), + [anon_sym_QMARK_QMARK] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(928), + [anon_sym_null] = ACTIONS(931), + [anon_sym_macro] = ACTIONS(931), + [anon_sym_abstract] = ACTIONS(931), + [anon_sym_static] = ACTIONS(931), + [anon_sym_public] = ACTIONS(931), + [anon_sym_private] = ACTIONS(931), + [anon_sym_extern] = ACTIONS(931), + [anon_sym_inline] = ACTIONS(931), + [anon_sym_overload] = ACTIONS(931), + [anon_sym_override] = ACTIONS(931), + [anon_sym_final] = ACTIONS(931), + [anon_sym_class] = ACTIONS(931), + [anon_sym_interface] = ACTIONS(931), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_typedef] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_var] = ACTIONS(931), + [aux_sym_integer_token1] = ACTIONS(931), + [aux_sym_integer_token2] = ACTIONS(928), + [aux_sym_float_token1] = ACTIONS(931), + [aux_sym_float_token2] = ACTIONS(928), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym_string_token1] = ACTIONS(928), + [aux_sym_string_token3] = ACTIONS(928), [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__rhs_expression] = STATE(845), + [sym__unaryExpression] = STATE(138), + [sym_runtime_type_check_expression] = STATE(138), + [sym_switch_expression] = STATE(138), + [sym_cast_expression] = STATE(138), + [sym_type_trace_expression] = STATE(138), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(138), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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__rhs_expression] = STATE(845), + [sym__unaryExpression] = STATE(138), + [sym_runtime_type_check_expression] = STATE(138), + [sym_switch_expression] = STATE(138), + [sym_cast_expression] = STATE(138), + [sym_type_trace_expression] = STATE(138), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(138), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_cast] = ACTIONS(961), + [anon_sym_DOLLARtype] = ACTIONS(964), + [anon_sym_return] = ACTIONS(967), + [anon_sym_untyped] = ACTIONS(970), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_this] = ACTIONS(979), + [anon_sym_new] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_LT_LT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_GT_GT_GT] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(985), + [anon_sym_EQ_GT] = ACTIONS(985), + [anon_sym_QMARK_QMARK] = ACTIONS(985), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(985), + [anon_sym_null] = ACTIONS(1000), + [aux_sym_integer_token1] = ACTIONS(1003), + [aux_sym_integer_token2] = ACTIONS(1006), + [aux_sym_float_token1] = ACTIONS(1009), + [aux_sym_float_token2] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1015), + [anon_sym_false] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1018), + [aux_sym_string_token3] = ACTIONS(1021), [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__rhs_expression] = STATE(845), + [sym__unaryExpression] = STATE(138), + [sym_runtime_type_check_expression] = STATE(138), + [sym_switch_expression] = STATE(138), + [sym_cast_expression] = STATE(138), + [sym_type_trace_expression] = STATE(138), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(138), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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(845), + [sym__unaryExpression] = STATE(144), + [sym_runtime_type_check_expression] = STATE(144), + [sym_switch_expression] = STATE(144), + [sym_cast_expression] = STATE(144), + [sym_type_trace_expression] = STATE(144), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(144), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_structure_type_pair] = STATE(3246), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [ts_builtin_sym_end] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1030), + [anon_sym_POUND] = ACTIONS(1028), + [anon_sym_package] = ACTIONS(1030), + [anon_sym_DOT] = ACTIONS(1030), + [anon_sym_import] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_using] = ACTIONS(1030), + [anon_sym_throw] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_COLON] = ACTIONS(1028), + [anon_sym_cast] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1028), + [anon_sym_DOLLARtype] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_untyped] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_RBRACK] = ACTIONS(1028), + [anon_sym_this] = ACTIONS(1030), + [anon_sym_QMARK] = ACTIONS(1030), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym_AT_COLON] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1030), + [anon_sym_catch] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_new] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_LT_LT] = ACTIONS(1028), + [anon_sym_GT_GT] = ACTIONS(1030), + [anon_sym_GT_GT_GT] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1028), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1028), + [anon_sym_BANG_EQ] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_LT_EQ] = ACTIONS(1028), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_GT_EQ] = ACTIONS(1028), + [anon_sym_EQ_GT] = ACTIONS(1028), + [anon_sym_QMARK_QMARK] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), + [anon_sym_null] = ACTIONS(1030), + [anon_sym_macro] = ACTIONS(1030), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_public] = ACTIONS(1030), + [anon_sym_private] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym_inline] = ACTIONS(1030), + [anon_sym_overload] = ACTIONS(1030), + [anon_sym_override] = ACTIONS(1030), + [anon_sym_final] = ACTIONS(1030), + [anon_sym_class] = ACTIONS(1030), + [anon_sym_interface] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1030), + [anon_sym_var] = ACTIONS(1030), + [aux_sym_integer_token1] = ACTIONS(1030), + [aux_sym_integer_token2] = ACTIONS(1028), + [aux_sym_float_token1] = ACTIONS(1030), + [aux_sym_float_token2] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [aux_sym_string_token1] = ACTIONS(1028), + [aux_sym_string_token3] = ACTIONS(1028), [sym_comment] = ACTIONS(3), [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), + [ts_builtin_sym_end] = ACTIONS(1032), + [sym_identifier] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(1032), + [anon_sym_package] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_using] = ACTIONS(1034), + [anon_sym_throw] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_COLON] = ACTIONS(1032), + [anon_sym_cast] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_DOLLARtype] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_untyped] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_RBRACK] = ACTIONS(1032), + [anon_sym_this] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(1034), + [anon_sym_AT_COLON] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1032), + [anon_sym_SLASH] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_GT_GT_GT] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [anon_sym_BANG_EQ] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1034), + [anon_sym_LT_EQ] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1032), + [anon_sym_QMARK_QMARK] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_macro] = ACTIONS(1034), + [anon_sym_abstract] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_public] = ACTIONS(1034), + [anon_sym_private] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_inline] = ACTIONS(1034), + [anon_sym_overload] = ACTIONS(1034), + [anon_sym_override] = ACTIONS(1034), + [anon_sym_final] = ACTIONS(1034), + [anon_sym_class] = ACTIONS(1034), + [anon_sym_interface] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1034), + [anon_sym_function] = ACTIONS(1034), + [anon_sym_var] = ACTIONS(1034), + [aux_sym_integer_token1] = ACTIONS(1034), + [aux_sym_integer_token2] = ACTIONS(1032), + [aux_sym_float_token1] = ACTIONS(1034), + [aux_sym_float_token2] = ACTIONS(1032), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [aux_sym_string_token1] = ACTIONS(1032), + [aux_sym_string_token3] = ACTIONS(1032), [sym_comment] = ACTIONS(3), [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), + [ts_builtin_sym_end] = ACTIONS(1036), + [sym_identifier] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(1036), + [anon_sym_package] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(1038), + [anon_sym_throw] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_COLON] = ACTIONS(1036), + [anon_sym_cast] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_DOLLARtype] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_untyped] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_RBRACK] = ACTIONS(1036), + [anon_sym_this] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_AT_COLON] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_PERCENT] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_LT_LT] = ACTIONS(1036), + [anon_sym_GT_GT] = ACTIONS(1038), + [anon_sym_GT_GT_GT] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1038), + [anon_sym_CARET] = ACTIONS(1036), + [anon_sym_AMP_AMP] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1036), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_GT_EQ] = ACTIONS(1036), + [anon_sym_EQ_GT] = ACTIONS(1036), + [anon_sym_QMARK_QMARK] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1038), + [anon_sym_macro] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_inline] = ACTIONS(1038), + [anon_sym_overload] = ACTIONS(1038), + [anon_sym_override] = ACTIONS(1038), + [anon_sym_final] = ACTIONS(1038), + [anon_sym_class] = ACTIONS(1038), + [anon_sym_interface] = ACTIONS(1038), + [anon_sym_enum] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1038), + [anon_sym_function] = ACTIONS(1038), + [anon_sym_var] = ACTIONS(1038), + [aux_sym_integer_token1] = ACTIONS(1038), + [aux_sym_integer_token2] = ACTIONS(1036), + [aux_sym_float_token1] = ACTIONS(1038), + [aux_sym_float_token2] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [aux_sym_string_token1] = ACTIONS(1036), + [aux_sym_string_token3] = ACTIONS(1036), [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(845), + [sym__unaryExpression] = STATE(138), + [sym_runtime_type_check_expression] = STATE(138), + [sym_switch_expression] = STATE(138), + [sym_cast_expression] = STATE(138), + [sym_type_trace_expression] = STATE(138), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(138), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_package] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_using] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_cast] = ACTIONS(1044), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_DOLLARtype] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_untyped] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_this] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1044), + [anon_sym_AT] = ACTIONS(1044), + [anon_sym_AT_COLON] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_GT_GT_GT] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1042), + [anon_sym_PIPE_PIPE] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_EQ_GT] = ACTIONS(1042), + [anon_sym_QMARK_QMARK] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1044), + [anon_sym_macro] = ACTIONS(1044), + [anon_sym_abstract] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_overload] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_final] = ACTIONS(1044), + [anon_sym_class] = ACTIONS(1044), + [anon_sym_interface] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_function] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1044), + [aux_sym_integer_token1] = ACTIONS(1044), + [aux_sym_integer_token2] = ACTIONS(1042), + [aux_sym_float_token1] = ACTIONS(1044), + [aux_sym_float_token2] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [aux_sym_string_token1] = ACTIONS(1042), + [aux_sym_string_token3] = ACTIONS(1042), [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), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1046), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), [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), + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(1056), + [anon_sym_package] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_import] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_using] = ACTIONS(1058), + [anon_sym_throw] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(1056), + [anon_sym_cast] = ACTIONS(1058), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_DOLLARtype] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_untyped] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_RBRACK] = ACTIONS(1056), + [anon_sym_this] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1058), + [anon_sym_AT_COLON] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_GT_GT_GT] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_EQ_GT] = ACTIONS(1056), + [anon_sym_QMARK_QMARK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1058), + [anon_sym_macro] = ACTIONS(1058), + [anon_sym_abstract] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_public] = ACTIONS(1058), + [anon_sym_private] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_inline] = ACTIONS(1058), + [anon_sym_overload] = ACTIONS(1058), + [anon_sym_override] = ACTIONS(1058), + [anon_sym_final] = ACTIONS(1058), + [anon_sym_class] = ACTIONS(1058), + [anon_sym_interface] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(1058), + [anon_sym_var] = ACTIONS(1058), + [aux_sym_integer_token1] = ACTIONS(1058), + [aux_sym_integer_token2] = ACTIONS(1056), + [aux_sym_float_token1] = ACTIONS(1058), + [aux_sym_float_token2] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [aux_sym_string_token1] = ACTIONS(1056), + [aux_sym_string_token3] = ACTIONS(1056), [sym_comment] = ACTIONS(3), [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), + [ts_builtin_sym_end] = ACTIONS(1060), + [sym_identifier] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1060), + [anon_sym_package] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_import] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_using] = ACTIONS(1062), + [anon_sym_throw] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_COLON] = ACTIONS(1060), + [anon_sym_cast] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_DOLLARtype] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_untyped] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_RBRACK] = ACTIONS(1060), + [anon_sym_this] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_AT_COLON] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_PERCENT] = ACTIONS(1060), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_GT_GT_GT] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1060), + [anon_sym_AMP_AMP] = ACTIONS(1060), + [anon_sym_PIPE_PIPE] = ACTIONS(1060), + [anon_sym_EQ_EQ] = ACTIONS(1060), + [anon_sym_BANG_EQ] = ACTIONS(1060), + [anon_sym_LT] = ACTIONS(1062), + [anon_sym_LT_EQ] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_GT_EQ] = ACTIONS(1060), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_QMARK_QMARK] = ACTIONS(1060), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1062), + [anon_sym_macro] = ACTIONS(1062), + [anon_sym_abstract] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_public] = ACTIONS(1062), + [anon_sym_private] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym_overload] = ACTIONS(1062), + [anon_sym_override] = ACTIONS(1062), + [anon_sym_final] = ACTIONS(1062), + [anon_sym_class] = ACTIONS(1062), + [anon_sym_interface] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1062), + [anon_sym_var] = ACTIONS(1062), + [aux_sym_integer_token1] = ACTIONS(1062), + [aux_sym_integer_token2] = ACTIONS(1060), + [aux_sym_float_token1] = ACTIONS(1062), + [aux_sym_float_token2] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [aux_sym_string_token1] = ACTIONS(1060), + [aux_sym_string_token3] = ACTIONS(1060), [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), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_identifier] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(1064), + [anon_sym_package] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_import] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_using] = ACTIONS(1066), + [anon_sym_throw] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_COLON] = ACTIONS(1064), + [anon_sym_cast] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_DOLLARtype] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_untyped] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1064), + [anon_sym_this] = ACTIONS(1066), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_AT] = ACTIONS(1066), + [anon_sym_AT_COLON] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_PERCENT] = ACTIONS(1064), + [anon_sym_SLASH] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1064), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_GT_GT_GT] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(1064), + [anon_sym_AMP_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1064), + [anon_sym_EQ_EQ] = ACTIONS(1064), + [anon_sym_BANG_EQ] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_LT_EQ] = ACTIONS(1064), + [anon_sym_GT] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1064), + [anon_sym_EQ_GT] = ACTIONS(1064), + [anon_sym_QMARK_QMARK] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1066), + [anon_sym_macro] = ACTIONS(1066), + [anon_sym_abstract] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_overload] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_final] = ACTIONS(1066), + [anon_sym_class] = ACTIONS(1066), + [anon_sym_interface] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1066), + [anon_sym_var] = ACTIONS(1066), + [aux_sym_integer_token1] = ACTIONS(1066), + [aux_sym_integer_token2] = ACTIONS(1064), + [aux_sym_float_token1] = ACTIONS(1066), + [aux_sym_float_token2] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [aux_sym_string_token1] = ACTIONS(1064), + [aux_sym_string_token3] = ACTIONS(1064), [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), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1046), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), [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), + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_package] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_import] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_using] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_COLON] = ACTIONS(1068), + [anon_sym_cast] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_DOLLARtype] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_untyped] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_RBRACK] = ACTIONS(1068), + [anon_sym_this] = ACTIONS(1070), + [anon_sym_QMARK] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(1070), + [anon_sym_AT_COLON] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_LT_LT] = ACTIONS(1068), + [anon_sym_GT_GT] = ACTIONS(1070), + [anon_sym_GT_GT_GT] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_EQ_GT] = ACTIONS(1068), + [anon_sym_QMARK_QMARK] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_macro] = ACTIONS(1070), + [anon_sym_abstract] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_inline] = ACTIONS(1070), + [anon_sym_overload] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_final] = ACTIONS(1070), + [anon_sym_class] = ACTIONS(1070), + [anon_sym_interface] = ACTIONS(1070), + [anon_sym_enum] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1070), + [anon_sym_function] = ACTIONS(1070), + [anon_sym_var] = ACTIONS(1070), + [aux_sym_integer_token1] = ACTIONS(1070), + [aux_sym_integer_token2] = ACTIONS(1068), + [aux_sym_float_token1] = ACTIONS(1070), + [aux_sym_float_token2] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym_string_token1] = ACTIONS(1068), + [aux_sym_string_token3] = ACTIONS(1068), [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), + [ts_builtin_sym_end] = ACTIONS(1072), + [sym_identifier] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(1072), + [anon_sym_package] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_import] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_using] = ACTIONS(1074), + [anon_sym_throw] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_COLON] = ACTIONS(1072), + [anon_sym_cast] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_DOLLARtype] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_untyped] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_RBRACK] = ACTIONS(1072), + [anon_sym_this] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_AT_COLON] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_PERCENT] = ACTIONS(1072), + [anon_sym_SLASH] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_LT_LT] = ACTIONS(1072), + [anon_sym_GT_GT] = ACTIONS(1074), + [anon_sym_GT_GT_GT] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1072), + [anon_sym_PIPE_PIPE] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1072), + [anon_sym_BANG_EQ] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_LT_EQ] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_GT_EQ] = ACTIONS(1072), + [anon_sym_EQ_GT] = ACTIONS(1072), + [anon_sym_QMARK_QMARK] = ACTIONS(1072), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1074), + [anon_sym_macro] = ACTIONS(1074), + [anon_sym_abstract] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_overload] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_final] = ACTIONS(1074), + [anon_sym_class] = ACTIONS(1074), + [anon_sym_interface] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_function] = ACTIONS(1074), + [anon_sym_var] = ACTIONS(1074), + [aux_sym_integer_token1] = ACTIONS(1074), + [aux_sym_integer_token2] = ACTIONS(1072), + [aux_sym_float_token1] = ACTIONS(1074), + [aux_sym_float_token2] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [aux_sym_string_token1] = ACTIONS(1072), + [aux_sym_string_token3] = ACTIONS(1072), [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), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(1076), + [anon_sym_package] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(1078), + [anon_sym_throw] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_COLON] = ACTIONS(1076), + [anon_sym_cast] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_DOLLARtype] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_untyped] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_RBRACK] = ACTIONS(1076), + [anon_sym_this] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1078), + [anon_sym_AT_COLON] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_GT_GT_GT] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_EQ_GT] = ACTIONS(1076), + [anon_sym_QMARK_QMARK] = ACTIONS(1076), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1078), + [anon_sym_macro] = ACTIONS(1078), + [anon_sym_abstract] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_public] = ACTIONS(1078), + [anon_sym_private] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_overload] = ACTIONS(1078), + [anon_sym_override] = ACTIONS(1078), + [anon_sym_final] = ACTIONS(1078), + [anon_sym_class] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1078), + [anon_sym_var] = ACTIONS(1078), + [aux_sym_integer_token1] = ACTIONS(1078), + [aux_sym_integer_token2] = ACTIONS(1076), + [aux_sym_float_token1] = ACTIONS(1078), + [aux_sym_float_token2] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [aux_sym_string_token1] = ACTIONS(1076), + [aux_sym_string_token3] = ACTIONS(1076), [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), + [ts_builtin_sym_end] = ACTIONS(692), + [sym_identifier] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_package] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_import] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_using] = ACTIONS(694), + [anon_sym_throw] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_COLON] = ACTIONS(692), + [anon_sym_cast] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_DOLLARtype] = ACTIONS(692), + [anon_sym_for] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_untyped] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_AT_COLON] = ACTIONS(692), + [anon_sym_try] = ACTIONS(694), + [anon_sym_catch] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_do] = ACTIONS(694), + [anon_sym_new] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(694), + [anon_sym_macro] = ACTIONS(694), + [anon_sym_abstract] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(694), + [anon_sym_inline] = ACTIONS(694), + [anon_sym_overload] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_final] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_function] = ACTIONS(694), + [anon_sym_var] = ACTIONS(694), + [aux_sym_integer_token1] = ACTIONS(694), + [aux_sym_integer_token2] = ACTIONS(692), + [aux_sym_float_token1] = ACTIONS(694), + [aux_sym_float_token2] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [aux_sym_string_token1] = ACTIONS(692), + [aux_sym_string_token3] = ACTIONS(692), [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(845), + [sym__unaryExpression] = STATE(177), + [sym_runtime_type_check_expression] = STATE(177), + [sym_switch_expression] = STATE(177), + [sym_cast_expression] = STATE(177), + [sym_type_trace_expression] = STATE(177), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(177), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_structure_type_pair] = STATE(3204), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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(845), + [sym__unaryExpression] = STATE(138), + [sym_runtime_type_check_expression] = STATE(138), + [sym_switch_expression] = STATE(138), + [sym_cast_expression] = STATE(138), + [sym_type_trace_expression] = STATE(138), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(138), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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(845), + [sym__unaryExpression] = STATE(156), + [sym_runtime_type_check_expression] = STATE(156), + [sym_switch_expression] = STATE(156), + [sym_cast_expression] = STATE(156), + [sym_type_trace_expression] = STATE(156), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(156), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_structure_type_pair] = STATE(3401), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_package] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_import] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_using] = ACTIONS(1088), + [anon_sym_throw] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_cast] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_DOLLARtype] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_untyped] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_this] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1088), + [anon_sym_AT_COLON] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1088), + [anon_sym_catch] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_new] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_GT_GT_GT] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_EQ_GT] = ACTIONS(1086), + [anon_sym_QMARK_QMARK] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1088), + [anon_sym_macro] = ACTIONS(1088), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_public] = ACTIONS(1088), + [anon_sym_private] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_overload] = ACTIONS(1088), + [anon_sym_override] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1088), + [anon_sym_var] = ACTIONS(1088), + [aux_sym_integer_token1] = ACTIONS(1088), + [aux_sym_integer_token2] = ACTIONS(1086), + [aux_sym_float_token1] = ACTIONS(1088), + [aux_sym_float_token2] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1088), + [anon_sym_false] = ACTIONS(1088), + [aux_sym_string_token1] = ACTIONS(1086), + [aux_sym_string_token3] = ACTIONS(1086), [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), + [ts_builtin_sym_end] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(1090), + [anon_sym_package] = ACTIONS(1092), + [anon_sym_DOT] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_using] = ACTIONS(1092), + [anon_sym_throw] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_cast] = ACTIONS(1092), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_DOLLARtype] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_untyped] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_RBRACK] = ACTIONS(1090), + [anon_sym_this] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1092), + [anon_sym_AT_COLON] = ACTIONS(1090), + [anon_sym_try] = ACTIONS(1092), + [anon_sym_catch] = ACTIONS(1092), + [anon_sym_else] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_GT_GT_GT] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1092), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_EQ_GT] = ACTIONS(1090), + [anon_sym_QMARK_QMARK] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1092), + [anon_sym_macro] = ACTIONS(1092), + [anon_sym_abstract] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_public] = ACTIONS(1092), + [anon_sym_private] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_overload] = ACTIONS(1092), + [anon_sym_override] = ACTIONS(1092), + [anon_sym_final] = ACTIONS(1092), + [anon_sym_class] = ACTIONS(1092), + [anon_sym_interface] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_function] = ACTIONS(1092), + [anon_sym_var] = ACTIONS(1092), + [aux_sym_integer_token1] = ACTIONS(1092), + [aux_sym_integer_token2] = ACTIONS(1090), + [aux_sym_float_token1] = ACTIONS(1092), + [aux_sym_float_token2] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [aux_sym_string_token1] = ACTIONS(1090), + [aux_sym_string_token3] = ACTIONS(1090), [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), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1096), + [anon_sym_POUND] = ACTIONS(1094), + [anon_sym_package] = ACTIONS(1096), + [anon_sym_DOT] = ACTIONS(1096), + [anon_sym_import] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_using] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_COLON] = ACTIONS(1094), + [anon_sym_cast] = ACTIONS(1096), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_DOLLARtype] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_untyped] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_RBRACK] = ACTIONS(1094), + [anon_sym_this] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_AT] = ACTIONS(1096), + [anon_sym_AT_COLON] = ACTIONS(1094), + [anon_sym_try] = ACTIONS(1096), + [anon_sym_catch] = ACTIONS(1096), + [anon_sym_else] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_new] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PERCENT] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1096), + [anon_sym_GT_GT_GT] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1094), + [anon_sym_EQ_GT] = ACTIONS(1094), + [anon_sym_QMARK_QMARK] = ACTIONS(1094), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1094), + [anon_sym_null] = ACTIONS(1096), + [anon_sym_macro] = ACTIONS(1096), + [anon_sym_abstract] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_public] = ACTIONS(1096), + [anon_sym_private] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_overload] = ACTIONS(1096), + [anon_sym_override] = ACTIONS(1096), + [anon_sym_final] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(1096), + [anon_sym_interface] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_function] = ACTIONS(1096), + [anon_sym_var] = ACTIONS(1096), + [aux_sym_integer_token1] = ACTIONS(1096), + [aux_sym_integer_token2] = ACTIONS(1094), + [aux_sym_float_token1] = ACTIONS(1096), + [aux_sym_float_token2] = ACTIONS(1094), + [anon_sym_true] = ACTIONS(1096), + [anon_sym_false] = ACTIONS(1096), + [aux_sym_string_token1] = ACTIONS(1094), + [aux_sym_string_token3] = ACTIONS(1094), [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), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1098), + [anon_sym_package] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_COLON] = ACTIONS(1098), + [anon_sym_cast] = ACTIONS(1100), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_DOLLARtype] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_untyped] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_RBRACK] = ACTIONS(1098), + [anon_sym_this] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1100), + [anon_sym_AT_COLON] = ACTIONS(1098), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_catch] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_GT_GT_GT] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(1098), + [anon_sym_QMARK_QMARK] = ACTIONS(1098), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), + [anon_sym_null] = ACTIONS(1100), + [anon_sym_macro] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_overload] = ACTIONS(1100), + [anon_sym_override] = ACTIONS(1100), + [anon_sym_final] = ACTIONS(1100), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1100), + [anon_sym_var] = ACTIONS(1100), + [aux_sym_integer_token1] = ACTIONS(1100), + [aux_sym_integer_token2] = ACTIONS(1098), + [aux_sym_float_token1] = ACTIONS(1100), + [aux_sym_float_token2] = ACTIONS(1098), + [anon_sym_true] = ACTIONS(1100), + [anon_sym_false] = ACTIONS(1100), + [aux_sym_string_token1] = ACTIONS(1098), + [aux_sym_string_token3] = ACTIONS(1098), [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), + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(1102), + [anon_sym_package] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_using] = ACTIONS(1104), + [anon_sym_throw] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_COLON] = ACTIONS(1102), + [anon_sym_cast] = ACTIONS(1104), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_DOLLARtype] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_untyped] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_RBRACK] = ACTIONS(1102), + [anon_sym_this] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(1104), + [anon_sym_AT_COLON] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(1104), + [anon_sym_catch] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_new] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1104), + [anon_sym_GT_GT_GT] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_EQ_GT] = ACTIONS(1102), + [anon_sym_QMARK_QMARK] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1102), + [anon_sym_null] = ACTIONS(1104), + [anon_sym_macro] = ACTIONS(1104), + [anon_sym_abstract] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_overload] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_final] = ACTIONS(1104), + [anon_sym_class] = ACTIONS(1104), + [anon_sym_interface] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_var] = ACTIONS(1104), + [aux_sym_integer_token1] = ACTIONS(1104), + [aux_sym_integer_token2] = ACTIONS(1102), + [aux_sym_float_token1] = ACTIONS(1104), + [aux_sym_float_token2] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [aux_sym_string_token1] = ACTIONS(1102), + [aux_sym_string_token3] = ACTIONS(1102), [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), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_POUND] = ACTIONS(1106), + [anon_sym_package] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_using] = ACTIONS(1108), + [anon_sym_throw] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(1106), + [anon_sym_cast] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_DOLLARtype] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_untyped] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_RBRACK] = ACTIONS(1106), + [anon_sym_this] = ACTIONS(1108), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1108), + [anon_sym_AT_COLON] = ACTIONS(1106), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_catch] = ACTIONS(1108), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_new] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1106), + [anon_sym_GT_GT] = ACTIONS(1108), + [anon_sym_GT_GT_GT] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_EQ_EQ] = ACTIONS(1106), + [anon_sym_BANG_EQ] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_LT_EQ] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1106), + [anon_sym_EQ_GT] = ACTIONS(1106), + [anon_sym_QMARK_QMARK] = ACTIONS(1106), + [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1106), + [anon_sym_null] = ACTIONS(1108), + [anon_sym_macro] = ACTIONS(1108), + [anon_sym_abstract] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_public] = ACTIONS(1108), + [anon_sym_private] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_overload] = ACTIONS(1108), + [anon_sym_override] = ACTIONS(1108), + [anon_sym_final] = ACTIONS(1108), + [anon_sym_class] = ACTIONS(1108), + [anon_sym_interface] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_function] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1108), + [aux_sym_integer_token1] = ACTIONS(1108), + [aux_sym_integer_token2] = ACTIONS(1106), + [aux_sym_float_token1] = ACTIONS(1108), + [aux_sym_float_token2] = ACTIONS(1106), + [anon_sym_true] = ACTIONS(1108), + [anon_sym_false] = ACTIONS(1108), + [aux_sym_string_token1] = ACTIONS(1106), + [aux_sym_string_token3] = ACTIONS(1106), [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), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1110), + [anon_sym_package] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_using] = ACTIONS(1112), + [anon_sym_throw] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_RPAREN] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_cast] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_DOLLARtype] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_untyped] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_RBRACK] = ACTIONS(1110), + [anon_sym_this] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_AT_COLON] = ACTIONS(1110), + [anon_sym_try] = ACTIONS(1112), + [anon_sym_catch] = ACTIONS(1112), + [anon_sym_else] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_new] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_GT_GT_GT] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_EQ_GT] = ACTIONS(1110), + [anon_sym_QMARK_QMARK] = ACTIONS(1110), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1110), + [anon_sym_null] = ACTIONS(1112), + [anon_sym_macro] = ACTIONS(1112), + [anon_sym_abstract] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_private] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_overload] = ACTIONS(1112), + [anon_sym_override] = ACTIONS(1112), + [anon_sym_final] = ACTIONS(1112), + [anon_sym_class] = ACTIONS(1112), + [anon_sym_interface] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_function] = ACTIONS(1112), + [anon_sym_var] = ACTIONS(1112), + [aux_sym_integer_token1] = ACTIONS(1112), + [aux_sym_integer_token2] = ACTIONS(1110), + [aux_sym_float_token1] = ACTIONS(1112), + [aux_sym_float_token2] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [aux_sym_string_token1] = ACTIONS(1110), + [aux_sym_string_token3] = ACTIONS(1110), [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(845), + [sym__unaryExpression] = STATE(137), + [sym_runtime_type_check_expression] = STATE(137), + [sym_switch_expression] = STATE(137), + [sym_cast_expression] = STATE(137), + [sym_type_trace_expression] = STATE(137), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(137), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_structure_type_pair] = STATE(3426), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1116), + [anon_sym_POUND] = ACTIONS(1114), + [anon_sym_package] = ACTIONS(1116), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_import] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_using] = ACTIONS(1116), + [anon_sym_throw] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_RPAREN] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_COLON] = ACTIONS(1114), + [anon_sym_cast] = ACTIONS(1116), + [anon_sym_COMMA] = ACTIONS(1114), + [anon_sym_DOLLARtype] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_untyped] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_RBRACK] = ACTIONS(1114), + [anon_sym_this] = ACTIONS(1116), + [anon_sym_QMARK] = ACTIONS(1116), + [anon_sym_AT] = ACTIONS(1116), + [anon_sym_AT_COLON] = ACTIONS(1114), + [anon_sym_try] = ACTIONS(1116), + [anon_sym_catch] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PERCENT] = ACTIONS(1114), + [anon_sym_SLASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_LT_LT] = ACTIONS(1114), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_GT_GT_GT] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_PIPE] = ACTIONS(1116), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_AMP_AMP] = ACTIONS(1114), + [anon_sym_PIPE_PIPE] = ACTIONS(1114), + [anon_sym_EQ_EQ] = ACTIONS(1114), + [anon_sym_BANG_EQ] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_EQ_GT] = ACTIONS(1114), + [anon_sym_QMARK_QMARK] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(1116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [anon_sym_null] = ACTIONS(1116), + [anon_sym_macro] = ACTIONS(1116), + [anon_sym_abstract] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_public] = ACTIONS(1116), + [anon_sym_private] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_overload] = ACTIONS(1116), + [anon_sym_override] = ACTIONS(1116), + [anon_sym_final] = ACTIONS(1116), + [anon_sym_class] = ACTIONS(1116), + [anon_sym_interface] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_function] = ACTIONS(1116), + [anon_sym_var] = ACTIONS(1116), + [aux_sym_integer_token1] = ACTIONS(1116), + [aux_sym_integer_token2] = ACTIONS(1114), + [aux_sym_float_token1] = ACTIONS(1116), + [aux_sym_float_token2] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [aux_sym_string_token1] = ACTIONS(1114), + [aux_sym_string_token3] = ACTIONS(1114), [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), + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1118), + [anon_sym_package] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1120), + [anon_sym_import] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_using] = ACTIONS(1120), + [anon_sym_throw] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_RPAREN] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_COLON] = ACTIONS(1118), + [anon_sym_cast] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1118), + [anon_sym_DOLLARtype] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_untyped] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_RBRACK] = ACTIONS(1118), + [anon_sym_this] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_AT_COLON] = ACTIONS(1118), + [anon_sym_try] = ACTIONS(1120), + [anon_sym_catch] = ACTIONS(1120), + [anon_sym_else] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PERCENT] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1118), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_GT_GT_GT] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_CARET] = ACTIONS(1118), + [anon_sym_AMP_AMP] = ACTIONS(1118), + [anon_sym_PIPE_PIPE] = ACTIONS(1118), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1118), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_GT_EQ] = ACTIONS(1118), + [anon_sym_EQ_GT] = ACTIONS(1118), + [anon_sym_QMARK_QMARK] = ACTIONS(1118), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1118), + [anon_sym_null] = ACTIONS(1120), + [anon_sym_macro] = ACTIONS(1120), + [anon_sym_abstract] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_public] = ACTIONS(1120), + [anon_sym_private] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_overload] = ACTIONS(1120), + [anon_sym_override] = ACTIONS(1120), + [anon_sym_final] = ACTIONS(1120), + [anon_sym_class] = ACTIONS(1120), + [anon_sym_interface] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(1120), + [anon_sym_var] = ACTIONS(1120), + [aux_sym_integer_token1] = ACTIONS(1120), + [aux_sym_integer_token2] = ACTIONS(1118), + [aux_sym_float_token1] = ACTIONS(1120), + [aux_sym_float_token2] = ACTIONS(1118), + [anon_sym_true] = ACTIONS(1120), + [anon_sym_false] = ACTIONS(1120), + [aux_sym_string_token1] = ACTIONS(1118), + [aux_sym_string_token3] = ACTIONS(1118), [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), + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(1122), + [anon_sym_package] = ACTIONS(1124), + [anon_sym_DOT] = ACTIONS(1124), + [anon_sym_import] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(1124), + [anon_sym_throw] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_RPAREN] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_COLON] = ACTIONS(1122), + [anon_sym_cast] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1122), + [anon_sym_DOLLARtype] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_untyped] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_RBRACK] = ACTIONS(1122), + [anon_sym_this] = ACTIONS(1124), + [anon_sym_QMARK] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [anon_sym_AT_COLON] = ACTIONS(1122), + [anon_sym_try] = ACTIONS(1124), + [anon_sym_catch] = ACTIONS(1124), + [anon_sym_else] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PERCENT] = ACTIONS(1122), + [anon_sym_SLASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_GT_GT_GT] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_CARET] = ACTIONS(1122), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_EQ_EQ] = ACTIONS(1122), + [anon_sym_BANG_EQ] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1124), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT] = ACTIONS(1124), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_EQ_GT] = ACTIONS(1122), + [anon_sym_QMARK_QMARK] = ACTIONS(1122), + [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1124), + [anon_sym_macro] = ACTIONS(1124), + [anon_sym_abstract] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_public] = ACTIONS(1124), + [anon_sym_private] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_overload] = ACTIONS(1124), + [anon_sym_override] = ACTIONS(1124), + [anon_sym_final] = ACTIONS(1124), + [anon_sym_class] = ACTIONS(1124), + [anon_sym_interface] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_function] = ACTIONS(1124), + [anon_sym_var] = ACTIONS(1124), + [aux_sym_integer_token1] = ACTIONS(1124), + [aux_sym_integer_token2] = ACTIONS(1122), + [aux_sym_float_token1] = ACTIONS(1124), + [aux_sym_float_token2] = ACTIONS(1122), + [anon_sym_true] = ACTIONS(1124), + [anon_sym_false] = ACTIONS(1124), + [aux_sym_string_token1] = ACTIONS(1122), + [aux_sym_string_token3] = ACTIONS(1122), [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), + [ts_builtin_sym_end] = ACTIONS(698), + [sym_identifier] = ACTIONS(700), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_package] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_using] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(698), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_for] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_this] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_AT_COLON] = ACTIONS(698), + [anon_sym_try] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_new] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(700), + [anon_sym_macro] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(700), + [anon_sym_inline] = ACTIONS(700), + [anon_sym_overload] = ACTIONS(700), + [anon_sym_override] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_function] = ACTIONS(700), + [anon_sym_var] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(700), + [aux_sym_integer_token2] = ACTIONS(698), + [aux_sym_float_token1] = ACTIONS(700), + [aux_sym_float_token2] = ACTIONS(698), + [anon_sym_true] = ACTIONS(700), + [anon_sym_false] = ACTIONS(700), + [aux_sym_string_token1] = ACTIONS(698), + [aux_sym_string_token3] = ACTIONS(698), [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(845), + [sym__unaryExpression] = STATE(139), + [sym_runtime_type_check_expression] = STATE(139), + [sym_switch_expression] = STATE(139), + [sym_cast_expression] = STATE(139), + [sym_type_trace_expression] = STATE(139), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(139), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_structure_type_pair] = STATE(3294), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [ts_builtin_sym_end] = ACTIONS(698), + [sym_identifier] = ACTIONS(700), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_package] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_using] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(698), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_for] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_this] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_AT_COLON] = ACTIONS(698), + [anon_sym_try] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_new] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(700), + [anon_sym_macro] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(700), + [anon_sym_inline] = ACTIONS(700), + [anon_sym_overload] = ACTIONS(700), + [anon_sym_override] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_function] = ACTIONS(700), + [anon_sym_var] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(700), + [aux_sym_integer_token2] = ACTIONS(698), + [aux_sym_float_token1] = ACTIONS(700), + [aux_sym_float_token2] = ACTIONS(698), + [anon_sym_true] = ACTIONS(700), + [anon_sym_false] = ACTIONS(700), + [aux_sym_string_token1] = ACTIONS(698), + [aux_sym_string_token3] = ACTIONS(698), [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), + [ts_builtin_sym_end] = ACTIONS(842), + [sym_identifier] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(842), + [anon_sym_package] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(842), + [anon_sym_using] = ACTIONS(844), + [anon_sym_throw] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_cast] = ACTIONS(844), + [anon_sym_COMMA] = ACTIONS(842), + [anon_sym_DOLLARtype] = ACTIONS(842), + [anon_sym_for] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_untyped] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_RBRACK] = ACTIONS(842), + [anon_sym_this] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_AT_COLON] = ACTIONS(842), + [anon_sym_try] = ACTIONS(844), + [anon_sym_catch] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_new] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_SLASH] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(842), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_GT_GT_GT] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(842), + [anon_sym_PIPE_PIPE] = ACTIONS(842), + [anon_sym_EQ_EQ] = ACTIONS(842), + [anon_sym_BANG_EQ] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_EQ] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_GT_EQ] = ACTIONS(842), + [anon_sym_EQ_GT] = ACTIONS(842), + [anon_sym_QMARK_QMARK] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(842), + [anon_sym_null] = ACTIONS(844), + [anon_sym_macro] = ACTIONS(844), + [anon_sym_abstract] = ACTIONS(844), + [anon_sym_static] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_extern] = ACTIONS(844), + [anon_sym_inline] = ACTIONS(844), + [anon_sym_overload] = ACTIONS(844), + [anon_sym_override] = ACTIONS(844), + [anon_sym_final] = ACTIONS(844), + [anon_sym_class] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(844), + [anon_sym_enum] = ACTIONS(844), + [anon_sym_typedef] = ACTIONS(844), + [anon_sym_function] = ACTIONS(844), + [anon_sym_var] = ACTIONS(844), + [aux_sym_integer_token1] = ACTIONS(844), + [aux_sym_integer_token2] = ACTIONS(842), + [aux_sym_float_token1] = ACTIONS(844), + [aux_sym_float_token2] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [aux_sym_string_token1] = ACTIONS(842), + [aux_sym_string_token3] = ACTIONS(842), [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), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1130), + [anon_sym_POUND] = ACTIONS(1128), + [anon_sym_package] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_import] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_using] = ACTIONS(1130), + [anon_sym_throw] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_COLON] = ACTIONS(1128), + [anon_sym_cast] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_DOLLARtype] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_untyped] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_RBRACK] = ACTIONS(1128), + [anon_sym_this] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(1130), + [anon_sym_AT_COLON] = ACTIONS(1128), + [anon_sym_try] = ACTIONS(1130), + [anon_sym_catch] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_new] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PERCENT] = ACTIONS(1128), + [anon_sym_SLASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1128), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_GT_GT_GT] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(1128), + [anon_sym_BANG_EQ] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_GT_EQ] = ACTIONS(1128), + [anon_sym_EQ_GT] = ACTIONS(1128), + [anon_sym_QMARK_QMARK] = ACTIONS(1128), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1128), + [anon_sym_null] = ACTIONS(1130), + [anon_sym_macro] = ACTIONS(1130), + [anon_sym_abstract] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_overload] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1130), + [anon_sym_class] = ACTIONS(1130), + [anon_sym_interface] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_function] = ACTIONS(1130), + [anon_sym_var] = ACTIONS(1130), + [aux_sym_integer_token1] = ACTIONS(1130), + [aux_sym_integer_token2] = ACTIONS(1128), + [aux_sym_float_token1] = ACTIONS(1130), + [aux_sym_float_token2] = ACTIONS(1128), + [anon_sym_true] = ACTIONS(1130), + [anon_sym_false] = ACTIONS(1130), + [aux_sym_string_token1] = ACTIONS(1128), + [aux_sym_string_token3] = ACTIONS(1128), [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), + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_import] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_using] = ACTIONS(1054), + [anon_sym_throw] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COLON] = ACTIONS(1132), + [anon_sym_cast] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_DOLLARtype] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_RBRACK] = ACTIONS(1050), + [anon_sym_this] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1054), + [anon_sym_AT_COLON] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_EQ_GT] = ACTIONS(1050), + [anon_sym_QMARK_QMARK] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_macro] = ACTIONS(1054), + [anon_sym_abstract] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_public] = ACTIONS(1054), + [anon_sym_private] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_overload] = ACTIONS(1054), + [anon_sym_override] = ACTIONS(1054), + [anon_sym_final] = ACTIONS(1054), + [anon_sym_class] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_function] = ACTIONS(1054), + [anon_sym_var] = ACTIONS(1054), + [aux_sym_integer_token1] = ACTIONS(1054), + [aux_sym_integer_token2] = ACTIONS(1050), + [aux_sym_float_token1] = ACTIONS(1054), + [aux_sym_float_token2] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym_string_token1] = ACTIONS(1050), + [aux_sym_string_token3] = ACTIONS(1050), [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(1134), + [sym_identifier] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(1134), + [anon_sym_package] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_using] = ACTIONS(1136), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_cast] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_DOLLARtype] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_untyped] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_RBRACK] = ACTIONS(1134), + [anon_sym_this] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1136), + [anon_sym_AT_COLON] = ACTIONS(1134), + [anon_sym_try] = ACTIONS(1136), + [anon_sym_catch] = ACTIONS(1136), + [anon_sym_else] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_new] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_SLASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_GT_GT_GT] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1134), + [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [anon_sym_EQ_EQ] = ACTIONS(1134), + [anon_sym_BANG_EQ] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_LT_EQ] = ACTIONS(1134), + [anon_sym_GT] = ACTIONS(1136), + [anon_sym_GT_EQ] = ACTIONS(1134), + [anon_sym_EQ_GT] = ACTIONS(1134), + [anon_sym_QMARK_QMARK] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1134), + [anon_sym_null] = ACTIONS(1136), + [anon_sym_macro] = ACTIONS(1136), + [anon_sym_abstract] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_public] = ACTIONS(1136), + [anon_sym_private] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_overload] = ACTIONS(1136), + [anon_sym_override] = ACTIONS(1136), + [anon_sym_final] = ACTIONS(1136), + [anon_sym_class] = ACTIONS(1136), + [anon_sym_interface] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_function] = ACTIONS(1136), + [anon_sym_var] = ACTIONS(1136), + [aux_sym_integer_token1] = ACTIONS(1136), + [aux_sym_integer_token2] = ACTIONS(1134), + [aux_sym_float_token1] = ACTIONS(1136), + [aux_sym_float_token2] = ACTIONS(1134), + [anon_sym_true] = ACTIONS(1136), + [anon_sym_false] = ACTIONS(1136), + [aux_sym_string_token1] = ACTIONS(1134), + [aux_sym_string_token3] = ACTIONS(1134), [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(1138), + [sym_identifier] = ACTIONS(1141), + [anon_sym_POUND] = ACTIONS(1138), + [anon_sym_package] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_import] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_using] = ACTIONS(1141), + [anon_sym_throw] = ACTIONS(1141), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_cast] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_DOLLARtype] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_untyped] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1141), + [anon_sym_continue] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_RBRACK] = ACTIONS(1138), + [anon_sym_this] = ACTIONS(1141), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1141), + [anon_sym_AT_COLON] = ACTIONS(1138), + [anon_sym_try] = ACTIONS(1141), + [anon_sym_catch] = ACTIONS(1141), + [anon_sym_else] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1141), + [anon_sym_GT_GT_GT] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_EQ_EQ] = ACTIONS(1138), + [anon_sym_BANG_EQ] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1141), + [anon_sym_LT_EQ] = ACTIONS(1138), + [anon_sym_GT] = ACTIONS(1141), + [anon_sym_GT_EQ] = ACTIONS(1138), + [anon_sym_EQ_GT] = ACTIONS(1138), + [anon_sym_QMARK_QMARK] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1138), + [anon_sym_null] = ACTIONS(1141), + [anon_sym_macro] = ACTIONS(1141), + [anon_sym_abstract] = ACTIONS(1141), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_public] = ACTIONS(1141), + [anon_sym_private] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_overload] = ACTIONS(1141), + [anon_sym_override] = ACTIONS(1141), + [anon_sym_final] = ACTIONS(1141), + [anon_sym_class] = ACTIONS(1141), + [anon_sym_interface] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_typedef] = ACTIONS(1141), + [anon_sym_function] = ACTIONS(1141), + [anon_sym_var] = ACTIONS(1141), + [aux_sym_integer_token1] = ACTIONS(1141), + [aux_sym_integer_token2] = ACTIONS(1138), + [aux_sym_float_token1] = ACTIONS(1141), + [aux_sym_float_token2] = ACTIONS(1138), + [anon_sym_true] = ACTIONS(1141), + [anon_sym_false] = ACTIONS(1141), + [aux_sym_string_token1] = ACTIONS(1138), + [aux_sym_string_token3] = ACTIONS(1138), [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), + [sym__rhs_expression] = STATE(845), + [sym__unaryExpression] = STATE(138), + [sym_runtime_type_check_expression] = STATE(138), + [sym_switch_expression] = STATE(138), + [sym_cast_expression] = STATE(138), + [sym_type_trace_expression] = STATE(138), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(138), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1144), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1146), + [anon_sym_package] = ACTIONS(1148), + [anon_sym_DOT] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(1148), + [anon_sym_throw] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_RPAREN] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_COLON] = ACTIONS(1146), + [anon_sym_cast] = ACTIONS(1148), + [anon_sym_COMMA] = ACTIONS(1146), + [anon_sym_DOLLARtype] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_untyped] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_RBRACK] = ACTIONS(1146), + [anon_sym_this] = ACTIONS(1148), + [anon_sym_QMARK] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_AT_COLON] = ACTIONS(1146), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_catch] = ACTIONS(1148), + [anon_sym_else] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1148), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_PERCENT] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_GT_GT_GT] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_EQ_EQ] = ACTIONS(1146), + [anon_sym_BANG_EQ] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_LT_EQ] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_GT_EQ] = ACTIONS(1146), + [anon_sym_EQ_GT] = ACTIONS(1146), + [anon_sym_QMARK_QMARK] = ACTIONS(1146), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1148), + [anon_sym_macro] = ACTIONS(1148), + [anon_sym_abstract] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1148), + [anon_sym_private] = ACTIONS(1148), + [anon_sym_extern] = ACTIONS(1148), + [anon_sym_inline] = ACTIONS(1148), + [anon_sym_overload] = ACTIONS(1148), + [anon_sym_override] = ACTIONS(1148), + [anon_sym_final] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_interface] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1148), + [anon_sym_function] = ACTIONS(1148), + [anon_sym_var] = ACTIONS(1148), + [aux_sym_integer_token1] = ACTIONS(1148), + [aux_sym_integer_token2] = ACTIONS(1146), + [aux_sym_float_token1] = ACTIONS(1148), + [aux_sym_float_token2] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [aux_sym_string_token1] = ACTIONS(1146), + [aux_sym_string_token3] = ACTIONS(1146), [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), + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1152), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_package] = ACTIONS(1152), + [anon_sym_DOT] = ACTIONS(1152), + [anon_sym_import] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1150), + [anon_sym_using] = ACTIONS(1152), + [anon_sym_throw] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_COLON] = ACTIONS(1150), + [anon_sym_cast] = ACTIONS(1152), + [anon_sym_COMMA] = ACTIONS(1150), + [anon_sym_DOLLARtype] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_untyped] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_RBRACK] = ACTIONS(1150), + [anon_sym_this] = ACTIONS(1152), + [anon_sym_QMARK] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1152), + [anon_sym_AT_COLON] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1152), + [anon_sym_catch] = ACTIONS(1152), + [anon_sym_else] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(1152), + [anon_sym_new] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1150), + [anon_sym_PERCENT] = ACTIONS(1150), + [anon_sym_SLASH] = ACTIONS(1152), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_GT_GT_GT] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_CARET] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_EQ_EQ] = ACTIONS(1150), + [anon_sym_BANG_EQ] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_EQ] = ACTIONS(1150), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_GT_EQ] = ACTIONS(1150), + [anon_sym_EQ_GT] = ACTIONS(1150), + [anon_sym_QMARK_QMARK] = ACTIONS(1150), + [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1150), + [anon_sym_null] = ACTIONS(1152), + [anon_sym_macro] = ACTIONS(1152), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_extern] = ACTIONS(1152), + [anon_sym_inline] = ACTIONS(1152), + [anon_sym_overload] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_final] = ACTIONS(1152), + [anon_sym_class] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1152), + [anon_sym_function] = ACTIONS(1152), + [anon_sym_var] = ACTIONS(1152), + [aux_sym_integer_token1] = ACTIONS(1152), + [aux_sym_integer_token2] = ACTIONS(1150), + [aux_sym_float_token1] = ACTIONS(1152), + [aux_sym_float_token2] = ACTIONS(1150), + [anon_sym_true] = ACTIONS(1152), + [anon_sym_false] = ACTIONS(1152), + [aux_sym_string_token1] = ACTIONS(1150), + [aux_sym_string_token3] = ACTIONS(1150), [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(1154), + [sym_identifier] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1154), + [anon_sym_package] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(1156), + [anon_sym_import] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_using] = ACTIONS(1156), + [anon_sym_throw] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_COLON] = ACTIONS(1154), + [anon_sym_cast] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1154), + [anon_sym_DOLLARtype] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_untyped] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_RBRACK] = ACTIONS(1154), + [anon_sym_this] = ACTIONS(1156), + [anon_sym_QMARK] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1156), + [anon_sym_AT_COLON] = ACTIONS(1154), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_catch] = ACTIONS(1156), + [anon_sym_else] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_do] = ACTIONS(1156), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [anon_sym_PERCENT] = ACTIONS(1154), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1154), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_GT_GT_GT] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1154), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE_PIPE] = ACTIONS(1154), + [anon_sym_EQ_EQ] = ACTIONS(1154), + [anon_sym_BANG_EQ] = ACTIONS(1154), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_LT_EQ] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_GT_EQ] = ACTIONS(1154), + [anon_sym_EQ_GT] = ACTIONS(1154), + [anon_sym_QMARK_QMARK] = ACTIONS(1154), + [anon_sym_EQ] = ACTIONS(1156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1154), + [anon_sym_null] = ACTIONS(1156), + [anon_sym_macro] = ACTIONS(1156), + [anon_sym_abstract] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_public] = ACTIONS(1156), + [anon_sym_private] = ACTIONS(1156), + [anon_sym_extern] = ACTIONS(1156), + [anon_sym_inline] = ACTIONS(1156), + [anon_sym_overload] = ACTIONS(1156), + [anon_sym_override] = ACTIONS(1156), + [anon_sym_final] = ACTIONS(1156), + [anon_sym_class] = ACTIONS(1156), + [anon_sym_interface] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(1156), + [anon_sym_var] = ACTIONS(1156), + [aux_sym_integer_token1] = ACTIONS(1156), + [aux_sym_integer_token2] = ACTIONS(1154), + [aux_sym_float_token1] = ACTIONS(1156), + [aux_sym_float_token2] = ACTIONS(1154), + [anon_sym_true] = ACTIONS(1156), + [anon_sym_false] = ACTIONS(1156), + [aux_sym_string_token1] = ACTIONS(1154), + [aux_sym_string_token3] = ACTIONS(1154), [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(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_package] = ACTIONS(1160), + [anon_sym_DOT] = ACTIONS(1160), + [anon_sym_import] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_using] = ACTIONS(1160), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_RPAREN] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_COLON] = ACTIONS(1158), + [anon_sym_cast] = ACTIONS(1160), + [anon_sym_COMMA] = ACTIONS(1158), + [anon_sym_DOLLARtype] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_untyped] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_RBRACK] = ACTIONS(1158), + [anon_sym_this] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1160), + [anon_sym_AT_COLON] = ACTIONS(1158), + [anon_sym_try] = ACTIONS(1160), + [anon_sym_catch] = ACTIONS(1160), + [anon_sym_else] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_new] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_PERCENT] = ACTIONS(1158), + [anon_sym_SLASH] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1158), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_GT_GT_GT] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_AMP_AMP] = ACTIONS(1158), + [anon_sym_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1158), + [anon_sym_BANG_EQ] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_LT_EQ] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_GT_EQ] = ACTIONS(1158), + [anon_sym_EQ_GT] = ACTIONS(1158), + [anon_sym_QMARK_QMARK] = ACTIONS(1158), + [anon_sym_EQ] = ACTIONS(1160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1158), + [anon_sym_null] = ACTIONS(1160), + [anon_sym_macro] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_extern] = ACTIONS(1160), + [anon_sym_inline] = ACTIONS(1160), + [anon_sym_overload] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_final] = ACTIONS(1160), + [anon_sym_class] = ACTIONS(1160), + [anon_sym_interface] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1160), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_var] = ACTIONS(1160), + [aux_sym_integer_token1] = ACTIONS(1160), + [aux_sym_integer_token2] = ACTIONS(1158), + [aux_sym_float_token1] = ACTIONS(1160), + [aux_sym_float_token2] = ACTIONS(1158), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [aux_sym_string_token1] = ACTIONS(1158), + [aux_sym_string_token3] = ACTIONS(1158), [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(1162), + [sym_identifier] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1162), + [anon_sym_package] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_using] = ACTIONS(1164), + [anon_sym_throw] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_COLON] = ACTIONS(1162), + [anon_sym_cast] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1162), + [anon_sym_DOLLARtype] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_untyped] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_RBRACK] = ACTIONS(1162), + [anon_sym_this] = ACTIONS(1164), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_AT_COLON] = ACTIONS(1162), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_catch] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_do] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_PERCENT] = ACTIONS(1162), + [anon_sym_SLASH] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1164), + [anon_sym_GT_GT_GT] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1162), + [anon_sym_BANG_EQ] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1162), + [anon_sym_EQ_GT] = ACTIONS(1162), + [anon_sym_QMARK_QMARK] = ACTIONS(1162), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1162), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_macro] = ACTIONS(1164), + [anon_sym_abstract] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1164), + [anon_sym_public] = ACTIONS(1164), + [anon_sym_private] = ACTIONS(1164), + [anon_sym_extern] = ACTIONS(1164), + [anon_sym_inline] = ACTIONS(1164), + [anon_sym_overload] = ACTIONS(1164), + [anon_sym_override] = ACTIONS(1164), + [anon_sym_final] = ACTIONS(1164), + [anon_sym_class] = ACTIONS(1164), + [anon_sym_interface] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(1164), + [anon_sym_var] = ACTIONS(1164), + [aux_sym_integer_token1] = ACTIONS(1164), + [aux_sym_integer_token2] = ACTIONS(1162), + [aux_sym_float_token1] = ACTIONS(1164), + [aux_sym_float_token2] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [aux_sym_string_token1] = ACTIONS(1162), + [aux_sym_string_token3] = ACTIONS(1162), [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(1166), + [sym_identifier] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(1166), + [anon_sym_package] = ACTIONS(1168), + [anon_sym_DOT] = ACTIONS(1168), + [anon_sym_import] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_using] = ACTIONS(1168), + [anon_sym_throw] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_RPAREN] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COLON] = ACTIONS(1166), + [anon_sym_cast] = ACTIONS(1168), + [anon_sym_COMMA] = ACTIONS(1166), + [anon_sym_DOLLARtype] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_untyped] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_RBRACK] = ACTIONS(1166), + [anon_sym_this] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1168), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_AT_COLON] = ACTIONS(1166), + [anon_sym_try] = ACTIONS(1168), + [anon_sym_catch] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_do] = ACTIONS(1168), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_SLASH] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1168), + [anon_sym_GT_GT_GT] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_CARET] = ACTIONS(1166), + [anon_sym_AMP_AMP] = ACTIONS(1166), + [anon_sym_PIPE_PIPE] = ACTIONS(1166), + [anon_sym_EQ_EQ] = ACTIONS(1166), + [anon_sym_BANG_EQ] = ACTIONS(1166), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_LT_EQ] = ACTIONS(1166), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_EQ] = ACTIONS(1166), + [anon_sym_EQ_GT] = ACTIONS(1166), + [anon_sym_QMARK_QMARK] = ACTIONS(1166), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1166), + [anon_sym_null] = ACTIONS(1168), + [anon_sym_macro] = ACTIONS(1168), + [anon_sym_abstract] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_public] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_extern] = ACTIONS(1168), + [anon_sym_inline] = ACTIONS(1168), + [anon_sym_overload] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1168), + [anon_sym_final] = ACTIONS(1168), + [anon_sym_class] = ACTIONS(1168), + [anon_sym_interface] = ACTIONS(1168), + [anon_sym_enum] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1168), + [anon_sym_function] = ACTIONS(1168), + [anon_sym_var] = ACTIONS(1168), + [aux_sym_integer_token1] = ACTIONS(1168), + [aux_sym_integer_token2] = ACTIONS(1166), + [aux_sym_float_token1] = ACTIONS(1168), + [aux_sym_float_token2] = ACTIONS(1166), + [anon_sym_true] = ACTIONS(1168), + [anon_sym_false] = ACTIONS(1168), + [aux_sym_string_token1] = ACTIONS(1166), + [aux_sym_string_token3] = ACTIONS(1166), [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(1170), + [sym_identifier] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_package] = ACTIONS(1172), + [anon_sym_DOT] = ACTIONS(1172), + [anon_sym_import] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_using] = ACTIONS(1172), + [anon_sym_throw] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_RPAREN] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_cast] = ACTIONS(1172), + [anon_sym_COMMA] = ACTIONS(1170), + [anon_sym_DOLLARtype] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_untyped] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_RBRACK] = ACTIONS(1170), + [anon_sym_this] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1172), + [anon_sym_AT_COLON] = ACTIONS(1170), + [anon_sym_try] = ACTIONS(1172), + [anon_sym_catch] = ACTIONS(1172), + [anon_sym_else] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_do] = ACTIONS(1172), + [anon_sym_new] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), + [anon_sym_PERCENT] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_LT_LT] = ACTIONS(1170), + [anon_sym_GT_GT] = ACTIONS(1172), + [anon_sym_GT_GT_GT] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_CARET] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1170), + [anon_sym_EQ_EQ] = ACTIONS(1170), + [anon_sym_BANG_EQ] = ACTIONS(1170), + [anon_sym_LT] = ACTIONS(1172), + [anon_sym_LT_EQ] = ACTIONS(1170), + [anon_sym_GT] = ACTIONS(1172), + [anon_sym_GT_EQ] = ACTIONS(1170), + [anon_sym_EQ_GT] = ACTIONS(1170), + [anon_sym_QMARK_QMARK] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1170), + [anon_sym_null] = ACTIONS(1172), + [anon_sym_macro] = ACTIONS(1172), + [anon_sym_abstract] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_inline] = ACTIONS(1172), + [anon_sym_overload] = ACTIONS(1172), + [anon_sym_override] = ACTIONS(1172), + [anon_sym_final] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_interface] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1172), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_var] = ACTIONS(1172), + [aux_sym_integer_token1] = ACTIONS(1172), + [aux_sym_integer_token2] = ACTIONS(1170), + [aux_sym_float_token1] = ACTIONS(1172), + [aux_sym_float_token2] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1172), + [anon_sym_false] = ACTIONS(1172), + [aux_sym_string_token1] = ACTIONS(1170), + [aux_sym_string_token3] = ACTIONS(1170), [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), + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [anon_sym_POUND] = ACTIONS(1174), + [anon_sym_package] = ACTIONS(1176), + [anon_sym_DOT] = ACTIONS(1176), + [anon_sym_import] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1176), + [anon_sym_throw] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_RPAREN] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_COLON] = ACTIONS(1174), + [anon_sym_cast] = ACTIONS(1176), + [anon_sym_COMMA] = ACTIONS(1174), + [anon_sym_DOLLARtype] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_untyped] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_RBRACK] = ACTIONS(1174), + [anon_sym_this] = ACTIONS(1176), + [anon_sym_QMARK] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1176), + [anon_sym_AT_COLON] = ACTIONS(1174), + [anon_sym_try] = ACTIONS(1176), + [anon_sym_catch] = ACTIONS(1176), + [anon_sym_else] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1176), + [anon_sym_new] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_PERCENT] = ACTIONS(1174), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_LT_LT] = ACTIONS(1174), + [anon_sym_GT_GT] = ACTIONS(1176), + [anon_sym_GT_GT_GT] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_CARET] = ACTIONS(1174), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1174), + [anon_sym_EQ_EQ] = ACTIONS(1174), + [anon_sym_BANG_EQ] = ACTIONS(1174), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_LT_EQ] = ACTIONS(1174), + [anon_sym_GT] = ACTIONS(1176), + [anon_sym_GT_EQ] = ACTIONS(1174), + [anon_sym_EQ_GT] = ACTIONS(1174), + [anon_sym_QMARK_QMARK] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1174), + [anon_sym_null] = ACTIONS(1176), + [anon_sym_macro] = ACTIONS(1176), + [anon_sym_abstract] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_public] = ACTIONS(1176), + [anon_sym_private] = ACTIONS(1176), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym_inline] = ACTIONS(1176), + [anon_sym_overload] = ACTIONS(1176), + [anon_sym_override] = ACTIONS(1176), + [anon_sym_final] = ACTIONS(1176), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_interface] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_typedef] = ACTIONS(1176), + [anon_sym_function] = ACTIONS(1176), + [anon_sym_var] = ACTIONS(1176), + [aux_sym_integer_token1] = ACTIONS(1176), + [aux_sym_integer_token2] = ACTIONS(1174), + [aux_sym_float_token1] = ACTIONS(1176), + [aux_sym_float_token2] = ACTIONS(1174), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [aux_sym_string_token1] = ACTIONS(1174), + [aux_sym_string_token3] = ACTIONS(1174), [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(1178), + [sym_identifier] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_package] = ACTIONS(1180), + [anon_sym_DOT] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_using] = ACTIONS(1180), + [anon_sym_throw] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_RPAREN] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_cast] = ACTIONS(1180), + [anon_sym_COMMA] = ACTIONS(1178), + [anon_sym_DOLLARtype] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_untyped] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_RBRACK] = ACTIONS(1178), + [anon_sym_this] = ACTIONS(1180), + [anon_sym_QMARK] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1180), + [anon_sym_AT_COLON] = ACTIONS(1178), + [anon_sym_try] = ACTIONS(1180), + [anon_sym_catch] = ACTIONS(1180), + [anon_sym_else] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_do] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [anon_sym_PERCENT] = ACTIONS(1178), + [anon_sym_SLASH] = ACTIONS(1180), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_GT_GT] = ACTIONS(1180), + [anon_sym_GT_GT_GT] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1178), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1180), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_EQ_GT] = ACTIONS(1178), + [anon_sym_QMARK_QMARK] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1178), + [anon_sym_null] = ACTIONS(1180), + [anon_sym_macro] = ACTIONS(1180), + [anon_sym_abstract] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_public] = ACTIONS(1180), + [anon_sym_private] = ACTIONS(1180), + [anon_sym_extern] = ACTIONS(1180), + [anon_sym_inline] = ACTIONS(1180), + [anon_sym_overload] = ACTIONS(1180), + [anon_sym_override] = ACTIONS(1180), + [anon_sym_final] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(1180), + [anon_sym_interface] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [anon_sym_typedef] = ACTIONS(1180), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_var] = ACTIONS(1180), + [aux_sym_integer_token1] = ACTIONS(1180), + [aux_sym_integer_token2] = ACTIONS(1178), + [aux_sym_float_token1] = ACTIONS(1180), + [aux_sym_float_token2] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1180), + [anon_sym_false] = ACTIONS(1180), + [aux_sym_string_token1] = ACTIONS(1178), + [aux_sym_string_token3] = ACTIONS(1178), [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(838), + [sym_identifier] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_package] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_import] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(838), + [anon_sym_cast] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_DOLLARtype] = ACTIONS(838), + [anon_sym_for] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_untyped] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(838), + [anon_sym_this] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_AT_COLON] = ACTIONS(838), + [anon_sym_try] = ACTIONS(836), + [anon_sym_catch] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_new] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(838), + [anon_sym_PERCENT] = ACTIONS(838), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(838), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_GT_GT_GT] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_EQ_GT] = ACTIONS(838), + [anon_sym_QMARK_QMARK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(838), + [anon_sym_null] = ACTIONS(836), + [anon_sym_macro] = ACTIONS(836), + [anon_sym_abstract] = ACTIONS(836), + [anon_sym_static] = ACTIONS(836), + [anon_sym_public] = ACTIONS(836), + [anon_sym_private] = ACTIONS(836), + [anon_sym_extern] = ACTIONS(836), + [anon_sym_inline] = ACTIONS(836), + [anon_sym_overload] = ACTIONS(836), + [anon_sym_override] = ACTIONS(836), + [anon_sym_final] = ACTIONS(836), + [anon_sym_class] = ACTIONS(836), + [anon_sym_interface] = ACTIONS(836), + [anon_sym_enum] = ACTIONS(836), + [anon_sym_typedef] = ACTIONS(836), + [anon_sym_function] = ACTIONS(836), + [anon_sym_var] = ACTIONS(836), + [aux_sym_integer_token1] = ACTIONS(836), + [aux_sym_integer_token2] = ACTIONS(838), + [aux_sym_float_token1] = ACTIONS(836), + [aux_sym_float_token2] = ACTIONS(838), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [aux_sym_string_token1] = ACTIONS(838), + [aux_sym_string_token3] = ACTIONS(838), [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(1182), + [sym_identifier] = ACTIONS(1184), + [anon_sym_POUND] = ACTIONS(1182), + [anon_sym_package] = ACTIONS(1184), + [anon_sym_DOT] = ACTIONS(1184), + [anon_sym_import] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_throw] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_RPAREN] = ACTIONS(1182), + [anon_sym_switch] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_COLON] = ACTIONS(1182), + [anon_sym_cast] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_DOLLARtype] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1184), + [anon_sym_untyped] = ACTIONS(1184), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_RBRACK] = ACTIONS(1182), + [anon_sym_this] = ACTIONS(1184), + [anon_sym_QMARK] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1184), + [anon_sym_AT_COLON] = ACTIONS(1182), + [anon_sym_try] = ACTIONS(1184), + [anon_sym_catch] = ACTIONS(1184), + [anon_sym_else] = ACTIONS(1184), + [anon_sym_if] = ACTIONS(1184), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_do] = ACTIONS(1184), + [anon_sym_new] = ACTIONS(1184), + [anon_sym_TILDE] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_PERCENT] = ACTIONS(1182), + [anon_sym_SLASH] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_LT_LT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_GT_GT_GT] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_AMP_AMP] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_BANG_EQ] = ACTIONS(1182), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_LT_EQ] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1184), + [anon_sym_GT_EQ] = ACTIONS(1182), + [anon_sym_EQ_GT] = ACTIONS(1182), + [anon_sym_QMARK_QMARK] = ACTIONS(1182), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1182), + [anon_sym_null] = ACTIONS(1184), + [anon_sym_macro] = ACTIONS(1184), + [anon_sym_abstract] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_extern] = ACTIONS(1184), + [anon_sym_inline] = ACTIONS(1184), + [anon_sym_overload] = ACTIONS(1184), + [anon_sym_override] = ACTIONS(1184), + [anon_sym_final] = ACTIONS(1184), + [anon_sym_class] = ACTIONS(1184), + [anon_sym_interface] = ACTIONS(1184), + [anon_sym_enum] = ACTIONS(1184), + [anon_sym_typedef] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_var] = ACTIONS(1184), + [aux_sym_integer_token1] = ACTIONS(1184), + [aux_sym_integer_token2] = ACTIONS(1182), + [aux_sym_float_token1] = ACTIONS(1184), + [aux_sym_float_token2] = ACTIONS(1182), + [anon_sym_true] = ACTIONS(1184), + [anon_sym_false] = ACTIONS(1184), + [aux_sym_string_token1] = ACTIONS(1182), + [aux_sym_string_token3] = ACTIONS(1182), [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(1186), + [sym_identifier] = ACTIONS(1188), + [anon_sym_POUND] = ACTIONS(1186), + [anon_sym_package] = ACTIONS(1188), + [anon_sym_DOT] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_using] = ACTIONS(1188), + [anon_sym_throw] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_RPAREN] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_COLON] = ACTIONS(1186), + [anon_sym_cast] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1186), + [anon_sym_DOLLARtype] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1188), + [anon_sym_untyped] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1188), + [anon_sym_continue] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_RBRACK] = ACTIONS(1186), + [anon_sym_this] = ACTIONS(1188), + [anon_sym_QMARK] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_AT_COLON] = ACTIONS(1186), + [anon_sym_try] = ACTIONS(1188), + [anon_sym_catch] = ACTIONS(1188), + [anon_sym_else] = ACTIONS(1188), + [anon_sym_if] = ACTIONS(1188), + [anon_sym_while] = ACTIONS(1188), + [anon_sym_do] = ACTIONS(1188), + [anon_sym_new] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1186), + [anon_sym_PERCENT] = ACTIONS(1186), + [anon_sym_SLASH] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1186), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_GT_GT_GT] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_CARET] = ACTIONS(1186), + [anon_sym_AMP_AMP] = ACTIONS(1186), + [anon_sym_PIPE_PIPE] = ACTIONS(1186), + [anon_sym_EQ_EQ] = ACTIONS(1186), + [anon_sym_BANG_EQ] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_EQ] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1186), + [anon_sym_EQ_GT] = ACTIONS(1186), + [anon_sym_QMARK_QMARK] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), + [anon_sym_null] = ACTIONS(1188), + [anon_sym_macro] = ACTIONS(1188), + [anon_sym_abstract] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1188), + [anon_sym_public] = ACTIONS(1188), + [anon_sym_private] = ACTIONS(1188), + [anon_sym_extern] = ACTIONS(1188), + [anon_sym_inline] = ACTIONS(1188), + [anon_sym_overload] = ACTIONS(1188), + [anon_sym_override] = ACTIONS(1188), + [anon_sym_final] = ACTIONS(1188), + [anon_sym_class] = ACTIONS(1188), + [anon_sym_interface] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(1188), + [anon_sym_typedef] = ACTIONS(1188), + [anon_sym_function] = ACTIONS(1188), + [anon_sym_var] = ACTIONS(1188), + [aux_sym_integer_token1] = ACTIONS(1188), + [aux_sym_integer_token2] = ACTIONS(1186), + [aux_sym_float_token1] = ACTIONS(1188), + [aux_sym_float_token2] = ACTIONS(1186), + [anon_sym_true] = ACTIONS(1188), + [anon_sym_false] = ACTIONS(1188), + [aux_sym_string_token1] = ACTIONS(1186), + [aux_sym_string_token3] = ACTIONS(1186), [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(1190), + [sym_identifier] = ACTIONS(1192), + [anon_sym_POUND] = ACTIONS(1190), + [anon_sym_package] = ACTIONS(1192), + [anon_sym_DOT] = ACTIONS(1192), + [anon_sym_import] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1190), + [anon_sym_using] = ACTIONS(1192), + [anon_sym_throw] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1190), + [anon_sym_RPAREN] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_COLON] = ACTIONS(1190), + [anon_sym_cast] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1190), + [anon_sym_DOLLARtype] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_untyped] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_RBRACK] = ACTIONS(1190), + [anon_sym_this] = ACTIONS(1192), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_AT_COLON] = ACTIONS(1190), + [anon_sym_try] = ACTIONS(1192), + [anon_sym_catch] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_do] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_PERCENT] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1192), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_GT_GT_GT] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_CARET] = ACTIONS(1190), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [anon_sym_EQ_EQ] = ACTIONS(1190), + [anon_sym_BANG_EQ] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_EQ] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_GT_EQ] = ACTIONS(1190), + [anon_sym_EQ_GT] = ACTIONS(1190), + [anon_sym_QMARK_QMARK] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1192), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1190), + [anon_sym_null] = ACTIONS(1192), + [anon_sym_macro] = ACTIONS(1192), + [anon_sym_abstract] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1192), + [anon_sym_public] = ACTIONS(1192), + [anon_sym_private] = ACTIONS(1192), + [anon_sym_extern] = ACTIONS(1192), + [anon_sym_inline] = ACTIONS(1192), + [anon_sym_overload] = ACTIONS(1192), + [anon_sym_override] = ACTIONS(1192), + [anon_sym_final] = ACTIONS(1192), + [anon_sym_class] = ACTIONS(1192), + [anon_sym_interface] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(1192), + [anon_sym_var] = ACTIONS(1192), + [aux_sym_integer_token1] = ACTIONS(1192), + [aux_sym_integer_token2] = ACTIONS(1190), + [aux_sym_float_token1] = ACTIONS(1192), + [aux_sym_float_token2] = ACTIONS(1190), + [anon_sym_true] = ACTIONS(1192), + [anon_sym_false] = ACTIONS(1192), + [aux_sym_string_token1] = ACTIONS(1190), + [aux_sym_string_token3] = ACTIONS(1190), [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), + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_package] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_import] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_throw] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_cast] = ACTIONS(1196), + [anon_sym_COMMA] = ACTIONS(1194), + [anon_sym_DOLLARtype] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_untyped] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_RBRACK] = ACTIONS(1194), + [anon_sym_this] = ACTIONS(1196), + [anon_sym_QMARK] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1196), + [anon_sym_AT_COLON] = ACTIONS(1194), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_catch] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_new] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_PERCENT] = ACTIONS(1194), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1194), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_GT_GT_GT] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1194), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1194), + [anon_sym_BANG_EQ] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1194), + [anon_sym_EQ_GT] = ACTIONS(1194), + [anon_sym_QMARK_QMARK] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_macro] = ACTIONS(1196), + [anon_sym_abstract] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_public] = ACTIONS(1196), + [anon_sym_private] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_overload] = ACTIONS(1196), + [anon_sym_override] = ACTIONS(1196), + [anon_sym_final] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1196), + [anon_sym_interface] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_function] = ACTIONS(1196), + [anon_sym_var] = ACTIONS(1196), + [aux_sym_integer_token1] = ACTIONS(1196), + [aux_sym_integer_token2] = ACTIONS(1194), + [aux_sym_float_token1] = ACTIONS(1196), + [aux_sym_float_token2] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [aux_sym_string_token1] = ACTIONS(1194), + [aux_sym_string_token3] = ACTIONS(1194), [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(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_POUND] = ACTIONS(1198), + [anon_sym_package] = ACTIONS(1200), + [anon_sym_DOT] = ACTIONS(1200), + [anon_sym_import] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_using] = ACTIONS(1200), + [anon_sym_throw] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_COLON] = ACTIONS(1198), + [anon_sym_cast] = ACTIONS(1200), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_DOLLARtype] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_untyped] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_RBRACK] = ACTIONS(1198), + [anon_sym_this] = ACTIONS(1200), + [anon_sym_QMARK] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1200), + [anon_sym_AT_COLON] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1200), + [anon_sym_catch] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_new] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PERCENT] = ACTIONS(1198), + [anon_sym_SLASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1200), + [anon_sym_GT_GT_GT] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1200), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1200), + [anon_sym_GT_EQ] = ACTIONS(1198), + [anon_sym_EQ_GT] = ACTIONS(1198), + [anon_sym_QMARK_QMARK] = ACTIONS(1198), + [anon_sym_EQ] = ACTIONS(1200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1198), + [anon_sym_null] = ACTIONS(1200), + [anon_sym_macro] = ACTIONS(1200), + [anon_sym_abstract] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_public] = ACTIONS(1200), + [anon_sym_private] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_overload] = ACTIONS(1200), + [anon_sym_override] = ACTIONS(1200), + [anon_sym_final] = ACTIONS(1200), + [anon_sym_class] = ACTIONS(1200), + [anon_sym_interface] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_function] = ACTIONS(1200), + [anon_sym_var] = ACTIONS(1200), + [aux_sym_integer_token1] = ACTIONS(1200), + [aux_sym_integer_token2] = ACTIONS(1198), + [aux_sym_float_token1] = ACTIONS(1200), + [aux_sym_float_token2] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1200), + [anon_sym_false] = ACTIONS(1200), + [aux_sym_string_token1] = ACTIONS(1198), + [aux_sym_string_token3] = ACTIONS(1198), [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(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1202), + [anon_sym_package] = ACTIONS(1204), + [anon_sym_DOT] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1204), + [anon_sym_throw] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_COLON] = ACTIONS(1202), + [anon_sym_cast] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_DOLLARtype] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_untyped] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_RBRACK] = ACTIONS(1202), + [anon_sym_this] = ACTIONS(1204), + [anon_sym_QMARK] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_AT_COLON] = ACTIONS(1202), + [anon_sym_try] = ACTIONS(1204), + [anon_sym_catch] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_new] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PERCENT] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_LT_LT] = ACTIONS(1202), + [anon_sym_GT_GT] = ACTIONS(1204), + [anon_sym_GT_GT_GT] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_CARET] = ACTIONS(1202), + [anon_sym_AMP_AMP] = ACTIONS(1202), + [anon_sym_PIPE_PIPE] = ACTIONS(1202), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1202), + [anon_sym_QMARK_QMARK] = ACTIONS(1202), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1202), + [anon_sym_null] = ACTIONS(1204), + [anon_sym_macro] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_public] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_overload] = ACTIONS(1204), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_final] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_interface] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_function] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [aux_sym_integer_token1] = ACTIONS(1204), + [aux_sym_integer_token2] = ACTIONS(1202), + [aux_sym_float_token1] = ACTIONS(1204), + [aux_sym_float_token2] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1204), + [anon_sym_false] = ACTIONS(1204), + [aux_sym_string_token1] = ACTIONS(1202), + [aux_sym_string_token3] = ACTIONS(1202), [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(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_package] = ACTIONS(1208), + [anon_sym_DOT] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_using] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_RPAREN] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_cast] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_DOLLARtype] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_untyped] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1206), + [anon_sym_this] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1208), + [anon_sym_AT_COLON] = ACTIONS(1206), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_catch] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_LT_LT] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_GT_GT_GT] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1206), + [anon_sym_AMP_AMP] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1206), + [anon_sym_EQ_EQ] = ACTIONS(1206), + [anon_sym_BANG_EQ] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_LT_EQ] = ACTIONS(1206), + [anon_sym_GT] = ACTIONS(1208), + [anon_sym_GT_EQ] = ACTIONS(1206), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_QMARK] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), + [anon_sym_null] = ACTIONS(1208), + [anon_sym_macro] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_overload] = ACTIONS(1208), + [anon_sym_override] = ACTIONS(1208), + [anon_sym_final] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [aux_sym_integer_token1] = ACTIONS(1208), + [aux_sym_integer_token2] = ACTIONS(1206), + [aux_sym_float_token1] = ACTIONS(1208), + [aux_sym_float_token2] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), + [aux_sym_string_token1] = ACTIONS(1206), + [aux_sym_string_token3] = ACTIONS(1206), [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(1210), + [sym_identifier] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1210), + [anon_sym_package] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_import] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_using] = ACTIONS(1212), + [anon_sym_throw] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_RPAREN] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_COLON] = ACTIONS(1210), + [anon_sym_cast] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1210), + [anon_sym_DOLLARtype] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_untyped] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_RBRACK] = ACTIONS(1210), + [anon_sym_this] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_AT_COLON] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1212), + [anon_sym_catch] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_new] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PERCENT] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_LT_LT] = ACTIONS(1210), + [anon_sym_GT_GT] = ACTIONS(1212), + [anon_sym_GT_GT_GT] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1210), + [anon_sym_AMP_AMP] = ACTIONS(1210), + [anon_sym_PIPE_PIPE] = ACTIONS(1210), + [anon_sym_EQ_EQ] = ACTIONS(1210), + [anon_sym_BANG_EQ] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1212), + [anon_sym_LT_EQ] = ACTIONS(1210), + [anon_sym_GT] = ACTIONS(1212), + [anon_sym_GT_EQ] = ACTIONS(1210), + [anon_sym_EQ_GT] = ACTIONS(1210), + [anon_sym_QMARK_QMARK] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_null] = ACTIONS(1212), + [anon_sym_macro] = ACTIONS(1212), + [anon_sym_abstract] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_overload] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_final] = ACTIONS(1212), + [anon_sym_class] = ACTIONS(1212), + [anon_sym_interface] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_function] = ACTIONS(1212), + [anon_sym_var] = ACTIONS(1212), + [aux_sym_integer_token1] = ACTIONS(1212), + [aux_sym_integer_token2] = ACTIONS(1210), + [aux_sym_float_token1] = ACTIONS(1212), + [aux_sym_float_token2] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1212), + [anon_sym_false] = ACTIONS(1212), + [aux_sym_string_token1] = ACTIONS(1210), + [aux_sym_string_token3] = ACTIONS(1210), [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(1214), + [sym_identifier] = ACTIONS(1216), + [anon_sym_POUND] = ACTIONS(1214), + [anon_sym_package] = ACTIONS(1216), + [anon_sym_DOT] = ACTIONS(1216), + [anon_sym_import] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_using] = ACTIONS(1216), + [anon_sym_throw] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_cast] = ACTIONS(1216), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_DOLLARtype] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_untyped] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_RBRACK] = ACTIONS(1214), + [anon_sym_this] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(1216), + [anon_sym_AT] = ACTIONS(1216), + [anon_sym_AT_COLON] = ACTIONS(1214), + [anon_sym_try] = ACTIONS(1216), + [anon_sym_catch] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_new] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PERCENT] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_LT_LT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1216), + [anon_sym_GT_GT_GT] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_CARET] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_EQ_EQ] = ACTIONS(1214), + [anon_sym_BANG_EQ] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_LT_EQ] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1216), + [anon_sym_GT_EQ] = ACTIONS(1214), + [anon_sym_EQ_GT] = ACTIONS(1214), + [anon_sym_QMARK_QMARK] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1216), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_macro] = ACTIONS(1216), + [anon_sym_abstract] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_public] = ACTIONS(1216), + [anon_sym_private] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_overload] = ACTIONS(1216), + [anon_sym_override] = ACTIONS(1216), + [anon_sym_final] = ACTIONS(1216), + [anon_sym_class] = ACTIONS(1216), + [anon_sym_interface] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_function] = ACTIONS(1216), + [anon_sym_var] = ACTIONS(1216), + [aux_sym_integer_token1] = ACTIONS(1216), + [aux_sym_integer_token2] = ACTIONS(1214), + [aux_sym_float_token1] = ACTIONS(1216), + [aux_sym_float_token2] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1216), + [anon_sym_false] = ACTIONS(1216), + [aux_sym_string_token1] = ACTIONS(1214), + [aux_sym_string_token3] = ACTIONS(1214), [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), + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_package] = ACTIONS(1220), + [anon_sym_DOT] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_using] = ACTIONS(1220), + [anon_sym_throw] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COLON] = ACTIONS(1218), + [anon_sym_cast] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1218), + [anon_sym_DOLLARtype] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_untyped] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_RBRACK] = ACTIONS(1218), + [anon_sym_this] = ACTIONS(1220), + [anon_sym_QMARK] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1220), + [anon_sym_AT_COLON] = ACTIONS(1218), + [anon_sym_try] = ACTIONS(1220), + [anon_sym_catch] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PERCENT] = ACTIONS(1218), + [anon_sym_SLASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_LT_LT] = ACTIONS(1218), + [anon_sym_GT_GT] = ACTIONS(1220), + [anon_sym_GT_GT_GT] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(1220), + [anon_sym_CARET] = ACTIONS(1218), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), + [anon_sym_EQ_EQ] = ACTIONS(1218), + [anon_sym_BANG_EQ] = ACTIONS(1218), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_LT_EQ] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1220), + [anon_sym_GT_EQ] = ACTIONS(1218), + [anon_sym_EQ_GT] = ACTIONS(1218), + [anon_sym_QMARK_QMARK] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1218), + [anon_sym_null] = ACTIONS(1220), + [anon_sym_macro] = ACTIONS(1220), + [anon_sym_abstract] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_public] = ACTIONS(1220), + [anon_sym_private] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_overload] = ACTIONS(1220), + [anon_sym_override] = ACTIONS(1220), + [anon_sym_final] = ACTIONS(1220), + [anon_sym_class] = ACTIONS(1220), + [anon_sym_interface] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_function] = ACTIONS(1220), + [anon_sym_var] = ACTIONS(1220), + [aux_sym_integer_token1] = ACTIONS(1220), + [aux_sym_integer_token2] = ACTIONS(1218), + [aux_sym_float_token1] = ACTIONS(1220), + [aux_sym_float_token2] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1220), + [anon_sym_false] = ACTIONS(1220), + [aux_sym_string_token1] = ACTIONS(1218), + [aux_sym_string_token3] = ACTIONS(1218), [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(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_POUND] = ACTIONS(1222), + [anon_sym_package] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_import] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_using] = ACTIONS(1224), + [anon_sym_throw] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_RPAREN] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_cast] = ACTIONS(1224), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_DOLLARtype] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_untyped] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(1222), + [anon_sym_this] = ACTIONS(1224), + [anon_sym_QMARK] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1224), + [anon_sym_AT_COLON] = ACTIONS(1222), + [anon_sym_try] = ACTIONS(1224), + [anon_sym_catch] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_new] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1224), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_EQ_GT] = ACTIONS(1222), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1224), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1222), + [anon_sym_null] = ACTIONS(1224), + [anon_sym_macro] = ACTIONS(1224), + [anon_sym_abstract] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_public] = ACTIONS(1224), + [anon_sym_private] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_overload] = ACTIONS(1224), + [anon_sym_override] = ACTIONS(1224), + [anon_sym_final] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1224), + [anon_sym_interface] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(1224), + [anon_sym_var] = ACTIONS(1224), + [aux_sym_integer_token1] = ACTIONS(1224), + [aux_sym_integer_token2] = ACTIONS(1222), + [aux_sym_float_token1] = ACTIONS(1224), + [aux_sym_float_token2] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1224), + [anon_sym_false] = ACTIONS(1224), + [aux_sym_string_token1] = ACTIONS(1222), + [aux_sym_string_token3] = ACTIONS(1222), [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(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_package] = ACTIONS(1228), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_using] = ACTIONS(1228), + [anon_sym_throw] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_COLON] = ACTIONS(1226), + [anon_sym_cast] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(1226), + [anon_sym_DOLLARtype] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_untyped] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_RBRACK] = ACTIONS(1226), + [anon_sym_this] = ACTIONS(1228), + [anon_sym_QMARK] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1228), + [anon_sym_AT_COLON] = ACTIONS(1226), + [anon_sym_try] = ACTIONS(1228), + [anon_sym_catch] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PERCENT] = ACTIONS(1226), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1228), + [anon_sym_GT_GT_GT] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_CARET] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_EQ_EQ] = ACTIONS(1226), + [anon_sym_BANG_EQ] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_LT_EQ] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1228), + [anon_sym_GT_EQ] = ACTIONS(1226), + [anon_sym_EQ_GT] = ACTIONS(1226), + [anon_sym_QMARK_QMARK] = ACTIONS(1226), + [anon_sym_EQ] = ACTIONS(1228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1226), + [anon_sym_null] = ACTIONS(1228), + [anon_sym_macro] = ACTIONS(1228), + [anon_sym_abstract] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_public] = ACTIONS(1228), + [anon_sym_private] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym_inline] = ACTIONS(1228), + [anon_sym_overload] = ACTIONS(1228), + [anon_sym_override] = ACTIONS(1228), + [anon_sym_final] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1228), + [anon_sym_interface] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_typedef] = ACTIONS(1228), + [anon_sym_function] = ACTIONS(1228), + [anon_sym_var] = ACTIONS(1228), + [aux_sym_integer_token1] = ACTIONS(1228), + [aux_sym_integer_token2] = ACTIONS(1226), + [aux_sym_float_token1] = ACTIONS(1228), + [aux_sym_float_token2] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1228), + [anon_sym_false] = ACTIONS(1228), + [aux_sym_string_token1] = ACTIONS(1226), + [aux_sym_string_token3] = ACTIONS(1226), [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), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3135), + [sym_runtime_type_check_expression] = STATE(3135), + [sym_switch_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_trace_expression] = STATE(3135), + [sym__parenthesized_expression] = STATE(3050), + [sym_subscript_expression] = STATE(3135), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym_block] = STATE(3135), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_untyped] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [sym__rhs_expression] = STATE(959), + [sym__unaryExpression] = STATE(2453), + [sym_runtime_type_check_expression] = STATE(2453), + [sym_switch_expression] = STATE(2453), + [sym_cast_expression] = STATE(2453), + [sym_type_trace_expression] = STATE(2453), + [sym__parenthesized_expression] = STATE(2354), + [sym_subscript_expression] = STATE(2453), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(959), + [sym_operator] = STATE(1927), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1548), + [sym_integer] = STATE(1548), + [sym_float] = STATE(1548), + [sym_bool] = STATE(1548), + [sym_string] = STATE(1466), + [sym_null] = STATE(1548), + [sym_array] = STATE(1548), + [sym_map] = STATE(1548), + [sym_object] = STATE(1548), + [sym_pair] = STATE(1488), + [sym_identifier] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_cast] = ACTIONS(1250), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_untyped] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1262), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), [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), + [sym__rhs_expression] = STATE(963), + [sym__unaryExpression] = STATE(2437), + [sym_runtime_type_check_expression] = STATE(2437), + [sym_switch_expression] = STATE(2437), + [sym_cast_expression] = STATE(2437), + [sym_type_trace_expression] = STATE(2437), + [sym__parenthesized_expression] = STATE(2365), + [sym_subscript_expression] = STATE(2437), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(963), + [sym_operator] = STATE(1927), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1548), + [sym_integer] = STATE(1548), + [sym_float] = STATE(1548), + [sym_bool] = STATE(1548), + [sym_string] = STATE(1466), + [sym_null] = STATE(1548), + [sym_array] = STATE(1548), + [sym_map] = STATE(1548), + [sym_object] = STATE(1548), + [sym_pair] = STATE(1434), + [sym_identifier] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_cast] = ACTIONS(1250), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_untyped] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1288), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), [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), + [sym__rhs_expression] = STATE(953), + [sym__unaryExpression] = STATE(2431), + [sym_runtime_type_check_expression] = STATE(2431), + [sym_switch_expression] = STATE(2431), + [sym_cast_expression] = STATE(2431), + [sym_type_trace_expression] = STATE(2431), + [sym__parenthesized_expression] = STATE(2410), + [sym_subscript_expression] = STATE(2431), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(953), + [sym_operator] = STATE(1927), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1548), + [sym_integer] = STATE(1548), + [sym_float] = STATE(1548), + [sym_bool] = STATE(1548), + [sym_string] = STATE(1466), + [sym_null] = STATE(1548), + [sym_array] = STATE(1548), + [sym_map] = STATE(1548), + [sym_object] = STATE(1548), + [sym_pair] = STATE(1454), + [sym_identifier] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_cast] = ACTIONS(1250), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_untyped] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1296), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), [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), + [sym__rhs_expression] = STATE(999), + [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(2471), + [sym_subscript_expression] = STATE(2635), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(999), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [sym__rhs_expression] = STATE(845), + [sym__unaryExpression] = STATE(156), + [sym_runtime_type_check_expression] = STATE(156), + [sym_switch_expression] = STATE(156), + [sym_cast_expression] = STATE(156), + [sym_type_trace_expression] = STATE(156), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(156), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(924), + [anon_sym_package] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_import] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_using] = ACTIONS(926), + [anon_sym_throw] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_case] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_cast] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_DOLLARtype] = ACTIONS(924), + [anon_sym_for] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_untyped] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_this] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_AT_COLON] = ACTIONS(924), + [anon_sym_try] = ACTIONS(926), + [anon_sym_catch] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_new] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PERCENT] = ACTIONS(924), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_GT_GT_GT] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_QMARK] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(924), + [anon_sym_null] = ACTIONS(926), + [anon_sym_macro] = ACTIONS(926), + [anon_sym_abstract] = ACTIONS(926), + [anon_sym_static] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_overload] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_final] = ACTIONS(926), + [anon_sym_class] = ACTIONS(926), + [anon_sym_interface] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(926), + [anon_sym_function] = ACTIONS(926), + [anon_sym_var] = ACTIONS(926), + [aux_sym_integer_token1] = ACTIONS(926), + [aux_sym_integer_token2] = ACTIONS(924), + [aux_sym_float_token1] = ACTIONS(926), + [aux_sym_float_token2] = ACTIONS(924), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_string_token1] = ACTIONS(924), + [aux_sym_string_token3] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(924), + [sym__closing_brace_marker] = ACTIONS(924), [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(1072), + [anon_sym_package] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_import] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_using] = ACTIONS(1074), + [anon_sym_throw] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_COLON] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_cast] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_DOLLARtype] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_untyped] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_this] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_AT_COLON] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_PERCENT] = ACTIONS(1072), + [anon_sym_SLASH] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_LT_LT] = ACTIONS(1072), + [anon_sym_GT_GT] = ACTIONS(1074), + [anon_sym_GT_GT_GT] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_AMP_AMP] = ACTIONS(1072), + [anon_sym_PIPE_PIPE] = ACTIONS(1072), + [anon_sym_EQ_EQ] = ACTIONS(1072), + [anon_sym_BANG_EQ] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_LT_EQ] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_GT_EQ] = ACTIONS(1072), + [anon_sym_EQ_GT] = ACTIONS(1072), + [anon_sym_QMARK_QMARK] = ACTIONS(1072), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1074), + [anon_sym_macro] = ACTIONS(1074), + [anon_sym_abstract] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_overload] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_final] = ACTIONS(1074), + [anon_sym_class] = ACTIONS(1074), + [anon_sym_interface] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_function] = ACTIONS(1074), + [anon_sym_var] = ACTIONS(1074), + [aux_sym_integer_token1] = ACTIONS(1074), + [aux_sym_integer_token2] = ACTIONS(1072), + [aux_sym_float_token1] = ACTIONS(1074), + [aux_sym_float_token2] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [aux_sym_string_token1] = ACTIONS(1072), + [aux_sym_string_token3] = ACTIONS(1072), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1072), [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(1122), + [anon_sym_package] = ACTIONS(1124), + [anon_sym_DOT] = ACTIONS(1124), + [anon_sym_import] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(1124), + [anon_sym_throw] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_COLON] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_cast] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1122), + [anon_sym_DOLLARtype] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_untyped] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_this] = ACTIONS(1124), + [anon_sym_QMARK] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [anon_sym_AT_COLON] = ACTIONS(1122), + [anon_sym_try] = ACTIONS(1124), + [anon_sym_catch] = ACTIONS(1124), + [anon_sym_else] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PERCENT] = ACTIONS(1122), + [anon_sym_SLASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_LT_LT] = ACTIONS(1122), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_GT_GT_GT] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_CARET] = ACTIONS(1122), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_EQ_EQ] = ACTIONS(1122), + [anon_sym_BANG_EQ] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1124), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT] = ACTIONS(1124), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_EQ_GT] = ACTIONS(1122), + [anon_sym_QMARK_QMARK] = ACTIONS(1122), + [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1124), + [anon_sym_macro] = ACTIONS(1124), + [anon_sym_abstract] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_public] = ACTIONS(1124), + [anon_sym_private] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_overload] = ACTIONS(1124), + [anon_sym_override] = ACTIONS(1124), + [anon_sym_final] = ACTIONS(1124), + [anon_sym_class] = ACTIONS(1124), + [anon_sym_interface] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_function] = ACTIONS(1124), + [anon_sym_var] = ACTIONS(1124), + [aux_sym_integer_token1] = ACTIONS(1124), + [aux_sym_integer_token2] = ACTIONS(1122), + [aux_sym_float_token1] = ACTIONS(1124), + [aux_sym_float_token2] = ACTIONS(1122), + [anon_sym_true] = ACTIONS(1124), + [anon_sym_false] = ACTIONS(1124), + [aux_sym_string_token1] = ACTIONS(1122), + [aux_sym_string_token3] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1122), [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(1033), + [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(2588), + [sym_subscript_expression] = STATE(2789), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1033), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_untyped] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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), + [sym__rhs_expression] = STATE(988), + [sym__unaryExpression] = STATE(2682), + [sym_runtime_type_check_expression] = STATE(2682), + [sym_switch_expression] = STATE(2682), + [sym_cast_expression] = STATE(2682), + [sym_type_trace_expression] = STATE(2682), + [sym__parenthesized_expression] = STATE(2445), + [sym_subscript_expression] = STATE(2682), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(988), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_untyped] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [sym__rhs_expression] = STATE(983), + [sym__unaryExpression] = STATE(2667), + [sym_runtime_type_check_expression] = STATE(2667), + [sym_switch_expression] = STATE(2667), + [sym_cast_expression] = STATE(2667), + [sym_type_trace_expression] = STATE(2667), + [sym__parenthesized_expression] = STATE(2432), + [sym_subscript_expression] = STATE(2667), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(983), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_untyped] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [sym__rhs_expression] = STATE(1204), + [sym__unaryExpression] = STATE(3260), + [sym_runtime_type_check_expression] = STATE(3260), + [sym_switch_expression] = STATE(3260), + [sym_cast_expression] = STATE(3260), + [sym_type_trace_expression] = STATE(3260), + [sym__parenthesized_expression] = STATE(3105), + [sym_subscript_expression] = STATE(3260), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym_block] = STATE(3260), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1204), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_untyped] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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), + [sym__rhs_expression] = STATE(964), + [sym__unaryExpression] = STATE(2579), + [sym_runtime_type_check_expression] = STATE(2579), + [sym_switch_expression] = STATE(2579), + [sym_cast_expression] = STATE(2579), + [sym_type_trace_expression] = STATE(2579), + [sym__parenthesized_expression] = STATE(2377), + [sym_subscript_expression] = STATE(2579), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(964), + [sym_operator] = STATE(1927), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1548), + [sym_integer] = STATE(1548), + [sym_float] = STATE(1548), + [sym_bool] = STATE(1548), + [sym_string] = STATE(1466), + [sym_null] = STATE(1548), + [sym_array] = STATE(1548), + [sym_map] = STATE(1548), + [sym_object] = STATE(1548), + [sym_pair] = STATE(1489), + [sym_identifier] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_cast] = ACTIONS(1250), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_untyped] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), [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), + [sym__rhs_expression] = STATE(958), + [sym__unaryExpression] = STATE(2620), + [sym_runtime_type_check_expression] = STATE(2620), + [sym_switch_expression] = STATE(2620), + [sym_cast_expression] = STATE(2620), + [sym_type_trace_expression] = STATE(2620), + [sym__parenthesized_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2620), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(958), + [sym_operator] = STATE(1927), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1548), + [sym_integer] = STATE(1548), + [sym_float] = STATE(1548), + [sym_bool] = STATE(1548), + [sym_string] = STATE(1466), + [sym_null] = STATE(1548), + [sym_array] = STATE(1548), + [sym_map] = STATE(1548), + [sym_object] = STATE(1548), + [sym_pair] = STATE(1430), + [sym_identifier] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_cast] = ACTIONS(1250), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_untyped] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), [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), + [sym__rhs_expression] = STATE(994), + [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(2439), + [sym_subscript_expression] = STATE(2653), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(994), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_import] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_using] = ACTIONS(1054), + [anon_sym_throw] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_case] = ACTIONS(1054), + [anon_sym_COLON] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_cast] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_DOLLARtype] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_this] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1054), + [anon_sym_AT_COLON] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_EQ_GT] = ACTIONS(1050), + [anon_sym_QMARK_QMARK] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_macro] = ACTIONS(1054), + [anon_sym_abstract] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_public] = ACTIONS(1054), + [anon_sym_private] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_overload] = ACTIONS(1054), + [anon_sym_override] = ACTIONS(1054), + [anon_sym_final] = ACTIONS(1054), + [anon_sym_class] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_function] = ACTIONS(1054), + [anon_sym_var] = ACTIONS(1054), + [aux_sym_integer_token1] = ACTIONS(1054), + [aux_sym_integer_token2] = ACTIONS(1050), + [aux_sym_float_token1] = ACTIONS(1054), + [aux_sym_float_token2] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym_string_token1] = ACTIONS(1050), + [aux_sym_string_token3] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1050), [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1146), + [anon_sym_package] = ACTIONS(1148), + [anon_sym_DOT] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(1148), + [anon_sym_throw] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_cast] = ACTIONS(1148), + [anon_sym_COMMA] = ACTIONS(1146), + [anon_sym_DOLLARtype] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_untyped] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_this] = ACTIONS(1148), + [anon_sym_QMARK] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_AT_COLON] = ACTIONS(1146), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_catch] = ACTIONS(1148), + [anon_sym_else] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1148), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_PERCENT] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_GT_GT_GT] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_EQ_EQ] = ACTIONS(1146), + [anon_sym_BANG_EQ] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_LT_EQ] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_GT_EQ] = ACTIONS(1146), + [anon_sym_EQ_GT] = ACTIONS(1146), + [anon_sym_QMARK_QMARK] = ACTIONS(1146), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1148), + [anon_sym_macro] = ACTIONS(1148), + [anon_sym_abstract] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1148), + [anon_sym_private] = ACTIONS(1148), + [anon_sym_extern] = ACTIONS(1148), + [anon_sym_inline] = ACTIONS(1148), + [anon_sym_overload] = ACTIONS(1148), + [anon_sym_override] = ACTIONS(1148), + [anon_sym_final] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_interface] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1148), + [anon_sym_function] = ACTIONS(1148), + [anon_sym_var] = ACTIONS(1148), + [aux_sym_integer_token1] = ACTIONS(1148), + [aux_sym_integer_token2] = ACTIONS(1146), + [aux_sym_float_token1] = ACTIONS(1148), + [aux_sym_float_token2] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [aux_sym_string_token1] = ACTIONS(1146), + [aux_sym_string_token3] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1146), + [sym__closing_brace_marker] = ACTIONS(1146), [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_import] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_using] = ACTIONS(1054), + [anon_sym_throw] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_case] = ACTIONS(1054), + [anon_sym_COLON] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_cast] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_DOLLARtype] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_this] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1054), + [anon_sym_AT_COLON] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_EQ_GT] = ACTIONS(1050), + [anon_sym_QMARK_QMARK] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_macro] = ACTIONS(1054), + [anon_sym_abstract] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_public] = ACTIONS(1054), + [anon_sym_private] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_overload] = ACTIONS(1054), + [anon_sym_override] = ACTIONS(1054), + [anon_sym_final] = ACTIONS(1054), + [anon_sym_class] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_function] = ACTIONS(1054), + [anon_sym_var] = ACTIONS(1054), + [aux_sym_integer_token1] = ACTIONS(1054), + [aux_sym_integer_token2] = ACTIONS(1050), + [aux_sym_float_token1] = ACTIONS(1054), + [aux_sym_float_token2] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym_string_token1] = ACTIONS(1050), + [aux_sym_string_token3] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1050), [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), + [sym__rhs_expression] = STATE(845), + [sym__unaryExpression] = STATE(144), + [sym_runtime_type_check_expression] = STATE(144), + [sym_switch_expression] = STATE(144), + [sym_cast_expression] = STATE(144), + [sym_type_trace_expression] = STATE(144), + [sym__parenthesized_expression] = STATE(923), + [sym_subscript_expression] = STATE(144), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(845), + [sym_operator] = STATE(1772), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [aux_sym__parenthesized_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(790), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(794), + [anon_sym_untyped] = ACTIONS(796), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [sym_identifier] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1098), + [anon_sym_package] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_cast] = ACTIONS(1100), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_DOLLARtype] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_untyped] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_this] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1100), + [anon_sym_AT_COLON] = ACTIONS(1098), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_catch] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_GT_GT_GT] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(1098), + [anon_sym_QMARK_QMARK] = ACTIONS(1098), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), + [anon_sym_null] = ACTIONS(1100), + [anon_sym_macro] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_overload] = ACTIONS(1100), + [anon_sym_override] = ACTIONS(1100), + [anon_sym_final] = ACTIONS(1100), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1100), + [anon_sym_var] = ACTIONS(1100), + [aux_sym_integer_token1] = ACTIONS(1100), + [aux_sym_integer_token2] = ACTIONS(1098), + [aux_sym_float_token1] = ACTIONS(1100), + [aux_sym_float_token2] = ACTIONS(1098), + [anon_sym_true] = ACTIONS(1100), + [anon_sym_false] = ACTIONS(1100), + [aux_sym_string_token1] = ACTIONS(1098), + [aux_sym_string_token3] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1098), + [sym__closing_brace_marker] = ACTIONS(1098), [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_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(1102), + [anon_sym_package] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_using] = ACTIONS(1104), + [anon_sym_throw] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_cast] = ACTIONS(1104), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_DOLLARtype] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_untyped] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_this] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(1104), + [anon_sym_AT_COLON] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(1104), + [anon_sym_catch] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_new] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1104), + [anon_sym_GT_GT_GT] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_EQ_GT] = ACTIONS(1102), + [anon_sym_QMARK_QMARK] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1102), + [anon_sym_null] = ACTIONS(1104), + [anon_sym_macro] = ACTIONS(1104), + [anon_sym_abstract] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_overload] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_final] = ACTIONS(1104), + [anon_sym_class] = ACTIONS(1104), + [anon_sym_interface] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_var] = ACTIONS(1104), + [aux_sym_integer_token1] = ACTIONS(1104), + [aux_sym_integer_token2] = ACTIONS(1102), + [aux_sym_float_token1] = ACTIONS(1104), + [aux_sym_float_token2] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [aux_sym_string_token1] = ACTIONS(1102), + [aux_sym_string_token3] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1102), + [sym__closing_brace_marker] = ACTIONS(1102), [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(1036), + [anon_sym_package] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_using] = ACTIONS(1038), + [anon_sym_throw] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1038), + [anon_sym_default] = ACTIONS(1038), + [anon_sym_cast] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_DOLLARtype] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_untyped] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_this] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_AT_COLON] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_PERCENT] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_LT_LT] = ACTIONS(1036), + [anon_sym_GT_GT] = ACTIONS(1038), + [anon_sym_GT_GT_GT] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1038), + [anon_sym_CARET] = ACTIONS(1036), + [anon_sym_AMP_AMP] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1036), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_LT_EQ] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_GT_EQ] = ACTIONS(1036), + [anon_sym_EQ_GT] = ACTIONS(1036), + [anon_sym_QMARK_QMARK] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1038), + [anon_sym_macro] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_inline] = ACTIONS(1038), + [anon_sym_overload] = ACTIONS(1038), + [anon_sym_override] = ACTIONS(1038), + [anon_sym_final] = ACTIONS(1038), + [anon_sym_class] = ACTIONS(1038), + [anon_sym_interface] = ACTIONS(1038), + [anon_sym_enum] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1038), + [anon_sym_function] = ACTIONS(1038), + [anon_sym_var] = ACTIONS(1038), + [aux_sym_integer_token1] = ACTIONS(1038), + [aux_sym_integer_token2] = ACTIONS(1036), + [aux_sym_float_token1] = ACTIONS(1038), + [aux_sym_float_token2] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [aux_sym_string_token1] = ACTIONS(1036), + [aux_sym_string_token3] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1036), [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), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1400), + [sym__rhs_expression] = STATE(1070), + [sym__unaryExpression] = STATE(3391), + [sym_runtime_type_check_expression] = STATE(3391), + [sym_switch_expression] = STATE(3391), + [sym_cast_expression] = STATE(3391), + [sym_type_trace_expression] = STATE(3391), + [sym__parenthesized_expression] = STATE(3065), + [sym_subscript_expression] = STATE(3391), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1070), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_untyped] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [sym__rhs_expression] = STATE(1076), + [sym__unaryExpression] = STATE(3382), + [sym_runtime_type_check_expression] = STATE(3382), + [sym_switch_expression] = STATE(3382), + [sym_cast_expression] = STATE(3382), + [sym_type_trace_expression] = STATE(3382), + [sym__parenthesized_expression] = STATE(3115), + [sym_subscript_expression] = STATE(3382), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1076), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_untyped] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), + [sym__rhs_expression] = STATE(1079), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(3461), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(3093), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1079), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_untyped] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), + [sym__rhs_expression] = STATE(1080), + [sym__unaryExpression] = STATE(3432), + [sym_runtime_type_check_expression] = STATE(3432), + [sym_switch_expression] = STATE(3432), + [sym_cast_expression] = STATE(3432), + [sym_type_trace_expression] = STATE(3432), + [sym__parenthesized_expression] = STATE(3071), + [sym_subscript_expression] = STATE(3432), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1080), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), - [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), + [sym__rhs_expression] = STATE(1083), + [sym__unaryExpression] = STATE(3367), + [sym_runtime_type_check_expression] = STATE(3367), + [sym_switch_expression] = STATE(3367), + [sym_cast_expression] = STATE(3367), + [sym_type_trace_expression] = STATE(3367), + [sym__parenthesized_expression] = STATE(2869), + [sym_subscript_expression] = STATE(3367), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1083), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), + [sym__rhs_expression] = STATE(1084), + [sym__unaryExpression] = STATE(3216), + [sym_runtime_type_check_expression] = STATE(3216), + [sym_switch_expression] = STATE(3216), + [sym_cast_expression] = STATE(3216), + [sym_type_trace_expression] = STATE(3216), + [sym__parenthesized_expression] = STATE(3017), + [sym_subscript_expression] = STATE(3216), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1084), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_untyped] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), + [sym__rhs_expression] = STATE(1177), + [sym__unaryExpression] = STATE(3298), + [sym_runtime_type_check_expression] = STATE(3298), + [sym_switch_expression] = STATE(3298), + [sym_cast_expression] = STATE(3298), + [sym_type_trace_expression] = STATE(3298), + [sym__parenthesized_expression] = STATE(2868), + [sym_subscript_expression] = STATE(3298), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1177), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_untyped] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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), + [sym__rhs_expression] = STATE(1090), + [sym__unaryExpression] = STATE(3355), + [sym_runtime_type_check_expression] = STATE(3355), + [sym_switch_expression] = STATE(3355), + [sym_cast_expression] = STATE(3355), + [sym_type_trace_expression] = STATE(3355), + [sym__parenthesized_expression] = STATE(2946), + [sym_subscript_expression] = STATE(3355), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1090), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_untyped] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), + [sym__rhs_expression] = STATE(1093), + [sym__unaryExpression] = STATE(3232), + [sym_runtime_type_check_expression] = STATE(3232), + [sym_switch_expression] = STATE(3232), + [sym_cast_expression] = STATE(3232), + [sym_type_trace_expression] = STATE(3232), + [sym__parenthesized_expression] = STATE(3010), + [sym_subscript_expression] = STATE(3232), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1093), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1412), - [sym__closing_brace_marker] = ACTIONS(1412), + [anon_sym_untyped] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [sym__rhs_expression] = STATE(1094), + [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(3061), + [sym_subscript_expression] = STATE(3354), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1094), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_untyped] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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), + [sym__rhs_expression] = STATE(1100), + [sym__unaryExpression] = STATE(3402), + [sym_runtime_type_check_expression] = STATE(3402), + [sym_switch_expression] = STATE(3402), + [sym_cast_expression] = STATE(3402), + [sym_type_trace_expression] = STATE(3402), + [sym__parenthesized_expression] = STATE(2962), + [sym_subscript_expression] = STATE(3402), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1100), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_untyped] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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), + [sym_identifier] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_package] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_import] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_using] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_cast] = ACTIONS(1432), + [anon_sym_DOLLARtype] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_untyped] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_this] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_AT_COLON] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_catch] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_GT_GT_GT] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_EQ_GT] = ACTIONS(1086), + [anon_sym_QMARK_QMARK] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1432), + [anon_sym_macro] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym_overload] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_final] = ACTIONS(1432), + [anon_sym_class] = ACTIONS(1432), + [anon_sym_interface] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_var] = ACTIONS(1432), + [aux_sym_integer_token1] = ACTIONS(1432), + [aux_sym_integer_token2] = ACTIONS(1434), + [aux_sym_float_token1] = ACTIONS(1432), + [aux_sym_float_token2] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [aux_sym_string_token1] = ACTIONS(1434), + [aux_sym_string_token3] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1086), + [sym__closing_brace_marker] = ACTIONS(1434), [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), + [sym__rhs_expression] = STATE(832), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(832), + [sym_operator] = STATE(1931), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(919), + [sym_integer] = STATE(919), + [sym_float] = STATE(919), + [sym_bool] = STATE(919), + [sym_string] = STATE(912), + [sym_null] = STATE(919), + [sym_array] = STATE(919), + [sym_map] = STATE(919), + [sym_object] = STATE(919), + [sym_pair] = STATE(919), + [sym_identifier] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(886), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(888), + [anon_sym_untyped] = ACTIONS(890), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [sym__rhs_expression] = STATE(1046), + [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(2705), + [sym_subscript_expression] = STATE(3047), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1046), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_untyped] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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), + [sym__rhs_expression] = STATE(1243), + [sym__unaryExpression] = STATE(3289), + [sym_runtime_type_check_expression] = STATE(3289), + [sym_switch_expression] = STATE(3289), + [sym_cast_expression] = STATE(3289), + [sym_type_trace_expression] = STATE(3289), + [sym__parenthesized_expression] = STATE(2858), + [sym_subscript_expression] = STATE(3289), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1243), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_untyped] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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), + [sym__rhs_expression] = STATE(120), + [sym__unaryExpression] = STATE(803), + [sym_runtime_type_check_expression] = STATE(803), + [sym_switch_expression] = STATE(803), + [sym_cast_expression] = STATE(803), + [sym_type_trace_expression] = STATE(803), + [sym__parenthesized_expression] = STATE(620), + [sym_subscript_expression] = STATE(803), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(120), + [sym_operator] = STATE(1908), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(548), + [sym_integer] = STATE(548), + [sym_float] = STATE(548), + [sym_bool] = STATE(548), + [sym_string] = STATE(363), + [sym_null] = STATE(548), + [sym_array] = STATE(548), + [sym_map] = STATE(548), + [sym_object] = STATE(548), + [sym_pair] = STATE(548), + [sym_identifier] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1454), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_untyped] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(816), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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), + [sym__rhs_expression] = STATE(1072), + [sym__unaryExpression] = STATE(3261), + [sym_runtime_type_check_expression] = STATE(3261), + [sym_switch_expression] = STATE(3261), + [sym_cast_expression] = STATE(3261), + [sym_type_trace_expression] = STATE(3261), + [sym__parenthesized_expression] = STATE(3127), + [sym_subscript_expression] = STATE(3261), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1072), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_untyped] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(1102), + [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(3004), + [sym_subscript_expression] = STATE(3424), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1102), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1604), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_untyped] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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(1102), + [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(3004), + [sym_subscript_expression] = STATE(3424), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1102), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_untyped] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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_identifier] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_package] = ACTIONS(1180), + [anon_sym_DOT] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_using] = ACTIONS(1180), + [anon_sym_throw] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_switch] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_cast] = ACTIONS(1180), + [anon_sym_COMMA] = ACTIONS(1178), + [anon_sym_DOLLARtype] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_untyped] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_this] = ACTIONS(1180), + [anon_sym_QMARK] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1180), + [anon_sym_AT_COLON] = ACTIONS(1178), + [anon_sym_try] = ACTIONS(1180), + [anon_sym_catch] = ACTIONS(1180), + [anon_sym_else] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_do] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [anon_sym_PERCENT] = ACTIONS(1178), + [anon_sym_SLASH] = ACTIONS(1180), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_LT_LT] = ACTIONS(1178), + [anon_sym_GT_GT] = ACTIONS(1180), + [anon_sym_GT_GT_GT] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1178), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_EQ_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1180), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_EQ_GT] = ACTIONS(1178), + [anon_sym_QMARK_QMARK] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1178), + [anon_sym_null] = ACTIONS(1180), + [anon_sym_macro] = ACTIONS(1180), + [anon_sym_abstract] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_public] = ACTIONS(1180), + [anon_sym_private] = ACTIONS(1180), + [anon_sym_extern] = ACTIONS(1180), + [anon_sym_inline] = ACTIONS(1180), + [anon_sym_overload] = ACTIONS(1180), + [anon_sym_override] = ACTIONS(1180), + [anon_sym_final] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(1180), + [anon_sym_interface] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [anon_sym_typedef] = ACTIONS(1180), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_var] = ACTIONS(1180), + [aux_sym_integer_token1] = ACTIONS(1180), + [aux_sym_integer_token2] = ACTIONS(1178), + [aux_sym_float_token1] = ACTIONS(1180), + [aux_sym_float_token2] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1180), + [anon_sym_false] = ACTIONS(1180), + [aux_sym_string_token1] = ACTIONS(1178), + [aux_sym_string_token3] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1178), [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(945), + [sym__unaryExpression] = STATE(1557), + [sym_runtime_type_check_expression] = STATE(1557), + [sym_switch_expression] = STATE(1557), + [sym_cast_expression] = STATE(1557), + [sym_type_trace_expression] = STATE(1557), + [sym__parenthesized_expression] = STATE(1479), + [sym_subscript_expression] = STATE(1557), + [sym_member_expression] = STATE(1367), + [sym__lhs_expression] = STATE(2436), + [sym__call] = STATE(1559), + [sym__constructor_call] = STATE(1529), + [sym_call_expression] = STATE(945), + [sym_operator] = STATE(1919), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1517), + [sym_integer] = STATE(1517), + [sym_float] = STATE(1517), + [sym_bool] = STATE(1517), + [sym_string] = STATE(1486), + [sym_null] = STATE(1517), + [sym_array] = STATE(1517), + [sym_map] = STATE(1517), + [sym_object] = STATE(1517), + [sym_pair] = STATE(1517), + [sym_identifier] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_cast] = ACTIONS(1482), + [anon_sym_DOLLARtype] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_untyped] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_this] = ACTIONS(1494), + [anon_sym_new] = ACTIONS(1496), + [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(57), + [anon_sym_null] = ACTIONS(1498), + [aux_sym_integer_token1] = ACTIONS(1500), + [aux_sym_integer_token2] = ACTIONS(1502), + [aux_sym_float_token1] = ACTIONS(1504), + [aux_sym_float_token2] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [aux_sym_string_token1] = ACTIONS(1510), + [aux_sym_string_token3] = ACTIONS(1512), + [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_identifier] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1202), + [anon_sym_package] = ACTIONS(1204), + [anon_sym_DOT] = ACTIONS(1204), + [anon_sym_import] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1204), + [anon_sym_throw] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_cast] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_DOLLARtype] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_untyped] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_this] = ACTIONS(1204), + [anon_sym_QMARK] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_AT_COLON] = ACTIONS(1202), + [anon_sym_try] = ACTIONS(1204), + [anon_sym_catch] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_new] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PERCENT] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_LT_LT] = ACTIONS(1202), + [anon_sym_GT_GT] = ACTIONS(1204), + [anon_sym_GT_GT_GT] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_CARET] = ACTIONS(1202), + [anon_sym_AMP_AMP] = ACTIONS(1202), + [anon_sym_PIPE_PIPE] = ACTIONS(1202), + [anon_sym_EQ_EQ] = ACTIONS(1202), + [anon_sym_BANG_EQ] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_LT_EQ] = ACTIONS(1202), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_GT_EQ] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1202), + [anon_sym_QMARK_QMARK] = ACTIONS(1202), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1202), + [anon_sym_null] = ACTIONS(1204), + [anon_sym_macro] = ACTIONS(1204), + [anon_sym_abstract] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_public] = ACTIONS(1204), + [anon_sym_private] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_overload] = ACTIONS(1204), + [anon_sym_override] = ACTIONS(1204), + [anon_sym_final] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1204), + [anon_sym_interface] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_function] = ACTIONS(1204), + [anon_sym_var] = ACTIONS(1204), + [aux_sym_integer_token1] = ACTIONS(1204), + [aux_sym_integer_token2] = ACTIONS(1202), + [aux_sym_float_token1] = ACTIONS(1204), + [aux_sym_float_token2] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1204), + [anon_sym_false] = ACTIONS(1204), + [aux_sym_string_token1] = ACTIONS(1202), + [aux_sym_string_token3] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1202), [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_identifier] = ACTIONS(1030), + [anon_sym_POUND] = ACTIONS(1028), + [anon_sym_package] = ACTIONS(1030), + [anon_sym_DOT] = ACTIONS(1030), + [anon_sym_import] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_using] = ACTIONS(1030), + [anon_sym_throw] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1030), + [anon_sym_default] = ACTIONS(1030), + [anon_sym_cast] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1028), + [anon_sym_DOLLARtype] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_untyped] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_this] = ACTIONS(1030), + [anon_sym_QMARK] = ACTIONS(1030), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym_AT_COLON] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1030), + [anon_sym_catch] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_new] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_LT_LT] = ACTIONS(1028), + [anon_sym_GT_GT] = ACTIONS(1030), + [anon_sym_GT_GT_GT] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1028), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1028), + [anon_sym_BANG_EQ] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_LT_EQ] = ACTIONS(1028), + [anon_sym_GT] = ACTIONS(1030), + [anon_sym_GT_EQ] = ACTIONS(1028), + [anon_sym_EQ_GT] = ACTIONS(1028), + [anon_sym_QMARK_QMARK] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), + [anon_sym_null] = ACTIONS(1030), + [anon_sym_macro] = ACTIONS(1030), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_public] = ACTIONS(1030), + [anon_sym_private] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym_inline] = ACTIONS(1030), + [anon_sym_overload] = ACTIONS(1030), + [anon_sym_override] = ACTIONS(1030), + [anon_sym_final] = ACTIONS(1030), + [anon_sym_class] = ACTIONS(1030), + [anon_sym_interface] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1030), + [anon_sym_function] = ACTIONS(1030), + [anon_sym_var] = ACTIONS(1030), + [aux_sym_integer_token1] = ACTIONS(1030), + [aux_sym_integer_token2] = ACTIONS(1028), + [aux_sym_float_token1] = ACTIONS(1030), + [aux_sym_float_token2] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [aux_sym_string_token1] = ACTIONS(1028), + [aux_sym_string_token3] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1028), [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_identifier] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(1032), + [anon_sym_package] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_using] = ACTIONS(1034), + [anon_sym_throw] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1034), + [anon_sym_default] = ACTIONS(1034), + [anon_sym_cast] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_DOLLARtype] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_untyped] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_this] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(1034), + [anon_sym_AT_COLON] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1032), + [anon_sym_SLASH] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_GT_GT_GT] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [anon_sym_BANG_EQ] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1034), + [anon_sym_LT_EQ] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1032), + [anon_sym_EQ_GT] = ACTIONS(1032), + [anon_sym_QMARK_QMARK] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_macro] = ACTIONS(1034), + [anon_sym_abstract] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_public] = ACTIONS(1034), + [anon_sym_private] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_inline] = ACTIONS(1034), + [anon_sym_overload] = ACTIONS(1034), + [anon_sym_override] = ACTIONS(1034), + [anon_sym_final] = ACTIONS(1034), + [anon_sym_class] = ACTIONS(1034), + [anon_sym_interface] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1034), + [anon_sym_function] = ACTIONS(1034), + [anon_sym_var] = ACTIONS(1034), + [aux_sym_integer_token1] = ACTIONS(1034), + [aux_sym_integer_token2] = ACTIONS(1032), + [aux_sym_float_token1] = ACTIONS(1034), + [aux_sym_float_token2] = ACTIONS(1032), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [aux_sym_string_token1] = ACTIONS(1032), + [aux_sym_string_token3] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1032), [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_identifier] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_package] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_using] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_cast] = ACTIONS(1044), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_DOLLARtype] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_untyped] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_this] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1044), + [anon_sym_AT] = ACTIONS(1044), + [anon_sym_AT_COLON] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_GT_GT_GT] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1042), + [anon_sym_PIPE_PIPE] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_EQ_GT] = ACTIONS(1042), + [anon_sym_QMARK_QMARK] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1044), + [anon_sym_macro] = ACTIONS(1044), + [anon_sym_abstract] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_overload] = ACTIONS(1044), + [anon_sym_override] = ACTIONS(1044), + [anon_sym_final] = ACTIONS(1044), + [anon_sym_class] = ACTIONS(1044), + [anon_sym_interface] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_function] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1044), + [aux_sym_integer_token1] = ACTIONS(1044), + [aux_sym_integer_token2] = ACTIONS(1042), + [aux_sym_float_token1] = ACTIONS(1044), + [aux_sym_float_token2] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [aux_sym_string_token1] = ACTIONS(1042), + [aux_sym_string_token3] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1042), [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_identifier] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(1056), + [anon_sym_package] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_import] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_using] = ACTIONS(1058), + [anon_sym_throw] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_cast] = ACTIONS(1058), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_DOLLARtype] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_untyped] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_this] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1058), + [anon_sym_AT_COLON] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PERCENT] = ACTIONS(1056), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_LT_LT] = ACTIONS(1056), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_GT_GT_GT] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_EQ_GT] = ACTIONS(1056), + [anon_sym_QMARK_QMARK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1058), + [anon_sym_macro] = ACTIONS(1058), + [anon_sym_abstract] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_public] = ACTIONS(1058), + [anon_sym_private] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_inline] = ACTIONS(1058), + [anon_sym_overload] = ACTIONS(1058), + [anon_sym_override] = ACTIONS(1058), + [anon_sym_final] = ACTIONS(1058), + [anon_sym_class] = ACTIONS(1058), + [anon_sym_interface] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(1058), + [anon_sym_var] = ACTIONS(1058), + [aux_sym_integer_token1] = ACTIONS(1058), + [aux_sym_integer_token2] = ACTIONS(1056), + [aux_sym_float_token1] = ACTIONS(1058), + [aux_sym_float_token2] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [aux_sym_string_token1] = ACTIONS(1056), + [aux_sym_string_token3] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1056), [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_identifier] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1060), + [anon_sym_package] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_import] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_using] = ACTIONS(1062), + [anon_sym_throw] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1062), + [anon_sym_default] = ACTIONS(1062), + [anon_sym_cast] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_DOLLARtype] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_untyped] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_this] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_AT_COLON] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_PERCENT] = ACTIONS(1060), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_GT_GT_GT] = ACTIONS(1060), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1060), + [anon_sym_AMP_AMP] = ACTIONS(1060), + [anon_sym_PIPE_PIPE] = ACTIONS(1060), + [anon_sym_EQ_EQ] = ACTIONS(1060), + [anon_sym_BANG_EQ] = ACTIONS(1060), + [anon_sym_LT] = ACTIONS(1062), + [anon_sym_LT_EQ] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_GT_EQ] = ACTIONS(1060), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_QMARK_QMARK] = ACTIONS(1060), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1062), + [anon_sym_macro] = ACTIONS(1062), + [anon_sym_abstract] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_public] = ACTIONS(1062), + [anon_sym_private] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym_overload] = ACTIONS(1062), + [anon_sym_override] = ACTIONS(1062), + [anon_sym_final] = ACTIONS(1062), + [anon_sym_class] = ACTIONS(1062), + [anon_sym_interface] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1062), + [anon_sym_var] = ACTIONS(1062), + [aux_sym_integer_token1] = ACTIONS(1062), + [aux_sym_integer_token2] = ACTIONS(1060), + [aux_sym_float_token1] = ACTIONS(1062), + [aux_sym_float_token2] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [aux_sym_string_token1] = ACTIONS(1060), + [aux_sym_string_token3] = ACTIONS(1060), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1060), [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_identifier] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(1064), + [anon_sym_package] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_import] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_using] = ACTIONS(1066), + [anon_sym_throw] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1066), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_cast] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_DOLLARtype] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_untyped] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_this] = ACTIONS(1066), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_AT] = ACTIONS(1066), + [anon_sym_AT_COLON] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_PERCENT] = ACTIONS(1064), + [anon_sym_SLASH] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1064), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_GT_GT_GT] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_CARET] = ACTIONS(1064), + [anon_sym_AMP_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1064), + [anon_sym_EQ_EQ] = ACTIONS(1064), + [anon_sym_BANG_EQ] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_LT_EQ] = ACTIONS(1064), + [anon_sym_GT] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1064), + [anon_sym_EQ_GT] = ACTIONS(1064), + [anon_sym_QMARK_QMARK] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1066), + [anon_sym_macro] = ACTIONS(1066), + [anon_sym_abstract] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_public] = ACTIONS(1066), + [anon_sym_private] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_overload] = ACTIONS(1066), + [anon_sym_override] = ACTIONS(1066), + [anon_sym_final] = ACTIONS(1066), + [anon_sym_class] = ACTIONS(1066), + [anon_sym_interface] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1066), + [anon_sym_var] = ACTIONS(1066), + [aux_sym_integer_token1] = ACTIONS(1066), + [aux_sym_integer_token2] = ACTIONS(1064), + [aux_sym_float_token1] = ACTIONS(1066), + [aux_sym_float_token2] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [aux_sym_string_token1] = ACTIONS(1064), + [aux_sym_string_token3] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1064), [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_identifier] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_package] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_import] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_using] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1070), + [anon_sym_default] = ACTIONS(1070), + [anon_sym_cast] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_DOLLARtype] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_untyped] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_this] = ACTIONS(1070), + [anon_sym_QMARK] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(1070), + [anon_sym_AT_COLON] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_LT_LT] = ACTIONS(1068), + [anon_sym_GT_GT] = ACTIONS(1070), + [anon_sym_GT_GT_GT] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_EQ_GT] = ACTIONS(1068), + [anon_sym_QMARK_QMARK] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1070), + [anon_sym_macro] = ACTIONS(1070), + [anon_sym_abstract] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_public] = ACTIONS(1070), + [anon_sym_private] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_inline] = ACTIONS(1070), + [anon_sym_overload] = ACTIONS(1070), + [anon_sym_override] = ACTIONS(1070), + [anon_sym_final] = ACTIONS(1070), + [anon_sym_class] = ACTIONS(1070), + [anon_sym_interface] = ACTIONS(1070), + [anon_sym_enum] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1070), + [anon_sym_function] = ACTIONS(1070), + [anon_sym_var] = ACTIONS(1070), + [aux_sym_integer_token1] = ACTIONS(1070), + [aux_sym_integer_token2] = ACTIONS(1068), + [aux_sym_float_token1] = ACTIONS(1070), + [aux_sym_float_token2] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [aux_sym_string_token1] = ACTIONS(1068), + [aux_sym_string_token3] = ACTIONS(1068), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1068), [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(943), + [sym__unaryExpression] = STATE(1422), + [sym_runtime_type_check_expression] = STATE(1422), + [sym_switch_expression] = STATE(1422), + [sym_cast_expression] = STATE(1422), + [sym_type_trace_expression] = STATE(1422), + [sym__parenthesized_expression] = STATE(1373), + [sym_subscript_expression] = STATE(1422), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(943), + [sym_operator] = STATE(1864), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1520), + [sym_integer] = STATE(1520), + [sym_float] = STATE(1520), + [sym_bool] = STATE(1520), + [sym_string] = STATE(1466), + [sym_null] = STATE(1520), + [sym_array] = STATE(1520), + [sym_map] = STATE(1520), + [sym_object] = STATE(1520), + [sym_pair] = STATE(1520), + [sym_identifier] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_cast] = ACTIONS(1516), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_untyped] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), + [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_identifier] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(1076), + [anon_sym_package] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_import] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_using] = ACTIONS(1078), + [anon_sym_throw] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_cast] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_DOLLARtype] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_untyped] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_this] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1078), + [anon_sym_AT_COLON] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_GT_GT_GT] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1076), + [anon_sym_BANG_EQ] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1076), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_GT_EQ] = ACTIONS(1076), + [anon_sym_EQ_GT] = ACTIONS(1076), + [anon_sym_QMARK_QMARK] = ACTIONS(1076), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1078), + [anon_sym_macro] = ACTIONS(1078), + [anon_sym_abstract] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_public] = ACTIONS(1078), + [anon_sym_private] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_overload] = ACTIONS(1078), + [anon_sym_override] = ACTIONS(1078), + [anon_sym_final] = ACTIONS(1078), + [anon_sym_class] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1078), + [anon_sym_var] = ACTIONS(1078), + [aux_sym_integer_token1] = ACTIONS(1078), + [aux_sym_integer_token2] = ACTIONS(1076), + [aux_sym_float_token1] = ACTIONS(1078), + [aux_sym_float_token2] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [aux_sym_string_token1] = ACTIONS(1076), + [aux_sym_string_token3] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1076), [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_identifier] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_package] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_import] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_using] = ACTIONS(694), + [anon_sym_throw] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_case] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_cast] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_DOLLARtype] = ACTIONS(692), + [anon_sym_for] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_untyped] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_AT_COLON] = ACTIONS(692), + [anon_sym_try] = ACTIONS(694), + [anon_sym_catch] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_do] = ACTIONS(694), + [anon_sym_new] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(694), + [anon_sym_macro] = ACTIONS(694), + [anon_sym_abstract] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_public] = ACTIONS(694), + [anon_sym_private] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(694), + [anon_sym_inline] = ACTIONS(694), + [anon_sym_overload] = ACTIONS(694), + [anon_sym_override] = ACTIONS(694), + [anon_sym_final] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_typedef] = ACTIONS(694), + [anon_sym_function] = ACTIONS(694), + [anon_sym_var] = ACTIONS(694), + [aux_sym_integer_token1] = ACTIONS(694), + [aux_sym_integer_token2] = ACTIONS(692), + [aux_sym_float_token1] = ACTIONS(694), + [aux_sym_float_token2] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [aux_sym_string_token1] = ACTIONS(692), + [aux_sym_string_token3] = ACTIONS(692), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(692), [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_identifier] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_package] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_import] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_using] = ACTIONS(1088), + [anon_sym_throw] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_cast] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_DOLLARtype] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_untyped] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_this] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1088), + [anon_sym_AT_COLON] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1088), + [anon_sym_catch] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_new] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_GT_GT_GT] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_EQ_GT] = ACTIONS(1086), + [anon_sym_QMARK_QMARK] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1088), + [anon_sym_macro] = ACTIONS(1088), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_public] = ACTIONS(1088), + [anon_sym_private] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_overload] = ACTIONS(1088), + [anon_sym_override] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_function] = ACTIONS(1088), + [anon_sym_var] = ACTIONS(1088), + [aux_sym_integer_token1] = ACTIONS(1088), + [aux_sym_integer_token2] = ACTIONS(1086), + [aux_sym_float_token1] = ACTIONS(1088), + [aux_sym_float_token2] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1088), + [anon_sym_false] = ACTIONS(1088), + [aux_sym_string_token1] = ACTIONS(1086), + [aux_sym_string_token3] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1086), [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_identifier] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(1090), + [anon_sym_package] = ACTIONS(1092), + [anon_sym_DOT] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_using] = ACTIONS(1092), + [anon_sym_throw] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_cast] = ACTIONS(1092), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_DOLLARtype] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_untyped] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_this] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1092), + [anon_sym_AT_COLON] = ACTIONS(1090), + [anon_sym_try] = ACTIONS(1092), + [anon_sym_catch] = ACTIONS(1092), + [anon_sym_else] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_GT_GT_GT] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1090), + [anon_sym_PIPE_PIPE] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1092), + [anon_sym_GT_EQ] = ACTIONS(1090), + [anon_sym_EQ_GT] = ACTIONS(1090), + [anon_sym_QMARK_QMARK] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1092), + [anon_sym_macro] = ACTIONS(1092), + [anon_sym_abstract] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_public] = ACTIONS(1092), + [anon_sym_private] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_overload] = ACTIONS(1092), + [anon_sym_override] = ACTIONS(1092), + [anon_sym_final] = ACTIONS(1092), + [anon_sym_class] = ACTIONS(1092), + [anon_sym_interface] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_function] = ACTIONS(1092), + [anon_sym_var] = ACTIONS(1092), + [aux_sym_integer_token1] = ACTIONS(1092), + [aux_sym_integer_token2] = ACTIONS(1090), + [aux_sym_float_token1] = ACTIONS(1092), + [aux_sym_float_token2] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [aux_sym_string_token1] = ACTIONS(1090), + [aux_sym_string_token3] = ACTIONS(1090), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1090), [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_identifier] = ACTIONS(1096), + [anon_sym_POUND] = ACTIONS(1094), + [anon_sym_package] = ACTIONS(1096), + [anon_sym_DOT] = ACTIONS(1096), + [anon_sym_import] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_using] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1094), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_cast] = ACTIONS(1096), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_DOLLARtype] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_untyped] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_this] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_AT] = ACTIONS(1096), + [anon_sym_AT_COLON] = ACTIONS(1094), + [anon_sym_try] = ACTIONS(1096), + [anon_sym_catch] = ACTIONS(1096), + [anon_sym_else] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_new] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PERCENT] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1096), + [anon_sym_GT_GT_GT] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1096), + [anon_sym_PIPE] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1094), + [anon_sym_EQ_GT] = ACTIONS(1094), + [anon_sym_QMARK_QMARK] = ACTIONS(1094), + [anon_sym_EQ] = ACTIONS(1096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1094), + [anon_sym_null] = ACTIONS(1096), + [anon_sym_macro] = ACTIONS(1096), + [anon_sym_abstract] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_public] = ACTIONS(1096), + [anon_sym_private] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_overload] = ACTIONS(1096), + [anon_sym_override] = ACTIONS(1096), + [anon_sym_final] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(1096), + [anon_sym_interface] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_function] = ACTIONS(1096), + [anon_sym_var] = ACTIONS(1096), + [aux_sym_integer_token1] = ACTIONS(1096), + [aux_sym_integer_token2] = ACTIONS(1094), + [aux_sym_float_token1] = ACTIONS(1096), + [aux_sym_float_token2] = ACTIONS(1094), + [anon_sym_true] = ACTIONS(1096), + [anon_sym_false] = ACTIONS(1096), + [aux_sym_string_token1] = ACTIONS(1094), + [aux_sym_string_token3] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1094), [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), - [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), + [sym_identifier] = ACTIONS(1108), + [anon_sym_POUND] = ACTIONS(1106), + [anon_sym_package] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_using] = ACTIONS(1108), + [anon_sym_throw] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_cast] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_DOLLARtype] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_untyped] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_this] = ACTIONS(1108), + [anon_sym_QMARK] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1108), + [anon_sym_AT_COLON] = ACTIONS(1106), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_catch] = ACTIONS(1108), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_new] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1106), + [anon_sym_GT_GT] = ACTIONS(1108), + [anon_sym_GT_GT_GT] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_EQ_EQ] = ACTIONS(1106), + [anon_sym_BANG_EQ] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_LT_EQ] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_EQ] = ACTIONS(1106), + [anon_sym_EQ_GT] = ACTIONS(1106), + [anon_sym_QMARK_QMARK] = ACTIONS(1106), + [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1106), + [anon_sym_null] = ACTIONS(1108), + [anon_sym_macro] = ACTIONS(1108), + [anon_sym_abstract] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_public] = ACTIONS(1108), + [anon_sym_private] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_overload] = ACTIONS(1108), + [anon_sym_override] = ACTIONS(1108), + [anon_sym_final] = ACTIONS(1108), + [anon_sym_class] = ACTIONS(1108), + [anon_sym_interface] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_function] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1108), + [aux_sym_integer_token1] = ACTIONS(1108), + [aux_sym_integer_token2] = ACTIONS(1106), + [aux_sym_float_token1] = ACTIONS(1108), + [aux_sym_float_token2] = ACTIONS(1106), + [anon_sym_true] = ACTIONS(1108), + [anon_sym_false] = ACTIONS(1108), + [aux_sym_string_token1] = ACTIONS(1106), + [aux_sym_string_token3] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1106), [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_identifier] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1110), + [anon_sym_package] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_using] = ACTIONS(1112), + [anon_sym_throw] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_cast] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_DOLLARtype] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_untyped] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_this] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_AT_COLON] = ACTIONS(1110), + [anon_sym_try] = ACTIONS(1112), + [anon_sym_catch] = ACTIONS(1112), + [anon_sym_else] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_new] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PERCENT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_GT_GT_GT] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_EQ_GT] = ACTIONS(1110), + [anon_sym_QMARK_QMARK] = ACTIONS(1110), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1110), + [anon_sym_null] = ACTIONS(1112), + [anon_sym_macro] = ACTIONS(1112), + [anon_sym_abstract] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_private] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_overload] = ACTIONS(1112), + [anon_sym_override] = ACTIONS(1112), + [anon_sym_final] = ACTIONS(1112), + [anon_sym_class] = ACTIONS(1112), + [anon_sym_interface] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_function] = ACTIONS(1112), + [anon_sym_var] = ACTIONS(1112), + [aux_sym_integer_token1] = ACTIONS(1112), + [aux_sym_integer_token2] = ACTIONS(1110), + [aux_sym_float_token1] = ACTIONS(1112), + [aux_sym_float_token2] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [aux_sym_string_token1] = ACTIONS(1110), + [aux_sym_string_token3] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1110), [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_identifier] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_package] = ACTIONS(1228), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_using] = ACTIONS(1228), + [anon_sym_throw] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_cast] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(1226), + [anon_sym_DOLLARtype] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_untyped] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_this] = ACTIONS(1228), + [anon_sym_QMARK] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1228), + [anon_sym_AT_COLON] = ACTIONS(1226), + [anon_sym_try] = ACTIONS(1228), + [anon_sym_catch] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_new] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PERCENT] = ACTIONS(1226), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1228), + [anon_sym_GT_GT_GT] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_CARET] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_EQ_EQ] = ACTIONS(1226), + [anon_sym_BANG_EQ] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_LT_EQ] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1228), + [anon_sym_GT_EQ] = ACTIONS(1226), + [anon_sym_EQ_GT] = ACTIONS(1226), + [anon_sym_QMARK_QMARK] = ACTIONS(1226), + [anon_sym_EQ] = ACTIONS(1228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1226), + [anon_sym_null] = ACTIONS(1228), + [anon_sym_macro] = ACTIONS(1228), + [anon_sym_abstract] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_public] = ACTIONS(1228), + [anon_sym_private] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym_inline] = ACTIONS(1228), + [anon_sym_overload] = ACTIONS(1228), + [anon_sym_override] = ACTIONS(1228), + [anon_sym_final] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1228), + [anon_sym_interface] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_typedef] = ACTIONS(1228), + [anon_sym_function] = ACTIONS(1228), + [anon_sym_var] = ACTIONS(1228), + [aux_sym_integer_token1] = ACTIONS(1228), + [aux_sym_integer_token2] = ACTIONS(1226), + [aux_sym_float_token1] = ACTIONS(1228), + [aux_sym_float_token2] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1228), + [anon_sym_false] = ACTIONS(1228), + [aux_sym_string_token1] = ACTIONS(1226), + [aux_sym_string_token3] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1226), [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_identifier] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1118), + [anon_sym_package] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1120), + [anon_sym_import] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_using] = ACTIONS(1120), + [anon_sym_throw] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_cast] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1118), + [anon_sym_DOLLARtype] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_untyped] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_this] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_AT_COLON] = ACTIONS(1118), + [anon_sym_try] = ACTIONS(1120), + [anon_sym_catch] = ACTIONS(1120), + [anon_sym_else] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PERCENT] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(1118), + [anon_sym_GT_GT] = ACTIONS(1120), + [anon_sym_GT_GT_GT] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_CARET] = ACTIONS(1118), + [anon_sym_AMP_AMP] = ACTIONS(1118), + [anon_sym_PIPE_PIPE] = ACTIONS(1118), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1118), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_GT_EQ] = ACTIONS(1118), + [anon_sym_EQ_GT] = ACTIONS(1118), + [anon_sym_QMARK_QMARK] = ACTIONS(1118), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1118), + [anon_sym_null] = ACTIONS(1120), + [anon_sym_macro] = ACTIONS(1120), + [anon_sym_abstract] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_public] = ACTIONS(1120), + [anon_sym_private] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_overload] = ACTIONS(1120), + [anon_sym_override] = ACTIONS(1120), + [anon_sym_final] = ACTIONS(1120), + [anon_sym_class] = ACTIONS(1120), + [anon_sym_interface] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_function] = ACTIONS(1120), + [anon_sym_var] = ACTIONS(1120), + [aux_sym_integer_token1] = ACTIONS(1120), + [aux_sym_integer_token2] = ACTIONS(1118), + [aux_sym_float_token1] = ACTIONS(1120), + [aux_sym_float_token2] = ACTIONS(1118), + [anon_sym_true] = ACTIONS(1120), + [anon_sym_false] = ACTIONS(1120), + [aux_sym_string_token1] = ACTIONS(1118), + [aux_sym_string_token3] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1118), [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(1110), + [sym__unaryExpression] = STATE(3229), + [sym_runtime_type_check_expression] = STATE(3229), + [sym_switch_expression] = STATE(3229), + [sym_cast_expression] = STATE(3229), + [sym_type_trace_expression] = STATE(3229), + [sym__parenthesized_expression] = STATE(3116), + [sym_subscript_expression] = STATE(3229), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1110), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_untyped] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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_identifier] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(842), + [anon_sym_package] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_import] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(842), + [anon_sym_using] = ACTIONS(844), + [anon_sym_throw] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_case] = ACTIONS(844), + [anon_sym_default] = ACTIONS(844), + [anon_sym_cast] = ACTIONS(844), + [anon_sym_COMMA] = ACTIONS(842), + [anon_sym_DOLLARtype] = ACTIONS(842), + [anon_sym_for] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_untyped] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_this] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_AT_COLON] = ACTIONS(842), + [anon_sym_try] = ACTIONS(844), + [anon_sym_catch] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_new] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_SLASH] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(842), + [anon_sym_GT_GT] = ACTIONS(844), + [anon_sym_GT_GT_GT] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(842), + [anon_sym_PIPE_PIPE] = ACTIONS(842), + [anon_sym_EQ_EQ] = ACTIONS(842), + [anon_sym_BANG_EQ] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_EQ] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_GT_EQ] = ACTIONS(842), + [anon_sym_EQ_GT] = ACTIONS(842), + [anon_sym_QMARK_QMARK] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(842), + [anon_sym_null] = ACTIONS(844), + [anon_sym_macro] = ACTIONS(844), + [anon_sym_abstract] = ACTIONS(844), + [anon_sym_static] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_extern] = ACTIONS(844), + [anon_sym_inline] = ACTIONS(844), + [anon_sym_overload] = ACTIONS(844), + [anon_sym_override] = ACTIONS(844), + [anon_sym_final] = ACTIONS(844), + [anon_sym_class] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(844), + [anon_sym_enum] = ACTIONS(844), + [anon_sym_typedef] = ACTIONS(844), + [anon_sym_function] = ACTIONS(844), + [anon_sym_var] = ACTIONS(844), + [aux_sym_integer_token1] = ACTIONS(844), + [aux_sym_integer_token2] = ACTIONS(842), + [aux_sym_float_token1] = ACTIONS(844), + [aux_sym_float_token2] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [aux_sym_string_token1] = ACTIONS(842), + [aux_sym_string_token3] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(842), [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_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1130), + [anon_sym_POUND] = ACTIONS(1128), + [anon_sym_package] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_import] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_using] = ACTIONS(1130), + [anon_sym_throw] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_cast] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_DOLLARtype] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_untyped] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_this] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(1130), + [anon_sym_AT_COLON] = ACTIONS(1128), + [anon_sym_try] = ACTIONS(1130), + [anon_sym_catch] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_new] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PERCENT] = ACTIONS(1128), + [anon_sym_SLASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1128), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_GT_GT_GT] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(1128), + [anon_sym_BANG_EQ] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_GT_EQ] = ACTIONS(1128), + [anon_sym_EQ_GT] = ACTIONS(1128), + [anon_sym_QMARK_QMARK] = ACTIONS(1128), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1128), + [anon_sym_null] = ACTIONS(1130), + [anon_sym_macro] = ACTIONS(1130), + [anon_sym_abstract] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_overload] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1130), + [anon_sym_class] = ACTIONS(1130), + [anon_sym_interface] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1130), + [anon_sym_function] = ACTIONS(1130), + [anon_sym_var] = ACTIONS(1130), + [aux_sym_integer_token1] = ACTIONS(1130), + [aux_sym_integer_token2] = ACTIONS(1128), + [aux_sym_float_token1] = ACTIONS(1130), + [aux_sym_float_token2] = ACTIONS(1128), + [anon_sym_true] = ACTIONS(1130), + [anon_sym_false] = ACTIONS(1130), + [aux_sym_string_token1] = ACTIONS(1128), + [aux_sym_string_token3] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1128), [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_identifier] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(1134), + [anon_sym_package] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_using] = ACTIONS(1136), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_cast] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_DOLLARtype] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_untyped] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_this] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1136), + [anon_sym_AT_COLON] = ACTIONS(1134), + [anon_sym_try] = ACTIONS(1136), + [anon_sym_catch] = ACTIONS(1136), + [anon_sym_else] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_new] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_SLASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_GT_GT_GT] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1134), + [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [anon_sym_EQ_EQ] = ACTIONS(1134), + [anon_sym_BANG_EQ] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_LT_EQ] = ACTIONS(1134), + [anon_sym_GT] = ACTIONS(1136), + [anon_sym_GT_EQ] = ACTIONS(1134), + [anon_sym_EQ_GT] = ACTIONS(1134), + [anon_sym_QMARK_QMARK] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1134), + [anon_sym_null] = ACTIONS(1136), + [anon_sym_macro] = ACTIONS(1136), + [anon_sym_abstract] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_public] = ACTIONS(1136), + [anon_sym_private] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_overload] = ACTIONS(1136), + [anon_sym_override] = ACTIONS(1136), + [anon_sym_final] = ACTIONS(1136), + [anon_sym_class] = ACTIONS(1136), + [anon_sym_interface] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_function] = ACTIONS(1136), + [anon_sym_var] = ACTIONS(1136), + [aux_sym_integer_token1] = ACTIONS(1136), + [aux_sym_integer_token2] = ACTIONS(1134), + [aux_sym_float_token1] = ACTIONS(1136), + [aux_sym_float_token2] = ACTIONS(1134), + [anon_sym_true] = ACTIONS(1136), + [anon_sym_false] = ACTIONS(1136), + [aux_sym_string_token1] = ACTIONS(1134), + [aux_sym_string_token3] = ACTIONS(1134), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1134), [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_identifier] = ACTIONS(1152), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_package] = ACTIONS(1152), + [anon_sym_DOT] = ACTIONS(1152), + [anon_sym_import] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1150), + [anon_sym_using] = ACTIONS(1152), + [anon_sym_throw] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_cast] = ACTIONS(1152), + [anon_sym_COMMA] = ACTIONS(1150), + [anon_sym_DOLLARtype] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_untyped] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_this] = ACTIONS(1152), + [anon_sym_QMARK] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1152), + [anon_sym_AT_COLON] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1152), + [anon_sym_catch] = ACTIONS(1152), + [anon_sym_else] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(1152), + [anon_sym_new] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1150), + [anon_sym_PERCENT] = ACTIONS(1150), + [anon_sym_SLASH] = ACTIONS(1152), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_LT_LT] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_GT_GT_GT] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_CARET] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_EQ_EQ] = ACTIONS(1150), + [anon_sym_BANG_EQ] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_LT_EQ] = ACTIONS(1150), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_GT_EQ] = ACTIONS(1150), + [anon_sym_EQ_GT] = ACTIONS(1150), + [anon_sym_QMARK_QMARK] = ACTIONS(1150), + [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1150), + [anon_sym_null] = ACTIONS(1152), + [anon_sym_macro] = ACTIONS(1152), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_extern] = ACTIONS(1152), + [anon_sym_inline] = ACTIONS(1152), + [anon_sym_overload] = ACTIONS(1152), + [anon_sym_override] = ACTIONS(1152), + [anon_sym_final] = ACTIONS(1152), + [anon_sym_class] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1152), + [anon_sym_function] = ACTIONS(1152), + [anon_sym_var] = ACTIONS(1152), + [aux_sym_integer_token1] = ACTIONS(1152), + [aux_sym_integer_token2] = ACTIONS(1150), + [aux_sym_float_token1] = ACTIONS(1152), + [aux_sym_float_token2] = ACTIONS(1150), + [anon_sym_true] = ACTIONS(1152), + [anon_sym_false] = ACTIONS(1152), + [aux_sym_string_token1] = ACTIONS(1150), + [aux_sym_string_token3] = ACTIONS(1150), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1150), [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_identifier] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1154), + [anon_sym_package] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(1156), + [anon_sym_import] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_using] = ACTIONS(1156), + [anon_sym_throw] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_switch] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1156), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_cast] = ACTIONS(1156), + [anon_sym_COMMA] = ACTIONS(1154), + [anon_sym_DOLLARtype] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_untyped] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_this] = ACTIONS(1156), + [anon_sym_QMARK] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1156), + [anon_sym_AT_COLON] = ACTIONS(1154), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_catch] = ACTIONS(1156), + [anon_sym_else] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_do] = ACTIONS(1156), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [anon_sym_PERCENT] = ACTIONS(1154), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_LT_LT] = ACTIONS(1154), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_GT_GT_GT] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1154), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE_PIPE] = ACTIONS(1154), + [anon_sym_EQ_EQ] = ACTIONS(1154), + [anon_sym_BANG_EQ] = ACTIONS(1154), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_LT_EQ] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_GT_EQ] = ACTIONS(1154), + [anon_sym_EQ_GT] = ACTIONS(1154), + [anon_sym_QMARK_QMARK] = ACTIONS(1154), + [anon_sym_EQ] = ACTIONS(1156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1154), + [anon_sym_null] = ACTIONS(1156), + [anon_sym_macro] = ACTIONS(1156), + [anon_sym_abstract] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_public] = ACTIONS(1156), + [anon_sym_private] = ACTIONS(1156), + [anon_sym_extern] = ACTIONS(1156), + [anon_sym_inline] = ACTIONS(1156), + [anon_sym_overload] = ACTIONS(1156), + [anon_sym_override] = ACTIONS(1156), + [anon_sym_final] = ACTIONS(1156), + [anon_sym_class] = ACTIONS(1156), + [anon_sym_interface] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1156), + [anon_sym_function] = ACTIONS(1156), + [anon_sym_var] = ACTIONS(1156), + [aux_sym_integer_token1] = ACTIONS(1156), + [aux_sym_integer_token2] = ACTIONS(1154), + [aux_sym_float_token1] = ACTIONS(1156), + [aux_sym_float_token2] = ACTIONS(1154), + [anon_sym_true] = ACTIONS(1156), + [anon_sym_false] = ACTIONS(1156), + [aux_sym_string_token1] = ACTIONS(1154), + [aux_sym_string_token3] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1154), [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_identifier] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_package] = ACTIONS(1160), + [anon_sym_DOT] = ACTIONS(1160), + [anon_sym_import] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_using] = ACTIONS(1160), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_cast] = ACTIONS(1160), + [anon_sym_COMMA] = ACTIONS(1158), + [anon_sym_DOLLARtype] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_untyped] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_this] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1160), + [anon_sym_AT_COLON] = ACTIONS(1158), + [anon_sym_try] = ACTIONS(1160), + [anon_sym_catch] = ACTIONS(1160), + [anon_sym_else] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_new] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_PERCENT] = ACTIONS(1158), + [anon_sym_SLASH] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1158), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_GT_GT_GT] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_AMP_AMP] = ACTIONS(1158), + [anon_sym_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1158), + [anon_sym_BANG_EQ] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_LT_EQ] = ACTIONS(1158), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_GT_EQ] = ACTIONS(1158), + [anon_sym_EQ_GT] = ACTIONS(1158), + [anon_sym_QMARK_QMARK] = ACTIONS(1158), + [anon_sym_EQ] = ACTIONS(1160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1158), + [anon_sym_null] = ACTIONS(1160), + [anon_sym_macro] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_extern] = ACTIONS(1160), + [anon_sym_inline] = ACTIONS(1160), + [anon_sym_overload] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_final] = ACTIONS(1160), + [anon_sym_class] = ACTIONS(1160), + [anon_sym_interface] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1160), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_var] = ACTIONS(1160), + [aux_sym_integer_token1] = ACTIONS(1160), + [aux_sym_integer_token2] = ACTIONS(1158), + [aux_sym_float_token1] = ACTIONS(1160), + [aux_sym_float_token2] = ACTIONS(1158), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [aux_sym_string_token1] = ACTIONS(1158), + [aux_sym_string_token3] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1158), [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_identifier] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1162), + [anon_sym_package] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_using] = ACTIONS(1164), + [anon_sym_throw] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_switch] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1164), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_cast] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1162), + [anon_sym_DOLLARtype] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_untyped] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_this] = ACTIONS(1164), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_AT_COLON] = ACTIONS(1162), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_catch] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_do] = ACTIONS(1164), + [anon_sym_new] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_PERCENT] = ACTIONS(1162), + [anon_sym_SLASH] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1164), + [anon_sym_GT_GT_GT] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1162), + [anon_sym_BANG_EQ] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1162), + [anon_sym_EQ_GT] = ACTIONS(1162), + [anon_sym_QMARK_QMARK] = ACTIONS(1162), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1162), + [anon_sym_null] = ACTIONS(1164), + [anon_sym_macro] = ACTIONS(1164), + [anon_sym_abstract] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1164), + [anon_sym_public] = ACTIONS(1164), + [anon_sym_private] = ACTIONS(1164), + [anon_sym_extern] = ACTIONS(1164), + [anon_sym_inline] = ACTIONS(1164), + [anon_sym_overload] = ACTIONS(1164), + [anon_sym_override] = ACTIONS(1164), + [anon_sym_final] = ACTIONS(1164), + [anon_sym_class] = ACTIONS(1164), + [anon_sym_interface] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_typedef] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(1164), + [anon_sym_var] = ACTIONS(1164), + [aux_sym_integer_token1] = ACTIONS(1164), + [aux_sym_integer_token2] = ACTIONS(1162), + [aux_sym_float_token1] = ACTIONS(1164), + [aux_sym_float_token2] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [aux_sym_string_token1] = ACTIONS(1162), + [aux_sym_string_token3] = ACTIONS(1162), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1162), [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_identifier] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(1166), + [anon_sym_package] = ACTIONS(1168), + [anon_sym_DOT] = ACTIONS(1168), + [anon_sym_import] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_using] = ACTIONS(1168), + [anon_sym_throw] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_switch] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1168), + [anon_sym_default] = ACTIONS(1168), + [anon_sym_cast] = ACTIONS(1168), + [anon_sym_COMMA] = ACTIONS(1166), + [anon_sym_DOLLARtype] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_untyped] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_this] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1168), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_AT_COLON] = ACTIONS(1166), + [anon_sym_try] = ACTIONS(1168), + [anon_sym_catch] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_do] = ACTIONS(1168), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_SLASH] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1168), + [anon_sym_GT_GT_GT] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_CARET] = ACTIONS(1166), + [anon_sym_AMP_AMP] = ACTIONS(1166), + [anon_sym_PIPE_PIPE] = ACTIONS(1166), + [anon_sym_EQ_EQ] = ACTIONS(1166), + [anon_sym_BANG_EQ] = ACTIONS(1166), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_LT_EQ] = ACTIONS(1166), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_EQ] = ACTIONS(1166), + [anon_sym_EQ_GT] = ACTIONS(1166), + [anon_sym_QMARK_QMARK] = ACTIONS(1166), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1166), + [anon_sym_null] = ACTIONS(1168), + [anon_sym_macro] = ACTIONS(1168), + [anon_sym_abstract] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_public] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_extern] = ACTIONS(1168), + [anon_sym_inline] = ACTIONS(1168), + [anon_sym_overload] = ACTIONS(1168), + [anon_sym_override] = ACTIONS(1168), + [anon_sym_final] = ACTIONS(1168), + [anon_sym_class] = ACTIONS(1168), + [anon_sym_interface] = ACTIONS(1168), + [anon_sym_enum] = ACTIONS(1168), + [anon_sym_typedef] = ACTIONS(1168), + [anon_sym_function] = ACTIONS(1168), + [anon_sym_var] = ACTIONS(1168), + [aux_sym_integer_token1] = ACTIONS(1168), + [aux_sym_integer_token2] = ACTIONS(1166), + [aux_sym_float_token1] = ACTIONS(1168), + [aux_sym_float_token2] = ACTIONS(1166), + [anon_sym_true] = ACTIONS(1168), + [anon_sym_false] = ACTIONS(1168), + [aux_sym_string_token1] = ACTIONS(1166), + [aux_sym_string_token3] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1166), [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_identifier] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_package] = ACTIONS(1172), + [anon_sym_DOT] = ACTIONS(1172), + [anon_sym_import] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_using] = ACTIONS(1172), + [anon_sym_throw] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_switch] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1172), + [anon_sym_cast] = ACTIONS(1172), + [anon_sym_COMMA] = ACTIONS(1170), + [anon_sym_DOLLARtype] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_untyped] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_this] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1172), + [anon_sym_AT_COLON] = ACTIONS(1170), + [anon_sym_try] = ACTIONS(1172), + [anon_sym_catch] = ACTIONS(1172), + [anon_sym_else] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_do] = ACTIONS(1172), + [anon_sym_new] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), + [anon_sym_PERCENT] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_LT_LT] = ACTIONS(1170), + [anon_sym_GT_GT] = ACTIONS(1172), + [anon_sym_GT_GT_GT] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_CARET] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1170), + [anon_sym_EQ_EQ] = ACTIONS(1170), + [anon_sym_BANG_EQ] = ACTIONS(1170), + [anon_sym_LT] = ACTIONS(1172), + [anon_sym_LT_EQ] = ACTIONS(1170), + [anon_sym_GT] = ACTIONS(1172), + [anon_sym_GT_EQ] = ACTIONS(1170), + [anon_sym_EQ_GT] = ACTIONS(1170), + [anon_sym_QMARK_QMARK] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1170), + [anon_sym_null] = ACTIONS(1172), + [anon_sym_macro] = ACTIONS(1172), + [anon_sym_abstract] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_inline] = ACTIONS(1172), + [anon_sym_overload] = ACTIONS(1172), + [anon_sym_override] = ACTIONS(1172), + [anon_sym_final] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_interface] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1172), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_var] = ACTIONS(1172), + [aux_sym_integer_token1] = ACTIONS(1172), + [aux_sym_integer_token2] = ACTIONS(1170), + [aux_sym_float_token1] = ACTIONS(1172), + [aux_sym_float_token2] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1172), + [anon_sym_false] = ACTIONS(1172), + [aux_sym_string_token1] = ACTIONS(1170), + [aux_sym_string_token3] = ACTIONS(1170), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1170), [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_identifier] = ACTIONS(1176), + [anon_sym_POUND] = ACTIONS(1174), + [anon_sym_package] = ACTIONS(1176), + [anon_sym_DOT] = ACTIONS(1176), + [anon_sym_import] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1176), + [anon_sym_throw] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_cast] = ACTIONS(1176), + [anon_sym_COMMA] = ACTIONS(1174), + [anon_sym_DOLLARtype] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_untyped] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_this] = ACTIONS(1176), + [anon_sym_QMARK] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1176), + [anon_sym_AT_COLON] = ACTIONS(1174), + [anon_sym_try] = ACTIONS(1176), + [anon_sym_catch] = ACTIONS(1176), + [anon_sym_else] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1176), + [anon_sym_new] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_PERCENT] = ACTIONS(1174), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_LT_LT] = ACTIONS(1174), + [anon_sym_GT_GT] = ACTIONS(1176), + [anon_sym_GT_GT_GT] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_CARET] = ACTIONS(1174), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1174), + [anon_sym_EQ_EQ] = ACTIONS(1174), + [anon_sym_BANG_EQ] = ACTIONS(1174), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_LT_EQ] = ACTIONS(1174), + [anon_sym_GT] = ACTIONS(1176), + [anon_sym_GT_EQ] = ACTIONS(1174), + [anon_sym_EQ_GT] = ACTIONS(1174), + [anon_sym_QMARK_QMARK] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1174), + [anon_sym_null] = ACTIONS(1176), + [anon_sym_macro] = ACTIONS(1176), + [anon_sym_abstract] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_public] = ACTIONS(1176), + [anon_sym_private] = ACTIONS(1176), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym_inline] = ACTIONS(1176), + [anon_sym_overload] = ACTIONS(1176), + [anon_sym_override] = ACTIONS(1176), + [anon_sym_final] = ACTIONS(1176), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_interface] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_typedef] = ACTIONS(1176), + [anon_sym_function] = ACTIONS(1176), + [anon_sym_var] = ACTIONS(1176), + [aux_sym_integer_token1] = ACTIONS(1176), + [aux_sym_integer_token2] = ACTIONS(1174), + [aux_sym_float_token1] = ACTIONS(1176), + [aux_sym_float_token2] = ACTIONS(1174), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [aux_sym_string_token1] = ACTIONS(1174), + [aux_sym_string_token3] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1174), [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_identifier] = ACTIONS(1184), + [anon_sym_POUND] = ACTIONS(1182), + [anon_sym_package] = ACTIONS(1184), + [anon_sym_DOT] = ACTIONS(1184), + [anon_sym_import] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_throw] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_switch] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_case] = ACTIONS(1184), + [anon_sym_default] = ACTIONS(1184), + [anon_sym_cast] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_DOLLARtype] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1184), + [anon_sym_untyped] = ACTIONS(1184), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_this] = ACTIONS(1184), + [anon_sym_QMARK] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1184), + [anon_sym_AT_COLON] = ACTIONS(1182), + [anon_sym_try] = ACTIONS(1184), + [anon_sym_catch] = ACTIONS(1184), + [anon_sym_else] = ACTIONS(1184), + [anon_sym_if] = ACTIONS(1184), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_do] = ACTIONS(1184), + [anon_sym_new] = ACTIONS(1184), + [anon_sym_TILDE] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_PERCENT] = ACTIONS(1182), + [anon_sym_SLASH] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_LT_LT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_GT_GT_GT] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_AMP_AMP] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_BANG_EQ] = ACTIONS(1182), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_LT_EQ] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1184), + [anon_sym_GT_EQ] = ACTIONS(1182), + [anon_sym_EQ_GT] = ACTIONS(1182), + [anon_sym_QMARK_QMARK] = ACTIONS(1182), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1182), + [anon_sym_null] = ACTIONS(1184), + [anon_sym_macro] = ACTIONS(1184), + [anon_sym_abstract] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_extern] = ACTIONS(1184), + [anon_sym_inline] = ACTIONS(1184), + [anon_sym_overload] = ACTIONS(1184), + [anon_sym_override] = ACTIONS(1184), + [anon_sym_final] = ACTIONS(1184), + [anon_sym_class] = ACTIONS(1184), + [anon_sym_interface] = ACTIONS(1184), + [anon_sym_enum] = ACTIONS(1184), + [anon_sym_typedef] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(1184), + [anon_sym_var] = ACTIONS(1184), + [aux_sym_integer_token1] = ACTIONS(1184), + [aux_sym_integer_token2] = ACTIONS(1182), + [aux_sym_float_token1] = ACTIONS(1184), + [aux_sym_float_token2] = ACTIONS(1182), + [anon_sym_true] = ACTIONS(1184), + [anon_sym_false] = ACTIONS(1184), + [aux_sym_string_token1] = ACTIONS(1182), + [aux_sym_string_token3] = ACTIONS(1182), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1182), [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_identifier] = ACTIONS(1188), + [anon_sym_POUND] = ACTIONS(1186), + [anon_sym_package] = ACTIONS(1188), + [anon_sym_DOT] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_using] = ACTIONS(1188), + [anon_sym_throw] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_switch] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1188), + [anon_sym_default] = ACTIONS(1188), + [anon_sym_cast] = ACTIONS(1188), + [anon_sym_COMMA] = ACTIONS(1186), + [anon_sym_DOLLARtype] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1188), + [anon_sym_untyped] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1188), + [anon_sym_continue] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_this] = ACTIONS(1188), + [anon_sym_QMARK] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_AT_COLON] = ACTIONS(1186), + [anon_sym_try] = ACTIONS(1188), + [anon_sym_catch] = ACTIONS(1188), + [anon_sym_else] = ACTIONS(1188), + [anon_sym_if] = ACTIONS(1188), + [anon_sym_while] = ACTIONS(1188), + [anon_sym_do] = ACTIONS(1188), + [anon_sym_new] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1186), + [anon_sym_PERCENT] = ACTIONS(1186), + [anon_sym_SLASH] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1186), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_GT_GT_GT] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_CARET] = ACTIONS(1186), + [anon_sym_AMP_AMP] = ACTIONS(1186), + [anon_sym_PIPE_PIPE] = ACTIONS(1186), + [anon_sym_EQ_EQ] = ACTIONS(1186), + [anon_sym_BANG_EQ] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_LT_EQ] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1186), + [anon_sym_EQ_GT] = ACTIONS(1186), + [anon_sym_QMARK_QMARK] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), + [anon_sym_null] = ACTIONS(1188), + [anon_sym_macro] = ACTIONS(1188), + [anon_sym_abstract] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1188), + [anon_sym_public] = ACTIONS(1188), + [anon_sym_private] = ACTIONS(1188), + [anon_sym_extern] = ACTIONS(1188), + [anon_sym_inline] = ACTIONS(1188), + [anon_sym_overload] = ACTIONS(1188), + [anon_sym_override] = ACTIONS(1188), + [anon_sym_final] = ACTIONS(1188), + [anon_sym_class] = ACTIONS(1188), + [anon_sym_interface] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(1188), + [anon_sym_typedef] = ACTIONS(1188), + [anon_sym_function] = ACTIONS(1188), + [anon_sym_var] = ACTIONS(1188), + [aux_sym_integer_token1] = ACTIONS(1188), + [aux_sym_integer_token2] = ACTIONS(1186), + [aux_sym_float_token1] = ACTIONS(1188), + [aux_sym_float_token2] = ACTIONS(1186), + [anon_sym_true] = ACTIONS(1188), + [anon_sym_false] = ACTIONS(1188), + [aux_sym_string_token1] = ACTIONS(1186), + [aux_sym_string_token3] = ACTIONS(1186), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1186), [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_identifier] = ACTIONS(1192), + [anon_sym_POUND] = ACTIONS(1190), + [anon_sym_package] = ACTIONS(1192), + [anon_sym_DOT] = ACTIONS(1192), + [anon_sym_import] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1190), + [anon_sym_using] = ACTIONS(1192), + [anon_sym_throw] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1192), + [anon_sym_cast] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1190), + [anon_sym_DOLLARtype] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_untyped] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_this] = ACTIONS(1192), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_AT_COLON] = ACTIONS(1190), + [anon_sym_try] = ACTIONS(1192), + [anon_sym_catch] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_do] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_PERCENT] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1192), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1192), + [anon_sym_GT_GT_GT] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_CARET] = ACTIONS(1190), + [anon_sym_AMP_AMP] = ACTIONS(1190), + [anon_sym_PIPE_PIPE] = ACTIONS(1190), + [anon_sym_EQ_EQ] = ACTIONS(1190), + [anon_sym_BANG_EQ] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_LT_EQ] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_GT_EQ] = ACTIONS(1190), + [anon_sym_EQ_GT] = ACTIONS(1190), + [anon_sym_QMARK_QMARK] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1192), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1190), + [anon_sym_null] = ACTIONS(1192), + [anon_sym_macro] = ACTIONS(1192), + [anon_sym_abstract] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1192), + [anon_sym_public] = ACTIONS(1192), + [anon_sym_private] = ACTIONS(1192), + [anon_sym_extern] = ACTIONS(1192), + [anon_sym_inline] = ACTIONS(1192), + [anon_sym_overload] = ACTIONS(1192), + [anon_sym_override] = ACTIONS(1192), + [anon_sym_final] = ACTIONS(1192), + [anon_sym_class] = ACTIONS(1192), + [anon_sym_interface] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(1192), + [anon_sym_var] = ACTIONS(1192), + [aux_sym_integer_token1] = ACTIONS(1192), + [aux_sym_integer_token2] = ACTIONS(1190), + [aux_sym_float_token1] = ACTIONS(1192), + [aux_sym_float_token2] = ACTIONS(1190), + [anon_sym_true] = ACTIONS(1192), + [anon_sym_false] = ACTIONS(1192), + [aux_sym_string_token1] = ACTIONS(1190), + [aux_sym_string_token3] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1190), [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_identifier] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_package] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_import] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_throw] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_cast] = ACTIONS(1196), + [anon_sym_COMMA] = ACTIONS(1194), + [anon_sym_DOLLARtype] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_untyped] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_this] = ACTIONS(1196), + [anon_sym_QMARK] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1196), + [anon_sym_AT_COLON] = ACTIONS(1194), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_catch] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_new] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_PERCENT] = ACTIONS(1194), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1194), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_GT_GT_GT] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1194), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1194), + [anon_sym_EQ_EQ] = ACTIONS(1194), + [anon_sym_BANG_EQ] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_LT_EQ] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1194), + [anon_sym_EQ_GT] = ACTIONS(1194), + [anon_sym_QMARK_QMARK] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_null] = ACTIONS(1196), + [anon_sym_macro] = ACTIONS(1196), + [anon_sym_abstract] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_public] = ACTIONS(1196), + [anon_sym_private] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_overload] = ACTIONS(1196), + [anon_sym_override] = ACTIONS(1196), + [anon_sym_final] = ACTIONS(1196), + [anon_sym_class] = ACTIONS(1196), + [anon_sym_interface] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_function] = ACTIONS(1196), + [anon_sym_var] = ACTIONS(1196), + [aux_sym_integer_token1] = ACTIONS(1196), + [aux_sym_integer_token2] = ACTIONS(1194), + [aux_sym_float_token1] = ACTIONS(1196), + [aux_sym_float_token2] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [aux_sym_string_token1] = ACTIONS(1194), + [aux_sym_string_token3] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1194), [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_identifier] = ACTIONS(1200), + [anon_sym_POUND] = ACTIONS(1198), + [anon_sym_package] = ACTIONS(1200), + [anon_sym_DOT] = ACTIONS(1200), + [anon_sym_import] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_using] = ACTIONS(1200), + [anon_sym_throw] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_cast] = ACTIONS(1200), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_DOLLARtype] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_untyped] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_this] = ACTIONS(1200), + [anon_sym_QMARK] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1200), + [anon_sym_AT_COLON] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1200), + [anon_sym_catch] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_new] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PERCENT] = ACTIONS(1198), + [anon_sym_SLASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1200), + [anon_sym_GT_GT_GT] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_EQ_EQ] = ACTIONS(1198), + [anon_sym_BANG_EQ] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1200), + [anon_sym_LT_EQ] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1200), + [anon_sym_GT_EQ] = ACTIONS(1198), + [anon_sym_EQ_GT] = ACTIONS(1198), + [anon_sym_QMARK_QMARK] = ACTIONS(1198), + [anon_sym_EQ] = ACTIONS(1200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1198), + [anon_sym_null] = ACTIONS(1200), + [anon_sym_macro] = ACTIONS(1200), + [anon_sym_abstract] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_public] = ACTIONS(1200), + [anon_sym_private] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_overload] = ACTIONS(1200), + [anon_sym_override] = ACTIONS(1200), + [anon_sym_final] = ACTIONS(1200), + [anon_sym_class] = ACTIONS(1200), + [anon_sym_interface] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_function] = ACTIONS(1200), + [anon_sym_var] = ACTIONS(1200), + [aux_sym_integer_token1] = ACTIONS(1200), + [aux_sym_integer_token2] = ACTIONS(1198), + [aux_sym_float_token1] = ACTIONS(1200), + [aux_sym_float_token2] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1200), + [anon_sym_false] = ACTIONS(1200), + [aux_sym_string_token1] = ACTIONS(1198), + [aux_sym_string_token3] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1198), [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_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1208), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_package] = ACTIONS(1208), + [anon_sym_DOT] = ACTIONS(1208), + [anon_sym_import] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_using] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_cast] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_DOLLARtype] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_untyped] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_this] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1208), + [anon_sym_AT_COLON] = ACTIONS(1206), + [anon_sym_try] = ACTIONS(1208), + [anon_sym_catch] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_new] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_LT_LT] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_GT_GT_GT] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1206), + [anon_sym_AMP_AMP] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1206), + [anon_sym_EQ_EQ] = ACTIONS(1206), + [anon_sym_BANG_EQ] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_LT_EQ] = ACTIONS(1206), + [anon_sym_GT] = ACTIONS(1208), + [anon_sym_GT_EQ] = ACTIONS(1206), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_QMARK_QMARK] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), + [anon_sym_null] = ACTIONS(1208), + [anon_sym_macro] = ACTIONS(1208), + [anon_sym_abstract] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_public] = ACTIONS(1208), + [anon_sym_private] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_overload] = ACTIONS(1208), + [anon_sym_override] = ACTIONS(1208), + [anon_sym_final] = ACTIONS(1208), + [anon_sym_class] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_function] = ACTIONS(1208), + [anon_sym_var] = ACTIONS(1208), + [aux_sym_integer_token1] = ACTIONS(1208), + [aux_sym_integer_token2] = ACTIONS(1206), + [aux_sym_float_token1] = ACTIONS(1208), + [aux_sym_float_token2] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), + [aux_sym_string_token1] = ACTIONS(1206), + [aux_sym_string_token3] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1206), [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_identifier] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1210), + [anon_sym_package] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_import] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_using] = ACTIONS(1212), + [anon_sym_throw] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_cast] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1210), + [anon_sym_DOLLARtype] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_untyped] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_this] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_AT_COLON] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1212), + [anon_sym_catch] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_new] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PERCENT] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_LT_LT] = ACTIONS(1210), + [anon_sym_GT_GT] = ACTIONS(1212), + [anon_sym_GT_GT_GT] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1210), + [anon_sym_AMP_AMP] = ACTIONS(1210), + [anon_sym_PIPE_PIPE] = ACTIONS(1210), + [anon_sym_EQ_EQ] = ACTIONS(1210), + [anon_sym_BANG_EQ] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1212), + [anon_sym_LT_EQ] = ACTIONS(1210), + [anon_sym_GT] = ACTIONS(1212), + [anon_sym_GT_EQ] = ACTIONS(1210), + [anon_sym_EQ_GT] = ACTIONS(1210), + [anon_sym_QMARK_QMARK] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_null] = ACTIONS(1212), + [anon_sym_macro] = ACTIONS(1212), + [anon_sym_abstract] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_overload] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_final] = ACTIONS(1212), + [anon_sym_class] = ACTIONS(1212), + [anon_sym_interface] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_function] = ACTIONS(1212), + [anon_sym_var] = ACTIONS(1212), + [aux_sym_integer_token1] = ACTIONS(1212), + [aux_sym_integer_token2] = ACTIONS(1210), + [aux_sym_float_token1] = ACTIONS(1212), + [aux_sym_float_token2] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1212), + [anon_sym_false] = ACTIONS(1212), + [aux_sym_string_token1] = ACTIONS(1210), + [aux_sym_string_token3] = ACTIONS(1210), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1210), [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_identifier] = ACTIONS(1216), + [anon_sym_POUND] = ACTIONS(1214), + [anon_sym_package] = ACTIONS(1216), + [anon_sym_DOT] = ACTIONS(1216), + [anon_sym_import] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_using] = ACTIONS(1216), + [anon_sym_throw] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_cast] = ACTIONS(1216), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_DOLLARtype] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_untyped] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_this] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(1216), + [anon_sym_AT] = ACTIONS(1216), + [anon_sym_AT_COLON] = ACTIONS(1214), + [anon_sym_try] = ACTIONS(1216), + [anon_sym_catch] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_new] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PERCENT] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_LT_LT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1216), + [anon_sym_GT_GT_GT] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_CARET] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_EQ_EQ] = ACTIONS(1214), + [anon_sym_BANG_EQ] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_LT_EQ] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1216), + [anon_sym_GT_EQ] = ACTIONS(1214), + [anon_sym_EQ_GT] = ACTIONS(1214), + [anon_sym_QMARK_QMARK] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1216), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_macro] = ACTIONS(1216), + [anon_sym_abstract] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_public] = ACTIONS(1216), + [anon_sym_private] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_overload] = ACTIONS(1216), + [anon_sym_override] = ACTIONS(1216), + [anon_sym_final] = ACTIONS(1216), + [anon_sym_class] = ACTIONS(1216), + [anon_sym_interface] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_function] = ACTIONS(1216), + [anon_sym_var] = ACTIONS(1216), + [aux_sym_integer_token1] = ACTIONS(1216), + [aux_sym_integer_token2] = ACTIONS(1214), + [aux_sym_float_token1] = ACTIONS(1216), + [aux_sym_float_token2] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1216), + [anon_sym_false] = ACTIONS(1216), + [aux_sym_string_token1] = ACTIONS(1214), + [aux_sym_string_token3] = ACTIONS(1214), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1214), [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_identifier] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_package] = ACTIONS(1220), + [anon_sym_DOT] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_using] = ACTIONS(1220), + [anon_sym_throw] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_cast] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1218), + [anon_sym_DOLLARtype] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_untyped] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_this] = ACTIONS(1220), + [anon_sym_QMARK] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1220), + [anon_sym_AT_COLON] = ACTIONS(1218), + [anon_sym_try] = ACTIONS(1220), + [anon_sym_catch] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PERCENT] = ACTIONS(1218), + [anon_sym_SLASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_LT_LT] = ACTIONS(1218), + [anon_sym_GT_GT] = ACTIONS(1220), + [anon_sym_GT_GT_GT] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(1220), + [anon_sym_CARET] = ACTIONS(1218), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), + [anon_sym_EQ_EQ] = ACTIONS(1218), + [anon_sym_BANG_EQ] = ACTIONS(1218), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_LT_EQ] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1220), + [anon_sym_GT_EQ] = ACTIONS(1218), + [anon_sym_EQ_GT] = ACTIONS(1218), + [anon_sym_QMARK_QMARK] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1218), + [anon_sym_null] = ACTIONS(1220), + [anon_sym_macro] = ACTIONS(1220), + [anon_sym_abstract] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_public] = ACTIONS(1220), + [anon_sym_private] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_overload] = ACTIONS(1220), + [anon_sym_override] = ACTIONS(1220), + [anon_sym_final] = ACTIONS(1220), + [anon_sym_class] = ACTIONS(1220), + [anon_sym_interface] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_function] = ACTIONS(1220), + [anon_sym_var] = ACTIONS(1220), + [aux_sym_integer_token1] = ACTIONS(1220), + [aux_sym_integer_token2] = ACTIONS(1218), + [aux_sym_float_token1] = ACTIONS(1220), + [aux_sym_float_token2] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1220), + [anon_sym_false] = ACTIONS(1220), + [aux_sym_string_token1] = ACTIONS(1218), + [aux_sym_string_token3] = ACTIONS(1218), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1218), [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_identifier] = ACTIONS(1224), + [anon_sym_POUND] = ACTIONS(1222), + [anon_sym_package] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_import] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_using] = ACTIONS(1224), + [anon_sym_throw] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_cast] = ACTIONS(1224), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_DOLLARtype] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_untyped] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_this] = ACTIONS(1224), + [anon_sym_QMARK] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1224), + [anon_sym_AT_COLON] = ACTIONS(1222), + [anon_sym_try] = ACTIONS(1224), + [anon_sym_catch] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_new] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1224), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1224), + [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_EQ_GT] = ACTIONS(1222), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1224), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1222), + [anon_sym_null] = ACTIONS(1224), + [anon_sym_macro] = ACTIONS(1224), + [anon_sym_abstract] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_public] = ACTIONS(1224), + [anon_sym_private] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_overload] = ACTIONS(1224), + [anon_sym_override] = ACTIONS(1224), + [anon_sym_final] = ACTIONS(1224), + [anon_sym_class] = ACTIONS(1224), + [anon_sym_interface] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(1224), + [anon_sym_var] = ACTIONS(1224), + [aux_sym_integer_token1] = ACTIONS(1224), + [aux_sym_integer_token2] = ACTIONS(1222), + [aux_sym_float_token1] = ACTIONS(1224), + [aux_sym_float_token2] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1224), + [anon_sym_false] = ACTIONS(1224), + [aux_sym_string_token1] = ACTIONS(1222), + [aux_sym_string_token3] = ACTIONS(1222), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1222), [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_identifier] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(928), + [anon_sym_package] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_import] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_using] = ACTIONS(931), + [anon_sym_throw] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_case] = ACTIONS(931), + [anon_sym_default] = ACTIONS(931), + [anon_sym_cast] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(928), + [anon_sym_DOLLARtype] = ACTIONS(928), + [anon_sym_for] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_untyped] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_this] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [anon_sym_AT_COLON] = ACTIONS(928), + [anon_sym_try] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_new] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(928), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(928), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_GT_GT_GT] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_AMP_AMP] = ACTIONS(928), + [anon_sym_PIPE_PIPE] = ACTIONS(928), + [anon_sym_EQ_EQ] = ACTIONS(928), + [anon_sym_BANG_EQ] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(928), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(928), + [anon_sym_QMARK_QMARK] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(928), + [anon_sym_null] = ACTIONS(931), + [anon_sym_macro] = ACTIONS(931), + [anon_sym_abstract] = ACTIONS(931), + [anon_sym_static] = ACTIONS(931), + [anon_sym_public] = ACTIONS(931), + [anon_sym_private] = ACTIONS(931), + [anon_sym_extern] = ACTIONS(931), + [anon_sym_inline] = ACTIONS(931), + [anon_sym_overload] = ACTIONS(931), + [anon_sym_override] = ACTIONS(931), + [anon_sym_final] = ACTIONS(931), + [anon_sym_class] = ACTIONS(931), + [anon_sym_interface] = ACTIONS(931), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_typedef] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_var] = ACTIONS(931), + [aux_sym_integer_token1] = ACTIONS(931), + [aux_sym_integer_token2] = ACTIONS(928), + [aux_sym_float_token1] = ACTIONS(931), + [aux_sym_float_token2] = ACTIONS(928), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym_string_token1] = ACTIONS(928), + [aux_sym_string_token3] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(928), [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_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1046), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1046), [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(926), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(926), + [sym_operator] = STATE(1729), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1355), + [sym_integer] = STATE(1355), + [sym_float] = STATE(1355), + [sym_bool] = STATE(1355), + [sym_string] = STATE(1308), + [sym_null] = STATE(1355), + [sym_array] = STATE(1355), + [sym_map] = STATE(1355), + [sym_object] = STATE(1355), + [sym_pair] = STATE(1355), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(918), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(920), + [anon_sym_untyped] = ACTIONS(922), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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_identifier] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1098), + [anon_sym_package] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_cast] = ACTIONS(1100), + [anon_sym_COMMA] = ACTIONS(1098), + [anon_sym_DOLLARtype] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_untyped] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_this] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1100), + [anon_sym_AT_COLON] = ACTIONS(1098), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_catch] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_GT_GT_GT] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(1098), + [anon_sym_QMARK_QMARK] = ACTIONS(1098), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), + [anon_sym_null] = ACTIONS(1100), + [anon_sym_macro] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_overload] = ACTIONS(1100), + [anon_sym_override] = ACTIONS(1100), + [anon_sym_final] = ACTIONS(1100), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1100), + [anon_sym_var] = ACTIONS(1100), + [aux_sym_integer_token1] = ACTIONS(1100), + [aux_sym_integer_token2] = ACTIONS(1098), + [aux_sym_float_token1] = ACTIONS(1100), + [aux_sym_float_token2] = ACTIONS(1098), + [anon_sym_true] = ACTIONS(1100), + [anon_sym_false] = ACTIONS(1100), + [aux_sym_string_token1] = ACTIONS(1098), + [aux_sym_string_token3] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1098), [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_identifier] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(1102), + [anon_sym_package] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_using] = ACTIONS(1104), + [anon_sym_throw] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_cast] = ACTIONS(1104), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_DOLLARtype] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_untyped] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_this] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(1104), + [anon_sym_AT_COLON] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(1104), + [anon_sym_catch] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_new] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1104), + [anon_sym_GT_GT_GT] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_EQ_GT] = ACTIONS(1102), + [anon_sym_QMARK_QMARK] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1102), + [anon_sym_null] = ACTIONS(1104), + [anon_sym_macro] = ACTIONS(1104), + [anon_sym_abstract] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_overload] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_final] = ACTIONS(1104), + [anon_sym_class] = ACTIONS(1104), + [anon_sym_interface] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_var] = ACTIONS(1104), + [aux_sym_integer_token1] = ACTIONS(1104), + [aux_sym_integer_token2] = ACTIONS(1102), + [aux_sym_float_token1] = ACTIONS(1104), + [aux_sym_float_token2] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [aux_sym_string_token1] = ACTIONS(1102), + [aux_sym_string_token3] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1102), [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_identifier] = ACTIONS(700), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_package] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_using] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(698), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_for] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_this] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_AT_COLON] = ACTIONS(698), + [anon_sym_try] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_new] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(700), + [anon_sym_macro] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(700), + [anon_sym_inline] = ACTIONS(700), + [anon_sym_overload] = ACTIONS(700), + [anon_sym_override] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_function] = ACTIONS(700), + [anon_sym_var] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(700), + [aux_sym_integer_token2] = ACTIONS(698), + [aux_sym_float_token1] = ACTIONS(700), + [aux_sym_float_token2] = ACTIONS(698), + [anon_sym_true] = ACTIONS(700), + [anon_sym_false] = ACTIONS(700), + [aux_sym_string_token1] = ACTIONS(698), + [aux_sym_string_token3] = ACTIONS(698), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(698), [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_identifier] = ACTIONS(700), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_package] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_using] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(698), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_for] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_this] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_AT_COLON] = ACTIONS(698), + [anon_sym_try] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_new] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(700), + [anon_sym_macro] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_extern] = ACTIONS(700), + [anon_sym_inline] = ACTIONS(700), + [anon_sym_overload] = ACTIONS(700), + [anon_sym_override] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_typedef] = ACTIONS(700), + [anon_sym_function] = ACTIONS(700), + [anon_sym_var] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(700), + [aux_sym_integer_token2] = ACTIONS(698), + [aux_sym_float_token1] = ACTIONS(700), + [aux_sym_float_token2] = ACTIONS(698), + [anon_sym_true] = ACTIONS(700), + [anon_sym_false] = ACTIONS(700), + [aux_sym_string_token1] = ACTIONS(698), + [aux_sym_string_token3] = ACTIONS(698), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(698), [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_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1146), + [anon_sym_package] = ACTIONS(1148), + [anon_sym_DOT] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(1148), + [anon_sym_throw] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_cast] = ACTIONS(1148), + [anon_sym_COMMA] = ACTIONS(1146), + [anon_sym_DOLLARtype] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_untyped] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_this] = ACTIONS(1148), + [anon_sym_QMARK] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_AT_COLON] = ACTIONS(1146), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_catch] = ACTIONS(1148), + [anon_sym_else] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1148), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_PERCENT] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_GT_GT_GT] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_EQ_EQ] = ACTIONS(1146), + [anon_sym_BANG_EQ] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_LT_EQ] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_GT_EQ] = ACTIONS(1146), + [anon_sym_EQ_GT] = ACTIONS(1146), + [anon_sym_QMARK_QMARK] = ACTIONS(1146), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1148), + [anon_sym_macro] = ACTIONS(1148), + [anon_sym_abstract] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1148), + [anon_sym_private] = ACTIONS(1148), + [anon_sym_extern] = ACTIONS(1148), + [anon_sym_inline] = ACTIONS(1148), + [anon_sym_overload] = ACTIONS(1148), + [anon_sym_override] = ACTIONS(1148), + [anon_sym_final] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_interface] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1148), + [anon_sym_function] = ACTIONS(1148), + [anon_sym_var] = ACTIONS(1148), + [aux_sym_integer_token1] = ACTIONS(1148), + [aux_sym_integer_token2] = ACTIONS(1146), + [aux_sym_float_token1] = ACTIONS(1148), + [aux_sym_float_token2] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [aux_sym_string_token1] = ACTIONS(1146), + [aux_sym_string_token3] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1146), [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_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_package] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_import] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(838), + [anon_sym_using] = ACTIONS(836), + [anon_sym_throw] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_case] = ACTIONS(836), + [anon_sym_default] = ACTIONS(836), + [anon_sym_cast] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_DOLLARtype] = ACTIONS(838), + [anon_sym_for] = ACTIONS(836), + [anon_sym_return] = ACTIONS(836), + [anon_sym_untyped] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_this] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_AT_COLON] = ACTIONS(838), + [anon_sym_try] = ACTIONS(836), + [anon_sym_catch] = ACTIONS(836), + [anon_sym_else] = ACTIONS(836), + [anon_sym_if] = ACTIONS(836), + [anon_sym_while] = ACTIONS(836), + [anon_sym_do] = ACTIONS(836), + [anon_sym_new] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(838), + [anon_sym_DASH_DASH] = ACTIONS(838), + [anon_sym_PERCENT] = ACTIONS(838), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(838), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_GT_GT_GT] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(838), + [anon_sym_AMP_AMP] = ACTIONS(838), + [anon_sym_PIPE_PIPE] = ACTIONS(838), + [anon_sym_EQ_EQ] = ACTIONS(838), + [anon_sym_BANG_EQ] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_LT_EQ] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_EQ] = ACTIONS(838), + [anon_sym_EQ_GT] = ACTIONS(838), + [anon_sym_QMARK_QMARK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(838), + [anon_sym_null] = ACTIONS(836), + [anon_sym_macro] = ACTIONS(836), + [anon_sym_abstract] = ACTIONS(836), + [anon_sym_static] = ACTIONS(836), + [anon_sym_public] = ACTIONS(836), + [anon_sym_private] = ACTIONS(836), + [anon_sym_extern] = ACTIONS(836), + [anon_sym_inline] = ACTIONS(836), + [anon_sym_overload] = ACTIONS(836), + [anon_sym_override] = ACTIONS(836), + [anon_sym_final] = ACTIONS(836), + [anon_sym_class] = ACTIONS(836), + [anon_sym_interface] = ACTIONS(836), + [anon_sym_enum] = ACTIONS(836), + [anon_sym_typedef] = ACTIONS(836), + [anon_sym_function] = ACTIONS(836), + [anon_sym_var] = ACTIONS(836), + [aux_sym_integer_token1] = ACTIONS(836), + [aux_sym_integer_token2] = ACTIONS(838), + [aux_sym_float_token1] = ACTIONS(836), + [aux_sym_float_token2] = ACTIONS(838), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [aux_sym_string_token1] = ACTIONS(838), + [aux_sym_string_token3] = ACTIONS(838), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(838), [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_identifier] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(924), + [anon_sym_package] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_import] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_using] = ACTIONS(926), + [anon_sym_throw] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_case] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_cast] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_DOLLARtype] = ACTIONS(924), + [anon_sym_for] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_untyped] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_this] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_AT_COLON] = ACTIONS(924), + [anon_sym_try] = ACTIONS(926), + [anon_sym_catch] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_new] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PERCENT] = ACTIONS(924), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_GT_GT_GT] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_QMARK] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(924), + [anon_sym_null] = ACTIONS(926), + [anon_sym_macro] = ACTIONS(926), + [anon_sym_abstract] = ACTIONS(926), + [anon_sym_static] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_overload] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_final] = ACTIONS(926), + [anon_sym_class] = ACTIONS(926), + [anon_sym_interface] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(926), + [anon_sym_function] = ACTIONS(926), + [anon_sym_var] = ACTIONS(926), + [aux_sym_integer_token1] = ACTIONS(926), + [aux_sym_integer_token2] = ACTIONS(924), + [aux_sym_float_token1] = ACTIONS(926), + [aux_sym_float_token2] = ACTIONS(924), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_string_token1] = ACTIONS(924), + [aux_sym_string_token3] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(924), [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_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1046), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1046), [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(925), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(925), + [sym_operator] = STATE(1973), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1355), + [sym_integer] = STATE(1355), + [sym_float] = STATE(1355), + [sym_bool] = STATE(1355), + [sym_string] = STATE(1308), + [sym_null] = STATE(1355), + [sym_array] = STATE(1355), + [sym_map] = STATE(1355), + [sym_object] = STATE(1355), + [sym_pair] = STATE(1355), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1534), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_untyped] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_import] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_using] = ACTIONS(1054), + [anon_sym_throw] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_case] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_cast] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_DOLLARtype] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_this] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1054), + [anon_sym_AT_COLON] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_EQ_GT] = ACTIONS(1050), + [anon_sym_QMARK_QMARK] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_macro] = ACTIONS(1054), + [anon_sym_abstract] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_public] = ACTIONS(1054), + [anon_sym_private] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_overload] = ACTIONS(1054), + [anon_sym_override] = ACTIONS(1054), + [anon_sym_final] = ACTIONS(1054), + [anon_sym_class] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_function] = ACTIONS(1054), + [anon_sym_var] = ACTIONS(1054), + [aux_sym_integer_token1] = ACTIONS(1054), + [aux_sym_integer_token2] = ACTIONS(1050), + [aux_sym_float_token1] = ACTIONS(1054), + [aux_sym_float_token2] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym_string_token1] = ACTIONS(1050), + [aux_sym_string_token3] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1050), [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_identifier] = ACTIONS(1116), + [anon_sym_POUND] = ACTIONS(1114), + [anon_sym_package] = ACTIONS(1116), + [anon_sym_DOT] = ACTIONS(1116), + [anon_sym_import] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_using] = ACTIONS(1116), + [anon_sym_throw] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_cast] = ACTIONS(1116), + [anon_sym_COMMA] = ACTIONS(1114), + [anon_sym_DOLLARtype] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_untyped] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_this] = ACTIONS(1116), + [anon_sym_QMARK] = ACTIONS(1116), + [anon_sym_AT] = ACTIONS(1116), + [anon_sym_AT_COLON] = ACTIONS(1114), + [anon_sym_try] = ACTIONS(1116), + [anon_sym_catch] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PERCENT] = ACTIONS(1114), + [anon_sym_SLASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_LT_LT] = ACTIONS(1114), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_GT_GT_GT] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_PIPE] = ACTIONS(1116), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_AMP_AMP] = ACTIONS(1114), + [anon_sym_PIPE_PIPE] = ACTIONS(1114), + [anon_sym_EQ_EQ] = ACTIONS(1114), + [anon_sym_BANG_EQ] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_EQ_GT] = ACTIONS(1114), + [anon_sym_QMARK_QMARK] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(1116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [anon_sym_null] = ACTIONS(1116), + [anon_sym_macro] = ACTIONS(1116), + [anon_sym_abstract] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_public] = ACTIONS(1116), + [anon_sym_private] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_overload] = ACTIONS(1116), + [anon_sym_override] = ACTIONS(1116), + [anon_sym_final] = ACTIONS(1116), + [anon_sym_class] = ACTIONS(1116), + [anon_sym_interface] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_function] = ACTIONS(1116), + [anon_sym_var] = ACTIONS(1116), + [aux_sym_integer_token1] = ACTIONS(1116), + [aux_sym_integer_token2] = ACTIONS(1114), + [aux_sym_float_token1] = ACTIONS(1116), + [aux_sym_float_token2] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [aux_sym_string_token1] = ACTIONS(1114), + [aux_sym_string_token3] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1114), [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(1042), + [sym__unaryExpression] = STATE(2945), + [sym_runtime_type_check_expression] = STATE(2945), + [sym_switch_expression] = STATE(2945), + [sym_cast_expression] = STATE(2945), + [sym_type_trace_expression] = STATE(2945), + [sym__parenthesized_expression] = STATE(2772), + [sym_subscript_expression] = STATE(2945), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1042), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_untyped] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [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(1152), + [sym__unaryExpression] = STATE(3278), + [sym_runtime_type_check_expression] = STATE(3278), + [sym_switch_expression] = STATE(3278), + [sym_cast_expression] = STATE(3278), + [sym_type_trace_expression] = STATE(3278), + [sym__parenthesized_expression] = STATE(3006), + [sym_subscript_expression] = STATE(3278), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1152), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_untyped] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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(122), + [sym__unaryExpression] = STATE(443), + [sym_runtime_type_check_expression] = STATE(443), + [sym_switch_expression] = STATE(443), + [sym_cast_expression] = STATE(443), + [sym_type_trace_expression] = STATE(443), + [sym__parenthesized_expression] = STATE(444), + [sym_subscript_expression] = STATE(443), + [sym_member_expression] = STATE(284), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(122), + [sym_operator] = STATE(1736), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(486), + [sym_integer] = STATE(486), + [sym_float] = STATE(486), + [sym_bool] = STATE(486), + [sym_string] = STATE(366), + [sym_null] = STATE(486), + [sym_array] = STATE(486), + [sym_map] = STATE(486), + [sym_object] = STATE(486), + [sym_pair] = STATE(486), + [sym_identifier] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_cast] = ACTIONS(1556), + [anon_sym_DOLLARtype] = ACTIONS(904), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_untyped] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(820), + [anon_sym_new] = ACTIONS(706), + [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(57), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), [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(998), + [sym__unaryExpression] = STATE(1781), + [sym_runtime_type_check_expression] = STATE(1781), + [sym_switch_expression] = STATE(1781), + [sym_cast_expression] = STATE(1781), + [sym_type_trace_expression] = STATE(1781), + [sym__parenthesized_expression] = STATE(1606), + [sym_subscript_expression] = STATE(1781), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(998), + [sym_operator] = STATE(1904), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1846), + [sym_integer] = STATE(1846), + [sym_float] = STATE(1846), + [sym_bool] = STATE(1846), + [sym_string] = STATE(1654), + [sym_null] = STATE(1846), + [sym_array] = STATE(1846), + [sym_map] = STATE(1846), + [sym_object] = STATE(1846), + [sym_pair] = STATE(1846), + [sym_identifier] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(1566), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1568), + [anon_sym_untyped] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1572), + [anon_sym_continue] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(1574), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1412), + [sym__rhs_expression] = STATE(1201), + [sym__unaryExpression] = STATE(3299), + [sym_runtime_type_check_expression] = STATE(3299), + [sym_switch_expression] = STATE(3299), + [sym_cast_expression] = STATE(3299), + [sym_type_trace_expression] = STATE(3299), + [sym__parenthesized_expression] = STATE(3024), + [sym_subscript_expression] = STATE(3299), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2418), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1201), + [sym_operator] = STATE(1954), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1855), + [sym_integer] = STATE(1855), + [sym_float] = STATE(1855), + [sym_bool] = STATE(1855), + [sym_string] = STATE(1655), + [sym_null] = STATE(1855), + [sym_array] = STATE(1855), + [sym_map] = STATE(1855), + [sym_object] = STATE(1855), + [sym_pair] = STATE(1855), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1578), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_untyped] = ACTIONS(1582), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), [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__rhs_expression] = STATE(992), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(1539), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(992), + [sym_operator] = STATE(1938), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1901), + [sym_integer] = STATE(1901), + [sym_float] = STATE(1901), + [sym_bool] = STATE(1901), + [sym_string] = STATE(1655), + [sym_null] = STATE(1901), + [sym_array] = STATE(1901), + [sym_map] = STATE(1901), + [sym_object] = STATE(1901), + [sym_pair] = STATE(1901), + [sym_identifier] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1588), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_untyped] = ACTIONS(1592), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), [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__rhs_expression] = STATE(1037), + [sym__unaryExpression] = STATE(288), + [sym_runtime_type_check_expression] = STATE(288), + [sym_switch_expression] = STATE(288), + [sym_cast_expression] = STATE(288), + [sym_type_trace_expression] = STATE(288), + [sym__parenthesized_expression] = STATE(289), + [sym_subscript_expression] = STATE(288), + [sym_member_expression] = STATE(284), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(1037), + [sym_operator] = STATE(1874), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1325), + [sym_integer] = STATE(1325), + [sym_float] = STATE(1325), + [sym_bool] = STATE(1325), + [sym_string] = STATE(1302), + [sym_null] = STATE(1325), + [sym_array] = STATE(1325), + [sym_map] = STATE(1325), + [sym_object] = STATE(1325), + [sym_pair] = STATE(1325), + [sym_identifier] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_cast] = ACTIONS(902), + [anon_sym_DOLLARtype] = ACTIONS(904), + [anon_sym_return] = ACTIONS(906), + [anon_sym_untyped] = ACTIONS(908), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(820), + [anon_sym_new] = ACTIONS(706), + [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(57), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [sym_comment] = ACTIONS(3), [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__rhs_expression] = STATE(1097), + [sym__unaryExpression] = STATE(1422), + [sym_runtime_type_check_expression] = STATE(1422), + [sym_switch_expression] = STATE(1422), + [sym_cast_expression] = STATE(1422), + [sym_type_trace_expression] = STATE(1422), + [sym__parenthesized_expression] = STATE(1373), + [sym_subscript_expression] = STATE(1422), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(1097), + [sym_operator] = STATE(1965), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1878), + [sym_integer] = STATE(1878), + [sym_float] = STATE(1878), + [sym_bool] = STATE(1878), + [sym_string] = STATE(1585), + [sym_null] = STATE(1878), + [sym_array] = STATE(1878), + [sym_map] = STATE(1878), + [sym_object] = STATE(1878), + [sym_pair] = STATE(1878), + [sym_identifier] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_cast] = ACTIONS(1598), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1600), + [anon_sym_untyped] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_this] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), [sym_comment] = ACTIONS(3), [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(1010), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1010), + [sym_operator] = STATE(1747), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1748), + [sym_integer] = STATE(1748), + [sym_float] = STATE(1748), + [sym_bool] = STATE(1748), + [sym_string] = STATE(1737), + [sym_null] = STATE(1748), + [sym_array] = STATE(1748), + [sym_map] = STATE(1748), + [sym_object] = STATE(1748), + [sym_pair] = STATE(1748), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1608), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_untyped] = ACTIONS(1612), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(1614), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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__rhs_expression] = STATE(1014), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1014), + [sym_operator] = STATE(1750), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1748), + [sym_integer] = STATE(1748), + [sym_float] = STATE(1748), + [sym_bool] = STATE(1748), + [sym_string] = STATE(1737), + [sym_null] = STATE(1748), + [sym_array] = STATE(1748), + [sym_map] = STATE(1748), + [sym_object] = STATE(1748), + [sym_pair] = STATE(1748), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1616), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_untyped] = ACTIONS(1620), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(1614), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), [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(1187), + [sym__unaryExpression] = STATE(3177), + [sym_runtime_type_check_expression] = STATE(3177), + [sym_switch_expression] = STATE(3177), + [sym_cast_expression] = STATE(3177), + [sym_type_trace_expression] = STATE(3177), + [sym__parenthesized_expression] = STATE(2932), + [sym_subscript_expression] = STATE(3177), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_untyped] = ACTIONS(1624), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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(1053), + [sym__unaryExpression] = STATE(803), + [sym_runtime_type_check_expression] = STATE(803), + [sym_switch_expression] = STATE(803), + [sym_cast_expression] = STATE(803), + [sym_type_trace_expression] = STATE(803), + [sym__parenthesized_expression] = STATE(620), + [sym_subscript_expression] = STATE(803), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1053), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_untyped] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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(984), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(1539), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(984), + [sym_operator] = STATE(1744), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1901), + [sym_integer] = STATE(1901), + [sym_float] = STATE(1901), + [sym_bool] = STATE(1901), + [sym_string] = STATE(1655), + [sym_null] = STATE(1901), + [sym_array] = STATE(1901), + [sym_map] = STATE(1901), + [sym_object] = STATE(1901), + [sym_pair] = STATE(1901), + [sym_identifier] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1632), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_untyped] = ACTIONS(1636), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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(107), + [sym__unaryExpression] = STATE(288), + [sym_runtime_type_check_expression] = STATE(288), + [sym_switch_expression] = STATE(288), + [sym_cast_expression] = STATE(288), + [sym_type_trace_expression] = STATE(288), + [sym__parenthesized_expression] = STATE(289), + [sym_subscript_expression] = STATE(288), + [sym_member_expression] = STATE(284), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(107), + [sym_operator] = STATE(1912), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(560), + [sym_integer] = STATE(560), + [sym_float] = STATE(560), + [sym_bool] = STATE(560), + [sym_string] = STATE(366), + [sym_null] = STATE(560), + [sym_array] = STATE(560), + [sym_map] = STATE(560), + [sym_object] = STATE(560), + [sym_pair] = STATE(560), + [sym_identifier] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_cast] = ACTIONS(1640), + [anon_sym_DOLLARtype] = ACTIONS(904), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_untyped] = ACTIONS(1644), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(674), + [anon_sym_new] = ACTIONS(706), + [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(57), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [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(948), + [sym__unaryExpression] = STATE(1422), + [sym_runtime_type_check_expression] = STATE(1422), + [sym_switch_expression] = STATE(1422), + [sym_cast_expression] = STATE(1422), + [sym_type_trace_expression] = STATE(1422), + [sym__parenthesized_expression] = STATE(1373), + [sym_subscript_expression] = STATE(1422), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(948), + [sym_operator] = STATE(1844), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1520), + [sym_integer] = STATE(1520), + [sym_float] = STATE(1520), + [sym_bool] = STATE(1520), + [sym_string] = STATE(1466), + [sym_null] = STATE(1520), + [sym_array] = STATE(1520), + [sym_map] = STATE(1520), + [sym_object] = STATE(1520), + [sym_pair] = STATE(1520), + [sym_identifier] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_cast] = ACTIONS(1646), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_untyped] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), + [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), + [sym__rhs_expression] = STATE(936), + [sym__unaryExpression] = STATE(443), + [sym_runtime_type_check_expression] = STATE(443), + [sym_switch_expression] = STATE(443), + [sym_cast_expression] = STATE(443), + [sym_type_trace_expression] = STATE(443), + [sym__parenthesized_expression] = STATE(444), + [sym_subscript_expression] = STATE(443), + [sym_member_expression] = STATE(284), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(936), + [sym_operator] = STATE(1863), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1325), + [sym_integer] = STATE(1325), + [sym_float] = STATE(1325), + [sym_bool] = STATE(1325), + [sym_string] = STATE(1302), + [sym_null] = STATE(1325), + [sym_array] = STATE(1325), + [sym_map] = STATE(1325), + [sym_object] = STATE(1325), + [sym_pair] = STATE(1325), + [sym_identifier] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_cast] = ACTIONS(1652), + [anon_sym_DOLLARtype] = ACTIONS(904), + [anon_sym_return] = ACTIONS(1654), [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), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(820), + [anon_sym_new] = ACTIONS(706), + [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(57), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [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), + [sym__rhs_expression] = STATE(990), + [sym__unaryExpression] = STATE(1781), + [sym_runtime_type_check_expression] = STATE(1781), + [sym_switch_expression] = STATE(1781), + [sym_cast_expression] = STATE(1781), + [sym_type_trace_expression] = STATE(1781), + [sym__parenthesized_expression] = STATE(1606), + [sym_subscript_expression] = STATE(1781), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(990), + [sym_operator] = STATE(1893), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1846), + [sym_integer] = STATE(1846), + [sym_float] = STATE(1846), + [sym_bool] = STATE(1846), + [sym_string] = STATE(1654), + [sym_null] = STATE(1846), + [sym_array] = STATE(1846), + [sym_map] = STATE(1846), + [sym_object] = STATE(1846), + [sym_pair] = STATE(1846), + [sym_identifier] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(1658), + [anon_sym_DOLLARtype] = ACTIONS(29), [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), + [anon_sym_untyped] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1572), + [anon_sym_continue] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(1574), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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), + [sym__rhs_expression] = STATE(1198), + [sym__unaryExpression] = STATE(3269), + [sym_runtime_type_check_expression] = STATE(3269), + [sym_switch_expression] = STATE(3269), + [sym_cast_expression] = STATE(3269), + [sym_type_trace_expression] = STATE(3269), + [sym__parenthesized_expression] = STATE(3107), + [sym_subscript_expression] = STATE(3269), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1198), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1666), [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__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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [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), + [315] = { + [sym__rhs_expression] = STATE(930), + [sym__unaryExpression] = STATE(288), + [sym_runtime_type_check_expression] = STATE(288), + [sym_switch_expression] = STATE(288), + [sym_cast_expression] = STATE(288), + [sym_type_trace_expression] = STATE(288), + [sym__parenthesized_expression] = STATE(289), + [sym_subscript_expression] = STATE(288), + [sym_member_expression] = STATE(284), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(930), + [sym_operator] = STATE(1932), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1338), + [sym_integer] = STATE(1338), + [sym_float] = STATE(1338), + [sym_bool] = STATE(1338), + [sym_string] = STATE(1302), + [sym_null] = STATE(1338), + [sym_array] = STATE(1338), + [sym_map] = STATE(1338), + [sym_object] = STATE(1338), + [sym_pair] = STATE(1338), + [sym_identifier] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(702), [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__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_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_DOLLARtype] = ACTIONS(904), + [anon_sym_return] = ACTIONS(1674), [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), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(674), + [anon_sym_new] = ACTIONS(706), + [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(57), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [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), + [316] = { + [sym__rhs_expression] = STATE(996), + [sym__unaryExpression] = STATE(1422), + [sym_runtime_type_check_expression] = STATE(1422), + [sym_switch_expression] = STATE(1422), + [sym_cast_expression] = STATE(1422), + [sym_type_trace_expression] = STATE(1422), + [sym__parenthesized_expression] = STATE(1373), + [sym_subscript_expression] = STATE(1422), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(996), + [sym_operator] = STATE(1734), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1899), + [sym_integer] = STATE(1899), + [sym_float] = STATE(1899), + [sym_bool] = STATE(1899), + [sym_string] = STATE(1585), + [sym_null] = STATE(1899), + [sym_array] = STATE(1899), + [sym_map] = STATE(1899), + [sym_object] = STATE(1899), + [sym_pair] = STATE(1899), + [sym_identifier] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), [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__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_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1682), [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), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_this] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), + [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), + [317] = { + [sym__rhs_expression] = STATE(1203), + [sym__unaryExpression] = STATE(3172), + [sym_runtime_type_check_expression] = STATE(3172), + [sym_switch_expression] = STATE(3172), + [sym_cast_expression] = STATE(3172), + [sym_type_trace_expression] = STATE(3172), + [sym__parenthesized_expression] = STATE(2995), + [sym_subscript_expression] = STATE(3172), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1203), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1690), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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), + [318] = { + [sym__rhs_expression] = STATE(1109), + [sym__unaryExpression] = STATE(3199), + [sym_runtime_type_check_expression] = STATE(3199), + [sym_switch_expression] = STATE(3199), + [sym_cast_expression] = STATE(3199), + [sym_type_trace_expression] = STATE(3199), + [sym__parenthesized_expression] = STATE(3088), + [sym_subscript_expression] = STATE(3199), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1109), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1694), [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), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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), + [319] = { + [sym__rhs_expression] = STATE(1209), + [sym__unaryExpression] = STATE(3411), + [sym_runtime_type_check_expression] = STATE(3411), + [sym_switch_expression] = STATE(3411), + [sym_cast_expression] = STATE(3411), + [sym_type_trace_expression] = STATE(3411), + [sym__parenthesized_expression] = STATE(3049), + [sym_subscript_expression] = STATE(3411), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1209), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), [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__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_untyped] = ACTIONS(1702), [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), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [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), + [320] = { + [sym__rhs_expression] = STATE(1116), + [sym__unaryExpression] = STATE(3477), + [sym_runtime_type_check_expression] = STATE(3477), + [sym_switch_expression] = STATE(3477), + [sym_cast_expression] = STATE(3477), + [sym_type_trace_expression] = STATE(3477), + [sym__parenthesized_expression] = STATE(3122), + [sym_subscript_expression] = STATE(3477), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1116), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1706), [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), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), [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), + [321] = { + [sym__rhs_expression] = STATE(1119), + [sym__unaryExpression] = STATE(3443), + [sym_runtime_type_check_expression] = STATE(3443), + [sym_switch_expression] = STATE(3443), + [sym_cast_expression] = STATE(3443), + [sym_type_trace_expression] = STATE(3443), + [sym__parenthesized_expression] = STATE(3090), + [sym_subscript_expression] = STATE(3443), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1119), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1714), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [322] = { + [sym__rhs_expression] = STATE(1125), + [sym__unaryExpression] = STATE(3466), + [sym_runtime_type_check_expression] = STATE(3466), + [sym_switch_expression] = STATE(3466), + [sym_cast_expression] = STATE(3466), + [sym_type_trace_expression] = STATE(3466), + [sym__parenthesized_expression] = STATE(2930), + [sym_subscript_expression] = STATE(3466), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1125), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1718), [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), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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), + [323] = { + [sym__rhs_expression] = STATE(1126), + [sym__unaryExpression] = STATE(3228), + [sym_runtime_type_check_expression] = STATE(3228), + [sym_switch_expression] = STATE(3228), + [sym_cast_expression] = STATE(3228), + [sym_type_trace_expression] = STATE(3228), + [sym__parenthesized_expression] = STATE(3015), + [sym_subscript_expression] = STATE(3228), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1126), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1726), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [324] = { + [sym__rhs_expression] = STATE(1130), + [sym__unaryExpression] = STATE(3347), + [sym_runtime_type_check_expression] = STATE(3347), + [sym_switch_expression] = STATE(3347), + [sym_cast_expression] = STATE(3347), + [sym_type_trace_expression] = STATE(3347), + [sym__parenthesized_expression] = STATE(3091), + [sym_subscript_expression] = STATE(3347), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1130), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1730), [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), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [325] = { + [sym__rhs_expression] = STATE(1133), + [sym__unaryExpression] = STATE(3436), + [sym_runtime_type_check_expression] = STATE(3436), + [sym_switch_expression] = STATE(3436), + [sym_cast_expression] = STATE(3436), + [sym_type_trace_expression] = STATE(3436), + [sym__parenthesized_expression] = STATE(3110), + [sym_subscript_expression] = STATE(3436), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1133), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1738), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [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), + [326] = { + [sym__rhs_expression] = STATE(1134), + [sym__unaryExpression] = STATE(3153), + [sym_runtime_type_check_expression] = STATE(3153), + [sym_switch_expression] = STATE(3153), + [sym_cast_expression] = STATE(3153), + [sym_type_trace_expression] = STATE(3153), + [sym__parenthesized_expression] = STATE(2862), + [sym_subscript_expression] = STATE(3153), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1134), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1742), [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), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [327] = { + [sym__rhs_expression] = STATE(1137), + [sym__unaryExpression] = STATE(3186), + [sym_runtime_type_check_expression] = STATE(3186), + [sym_switch_expression] = STATE(3186), + [sym_cast_expression] = STATE(3186), + [sym_type_trace_expression] = STATE(3186), + [sym__parenthesized_expression] = STATE(2879), + [sym_subscript_expression] = STATE(3186), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1137), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1750), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [328] = { + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3206), + [sym_runtime_type_check_expression] = STATE(3206), + [sym_switch_expression] = STATE(3206), + [sym_cast_expression] = STATE(3206), + [sym_type_trace_expression] = STATE(3206), + [sym__parenthesized_expression] = STATE(2883), + [sym_subscript_expression] = STATE(3206), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1754), [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), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1758), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [329] = { + [sym__rhs_expression] = STATE(1139), + [sym__unaryExpression] = STATE(3233), + [sym_runtime_type_check_expression] = STATE(3233), + [sym_switch_expression] = STATE(3233), + [sym_cast_expression] = STATE(3233), + [sym_type_trace_expression] = STATE(3233), + [sym__parenthesized_expression] = STATE(2893), + [sym_subscript_expression] = STATE(3233), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1139), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1762), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [330] = { + [sym__rhs_expression] = STATE(1142), + [sym__unaryExpression] = STATE(3272), + [sym_runtime_type_check_expression] = STATE(3272), + [sym_switch_expression] = STATE(3272), + [sym_cast_expression] = STATE(3272), + [sym_type_trace_expression] = STATE(3272), + [sym__parenthesized_expression] = STATE(2915), + [sym_subscript_expression] = STATE(3272), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1142), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1766), [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), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [331] = { + [sym__rhs_expression] = STATE(1146), + [sym__unaryExpression] = STATE(3317), + [sym_runtime_type_check_expression] = STATE(3317), + [sym_switch_expression] = STATE(3317), + [sym_cast_expression] = STATE(3317), + [sym_type_trace_expression] = STATE(3317), + [sym__parenthesized_expression] = STATE(2938), + [sym_subscript_expression] = STATE(3317), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1146), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1774), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [332] = { + [sym__rhs_expression] = STATE(1147), + [sym__unaryExpression] = STATE(3344), + [sym_runtime_type_check_expression] = STATE(3344), + [sym_switch_expression] = STATE(3344), + [sym_cast_expression] = STATE(3344), + [sym_type_trace_expression] = STATE(3344), + [sym__parenthesized_expression] = STATE(2943), + [sym_subscript_expression] = STATE(3344), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1147), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1778), [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), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [333] = { + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3352), + [sym_runtime_type_check_expression] = STATE(3352), + [sym_switch_expression] = STATE(3352), + [sym_cast_expression] = STATE(3352), + [sym_type_trace_expression] = STATE(3352), + [sym__parenthesized_expression] = STATE(2950), + [sym_subscript_expression] = STATE(3352), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1786), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [334] = { + [sym__rhs_expression] = STATE(1150), + [sym__unaryExpression] = STATE(3375), + [sym_runtime_type_check_expression] = STATE(3375), + [sym_switch_expression] = STATE(3375), + [sym_cast_expression] = STATE(3375), + [sym_type_trace_expression] = STATE(3375), + [sym__parenthesized_expression] = STATE(2953), + [sym_subscript_expression] = STATE(3375), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1150), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1790), [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), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [335] = { + [sym__rhs_expression] = STATE(1151), + [sym__unaryExpression] = STATE(3398), + [sym_runtime_type_check_expression] = STATE(3398), + [sym_switch_expression] = STATE(3398), + [sym_cast_expression] = STATE(3398), + [sym_type_trace_expression] = STATE(3398), + [sym__parenthesized_expression] = STATE(2978), + [sym_subscript_expression] = STATE(3398), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1151), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1798), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [336] = { + [sym__rhs_expression] = STATE(1156), + [sym__unaryExpression] = STATE(3486), + [sym_runtime_type_check_expression] = STATE(3486), + [sym_switch_expression] = STATE(3486), + [sym_cast_expression] = STATE(3486), + [sym_type_trace_expression] = STATE(3486), + [sym__parenthesized_expression] = STATE(3018), + [sym_subscript_expression] = STATE(3486), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1156), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1802), [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), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [337] = { + [sym__rhs_expression] = STATE(1159), + [sym__unaryExpression] = STATE(3142), + [sym_runtime_type_check_expression] = STATE(3142), + [sym_switch_expression] = STATE(3142), + [sym_cast_expression] = STATE(3142), + [sym_type_trace_expression] = STATE(3142), + [sym__parenthesized_expression] = STATE(3028), + [sym_subscript_expression] = STATE(3142), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1159), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1810), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [338] = { + [sym__rhs_expression] = STATE(1160), + [sym__unaryExpression] = STATE(3151), + [sym_runtime_type_check_expression] = STATE(3151), + [sym_switch_expression] = STATE(3151), + [sym_cast_expression] = STATE(3151), + [sym_type_trace_expression] = STATE(3151), + [sym__parenthesized_expression] = STATE(3033), + [sym_subscript_expression] = STATE(3151), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1160), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1814), [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), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [339] = { + [sym__rhs_expression] = STATE(1162), + [sym__unaryExpression] = STATE(3154), + [sym_runtime_type_check_expression] = STATE(3154), + [sym_switch_expression] = STATE(3154), + [sym_cast_expression] = STATE(3154), + [sym_type_trace_expression] = STATE(3154), + [sym__parenthesized_expression] = STATE(3035), + [sym_subscript_expression] = STATE(3154), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1162), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1822), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [340] = { + [sym__rhs_expression] = STATE(1163), + [sym__unaryExpression] = STATE(3162), + [sym_runtime_type_check_expression] = STATE(3162), + [sym_switch_expression] = STATE(3162), + [sym_cast_expression] = STATE(3162), + [sym_type_trace_expression] = STATE(3162), + [sym__parenthesized_expression] = STATE(3042), + [sym_subscript_expression] = STATE(3162), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1163), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1826), [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), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [341] = { + [sym__rhs_expression] = STATE(1167), + [sym__unaryExpression] = STATE(3178), + [sym_runtime_type_check_expression] = STATE(3178), + [sym_switch_expression] = STATE(3178), + [sym_cast_expression] = STATE(3178), + [sym_type_trace_expression] = STATE(3178), + [sym__parenthesized_expression] = STATE(3054), + [sym_subscript_expression] = STATE(3178), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1167), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1834), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [342] = { + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3196), + [sym_runtime_type_check_expression] = STATE(3196), + [sym_switch_expression] = STATE(3196), + [sym_cast_expression] = STATE(3196), + [sym_type_trace_expression] = STATE(3196), + [sym__parenthesized_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3196), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1838), [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), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [343] = { + [sym__rhs_expression] = STATE(1171), + [sym__unaryExpression] = STATE(3212), + [sym_runtime_type_check_expression] = STATE(3212), + [sym_switch_expression] = STATE(3212), + [sym_cast_expression] = STATE(3212), + [sym_type_trace_expression] = STATE(3212), + [sym__parenthesized_expression] = STATE(3074), + [sym_subscript_expression] = STATE(3212), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1171), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1846), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [344] = { + [sym__rhs_expression] = STATE(1175), + [sym__unaryExpression] = STATE(3234), + [sym_runtime_type_check_expression] = STATE(3234), + [sym_switch_expression] = STATE(3234), + [sym_cast_expression] = STATE(3234), + [sym_type_trace_expression] = STATE(3234), + [sym__parenthesized_expression] = STATE(3089), + [sym_subscript_expression] = STATE(3234), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1175), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1850), [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), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [345] = { + [sym__rhs_expression] = STATE(1003), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1003), + [sym_operator] = STATE(1924), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), [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__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_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1858), [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), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), [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), + [346] = { + [sym__rhs_expression] = STATE(1213), + [sym__unaryExpression] = STATE(3495), + [sym_runtime_type_check_expression] = STATE(3495), + [sym_switch_expression] = STATE(3495), + [sym_cast_expression] = STATE(3495), + [sym_type_trace_expression] = STATE(3495), + [sym__parenthesized_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3495), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1213), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1862), [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), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [347] = { + [sym__rhs_expression] = STATE(1214), + [sym__unaryExpression] = STATE(3157), + [sym_runtime_type_check_expression] = STATE(3157), + [sym_switch_expression] = STATE(3157), + [sym_cast_expression] = STATE(3157), + [sym_type_trace_expression] = STATE(3157), + [sym__parenthesized_expression] = STATE(3038), + [sym_subscript_expression] = STATE(3157), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1214), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1870), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [348] = { + [sym__rhs_expression] = STATE(1186), + [sym__unaryExpression] = STATE(3286), + [sym_runtime_type_check_expression] = STATE(3286), + [sym_switch_expression] = STATE(3286), + [sym_cast_expression] = STATE(3286), + [sym_type_trace_expression] = STATE(3286), + [sym__parenthesized_expression] = STATE(3009), + [sym_subscript_expression] = STATE(3286), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1186), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1874), [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), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), [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), + [349] = { + [sym__rhs_expression] = STATE(1215), + [sym__unaryExpression] = STATE(3295), + [sym_runtime_type_check_expression] = STATE(3295), + [sym_switch_expression] = STATE(3295), + [sym_cast_expression] = STATE(3295), + [sym_type_trace_expression] = STATE(3295), + [sym__parenthesized_expression] = STATE(3124), + [sym_subscript_expression] = STATE(3295), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1215), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1882), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [350] = { + [sym__rhs_expression] = STATE(1194), + [sym__unaryExpression] = STATE(3200), + [sym_runtime_type_check_expression] = STATE(3200), + [sym_switch_expression] = STATE(3200), + [sym_cast_expression] = STATE(3200), + [sym_type_trace_expression] = STATE(3200), + [sym__parenthesized_expression] = STATE(2934), + [sym_subscript_expression] = STATE(3200), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1194), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1886), [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), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), [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), + [351] = { + [sym__rhs_expression] = STATE(1224), + [sym__unaryExpression] = STATE(3149), + [sym_runtime_type_check_expression] = STATE(3149), + [sym_switch_expression] = STATE(3149), + [sym_cast_expression] = STATE(3149), + [sym_type_trace_expression] = STATE(3149), + [sym__parenthesized_expression] = STATE(2940), + [sym_subscript_expression] = STATE(3149), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1224), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1894), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [352] = { + [sym__rhs_expression] = STATE(1199), + [sym__unaryExpression] = STATE(3166), + [sym_runtime_type_check_expression] = STATE(3166), + [sym_switch_expression] = STATE(3166), + [sym_cast_expression] = STATE(3166), + [sym_type_trace_expression] = STATE(3166), + [sym__parenthesized_expression] = STATE(2873), + [sym_subscript_expression] = STATE(3166), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(1199), + [sym_operator] = STATE(1840), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1329), + [sym_integer] = STATE(1329), + [sym_float] = STATE(1329), + [sym_bool] = STATE(1329), + [sym_string] = STATE(1308), + [sym_null] = STATE(1329), + [sym_array] = STATE(1329), + [sym_map] = STATE(1329), + [sym_object] = STATE(1329), + [sym_pair] = STATE(1329), + [sym_identifier] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(792), + [anon_sym_return] = ACTIONS(1898), [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), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(942), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [376] = { + [353] = { + [sym__rhs_expression] = STATE(99), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(171), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(146), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(99), + [sym_operator] = STATE(1936), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(564), + [sym_integer] = STATE(564), + [sym_float] = STATE(564), + [sym_bool] = STATE(564), + [sym_string] = STATE(363), + [sym_null] = STATE(564), + [sym_array] = STATE(564), + [sym_map] = STATE(564), + [sym_object] = STATE(564), + [sym_pair] = STATE(564), [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__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_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(1906), + [anon_sym_DOLLARtype] = ACTIONS(792), [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), + [anon_sym_untyped] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [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(57), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), [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), + [354] = { + [sym__rhs_expression] = STATE(929), + [sym__unaryExpression] = STATE(288), + [sym_runtime_type_check_expression] = STATE(288), + [sym_switch_expression] = STATE(288), + [sym_cast_expression] = STATE(288), + [sym_type_trace_expression] = STATE(288), + [sym__parenthesized_expression] = STATE(289), + [sym_subscript_expression] = STATE(288), + [sym_member_expression] = STATE(284), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(929), + [sym_operator] = STATE(1842), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1338), + [sym_integer] = STATE(1338), + [sym_float] = STATE(1338), + [sym_bool] = STATE(1338), + [sym_string] = STATE(1302), + [sym_null] = STATE(1338), + [sym_array] = STATE(1338), + [sym_map] = STATE(1338), + [sym_object] = STATE(1338), + [sym_pair] = STATE(1338), + [sym_identifier] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(702), [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), + [anon_sym_DOLLARtype] = ACTIONS(904), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_untyped] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(674), + [anon_sym_new] = ACTIONS(706), + [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(57), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [sym_comment] = ACTIONS(3), [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), + [355] = { + [sym__rhs_expression] = STATE(1012), + [sym__unaryExpression] = STATE(1422), + [sym_runtime_type_check_expression] = STATE(1422), + [sym_switch_expression] = STATE(1422), + [sym_cast_expression] = STATE(1422), + [sym_type_trace_expression] = STATE(1422), + [sym__parenthesized_expression] = STATE(1373), + [sym_subscript_expression] = STATE(1422), + [sym_member_expression] = STATE(1343), + [sym__lhs_expression] = STATE(2578), + [sym__call] = STATE(1464), + [sym__constructor_call] = STATE(1465), + [sym_call_expression] = STATE(1012), + [sym_operator] = STATE(1922), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1899), + [sym_integer] = STATE(1899), + [sym_float] = STATE(1899), + [sym_bool] = STATE(1899), + [sym_string] = STATE(1585), + [sym_null] = STATE(1899), + [sym_array] = STATE(1899), + [sym_map] = STATE(1899), + [sym_object] = STATE(1899), + [sym_pair] = STATE(1899), + [sym_identifier] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1248), [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), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_untyped] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_this] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1264), + [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(57), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1268), + [aux_sym_integer_token2] = ACTIONS(1270), + [aux_sym_float_token1] = ACTIONS(1272), + [aux_sym_float_token2] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1278), + [aux_sym_string_token3] = ACTIONS(1280), [sym_comment] = ACTIONS(3), [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), + [356] = { + [sym__rhs_expression] = STATE(1230), + [sym__unaryExpression] = STATE(3213), + [sym_runtime_type_check_expression] = STATE(3213), + [sym_switch_expression] = STATE(3213), + [sym_cast_expression] = STATE(3213), + [sym_type_trace_expression] = STATE(3213), + [sym__parenthesized_expression] = STATE(2984), + [sym_subscript_expression] = STATE(3213), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1230), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1926), [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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [357] = { + [sym__rhs_expression] = STATE(1232), + [sym__unaryExpression] = STATE(3266), + [sym_runtime_type_check_expression] = STATE(3266), + [sym_switch_expression] = STATE(3266), + [sym_cast_expression] = STATE(3266), + [sym_type_trace_expression] = STATE(3266), + [sym__parenthesized_expression] = STATE(3000), + [sym_subscript_expression] = STATE(3266), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1232), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1930), [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), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [358] = { + [sym__rhs_expression] = STATE(1237), + [sym__unaryExpression] = STATE(3310), + [sym_runtime_type_check_expression] = STATE(3310), + [sym_switch_expression] = STATE(3310), + [sym_cast_expression] = STATE(3310), + [sym_type_trace_expression] = STATE(3310), + [sym__parenthesized_expression] = STATE(3039), + [sym_subscript_expression] = STATE(3310), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1237), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), [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__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_untyped] = ACTIONS(1938), [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__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), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [359] = { + [sym__rhs_expression] = STATE(1242), + [sym__unaryExpression] = STATE(3348), + [sym_runtime_type_check_expression] = STATE(3348), + [sym_switch_expression] = STATE(3348), + [sym_cast_expression] = STATE(3348), + [sym_type_trace_expression] = STATE(3348), + [sym__parenthesized_expression] = STATE(3052), + [sym_subscript_expression] = STATE(3348), + [sym_member_expression] = STATE(1560), + [sym__lhs_expression] = STATE(2461), + [sym__call] = STATE(1951), + [sym__constructor_call] = STATE(1725), + [sym_call_expression] = STATE(1242), + [sym_operator] = STATE(1880), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [sym__literal] = STATE(1823), + [sym_integer] = STATE(1823), + [sym_float] = STATE(1823), + [sym_bool] = STATE(1823), + [sym_string] = STATE(1654), + [sym_null] = STATE(1823), + [sym_array] = STATE(1823), + [sym_map] = STATE(1823), + [sym_object] = STATE(1823), + [sym_pair] = STATE(1823), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1942), [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), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [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(57), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), [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), + [360] = { + [sym_identifier] = ACTIONS(1141), + [anon_sym_POUND] = ACTIONS(1138), + [anon_sym_package] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1141), + [anon_sym_import] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_using] = ACTIONS(1141), + [anon_sym_throw] = ACTIONS(1141), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_switch] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1141), + [anon_sym_cast] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_DOLLARtype] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_untyped] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1141), + [anon_sym_continue] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_this] = ACTIONS(1141), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1141), + [anon_sym_AT_COLON] = ACTIONS(1138), + [anon_sym_try] = ACTIONS(1141), + [anon_sym_catch] = ACTIONS(1141), + [anon_sym_else] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1138), + [anon_sym_SLASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1141), + [anon_sym_GT_GT_GT] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_EQ_EQ] = ACTIONS(1138), + [anon_sym_BANG_EQ] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1141), + [anon_sym_LT_EQ] = ACTIONS(1138), + [anon_sym_GT] = ACTIONS(1141), + [anon_sym_GT_EQ] = ACTIONS(1138), + [anon_sym_EQ_GT] = ACTIONS(1138), + [anon_sym_QMARK_QMARK] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1138), + [anon_sym_null] = ACTIONS(1141), + [anon_sym_macro] = ACTIONS(1141), + [anon_sym_abstract] = ACTIONS(1141), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_public] = ACTIONS(1141), + [anon_sym_private] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_overload] = ACTIONS(1141), + [anon_sym_override] = ACTIONS(1141), + [anon_sym_final] = ACTIONS(1141), + [anon_sym_class] = ACTIONS(1141), + [anon_sym_interface] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_typedef] = ACTIONS(1141), + [anon_sym_function] = ACTIONS(1141), + [anon_sym_var] = ACTIONS(1141), + [aux_sym_integer_token1] = ACTIONS(1141), + [aux_sym_integer_token2] = ACTIONS(1138), + [aux_sym_float_token1] = ACTIONS(1141), + [aux_sym_float_token2] = ACTIONS(1138), + [anon_sym_true] = ACTIONS(1141), + [anon_sym_false] = ACTIONS(1141), + [aux_sym_string_token1] = ACTIONS(1138), + [aux_sym_string_token3] = ACTIONS(1138), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1138), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [388] = { + [361] = { + [sym_else_clause] = STATE(470), [sym_identifier] = ACTIONS(1948), [anon_sym_POUND] = ACTIONS(1950), [anon_sym_package] = ACTIONS(1948), [anon_sym_import] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), [anon_sym_using] = ACTIONS(1948), [anon_sym_throw] = ACTIONS(1948), [anon_sym_LPAREN] = ACTIONS(1950), @@ -43899,6 +48177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1948), [anon_sym_cast] = ACTIONS(1948), [anon_sym_DOLLARtype] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1948), [anon_sym_return] = ACTIONS(1948), [anon_sym_untyped] = ACTIONS(1948), [anon_sym_break] = ACTIONS(1948), @@ -43907,7 +48186,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1948), [anon_sym_AT] = ACTIONS(1948), [anon_sym_AT_COLON] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), [anon_sym_new] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1950), [anon_sym_BANG] = ACTIONS(1948), @@ -43915,7 +48199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -43935,7 +48218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1950), [anon_sym_QMARK_QMARK] = ACTIONS(1950), [anon_sym_EQ] = ACTIONS(1948), - [sym__rangeOperator] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1950), [anon_sym_null] = ACTIONS(1948), [anon_sym_macro] = ACTIONS(1948), [anon_sym_abstract] = ACTIONS(1948), @@ -43949,6 +48232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1948), [anon_sym_class] = ACTIONS(1948), [anon_sym_interface] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), [anon_sym_typedef] = ACTIONS(1948), [anon_sym_function] = ACTIONS(1948), [anon_sym_var] = ACTIONS(1948), @@ -43961,251 +48245,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(1950), [aux_sym_string_token3] = ACTIONS(1950), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1952), [sym__closing_brace_marker] = ACTIONS(1950), [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__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), + [362] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1954), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1956), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1956), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), [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), + [363] = { + [ts_builtin_sym_end] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1960), + [anon_sym_package] = ACTIONS(1962), + [anon_sym_DOT] = ACTIONS(1962), + [anon_sym_import] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_using] = ACTIONS(1962), + [anon_sym_throw] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_switch] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1960), + [anon_sym_COLON] = ACTIONS(1956), + [anon_sym_cast] = ACTIONS(1962), + [anon_sym_DOLLARtype] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_untyped] = ACTIONS(1962), + [anon_sym_break] = ACTIONS(1962), + [anon_sym_continue] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_this] = ACTIONS(1962), + [anon_sym_QMARK] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1962), + [anon_sym_AT_COLON] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1962), + [anon_sym_catch] = ACTIONS(1962), + [anon_sym_else] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_new] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_PLUS_PLUS] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1960), + [anon_sym_PERCENT] = ACTIONS(1960), + [anon_sym_SLASH] = ACTIONS(1962), + [anon_sym_PLUS] = ACTIONS(1962), + [anon_sym_LT_LT] = ACTIONS(1960), + [anon_sym_GT_GT] = ACTIONS(1962), + [anon_sym_GT_GT_GT] = ACTIONS(1960), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1960), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_EQ_EQ] = ACTIONS(1960), + [anon_sym_BANG_EQ] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1962), + [anon_sym_LT_EQ] = ACTIONS(1960), + [anon_sym_GT] = ACTIONS(1962), + [anon_sym_GT_EQ] = ACTIONS(1960), + [anon_sym_EQ_GT] = ACTIONS(1960), + [anon_sym_QMARK_QMARK] = ACTIONS(1960), + [anon_sym_EQ] = ACTIONS(1962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(1962), + [anon_sym_macro] = ACTIONS(1962), + [anon_sym_abstract] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_public] = ACTIONS(1962), + [anon_sym_private] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_inline] = ACTIONS(1962), + [anon_sym_overload] = ACTIONS(1962), + [anon_sym_override] = ACTIONS(1962), + [anon_sym_final] = ACTIONS(1962), + [anon_sym_class] = ACTIONS(1962), + [anon_sym_interface] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_typedef] = ACTIONS(1962), + [anon_sym_function] = ACTIONS(1962), + [anon_sym_var] = ACTIONS(1962), + [aux_sym_integer_token1] = ACTIONS(1962), + [aux_sym_integer_token2] = ACTIONS(1960), + [aux_sym_float_token1] = ACTIONS(1962), + [aux_sym_float_token2] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [aux_sym_string_token1] = ACTIONS(1960), + [aux_sym_string_token3] = ACTIONS(1960), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [392] = { + [364] = { [sym_identifier] = ACTIONS(1964), [anon_sym_POUND] = ACTIONS(1966), [anon_sym_package] = ACTIONS(1964), [anon_sym_import] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1966), [anon_sym_using] = ACTIONS(1964), [anon_sym_throw] = ACTIONS(1964), [anon_sym_LPAREN] = ACTIONS(1966), @@ -44215,6 +48438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1964), [anon_sym_cast] = ACTIONS(1964), [anon_sym_DOLLARtype] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1964), [anon_sym_return] = ACTIONS(1964), [anon_sym_untyped] = ACTIONS(1964), [anon_sym_break] = ACTIONS(1964), @@ -44223,7 +48447,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1964), [anon_sym_AT] = ACTIONS(1964), [anon_sym_AT_COLON] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1964), + [anon_sym_catch] = ACTIONS(1964), + [anon_sym_else] = ACTIONS(1964), [anon_sym_if] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = ACTIONS(1964), [anon_sym_new] = ACTIONS(1964), [anon_sym_TILDE] = ACTIONS(1966), [anon_sym_BANG] = ACTIONS(1964), @@ -44231,7 +48460,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -44251,7 +48479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1966), [anon_sym_QMARK_QMARK] = ACTIONS(1966), [anon_sym_EQ] = ACTIONS(1964), - [sym__rangeOperator] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1966), [anon_sym_null] = ACTIONS(1964), [anon_sym_macro] = ACTIONS(1964), [anon_sym_abstract] = ACTIONS(1964), @@ -44265,6 +48493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1964), [anon_sym_class] = ACTIONS(1964), [anon_sym_interface] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), [anon_sym_typedef] = ACTIONS(1964), [anon_sym_function] = ACTIONS(1964), [anon_sym_var] = ACTIONS(1964), @@ -44277,93 +48506,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(1966), [aux_sym_string_token3] = ACTIONS(1966), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1968), [sym__closing_brace_marker] = ACTIONS(1966), [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), + [365] = { + [sym_else_clause] = STATE(470), + [sym_identifier] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_package] = ACTIONS(1948), + [anon_sym_import] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__closing_brace_unmarker] = ACTIONS(3), }, - [394] = { - [sym_identifier] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_package] = ACTIONS(1972), + [366] = { + [sym_identifier] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1960), + [anon_sym_package] = ACTIONS(1962), + [anon_sym_DOT] = ACTIONS(1962), + [anon_sym_import] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_using] = ACTIONS(1962), + [anon_sym_throw] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_switch] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1960), + [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_cast] = ACTIONS(1962), + [anon_sym_DOLLARtype] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_untyped] = ACTIONS(1962), + [anon_sym_break] = ACTIONS(1962), + [anon_sym_continue] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_this] = ACTIONS(1962), + [anon_sym_QMARK] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1962), + [anon_sym_AT_COLON] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1962), + [anon_sym_catch] = ACTIONS(1962), + [anon_sym_else] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_new] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_PLUS_PLUS] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1960), + [anon_sym_PERCENT] = ACTIONS(1960), + [anon_sym_SLASH] = ACTIONS(1962), + [anon_sym_PLUS] = ACTIONS(1962), + [anon_sym_LT_LT] = ACTIONS(1960), + [anon_sym_GT_GT] = ACTIONS(1962), + [anon_sym_GT_GT_GT] = ACTIONS(1960), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1960), + [anon_sym_PIPE_PIPE] = ACTIONS(1960), + [anon_sym_EQ_EQ] = ACTIONS(1960), + [anon_sym_BANG_EQ] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1962), + [anon_sym_LT_EQ] = ACTIONS(1960), + [anon_sym_GT] = ACTIONS(1962), + [anon_sym_GT_EQ] = ACTIONS(1960), + [anon_sym_EQ_GT] = ACTIONS(1960), + [anon_sym_QMARK_QMARK] = ACTIONS(1960), + [anon_sym_EQ] = ACTIONS(1962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(1962), + [anon_sym_macro] = ACTIONS(1962), + [anon_sym_abstract] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_public] = ACTIONS(1962), + [anon_sym_private] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_inline] = ACTIONS(1962), + [anon_sym_overload] = ACTIONS(1962), + [anon_sym_override] = ACTIONS(1962), + [anon_sym_final] = ACTIONS(1962), + [anon_sym_class] = ACTIONS(1962), + [anon_sym_interface] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_typedef] = ACTIONS(1962), + [anon_sym_function] = ACTIONS(1962), + [anon_sym_var] = ACTIONS(1962), + [aux_sym_integer_token1] = ACTIONS(1962), + [aux_sym_integer_token2] = ACTIONS(1960), + [aux_sym_float_token1] = ACTIONS(1962), + [aux_sym_float_token2] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [aux_sym_string_token1] = ACTIONS(1960), + [aux_sym_string_token3] = ACTIONS(1960), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1960), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [367] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_package] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_import] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_using] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_cast] = ACTIONS(1432), + [anon_sym_DOLLARtype] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_untyped] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_this] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_AT_COLON] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_catch] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_GT_GT_GT] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_EQ_GT] = ACTIONS(1086), + [anon_sym_QMARK_QMARK] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), + [anon_sym_null] = ACTIONS(1432), + [anon_sym_macro] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym_overload] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_final] = ACTIONS(1432), + [anon_sym_class] = ACTIONS(1432), + [anon_sym_interface] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_var] = ACTIONS(1432), + [aux_sym_integer_token1] = ACTIONS(1432), + [aux_sym_integer_token2] = ACTIONS(1434), + [aux_sym_float_token1] = ACTIONS(1432), + [aux_sym_float_token2] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [aux_sym_string_token1] = ACTIONS(1434), + [aux_sym_string_token3] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1086), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [368] = { + [sym_else_clause] = STATE(491), + [sym_identifier] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_package] = ACTIONS(1972), [anon_sym_import] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), [anon_sym_using] = ACTIONS(1972), [anon_sym_throw] = ACTIONS(1972), [anon_sym_LPAREN] = ACTIONS(1974), @@ -44373,6 +48787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1972), [anon_sym_cast] = ACTIONS(1972), [anon_sym_DOLLARtype] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1972), [anon_sym_return] = ACTIONS(1972), [anon_sym_untyped] = ACTIONS(1972), [anon_sym_break] = ACTIONS(1972), @@ -44381,7 +48796,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1972), [anon_sym_AT] = ACTIONS(1972), [anon_sym_AT_COLON] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), [anon_sym_new] = ACTIONS(1972), [anon_sym_TILDE] = ACTIONS(1974), [anon_sym_BANG] = ACTIONS(1972), @@ -44389,7 +48809,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -44409,7 +48828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1974), [anon_sym_QMARK_QMARK] = ACTIONS(1974), [anon_sym_EQ] = ACTIONS(1972), - [sym__rangeOperator] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1974), [anon_sym_null] = ACTIONS(1972), [anon_sym_macro] = ACTIONS(1972), [anon_sym_abstract] = ACTIONS(1972), @@ -44423,6 +48842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1972), [anon_sym_class] = ACTIONS(1972), [anon_sym_interface] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), [anon_sym_typedef] = ACTIONS(1972), [anon_sym_function] = ACTIONS(1972), [anon_sym_var] = ACTIONS(1972), @@ -44438,11 +48858,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(1974), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [395] = { + [369] = { + [sym_else_clause] = STATE(520), [sym_identifier] = ACTIONS(1976), [anon_sym_POUND] = ACTIONS(1978), [anon_sym_package] = ACTIONS(1976), [anon_sym_import] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), [anon_sym_using] = ACTIONS(1976), [anon_sym_throw] = ACTIONS(1976), [anon_sym_LPAREN] = ACTIONS(1978), @@ -44452,6 +48874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1976), [anon_sym_cast] = ACTIONS(1976), [anon_sym_DOLLARtype] = ACTIONS(1978), + [anon_sym_for] = ACTIONS(1976), [anon_sym_return] = ACTIONS(1976), [anon_sym_untyped] = ACTIONS(1976), [anon_sym_break] = ACTIONS(1976), @@ -44460,7 +48883,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1976), [anon_sym_AT] = ACTIONS(1976), [anon_sym_AT_COLON] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_catch] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(1976), [anon_sym_if] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), [anon_sym_new] = ACTIONS(1976), [anon_sym_TILDE] = ACTIONS(1978), [anon_sym_BANG] = ACTIONS(1976), @@ -44468,7 +48896,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -44488,7 +48915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1978), [anon_sym_QMARK_QMARK] = ACTIONS(1978), [anon_sym_EQ] = ACTIONS(1976), - [sym__rangeOperator] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), [anon_sym_null] = ACTIONS(1976), [anon_sym_macro] = ACTIONS(1976), [anon_sym_abstract] = ACTIONS(1976), @@ -44502,6 +48929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1976), [anon_sym_class] = ACTIONS(1976), [anon_sym_interface] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), [anon_sym_typedef] = ACTIONS(1976), [anon_sym_function] = ACTIONS(1976), [anon_sym_var] = ACTIONS(1976), @@ -44517,11 +48945,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(1978), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [396] = { + [370] = { + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1046), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [371] = { [sym_identifier] = ACTIONS(1980), [anon_sym_POUND] = ACTIONS(1982), [anon_sym_package] = ACTIONS(1980), [anon_sym_import] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), [anon_sym_using] = ACTIONS(1980), [anon_sym_throw] = ACTIONS(1980), [anon_sym_LPAREN] = ACTIONS(1982), @@ -44531,6 +49047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1980), [anon_sym_cast] = ACTIONS(1980), [anon_sym_DOLLARtype] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1980), [anon_sym_return] = ACTIONS(1980), [anon_sym_untyped] = ACTIONS(1980), [anon_sym_break] = ACTIONS(1980), @@ -44539,7 +49056,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1980), [anon_sym_AT] = ACTIONS(1980), [anon_sym_AT_COLON] = ACTIONS(1982), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_catch] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), [anon_sym_if] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), [anon_sym_new] = ACTIONS(1980), [anon_sym_TILDE] = ACTIONS(1982), [anon_sym_BANG] = ACTIONS(1980), @@ -44547,7 +49069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -44567,7 +49088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1982), [anon_sym_QMARK_QMARK] = ACTIONS(1982), [anon_sym_EQ] = ACTIONS(1980), - [sym__rangeOperator] = ACTIONS(1982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_null] = ACTIONS(1980), [anon_sym_macro] = ACTIONS(1980), [anon_sym_abstract] = ACTIONS(1980), @@ -44581,6 +49102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1980), [anon_sym_class] = ACTIONS(1980), [anon_sym_interface] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_typedef] = ACTIONS(1980), [anon_sym_function] = ACTIONS(1980), [anon_sym_var] = ACTIONS(1980), @@ -44593,172 +49115,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(1982), [aux_sym_string_token3] = ACTIONS(1982), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1984), [sym__closing_brace_marker] = ACTIONS(1982), [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), + [372] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1146), + [anon_sym_package] = ACTIONS(1148), + [anon_sym_DOT] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(1148), + [anon_sym_throw] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_cast] = ACTIONS(1148), + [anon_sym_DOLLARtype] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_untyped] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_this] = ACTIONS(1148), + [anon_sym_QMARK] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_AT_COLON] = ACTIONS(1146), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_catch] = ACTIONS(1148), + [anon_sym_else] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1148), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_PERCENT] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_LT_LT] = ACTIONS(1146), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_GT_GT_GT] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_EQ_EQ] = ACTIONS(1146), + [anon_sym_BANG_EQ] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_LT_EQ] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_GT_EQ] = ACTIONS(1146), + [anon_sym_EQ_GT] = ACTIONS(1146), + [anon_sym_QMARK_QMARK] = ACTIONS(1146), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1148), + [anon_sym_macro] = ACTIONS(1148), + [anon_sym_abstract] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1148), + [anon_sym_private] = ACTIONS(1148), + [anon_sym_extern] = ACTIONS(1148), + [anon_sym_inline] = ACTIONS(1148), + [anon_sym_overload] = ACTIONS(1148), + [anon_sym_override] = ACTIONS(1148), + [anon_sym_final] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_interface] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [anon_sym_typedef] = ACTIONS(1148), + [anon_sym_function] = ACTIONS(1148), + [anon_sym_var] = ACTIONS(1148), + [aux_sym_integer_token1] = ACTIONS(1148), + [aux_sym_integer_token2] = ACTIONS(1146), + [aux_sym_float_token1] = ACTIONS(1148), + [aux_sym_float_token2] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [aux_sym_string_token1] = ACTIONS(1146), + [aux_sym_string_token3] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1146), [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), + [373] = { + [sym_identifier] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_package] = ACTIONS(1986), + [anon_sym_import] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1986), + [anon_sym_throw] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_cast] = ACTIONS(1986), + [anon_sym_DOLLARtype] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_untyped] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_this] = ACTIONS(1986), + [anon_sym_AT] = ACTIONS(1986), + [anon_sym_AT_COLON] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_new] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1988), + [anon_sym_SLASH] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_LT_LT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1986), + [anon_sym_GT_GT_GT] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_CARET] = ACTIONS(1988), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_PIPE_PIPE] = ACTIONS(1988), + [anon_sym_EQ_EQ] = ACTIONS(1988), + [anon_sym_BANG_EQ] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_LT_EQ] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1986), + [anon_sym_GT_EQ] = ACTIONS(1988), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_QMARK] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1988), + [anon_sym_null] = ACTIONS(1986), + [anon_sym_macro] = ACTIONS(1986), + [anon_sym_abstract] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_public] = ACTIONS(1986), + [anon_sym_private] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_inline] = ACTIONS(1986), + [anon_sym_overload] = ACTIONS(1986), + [anon_sym_override] = ACTIONS(1986), + [anon_sym_final] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1986), + [anon_sym_interface] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1986), + [anon_sym_function] = ACTIONS(1986), + [anon_sym_var] = ACTIONS(1986), + [aux_sym_integer_token1] = ACTIONS(1986), + [aux_sym_integer_token2] = ACTIONS(1988), + [aux_sym_float_token1] = ACTIONS(1986), + [aux_sym_float_token2] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [aux_sym_string_token1] = ACTIONS(1988), + [aux_sym_string_token3] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1990), + [sym__closing_brace_marker] = ACTIONS(1988), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [399] = { + [374] = { + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1046), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [375] = { + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1098), + [anon_sym_package] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_cast] = ACTIONS(1100), + [anon_sym_DOLLARtype] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_untyped] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_this] = ACTIONS(1100), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1100), + [anon_sym_AT_COLON] = ACTIONS(1098), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_catch] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_GT_GT] = ACTIONS(1100), + [anon_sym_GT_GT_GT] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1098), + [anon_sym_PIPE_PIPE] = ACTIONS(1098), + [anon_sym_EQ_EQ] = ACTIONS(1098), + [anon_sym_BANG_EQ] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1098), + [anon_sym_GT] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(1098), + [anon_sym_QMARK_QMARK] = ACTIONS(1098), + [anon_sym_EQ] = ACTIONS(1100), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), + [anon_sym_null] = ACTIONS(1100), + [anon_sym_macro] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_overload] = ACTIONS(1100), + [anon_sym_override] = ACTIONS(1100), + [anon_sym_final] = ACTIONS(1100), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_function] = ACTIONS(1100), + [anon_sym_var] = ACTIONS(1100), + [aux_sym_integer_token1] = ACTIONS(1100), + [aux_sym_integer_token2] = ACTIONS(1098), + [aux_sym_float_token1] = ACTIONS(1100), + [aux_sym_float_token2] = ACTIONS(1098), + [anon_sym_true] = ACTIONS(1100), + [anon_sym_false] = ACTIONS(1100), + [aux_sym_string_token1] = ACTIONS(1098), + [aux_sym_string_token3] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1098), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [376] = { + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(924), + [anon_sym_package] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_import] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_using] = ACTIONS(926), + [anon_sym_throw] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_cast] = ACTIONS(926), + [anon_sym_DOLLARtype] = ACTIONS(924), + [anon_sym_for] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_untyped] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_this] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_AT_COLON] = ACTIONS(924), + [anon_sym_try] = ACTIONS(926), + [anon_sym_catch] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_new] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(924), + [anon_sym_PERCENT] = ACTIONS(924), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_GT_GT_GT] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_QMARK] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(924), + [anon_sym_null] = ACTIONS(926), + [anon_sym_macro] = ACTIONS(926), + [anon_sym_abstract] = ACTIONS(926), + [anon_sym_static] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_overload] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_final] = ACTIONS(926), + [anon_sym_class] = ACTIONS(926), + [anon_sym_interface] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(926), + [anon_sym_function] = ACTIONS(926), + [anon_sym_var] = ACTIONS(926), + [aux_sym_integer_token1] = ACTIONS(926), + [aux_sym_integer_token2] = ACTIONS(924), + [aux_sym_float_token1] = ACTIONS(926), + [aux_sym_float_token2] = ACTIONS(924), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [aux_sym_string_token1] = ACTIONS(924), + [aux_sym_string_token3] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(924), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [377] = { + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(1102), + [anon_sym_package] = ACTIONS(1104), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_using] = ACTIONS(1104), + [anon_sym_throw] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_cast] = ACTIONS(1104), + [anon_sym_DOLLARtype] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_untyped] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_this] = ACTIONS(1104), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(1104), + [anon_sym_AT_COLON] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(1104), + [anon_sym_catch] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_new] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1104), + [anon_sym_GT_GT_GT] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_EQ_EQ] = ACTIONS(1102), + [anon_sym_BANG_EQ] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_LT_EQ] = ACTIONS(1102), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_EQ] = ACTIONS(1102), + [anon_sym_EQ_GT] = ACTIONS(1102), + [anon_sym_QMARK_QMARK] = ACTIONS(1102), + [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1102), + [anon_sym_null] = ACTIONS(1104), + [anon_sym_macro] = ACTIONS(1104), + [anon_sym_abstract] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_overload] = ACTIONS(1104), + [anon_sym_override] = ACTIONS(1104), + [anon_sym_final] = ACTIONS(1104), + [anon_sym_class] = ACTIONS(1104), + [anon_sym_interface] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_var] = ACTIONS(1104), + [aux_sym_integer_token1] = ACTIONS(1104), + [aux_sym_integer_token2] = ACTIONS(1102), + [aux_sym_float_token1] = ACTIONS(1104), + [aux_sym_float_token2] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [aux_sym_string_token1] = ACTIONS(1102), + [aux_sym_string_token3] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1102), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [378] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1954), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1956), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1956), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [379] = { + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1954), + [anon_sym_import] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_using] = ACTIONS(1054), + [anon_sym_throw] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COLON] = ACTIONS(1132), + [anon_sym_cast] = ACTIONS(1054), + [anon_sym_DOLLARtype] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_this] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1054), + [anon_sym_AT_COLON] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_EQ_GT] = ACTIONS(1050), + [anon_sym_QMARK_QMARK] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_macro] = ACTIONS(1054), + [anon_sym_abstract] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_public] = ACTIONS(1054), + [anon_sym_private] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_overload] = ACTIONS(1054), + [anon_sym_override] = ACTIONS(1054), + [anon_sym_final] = ACTIONS(1054), + [anon_sym_class] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_function] = ACTIONS(1054), + [anon_sym_var] = ACTIONS(1054), + [aux_sym_integer_token1] = ACTIONS(1054), + [aux_sym_integer_token2] = ACTIONS(1050), + [aux_sym_float_token1] = ACTIONS(1054), + [aux_sym_float_token2] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym_string_token1] = ACTIONS(1050), + [aux_sym_string_token3] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [380] = { [sym_identifier] = ACTIONS(1992), [anon_sym_POUND] = ACTIONS(1994), [anon_sym_package] = ACTIONS(1992), [anon_sym_import] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), [anon_sym_using] = ACTIONS(1992), [anon_sym_throw] = ACTIONS(1992), [anon_sym_LPAREN] = ACTIONS(1994), @@ -44768,6 +49830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1992), [anon_sym_cast] = ACTIONS(1992), [anon_sym_DOLLARtype] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1992), [anon_sym_return] = ACTIONS(1992), [anon_sym_untyped] = ACTIONS(1992), [anon_sym_break] = ACTIONS(1992), @@ -44776,7 +49839,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1992), [anon_sym_AT] = ACTIONS(1992), [anon_sym_AT_COLON] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), [anon_sym_if] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), [anon_sym_new] = ACTIONS(1992), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_BANG] = ACTIONS(1992), @@ -44784,7 +49852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -44804,7 +49871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1994), [anon_sym_QMARK_QMARK] = ACTIONS(1994), [anon_sym_EQ] = ACTIONS(1992), - [sym__rangeOperator] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1994), [anon_sym_null] = ACTIONS(1992), [anon_sym_macro] = ACTIONS(1992), [anon_sym_abstract] = ACTIONS(1992), @@ -44818,6 +49885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1992), [anon_sym_class] = ACTIONS(1992), [anon_sym_interface] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), [anon_sym_typedef] = ACTIONS(1992), [anon_sym_function] = ACTIONS(1992), [anon_sym_var] = ACTIONS(1992), @@ -44830,5195 +49898,5232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(1994), [aux_sym_string_token3] = ACTIONS(1994), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1996), [sym__closing_brace_marker] = ACTIONS(1994), [sym__closing_brace_unmarker] = ACTIONS(3), }, + [381] = { + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1998), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2000), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1046), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [382] = { + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1998), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2000), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1046), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(2002), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1956), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1956), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [384] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(2002), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1956), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1956), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [385] = { + [sym_identifier] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_package] = ACTIONS(2006), + [anon_sym_import] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_using] = ACTIONS(2006), + [anon_sym_throw] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_case] = ACTIONS(2006), + [anon_sym_default] = ACTIONS(2006), + [anon_sym_cast] = ACTIONS(2006), + [anon_sym_DOLLARtype] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_untyped] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_this] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_AT_COLON] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2006), + [anon_sym_catch] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_do] = ACTIONS(2006), + [anon_sym_new] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2008), + [anon_sym_PERCENT] = ACTIONS(2008), + [anon_sym_SLASH] = ACTIONS(2006), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_LT_LT] = ACTIONS(2008), + [anon_sym_GT_GT] = ACTIONS(2006), + [anon_sym_GT_GT_GT] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [anon_sym_EQ_EQ] = ACTIONS(2008), + [anon_sym_BANG_EQ] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(2008), + [anon_sym_GT] = ACTIONS(2006), + [anon_sym_GT_EQ] = ACTIONS(2008), + [anon_sym_EQ_GT] = ACTIONS(2008), + [anon_sym_QMARK_QMARK] = ACTIONS(2008), + [anon_sym_EQ] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2008), + [anon_sym_null] = ACTIONS(2006), + [anon_sym_macro] = ACTIONS(2006), + [anon_sym_abstract] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2006), + [anon_sym_public] = ACTIONS(2006), + [anon_sym_private] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_inline] = ACTIONS(2006), + [anon_sym_overload] = ACTIONS(2006), + [anon_sym_override] = ACTIONS(2006), + [anon_sym_final] = ACTIONS(2006), + [anon_sym_class] = ACTIONS(2006), + [anon_sym_interface] = ACTIONS(2006), + [anon_sym_enum] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2006), + [anon_sym_function] = ACTIONS(2006), + [anon_sym_var] = ACTIONS(2006), + [aux_sym_integer_token1] = ACTIONS(2006), + [aux_sym_integer_token2] = ACTIONS(2008), + [aux_sym_float_token1] = ACTIONS(2006), + [aux_sym_float_token2] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [aux_sym_string_token1] = ACTIONS(2008), + [aux_sym_string_token3] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2008), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [386] = { + [sym_identifier] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_package] = ACTIONS(2010), + [anon_sym_import] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_using] = ACTIONS(2010), + [anon_sym_throw] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2010), + [anon_sym_default] = ACTIONS(2010), + [anon_sym_cast] = ACTIONS(2010), + [anon_sym_DOLLARtype] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_untyped] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_this] = ACTIONS(2010), + [anon_sym_AT] = ACTIONS(2010), + [anon_sym_AT_COLON] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2010), + [anon_sym_catch] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_new] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_SLASH] = ACTIONS(2010), + [anon_sym_PLUS] = ACTIONS(2010), + [anon_sym_LT_LT] = ACTIONS(2012), + [anon_sym_GT_GT] = ACTIONS(2010), + [anon_sym_GT_GT_GT] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_CARET] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_EQ] = ACTIONS(2012), + [anon_sym_BANG_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2010), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_GT] = ACTIONS(2010), + [anon_sym_GT_EQ] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(2012), + [anon_sym_QMARK_QMARK] = ACTIONS(2012), + [anon_sym_EQ] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2012), + [anon_sym_null] = ACTIONS(2010), + [anon_sym_macro] = ACTIONS(2010), + [anon_sym_abstract] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_public] = ACTIONS(2010), + [anon_sym_private] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_inline] = ACTIONS(2010), + [anon_sym_overload] = ACTIONS(2010), + [anon_sym_override] = ACTIONS(2010), + [anon_sym_final] = ACTIONS(2010), + [anon_sym_class] = ACTIONS(2010), + [anon_sym_interface] = ACTIONS(2010), + [anon_sym_enum] = ACTIONS(2010), + [anon_sym_typedef] = ACTIONS(2010), + [anon_sym_function] = ACTIONS(2010), + [anon_sym_var] = ACTIONS(2010), + [aux_sym_integer_token1] = ACTIONS(2010), + [aux_sym_integer_token2] = ACTIONS(2012), + [aux_sym_float_token1] = ACTIONS(2010), + [aux_sym_float_token2] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [aux_sym_string_token1] = ACTIONS(2012), + [aux_sym_string_token3] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2012), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [387] = { + [sym_identifier] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_package] = ACTIONS(2014), + [anon_sym_import] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_using] = ACTIONS(2014), + [anon_sym_throw] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2014), + [anon_sym_cast] = ACTIONS(2014), + [anon_sym_DOLLARtype] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_untyped] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_this] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2014), + [anon_sym_AT_COLON] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2016), + [anon_sym_PERCENT] = ACTIONS(2016), + [anon_sym_SLASH] = ACTIONS(2014), + [anon_sym_PLUS] = ACTIONS(2014), + [anon_sym_LT_LT] = ACTIONS(2016), + [anon_sym_GT_GT] = ACTIONS(2014), + [anon_sym_GT_GT_GT] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2016), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_EQ_EQ] = ACTIONS(2016), + [anon_sym_BANG_EQ] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_LT_EQ] = ACTIONS(2016), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_EQ] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(2016), + [anon_sym_QMARK_QMARK] = ACTIONS(2016), + [anon_sym_EQ] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(2014), + [anon_sym_macro] = ACTIONS(2014), + [anon_sym_abstract] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_public] = ACTIONS(2014), + [anon_sym_private] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_inline] = ACTIONS(2014), + [anon_sym_overload] = ACTIONS(2014), + [anon_sym_override] = ACTIONS(2014), + [anon_sym_final] = ACTIONS(2014), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_interface] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2014), + [anon_sym_function] = ACTIONS(2014), + [anon_sym_var] = ACTIONS(2014), + [aux_sym_integer_token1] = ACTIONS(2014), + [aux_sym_integer_token2] = ACTIONS(2016), + [aux_sym_float_token1] = ACTIONS(2014), + [aux_sym_float_token2] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [aux_sym_string_token1] = ACTIONS(2016), + [aux_sym_string_token3] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2016), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [388] = { + [sym_identifier] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(2020), + [anon_sym_package] = ACTIONS(2018), + [anon_sym_import] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_using] = ACTIONS(2018), + [anon_sym_throw] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2018), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_cast] = ACTIONS(2018), + [anon_sym_DOLLARtype] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_untyped] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_this] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2018), + [anon_sym_AT_COLON] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_new] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PERCENT] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2018), + [anon_sym_PLUS] = ACTIONS(2018), + [anon_sym_LT_LT] = ACTIONS(2020), + [anon_sym_GT_GT] = ACTIONS(2018), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2020), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_GT] = ACTIONS(2018), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_EQ_GT] = ACTIONS(2020), + [anon_sym_QMARK_QMARK] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2020), + [anon_sym_null] = ACTIONS(2018), + [anon_sym_macro] = ACTIONS(2018), + [anon_sym_abstract] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_public] = ACTIONS(2018), + [anon_sym_private] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_inline] = ACTIONS(2018), + [anon_sym_overload] = ACTIONS(2018), + [anon_sym_override] = ACTIONS(2018), + [anon_sym_final] = ACTIONS(2018), + [anon_sym_class] = ACTIONS(2018), + [anon_sym_interface] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2018), + [anon_sym_function] = ACTIONS(2018), + [anon_sym_var] = ACTIONS(2018), + [aux_sym_integer_token1] = ACTIONS(2018), + [aux_sym_integer_token2] = ACTIONS(2020), + [aux_sym_float_token1] = ACTIONS(2018), + [aux_sym_float_token2] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [aux_sym_string_token1] = ACTIONS(2020), + [aux_sym_string_token3] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2020), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [389] = { + [sym_identifier] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_package] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_using] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_cast] = ACTIONS(2022), + [anon_sym_DOLLARtype] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_untyped] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_this] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_AT_COLON] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_GT_GT_GT] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2024), + [anon_sym_BANG_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(2024), + [anon_sym_QMARK_QMARK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2024), + [anon_sym_null] = ACTIONS(2022), + [anon_sym_macro] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_inline] = ACTIONS(2022), + [anon_sym_overload] = ACTIONS(2022), + [anon_sym_override] = ACTIONS(2022), + [anon_sym_final] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_typedef] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [aux_sym_integer_token1] = ACTIONS(2022), + [aux_sym_integer_token2] = ACTIONS(2024), + [aux_sym_float_token1] = ACTIONS(2022), + [aux_sym_float_token2] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [aux_sym_string_token1] = ACTIONS(2024), + [aux_sym_string_token3] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2024), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [390] = { + [sym_identifier] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_package] = ACTIONS(2026), + [anon_sym_import] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_using] = ACTIONS(2026), + [anon_sym_throw] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_cast] = ACTIONS(2026), + [anon_sym_DOLLARtype] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_untyped] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_this] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2026), + [anon_sym_AT_COLON] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_new] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2028), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_LT_LT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym_GT_GT_GT] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2026), + [anon_sym_CARET] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_EQ_EQ] = ACTIONS(2028), + [anon_sym_BANG_EQ] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2026), + [anon_sym_GT_EQ] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2028), + [anon_sym_QMARK_QMARK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2028), + [anon_sym_null] = ACTIONS(2026), + [anon_sym_macro] = ACTIONS(2026), + [anon_sym_abstract] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_inline] = ACTIONS(2026), + [anon_sym_overload] = ACTIONS(2026), + [anon_sym_override] = ACTIONS(2026), + [anon_sym_final] = ACTIONS(2026), + [anon_sym_class] = ACTIONS(2026), + [anon_sym_interface] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [anon_sym_typedef] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(2026), + [anon_sym_var] = ACTIONS(2026), + [aux_sym_integer_token1] = ACTIONS(2026), + [aux_sym_integer_token2] = ACTIONS(2028), + [aux_sym_float_token1] = ACTIONS(2026), + [aux_sym_float_token2] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [aux_sym_string_token1] = ACTIONS(2028), + [aux_sym_string_token3] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2028), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [391] = { + [sym_identifier] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_package] = ACTIONS(2030), + [anon_sym_import] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2032), + [anon_sym_using] = ACTIONS(2030), + [anon_sym_throw] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_cast] = ACTIONS(2030), + [anon_sym_DOLLARtype] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_untyped] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_this] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2030), + [anon_sym_AT_COLON] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_new] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2032), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2032), + [anon_sym_PERCENT] = ACTIONS(2032), + [anon_sym_SLASH] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_LT_LT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_GT_GT_GT] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_EQ_EQ] = ACTIONS(2032), + [anon_sym_BANG_EQ] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_LT_EQ] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2030), + [anon_sym_GT_EQ] = ACTIONS(2032), + [anon_sym_EQ_GT] = ACTIONS(2032), + [anon_sym_QMARK_QMARK] = ACTIONS(2032), + [anon_sym_EQ] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2032), + [anon_sym_null] = ACTIONS(2030), + [anon_sym_macro] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_overload] = ACTIONS(2030), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2030), + [anon_sym_function] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [aux_sym_integer_token1] = ACTIONS(2030), + [aux_sym_integer_token2] = ACTIONS(2032), + [aux_sym_float_token1] = ACTIONS(2030), + [aux_sym_float_token2] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [aux_sym_string_token1] = ACTIONS(2032), + [aux_sym_string_token3] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2032), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [392] = { + [sym_identifier] = ACTIONS(2034), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_package] = ACTIONS(2034), + [anon_sym_import] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_using] = ACTIONS(2034), + [anon_sym_throw] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_cast] = ACTIONS(2034), + [anon_sym_DOLLARtype] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_untyped] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_this] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2034), + [anon_sym_AT_COLON] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_new] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_PERCENT] = ACTIONS(2036), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PLUS] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_GT_GT_GT] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_EQ_EQ] = ACTIONS(2036), + [anon_sym_BANG_EQ] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_LT_EQ] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2034), + [anon_sym_GT_EQ] = ACTIONS(2036), + [anon_sym_EQ_GT] = ACTIONS(2036), + [anon_sym_QMARK_QMARK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2034), + [anon_sym_macro] = ACTIONS(2034), + [anon_sym_abstract] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_inline] = ACTIONS(2034), + [anon_sym_overload] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_final] = ACTIONS(2034), + [anon_sym_class] = ACTIONS(2034), + [anon_sym_interface] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2034), + [anon_sym_function] = ACTIONS(2034), + [anon_sym_var] = ACTIONS(2034), + [aux_sym_integer_token1] = ACTIONS(2034), + [aux_sym_integer_token2] = ACTIONS(2036), + [aux_sym_float_token1] = ACTIONS(2034), + [aux_sym_float_token2] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [aux_sym_string_token1] = ACTIONS(2036), + [aux_sym_string_token3] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2036), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [393] = { + [sym_identifier] = ACTIONS(2038), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_package] = ACTIONS(2038), + [anon_sym_import] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2038), + [anon_sym_throw] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_cast] = ACTIONS(2038), + [anon_sym_DOLLARtype] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_untyped] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2038), + [anon_sym_AT_COLON] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_new] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2040), + [anon_sym_PERCENT] = ACTIONS(2040), + [anon_sym_SLASH] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(2038), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_GT_GT_GT] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2040), + [anon_sym_AMP_AMP] = ACTIONS(2040), + [anon_sym_PIPE_PIPE] = ACTIONS(2040), + [anon_sym_EQ_EQ] = ACTIONS(2040), + [anon_sym_BANG_EQ] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_LT_EQ] = ACTIONS(2040), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_EQ] = ACTIONS(2040), + [anon_sym_EQ_GT] = ACTIONS(2040), + [anon_sym_QMARK_QMARK] = ACTIONS(2040), + [anon_sym_EQ] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2040), + [anon_sym_null] = ACTIONS(2038), + [anon_sym_macro] = ACTIONS(2038), + [anon_sym_abstract] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_public] = ACTIONS(2038), + [anon_sym_private] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_inline] = ACTIONS(2038), + [anon_sym_overload] = ACTIONS(2038), + [anon_sym_override] = ACTIONS(2038), + [anon_sym_final] = ACTIONS(2038), + [anon_sym_class] = ACTIONS(2038), + [anon_sym_interface] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2038), + [anon_sym_function] = ACTIONS(2038), + [anon_sym_var] = ACTIONS(2038), + [aux_sym_integer_token1] = ACTIONS(2038), + [aux_sym_integer_token2] = ACTIONS(2040), + [aux_sym_float_token1] = ACTIONS(2038), + [aux_sym_float_token2] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2038), + [anon_sym_false] = ACTIONS(2038), + [aux_sym_string_token1] = ACTIONS(2040), + [aux_sym_string_token3] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2040), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [394] = { + [sym_identifier] = ACTIONS(2042), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_package] = ACTIONS(2042), + [anon_sym_import] = ACTIONS(2042), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_using] = ACTIONS(2042), + [anon_sym_throw] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2042), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_cast] = ACTIONS(2042), + [anon_sym_DOLLARtype] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_untyped] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_this] = ACTIONS(2042), + [anon_sym_AT] = ACTIONS(2042), + [anon_sym_AT_COLON] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_catch] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_new] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2044), + [anon_sym_PERCENT] = ACTIONS(2044), + [anon_sym_SLASH] = ACTIONS(2042), + [anon_sym_PLUS] = ACTIONS(2042), + [anon_sym_LT_LT] = ACTIONS(2044), + [anon_sym_GT_GT] = ACTIONS(2042), + [anon_sym_GT_GT_GT] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_PIPE] = ACTIONS(2042), + [anon_sym_CARET] = ACTIONS(2044), + [anon_sym_AMP_AMP] = ACTIONS(2044), + [anon_sym_PIPE_PIPE] = ACTIONS(2044), + [anon_sym_EQ_EQ] = ACTIONS(2044), + [anon_sym_BANG_EQ] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2042), + [anon_sym_LT_EQ] = ACTIONS(2044), + [anon_sym_GT] = ACTIONS(2042), + [anon_sym_GT_EQ] = ACTIONS(2044), + [anon_sym_EQ_GT] = ACTIONS(2044), + [anon_sym_QMARK_QMARK] = ACTIONS(2044), + [anon_sym_EQ] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2042), + [anon_sym_macro] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_overload] = ACTIONS(2042), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_typedef] = ACTIONS(2042), + [anon_sym_function] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [aux_sym_integer_token1] = ACTIONS(2042), + [aux_sym_integer_token2] = ACTIONS(2044), + [aux_sym_float_token1] = ACTIONS(2042), + [aux_sym_float_token2] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2042), + [anon_sym_false] = ACTIONS(2042), + [aux_sym_string_token1] = ACTIONS(2044), + [aux_sym_string_token3] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2044), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [395] = { + [sym_identifier] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_package] = ACTIONS(2046), + [anon_sym_import] = ACTIONS(2046), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_using] = ACTIONS(2046), + [anon_sym_throw] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_cast] = ACTIONS(2046), + [anon_sym_DOLLARtype] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_untyped] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_this] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2046), + [anon_sym_AT_COLON] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2046), + [anon_sym_catch] = ACTIONS(2046), + [anon_sym_else] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_do] = ACTIONS(2046), + [anon_sym_new] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2048), + [anon_sym_PERCENT] = ACTIONS(2048), + [anon_sym_SLASH] = ACTIONS(2046), + [anon_sym_PLUS] = ACTIONS(2046), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_GT_GT] = ACTIONS(2046), + [anon_sym_GT_GT_GT] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2048), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE_PIPE] = ACTIONS(2048), + [anon_sym_EQ_EQ] = ACTIONS(2048), + [anon_sym_BANG_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_LT_EQ] = ACTIONS(2048), + [anon_sym_GT] = ACTIONS(2046), + [anon_sym_GT_EQ] = ACTIONS(2048), + [anon_sym_EQ_GT] = ACTIONS(2048), + [anon_sym_QMARK_QMARK] = ACTIONS(2048), + [anon_sym_EQ] = ACTIONS(2046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), + [anon_sym_null] = ACTIONS(2046), + [anon_sym_macro] = ACTIONS(2046), + [anon_sym_abstract] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_public] = ACTIONS(2046), + [anon_sym_private] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_inline] = ACTIONS(2046), + [anon_sym_overload] = ACTIONS(2046), + [anon_sym_override] = ACTIONS(2046), + [anon_sym_final] = ACTIONS(2046), + [anon_sym_class] = ACTIONS(2046), + [anon_sym_interface] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2046), + [anon_sym_function] = ACTIONS(2046), + [anon_sym_var] = ACTIONS(2046), + [aux_sym_integer_token1] = ACTIONS(2046), + [aux_sym_integer_token2] = ACTIONS(2048), + [aux_sym_float_token1] = ACTIONS(2046), + [aux_sym_float_token2] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2046), + [anon_sym_false] = ACTIONS(2046), + [aux_sym_string_token1] = ACTIONS(2048), + [aux_sym_string_token3] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2048), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [396] = { + [sym_identifier] = ACTIONS(2050), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_package] = ACTIONS(2050), + [anon_sym_import] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(2050), + [anon_sym_throw] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2050), + [anon_sym_default] = ACTIONS(2050), + [anon_sym_cast] = ACTIONS(2050), + [anon_sym_DOLLARtype] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_untyped] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_AT] = ACTIONS(2050), + [anon_sym_AT_COLON] = ACTIONS(2052), + [anon_sym_try] = ACTIONS(2050), + [anon_sym_catch] = ACTIONS(2050), + [anon_sym_else] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_do] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2052), + [anon_sym_PERCENT] = ACTIONS(2052), + [anon_sym_SLASH] = ACTIONS(2050), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2050), + [anon_sym_GT_GT_GT] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_BANG_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2050), + [anon_sym_LT_EQ] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2050), + [anon_sym_GT_EQ] = ACTIONS(2052), + [anon_sym_EQ_GT] = ACTIONS(2052), + [anon_sym_QMARK_QMARK] = ACTIONS(2052), + [anon_sym_EQ] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2052), + [anon_sym_null] = ACTIONS(2050), + [anon_sym_macro] = ACTIONS(2050), + [anon_sym_abstract] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_public] = ACTIONS(2050), + [anon_sym_private] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_inline] = ACTIONS(2050), + [anon_sym_overload] = ACTIONS(2050), + [anon_sym_override] = ACTIONS(2050), + [anon_sym_final] = ACTIONS(2050), + [anon_sym_class] = ACTIONS(2050), + [anon_sym_interface] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_typedef] = ACTIONS(2050), + [anon_sym_function] = ACTIONS(2050), + [anon_sym_var] = ACTIONS(2050), + [aux_sym_integer_token1] = ACTIONS(2050), + [aux_sym_integer_token2] = ACTIONS(2052), + [aux_sym_float_token1] = ACTIONS(2050), + [aux_sym_float_token2] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [aux_sym_string_token1] = ACTIONS(2052), + [aux_sym_string_token3] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2052), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [397] = { + [sym_identifier] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_package] = ACTIONS(2054), + [anon_sym_import] = ACTIONS(2054), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_using] = ACTIONS(2054), + [anon_sym_throw] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_switch] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_case] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_cast] = ACTIONS(2054), + [anon_sym_DOLLARtype] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_untyped] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_this] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2054), + [anon_sym_AT_COLON] = ACTIONS(2056), + [anon_sym_try] = ACTIONS(2054), + [anon_sym_catch] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_do] = ACTIONS(2054), + [anon_sym_new] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2056), + [anon_sym_DASH_DASH] = ACTIONS(2056), + [anon_sym_PERCENT] = ACTIONS(2056), + [anon_sym_SLASH] = ACTIONS(2054), + [anon_sym_PLUS] = ACTIONS(2054), + [anon_sym_LT_LT] = ACTIONS(2056), + [anon_sym_GT_GT] = ACTIONS(2054), + [anon_sym_GT_GT_GT] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_EQ_EQ] = ACTIONS(2056), + [anon_sym_BANG_EQ] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2054), + [anon_sym_LT_EQ] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2054), + [anon_sym_GT_EQ] = ACTIONS(2056), + [anon_sym_EQ_GT] = ACTIONS(2056), + [anon_sym_QMARK_QMARK] = ACTIONS(2056), + [anon_sym_EQ] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2054), + [anon_sym_macro] = ACTIONS(2054), + [anon_sym_abstract] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_public] = ACTIONS(2054), + [anon_sym_private] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_inline] = ACTIONS(2054), + [anon_sym_overload] = ACTIONS(2054), + [anon_sym_override] = ACTIONS(2054), + [anon_sym_final] = ACTIONS(2054), + [anon_sym_class] = ACTIONS(2054), + [anon_sym_interface] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2054), + [anon_sym_function] = ACTIONS(2054), + [anon_sym_var] = ACTIONS(2054), + [aux_sym_integer_token1] = ACTIONS(2054), + [aux_sym_integer_token2] = ACTIONS(2056), + [aux_sym_float_token1] = ACTIONS(2054), + [aux_sym_float_token2] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [aux_sym_string_token1] = ACTIONS(2056), + [aux_sym_string_token3] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2056), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [398] = { + [sym_identifier] = ACTIONS(2058), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_package] = ACTIONS(2058), + [anon_sym_import] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_using] = ACTIONS(2058), + [anon_sym_throw] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_cast] = ACTIONS(2058), + [anon_sym_DOLLARtype] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_untyped] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_this] = ACTIONS(2058), + [anon_sym_AT] = ACTIONS(2058), + [anon_sym_AT_COLON] = ACTIONS(2060), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_catch] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_new] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym_PERCENT] = ACTIONS(2060), + [anon_sym_SLASH] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_GT_GT_GT] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_CARET] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_EQ_EQ] = ACTIONS(2060), + [anon_sym_BANG_EQ] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2058), + [anon_sym_LT_EQ] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2060), + [anon_sym_EQ_GT] = ACTIONS(2060), + [anon_sym_QMARK_QMARK] = ACTIONS(2060), + [anon_sym_EQ] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2060), + [anon_sym_null] = ACTIONS(2058), + [anon_sym_macro] = ACTIONS(2058), + [anon_sym_abstract] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_public] = ACTIONS(2058), + [anon_sym_private] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_inline] = ACTIONS(2058), + [anon_sym_overload] = ACTIONS(2058), + [anon_sym_override] = ACTIONS(2058), + [anon_sym_final] = ACTIONS(2058), + [anon_sym_class] = ACTIONS(2058), + [anon_sym_interface] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2058), + [anon_sym_function] = ACTIONS(2058), + [anon_sym_var] = ACTIONS(2058), + [aux_sym_integer_token1] = ACTIONS(2058), + [aux_sym_integer_token2] = ACTIONS(2060), + [aux_sym_float_token1] = ACTIONS(2058), + [aux_sym_float_token2] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [aux_sym_string_token1] = ACTIONS(2060), + [aux_sym_string_token3] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2060), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [399] = { + [sym_identifier] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_package] = ACTIONS(2062), + [anon_sym_import] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_using] = ACTIONS(2062), + [anon_sym_throw] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_switch] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_case] = ACTIONS(2062), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_cast] = ACTIONS(2062), + [anon_sym_DOLLARtype] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_untyped] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2062), + [anon_sym_AT_COLON] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2062), + [anon_sym_catch] = ACTIONS(2062), + [anon_sym_else] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_new] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PERCENT] = ACTIONS(2064), + [anon_sym_SLASH] = ACTIONS(2062), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2062), + [anon_sym_GT_GT_GT] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_EQ_EQ] = ACTIONS(2064), + [anon_sym_BANG_EQ] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2062), + [anon_sym_LT_EQ] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2062), + [anon_sym_GT_EQ] = ACTIONS(2064), + [anon_sym_EQ_GT] = ACTIONS(2064), + [anon_sym_QMARK_QMARK] = ACTIONS(2064), + [anon_sym_EQ] = ACTIONS(2062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2064), + [anon_sym_null] = ACTIONS(2062), + [anon_sym_macro] = ACTIONS(2062), + [anon_sym_abstract] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_public] = ACTIONS(2062), + [anon_sym_private] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_inline] = ACTIONS(2062), + [anon_sym_overload] = ACTIONS(2062), + [anon_sym_override] = ACTIONS(2062), + [anon_sym_final] = ACTIONS(2062), + [anon_sym_class] = ACTIONS(2062), + [anon_sym_interface] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2062), + [anon_sym_function] = ACTIONS(2062), + [anon_sym_var] = ACTIONS(2062), + [aux_sym_integer_token1] = ACTIONS(2062), + [aux_sym_integer_token2] = ACTIONS(2064), + [aux_sym_float_token1] = ACTIONS(2062), + [aux_sym_float_token2] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2062), + [anon_sym_false] = ACTIONS(2062), + [aux_sym_string_token1] = ACTIONS(2064), + [aux_sym_string_token3] = ACTIONS(2064), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2064), + [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), + [sym_identifier] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_package] = ACTIONS(2066), + [anon_sym_import] = ACTIONS(2066), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2066), + [anon_sym_throw] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_cast] = ACTIONS(2066), + [anon_sym_DOLLARtype] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_untyped] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_this] = ACTIONS(2066), + [anon_sym_AT] = ACTIONS(2066), + [anon_sym_AT_COLON] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_new] = ACTIONS(2066), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2066), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_EQ_GT] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_EQ] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2068), + [anon_sym_null] = ACTIONS(2066), + [anon_sym_macro] = ACTIONS(2066), + [anon_sym_abstract] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_public] = ACTIONS(2066), + [anon_sym_private] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_inline] = ACTIONS(2066), + [anon_sym_overload] = ACTIONS(2066), + [anon_sym_override] = ACTIONS(2066), + [anon_sym_final] = ACTIONS(2066), + [anon_sym_class] = ACTIONS(2066), + [anon_sym_interface] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_typedef] = ACTIONS(2066), + [anon_sym_function] = ACTIONS(2066), + [anon_sym_var] = ACTIONS(2066), + [aux_sym_integer_token1] = ACTIONS(2066), + [aux_sym_integer_token2] = ACTIONS(2068), + [aux_sym_float_token1] = ACTIONS(2066), + [aux_sym_float_token2] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [aux_sym_string_token1] = ACTIONS(2068), + [aux_sym_string_token3] = ACTIONS(2068), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2068), [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(2070), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_package] = ACTIONS(2070), + [anon_sym_import] = ACTIONS(2070), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_using] = ACTIONS(2070), + [anon_sym_throw] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2070), + [anon_sym_default] = ACTIONS(2070), + [anon_sym_cast] = ACTIONS(2070), + [anon_sym_DOLLARtype] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_untyped] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_this] = ACTIONS(2070), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_AT_COLON] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2070), + [anon_sym_catch] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2070), + [anon_sym_TILDE] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PERCENT] = ACTIONS(2072), + [anon_sym_SLASH] = ACTIONS(2070), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_LT_LT] = ACTIONS(2072), + [anon_sym_GT_GT] = ACTIONS(2070), + [anon_sym_GT_GT_GT] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_CARET] = ACTIONS(2072), + [anon_sym_AMP_AMP] = ACTIONS(2072), + [anon_sym_PIPE_PIPE] = ACTIONS(2072), + [anon_sym_EQ_EQ] = ACTIONS(2072), + [anon_sym_BANG_EQ] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_LT_EQ] = ACTIONS(2072), + [anon_sym_GT] = ACTIONS(2070), + [anon_sym_GT_EQ] = ACTIONS(2072), + [anon_sym_EQ_GT] = ACTIONS(2072), + [anon_sym_QMARK_QMARK] = ACTIONS(2072), + [anon_sym_EQ] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2072), + [anon_sym_null] = ACTIONS(2070), + [anon_sym_macro] = ACTIONS(2070), + [anon_sym_abstract] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_inline] = ACTIONS(2070), + [anon_sym_overload] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_final] = ACTIONS(2070), + [anon_sym_class] = ACTIONS(2070), + [anon_sym_interface] = ACTIONS(2070), + [anon_sym_enum] = ACTIONS(2070), + [anon_sym_typedef] = ACTIONS(2070), + [anon_sym_function] = ACTIONS(2070), + [anon_sym_var] = ACTIONS(2070), + [aux_sym_integer_token1] = ACTIONS(2070), + [aux_sym_integer_token2] = ACTIONS(2072), + [aux_sym_float_token1] = ACTIONS(2070), + [aux_sym_float_token2] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [aux_sym_string_token1] = ACTIONS(2072), + [aux_sym_string_token3] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2072), [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_identifier] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_package] = ACTIONS(2074), + [anon_sym_import] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_using] = ACTIONS(2074), + [anon_sym_throw] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_switch] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_case] = ACTIONS(2074), + [anon_sym_default] = ACTIONS(2074), + [anon_sym_cast] = ACTIONS(2074), + [anon_sym_DOLLARtype] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_untyped] = ACTIONS(2074), + [anon_sym_break] = ACTIONS(2074), + [anon_sym_continue] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_this] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2074), + [anon_sym_AT_COLON] = ACTIONS(2076), + [anon_sym_try] = ACTIONS(2074), + [anon_sym_catch] = ACTIONS(2074), + [anon_sym_else] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_new] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2076), + [anon_sym_PERCENT] = ACTIONS(2076), + [anon_sym_SLASH] = ACTIONS(2074), + [anon_sym_PLUS] = ACTIONS(2074), + [anon_sym_LT_LT] = ACTIONS(2076), + [anon_sym_GT_GT] = ACTIONS(2074), + [anon_sym_GT_GT_GT] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2076), + [anon_sym_PIPE_PIPE] = ACTIONS(2076), + [anon_sym_EQ_EQ] = ACTIONS(2076), + [anon_sym_BANG_EQ] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2074), + [anon_sym_LT_EQ] = ACTIONS(2076), + [anon_sym_GT] = ACTIONS(2074), + [anon_sym_GT_EQ] = ACTIONS(2076), + [anon_sym_EQ_GT] = ACTIONS(2076), + [anon_sym_QMARK_QMARK] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(2074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2074), + [anon_sym_macro] = ACTIONS(2074), + [anon_sym_abstract] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_public] = ACTIONS(2074), + [anon_sym_private] = ACTIONS(2074), + [anon_sym_extern] = ACTIONS(2074), + [anon_sym_inline] = ACTIONS(2074), + [anon_sym_overload] = ACTIONS(2074), + [anon_sym_override] = ACTIONS(2074), + [anon_sym_final] = ACTIONS(2074), + [anon_sym_class] = ACTIONS(2074), + [anon_sym_interface] = ACTIONS(2074), + [anon_sym_enum] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2074), + [anon_sym_function] = ACTIONS(2074), + [anon_sym_var] = ACTIONS(2074), + [aux_sym_integer_token1] = ACTIONS(2074), + [aux_sym_integer_token2] = ACTIONS(2076), + [aux_sym_float_token1] = ACTIONS(2074), + [aux_sym_float_token2] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [aux_sym_string_token1] = ACTIONS(2076), + [aux_sym_string_token3] = ACTIONS(2076), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2076), [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), + [sym_identifier] = ACTIONS(2078), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_package] = ACTIONS(2078), + [anon_sym_import] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_using] = ACTIONS(2078), + [anon_sym_throw] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_case] = ACTIONS(2078), + [anon_sym_default] = ACTIONS(2078), + [anon_sym_cast] = ACTIONS(2078), + [anon_sym_DOLLARtype] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_untyped] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_this] = ACTIONS(2078), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_AT_COLON] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2078), + [anon_sym_catch] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_do] = ACTIONS(2078), + [anon_sym_new] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_PLUS_PLUS] = ACTIONS(2080), + [anon_sym_DASH_DASH] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(2080), + [anon_sym_SLASH] = ACTIONS(2078), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_LT_LT] = ACTIONS(2080), + [anon_sym_GT_GT] = ACTIONS(2078), + [anon_sym_GT_GT_GT] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_AMP_AMP] = ACTIONS(2080), + [anon_sym_PIPE_PIPE] = ACTIONS(2080), + [anon_sym_EQ_EQ] = ACTIONS(2080), + [anon_sym_BANG_EQ] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_LT_EQ] = ACTIONS(2080), + [anon_sym_GT] = ACTIONS(2078), + [anon_sym_GT_EQ] = ACTIONS(2080), + [anon_sym_EQ_GT] = ACTIONS(2080), + [anon_sym_QMARK_QMARK] = ACTIONS(2080), + [anon_sym_EQ] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2080), + [anon_sym_null] = ACTIONS(2078), + [anon_sym_macro] = ACTIONS(2078), + [anon_sym_abstract] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2078), + [anon_sym_public] = ACTIONS(2078), + [anon_sym_private] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_inline] = ACTIONS(2078), + [anon_sym_overload] = ACTIONS(2078), + [anon_sym_override] = ACTIONS(2078), + [anon_sym_final] = ACTIONS(2078), + [anon_sym_class] = ACTIONS(2078), + [anon_sym_interface] = ACTIONS(2078), + [anon_sym_enum] = ACTIONS(2078), + [anon_sym_typedef] = ACTIONS(2078), + [anon_sym_function] = ACTIONS(2078), + [anon_sym_var] = ACTIONS(2078), + [aux_sym_integer_token1] = ACTIONS(2078), + [aux_sym_integer_token2] = ACTIONS(2080), + [aux_sym_float_token1] = ACTIONS(2078), + [aux_sym_float_token2] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [aux_sym_string_token1] = ACTIONS(2080), + [aux_sym_string_token3] = ACTIONS(2080), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2080), [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_identifier] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_package] = ACTIONS(2082), + [anon_sym_import] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_using] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2082), + [anon_sym_default] = ACTIONS(2082), + [anon_sym_cast] = ACTIONS(2082), + [anon_sym_DOLLARtype] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_untyped] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_this] = ACTIONS(2082), + [anon_sym_AT] = ACTIONS(2082), + [anon_sym_AT_COLON] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_catch] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_do] = ACTIONS(2082), + [anon_sym_new] = ACTIONS(2082), + [anon_sym_TILDE] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2082), + [anon_sym_PLUS_PLUS] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2084), + [anon_sym_PERCENT] = ACTIONS(2084), + [anon_sym_SLASH] = ACTIONS(2082), + [anon_sym_PLUS] = ACTIONS(2082), + [anon_sym_LT_LT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(2082), + [anon_sym_GT_GT_GT] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_CARET] = ACTIONS(2084), + [anon_sym_AMP_AMP] = ACTIONS(2084), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_EQ_EQ] = ACTIONS(2084), + [anon_sym_BANG_EQ] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2082), + [anon_sym_LT_EQ] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2082), + [anon_sym_GT_EQ] = ACTIONS(2084), + [anon_sym_EQ_GT] = ACTIONS(2084), + [anon_sym_QMARK_QMARK] = ACTIONS(2084), + [anon_sym_EQ] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2084), + [anon_sym_null] = ACTIONS(2082), + [anon_sym_macro] = ACTIONS(2082), + [anon_sym_abstract] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_inline] = ACTIONS(2082), + [anon_sym_overload] = ACTIONS(2082), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_final] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_typedef] = ACTIONS(2082), + [anon_sym_function] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [aux_sym_integer_token1] = ACTIONS(2082), + [aux_sym_integer_token2] = ACTIONS(2084), + [aux_sym_float_token1] = ACTIONS(2082), + [aux_sym_float_token2] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2082), + [anon_sym_false] = ACTIONS(2082), + [aux_sym_string_token1] = ACTIONS(2084), + [aux_sym_string_token3] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2084), [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(2086), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_package] = ACTIONS(2086), + [anon_sym_import] = ACTIONS(2086), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_using] = ACTIONS(2086), + [anon_sym_throw] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2086), + [anon_sym_default] = ACTIONS(2086), + [anon_sym_cast] = ACTIONS(2086), + [anon_sym_DOLLARtype] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_untyped] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_this] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2086), + [anon_sym_AT_COLON] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2086), + [anon_sym_catch] = ACTIONS(2086), + [anon_sym_else] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_do] = ACTIONS(2086), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2088), + [anon_sym_PERCENT] = ACTIONS(2088), + [anon_sym_SLASH] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2086), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(2086), + [anon_sym_GT_GT_GT] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2088), + [anon_sym_AMP_AMP] = ACTIONS(2088), + [anon_sym_PIPE_PIPE] = ACTIONS(2088), + [anon_sym_EQ_EQ] = ACTIONS(2088), + [anon_sym_BANG_EQ] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_LT_EQ] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2086), + [anon_sym_GT_EQ] = ACTIONS(2088), + [anon_sym_EQ_GT] = ACTIONS(2088), + [anon_sym_QMARK_QMARK] = ACTIONS(2088), + [anon_sym_EQ] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2088), + [anon_sym_null] = ACTIONS(2086), + [anon_sym_macro] = ACTIONS(2086), + [anon_sym_abstract] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2086), + [anon_sym_public] = ACTIONS(2086), + [anon_sym_private] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_inline] = ACTIONS(2086), + [anon_sym_overload] = ACTIONS(2086), + [anon_sym_override] = ACTIONS(2086), + [anon_sym_final] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2086), + [anon_sym_interface] = ACTIONS(2086), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2086), + [anon_sym_function] = ACTIONS(2086), + [anon_sym_var] = ACTIONS(2086), + [aux_sym_integer_token1] = ACTIONS(2086), + [aux_sym_integer_token2] = ACTIONS(2088), + [aux_sym_float_token1] = ACTIONS(2086), + [aux_sym_float_token2] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [aux_sym_string_token1] = ACTIONS(2088), + [aux_sym_string_token3] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2088), [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), + [sym_identifier] = ACTIONS(2090), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_package] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_case] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_cast] = ACTIONS(2090), + [anon_sym_DOLLARtype] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_untyped] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_this] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_AT_COLON] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2092), + [anon_sym_DASH_DASH] = ACTIONS(2092), + [anon_sym_PERCENT] = ACTIONS(2092), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_GT_GT_GT] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2090), + [anon_sym_GT_EQ] = ACTIONS(2092), + [anon_sym_EQ_GT] = ACTIONS(2092), + [anon_sym_QMARK_QMARK] = ACTIONS(2092), + [anon_sym_EQ] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2092), + [anon_sym_null] = ACTIONS(2090), + [anon_sym_macro] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_inline] = ACTIONS(2090), + [anon_sym_overload] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_final] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [aux_sym_integer_token1] = ACTIONS(2090), + [aux_sym_integer_token2] = ACTIONS(2092), + [aux_sym_float_token1] = ACTIONS(2090), + [aux_sym_float_token2] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2090), + [anon_sym_false] = ACTIONS(2090), + [aux_sym_string_token1] = ACTIONS(2092), + [aux_sym_string_token3] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2092), [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_identifier] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(2096), + [anon_sym_package] = ACTIONS(2094), + [anon_sym_import] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_using] = ACTIONS(2094), + [anon_sym_throw] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_cast] = ACTIONS(2094), + [anon_sym_DOLLARtype] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_untyped] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_this] = ACTIONS(2094), + [anon_sym_AT] = ACTIONS(2094), + [anon_sym_AT_COLON] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2094), + [anon_sym_catch] = ACTIONS(2094), + [anon_sym_else] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_new] = ACTIONS(2094), + [anon_sym_TILDE] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_PERCENT] = ACTIONS(2096), + [anon_sym_SLASH] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2094), + [anon_sym_LT_LT] = ACTIONS(2096), + [anon_sym_GT_GT] = ACTIONS(2094), + [anon_sym_GT_GT_GT] = ACTIONS(2096), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_CARET] = ACTIONS(2096), + [anon_sym_AMP_AMP] = ACTIONS(2096), + [anon_sym_PIPE_PIPE] = ACTIONS(2096), + [anon_sym_EQ_EQ] = ACTIONS(2096), + [anon_sym_BANG_EQ] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_LT_EQ] = ACTIONS(2096), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_EQ] = ACTIONS(2096), + [anon_sym_EQ_GT] = ACTIONS(2096), + [anon_sym_QMARK_QMARK] = ACTIONS(2096), + [anon_sym_EQ] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2096), + [anon_sym_null] = ACTIONS(2094), + [anon_sym_macro] = ACTIONS(2094), + [anon_sym_abstract] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_public] = ACTIONS(2094), + [anon_sym_private] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_inline] = ACTIONS(2094), + [anon_sym_overload] = ACTIONS(2094), + [anon_sym_override] = ACTIONS(2094), + [anon_sym_final] = ACTIONS(2094), + [anon_sym_class] = ACTIONS(2094), + [anon_sym_interface] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + [anon_sym_typedef] = ACTIONS(2094), + [anon_sym_function] = ACTIONS(2094), + [anon_sym_var] = ACTIONS(2094), + [aux_sym_integer_token1] = ACTIONS(2094), + [aux_sym_integer_token2] = ACTIONS(2096), + [aux_sym_float_token1] = ACTIONS(2094), + [aux_sym_float_token2] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2094), + [anon_sym_false] = ACTIONS(2094), + [aux_sym_string_token1] = ACTIONS(2096), + [aux_sym_string_token3] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2096), [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(2098), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_package] = ACTIONS(2098), + [anon_sym_import] = ACTIONS(2098), + [anon_sym_STAR] = ACTIONS(2100), + [anon_sym_using] = ACTIONS(2098), + [anon_sym_throw] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_cast] = ACTIONS(2098), + [anon_sym_DOLLARtype] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_untyped] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_this] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2098), + [anon_sym_AT_COLON] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2098), + [anon_sym_catch] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2100), + [anon_sym_PERCENT] = ACTIONS(2100), + [anon_sym_SLASH] = ACTIONS(2098), + [anon_sym_PLUS] = ACTIONS(2098), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2098), + [anon_sym_GT_GT_GT] = ACTIONS(2100), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_EQ_EQ] = ACTIONS(2100), + [anon_sym_BANG_EQ] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2098), + [anon_sym_LT_EQ] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2098), + [anon_sym_GT_EQ] = ACTIONS(2100), + [anon_sym_EQ_GT] = ACTIONS(2100), + [anon_sym_QMARK_QMARK] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(2098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2100), + [anon_sym_null] = ACTIONS(2098), + [anon_sym_macro] = ACTIONS(2098), + [anon_sym_abstract] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_public] = ACTIONS(2098), + [anon_sym_private] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_inline] = ACTIONS(2098), + [anon_sym_overload] = ACTIONS(2098), + [anon_sym_override] = ACTIONS(2098), + [anon_sym_final] = ACTIONS(2098), + [anon_sym_class] = ACTIONS(2098), + [anon_sym_interface] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2098), + [anon_sym_function] = ACTIONS(2098), + [anon_sym_var] = ACTIONS(2098), + [aux_sym_integer_token1] = ACTIONS(2098), + [aux_sym_integer_token2] = ACTIONS(2100), + [aux_sym_float_token1] = ACTIONS(2098), + [aux_sym_float_token2] = ACTIONS(2100), + [anon_sym_true] = ACTIONS(2098), + [anon_sym_false] = ACTIONS(2098), + [aux_sym_string_token1] = ACTIONS(2100), + [aux_sym_string_token3] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2100), [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), + [sym_identifier] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_package] = ACTIONS(2102), + [anon_sym_import] = ACTIONS(2102), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_using] = ACTIONS(2102), + [anon_sym_throw] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_cast] = ACTIONS(2102), + [anon_sym_DOLLARtype] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_untyped] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_AT_COLON] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2102), + [anon_sym_catch] = ACTIONS(2102), + [anon_sym_else] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2102), + [anon_sym_new] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(2104), + [anon_sym_SLASH] = ACTIONS(2102), + [anon_sym_PLUS] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_GT_GT_GT] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_EQ_EQ] = ACTIONS(2104), + [anon_sym_BANG_EQ] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_LT_EQ] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2102), + [anon_sym_GT_EQ] = ACTIONS(2104), + [anon_sym_EQ_GT] = ACTIONS(2104), + [anon_sym_QMARK_QMARK] = ACTIONS(2104), + [anon_sym_EQ] = ACTIONS(2102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2102), + [anon_sym_macro] = ACTIONS(2102), + [anon_sym_abstract] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_public] = ACTIONS(2102), + [anon_sym_private] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_inline] = ACTIONS(2102), + [anon_sym_overload] = ACTIONS(2102), + [anon_sym_override] = ACTIONS(2102), + [anon_sym_final] = ACTIONS(2102), + [anon_sym_class] = ACTIONS(2102), + [anon_sym_interface] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_typedef] = ACTIONS(2102), + [anon_sym_function] = ACTIONS(2102), + [anon_sym_var] = ACTIONS(2102), + [aux_sym_integer_token1] = ACTIONS(2102), + [aux_sym_integer_token2] = ACTIONS(2104), + [aux_sym_float_token1] = ACTIONS(2102), + [aux_sym_float_token2] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2102), + [anon_sym_false] = ACTIONS(2102), + [aux_sym_string_token1] = ACTIONS(2104), + [aux_sym_string_token3] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2104), [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), + [sym_identifier] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_package] = ACTIONS(2106), + [anon_sym_import] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2106), + [anon_sym_throw] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2106), + [anon_sym_cast] = ACTIONS(2106), + [anon_sym_DOLLARtype] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_untyped] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_this] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2106), + [anon_sym_AT_COLON] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2106), + [anon_sym_catch] = ACTIONS(2106), + [anon_sym_else] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_do] = ACTIONS(2106), + [anon_sym_new] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2108), + [anon_sym_PERCENT] = ACTIONS(2108), + [anon_sym_SLASH] = ACTIONS(2106), + [anon_sym_PLUS] = ACTIONS(2106), + [anon_sym_LT_LT] = ACTIONS(2108), + [anon_sym_GT_GT] = ACTIONS(2106), + [anon_sym_GT_GT_GT] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2108), + [anon_sym_AMP_AMP] = ACTIONS(2108), + [anon_sym_PIPE_PIPE] = ACTIONS(2108), + [anon_sym_EQ_EQ] = ACTIONS(2108), + [anon_sym_BANG_EQ] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_LT_EQ] = ACTIONS(2108), + [anon_sym_GT] = ACTIONS(2106), + [anon_sym_GT_EQ] = ACTIONS(2108), + [anon_sym_EQ_GT] = ACTIONS(2108), + [anon_sym_QMARK_QMARK] = ACTIONS(2108), + [anon_sym_EQ] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2108), + [anon_sym_null] = ACTIONS(2106), + [anon_sym_macro] = ACTIONS(2106), + [anon_sym_abstract] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_public] = ACTIONS(2106), + [anon_sym_private] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_inline] = ACTIONS(2106), + [anon_sym_overload] = ACTIONS(2106), + [anon_sym_override] = ACTIONS(2106), + [anon_sym_final] = ACTIONS(2106), + [anon_sym_class] = ACTIONS(2106), + [anon_sym_interface] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2106), + [anon_sym_function] = ACTIONS(2106), + [anon_sym_var] = ACTIONS(2106), + [aux_sym_integer_token1] = ACTIONS(2106), + [aux_sym_integer_token2] = ACTIONS(2108), + [aux_sym_float_token1] = ACTIONS(2106), + [aux_sym_float_token2] = ACTIONS(2108), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [aux_sym_string_token1] = ACTIONS(2108), + [aux_sym_string_token3] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2108), [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(2110), + [anon_sym_POUND] = ACTIONS(2112), + [anon_sym_package] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_case] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_cast] = ACTIONS(2110), + [anon_sym_DOLLARtype] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_untyped] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_this] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_AT_COLON] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_catch] = ACTIONS(2110), + [anon_sym_else] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2112), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2112), + [anon_sym_PERCENT] = ACTIONS(2112), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_LT_LT] = ACTIONS(2112), + [anon_sym_GT_GT] = ACTIONS(2110), + [anon_sym_GT_GT_GT] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2112), + [anon_sym_AMP_AMP] = ACTIONS(2112), + [anon_sym_PIPE_PIPE] = ACTIONS(2112), + [anon_sym_EQ_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_LT_EQ] = ACTIONS(2112), + [anon_sym_GT] = ACTIONS(2110), + [anon_sym_GT_EQ] = ACTIONS(2112), + [anon_sym_EQ_GT] = ACTIONS(2112), + [anon_sym_QMARK_QMARK] = ACTIONS(2112), + [anon_sym_EQ] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2112), + [anon_sym_null] = ACTIONS(2110), + [anon_sym_macro] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_inline] = ACTIONS(2110), + [anon_sym_overload] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_final] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [aux_sym_integer_token1] = ACTIONS(2110), + [aux_sym_integer_token2] = ACTIONS(2112), + [aux_sym_float_token1] = ACTIONS(2110), + [aux_sym_float_token2] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [aux_sym_string_token1] = ACTIONS(2112), + [aux_sym_string_token3] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2112), [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(2114), + [anon_sym_POUND] = ACTIONS(2116), + [anon_sym_package] = ACTIONS(2114), + [anon_sym_import] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2116), + [anon_sym_using] = ACTIONS(2114), + [anon_sym_throw] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2114), + [anon_sym_default] = ACTIONS(2114), + [anon_sym_cast] = ACTIONS(2114), + [anon_sym_DOLLARtype] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_untyped] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_this] = ACTIONS(2114), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_AT_COLON] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2114), + [anon_sym_catch] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_new] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PERCENT] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2114), + [anon_sym_PLUS] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(2116), + [anon_sym_GT_GT] = ACTIONS(2114), + [anon_sym_GT_GT_GT] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2116), + [anon_sym_PIPE_PIPE] = ACTIONS(2116), + [anon_sym_EQ_EQ] = ACTIONS(2116), + [anon_sym_BANG_EQ] = ACTIONS(2116), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_LT_EQ] = ACTIONS(2116), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2116), + [anon_sym_EQ_GT] = ACTIONS(2116), + [anon_sym_QMARK_QMARK] = ACTIONS(2116), + [anon_sym_EQ] = ACTIONS(2114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2116), + [anon_sym_null] = ACTIONS(2114), + [anon_sym_macro] = ACTIONS(2114), + [anon_sym_abstract] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_public] = ACTIONS(2114), + [anon_sym_private] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_inline] = ACTIONS(2114), + [anon_sym_overload] = ACTIONS(2114), + [anon_sym_override] = ACTIONS(2114), + [anon_sym_final] = ACTIONS(2114), + [anon_sym_class] = ACTIONS(2114), + [anon_sym_interface] = ACTIONS(2114), + [anon_sym_enum] = ACTIONS(2114), + [anon_sym_typedef] = ACTIONS(2114), + [anon_sym_function] = ACTIONS(2114), + [anon_sym_var] = ACTIONS(2114), + [aux_sym_integer_token1] = ACTIONS(2114), + [aux_sym_integer_token2] = ACTIONS(2116), + [aux_sym_float_token1] = ACTIONS(2114), + [aux_sym_float_token2] = ACTIONS(2116), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [aux_sym_string_token1] = ACTIONS(2116), + [aux_sym_string_token3] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2116), [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_identifier] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(2120), + [anon_sym_package] = ACTIONS(2118), + [anon_sym_import] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2118), + [anon_sym_throw] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2118), + [anon_sym_default] = ACTIONS(2118), + [anon_sym_cast] = ACTIONS(2118), + [anon_sym_DOLLARtype] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_untyped] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_this] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2118), + [anon_sym_AT_COLON] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_catch] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_new] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [anon_sym_PERCENT] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_PLUS] = ACTIONS(2118), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2118), + [anon_sym_GT_GT_GT] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_EQ_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_LT_EQ] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2118), + [anon_sym_GT_EQ] = ACTIONS(2120), + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_QMARK_QMARK] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2120), + [anon_sym_null] = ACTIONS(2118), + [anon_sym_macro] = ACTIONS(2118), + [anon_sym_abstract] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_public] = ACTIONS(2118), + [anon_sym_private] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_inline] = ACTIONS(2118), + [anon_sym_overload] = ACTIONS(2118), + [anon_sym_override] = ACTIONS(2118), + [anon_sym_final] = ACTIONS(2118), + [anon_sym_class] = ACTIONS(2118), + [anon_sym_interface] = ACTIONS(2118), + [anon_sym_enum] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2118), + [anon_sym_function] = ACTIONS(2118), + [anon_sym_var] = ACTIONS(2118), + [aux_sym_integer_token1] = ACTIONS(2118), + [aux_sym_integer_token2] = ACTIONS(2120), + [aux_sym_float_token1] = ACTIONS(2118), + [aux_sym_float_token2] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2118), + [anon_sym_false] = ACTIONS(2118), + [aux_sym_string_token1] = ACTIONS(2120), + [aux_sym_string_token3] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2120), [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(2122), + [anon_sym_POUND] = ACTIONS(2124), + [anon_sym_package] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_cast] = ACTIONS(2122), + [anon_sym_DOLLARtype] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_untyped] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_this] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_AT_COLON] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_catch] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2124), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_AMP_AMP] = ACTIONS(2124), + [anon_sym_PIPE_PIPE] = ACTIONS(2124), + [anon_sym_EQ_EQ] = ACTIONS(2124), + [anon_sym_BANG_EQ] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2124), + [anon_sym_EQ_GT] = ACTIONS(2124), + [anon_sym_QMARK_QMARK] = ACTIONS(2124), + [anon_sym_EQ] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2124), + [anon_sym_null] = ACTIONS(2122), + [anon_sym_macro] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_inline] = ACTIONS(2122), + [anon_sym_overload] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_final] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_typedef] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [aux_sym_integer_token1] = ACTIONS(2122), + [aux_sym_integer_token2] = ACTIONS(2124), + [aux_sym_float_token1] = ACTIONS(2122), + [aux_sym_float_token2] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [aux_sym_string_token1] = ACTIONS(2124), + [aux_sym_string_token3] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2124), [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), + [sym_identifier] = ACTIONS(2126), + [anon_sym_POUND] = ACTIONS(2128), + [anon_sym_package] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2128), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_cast] = ACTIONS(2126), + [anon_sym_DOLLARtype] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_untyped] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_this] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_AT_COLON] = ACTIONS(2128), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_catch] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2128), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2128), + [anon_sym_PERCENT] = ACTIONS(2128), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2128), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2128), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2128), + [anon_sym_AMP_AMP] = ACTIONS(2128), + [anon_sym_PIPE_PIPE] = ACTIONS(2128), + [anon_sym_EQ_EQ] = ACTIONS(2128), + [anon_sym_BANG_EQ] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2128), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2128), + [anon_sym_EQ_GT] = ACTIONS(2128), + [anon_sym_QMARK_QMARK] = ACTIONS(2128), + [anon_sym_EQ] = ACTIONS(2126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2128), + [anon_sym_null] = ACTIONS(2126), + [anon_sym_macro] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_inline] = ACTIONS(2126), + [anon_sym_overload] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_final] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [anon_sym_typedef] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [aux_sym_integer_token1] = ACTIONS(2126), + [aux_sym_integer_token2] = ACTIONS(2128), + [aux_sym_float_token1] = ACTIONS(2126), + [aux_sym_float_token2] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [aux_sym_string_token1] = ACTIONS(2128), + [aux_sym_string_token3] = ACTIONS(2128), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2128), [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), + [sym_identifier] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2130), + [anon_sym_import] = ACTIONS(2130), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_using] = ACTIONS(2130), + [anon_sym_throw] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2130), + [anon_sym_default] = ACTIONS(2130), + [anon_sym_cast] = ACTIONS(2130), + [anon_sym_DOLLARtype] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_untyped] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_this] = ACTIONS(2130), + [anon_sym_AT] = ACTIONS(2130), + [anon_sym_AT_COLON] = ACTIONS(2132), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_catch] = ACTIONS(2130), + [anon_sym_else] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2130), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PERCENT] = ACTIONS(2132), + [anon_sym_SLASH] = ACTIONS(2130), + [anon_sym_PLUS] = ACTIONS(2130), + [anon_sym_LT_LT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(2130), + [anon_sym_GT_GT_GT] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_EQ_EQ] = ACTIONS(2132), + [anon_sym_BANG_EQ] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_LT_EQ] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_EQ] = ACTIONS(2132), + [anon_sym_EQ_GT] = ACTIONS(2132), + [anon_sym_QMARK_QMARK] = ACTIONS(2132), + [anon_sym_EQ] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2132), + [anon_sym_null] = ACTIONS(2130), + [anon_sym_macro] = ACTIONS(2130), + [anon_sym_abstract] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2130), + [anon_sym_public] = ACTIONS(2130), + [anon_sym_private] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_inline] = ACTIONS(2130), + [anon_sym_overload] = ACTIONS(2130), + [anon_sym_override] = ACTIONS(2130), + [anon_sym_final] = ACTIONS(2130), + [anon_sym_class] = ACTIONS(2130), + [anon_sym_interface] = ACTIONS(2130), + [anon_sym_enum] = ACTIONS(2130), + [anon_sym_typedef] = ACTIONS(2130), + [anon_sym_function] = ACTIONS(2130), + [anon_sym_var] = ACTIONS(2130), + [aux_sym_integer_token1] = ACTIONS(2130), + [aux_sym_integer_token2] = ACTIONS(2132), + [aux_sym_float_token1] = ACTIONS(2130), + [aux_sym_float_token2] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [aux_sym_string_token1] = ACTIONS(2132), + [aux_sym_string_token3] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2132), [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_identifier] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(2136), + [anon_sym_package] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_case] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_cast] = ACTIONS(2134), + [anon_sym_DOLLARtype] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_untyped] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_this] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_AT_COLON] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PERCENT] = ACTIONS(2136), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_LT_LT] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(2134), + [anon_sym_GT_GT_GT] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_EQ_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_LT_EQ] = ACTIONS(2136), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_EQ] = ACTIONS(2136), + [anon_sym_EQ_GT] = ACTIONS(2136), + [anon_sym_QMARK_QMARK] = ACTIONS(2136), + [anon_sym_EQ] = ACTIONS(2134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2134), + [anon_sym_macro] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym_overload] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_final] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [aux_sym_integer_token1] = ACTIONS(2134), + [aux_sym_integer_token2] = ACTIONS(2136), + [aux_sym_float_token1] = ACTIONS(2134), + [aux_sym_float_token2] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [aux_sym_string_token1] = ACTIONS(2136), + [aux_sym_string_token3] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2136), [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(2138), + [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_package] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_case] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_cast] = ACTIONS(2138), + [anon_sym_DOLLARtype] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_untyped] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_this] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [anon_sym_AT_COLON] = ACTIONS(2140), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_GT_GT_GT] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_EQ_GT] = ACTIONS(2140), + [anon_sym_QMARK_QMARK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_null] = ACTIONS(2138), + [anon_sym_macro] = ACTIONS(2138), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym_overload] = ACTIONS(2138), + [anon_sym_override] = ACTIONS(2138), + [anon_sym_final] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [aux_sym_integer_token1] = ACTIONS(2138), + [aux_sym_integer_token2] = ACTIONS(2140), + [aux_sym_float_token1] = ACTIONS(2138), + [aux_sym_float_token2] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [aux_sym_string_token1] = ACTIONS(2140), + [aux_sym_string_token3] = ACTIONS(2140), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2140), [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(2142), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_package] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_cast] = ACTIONS(2142), + [anon_sym_DOLLARtype] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_untyped] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_this] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_AT_COLON] = ACTIONS(2144), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2144), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_LT_LT] = ACTIONS(2144), + [anon_sym_GT_GT] = ACTIONS(2142), + [anon_sym_GT_GT_GT] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_CARET] = ACTIONS(2144), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2142), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_EQ_GT] = ACTIONS(2144), + [anon_sym_QMARK_QMARK] = ACTIONS(2144), + [anon_sym_EQ] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2144), + [anon_sym_null] = ACTIONS(2142), + [anon_sym_macro] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_inline] = ACTIONS(2142), + [anon_sym_overload] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_final] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [anon_sym_typedef] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [aux_sym_integer_token1] = ACTIONS(2142), + [aux_sym_integer_token2] = ACTIONS(2144), + [aux_sym_float_token1] = ACTIONS(2142), + [aux_sym_float_token2] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [aux_sym_string_token1] = ACTIONS(2144), + [aux_sym_string_token3] = ACTIONS(2144), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2144), [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(2146), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_package] = ACTIONS(2146), + [anon_sym_import] = ACTIONS(2146), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2146), + [anon_sym_throw] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_cast] = ACTIONS(2146), + [anon_sym_DOLLARtype] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_untyped] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_this] = ACTIONS(2146), + [anon_sym_AT] = ACTIONS(2146), + [anon_sym_AT_COLON] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_new] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PLUS] = ACTIONS(2146), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_GT_GT] = ACTIONS(2146), + [anon_sym_GT_GT_GT] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_CARET] = ACTIONS(2148), + [anon_sym_AMP_AMP] = ACTIONS(2148), + [anon_sym_PIPE_PIPE] = ACTIONS(2148), + [anon_sym_EQ_EQ] = ACTIONS(2148), + [anon_sym_BANG_EQ] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2146), + [anon_sym_LT_EQ] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2146), + [anon_sym_GT_EQ] = ACTIONS(2148), + [anon_sym_EQ_GT] = ACTIONS(2148), + [anon_sym_QMARK_QMARK] = ACTIONS(2148), + [anon_sym_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2148), + [anon_sym_null] = ACTIONS(2146), + [anon_sym_macro] = ACTIONS(2146), + [anon_sym_abstract] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_public] = ACTIONS(2146), + [anon_sym_private] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_inline] = ACTIONS(2146), + [anon_sym_overload] = ACTIONS(2146), + [anon_sym_override] = ACTIONS(2146), + [anon_sym_final] = ACTIONS(2146), + [anon_sym_class] = ACTIONS(2146), + [anon_sym_interface] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [anon_sym_typedef] = ACTIONS(2146), + [anon_sym_function] = ACTIONS(2146), + [anon_sym_var] = ACTIONS(2146), + [aux_sym_integer_token1] = ACTIONS(2146), + [aux_sym_integer_token2] = ACTIONS(2148), + [aux_sym_float_token1] = ACTIONS(2146), + [aux_sym_float_token2] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [aux_sym_string_token1] = ACTIONS(2148), + [aux_sym_string_token3] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2148), [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(2150), + [anon_sym_POUND] = ACTIONS(2152), + [anon_sym_package] = ACTIONS(2150), + [anon_sym_import] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2150), + [anon_sym_throw] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2150), + [anon_sym_default] = ACTIONS(2150), + [anon_sym_cast] = ACTIONS(2150), + [anon_sym_DOLLARtype] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_untyped] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_this] = ACTIONS(2150), + [anon_sym_AT] = ACTIONS(2150), + [anon_sym_AT_COLON] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2150), + [anon_sym_catch] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(2150), + [anon_sym_new] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2150), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2150), + [anon_sym_PLUS] = ACTIONS(2150), + [anon_sym_LT_LT] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(2150), + [anon_sym_GT_GT_GT] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_CARET] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_EQ_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_LT_EQ] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2152), + [anon_sym_EQ_GT] = ACTIONS(2152), + [anon_sym_QMARK_QMARK] = ACTIONS(2152), + [anon_sym_EQ] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2150), + [anon_sym_macro] = ACTIONS(2150), + [anon_sym_abstract] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2150), + [anon_sym_public] = ACTIONS(2150), + [anon_sym_private] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_inline] = ACTIONS(2150), + [anon_sym_overload] = ACTIONS(2150), + [anon_sym_override] = ACTIONS(2150), + [anon_sym_final] = ACTIONS(2150), + [anon_sym_class] = ACTIONS(2150), + [anon_sym_interface] = ACTIONS(2150), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_typedef] = ACTIONS(2150), + [anon_sym_function] = ACTIONS(2150), + [anon_sym_var] = ACTIONS(2150), + [aux_sym_integer_token1] = ACTIONS(2150), + [aux_sym_integer_token2] = ACTIONS(2152), + [aux_sym_float_token1] = ACTIONS(2150), + [aux_sym_float_token2] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [aux_sym_string_token1] = ACTIONS(2152), + [aux_sym_string_token3] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2152), [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(2154), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_package] = ACTIONS(2154), + [anon_sym_import] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2154), + [anon_sym_throw] = ACTIONS(2154), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_case] = ACTIONS(2154), + [anon_sym_default] = ACTIONS(2154), + [anon_sym_cast] = ACTIONS(2154), + [anon_sym_DOLLARtype] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2154), + [anon_sym_untyped] = ACTIONS(2154), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_this] = ACTIONS(2154), + [anon_sym_AT] = ACTIONS(2154), + [anon_sym_AT_COLON] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2154), + [anon_sym_catch] = ACTIONS(2154), + [anon_sym_else] = ACTIONS(2154), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_do] = ACTIONS(2154), + [anon_sym_new] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2154), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_LT_LT] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(2154), + [anon_sym_GT_GT_GT] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(2156), + [anon_sym_QMARK_QMARK] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(2154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2156), + [anon_sym_null] = ACTIONS(2154), + [anon_sym_macro] = ACTIONS(2154), + [anon_sym_abstract] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2154), + [anon_sym_public] = ACTIONS(2154), + [anon_sym_private] = ACTIONS(2154), + [anon_sym_extern] = ACTIONS(2154), + [anon_sym_inline] = ACTIONS(2154), + [anon_sym_overload] = ACTIONS(2154), + [anon_sym_override] = ACTIONS(2154), + [anon_sym_final] = ACTIONS(2154), + [anon_sym_class] = ACTIONS(2154), + [anon_sym_interface] = ACTIONS(2154), + [anon_sym_enum] = ACTIONS(2154), + [anon_sym_typedef] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2154), + [anon_sym_var] = ACTIONS(2154), + [aux_sym_integer_token1] = ACTIONS(2154), + [aux_sym_integer_token2] = ACTIONS(2156), + [aux_sym_float_token1] = ACTIONS(2154), + [aux_sym_float_token2] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [aux_sym_string_token1] = ACTIONS(2156), + [aux_sym_string_token3] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2156), [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(2158), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_package] = ACTIONS(2158), + [anon_sym_import] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2158), + [anon_sym_throw] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2158), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2158), + [anon_sym_cast] = ACTIONS(2158), + [anon_sym_DOLLARtype] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_untyped] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_this] = ACTIONS(2158), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_AT_COLON] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_catch] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_EQ_GT] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_EQ] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2160), + [anon_sym_null] = ACTIONS(2158), + [anon_sym_macro] = ACTIONS(2158), + [anon_sym_abstract] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_public] = ACTIONS(2158), + [anon_sym_private] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_inline] = ACTIONS(2158), + [anon_sym_overload] = ACTIONS(2158), + [anon_sym_override] = ACTIONS(2158), + [anon_sym_final] = ACTIONS(2158), + [anon_sym_class] = ACTIONS(2158), + [anon_sym_interface] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_typedef] = ACTIONS(2158), + [anon_sym_function] = ACTIONS(2158), + [anon_sym_var] = ACTIONS(2158), + [aux_sym_integer_token1] = ACTIONS(2158), + [aux_sym_integer_token2] = ACTIONS(2160), + [aux_sym_float_token1] = ACTIONS(2158), + [aux_sym_float_token2] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [aux_sym_string_token1] = ACTIONS(2160), + [aux_sym_string_token3] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2160), [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(2162), + [anon_sym_POUND] = ACTIONS(2164), + [anon_sym_package] = ACTIONS(2162), + [anon_sym_import] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2162), + [anon_sym_throw] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_cast] = ACTIONS(2162), + [anon_sym_DOLLARtype] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_untyped] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_this] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_AT_COLON] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2162), + [anon_sym_catch] = ACTIONS(2162), + [anon_sym_else] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_do] = ACTIONS(2162), + [anon_sym_new] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_GT_GT_GT] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_EQ_GT] = ACTIONS(2164), + [anon_sym_QMARK_QMARK] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2164), + [anon_sym_null] = ACTIONS(2162), + [anon_sym_macro] = ACTIONS(2162), + [anon_sym_abstract] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_public] = ACTIONS(2162), + [anon_sym_private] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_inline] = ACTIONS(2162), + [anon_sym_overload] = ACTIONS(2162), + [anon_sym_override] = ACTIONS(2162), + [anon_sym_final] = ACTIONS(2162), + [anon_sym_class] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_typedef] = ACTIONS(2162), + [anon_sym_function] = ACTIONS(2162), + [anon_sym_var] = ACTIONS(2162), + [aux_sym_integer_token1] = ACTIONS(2162), + [aux_sym_integer_token2] = ACTIONS(2164), + [aux_sym_float_token1] = ACTIONS(2162), + [aux_sym_float_token2] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [aux_sym_string_token1] = ACTIONS(2164), + [aux_sym_string_token3] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2164), [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(2166), + [anon_sym_POUND] = ACTIONS(2168), + [anon_sym_package] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_case] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_cast] = ACTIONS(2166), + [anon_sym_DOLLARtype] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_untyped] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_this] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_AT_COLON] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_catch] = ACTIONS(2166), + [anon_sym_else] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2168), + [anon_sym_PERCENT] = ACTIONS(2168), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_LT_LT] = ACTIONS(2168), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_GT_GT_GT] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2168), + [anon_sym_AMP_AMP] = ACTIONS(2168), + [anon_sym_PIPE_PIPE] = ACTIONS(2168), + [anon_sym_EQ_EQ] = ACTIONS(2168), + [anon_sym_BANG_EQ] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2168), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2168), + [anon_sym_EQ_GT] = ACTIONS(2168), + [anon_sym_QMARK_QMARK] = ACTIONS(2168), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2168), + [anon_sym_null] = ACTIONS(2166), + [anon_sym_macro] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym_inline] = ACTIONS(2166), + [anon_sym_overload] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_final] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [anon_sym_typedef] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [aux_sym_integer_token1] = ACTIONS(2166), + [aux_sym_integer_token2] = ACTIONS(2168), + [aux_sym_float_token1] = ACTIONS(2166), + [aux_sym_float_token2] = ACTIONS(2168), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [aux_sym_string_token1] = ACTIONS(2168), + [aux_sym_string_token3] = ACTIONS(2168), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2168), [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(2170), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_package] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_cast] = ACTIONS(2170), + [anon_sym_DOLLARtype] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_untyped] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_this] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_AT_COLON] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_catch] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_PERCENT] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(2172), + [anon_sym_GT_GT] = ACTIONS(2170), + [anon_sym_GT_GT_GT] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_CARET] = ACTIONS(2172), + [anon_sym_AMP_AMP] = ACTIONS(2172), + [anon_sym_PIPE_PIPE] = ACTIONS(2172), + [anon_sym_EQ_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_LT_EQ] = ACTIONS(2172), + [anon_sym_GT] = ACTIONS(2170), + [anon_sym_GT_EQ] = ACTIONS(2172), + [anon_sym_EQ_GT] = ACTIONS(2172), + [anon_sym_QMARK_QMARK] = ACTIONS(2172), + [anon_sym_EQ] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2170), + [anon_sym_macro] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_inline] = ACTIONS(2170), + [anon_sym_overload] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_final] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [anon_sym_typedef] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [aux_sym_integer_token1] = ACTIONS(2170), + [aux_sym_integer_token2] = ACTIONS(2172), + [aux_sym_float_token1] = ACTIONS(2170), + [aux_sym_float_token2] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2170), + [anon_sym_false] = ACTIONS(2170), + [aux_sym_string_token1] = ACTIONS(2172), + [aux_sym_string_token3] = ACTIONS(2172), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2172), [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(2174), + [anon_sym_POUND] = ACTIONS(2176), + [anon_sym_package] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_case] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_cast] = ACTIONS(2174), + [anon_sym_DOLLARtype] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_untyped] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_this] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_AT_COLON] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_catch] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [anon_sym_PERCENT] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2176), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_GT_GT_GT] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_CARET] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_EQ_EQ] = ACTIONS(2176), + [anon_sym_BANG_EQ] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_LT_EQ] = ACTIONS(2176), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_GT_EQ] = ACTIONS(2176), + [anon_sym_EQ_GT] = ACTIONS(2176), + [anon_sym_QMARK_QMARK] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2176), + [anon_sym_null] = ACTIONS(2174), + [anon_sym_macro] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_inline] = ACTIONS(2174), + [anon_sym_overload] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_final] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [anon_sym_typedef] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [aux_sym_integer_token1] = ACTIONS(2174), + [aux_sym_integer_token2] = ACTIONS(2176), + [aux_sym_float_token1] = ACTIONS(2174), + [aux_sym_float_token2] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [aux_sym_string_token1] = ACTIONS(2176), + [aux_sym_string_token3] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2176), [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(2178), + [anon_sym_POUND] = ACTIONS(2180), + [anon_sym_package] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_cast] = ACTIONS(2178), + [anon_sym_DOLLARtype] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_untyped] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_this] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_AT_COLON] = ACTIONS(2180), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_catch] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(2180), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2180), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_GT_GT_GT] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_PIPE_PIPE] = ACTIONS(2180), + [anon_sym_EQ_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2180), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_EQ] = ACTIONS(2180), + [anon_sym_EQ_GT] = ACTIONS(2180), + [anon_sym_QMARK_QMARK] = ACTIONS(2180), + [anon_sym_EQ] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2180), + [anon_sym_null] = ACTIONS(2178), + [anon_sym_macro] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym_overload] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_final] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [aux_sym_integer_token1] = ACTIONS(2178), + [aux_sym_integer_token2] = ACTIONS(2180), + [aux_sym_float_token1] = ACTIONS(2178), + [aux_sym_float_token2] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2178), + [anon_sym_false] = ACTIONS(2178), + [aux_sym_string_token1] = ACTIONS(2180), + [aux_sym_string_token3] = ACTIONS(2180), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2180), [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(2182), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_package] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_cast] = ACTIONS(2182), + [anon_sym_DOLLARtype] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_untyped] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_this] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_AT_COLON] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_catch] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PERCENT] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_LT_LT] = ACTIONS(2184), + [anon_sym_GT_GT] = ACTIONS(2182), + [anon_sym_GT_GT_GT] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_CARET] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_EQ_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(2184), + [anon_sym_GT] = ACTIONS(2182), + [anon_sym_GT_EQ] = ACTIONS(2184), + [anon_sym_EQ_GT] = ACTIONS(2184), + [anon_sym_QMARK_QMARK] = ACTIONS(2184), + [anon_sym_EQ] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2182), + [anon_sym_macro] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym_overload] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_final] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [aux_sym_integer_token1] = ACTIONS(2182), + [aux_sym_integer_token2] = ACTIONS(2184), + [aux_sym_float_token1] = ACTIONS(2182), + [aux_sym_float_token2] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2182), + [anon_sym_false] = ACTIONS(2182), + [aux_sym_string_token1] = ACTIONS(2184), + [aux_sym_string_token3] = ACTIONS(2184), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2184), [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(2186), + [anon_sym_POUND] = ACTIONS(2188), + [anon_sym_package] = ACTIONS(2186), + [anon_sym_import] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_cast] = ACTIONS(2186), + [anon_sym_DOLLARtype] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_untyped] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_this] = ACTIONS(2186), + [anon_sym_AT] = ACTIONS(2186), + [anon_sym_AT_COLON] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2188), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_GT_GT_GT] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_CARET] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_EQ_EQ] = ACTIONS(2188), + [anon_sym_BANG_EQ] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_LT_EQ] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_EQ] = ACTIONS(2188), + [anon_sym_EQ_GT] = ACTIONS(2188), + [anon_sym_QMARK_QMARK] = ACTIONS(2188), + [anon_sym_EQ] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2188), + [anon_sym_null] = ACTIONS(2186), + [anon_sym_macro] = ACTIONS(2186), + [anon_sym_abstract] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym_overload] = ACTIONS(2186), + [anon_sym_override] = ACTIONS(2186), + [anon_sym_final] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_interface] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_function] = ACTIONS(2186), + [anon_sym_var] = ACTIONS(2186), + [aux_sym_integer_token1] = ACTIONS(2186), + [aux_sym_integer_token2] = ACTIONS(2188), + [aux_sym_float_token1] = ACTIONS(2186), + [aux_sym_float_token2] = ACTIONS(2188), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [aux_sym_string_token1] = ACTIONS(2188), + [aux_sym_string_token3] = ACTIONS(2188), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2188), [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(2190), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_package] = ACTIONS(2190), + [anon_sym_import] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_throw] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_case] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_cast] = ACTIONS(2190), + [anon_sym_DOLLARtype] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_untyped] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_this] = ACTIONS(2190), + [anon_sym_AT] = ACTIONS(2190), + [anon_sym_AT_COLON] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_catch] = ACTIONS(2190), + [anon_sym_else] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_PERCENT] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_EQ_EQ] = ACTIONS(2192), + [anon_sym_BANG_EQ] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_LT_EQ] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2192), + [anon_sym_EQ_GT] = ACTIONS(2192), + [anon_sym_QMARK_QMARK] = ACTIONS(2192), + [anon_sym_EQ] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), + [anon_sym_null] = ACTIONS(2190), + [anon_sym_macro] = ACTIONS(2190), + [anon_sym_abstract] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_public] = ACTIONS(2190), + [anon_sym_private] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym_overload] = ACTIONS(2190), + [anon_sym_override] = ACTIONS(2190), + [anon_sym_final] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_function] = ACTIONS(2190), + [anon_sym_var] = ACTIONS(2190), + [aux_sym_integer_token1] = ACTIONS(2190), + [aux_sym_integer_token2] = ACTIONS(2192), + [aux_sym_float_token1] = ACTIONS(2190), + [aux_sym_float_token2] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [aux_sym_string_token1] = ACTIONS(2192), + [aux_sym_string_token3] = ACTIONS(2192), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2192), [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(2194), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_package] = ACTIONS(2194), + [anon_sym_import] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_throw] = ACTIONS(2194), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_cast] = ACTIONS(2194), + [anon_sym_DOLLARtype] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_untyped] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_this] = ACTIONS(2194), + [anon_sym_AT] = ACTIONS(2194), + [anon_sym_AT_COLON] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2194), + [anon_sym_catch] = ACTIONS(2194), + [anon_sym_else] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [anon_sym_PERCENT] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_GT_GT_GT] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_EQ_EQ] = ACTIONS(2196), + [anon_sym_BANG_EQ] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_LT_EQ] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_GT_EQ] = ACTIONS(2196), + [anon_sym_EQ_GT] = ACTIONS(2196), + [anon_sym_QMARK_QMARK] = ACTIONS(2196), + [anon_sym_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2196), + [anon_sym_null] = ACTIONS(2194), + [anon_sym_macro] = ACTIONS(2194), + [anon_sym_abstract] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym_overload] = ACTIONS(2194), + [anon_sym_override] = ACTIONS(2194), + [anon_sym_final] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_interface] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_function] = ACTIONS(2194), + [anon_sym_var] = ACTIONS(2194), + [aux_sym_integer_token1] = ACTIONS(2194), + [aux_sym_integer_token2] = ACTIONS(2196), + [aux_sym_float_token1] = ACTIONS(2194), + [aux_sym_float_token2] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [aux_sym_string_token1] = ACTIONS(2196), + [aux_sym_string_token3] = ACTIONS(2196), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2196), [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(2198), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_package] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_case] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_cast] = ACTIONS(2198), + [anon_sym_DOLLARtype] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_untyped] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_this] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_AT_COLON] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_catch] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_PERCENT] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_GT_GT_GT] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_CARET] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_EQ_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_LT_EQ] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_EQ] = ACTIONS(2200), + [anon_sym_EQ_GT] = ACTIONS(2200), + [anon_sym_QMARK_QMARK] = ACTIONS(2200), + [anon_sym_EQ] = ACTIONS(2198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), + [anon_sym_null] = ACTIONS(2198), + [anon_sym_macro] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym_overload] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_final] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [aux_sym_integer_token1] = ACTIONS(2198), + [aux_sym_integer_token2] = ACTIONS(2200), + [aux_sym_float_token1] = ACTIONS(2198), + [aux_sym_float_token2] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [aux_sym_string_token1] = ACTIONS(2200), + [aux_sym_string_token3] = ACTIONS(2200), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2200), [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(2202), + [anon_sym_POUND] = ACTIONS(2204), + [anon_sym_package] = ACTIONS(2202), + [anon_sym_import] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_case] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_cast] = ACTIONS(2202), + [anon_sym_DOLLARtype] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_untyped] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_this] = ACTIONS(2202), + [anon_sym_AT] = ACTIONS(2202), + [anon_sym_AT_COLON] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_catch] = ACTIONS(2202), + [anon_sym_else] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_LT_LT] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2202), + [anon_sym_GT_GT_GT] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_PIPE] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2202), + [anon_sym_GT_EQ] = ACTIONS(2204), + [anon_sym_EQ_GT] = ACTIONS(2204), + [anon_sym_QMARK_QMARK] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2204), + [anon_sym_null] = ACTIONS(2202), + [anon_sym_macro] = ACTIONS(2202), + [anon_sym_abstract] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_public] = ACTIONS(2202), + [anon_sym_private] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym_overload] = ACTIONS(2202), + [anon_sym_override] = ACTIONS(2202), + [anon_sym_final] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_interface] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_function] = ACTIONS(2202), + [anon_sym_var] = ACTIONS(2202), + [aux_sym_integer_token1] = ACTIONS(2202), + [aux_sym_integer_token2] = ACTIONS(2204), + [aux_sym_float_token1] = ACTIONS(2202), + [aux_sym_float_token2] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [aux_sym_string_token1] = ACTIONS(2204), + [aux_sym_string_token3] = ACTIONS(2204), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2204), [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(2206), + [anon_sym_POUND] = ACTIONS(2208), + [anon_sym_package] = ACTIONS(2206), + [anon_sym_import] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2206), + [anon_sym_throw] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_case] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_cast] = ACTIONS(2206), + [anon_sym_DOLLARtype] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_untyped] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_this] = ACTIONS(2206), + [anon_sym_AT] = ACTIONS(2206), + [anon_sym_AT_COLON] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_catch] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2206), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_EQ_GT] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2206), + [anon_sym_macro] = ACTIONS(2206), + [anon_sym_abstract] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_public] = ACTIONS(2206), + [anon_sym_private] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_inline] = ACTIONS(2206), + [anon_sym_overload] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2206), + [anon_sym_final] = ACTIONS(2206), + [anon_sym_class] = ACTIONS(2206), + [anon_sym_interface] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_typedef] = ACTIONS(2206), + [anon_sym_function] = ACTIONS(2206), + [anon_sym_var] = ACTIONS(2206), + [aux_sym_integer_token1] = ACTIONS(2206), + [aux_sym_integer_token2] = ACTIONS(2208), + [aux_sym_float_token1] = ACTIONS(2206), + [aux_sym_float_token2] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [aux_sym_string_token1] = ACTIONS(2208), + [aux_sym_string_token3] = ACTIONS(2208), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2208), [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(2210), + [anon_sym_POUND] = ACTIONS(2212), + [anon_sym_package] = ACTIONS(2210), + [anon_sym_import] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_throw] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_cast] = ACTIONS(2210), + [anon_sym_DOLLARtype] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_untyped] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_this] = ACTIONS(2210), + [anon_sym_AT] = ACTIONS(2210), + [anon_sym_AT_COLON] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2210), + [anon_sym_catch] = ACTIONS(2210), + [anon_sym_else] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2210), + [anon_sym_PLUS] = ACTIONS(2210), + [anon_sym_LT_LT] = ACTIONS(2212), + [anon_sym_GT_GT] = ACTIONS(2210), + [anon_sym_GT_GT_GT] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(2210), + [anon_sym_CARET] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_PIPE_PIPE] = ACTIONS(2212), + [anon_sym_EQ_EQ] = ACTIONS(2212), + [anon_sym_BANG_EQ] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2210), + [anon_sym_LT_EQ] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2210), + [anon_sym_GT_EQ] = ACTIONS(2212), + [anon_sym_EQ_GT] = ACTIONS(2212), + [anon_sym_QMARK_QMARK] = ACTIONS(2212), + [anon_sym_EQ] = ACTIONS(2210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2212), + [anon_sym_null] = ACTIONS(2210), + [anon_sym_macro] = ACTIONS(2210), + [anon_sym_abstract] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_public] = ACTIONS(2210), + [anon_sym_private] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym_overload] = ACTIONS(2210), + [anon_sym_override] = ACTIONS(2210), + [anon_sym_final] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_interface] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_function] = ACTIONS(2210), + [anon_sym_var] = ACTIONS(2210), + [aux_sym_integer_token1] = ACTIONS(2210), + [aux_sym_integer_token2] = ACTIONS(2212), + [aux_sym_float_token1] = ACTIONS(2210), + [aux_sym_float_token2] = ACTIONS(2212), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [aux_sym_string_token1] = ACTIONS(2212), + [aux_sym_string_token3] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2212), [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(2214), + [anon_sym_POUND] = ACTIONS(2216), + [anon_sym_package] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_case] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_cast] = ACTIONS(2214), + [anon_sym_DOLLARtype] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_untyped] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_this] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_AT_COLON] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_catch] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2216), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_PERCENT] = ACTIONS(2216), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_EQ_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_LT_EQ] = ACTIONS(2216), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2216), + [anon_sym_EQ_GT] = ACTIONS(2216), + [anon_sym_QMARK_QMARK] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2214), + [anon_sym_macro] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_inline] = ACTIONS(2214), + [anon_sym_overload] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_final] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_typedef] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(2214), + [aux_sym_integer_token2] = ACTIONS(2216), + [aux_sym_float_token1] = ACTIONS(2214), + [aux_sym_float_token2] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [aux_sym_string_token1] = ACTIONS(2216), + [aux_sym_string_token3] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2216), [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(2218), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_package] = ACTIONS(2218), + [anon_sym_import] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_case] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_cast] = ACTIONS(2218), + [anon_sym_DOLLARtype] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_untyped] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_this] = ACTIONS(2218), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_AT_COLON] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_LT_LT] = ACTIONS(2220), + [anon_sym_GT_GT] = ACTIONS(2218), + [anon_sym_GT_GT_GT] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_PIPE_PIPE] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2220), + [anon_sym_BANG_EQ] = ACTIONS(2220), + [anon_sym_LT] = ACTIONS(2218), + [anon_sym_LT_EQ] = ACTIONS(2220), + [anon_sym_GT] = ACTIONS(2218), + [anon_sym_GT_EQ] = ACTIONS(2220), + [anon_sym_EQ_GT] = ACTIONS(2220), + [anon_sym_QMARK_QMARK] = ACTIONS(2220), + [anon_sym_EQ] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2220), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_macro] = ACTIONS(2218), + [anon_sym_abstract] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym_overload] = ACTIONS(2218), + [anon_sym_override] = ACTIONS(2218), + [anon_sym_final] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_interface] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_function] = ACTIONS(2218), + [anon_sym_var] = ACTIONS(2218), + [aux_sym_integer_token1] = ACTIONS(2218), + [aux_sym_integer_token2] = ACTIONS(2220), + [aux_sym_float_token1] = ACTIONS(2218), + [aux_sym_float_token2] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [aux_sym_string_token1] = ACTIONS(2220), + [aux_sym_string_token3] = ACTIONS(2220), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2220), [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(2222), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_package] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_case] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_cast] = ACTIONS(2222), + [anon_sym_DOLLARtype] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_untyped] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_this] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_AT_COLON] = ACTIONS(2224), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_catch] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2222), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_EQ_GT] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_null] = ACTIONS(2222), + [anon_sym_macro] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_inline] = ACTIONS(2222), + [anon_sym_overload] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_final] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_typedef] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [aux_sym_integer_token1] = ACTIONS(2222), + [aux_sym_integer_token2] = ACTIONS(2224), + [aux_sym_float_token1] = ACTIONS(2222), + [aux_sym_float_token2] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [aux_sym_string_token1] = ACTIONS(2224), + [aux_sym_string_token3] = ACTIONS(2224), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2224), [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(2226), + [anon_sym_POUND] = ACTIONS(2228), + [anon_sym_package] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_cast] = ACTIONS(2226), + [anon_sym_DOLLARtype] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_untyped] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_this] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_AT_COLON] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_catch] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2228), + [anon_sym_GT_GT] = ACTIONS(2226), + [anon_sym_GT_GT_GT] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2226), + [anon_sym_CARET] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_LT_EQ] = ACTIONS(2228), + [anon_sym_GT] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_QMARK_QMARK] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2226), + [anon_sym_macro] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_inline] = ACTIONS(2226), + [anon_sym_overload] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_final] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_typedef] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [aux_sym_integer_token1] = ACTIONS(2226), + [aux_sym_integer_token2] = ACTIONS(2228), + [aux_sym_float_token1] = ACTIONS(2226), + [aux_sym_float_token2] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [aux_sym_string_token1] = ACTIONS(2228), + [aux_sym_string_token3] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2228), [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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__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__closing_brace_unmarker] = ACTIONS(3), - }, - [465] = { + [sym_catch_statement] = STATE(585), + [aux_sym_try_statement_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2230), [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2230), [anon_sym_package] = ACTIONS(2232), [anon_sym_import] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2230), [anon_sym_using] = ACTIONS(2232), [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2230), [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_case] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2234), + [anon_sym_DOLLARtype] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2232), [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_LBRACK] = ACTIONS(2230), [anon_sym_this] = ACTIONS(2232), [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2234), + [anon_sym_AT_COLON] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_catch] = ACTIONS(2232), + [anon_sym_else] = ACTIONS(2232), [anon_sym_if] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2230), [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_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), [anon_sym_SLASH] = ACTIONS(2232), [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2230), [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_GT_GT_GT] = ACTIONS(2230), [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_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(2232), - [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_LT_EQ] = ACTIONS(2230), [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_GT_EQ] = ACTIONS(2230), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), [anon_sym_EQ] = ACTIONS(2232), - [sym__rangeOperator] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), [anon_sym_null] = ACTIONS(2232), [anon_sym_macro] = ACTIONS(2232), [anon_sym_abstract] = ACTIONS(2232), @@ -50032,184 +55137,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2232), [anon_sym_class] = ACTIONS(2232), [anon_sym_interface] = ACTIONS(2232), + [anon_sym_enum] = 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_integer_token2] = ACTIONS(2230), [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2234), + [aux_sym_float_token2] = ACTIONS(2230), [anon_sym_true] = ACTIONS(2232), [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2234), - [aux_sym_string_token3] = ACTIONS(2234), + [aux_sym_string_token1] = ACTIONS(2230), + [aux_sym_string_token3] = ACTIONS(2230), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2234), [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), + [442] = { + [sym_identifier] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2236), + [anon_sym_package] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_case] = ACTIONS(2234), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_cast] = ACTIONS(2234), + [anon_sym_DOLLARtype] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_untyped] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_this] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_AT_COLON] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_catch] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2236), + [anon_sym_GT_GT] = ACTIONS(2234), + [anon_sym_GT_GT_GT] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(2236), + [anon_sym_AMP_AMP] = ACTIONS(2236), + [anon_sym_PIPE_PIPE] = ACTIONS(2236), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_LT_EQ] = ACTIONS(2236), + [anon_sym_GT] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2236), + [anon_sym_EQ_GT] = ACTIONS(2236), + [anon_sym_QMARK_QMARK] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2236), + [anon_sym_null] = ACTIONS(2234), + [anon_sym_macro] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_inline] = ACTIONS(2234), + [anon_sym_overload] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_final] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_typedef] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [aux_sym_integer_token1] = ACTIONS(2234), + [aux_sym_integer_token2] = ACTIONS(2236), + [aux_sym_float_token1] = ACTIONS(2234), + [aux_sym_float_token2] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [aux_sym_string_token1] = ACTIONS(2236), + [aux_sym_string_token3] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2236), [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), + [443] = { + [sym_identifier] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(810), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_using] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_case] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_cast] = ACTIONS(814), + [anon_sym_DOLLARtype] = ACTIONS(810), + [anon_sym_for] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_untyped] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(810), + [anon_sym_this] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_AT_COLON] = ACTIONS(810), + [anon_sym_try] = ACTIONS(814), + [anon_sym_catch] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_new] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_PLUS_PLUS] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_GT_GT_GT] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(810), + [anon_sym_BANG_EQ] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_LT_EQ] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_EQ] = ACTIONS(810), + [anon_sym_EQ_GT] = ACTIONS(810), + [anon_sym_QMARK_QMARK] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(810), + [anon_sym_null] = ACTIONS(814), + [anon_sym_macro] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_inline] = ACTIONS(814), + [anon_sym_overload] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_function] = ACTIONS(814), + [anon_sym_var] = ACTIONS(814), + [aux_sym_integer_token1] = ACTIONS(814), + [aux_sym_integer_token2] = ACTIONS(810), + [aux_sym_float_token1] = ACTIONS(814), + [aux_sym_float_token2] = ACTIONS(810), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [aux_sym_string_token1] = ACTIONS(810), + [aux_sym_string_token3] = ACTIONS(810), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(810), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [468] = { + [444] = { + [sym_identifier] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(810), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_using] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_case] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_cast] = ACTIONS(814), + [anon_sym_DOLLARtype] = ACTIONS(810), + [anon_sym_for] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_untyped] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_this] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_AT_COLON] = ACTIONS(810), + [anon_sym_try] = ACTIONS(814), + [anon_sym_catch] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_new] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_PLUS_PLUS] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_GT_GT_GT] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(810), + [anon_sym_BANG_EQ] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_LT_EQ] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_EQ] = ACTIONS(810), + [anon_sym_EQ_GT] = ACTIONS(810), + [anon_sym_QMARK_QMARK] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(810), + [anon_sym_null] = ACTIONS(814), + [anon_sym_macro] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_inline] = ACTIONS(814), + [anon_sym_overload] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_function] = ACTIONS(814), + [anon_sym_var] = ACTIONS(814), + [aux_sym_integer_token1] = ACTIONS(814), + [aux_sym_integer_token2] = ACTIONS(810), + [aux_sym_float_token1] = ACTIONS(814), + [aux_sym_float_token2] = ACTIONS(810), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [aux_sym_string_token1] = ACTIONS(810), + [aux_sym_string_token3] = ACTIONS(810), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(810), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [445] = { + [sym_identifier] = ACTIONS(2238), + [anon_sym_POUND] = ACTIONS(2240), + [anon_sym_package] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_case] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_cast] = ACTIONS(2238), + [anon_sym_DOLLARtype] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_untyped] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_this] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_AT_COLON] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_catch] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2240), + [anon_sym_DASH_DASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2240), + [anon_sym_GT_GT] = ACTIONS(2238), + [anon_sym_GT_GT_GT] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_LT_EQ] = ACTIONS(2240), + [anon_sym_GT] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2240), + [anon_sym_EQ_GT] = ACTIONS(2240), + [anon_sym_QMARK_QMARK] = ACTIONS(2240), + [anon_sym_EQ] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2240), + [anon_sym_null] = ACTIONS(2238), + [anon_sym_macro] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_inline] = ACTIONS(2238), + [anon_sym_overload] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_final] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_typedef] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [aux_sym_integer_token1] = ACTIONS(2238), + [aux_sym_integer_token2] = ACTIONS(2240), + [aux_sym_float_token1] = ACTIONS(2238), + [aux_sym_float_token2] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [aux_sym_string_token1] = ACTIONS(2240), + [aux_sym_string_token3] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2240), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [446] = { + [sym_else_clause] = STATE(791), + [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_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2242), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [447] = { [sym_identifier] = ACTIONS(2244), [anon_sym_POUND] = ACTIONS(2246), [anon_sym_package] = ACTIONS(2244), [anon_sym_import] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2246), [anon_sym_using] = ACTIONS(2244), [anon_sym_throw] = ACTIONS(2244), [anon_sym_LPAREN] = ACTIONS(2246), @@ -50219,6 +55597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2244), [anon_sym_cast] = ACTIONS(2244), [anon_sym_DOLLARtype] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2244), [anon_sym_return] = ACTIONS(2244), [anon_sym_untyped] = ACTIONS(2244), [anon_sym_break] = ACTIONS(2244), @@ -50227,7 +55606,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2244), [anon_sym_AT] = ACTIONS(2244), [anon_sym_AT_COLON] = ACTIONS(2246), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), [anon_sym_if] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), [anon_sym_new] = ACTIONS(2244), [anon_sym_TILDE] = ACTIONS(2246), [anon_sym_BANG] = ACTIONS(2244), @@ -50235,7 +55619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50255,7 +55638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2246), [anon_sym_QMARK_QMARK] = ACTIONS(2246), [anon_sym_EQ] = ACTIONS(2244), - [sym__rangeOperator] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2246), [anon_sym_null] = ACTIONS(2244), [anon_sym_macro] = ACTIONS(2244), [anon_sym_abstract] = ACTIONS(2244), @@ -50269,6 +55652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2244), [anon_sym_class] = ACTIONS(2244), [anon_sym_interface] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), [anon_sym_typedef] = ACTIONS(2244), [anon_sym_function] = ACTIONS(2244), [anon_sym_var] = ACTIONS(2244), @@ -50284,90 +55668,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2246), [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__closing_brace_unmarker] = ACTIONS(3), - }, - [470] = { + [448] = { [sym_identifier] = ACTIONS(2248), [anon_sym_POUND] = ACTIONS(2250), [anon_sym_package] = ACTIONS(2248), [anon_sym_import] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(2250), [anon_sym_using] = ACTIONS(2248), [anon_sym_throw] = ACTIONS(2248), [anon_sym_LPAREN] = ACTIONS(2250), @@ -50377,6 +55683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2248), [anon_sym_cast] = ACTIONS(2248), [anon_sym_DOLLARtype] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2248), [anon_sym_return] = ACTIONS(2248), [anon_sym_untyped] = ACTIONS(2248), [anon_sym_break] = ACTIONS(2248), @@ -50385,7 +55692,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2248), [anon_sym_AT] = ACTIONS(2248), [anon_sym_AT_COLON] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2248), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_else] = ACTIONS(2248), [anon_sym_if] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), [anon_sym_new] = ACTIONS(2248), [anon_sym_TILDE] = ACTIONS(2250), [anon_sym_BANG] = ACTIONS(2248), @@ -50393,7 +55705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50413,7 +55724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2250), [anon_sym_QMARK_QMARK] = ACTIONS(2250), [anon_sym_EQ] = ACTIONS(2248), - [sym__rangeOperator] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2250), [anon_sym_null] = ACTIONS(2248), [anon_sym_macro] = ACTIONS(2248), [anon_sym_abstract] = ACTIONS(2248), @@ -50427,6 +55738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2248), [anon_sym_interface] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), [anon_sym_typedef] = ACTIONS(2248), [anon_sym_function] = ACTIONS(2248), [anon_sym_var] = ACTIONS(2248), @@ -50442,11 +55754,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2250), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [471] = { + [449] = { [sym_identifier] = ACTIONS(2252), [anon_sym_POUND] = ACTIONS(2254), [anon_sym_package] = ACTIONS(2252), [anon_sym_import] = ACTIONS(2252), + [anon_sym_STAR] = ACTIONS(2254), [anon_sym_using] = ACTIONS(2252), [anon_sym_throw] = ACTIONS(2252), [anon_sym_LPAREN] = ACTIONS(2254), @@ -50456,6 +55769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2252), [anon_sym_cast] = ACTIONS(2252), [anon_sym_DOLLARtype] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2252), [anon_sym_return] = ACTIONS(2252), [anon_sym_untyped] = ACTIONS(2252), [anon_sym_break] = ACTIONS(2252), @@ -50464,7 +55778,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2252), [anon_sym_AT] = ACTIONS(2252), [anon_sym_AT_COLON] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_catch] = ACTIONS(2252), + [anon_sym_else] = ACTIONS(2252), [anon_sym_if] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), [anon_sym_new] = ACTIONS(2252), [anon_sym_TILDE] = ACTIONS(2254), [anon_sym_BANG] = ACTIONS(2252), @@ -50472,7 +55791,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50492,7 +55810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2254), [anon_sym_QMARK_QMARK] = ACTIONS(2254), [anon_sym_EQ] = ACTIONS(2252), - [sym__rangeOperator] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2254), [anon_sym_null] = ACTIONS(2252), [anon_sym_macro] = ACTIONS(2252), [anon_sym_abstract] = ACTIONS(2252), @@ -50506,6 +55824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2252), [anon_sym_class] = ACTIONS(2252), [anon_sym_interface] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), [anon_sym_typedef] = ACTIONS(2252), [anon_sym_function] = ACTIONS(2252), [anon_sym_var] = ACTIONS(2252), @@ -50521,11 +55840,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2254), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [472] = { + [450] = { [sym_identifier] = ACTIONS(2256), [anon_sym_POUND] = ACTIONS(2258), [anon_sym_package] = ACTIONS(2256), [anon_sym_import] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2258), [anon_sym_using] = ACTIONS(2256), [anon_sym_throw] = ACTIONS(2256), [anon_sym_LPAREN] = ACTIONS(2258), @@ -50535,6 +55855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2256), [anon_sym_cast] = ACTIONS(2256), [anon_sym_DOLLARtype] = ACTIONS(2258), + [anon_sym_for] = ACTIONS(2256), [anon_sym_return] = ACTIONS(2256), [anon_sym_untyped] = ACTIONS(2256), [anon_sym_break] = ACTIONS(2256), @@ -50543,7 +55864,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2256), [anon_sym_AT] = ACTIONS(2256), [anon_sym_AT_COLON] = ACTIONS(2258), + [anon_sym_try] = ACTIONS(2256), + [anon_sym_catch] = ACTIONS(2256), + [anon_sym_else] = ACTIONS(2256), [anon_sym_if] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = ACTIONS(2256), [anon_sym_new] = ACTIONS(2256), [anon_sym_TILDE] = ACTIONS(2258), [anon_sym_BANG] = ACTIONS(2256), @@ -50551,7 +55877,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50571,7 +55896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2258), [anon_sym_QMARK_QMARK] = ACTIONS(2258), [anon_sym_EQ] = ACTIONS(2256), - [sym__rangeOperator] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2258), [anon_sym_null] = ACTIONS(2256), [anon_sym_macro] = ACTIONS(2256), [anon_sym_abstract] = ACTIONS(2256), @@ -50585,6 +55910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2256), [anon_sym_class] = ACTIONS(2256), [anon_sym_interface] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), [anon_sym_typedef] = ACTIONS(2256), [anon_sym_function] = ACTIONS(2256), [anon_sym_var] = ACTIONS(2256), @@ -50600,11 +55926,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2258), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [473] = { + [451] = { [sym_identifier] = ACTIONS(2260), [anon_sym_POUND] = ACTIONS(2262), [anon_sym_package] = ACTIONS(2260), [anon_sym_import] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2262), [anon_sym_using] = ACTIONS(2260), [anon_sym_throw] = ACTIONS(2260), [anon_sym_LPAREN] = ACTIONS(2262), @@ -50614,6 +55941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2260), [anon_sym_cast] = ACTIONS(2260), [anon_sym_DOLLARtype] = ACTIONS(2262), + [anon_sym_for] = ACTIONS(2260), [anon_sym_return] = ACTIONS(2260), [anon_sym_untyped] = ACTIONS(2260), [anon_sym_break] = ACTIONS(2260), @@ -50622,7 +55950,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2260), [anon_sym_AT] = ACTIONS(2260), [anon_sym_AT_COLON] = ACTIONS(2262), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_catch] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), [anon_sym_if] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), [anon_sym_new] = ACTIONS(2260), [anon_sym_TILDE] = ACTIONS(2262), [anon_sym_BANG] = ACTIONS(2260), @@ -50630,7 +55963,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50650,7 +55982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2262), [anon_sym_QMARK_QMARK] = ACTIONS(2262), [anon_sym_EQ] = ACTIONS(2260), - [sym__rangeOperator] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), [anon_sym_null] = ACTIONS(2260), [anon_sym_macro] = ACTIONS(2260), [anon_sym_abstract] = ACTIONS(2260), @@ -50664,6 +55996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2260), [anon_sym_class] = ACTIONS(2260), [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), [anon_sym_typedef] = ACTIONS(2260), [anon_sym_function] = ACTIONS(2260), [anon_sym_var] = ACTIONS(2260), @@ -50679,11 +56012,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2262), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [474] = { + [452] = { [sym_identifier] = ACTIONS(2264), [anon_sym_POUND] = ACTIONS(2266), [anon_sym_package] = ACTIONS(2264), [anon_sym_import] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), [anon_sym_using] = ACTIONS(2264), [anon_sym_throw] = ACTIONS(2264), [anon_sym_LPAREN] = ACTIONS(2266), @@ -50693,6 +56027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2264), [anon_sym_cast] = ACTIONS(2264), [anon_sym_DOLLARtype] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2264), [anon_sym_return] = ACTIONS(2264), [anon_sym_untyped] = ACTIONS(2264), [anon_sym_break] = ACTIONS(2264), @@ -50701,7 +56036,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2264), [anon_sym_AT] = ACTIONS(2264), [anon_sym_AT_COLON] = ACTIONS(2266), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_catch] = ACTIONS(2264), + [anon_sym_else] = ACTIONS(2264), [anon_sym_if] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), [anon_sym_new] = ACTIONS(2264), [anon_sym_TILDE] = ACTIONS(2266), [anon_sym_BANG] = ACTIONS(2264), @@ -50709,7 +56049,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50729,7 +56068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2266), [anon_sym_QMARK_QMARK] = ACTIONS(2266), [anon_sym_EQ] = ACTIONS(2264), - [sym__rangeOperator] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_null] = ACTIONS(2264), [anon_sym_macro] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2264), @@ -50743,6 +56082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2264), [anon_sym_class] = ACTIONS(2264), [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), [anon_sym_typedef] = ACTIONS(2264), [anon_sym_function] = ACTIONS(2264), [anon_sym_var] = ACTIONS(2264), @@ -50758,11 +56098,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2266), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [475] = { + [453] = { [sym_identifier] = ACTIONS(2268), [anon_sym_POUND] = ACTIONS(2270), [anon_sym_package] = ACTIONS(2268), [anon_sym_import] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2270), [anon_sym_using] = ACTIONS(2268), [anon_sym_throw] = ACTIONS(2268), [anon_sym_LPAREN] = ACTIONS(2270), @@ -50772,6 +56113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2268), [anon_sym_cast] = ACTIONS(2268), [anon_sym_DOLLARtype] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2268), [anon_sym_return] = ACTIONS(2268), [anon_sym_untyped] = ACTIONS(2268), [anon_sym_break] = ACTIONS(2268), @@ -50780,7 +56122,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2268), [anon_sym_AT] = ACTIONS(2268), [anon_sym_AT_COLON] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_catch] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), [anon_sym_if] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), [anon_sym_new] = ACTIONS(2268), [anon_sym_TILDE] = ACTIONS(2270), [anon_sym_BANG] = ACTIONS(2268), @@ -50788,7 +56135,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50808,7 +56154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2270), [anon_sym_QMARK_QMARK] = ACTIONS(2270), [anon_sym_EQ] = ACTIONS(2268), - [sym__rangeOperator] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2270), [anon_sym_null] = ACTIONS(2268), [anon_sym_macro] = ACTIONS(2268), [anon_sym_abstract] = ACTIONS(2268), @@ -50822,6 +56168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2268), [anon_sym_class] = ACTIONS(2268), [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), [anon_sym_typedef] = ACTIONS(2268), [anon_sym_function] = ACTIONS(2268), [anon_sym_var] = ACTIONS(2268), @@ -50837,11 +56184,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2270), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [476] = { + [454] = { + [sym_identifier] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_package] = ACTIONS(1964), + [anon_sym_import] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1966), + [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_for] = ACTIONS(1964), + [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_try] = ACTIONS(1964), + [anon_sym_catch] = ACTIONS(1964), + [anon_sym_else] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__closing_brace_unmarker] = ACTIONS(3), + }, + [455] = { [sym_identifier] = ACTIONS(2272), [anon_sym_POUND] = ACTIONS(2274), [anon_sym_package] = ACTIONS(2272), [anon_sym_import] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), [anon_sym_using] = ACTIONS(2272), [anon_sym_throw] = ACTIONS(2272), [anon_sym_LPAREN] = ACTIONS(2274), @@ -50851,6 +56285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2272), [anon_sym_cast] = ACTIONS(2272), [anon_sym_DOLLARtype] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2272), [anon_sym_return] = ACTIONS(2272), [anon_sym_untyped] = ACTIONS(2272), [anon_sym_break] = ACTIONS(2272), @@ -50859,7 +56294,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2272), [anon_sym_AT] = ACTIONS(2272), [anon_sym_AT_COLON] = ACTIONS(2274), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_catch] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), [anon_sym_if] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), [anon_sym_new] = ACTIONS(2272), [anon_sym_TILDE] = ACTIONS(2274), [anon_sym_BANG] = ACTIONS(2272), @@ -50867,7 +56307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50887,7 +56326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2274), [anon_sym_QMARK_QMARK] = ACTIONS(2274), [anon_sym_EQ] = ACTIONS(2272), - [sym__rangeOperator] = ACTIONS(2274), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2274), [anon_sym_null] = ACTIONS(2272), [anon_sym_macro] = ACTIONS(2272), [anon_sym_abstract] = ACTIONS(2272), @@ -50901,6 +56340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2272), [anon_sym_class] = ACTIONS(2272), [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), [anon_sym_typedef] = ACTIONS(2272), [anon_sym_function] = ACTIONS(2272), [anon_sym_var] = ACTIONS(2272), @@ -50916,11 +56356,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2274), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [477] = { + [456] = { [sym_identifier] = ACTIONS(2276), [anon_sym_POUND] = ACTIONS(2278), [anon_sym_package] = ACTIONS(2276), [anon_sym_import] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2278), [anon_sym_using] = ACTIONS(2276), [anon_sym_throw] = ACTIONS(2276), [anon_sym_LPAREN] = ACTIONS(2278), @@ -50930,6 +56371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2276), [anon_sym_cast] = ACTIONS(2276), [anon_sym_DOLLARtype] = ACTIONS(2278), + [anon_sym_for] = ACTIONS(2276), [anon_sym_return] = ACTIONS(2276), [anon_sym_untyped] = ACTIONS(2276), [anon_sym_break] = ACTIONS(2276), @@ -50938,7 +56380,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2276), [anon_sym_AT] = ACTIONS(2276), [anon_sym_AT_COLON] = ACTIONS(2278), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_catch] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), [anon_sym_if] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), [anon_sym_new] = ACTIONS(2276), [anon_sym_TILDE] = ACTIONS(2278), [anon_sym_BANG] = ACTIONS(2276), @@ -50946,7 +56393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50966,7 +56412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2278), [anon_sym_QMARK_QMARK] = ACTIONS(2278), [anon_sym_EQ] = ACTIONS(2276), - [sym__rangeOperator] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2278), [anon_sym_null] = ACTIONS(2276), [anon_sym_macro] = ACTIONS(2276), [anon_sym_abstract] = ACTIONS(2276), @@ -50980,6 +56426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2276), [anon_sym_class] = ACTIONS(2276), [anon_sym_interface] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), [anon_sym_typedef] = ACTIONS(2276), [anon_sym_function] = ACTIONS(2276), [anon_sym_var] = ACTIONS(2276), @@ -50995,11 +56442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2278), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [478] = { + [457] = { [sym_identifier] = ACTIONS(2280), [anon_sym_POUND] = ACTIONS(2282), [anon_sym_package] = ACTIONS(2280), [anon_sym_import] = ACTIONS(2280), + [anon_sym_STAR] = ACTIONS(2282), [anon_sym_using] = ACTIONS(2280), [anon_sym_throw] = ACTIONS(2280), [anon_sym_LPAREN] = ACTIONS(2282), @@ -51009,6 +56457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2280), [anon_sym_cast] = ACTIONS(2280), [anon_sym_DOLLARtype] = ACTIONS(2282), + [anon_sym_for] = ACTIONS(2280), [anon_sym_return] = ACTIONS(2280), [anon_sym_untyped] = ACTIONS(2280), [anon_sym_break] = ACTIONS(2280), @@ -51017,7 +56466,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2280), [anon_sym_AT] = ACTIONS(2280), [anon_sym_AT_COLON] = ACTIONS(2282), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_catch] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2280), [anon_sym_if] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), [anon_sym_new] = ACTIONS(2280), [anon_sym_TILDE] = ACTIONS(2282), [anon_sym_BANG] = ACTIONS(2280), @@ -51025,7 +56479,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51045,7 +56498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2282), [anon_sym_QMARK_QMARK] = ACTIONS(2282), [anon_sym_EQ] = ACTIONS(2280), - [sym__rangeOperator] = ACTIONS(2282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2282), [anon_sym_null] = ACTIONS(2280), [anon_sym_macro] = ACTIONS(2280), [anon_sym_abstract] = ACTIONS(2280), @@ -51059,6 +56512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2280), [anon_sym_class] = ACTIONS(2280), [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), [anon_sym_typedef] = ACTIONS(2280), [anon_sym_function] = ACTIONS(2280), [anon_sym_var] = ACTIONS(2280), @@ -51074,11 +56528,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2282), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [479] = { + [458] = { [sym_identifier] = ACTIONS(2284), [anon_sym_POUND] = ACTIONS(2286), [anon_sym_package] = ACTIONS(2284), [anon_sym_import] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2286), [anon_sym_using] = ACTIONS(2284), [anon_sym_throw] = ACTIONS(2284), [anon_sym_LPAREN] = ACTIONS(2286), @@ -51088,6 +56543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2284), [anon_sym_cast] = ACTIONS(2284), [anon_sym_DOLLARtype] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2284), [anon_sym_return] = ACTIONS(2284), [anon_sym_untyped] = ACTIONS(2284), [anon_sym_break] = ACTIONS(2284), @@ -51096,7 +56552,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2284), [anon_sym_AT] = ACTIONS(2284), [anon_sym_AT_COLON] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_catch] = ACTIONS(2284), + [anon_sym_else] = ACTIONS(2284), [anon_sym_if] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), [anon_sym_new] = ACTIONS(2284), [anon_sym_TILDE] = ACTIONS(2286), [anon_sym_BANG] = ACTIONS(2284), @@ -51104,7 +56565,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51124,7 +56584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2286), [anon_sym_QMARK_QMARK] = ACTIONS(2286), [anon_sym_EQ] = ACTIONS(2284), - [sym__rangeOperator] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2286), [anon_sym_null] = ACTIONS(2284), [anon_sym_macro] = ACTIONS(2284), [anon_sym_abstract] = ACTIONS(2284), @@ -51138,6 +56598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2284), [anon_sym_class] = ACTIONS(2284), [anon_sym_interface] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), [anon_sym_typedef] = ACTIONS(2284), [anon_sym_function] = ACTIONS(2284), [anon_sym_var] = ACTIONS(2284), @@ -51153,90 +56614,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2286), [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), + [459] = { + [sym_identifier] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(2290), + [anon_sym_package] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_cast] = ACTIONS(2288), + [anon_sym_DOLLARtype] = ACTIONS(2290), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_untyped] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_this] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_AT_COLON] = ACTIONS(2290), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_PERCENT] = ACTIONS(2290), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2290), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2290), + [anon_sym_PIPE_PIPE] = ACTIONS(2290), + [anon_sym_EQ_EQ] = ACTIONS(2290), + [anon_sym_BANG_EQ] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2290), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2290), + [anon_sym_EQ_GT] = ACTIONS(2290), + [anon_sym_QMARK_QMARK] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2290), + [anon_sym_null] = ACTIONS(2288), + [anon_sym_macro] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_extern] = ACTIONS(2288), + [anon_sym_inline] = ACTIONS(2288), + [anon_sym_overload] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_final] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [anon_sym_typedef] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [aux_sym_integer_token1] = ACTIONS(2288), + [aux_sym_integer_token2] = ACTIONS(2290), + [aux_sym_float_token1] = ACTIONS(2288), + [aux_sym_float_token2] = ACTIONS(2290), + [anon_sym_true] = ACTIONS(2288), + [anon_sym_false] = ACTIONS(2288), + [aux_sym_string_token1] = ACTIONS(2290), + [aux_sym_string_token3] = ACTIONS(2290), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2290), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [481] = { + [460] = { [sym_identifier] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(2294), [anon_sym_package] = ACTIONS(2292), [anon_sym_import] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2294), [anon_sym_using] = ACTIONS(2292), [anon_sym_throw] = ACTIONS(2292), [anon_sym_LPAREN] = ACTIONS(2294), @@ -51246,6 +56715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2292), [anon_sym_cast] = ACTIONS(2292), [anon_sym_DOLLARtype] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2292), [anon_sym_return] = ACTIONS(2292), [anon_sym_untyped] = ACTIONS(2292), [anon_sym_break] = ACTIONS(2292), @@ -51254,7 +56724,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2292), [anon_sym_AT] = ACTIONS(2292), [anon_sym_AT_COLON] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_catch] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), [anon_sym_if] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), [anon_sym_new] = ACTIONS(2292), [anon_sym_TILDE] = ACTIONS(2294), [anon_sym_BANG] = ACTIONS(2292), @@ -51262,7 +56737,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51282,7 +56756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2294), [anon_sym_QMARK_QMARK] = ACTIONS(2294), [anon_sym_EQ] = ACTIONS(2292), - [sym__rangeOperator] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2294), [anon_sym_null] = ACTIONS(2292), [anon_sym_macro] = ACTIONS(2292), [anon_sym_abstract] = ACTIONS(2292), @@ -51296,6 +56770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2292), [anon_sym_class] = ACTIONS(2292), [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), [anon_sym_typedef] = ACTIONS(2292), [anon_sym_function] = ACTIONS(2292), [anon_sym_var] = ACTIONS(2292), @@ -51311,11 +56786,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2294), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [482] = { + [461] = { [sym_identifier] = ACTIONS(2296), [anon_sym_POUND] = ACTIONS(2298), [anon_sym_package] = ACTIONS(2296), [anon_sym_import] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2298), [anon_sym_using] = ACTIONS(2296), [anon_sym_throw] = ACTIONS(2296), [anon_sym_LPAREN] = ACTIONS(2298), @@ -51325,6 +56801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2296), [anon_sym_cast] = ACTIONS(2296), [anon_sym_DOLLARtype] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2296), [anon_sym_return] = ACTIONS(2296), [anon_sym_untyped] = ACTIONS(2296), [anon_sym_break] = ACTIONS(2296), @@ -51333,7 +56810,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2296), [anon_sym_AT] = ACTIONS(2296), [anon_sym_AT_COLON] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_catch] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), [anon_sym_if] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), [anon_sym_new] = ACTIONS(2296), [anon_sym_TILDE] = ACTIONS(2298), [anon_sym_BANG] = ACTIONS(2296), @@ -51341,7 +56823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51361,7 +56842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2298), [anon_sym_QMARK_QMARK] = ACTIONS(2298), [anon_sym_EQ] = ACTIONS(2296), - [sym__rangeOperator] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2298), [anon_sym_null] = ACTIONS(2296), [anon_sym_macro] = ACTIONS(2296), [anon_sym_abstract] = ACTIONS(2296), @@ -51375,6 +56856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2296), [anon_sym_class] = ACTIONS(2296), [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), [anon_sym_typedef] = ACTIONS(2296), [anon_sym_function] = ACTIONS(2296), [anon_sym_var] = ACTIONS(2296), @@ -51390,11 +56872,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2298), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [483] = { + [462] = { [sym_identifier] = ACTIONS(2300), [anon_sym_POUND] = ACTIONS(2302), [anon_sym_package] = ACTIONS(2300), [anon_sym_import] = ACTIONS(2300), + [anon_sym_STAR] = ACTIONS(2302), [anon_sym_using] = ACTIONS(2300), [anon_sym_throw] = ACTIONS(2300), [anon_sym_LPAREN] = ACTIONS(2302), @@ -51404,6 +56887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2300), [anon_sym_cast] = ACTIONS(2300), [anon_sym_DOLLARtype] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2300), [anon_sym_return] = ACTIONS(2300), [anon_sym_untyped] = ACTIONS(2300), [anon_sym_break] = ACTIONS(2300), @@ -51412,7 +56896,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2300), [anon_sym_AT] = ACTIONS(2300), [anon_sym_AT_COLON] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_catch] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), [anon_sym_if] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), [anon_sym_new] = ACTIONS(2300), [anon_sym_TILDE] = ACTIONS(2302), [anon_sym_BANG] = ACTIONS(2300), @@ -51420,7 +56909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51440,7 +56928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2302), [anon_sym_QMARK_QMARK] = ACTIONS(2302), [anon_sym_EQ] = ACTIONS(2300), - [sym__rangeOperator] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), [anon_sym_null] = ACTIONS(2300), [anon_sym_macro] = ACTIONS(2300), [anon_sym_abstract] = ACTIONS(2300), @@ -51454,6 +56942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2300), [anon_sym_class] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), [anon_sym_typedef] = ACTIONS(2300), [anon_sym_function] = ACTIONS(2300), [anon_sym_var] = ACTIONS(2300), @@ -51469,11 +56958,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2302), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [484] = { + [463] = { [sym_identifier] = ACTIONS(2304), [anon_sym_POUND] = ACTIONS(2306), [anon_sym_package] = ACTIONS(2304), [anon_sym_import] = ACTIONS(2304), + [anon_sym_STAR] = ACTIONS(2306), [anon_sym_using] = ACTIONS(2304), [anon_sym_throw] = ACTIONS(2304), [anon_sym_LPAREN] = ACTIONS(2306), @@ -51483,6 +56973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2304), [anon_sym_cast] = ACTIONS(2304), [anon_sym_DOLLARtype] = ACTIONS(2306), + [anon_sym_for] = ACTIONS(2304), [anon_sym_return] = ACTIONS(2304), [anon_sym_untyped] = ACTIONS(2304), [anon_sym_break] = ACTIONS(2304), @@ -51491,7 +56982,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2304), [anon_sym_AT] = ACTIONS(2304), [anon_sym_AT_COLON] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), [anon_sym_if] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), [anon_sym_new] = ACTIONS(2304), [anon_sym_TILDE] = ACTIONS(2306), [anon_sym_BANG] = ACTIONS(2304), @@ -51499,7 +56995,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51519,7 +57014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2306), [anon_sym_QMARK_QMARK] = ACTIONS(2306), [anon_sym_EQ] = ACTIONS(2304), - [sym__rangeOperator] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), [anon_sym_null] = ACTIONS(2304), [anon_sym_macro] = ACTIONS(2304), [anon_sym_abstract] = ACTIONS(2304), @@ -51533,6 +57028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2304), [anon_sym_class] = ACTIONS(2304), [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), [anon_sym_typedef] = ACTIONS(2304), [anon_sym_function] = ACTIONS(2304), [anon_sym_var] = ACTIONS(2304), @@ -51548,11 +57044,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2306), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [485] = { + [464] = { + [sym_identifier] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_package] = ACTIONS(874), + [anon_sym_import] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(872), + [anon_sym_using] = ACTIONS(874), + [anon_sym_throw] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_case] = ACTIONS(874), + [anon_sym_default] = ACTIONS(874), + [anon_sym_cast] = ACTIONS(874), + [anon_sym_DOLLARtype] = ACTIONS(872), + [anon_sym_for] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_untyped] = ACTIONS(874), + [anon_sym_break] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_this] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_AT_COLON] = ACTIONS(872), + [anon_sym_try] = ACTIONS(874), + [anon_sym_catch] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_if] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [anon_sym_do] = ACTIONS(874), + [anon_sym_new] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(872), + [anon_sym_DASH_DASH] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(872), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(872), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_GT_GT_GT] = ACTIONS(872), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(872), + [anon_sym_AMP_AMP] = ACTIONS(872), + [anon_sym_PIPE_PIPE] = ACTIONS(872), + [anon_sym_EQ_EQ] = ACTIONS(872), + [anon_sym_BANG_EQ] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(872), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_QMARK] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_null] = ACTIONS(874), + [anon_sym_macro] = ACTIONS(874), + [anon_sym_abstract] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(874), + [anon_sym_inline] = ACTIONS(874), + [anon_sym_overload] = ACTIONS(874), + [anon_sym_override] = ACTIONS(874), + [anon_sym_final] = ACTIONS(874), + [anon_sym_class] = ACTIONS(874), + [anon_sym_interface] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_typedef] = ACTIONS(874), + [anon_sym_function] = ACTIONS(874), + [anon_sym_var] = ACTIONS(874), + [aux_sym_integer_token1] = ACTIONS(874), + [aux_sym_integer_token2] = ACTIONS(872), + [aux_sym_float_token1] = ACTIONS(874), + [aux_sym_float_token2] = ACTIONS(872), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [aux_sym_string_token1] = ACTIONS(872), + [aux_sym_string_token3] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(872), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [465] = { [sym_identifier] = ACTIONS(2308), [anon_sym_POUND] = ACTIONS(2310), [anon_sym_package] = ACTIONS(2308), [anon_sym_import] = ACTIONS(2308), + [anon_sym_STAR] = ACTIONS(2310), [anon_sym_using] = ACTIONS(2308), [anon_sym_throw] = ACTIONS(2308), [anon_sym_LPAREN] = ACTIONS(2310), @@ -51562,6 +57145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2308), [anon_sym_cast] = ACTIONS(2308), [anon_sym_DOLLARtype] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2308), [anon_sym_return] = ACTIONS(2308), [anon_sym_untyped] = ACTIONS(2308), [anon_sym_break] = ACTIONS(2308), @@ -51570,7 +57154,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2308), [anon_sym_AT] = ACTIONS(2308), [anon_sym_AT_COLON] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), [anon_sym_if] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), [anon_sym_new] = ACTIONS(2308), [anon_sym_TILDE] = ACTIONS(2310), [anon_sym_BANG] = ACTIONS(2308), @@ -51578,7 +57167,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51598,7 +57186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2310), [anon_sym_QMARK_QMARK] = ACTIONS(2310), [anon_sym_EQ] = ACTIONS(2308), - [sym__rangeOperator] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2310), [anon_sym_null] = ACTIONS(2308), [anon_sym_macro] = ACTIONS(2308), [anon_sym_abstract] = ACTIONS(2308), @@ -51612,6 +57200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2308), [anon_sym_class] = ACTIONS(2308), [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), [anon_sym_typedef] = ACTIONS(2308), [anon_sym_function] = ACTIONS(2308), [anon_sym_var] = ACTIONS(2308), @@ -51627,11 +57216,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2310), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [486] = { + [466] = { [sym_identifier] = ACTIONS(2312), [anon_sym_POUND] = ACTIONS(2314), [anon_sym_package] = ACTIONS(2312), [anon_sym_import] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2314), [anon_sym_using] = ACTIONS(2312), [anon_sym_throw] = ACTIONS(2312), [anon_sym_LPAREN] = ACTIONS(2314), @@ -51641,6 +57231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2312), [anon_sym_cast] = ACTIONS(2312), [anon_sym_DOLLARtype] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2312), [anon_sym_return] = ACTIONS(2312), [anon_sym_untyped] = ACTIONS(2312), [anon_sym_break] = ACTIONS(2312), @@ -51649,7 +57240,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2312), [anon_sym_AT] = ACTIONS(2312), [anon_sym_AT_COLON] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2312), + [anon_sym_catch] = ACTIONS(2312), + [anon_sym_else] = ACTIONS(2312), [anon_sym_if] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_do] = ACTIONS(2312), [anon_sym_new] = ACTIONS(2312), [anon_sym_TILDE] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(2312), @@ -51657,7 +57253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51677,7 +57272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2314), [anon_sym_QMARK_QMARK] = ACTIONS(2314), [anon_sym_EQ] = ACTIONS(2312), - [sym__rangeOperator] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2314), [anon_sym_null] = ACTIONS(2312), [anon_sym_macro] = ACTIONS(2312), [anon_sym_abstract] = ACTIONS(2312), @@ -51691,6 +57286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2312), [anon_sym_class] = ACTIONS(2312), [anon_sym_interface] = ACTIONS(2312), + [anon_sym_enum] = ACTIONS(2312), [anon_sym_typedef] = ACTIONS(2312), [anon_sym_function] = ACTIONS(2312), [anon_sym_var] = ACTIONS(2312), @@ -51706,11 +57302,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2314), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [487] = { + [467] = { [sym_identifier] = ACTIONS(2316), [anon_sym_POUND] = ACTIONS(2318), [anon_sym_package] = ACTIONS(2316), [anon_sym_import] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2318), [anon_sym_using] = ACTIONS(2316), [anon_sym_throw] = ACTIONS(2316), [anon_sym_LPAREN] = ACTIONS(2318), @@ -51720,6 +57317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2316), [anon_sym_cast] = ACTIONS(2316), [anon_sym_DOLLARtype] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2316), [anon_sym_return] = ACTIONS(2316), [anon_sym_untyped] = ACTIONS(2316), [anon_sym_break] = ACTIONS(2316), @@ -51728,7 +57326,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2316), [anon_sym_AT] = ACTIONS(2316), [anon_sym_AT_COLON] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_catch] = ACTIONS(2316), + [anon_sym_else] = ACTIONS(2316), [anon_sym_if] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), [anon_sym_new] = ACTIONS(2316), [anon_sym_TILDE] = ACTIONS(2318), [anon_sym_BANG] = ACTIONS(2316), @@ -51736,7 +57339,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51756,7 +57358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2318), [anon_sym_QMARK_QMARK] = ACTIONS(2318), [anon_sym_EQ] = ACTIONS(2316), - [sym__rangeOperator] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), [anon_sym_null] = ACTIONS(2316), [anon_sym_macro] = ACTIONS(2316), [anon_sym_abstract] = ACTIONS(2316), @@ -51770,6 +57372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2316), [anon_sym_class] = ACTIONS(2316), [anon_sym_interface] = ACTIONS(2316), + [anon_sym_enum] = ACTIONS(2316), [anon_sym_typedef] = ACTIONS(2316), [anon_sym_function] = ACTIONS(2316), [anon_sym_var] = ACTIONS(2316), @@ -51785,90 +57388,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2318), [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), + [468] = { + [sym_identifier] = ACTIONS(2320), + [anon_sym_POUND] = ACTIONS(2322), + [anon_sym_package] = ACTIONS(2320), + [anon_sym_import] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2322), + [anon_sym_using] = ACTIONS(2320), + [anon_sym_throw] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_switch] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2322), + [anon_sym_case] = ACTIONS(2320), + [anon_sym_default] = ACTIONS(2320), + [anon_sym_cast] = ACTIONS(2320), + [anon_sym_DOLLARtype] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2320), + [anon_sym_return] = ACTIONS(2320), + [anon_sym_untyped] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2322), + [anon_sym_this] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2320), + [anon_sym_AT_COLON] = ACTIONS(2322), + [anon_sym_try] = ACTIONS(2320), + [anon_sym_catch] = ACTIONS(2320), + [anon_sym_else] = ACTIONS(2320), + [anon_sym_if] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_do] = ACTIONS(2320), + [anon_sym_new] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2322), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2322), + [anon_sym_DASH_DASH] = ACTIONS(2322), + [anon_sym_PERCENT] = ACTIONS(2322), + [anon_sym_SLASH] = ACTIONS(2320), + [anon_sym_PLUS] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2322), + [anon_sym_GT_GT] = ACTIONS(2320), + [anon_sym_GT_GT_GT] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2322), + [anon_sym_AMP_AMP] = ACTIONS(2322), + [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [anon_sym_EQ_EQ] = ACTIONS(2322), + [anon_sym_BANG_EQ] = ACTIONS(2322), + [anon_sym_LT] = ACTIONS(2320), + [anon_sym_LT_EQ] = ACTIONS(2322), + [anon_sym_GT] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2322), + [anon_sym_EQ_GT] = ACTIONS(2322), + [anon_sym_QMARK_QMARK] = ACTIONS(2322), + [anon_sym_EQ] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_null] = ACTIONS(2320), + [anon_sym_macro] = ACTIONS(2320), + [anon_sym_abstract] = ACTIONS(2320), + [anon_sym_static] = ACTIONS(2320), + [anon_sym_public] = ACTIONS(2320), + [anon_sym_private] = ACTIONS(2320), + [anon_sym_extern] = ACTIONS(2320), + [anon_sym_inline] = ACTIONS(2320), + [anon_sym_overload] = ACTIONS(2320), + [anon_sym_override] = ACTIONS(2320), + [anon_sym_final] = ACTIONS(2320), + [anon_sym_class] = ACTIONS(2320), + [anon_sym_interface] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2320), + [anon_sym_typedef] = ACTIONS(2320), + [anon_sym_function] = ACTIONS(2320), + [anon_sym_var] = ACTIONS(2320), + [aux_sym_integer_token1] = ACTIONS(2320), + [aux_sym_integer_token2] = ACTIONS(2322), + [aux_sym_float_token1] = ACTIONS(2320), + [aux_sym_float_token2] = ACTIONS(2322), + [anon_sym_true] = ACTIONS(2320), + [anon_sym_false] = ACTIONS(2320), + [aux_sym_string_token1] = ACTIONS(2322), + [aux_sym_string_token3] = ACTIONS(2322), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2322), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [489] = { + [469] = { [sym_identifier] = ACTIONS(2324), [anon_sym_POUND] = ACTIONS(2326), [anon_sym_package] = ACTIONS(2324), [anon_sym_import] = ACTIONS(2324), + [anon_sym_STAR] = ACTIONS(2326), [anon_sym_using] = ACTIONS(2324), [anon_sym_throw] = ACTIONS(2324), [anon_sym_LPAREN] = ACTIONS(2326), @@ -51878,6 +57489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2324), [anon_sym_cast] = ACTIONS(2324), [anon_sym_DOLLARtype] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2324), [anon_sym_return] = ACTIONS(2324), [anon_sym_untyped] = ACTIONS(2324), [anon_sym_break] = ACTIONS(2324), @@ -51886,7 +57498,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2324), [anon_sym_AT] = ACTIONS(2324), [anon_sym_AT_COLON] = ACTIONS(2326), + [anon_sym_try] = ACTIONS(2324), + [anon_sym_catch] = ACTIONS(2324), + [anon_sym_else] = ACTIONS(2324), [anon_sym_if] = ACTIONS(2324), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_do] = ACTIONS(2324), [anon_sym_new] = ACTIONS(2324), [anon_sym_TILDE] = ACTIONS(2326), [anon_sym_BANG] = ACTIONS(2324), @@ -51894,7 +57511,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51914,7 +57530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2326), [anon_sym_QMARK_QMARK] = ACTIONS(2326), [anon_sym_EQ] = ACTIONS(2324), - [sym__rangeOperator] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2326), [anon_sym_null] = ACTIONS(2324), [anon_sym_macro] = ACTIONS(2324), [anon_sym_abstract] = ACTIONS(2324), @@ -51928,6 +57544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2324), [anon_sym_class] = ACTIONS(2324), [anon_sym_interface] = ACTIONS(2324), + [anon_sym_enum] = ACTIONS(2324), [anon_sym_typedef] = ACTIONS(2324), [anon_sym_function] = ACTIONS(2324), [anon_sym_var] = ACTIONS(2324), @@ -51943,11 +57560,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2326), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [490] = { + [470] = { [sym_identifier] = ACTIONS(2328), [anon_sym_POUND] = ACTIONS(2330), [anon_sym_package] = ACTIONS(2328), [anon_sym_import] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2330), [anon_sym_using] = ACTIONS(2328), [anon_sym_throw] = ACTIONS(2328), [anon_sym_LPAREN] = ACTIONS(2330), @@ -51957,6 +57575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2328), [anon_sym_cast] = ACTIONS(2328), [anon_sym_DOLLARtype] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2328), [anon_sym_return] = ACTIONS(2328), [anon_sym_untyped] = ACTIONS(2328), [anon_sym_break] = ACTIONS(2328), @@ -51965,7 +57584,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2328), [anon_sym_AT] = ACTIONS(2328), [anon_sym_AT_COLON] = ACTIONS(2330), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_catch] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), [anon_sym_new] = ACTIONS(2328), [anon_sym_TILDE] = ACTIONS(2330), [anon_sym_BANG] = ACTIONS(2328), @@ -51973,7 +57597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51993,7 +57616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2330), [anon_sym_QMARK_QMARK] = ACTIONS(2330), [anon_sym_EQ] = ACTIONS(2328), - [sym__rangeOperator] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), [anon_sym_null] = ACTIONS(2328), [anon_sym_macro] = ACTIONS(2328), [anon_sym_abstract] = ACTIONS(2328), @@ -52007,6 +57630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2328), [anon_sym_class] = ACTIONS(2328), [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), [anon_sym_typedef] = ACTIONS(2328), [anon_sym_function] = ACTIONS(2328), [anon_sym_var] = ACTIONS(2328), @@ -52022,11 +57646,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2330), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [491] = { + [471] = { [sym_identifier] = ACTIONS(2332), [anon_sym_POUND] = ACTIONS(2334), [anon_sym_package] = ACTIONS(2332), [anon_sym_import] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), [anon_sym_using] = ACTIONS(2332), [anon_sym_throw] = ACTIONS(2332), [anon_sym_LPAREN] = ACTIONS(2334), @@ -52036,6 +57661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2332), [anon_sym_cast] = ACTIONS(2332), [anon_sym_DOLLARtype] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2332), [anon_sym_return] = ACTIONS(2332), [anon_sym_untyped] = ACTIONS(2332), [anon_sym_break] = ACTIONS(2332), @@ -52044,7 +57670,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2332), [anon_sym_AT] = ACTIONS(2332), [anon_sym_AT_COLON] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), [anon_sym_if] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), [anon_sym_new] = ACTIONS(2332), [anon_sym_TILDE] = ACTIONS(2334), [anon_sym_BANG] = ACTIONS(2332), @@ -52052,7 +57683,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -52072,7 +57702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2334), [anon_sym_QMARK_QMARK] = ACTIONS(2334), [anon_sym_EQ] = ACTIONS(2332), - [sym__rangeOperator] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2334), [anon_sym_null] = ACTIONS(2332), [anon_sym_macro] = ACTIONS(2332), [anon_sym_abstract] = ACTIONS(2332), @@ -52086,6 +57716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2332), [anon_sym_class] = ACTIONS(2332), [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), [anon_sym_typedef] = ACTIONS(2332), [anon_sym_function] = ACTIONS(2332), [anon_sym_var] = ACTIONS(2332), @@ -52101,11 +57732,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2334), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [492] = { + [472] = { [sym_identifier] = ACTIONS(2336), [anon_sym_POUND] = ACTIONS(2338), [anon_sym_package] = ACTIONS(2336), [anon_sym_import] = ACTIONS(2336), + [anon_sym_STAR] = ACTIONS(2338), [anon_sym_using] = ACTIONS(2336), [anon_sym_throw] = ACTIONS(2336), [anon_sym_LPAREN] = ACTIONS(2338), @@ -52115,6 +57747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2336), [anon_sym_cast] = ACTIONS(2336), [anon_sym_DOLLARtype] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2336), [anon_sym_return] = ACTIONS(2336), [anon_sym_untyped] = ACTIONS(2336), [anon_sym_break] = ACTIONS(2336), @@ -52123,7 +57756,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2336), [anon_sym_AT] = ACTIONS(2336), [anon_sym_AT_COLON] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_catch] = ACTIONS(2336), + [anon_sym_else] = ACTIONS(2336), [anon_sym_if] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), [anon_sym_new] = ACTIONS(2336), [anon_sym_TILDE] = ACTIONS(2338), [anon_sym_BANG] = ACTIONS(2336), @@ -52131,7 +57769,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -52151,7 +57788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2338), [anon_sym_QMARK_QMARK] = ACTIONS(2338), [anon_sym_EQ] = ACTIONS(2336), - [sym__rangeOperator] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2338), [anon_sym_null] = ACTIONS(2336), [anon_sym_macro] = ACTIONS(2336), [anon_sym_abstract] = ACTIONS(2336), @@ -52165,6 +57802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2336), [anon_sym_class] = ACTIONS(2336), [anon_sym_interface] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), [anon_sym_typedef] = ACTIONS(2336), [anon_sym_function] = ACTIONS(2336), [anon_sym_var] = ACTIONS(2336), @@ -52180,11 +57818,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2338), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [493] = { + [473] = { + [sym_identifier] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_package] = ACTIONS(1432), + [anon_sym_import] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_cast] = ACTIONS(1432), + [anon_sym_DOLLARtype] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_untyped] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_this] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_AT_COLON] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_catch] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_LT_LT] = ACTIONS(1434), + [anon_sym_GT_GT] = ACTIONS(1432), + [anon_sym_GT_GT_GT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP_AMP] = ACTIONS(1434), + [anon_sym_PIPE_PIPE] = ACTIONS(1434), + [anon_sym_EQ_EQ] = ACTIONS(1434), + [anon_sym_BANG_EQ] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_LT_EQ] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_GT_EQ] = ACTIONS(1434), + [anon_sym_EQ_GT] = ACTIONS(1434), + [anon_sym_QMARK_QMARK] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), + [anon_sym_null] = ACTIONS(1432), + [anon_sym_macro] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym_overload] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_final] = ACTIONS(1432), + [anon_sym_class] = ACTIONS(1432), + [anon_sym_interface] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_var] = ACTIONS(1432), + [aux_sym_integer_token1] = ACTIONS(1432), + [aux_sym_integer_token2] = ACTIONS(1434), + [aux_sym_float_token1] = ACTIONS(1432), + [aux_sym_float_token2] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [aux_sym_string_token1] = ACTIONS(1434), + [aux_sym_string_token3] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1434), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [474] = { [sym_identifier] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(2342), [anon_sym_package] = ACTIONS(2340), [anon_sym_import] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), [anon_sym_using] = ACTIONS(2340), [anon_sym_throw] = ACTIONS(2340), [anon_sym_LPAREN] = ACTIONS(2342), @@ -52194,6 +57919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2340), [anon_sym_cast] = ACTIONS(2340), [anon_sym_DOLLARtype] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2340), [anon_sym_return] = ACTIONS(2340), [anon_sym_untyped] = ACTIONS(2340), [anon_sym_break] = ACTIONS(2340), @@ -52202,7 +57928,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2340), [anon_sym_AT] = ACTIONS(2340), [anon_sym_AT_COLON] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_catch] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), [anon_sym_if] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), [anon_sym_new] = ACTIONS(2340), [anon_sym_TILDE] = ACTIONS(2342), [anon_sym_BANG] = ACTIONS(2340), @@ -52210,7 +57941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -52230,7 +57960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2342), [anon_sym_QMARK_QMARK] = ACTIONS(2342), [anon_sym_EQ] = ACTIONS(2340), - [sym__rangeOperator] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), [anon_sym_null] = ACTIONS(2340), [anon_sym_macro] = ACTIONS(2340), [anon_sym_abstract] = ACTIONS(2340), @@ -52244,6 +57974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2340), [anon_sym_class] = ACTIONS(2340), [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), [anon_sym_typedef] = ACTIONS(2340), [anon_sym_function] = ACTIONS(2340), [anon_sym_var] = ACTIONS(2340), @@ -52259,11 +57990,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2342), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [494] = { + [475] = { [sym_identifier] = ACTIONS(2344), [anon_sym_POUND] = ACTIONS(2346), [anon_sym_package] = ACTIONS(2344), [anon_sym_import] = ACTIONS(2344), + [anon_sym_STAR] = ACTIONS(2346), [anon_sym_using] = ACTIONS(2344), [anon_sym_throw] = ACTIONS(2344), [anon_sym_LPAREN] = ACTIONS(2346), @@ -52273,6 +58005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2344), [anon_sym_cast] = ACTIONS(2344), [anon_sym_DOLLARtype] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2344), [anon_sym_return] = ACTIONS(2344), [anon_sym_untyped] = ACTIONS(2344), [anon_sym_break] = ACTIONS(2344), @@ -52281,7 +58014,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2344), [anon_sym_AT] = ACTIONS(2344), [anon_sym_AT_COLON] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2344), + [anon_sym_catch] = ACTIONS(2344), + [anon_sym_else] = ACTIONS(2344), [anon_sym_if] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = ACTIONS(2344), [anon_sym_new] = ACTIONS(2344), [anon_sym_TILDE] = ACTIONS(2346), [anon_sym_BANG] = ACTIONS(2344), @@ -52289,7 +58027,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -52309,7 +58046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2346), [anon_sym_QMARK_QMARK] = ACTIONS(2346), [anon_sym_EQ] = ACTIONS(2344), - [sym__rangeOperator] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2346), [anon_sym_null] = ACTIONS(2344), [anon_sym_macro] = ACTIONS(2344), [anon_sym_abstract] = ACTIONS(2344), @@ -52323,6 +58060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2344), [anon_sym_class] = ACTIONS(2344), [anon_sym_interface] = ACTIONS(2344), + [anon_sym_enum] = ACTIONS(2344), [anon_sym_typedef] = ACTIONS(2344), [anon_sym_function] = ACTIONS(2344), [anon_sym_var] = ACTIONS(2344), @@ -52338,11 +58076,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2346), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [495] = { + [476] = { [sym_identifier] = ACTIONS(2348), [anon_sym_POUND] = ACTIONS(2350), [anon_sym_package] = ACTIONS(2348), [anon_sym_import] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), [anon_sym_using] = ACTIONS(2348), [anon_sym_throw] = ACTIONS(2348), [anon_sym_LPAREN] = ACTIONS(2350), @@ -52352,6 +58091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2348), [anon_sym_cast] = ACTIONS(2348), [anon_sym_DOLLARtype] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2348), [anon_sym_return] = ACTIONS(2348), [anon_sym_untyped] = ACTIONS(2348), [anon_sym_break] = ACTIONS(2348), @@ -52360,7 +58100,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2348), [anon_sym_AT] = ACTIONS(2348), [anon_sym_AT_COLON] = ACTIONS(2350), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_catch] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), [anon_sym_if] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), [anon_sym_new] = ACTIONS(2348), [anon_sym_TILDE] = ACTIONS(2350), [anon_sym_BANG] = ACTIONS(2348), @@ -52368,7 +58113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -52388,7 +58132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2350), [anon_sym_QMARK_QMARK] = ACTIONS(2350), [anon_sym_EQ] = ACTIONS(2348), - [sym__rangeOperator] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), [anon_sym_null] = ACTIONS(2348), [anon_sym_macro] = ACTIONS(2348), [anon_sym_abstract] = ACTIONS(2348), @@ -52402,6 +58146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2348), [anon_sym_class] = ACTIONS(2348), [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), [anon_sym_typedef] = ACTIONS(2348), [anon_sym_function] = ACTIONS(2348), [anon_sym_var] = ACTIONS(2348), @@ -52417,11 +58162,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2350), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [496] = { + [477] = { [sym_identifier] = ACTIONS(2352), [anon_sym_POUND] = ACTIONS(2354), [anon_sym_package] = ACTIONS(2352), [anon_sym_import] = ACTIONS(2352), + [anon_sym_STAR] = ACTIONS(2354), [anon_sym_using] = ACTIONS(2352), [anon_sym_throw] = ACTIONS(2352), [anon_sym_LPAREN] = ACTIONS(2354), @@ -52431,6 +58177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2352), [anon_sym_cast] = ACTIONS(2352), [anon_sym_DOLLARtype] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2352), [anon_sym_return] = ACTIONS(2352), [anon_sym_untyped] = ACTIONS(2352), [anon_sym_break] = ACTIONS(2352), @@ -52439,7 +58186,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2352), [anon_sym_AT] = ACTIONS(2352), [anon_sym_AT_COLON] = ACTIONS(2354), + [anon_sym_try] = ACTIONS(2352), + [anon_sym_catch] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), [anon_sym_if] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = ACTIONS(2352), [anon_sym_new] = ACTIONS(2352), [anon_sym_TILDE] = ACTIONS(2354), [anon_sym_BANG] = ACTIONS(2352), @@ -52447,7 +58199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -52467,7 +58218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2354), [anon_sym_QMARK_QMARK] = ACTIONS(2354), [anon_sym_EQ] = ACTIONS(2352), - [sym__rangeOperator] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2354), [anon_sym_null] = ACTIONS(2352), [anon_sym_macro] = ACTIONS(2352), [anon_sym_abstract] = ACTIONS(2352), @@ -52481,6 +58232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2352), [anon_sym_class] = ACTIONS(2352), [anon_sym_interface] = ACTIONS(2352), + [anon_sym_enum] = ACTIONS(2352), [anon_sym_typedef] = ACTIONS(2352), [anon_sym_function] = ACTIONS(2352), [anon_sym_var] = ACTIONS(2352), @@ -52496,11 +58248,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2354), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [497] = { + [478] = { [sym_identifier] = ACTIONS(2356), [anon_sym_POUND] = ACTIONS(2358), [anon_sym_package] = ACTIONS(2356), [anon_sym_import] = ACTIONS(2356), + [anon_sym_STAR] = ACTIONS(2358), [anon_sym_using] = ACTIONS(2356), [anon_sym_throw] = ACTIONS(2356), [anon_sym_LPAREN] = ACTIONS(2358), @@ -52510,6 +58263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2356), [anon_sym_cast] = ACTIONS(2356), [anon_sym_DOLLARtype] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2356), [anon_sym_return] = ACTIONS(2356), [anon_sym_untyped] = ACTIONS(2356), [anon_sym_break] = ACTIONS(2356), @@ -52518,7 +58272,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2356), [anon_sym_AT] = ACTIONS(2356), [anon_sym_AT_COLON] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_catch] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), [anon_sym_if] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), [anon_sym_new] = ACTIONS(2356), [anon_sym_TILDE] = ACTIONS(2358), [anon_sym_BANG] = ACTIONS(2356), @@ -52526,7 +58285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -52546,7 +58304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2358), [anon_sym_QMARK_QMARK] = ACTIONS(2358), [anon_sym_EQ] = ACTIONS(2356), - [sym__rangeOperator] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2358), [anon_sym_null] = ACTIONS(2356), [anon_sym_macro] = ACTIONS(2356), [anon_sym_abstract] = ACTIONS(2356), @@ -52560,6 +58318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2356), [anon_sym_class] = ACTIONS(2356), [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), [anon_sym_typedef] = ACTIONS(2356), [anon_sym_function] = ACTIONS(2356), [anon_sym_var] = ACTIONS(2356), @@ -52575,4942 +58334,7840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2358), [sym__closing_brace_unmarker] = ACTIONS(3), }, + [479] = { + [sym_identifier] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2362), + [anon_sym_package] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_case] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_cast] = ACTIONS(2360), + [anon_sym_DOLLARtype] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_untyped] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_this] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_AT_COLON] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_catch] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_EQ_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2362), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2362), + [anon_sym_EQ_GT] = ACTIONS(2362), + [anon_sym_QMARK_QMARK] = ACTIONS(2362), + [anon_sym_EQ] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2360), + [anon_sym_macro] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_extern] = ACTIONS(2360), + [anon_sym_inline] = ACTIONS(2360), + [anon_sym_overload] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_final] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_typedef] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [aux_sym_integer_token1] = ACTIONS(2360), + [aux_sym_integer_token2] = ACTIONS(2362), + [aux_sym_float_token1] = ACTIONS(2360), + [aux_sym_float_token2] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2360), + [anon_sym_false] = ACTIONS(2360), + [aux_sym_string_token1] = ACTIONS(2362), + [aux_sym_string_token3] = ACTIONS(2362), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2362), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [480] = { + [sym_identifier] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2366), + [anon_sym_package] = ACTIONS(2364), + [anon_sym_import] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2364), + [anon_sym_throw] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_cast] = ACTIONS(2364), + [anon_sym_DOLLARtype] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_untyped] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_this] = ACTIONS(2364), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_AT_COLON] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_catch] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2364), + [anon_sym_GT_GT_GT] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2364), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_EQ_GT] = ACTIONS(2366), + [anon_sym_QMARK_QMARK] = ACTIONS(2366), + [anon_sym_EQ] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), + [anon_sym_null] = ACTIONS(2364), + [anon_sym_macro] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_public] = ACTIONS(2364), + [anon_sym_private] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym_overload] = ACTIONS(2364), + [anon_sym_override] = ACTIONS(2364), + [anon_sym_final] = ACTIONS(2364), + [anon_sym_class] = ACTIONS(2364), + [anon_sym_interface] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_function] = ACTIONS(2364), + [anon_sym_var] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2364), + [aux_sym_integer_token2] = ACTIONS(2366), + [aux_sym_float_token1] = ACTIONS(2364), + [aux_sym_float_token2] = ACTIONS(2366), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [aux_sym_string_token1] = ACTIONS(2366), + [aux_sym_string_token3] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2366), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [481] = { + [sym_identifier] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2370), + [anon_sym_package] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_cast] = ACTIONS(2368), + [anon_sym_DOLLARtype] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_untyped] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_this] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_AT_COLON] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_EQ_GT] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_EQ] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), + [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_enum] = 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(2370), + [aux_sym_float_token1] = ACTIONS(2368), + [aux_sym_float_token2] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [aux_sym_string_token1] = ACTIONS(2370), + [aux_sym_string_token3] = ACTIONS(2370), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2370), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [482] = { + [sym_identifier] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(2374), + [anon_sym_package] = ACTIONS(2372), + [anon_sym_import] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_cast] = ACTIONS(2372), + [anon_sym_DOLLARtype] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_untyped] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_this] = ACTIONS(2372), + [anon_sym_AT] = ACTIONS(2372), + [anon_sym_AT_COLON] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PERCENT] = ACTIONS(2374), + [anon_sym_SLASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_LT_LT] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_GT_GT_GT] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_CARET] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [anon_sym_EQ_EQ] = ACTIONS(2374), + [anon_sym_BANG_EQ] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2372), + [anon_sym_LT_EQ] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2372), + [anon_sym_GT_EQ] = ACTIONS(2374), + [anon_sym_EQ_GT] = ACTIONS(2374), + [anon_sym_QMARK_QMARK] = ACTIONS(2374), + [anon_sym_EQ] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2374), + [anon_sym_null] = ACTIONS(2372), + [anon_sym_macro] = ACTIONS(2372), + [anon_sym_abstract] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_public] = ACTIONS(2372), + [anon_sym_private] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_overload] = ACTIONS(2372), + [anon_sym_override] = ACTIONS(2372), + [anon_sym_final] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_interface] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_function] = ACTIONS(2372), + [anon_sym_var] = ACTIONS(2372), + [aux_sym_integer_token1] = ACTIONS(2372), + [aux_sym_integer_token2] = ACTIONS(2374), + [aux_sym_float_token1] = ACTIONS(2372), + [aux_sym_float_token2] = ACTIONS(2374), + [anon_sym_true] = ACTIONS(2372), + [anon_sym_false] = ACTIONS(2372), + [aux_sym_string_token1] = ACTIONS(2374), + [aux_sym_string_token3] = ACTIONS(2374), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2374), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [483] = { + [sym_identifier] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_package] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_cast] = ACTIONS(2376), + [anon_sym_DOLLARtype] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_untyped] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_this] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_AT_COLON] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_catch] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PERCENT] = ACTIONS(2378), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_GT_GT_GT] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_AMP_AMP] = ACTIONS(2378), + [anon_sym_PIPE_PIPE] = ACTIONS(2378), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2378), + [anon_sym_EQ_GT] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2378), + [anon_sym_null] = ACTIONS(2376), + [anon_sym_macro] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_extern] = ACTIONS(2376), + [anon_sym_inline] = ACTIONS(2376), + [anon_sym_overload] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_final] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [anon_sym_typedef] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [aux_sym_integer_token1] = ACTIONS(2376), + [aux_sym_integer_token2] = ACTIONS(2378), + [aux_sym_float_token1] = ACTIONS(2376), + [aux_sym_float_token2] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [aux_sym_string_token1] = ACTIONS(2378), + [aux_sym_string_token3] = ACTIONS(2378), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2378), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [484] = { + [sym_identifier] = ACTIONS(2380), + [anon_sym_POUND] = ACTIONS(2382), + [anon_sym_package] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_case] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_cast] = ACTIONS(2380), + [anon_sym_DOLLARtype] = ACTIONS(2382), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_untyped] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_this] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_AT_COLON] = ACTIONS(2382), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_catch] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2382), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_GT_GT_GT] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP_AMP] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2382), + [anon_sym_BANG_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2382), + [anon_sym_EQ_GT] = ACTIONS(2382), + [anon_sym_QMARK_QMARK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2382), + [anon_sym_null] = ACTIONS(2380), + [anon_sym_macro] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_extern] = ACTIONS(2380), + [anon_sym_inline] = ACTIONS(2380), + [anon_sym_overload] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_final] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [anon_sym_typedef] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [aux_sym_integer_token1] = ACTIONS(2380), + [aux_sym_integer_token2] = ACTIONS(2382), + [aux_sym_float_token1] = ACTIONS(2380), + [aux_sym_float_token2] = ACTIONS(2382), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [aux_sym_string_token1] = ACTIONS(2382), + [aux_sym_string_token3] = ACTIONS(2382), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2382), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [485] = { + [sym_identifier] = ACTIONS(2384), + [anon_sym_POUND] = ACTIONS(2386), + [anon_sym_package] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_cast] = ACTIONS(2384), + [anon_sym_DOLLARtype] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_untyped] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_this] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_AT_COLON] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_GT_GT_GT] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_EQ_GT] = ACTIONS(2386), + [anon_sym_QMARK_QMARK] = ACTIONS(2386), + [anon_sym_EQ] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_null] = ACTIONS(2384), + [anon_sym_macro] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_overload] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_final] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_typedef] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [aux_sym_integer_token1] = ACTIONS(2384), + [aux_sym_integer_token2] = ACTIONS(2386), + [aux_sym_float_token1] = ACTIONS(2384), + [aux_sym_float_token2] = ACTIONS(2386), + [anon_sym_true] = ACTIONS(2384), + [anon_sym_false] = ACTIONS(2384), + [aux_sym_string_token1] = ACTIONS(2386), + [aux_sym_string_token3] = ACTIONS(2386), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2386), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [486] = { + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2390), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1046), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [487] = { + [sym_identifier] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2394), + [anon_sym_package] = ACTIONS(2392), + [anon_sym_import] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_using] = ACTIONS(2392), + [anon_sym_throw] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_switch] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_case] = ACTIONS(2392), + [anon_sym_default] = ACTIONS(2392), + [anon_sym_cast] = ACTIONS(2392), + [anon_sym_DOLLARtype] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_untyped] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_this] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_AT_COLON] = ACTIONS(2394), + [anon_sym_try] = ACTIONS(2392), + [anon_sym_catch] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_EQ_GT] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2394), + [anon_sym_null] = ACTIONS(2392), + [anon_sym_macro] = ACTIONS(2392), + [anon_sym_abstract] = ACTIONS(2392), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_public] = ACTIONS(2392), + [anon_sym_private] = ACTIONS(2392), + [anon_sym_extern] = ACTIONS(2392), + [anon_sym_inline] = ACTIONS(2392), + [anon_sym_overload] = ACTIONS(2392), + [anon_sym_override] = ACTIONS(2392), + [anon_sym_final] = ACTIONS(2392), + [anon_sym_class] = ACTIONS(2392), + [anon_sym_interface] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [anon_sym_typedef] = ACTIONS(2392), + [anon_sym_function] = ACTIONS(2392), + [anon_sym_var] = ACTIONS(2392), + [aux_sym_integer_token1] = ACTIONS(2392), + [aux_sym_integer_token2] = ACTIONS(2394), + [aux_sym_float_token1] = ACTIONS(2392), + [aux_sym_float_token2] = ACTIONS(2394), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [aux_sym_string_token1] = ACTIONS(2394), + [aux_sym_string_token3] = ACTIONS(2394), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2394), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [488] = { + [sym_identifier] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1982), + [anon_sym_package] = ACTIONS(1980), + [anon_sym_import] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [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_for] = ACTIONS(1980), + [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_try] = ACTIONS(1980), + [anon_sym_catch] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [489] = { + [sym_identifier] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(2398), + [anon_sym_package] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_cast] = ACTIONS(2396), + [anon_sym_DOLLARtype] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_untyped] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_this] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_AT_COLON] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_catch] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(2398), + [anon_sym_QMARK_QMARK] = ACTIONS(2398), + [anon_sym_EQ] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [anon_sym_null] = ACTIONS(2396), + [anon_sym_macro] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym_overload] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_final] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [aux_sym_integer_token1] = ACTIONS(2396), + [aux_sym_integer_token2] = ACTIONS(2398), + [aux_sym_float_token1] = ACTIONS(2396), + [aux_sym_float_token2] = ACTIONS(2398), + [anon_sym_true] = ACTIONS(2396), + [anon_sym_false] = ACTIONS(2396), + [aux_sym_string_token1] = ACTIONS(2398), + [aux_sym_string_token3] = ACTIONS(2398), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2398), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [490] = { + [sym_identifier] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_package] = ACTIONS(2400), + [anon_sym_import] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_cast] = ACTIONS(2400), + [anon_sym_DOLLARtype] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_untyped] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_this] = ACTIONS(2400), + [anon_sym_AT] = ACTIONS(2400), + [anon_sym_AT_COLON] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_catch] = ACTIONS(2400), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_PERCENT] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_LT_LT] = ACTIONS(2402), + [anon_sym_GT_GT] = ACTIONS(2400), + [anon_sym_GT_GT_GT] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_EQ_EQ] = ACTIONS(2402), + [anon_sym_BANG_EQ] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2400), + [anon_sym_LT_EQ] = ACTIONS(2402), + [anon_sym_GT] = ACTIONS(2400), + [anon_sym_GT_EQ] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(2402), + [anon_sym_QMARK_QMARK] = ACTIONS(2402), + [anon_sym_EQ] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2400), + [anon_sym_macro] = ACTIONS(2400), + [anon_sym_abstract] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym_overload] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_final] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_interface] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2400), + [anon_sym_var] = ACTIONS(2400), + [aux_sym_integer_token1] = ACTIONS(2400), + [aux_sym_integer_token2] = ACTIONS(2402), + [aux_sym_float_token1] = ACTIONS(2400), + [aux_sym_float_token2] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2400), + [anon_sym_false] = ACTIONS(2400), + [aux_sym_string_token1] = ACTIONS(2402), + [aux_sym_string_token3] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2402), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [491] = { + [sym_identifier] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(2406), + [anon_sym_package] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_cast] = ACTIONS(2404), + [anon_sym_DOLLARtype] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_untyped] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_this] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_AT_COLON] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_catch] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2406), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_GT_GT_GT] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_EQ_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_LT_EQ] = ACTIONS(2406), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_EQ] = ACTIONS(2406), + [anon_sym_EQ_GT] = ACTIONS(2406), + [anon_sym_QMARK_QMARK] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2406), + [anon_sym_null] = ACTIONS(2404), + [anon_sym_macro] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym_overload] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_final] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_typedef] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [aux_sym_integer_token1] = ACTIONS(2404), + [aux_sym_integer_token2] = ACTIONS(2406), + [aux_sym_float_token1] = ACTIONS(2404), + [aux_sym_float_token2] = ACTIONS(2406), + [anon_sym_true] = ACTIONS(2404), + [anon_sym_false] = ACTIONS(2404), + [aux_sym_string_token1] = ACTIONS(2406), + [aux_sym_string_token3] = ACTIONS(2406), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2406), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [492] = { + [sym_identifier] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_package] = ACTIONS(1986), + [anon_sym_import] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1986), + [anon_sym_throw] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_cast] = ACTIONS(1986), + [anon_sym_DOLLARtype] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_untyped] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_this] = ACTIONS(1986), + [anon_sym_AT] = ACTIONS(1986), + [anon_sym_AT_COLON] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_new] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1988), + [anon_sym_SLASH] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_LT_LT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1986), + [anon_sym_GT_GT_GT] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_CARET] = ACTIONS(1988), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_PIPE_PIPE] = ACTIONS(1988), + [anon_sym_EQ_EQ] = ACTIONS(1988), + [anon_sym_BANG_EQ] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_LT_EQ] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1986), + [anon_sym_GT_EQ] = ACTIONS(1988), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_QMARK] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1988), + [anon_sym_null] = ACTIONS(1986), + [anon_sym_macro] = ACTIONS(1986), + [anon_sym_abstract] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_public] = ACTIONS(1986), + [anon_sym_private] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_inline] = ACTIONS(1986), + [anon_sym_overload] = ACTIONS(1986), + [anon_sym_override] = ACTIONS(1986), + [anon_sym_final] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1986), + [anon_sym_interface] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1986), + [anon_sym_function] = ACTIONS(1986), + [anon_sym_var] = ACTIONS(1986), + [aux_sym_integer_token1] = ACTIONS(1986), + [aux_sym_integer_token2] = ACTIONS(1988), + [aux_sym_float_token1] = ACTIONS(1986), + [aux_sym_float_token2] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [aux_sym_string_token1] = ACTIONS(1988), + [aux_sym_string_token3] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1988), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [493] = { + [sym_identifier] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_package] = ACTIONS(2408), + [anon_sym_import] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_cast] = ACTIONS(2408), + [anon_sym_DOLLARtype] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_untyped] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_this] = ACTIONS(2408), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_AT_COLON] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_catch] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2408), + [anon_sym_GT_GT_GT] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2408), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_EQ_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2408), + [anon_sym_LT_EQ] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2408), + [anon_sym_GT_EQ] = ACTIONS(2410), + [anon_sym_EQ_GT] = ACTIONS(2410), + [anon_sym_QMARK_QMARK] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2410), + [anon_sym_null] = ACTIONS(2408), + [anon_sym_macro] = ACTIONS(2408), + [anon_sym_abstract] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_overload] = ACTIONS(2408), + [anon_sym_override] = ACTIONS(2408), + [anon_sym_final] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_interface] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_function] = ACTIONS(2408), + [anon_sym_var] = ACTIONS(2408), + [aux_sym_integer_token1] = ACTIONS(2408), + [aux_sym_integer_token2] = ACTIONS(2410), + [aux_sym_float_token1] = ACTIONS(2408), + [aux_sym_float_token2] = ACTIONS(2410), + [anon_sym_true] = ACTIONS(2408), + [anon_sym_false] = ACTIONS(2408), + [aux_sym_string_token1] = ACTIONS(2410), + [aux_sym_string_token3] = ACTIONS(2410), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2410), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [494] = { + [sym_identifier] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2414), + [anon_sym_package] = ACTIONS(2412), + [anon_sym_import] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_cast] = ACTIONS(2412), + [anon_sym_DOLLARtype] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_untyped] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_this] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_AT_COLON] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_catch] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_EQ_GT] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2414), + [anon_sym_null] = ACTIONS(2412), + [anon_sym_macro] = ACTIONS(2412), + [anon_sym_abstract] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym_overload] = ACTIONS(2412), + [anon_sym_override] = ACTIONS(2412), + [anon_sym_final] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_interface] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_function] = ACTIONS(2412), + [anon_sym_var] = ACTIONS(2412), + [aux_sym_integer_token1] = ACTIONS(2412), + [aux_sym_integer_token2] = ACTIONS(2414), + [aux_sym_float_token1] = ACTIONS(2412), + [aux_sym_float_token2] = ACTIONS(2414), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [aux_sym_string_token1] = ACTIONS(2414), + [aux_sym_string_token3] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2414), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [495] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2418), + [anon_sym_package] = ACTIONS(2416), + [anon_sym_import] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_cast] = ACTIONS(2416), + [anon_sym_DOLLARtype] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_untyped] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_this] = ACTIONS(2416), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_AT_COLON] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_catch] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_GT_GT_GT] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2416), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2416), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(2418), + [anon_sym_QMARK_QMARK] = ACTIONS(2418), + [anon_sym_EQ] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2416), + [anon_sym_macro] = ACTIONS(2416), + [anon_sym_abstract] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym_overload] = ACTIONS(2416), + [anon_sym_override] = ACTIONS(2416), + [anon_sym_final] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_interface] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2416), + [anon_sym_var] = ACTIONS(2416), + [aux_sym_integer_token1] = ACTIONS(2416), + [aux_sym_integer_token2] = ACTIONS(2418), + [aux_sym_float_token1] = ACTIONS(2416), + [aux_sym_float_token2] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [aux_sym_string_token1] = ACTIONS(2418), + [aux_sym_string_token3] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2418), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [496] = { + [sym_identifier] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2422), + [anon_sym_package] = ACTIONS(2420), + [anon_sym_import] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_cast] = ACTIONS(2420), + [anon_sym_DOLLARtype] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_untyped] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_this] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_AT_COLON] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_EQ_GT] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2420), + [anon_sym_macro] = ACTIONS(2420), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym_overload] = ACTIONS(2420), + [anon_sym_override] = ACTIONS(2420), + [anon_sym_final] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2420), + [anon_sym_var] = ACTIONS(2420), + [aux_sym_integer_token1] = ACTIONS(2420), + [aux_sym_integer_token2] = ACTIONS(2422), + [aux_sym_float_token1] = ACTIONS(2420), + [aux_sym_float_token2] = ACTIONS(2422), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(2422), + [aux_sym_string_token3] = ACTIONS(2422), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2422), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [497] = { + [sym_identifier] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2426), + [anon_sym_package] = ACTIONS(2424), + [anon_sym_import] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_cast] = ACTIONS(2424), + [anon_sym_DOLLARtype] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_untyped] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_this] = ACTIONS(2424), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_AT_COLON] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2426), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_GT_GT_GT] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_PIPE_PIPE] = ACTIONS(2426), + [anon_sym_EQ_EQ] = ACTIONS(2426), + [anon_sym_BANG_EQ] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_LT_EQ] = ACTIONS(2426), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_GT_EQ] = ACTIONS(2426), + [anon_sym_EQ_GT] = ACTIONS(2426), + [anon_sym_QMARK_QMARK] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2426), + [anon_sym_null] = ACTIONS(2424), + [anon_sym_macro] = ACTIONS(2424), + [anon_sym_abstract] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym_overload] = ACTIONS(2424), + [anon_sym_override] = ACTIONS(2424), + [anon_sym_final] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2424), + [anon_sym_var] = ACTIONS(2424), + [aux_sym_integer_token1] = ACTIONS(2424), + [aux_sym_integer_token2] = ACTIONS(2426), + [aux_sym_float_token1] = ACTIONS(2424), + [aux_sym_float_token2] = ACTIONS(2426), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [aux_sym_string_token1] = ACTIONS(2426), + [aux_sym_string_token3] = ACTIONS(2426), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2426), + [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(2428), + [anon_sym_POUND] = ACTIONS(2430), + [anon_sym_package] = ACTIONS(2428), + [anon_sym_import] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_cast] = ACTIONS(2428), + [anon_sym_DOLLARtype] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_untyped] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_this] = ACTIONS(2428), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_AT_COLON] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_catch] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PERCENT] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(2430), + [anon_sym_GT_GT] = ACTIONS(2428), + [anon_sym_GT_GT_GT] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_EQ_EQ] = ACTIONS(2430), + [anon_sym_BANG_EQ] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2428), + [anon_sym_LT_EQ] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2428), + [anon_sym_GT_EQ] = ACTIONS(2430), + [anon_sym_EQ_GT] = ACTIONS(2430), + [anon_sym_QMARK_QMARK] = ACTIONS(2430), + [anon_sym_EQ] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2428), + [anon_sym_macro] = ACTIONS(2428), + [anon_sym_abstract] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym_overload] = ACTIONS(2428), + [anon_sym_override] = ACTIONS(2428), + [anon_sym_final] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_interface] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_var] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2428), + [aux_sym_integer_token2] = ACTIONS(2430), + [aux_sym_float_token1] = ACTIONS(2428), + [aux_sym_float_token2] = ACTIONS(2430), + [anon_sym_true] = ACTIONS(2428), + [anon_sym_false] = ACTIONS(2428), + [aux_sym_string_token1] = ACTIONS(2430), + [aux_sym_string_token3] = ACTIONS(2430), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2430), [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(2432), + [anon_sym_POUND] = ACTIONS(2434), + [anon_sym_package] = ACTIONS(2432), + [anon_sym_import] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_case] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_cast] = ACTIONS(2432), + [anon_sym_DOLLARtype] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_untyped] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_this] = ACTIONS(2432), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_AT_COLON] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_catch] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PERCENT] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2434), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_GT_GT_GT] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_EQ_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2432), + [anon_sym_LT_EQ] = ACTIONS(2434), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2434), + [anon_sym_EQ_GT] = ACTIONS(2434), + [anon_sym_QMARK_QMARK] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), + [anon_sym_null] = ACTIONS(2432), + [anon_sym_macro] = ACTIONS(2432), + [anon_sym_abstract] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym_overload] = ACTIONS(2432), + [anon_sym_override] = ACTIONS(2432), + [anon_sym_final] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2432), + [anon_sym_var] = ACTIONS(2432), + [aux_sym_integer_token1] = ACTIONS(2432), + [aux_sym_integer_token2] = ACTIONS(2434), + [aux_sym_float_token1] = ACTIONS(2432), + [aux_sym_float_token2] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2432), + [anon_sym_false] = ACTIONS(2432), + [aux_sym_string_token1] = ACTIONS(2434), + [aux_sym_string_token3] = ACTIONS(2434), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2434), [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), + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_import] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_using] = ACTIONS(1054), + [anon_sym_throw] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_cast] = ACTIONS(1054), + [anon_sym_DOLLARtype] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_this] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1054), + [anon_sym_AT_COLON] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_EQ_GT] = ACTIONS(1050), + [anon_sym_QMARK_QMARK] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_macro] = ACTIONS(1054), + [anon_sym_abstract] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_public] = ACTIONS(1054), + [anon_sym_private] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_inline] = ACTIONS(1054), + [anon_sym_overload] = ACTIONS(1054), + [anon_sym_override] = ACTIONS(1054), + [anon_sym_final] = ACTIONS(1054), + [anon_sym_class] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1054), + [anon_sym_function] = ACTIONS(1054), + [anon_sym_var] = ACTIONS(1054), + [aux_sym_integer_token1] = ACTIONS(1054), + [aux_sym_integer_token2] = ACTIONS(1050), + [aux_sym_float_token1] = ACTIONS(1054), + [aux_sym_float_token2] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym_string_token1] = ACTIONS(1050), + [aux_sym_string_token3] = ACTIONS(1050), [sym_comment] = ACTIONS(3), [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(2436), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_package] = ACTIONS(2436), + [anon_sym_import] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_cast] = ACTIONS(2436), + [anon_sym_DOLLARtype] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_untyped] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_this] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_AT_COLON] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_catch] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_EQ_GT] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), + [anon_sym_null] = ACTIONS(2436), + [anon_sym_macro] = ACTIONS(2436), + [anon_sym_abstract] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym_overload] = ACTIONS(2436), + [anon_sym_override] = ACTIONS(2436), + [anon_sym_final] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_interface] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_var] = ACTIONS(2436), + [aux_sym_integer_token1] = ACTIONS(2436), + [aux_sym_integer_token2] = ACTIONS(2438), + [aux_sym_float_token1] = ACTIONS(2436), + [aux_sym_float_token2] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [aux_sym_string_token1] = ACTIONS(2438), + [aux_sym_string_token3] = ACTIONS(2438), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2438), [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(2440), + [anon_sym_POUND] = ACTIONS(2442), + [anon_sym_package] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_cast] = ACTIONS(2440), + [anon_sym_DOLLARtype] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_untyped] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_this] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_AT_COLON] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_catch] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2440), + [anon_sym_GT_EQ] = ACTIONS(2442), + [anon_sym_EQ_GT] = ACTIONS(2442), + [anon_sym_QMARK_QMARK] = ACTIONS(2442), + [anon_sym_EQ] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2442), + [anon_sym_null] = ACTIONS(2440), + [anon_sym_macro] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym_overload] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_final] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [aux_sym_integer_token1] = ACTIONS(2440), + [aux_sym_integer_token2] = ACTIONS(2442), + [aux_sym_float_token1] = ACTIONS(2440), + [aux_sym_float_token2] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [aux_sym_string_token1] = ACTIONS(2442), + [aux_sym_string_token3] = ACTIONS(2442), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2442), [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(2444), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_package] = ACTIONS(2444), + [anon_sym_import] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_case] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_cast] = ACTIONS(2444), + [anon_sym_DOLLARtype] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_untyped] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_this] = ACTIONS(2444), + [anon_sym_AT] = ACTIONS(2444), + [anon_sym_AT_COLON] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_catch] = ACTIONS(2444), + [anon_sym_else] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2446), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_GT_GT_GT] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_CARET] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_PIPE_PIPE] = ACTIONS(2446), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_LT_EQ] = ACTIONS(2446), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_GT_EQ] = ACTIONS(2446), + [anon_sym_EQ_GT] = ACTIONS(2446), + [anon_sym_QMARK_QMARK] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2446), + [anon_sym_null] = ACTIONS(2444), + [anon_sym_macro] = ACTIONS(2444), + [anon_sym_abstract] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym_overload] = ACTIONS(2444), + [anon_sym_override] = ACTIONS(2444), + [anon_sym_final] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_interface] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_function] = ACTIONS(2444), + [anon_sym_var] = ACTIONS(2444), + [aux_sym_integer_token1] = ACTIONS(2444), + [aux_sym_integer_token2] = ACTIONS(2446), + [aux_sym_float_token1] = ACTIONS(2444), + [aux_sym_float_token2] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2444), + [anon_sym_false] = ACTIONS(2444), + [aux_sym_string_token1] = ACTIONS(2446), + [aux_sym_string_token3] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2446), [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(2448), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_package] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_cast] = ACTIONS(2448), + [anon_sym_DOLLARtype] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_untyped] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_this] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_AT_COLON] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2448), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_EQ_GT] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_EQ] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2450), + [anon_sym_null] = ACTIONS(2448), + [anon_sym_macro] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_inline] = ACTIONS(2448), + [anon_sym_overload] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_final] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [anon_sym_typedef] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [aux_sym_integer_token1] = ACTIONS(2448), + [aux_sym_integer_token2] = ACTIONS(2450), + [aux_sym_float_token1] = ACTIONS(2448), + [aux_sym_float_token2] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [aux_sym_string_token1] = ACTIONS(2450), + [aux_sym_string_token3] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2450), [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(2452), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_package] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_case] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_cast] = ACTIONS(2452), + [anon_sym_DOLLARtype] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_untyped] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_this] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2452), + [anon_sym_AT_COLON] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_catch] = ACTIONS(2452), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), + [anon_sym_null] = ACTIONS(2452), + [anon_sym_macro] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_extern] = ACTIONS(2452), + [anon_sym_inline] = ACTIONS(2452), + [anon_sym_overload] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_final] = ACTIONS(2452), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [anon_sym_typedef] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [aux_sym_integer_token1] = ACTIONS(2452), + [aux_sym_integer_token2] = ACTIONS(2454), + [aux_sym_float_token1] = ACTIONS(2452), + [aux_sym_float_token2] = ACTIONS(2454), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [aux_sym_string_token3] = ACTIONS(2454), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2454), [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(2456), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_package] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_cast] = ACTIONS(2456), + [anon_sym_DOLLARtype] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_untyped] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_this] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_AT_COLON] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_catch] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_EQ_GT] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2458), + [anon_sym_null] = ACTIONS(2456), + [anon_sym_macro] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_inline] = ACTIONS(2456), + [anon_sym_overload] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_final] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [anon_sym_typedef] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [aux_sym_integer_token1] = ACTIONS(2456), + [aux_sym_integer_token2] = ACTIONS(2458), + [aux_sym_float_token1] = ACTIONS(2456), + [aux_sym_float_token2] = ACTIONS(2458), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [aux_sym_string_token1] = ACTIONS(2458), + [aux_sym_string_token3] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2458), [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(2460), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_package] = ACTIONS(2460), + [anon_sym_import] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2460), + [anon_sym_throw] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2460), + [anon_sym_default] = ACTIONS(2460), + [anon_sym_cast] = ACTIONS(2460), + [anon_sym_DOLLARtype] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_untyped] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_this] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2460), + [anon_sym_AT_COLON] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2460), + [anon_sym_catch] = ACTIONS(2460), + [anon_sym_else] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_do] = ACTIONS(2460), + [anon_sym_new] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_EQ_GT] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_EQ] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2462), + [anon_sym_null] = ACTIONS(2460), + [anon_sym_macro] = ACTIONS(2460), + [anon_sym_abstract] = ACTIONS(2460), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_public] = ACTIONS(2460), + [anon_sym_private] = ACTIONS(2460), + [anon_sym_extern] = ACTIONS(2460), + [anon_sym_inline] = ACTIONS(2460), + [anon_sym_overload] = ACTIONS(2460), + [anon_sym_override] = ACTIONS(2460), + [anon_sym_final] = ACTIONS(2460), + [anon_sym_class] = ACTIONS(2460), + [anon_sym_interface] = ACTIONS(2460), + [anon_sym_enum] = ACTIONS(2460), + [anon_sym_typedef] = ACTIONS(2460), + [anon_sym_function] = ACTIONS(2460), + [anon_sym_var] = ACTIONS(2460), + [aux_sym_integer_token1] = ACTIONS(2460), + [aux_sym_integer_token2] = ACTIONS(2462), + [aux_sym_float_token1] = ACTIONS(2460), + [aux_sym_float_token2] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [aux_sym_string_token1] = ACTIONS(2462), + [aux_sym_string_token3] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2462), [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(2464), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_package] = ACTIONS(2464), + [anon_sym_import] = ACTIONS(2464), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_using] = ACTIONS(2464), + [anon_sym_throw] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_cast] = ACTIONS(2464), + [anon_sym_DOLLARtype] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_untyped] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_this] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2464), + [anon_sym_AT_COLON] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2464), + [anon_sym_catch] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_EQ_GT] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_null] = ACTIONS(2464), + [anon_sym_macro] = ACTIONS(2464), + [anon_sym_abstract] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_inline] = ACTIONS(2464), + [anon_sym_overload] = ACTIONS(2464), + [anon_sym_override] = ACTIONS(2464), + [anon_sym_final] = ACTIONS(2464), + [anon_sym_class] = ACTIONS(2464), + [anon_sym_interface] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_typedef] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2464), + [anon_sym_var] = ACTIONS(2464), + [aux_sym_integer_token1] = ACTIONS(2464), + [aux_sym_integer_token2] = ACTIONS(2466), + [aux_sym_float_token1] = ACTIONS(2464), + [aux_sym_float_token2] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [aux_sym_string_token1] = ACTIONS(2466), + [aux_sym_string_token3] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2466), [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(2468), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_package] = ACTIONS(2468), + [anon_sym_import] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2468), + [anon_sym_throw] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_cast] = ACTIONS(2468), + [anon_sym_DOLLARtype] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_untyped] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_this] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2468), + [anon_sym_AT_COLON] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_catch] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_new] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_EQ_GT] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2470), + [anon_sym_null] = ACTIONS(2468), + [anon_sym_macro] = ACTIONS(2468), + [anon_sym_abstract] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_public] = ACTIONS(2468), + [anon_sym_private] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_inline] = ACTIONS(2468), + [anon_sym_overload] = ACTIONS(2468), + [anon_sym_override] = ACTIONS(2468), + [anon_sym_final] = ACTIONS(2468), + [anon_sym_class] = ACTIONS(2468), + [anon_sym_interface] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [anon_sym_typedef] = ACTIONS(2468), + [anon_sym_function] = ACTIONS(2468), + [anon_sym_var] = ACTIONS(2468), + [aux_sym_integer_token1] = ACTIONS(2468), + [aux_sym_integer_token2] = ACTIONS(2470), + [aux_sym_float_token1] = ACTIONS(2468), + [aux_sym_float_token2] = ACTIONS(2470), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [aux_sym_string_token1] = ACTIONS(2470), + [aux_sym_string_token3] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2470), [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(2472), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_package] = ACTIONS(2472), + [anon_sym_import] = ACTIONS(2472), + [anon_sym_STAR] = ACTIONS(2474), + [anon_sym_using] = ACTIONS(2472), + [anon_sym_throw] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2472), + [anon_sym_default] = ACTIONS(2472), + [anon_sym_cast] = ACTIONS(2472), + [anon_sym_DOLLARtype] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_untyped] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_this] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_AT_COLON] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2472), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_do] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_EQ_GT] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_EQ] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_null] = ACTIONS(2472), + [anon_sym_macro] = ACTIONS(2472), + [anon_sym_abstract] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2472), + [anon_sym_public] = ACTIONS(2472), + [anon_sym_private] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_inline] = ACTIONS(2472), + [anon_sym_overload] = ACTIONS(2472), + [anon_sym_override] = ACTIONS(2472), + [anon_sym_final] = ACTIONS(2472), + [anon_sym_class] = ACTIONS(2472), + [anon_sym_interface] = ACTIONS(2472), + [anon_sym_enum] = ACTIONS(2472), + [anon_sym_typedef] = ACTIONS(2472), + [anon_sym_function] = ACTIONS(2472), + [anon_sym_var] = ACTIONS(2472), + [aux_sym_integer_token1] = ACTIONS(2472), + [aux_sym_integer_token2] = ACTIONS(2474), + [aux_sym_float_token1] = ACTIONS(2472), + [aux_sym_float_token2] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [aux_sym_string_token1] = ACTIONS(2474), + [aux_sym_string_token3] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2474), [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(2476), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_package] = ACTIONS(2476), + [anon_sym_import] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_cast] = ACTIONS(2476), + [anon_sym_DOLLARtype] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_untyped] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_this] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_AT_COLON] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PERCENT] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_LT_LT] = ACTIONS(2478), + [anon_sym_GT_GT] = ACTIONS(2476), + [anon_sym_GT_GT_GT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(2478), + [anon_sym_EQ_EQ] = ACTIONS(2478), + [anon_sym_BANG_EQ] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_LT_EQ] = ACTIONS(2478), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_GT_EQ] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(2478), + [anon_sym_QMARK_QMARK] = ACTIONS(2478), + [anon_sym_EQ] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_null] = ACTIONS(2476), + [anon_sym_macro] = ACTIONS(2476), + [anon_sym_abstract] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_public] = ACTIONS(2476), + [anon_sym_private] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_overload] = ACTIONS(2476), + [anon_sym_override] = ACTIONS(2476), + [anon_sym_final] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_interface] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2476), + [anon_sym_var] = ACTIONS(2476), + [aux_sym_integer_token1] = ACTIONS(2476), + [aux_sym_integer_token2] = ACTIONS(2478), + [aux_sym_float_token1] = ACTIONS(2476), + [aux_sym_float_token2] = ACTIONS(2478), + [anon_sym_true] = ACTIONS(2476), + [anon_sym_false] = ACTIONS(2476), + [aux_sym_string_token1] = ACTIONS(2478), + [aux_sym_string_token3] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2478), [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(2480), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2480), + [anon_sym_import] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2480), + [anon_sym_throw] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_cast] = ACTIONS(2480), + [anon_sym_DOLLARtype] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_untyped] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2480), + [anon_sym_AT_COLON] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2480), + [anon_sym_catch] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_LT_LT] = ACTIONS(2482), + [anon_sym_GT_GT] = ACTIONS(2480), + [anon_sym_GT_GT_GT] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_LT_EQ] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2480), + [anon_sym_GT_EQ] = ACTIONS(2482), + [anon_sym_EQ_GT] = ACTIONS(2482), + [anon_sym_QMARK_QMARK] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2480), + [anon_sym_macro] = ACTIONS(2480), + [anon_sym_abstract] = ACTIONS(2480), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_public] = ACTIONS(2480), + [anon_sym_private] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_overload] = ACTIONS(2480), + [anon_sym_override] = ACTIONS(2480), + [anon_sym_final] = ACTIONS(2480), + [anon_sym_class] = ACTIONS(2480), + [anon_sym_interface] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_function] = ACTIONS(2480), + [anon_sym_var] = ACTIONS(2480), + [aux_sym_integer_token1] = ACTIONS(2480), + [aux_sym_integer_token2] = ACTIONS(2482), + [aux_sym_float_token1] = ACTIONS(2480), + [aux_sym_float_token2] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2480), + [anon_sym_false] = ACTIONS(2480), + [aux_sym_string_token1] = ACTIONS(2482), + [aux_sym_string_token3] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2482), [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(2484), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_package] = ACTIONS(2484), + [anon_sym_import] = ACTIONS(2484), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_using] = ACTIONS(2484), + [anon_sym_throw] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_case] = ACTIONS(2484), + [anon_sym_default] = ACTIONS(2484), + [anon_sym_cast] = ACTIONS(2484), + [anon_sym_DOLLARtype] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_untyped] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_this] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2484), + [anon_sym_AT_COLON] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_catch] = ACTIONS(2484), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_new] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [anon_sym_PERCENT] = ACTIONS(2486), + [anon_sym_SLASH] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_GT_GT_GT] = ACTIONS(2486), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2486), + [anon_sym_AMP_AMP] = ACTIONS(2486), + [anon_sym_PIPE_PIPE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_BANG_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2484), + [anon_sym_LT_EQ] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2486), + [anon_sym_EQ_GT] = ACTIONS(2486), + [anon_sym_QMARK_QMARK] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2486), + [anon_sym_null] = ACTIONS(2484), + [anon_sym_macro] = ACTIONS(2484), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2484), + [anon_sym_public] = ACTIONS(2484), + [anon_sym_private] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_inline] = ACTIONS(2484), + [anon_sym_overload] = ACTIONS(2484), + [anon_sym_override] = ACTIONS(2484), + [anon_sym_final] = ACTIONS(2484), + [anon_sym_class] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2484), + [anon_sym_enum] = ACTIONS(2484), + [anon_sym_typedef] = ACTIONS(2484), + [anon_sym_function] = ACTIONS(2484), + [anon_sym_var] = ACTIONS(2484), + [aux_sym_integer_token1] = ACTIONS(2484), + [aux_sym_integer_token2] = ACTIONS(2486), + [aux_sym_float_token1] = ACTIONS(2484), + [aux_sym_float_token2] = ACTIONS(2486), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(2486), + [aux_sym_string_token3] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2486), [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(2488), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_package] = ACTIONS(2488), + [anon_sym_import] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2488), + [anon_sym_throw] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_cast] = ACTIONS(2488), + [anon_sym_DOLLARtype] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_untyped] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_this] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2488), + [anon_sym_AT_COLON] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_catch] = ACTIONS(2488), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_EQ_GT] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_EQ] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2490), + [anon_sym_null] = ACTIONS(2488), + [anon_sym_macro] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_inline] = ACTIONS(2488), + [anon_sym_overload] = ACTIONS(2488), + [anon_sym_override] = ACTIONS(2488), + [anon_sym_final] = ACTIONS(2488), + [anon_sym_class] = ACTIONS(2488), + [anon_sym_interface] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [anon_sym_typedef] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_var] = ACTIONS(2488), + [aux_sym_integer_token1] = ACTIONS(2488), + [aux_sym_integer_token2] = ACTIONS(2490), + [aux_sym_float_token1] = ACTIONS(2488), + [aux_sym_float_token2] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [aux_sym_string_token1] = ACTIONS(2490), + [aux_sym_string_token3] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2490), [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(2492), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_package] = ACTIONS(2492), + [anon_sym_import] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2494), + [anon_sym_using] = ACTIONS(2492), + [anon_sym_throw] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_cast] = ACTIONS(2492), + [anon_sym_DOLLARtype] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_untyped] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_this] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2492), + [anon_sym_AT_COLON] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_catch] = ACTIONS(2492), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_new] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_EQ_GT] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_EQ] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2494), + [anon_sym_null] = ACTIONS(2492), + [anon_sym_macro] = ACTIONS(2492), + [anon_sym_abstract] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_public] = ACTIONS(2492), + [anon_sym_private] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_inline] = ACTIONS(2492), + [anon_sym_overload] = ACTIONS(2492), + [anon_sym_override] = ACTIONS(2492), + [anon_sym_final] = ACTIONS(2492), + [anon_sym_class] = ACTIONS(2492), + [anon_sym_interface] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [anon_sym_typedef] = ACTIONS(2492), + [anon_sym_function] = ACTIONS(2492), + [anon_sym_var] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2492), + [aux_sym_integer_token2] = ACTIONS(2494), + [aux_sym_float_token1] = ACTIONS(2492), + [aux_sym_float_token2] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [aux_sym_string_token1] = ACTIONS(2494), + [aux_sym_string_token3] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2494), [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(2496), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_package] = ACTIONS(2496), + [anon_sym_import] = ACTIONS(2496), + [anon_sym_STAR] = ACTIONS(2498), + [anon_sym_using] = ACTIONS(2496), + [anon_sym_throw] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_case] = ACTIONS(2496), + [anon_sym_default] = ACTIONS(2496), + [anon_sym_cast] = ACTIONS(2496), + [anon_sym_DOLLARtype] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_untyped] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_this] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2496), + [anon_sym_AT_COLON] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_catch] = ACTIONS(2496), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_new] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_EQ_GT] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_EQ] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2498), + [anon_sym_null] = ACTIONS(2496), + [anon_sym_macro] = ACTIONS(2496), + [anon_sym_abstract] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_public] = ACTIONS(2496), + [anon_sym_private] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_inline] = ACTIONS(2496), + [anon_sym_overload] = ACTIONS(2496), + [anon_sym_override] = ACTIONS(2496), + [anon_sym_final] = ACTIONS(2496), + [anon_sym_class] = ACTIONS(2496), + [anon_sym_interface] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [anon_sym_typedef] = ACTIONS(2496), + [anon_sym_function] = ACTIONS(2496), + [anon_sym_var] = ACTIONS(2496), + [aux_sym_integer_token1] = ACTIONS(2496), + [aux_sym_integer_token2] = ACTIONS(2498), + [aux_sym_float_token1] = ACTIONS(2496), + [aux_sym_float_token2] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [aux_sym_string_token1] = ACTIONS(2498), + [aux_sym_string_token3] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2498), [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(2500), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_package] = ACTIONS(2500), + [anon_sym_import] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(2502), + [anon_sym_using] = ACTIONS(2500), + [anon_sym_throw] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_switch] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_case] = ACTIONS(2500), + [anon_sym_default] = ACTIONS(2500), + [anon_sym_cast] = ACTIONS(2500), + [anon_sym_DOLLARtype] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_untyped] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2500), + [anon_sym_AT_COLON] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_catch] = ACTIONS(2500), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_EQ_GT] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_EQ] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_null] = ACTIONS(2500), + [anon_sym_macro] = ACTIONS(2500), + [anon_sym_abstract] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_public] = ACTIONS(2500), + [anon_sym_private] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_inline] = ACTIONS(2500), + [anon_sym_overload] = ACTIONS(2500), + [anon_sym_override] = ACTIONS(2500), + [anon_sym_final] = ACTIONS(2500), + [anon_sym_class] = ACTIONS(2500), + [anon_sym_interface] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), + [anon_sym_typedef] = ACTIONS(2500), + [anon_sym_function] = ACTIONS(2500), + [anon_sym_var] = ACTIONS(2500), + [aux_sym_integer_token1] = ACTIONS(2500), + [aux_sym_integer_token2] = ACTIONS(2502), + [aux_sym_float_token1] = ACTIONS(2500), + [aux_sym_float_token2] = ACTIONS(2502), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [aux_sym_string_token1] = ACTIONS(2502), + [aux_sym_string_token3] = ACTIONS(2502), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2502), [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(2504), + [anon_sym_POUND] = ACTIONS(2506), + [anon_sym_package] = ACTIONS(2504), + [anon_sym_import] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2506), + [anon_sym_using] = ACTIONS(2504), + [anon_sym_throw] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_switch] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_case] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_cast] = ACTIONS(2504), + [anon_sym_DOLLARtype] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_untyped] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_this] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2504), + [anon_sym_AT_COLON] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_catch] = ACTIONS(2504), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2506), + [anon_sym_null] = ACTIONS(2504), + [anon_sym_macro] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_inline] = ACTIONS(2504), + [anon_sym_overload] = ACTIONS(2504), + [anon_sym_override] = ACTIONS(2504), + [anon_sym_final] = ACTIONS(2504), + [anon_sym_class] = ACTIONS(2504), + [anon_sym_interface] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [anon_sym_typedef] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_var] = ACTIONS(2504), + [aux_sym_integer_token1] = ACTIONS(2504), + [aux_sym_integer_token2] = ACTIONS(2506), + [aux_sym_float_token1] = ACTIONS(2504), + [aux_sym_float_token2] = ACTIONS(2506), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [aux_sym_string_token1] = ACTIONS(2506), + [aux_sym_string_token3] = ACTIONS(2506), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2506), [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(2508), + [anon_sym_POUND] = ACTIONS(2510), + [anon_sym_package] = ACTIONS(2508), + [anon_sym_import] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_using] = ACTIONS(2508), + [anon_sym_throw] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_case] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_cast] = ACTIONS(2508), + [anon_sym_DOLLARtype] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_untyped] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_this] = ACTIONS(2508), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_AT_COLON] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2508), + [anon_sym_catch] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_new] = ACTIONS(2508), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_EQ_GT] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_EQ] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2508), + [anon_sym_macro] = ACTIONS(2508), + [anon_sym_abstract] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_public] = ACTIONS(2508), + [anon_sym_private] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym_overload] = ACTIONS(2508), + [anon_sym_override] = ACTIONS(2508), + [anon_sym_final] = ACTIONS(2508), + [anon_sym_class] = ACTIONS(2508), + [anon_sym_interface] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_function] = ACTIONS(2508), + [anon_sym_var] = ACTIONS(2508), + [aux_sym_integer_token1] = ACTIONS(2508), + [aux_sym_integer_token2] = ACTIONS(2510), + [aux_sym_float_token1] = ACTIONS(2508), + [aux_sym_float_token2] = ACTIONS(2510), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [aux_sym_string_token1] = ACTIONS(2510), + [aux_sym_string_token3] = ACTIONS(2510), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2510), [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(2512), + [anon_sym_POUND] = ACTIONS(2514), + [anon_sym_package] = ACTIONS(2512), + [anon_sym_import] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_using] = ACTIONS(2512), + [anon_sym_throw] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_cast] = ACTIONS(2512), + [anon_sym_DOLLARtype] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_untyped] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_this] = ACTIONS(2512), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_AT_COLON] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_catch] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_EQ_GT] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_EQ] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2512), + [anon_sym_macro] = ACTIONS(2512), + [anon_sym_abstract] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_public] = ACTIONS(2512), + [anon_sym_private] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym_overload] = ACTIONS(2512), + [anon_sym_override] = ACTIONS(2512), + [anon_sym_final] = ACTIONS(2512), + [anon_sym_class] = ACTIONS(2512), + [anon_sym_interface] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_function] = ACTIONS(2512), + [anon_sym_var] = ACTIONS(2512), + [aux_sym_integer_token1] = ACTIONS(2512), + [aux_sym_integer_token2] = ACTIONS(2514), + [aux_sym_float_token1] = ACTIONS(2512), + [aux_sym_float_token2] = ACTIONS(2514), + [anon_sym_true] = ACTIONS(2512), + [anon_sym_false] = ACTIONS(2512), + [aux_sym_string_token1] = ACTIONS(2514), + [aux_sym_string_token3] = ACTIONS(2514), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2514), [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(2516), + [anon_sym_POUND] = ACTIONS(2518), + [anon_sym_package] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_cast] = ACTIONS(2516), + [anon_sym_DOLLARtype] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_untyped] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_this] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_AT_COLON] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_catch] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_EQ_GT] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_EQ] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_null] = ACTIONS(2516), + [anon_sym_macro] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym_overload] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_final] = ACTIONS(2516), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [aux_sym_integer_token1] = ACTIONS(2516), + [aux_sym_integer_token2] = ACTIONS(2518), + [aux_sym_float_token1] = ACTIONS(2516), + [aux_sym_float_token2] = ACTIONS(2518), + [anon_sym_true] = ACTIONS(2516), + [anon_sym_false] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [aux_sym_string_token3] = ACTIONS(2518), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2518), [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(2520), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_package] = ACTIONS(2520), + [anon_sym_import] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_using] = ACTIONS(2520), + [anon_sym_throw] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_cast] = ACTIONS(2520), + [anon_sym_DOLLARtype] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_untyped] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_this] = ACTIONS(2520), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_AT_COLON] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_catch] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_EQ_GT] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_EQ] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2522), + [anon_sym_null] = ACTIONS(2520), + [anon_sym_macro] = ACTIONS(2520), + [anon_sym_abstract] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_public] = ACTIONS(2520), + [anon_sym_private] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym_overload] = ACTIONS(2520), + [anon_sym_override] = ACTIONS(2520), + [anon_sym_final] = ACTIONS(2520), + [anon_sym_class] = ACTIONS(2520), + [anon_sym_interface] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2520), + [anon_sym_var] = ACTIONS(2520), + [aux_sym_integer_token1] = ACTIONS(2520), + [aux_sym_integer_token2] = ACTIONS(2522), + [aux_sym_float_token1] = ACTIONS(2520), + [aux_sym_float_token2] = ACTIONS(2522), + [anon_sym_true] = ACTIONS(2520), + [anon_sym_false] = ACTIONS(2520), + [aux_sym_string_token1] = ACTIONS(2522), + [aux_sym_string_token3] = ACTIONS(2522), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2522), [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(2524), + [anon_sym_POUND] = ACTIONS(2526), + [anon_sym_package] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_cast] = ACTIONS(2524), + [anon_sym_DOLLARtype] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_untyped] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_this] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_AT_COLON] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_catch] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_EQ_GT] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_EQ] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2524), + [anon_sym_macro] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym_overload] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_final] = ACTIONS(2524), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [aux_sym_integer_token1] = ACTIONS(2524), + [aux_sym_integer_token2] = ACTIONS(2526), + [aux_sym_float_token1] = ACTIONS(2524), + [aux_sym_float_token2] = ACTIONS(2526), + [anon_sym_true] = ACTIONS(2524), + [anon_sym_false] = ACTIONS(2524), + [aux_sym_string_token1] = ACTIONS(2526), + [aux_sym_string_token3] = ACTIONS(2526), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2526), [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(2528), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_package] = ACTIONS(2528), + [anon_sym_import] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_using] = ACTIONS(2528), + [anon_sym_throw] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_cast] = ACTIONS(2528), + [anon_sym_DOLLARtype] = ACTIONS(2530), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_untyped] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_this] = ACTIONS(2528), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_AT_COLON] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_catch] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PERCENT] = ACTIONS(2530), + [anon_sym_SLASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_GT_GT_GT] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP_AMP] = ACTIONS(2530), + [anon_sym_PIPE_PIPE] = ACTIONS(2530), + [anon_sym_EQ_EQ] = ACTIONS(2530), + [anon_sym_BANG_EQ] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_LT_EQ] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2528), + [anon_sym_GT_EQ] = ACTIONS(2530), + [anon_sym_EQ_GT] = ACTIONS(2530), + [anon_sym_QMARK_QMARK] = ACTIONS(2530), + [anon_sym_EQ] = ACTIONS(2528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_macro] = ACTIONS(2528), + [anon_sym_abstract] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_public] = ACTIONS(2528), + [anon_sym_private] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym_overload] = ACTIONS(2528), + [anon_sym_override] = ACTIONS(2528), + [anon_sym_final] = ACTIONS(2528), + [anon_sym_class] = ACTIONS(2528), + [anon_sym_interface] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_var] = ACTIONS(2528), + [aux_sym_integer_token1] = ACTIONS(2528), + [aux_sym_integer_token2] = ACTIONS(2530), + [aux_sym_float_token1] = ACTIONS(2528), + [aux_sym_float_token2] = ACTIONS(2530), + [anon_sym_true] = ACTIONS(2528), + [anon_sym_false] = ACTIONS(2528), + [aux_sym_string_token1] = ACTIONS(2530), + [aux_sym_string_token3] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2530), [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(2532), + [anon_sym_POUND] = ACTIONS(2534), + [anon_sym_package] = ACTIONS(2532), + [anon_sym_import] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_throw] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_cast] = ACTIONS(2532), + [anon_sym_DOLLARtype] = ACTIONS(2534), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_untyped] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_this] = ACTIONS(2532), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_AT_COLON] = ACTIONS(2534), + [anon_sym_try] = ACTIONS(2532), + [anon_sym_catch] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_new] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_EQ_GT] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2534), + [anon_sym_null] = ACTIONS(2532), + [anon_sym_macro] = ACTIONS(2532), + [anon_sym_abstract] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), + [anon_sym_private] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym_overload] = ACTIONS(2532), + [anon_sym_override] = ACTIONS(2532), + [anon_sym_final] = ACTIONS(2532), + [anon_sym_class] = ACTIONS(2532), + [anon_sym_interface] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_function] = ACTIONS(2532), + [anon_sym_var] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [aux_sym_integer_token2] = ACTIONS(2534), + [aux_sym_float_token1] = ACTIONS(2532), + [aux_sym_float_token2] = ACTIONS(2534), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [aux_sym_string_token3] = ACTIONS(2534), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2534), [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(2536), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_package] = ACTIONS(2536), + [anon_sym_import] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_cast] = ACTIONS(2536), + [anon_sym_DOLLARtype] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_untyped] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_this] = ACTIONS(2536), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_AT_COLON] = ACTIONS(2538), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_catch] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_EQ_GT] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2538), + [anon_sym_null] = ACTIONS(2536), + [anon_sym_macro] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym_overload] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_final] = ACTIONS(2536), + [anon_sym_class] = ACTIONS(2536), + [anon_sym_interface] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_var] = ACTIONS(2536), + [aux_sym_integer_token1] = ACTIONS(2536), + [aux_sym_integer_token2] = ACTIONS(2538), + [aux_sym_float_token1] = ACTIONS(2536), + [aux_sym_float_token2] = ACTIONS(2538), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [aux_sym_string_token1] = ACTIONS(2538), + [aux_sym_string_token3] = ACTIONS(2538), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2538), [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(2540), + [anon_sym_POUND] = ACTIONS(2542), + [anon_sym_package] = ACTIONS(2540), + [anon_sym_import] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2540), + [anon_sym_throw] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_cast] = ACTIONS(2540), + [anon_sym_DOLLARtype] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_untyped] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_this] = ACTIONS(2540), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_AT_COLON] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_catch] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_EQ_GT] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_EQ] = ACTIONS(2540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2542), + [anon_sym_null] = ACTIONS(2540), + [anon_sym_macro] = ACTIONS(2540), + [anon_sym_abstract] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2540), + [anon_sym_private] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym_overload] = ACTIONS(2540), + [anon_sym_override] = ACTIONS(2540), + [anon_sym_final] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2540), + [anon_sym_interface] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_var] = ACTIONS(2540), + [aux_sym_integer_token1] = ACTIONS(2540), + [aux_sym_integer_token2] = ACTIONS(2542), + [aux_sym_float_token1] = ACTIONS(2540), + [aux_sym_float_token2] = ACTIONS(2542), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [aux_sym_string_token1] = ACTIONS(2542), + [aux_sym_string_token3] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2542), [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(2544), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_package] = ACTIONS(2544), + [anon_sym_import] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_using] = ACTIONS(2544), + [anon_sym_throw] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_cast] = ACTIONS(2544), + [anon_sym_DOLLARtype] = ACTIONS(2546), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_untyped] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_this] = ACTIONS(2544), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_AT_COLON] = ACTIONS(2546), + [anon_sym_try] = ACTIONS(2544), + [anon_sym_catch] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_new] = ACTIONS(2544), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_EQ_GT] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_EQ] = ACTIONS(2544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2546), + [anon_sym_null] = ACTIONS(2544), + [anon_sym_macro] = ACTIONS(2544), + [anon_sym_abstract] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym_overload] = ACTIONS(2544), + [anon_sym_override] = ACTIONS(2544), + [anon_sym_final] = ACTIONS(2544), + [anon_sym_class] = ACTIONS(2544), + [anon_sym_interface] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_function] = ACTIONS(2544), + [anon_sym_var] = ACTIONS(2544), + [aux_sym_integer_token1] = ACTIONS(2544), + [aux_sym_integer_token2] = ACTIONS(2546), + [aux_sym_float_token1] = ACTIONS(2544), + [aux_sym_float_token2] = ACTIONS(2546), + [anon_sym_true] = ACTIONS(2544), + [anon_sym_false] = ACTIONS(2544), + [aux_sym_string_token1] = ACTIONS(2546), + [aux_sym_string_token3] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2546), [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(2548), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_package] = ACTIONS(2548), + [anon_sym_import] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_using] = ACTIONS(2548), + [anon_sym_throw] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_cast] = ACTIONS(2548), + [anon_sym_DOLLARtype] = ACTIONS(2550), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_untyped] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_this] = ACTIONS(2548), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_AT_COLON] = ACTIONS(2550), + [anon_sym_try] = ACTIONS(2548), + [anon_sym_catch] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_new] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_EQ_GT] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_EQ] = ACTIONS(2548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), + [anon_sym_null] = ACTIONS(2548), + [anon_sym_macro] = ACTIONS(2548), + [anon_sym_abstract] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_public] = ACTIONS(2548), + [anon_sym_private] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym_overload] = ACTIONS(2548), + [anon_sym_override] = ACTIONS(2548), + [anon_sym_final] = ACTIONS(2548), + [anon_sym_class] = ACTIONS(2548), + [anon_sym_interface] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(2548), + [anon_sym_var] = ACTIONS(2548), + [aux_sym_integer_token1] = ACTIONS(2548), + [aux_sym_integer_token2] = ACTIONS(2550), + [aux_sym_float_token1] = ACTIONS(2548), + [aux_sym_float_token2] = ACTIONS(2550), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [aux_sym_string_token1] = ACTIONS(2550), + [aux_sym_string_token3] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2550), [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(2552), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_package] = ACTIONS(2552), + [anon_sym_import] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2552), + [anon_sym_throw] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_case] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_cast] = ACTIONS(2552), + [anon_sym_DOLLARtype] = ACTIONS(2554), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_untyped] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_this] = ACTIONS(2552), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_AT_COLON] = ACTIONS(2554), + [anon_sym_try] = ACTIONS(2552), + [anon_sym_catch] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_new] = ACTIONS(2552), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_EQ_GT] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_EQ] = ACTIONS(2552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2554), + [anon_sym_null] = ACTIONS(2552), + [anon_sym_macro] = ACTIONS(2552), + [anon_sym_abstract] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym_overload] = ACTIONS(2552), + [anon_sym_override] = ACTIONS(2552), + [anon_sym_final] = ACTIONS(2552), + [anon_sym_class] = ACTIONS(2552), + [anon_sym_interface] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_function] = ACTIONS(2552), + [anon_sym_var] = ACTIONS(2552), + [aux_sym_integer_token1] = ACTIONS(2552), + [aux_sym_integer_token2] = ACTIONS(2554), + [aux_sym_float_token1] = ACTIONS(2552), + [aux_sym_float_token2] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [aux_sym_string_token1] = ACTIONS(2554), + [aux_sym_string_token3] = ACTIONS(2554), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2554), [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(2556), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_package] = ACTIONS(2556), + [anon_sym_import] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_throw] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_cast] = ACTIONS(2556), + [anon_sym_DOLLARtype] = ACTIONS(2558), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_untyped] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_this] = ACTIONS(2556), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_AT_COLON] = ACTIONS(2558), + [anon_sym_try] = ACTIONS(2556), + [anon_sym_catch] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_EQ_GT] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_EQ] = ACTIONS(2556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2558), + [anon_sym_null] = ACTIONS(2556), + [anon_sym_macro] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym_overload] = ACTIONS(2556), + [anon_sym_override] = ACTIONS(2556), + [anon_sym_final] = ACTIONS(2556), + [anon_sym_class] = ACTIONS(2556), + [anon_sym_interface] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_var] = ACTIONS(2556), + [aux_sym_integer_token1] = ACTIONS(2556), + [aux_sym_integer_token2] = ACTIONS(2558), + [aux_sym_float_token1] = ACTIONS(2556), + [aux_sym_float_token2] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [aux_sym_string_token1] = ACTIONS(2558), + [aux_sym_string_token3] = ACTIONS(2558), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2558), [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(2560), + [anon_sym_POUND] = ACTIONS(2562), + [anon_sym_package] = ACTIONS(2560), + [anon_sym_import] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_using] = ACTIONS(2560), + [anon_sym_throw] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_cast] = ACTIONS(2560), + [anon_sym_DOLLARtype] = ACTIONS(2562), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_untyped] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_this] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_AT_COLON] = ACTIONS(2562), + [anon_sym_try] = ACTIONS(2560), + [anon_sym_catch] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_EQ_GT] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_EQ] = ACTIONS(2560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_null] = ACTIONS(2560), + [anon_sym_macro] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym_overload] = ACTIONS(2560), + [anon_sym_override] = ACTIONS(2560), + [anon_sym_final] = ACTIONS(2560), + [anon_sym_class] = ACTIONS(2560), + [anon_sym_interface] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_var] = ACTIONS(2560), + [aux_sym_integer_token1] = ACTIONS(2560), + [aux_sym_integer_token2] = ACTIONS(2562), + [aux_sym_float_token1] = ACTIONS(2560), + [aux_sym_float_token2] = ACTIONS(2562), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [aux_sym_string_token1] = ACTIONS(2562), + [aux_sym_string_token3] = ACTIONS(2562), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2562), [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(2564), + [anon_sym_POUND] = ACTIONS(2566), + [anon_sym_package] = ACTIONS(2564), + [anon_sym_import] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_using] = ACTIONS(2564), + [anon_sym_throw] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_cast] = ACTIONS(2564), + [anon_sym_DOLLARtype] = ACTIONS(2566), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_untyped] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym_this] = ACTIONS(2564), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_AT_COLON] = ACTIONS(2566), + [anon_sym_try] = ACTIONS(2564), + [anon_sym_catch] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(2564), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PERCENT] = ACTIONS(2566), + [anon_sym_SLASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_GT_GT_GT] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP_AMP] = ACTIONS(2566), + [anon_sym_PIPE_PIPE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_BANG_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_LT_EQ] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2564), + [anon_sym_GT_EQ] = ACTIONS(2566), + [anon_sym_EQ_GT] = ACTIONS(2566), + [anon_sym_QMARK_QMARK] = ACTIONS(2566), + [anon_sym_EQ] = ACTIONS(2564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), + [anon_sym_null] = ACTIONS(2564), + [anon_sym_macro] = ACTIONS(2564), + [anon_sym_abstract] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_public] = ACTIONS(2564), + [anon_sym_private] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym_overload] = ACTIONS(2564), + [anon_sym_override] = ACTIONS(2564), + [anon_sym_final] = ACTIONS(2564), + [anon_sym_class] = ACTIONS(2564), + [anon_sym_interface] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_function] = ACTIONS(2564), + [anon_sym_var] = ACTIONS(2564), + [aux_sym_integer_token1] = ACTIONS(2564), + [aux_sym_integer_token2] = ACTIONS(2566), + [aux_sym_float_token1] = ACTIONS(2564), + [aux_sym_float_token2] = ACTIONS(2566), + [anon_sym_true] = ACTIONS(2564), + [anon_sym_false] = ACTIONS(2564), + [aux_sym_string_token1] = ACTIONS(2566), + [aux_sym_string_token3] = ACTIONS(2566), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2566), [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(2568), + [anon_sym_POUND] = ACTIONS(2570), + [anon_sym_package] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_cast] = ACTIONS(2568), + [anon_sym_DOLLARtype] = ACTIONS(2570), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_untyped] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_this] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_AT_COLON] = ACTIONS(2570), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_catch] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_EQ_GT] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_EQ] = ACTIONS(2568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2570), + [anon_sym_null] = ACTIONS(2568), + [anon_sym_macro] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym_overload] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_final] = ACTIONS(2568), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [aux_sym_integer_token1] = ACTIONS(2568), + [aux_sym_integer_token2] = ACTIONS(2570), + [aux_sym_float_token1] = ACTIONS(2568), + [aux_sym_float_token2] = ACTIONS(2570), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [aux_sym_string_token1] = ACTIONS(2570), + [aux_sym_string_token3] = ACTIONS(2570), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2570), [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(2572), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_package] = ACTIONS(2572), + [anon_sym_import] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_using] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_cast] = ACTIONS(2572), + [anon_sym_DOLLARtype] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_untyped] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_this] = ACTIONS(2572), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_AT_COLON] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2572), + [anon_sym_catch] = ACTIONS(2572), + [anon_sym_else] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_new] = ACTIONS(2572), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2574), + [anon_sym_null] = ACTIONS(2572), + [anon_sym_macro] = ACTIONS(2572), + [anon_sym_abstract] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2572), + [anon_sym_private] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym_overload] = ACTIONS(2572), + [anon_sym_override] = ACTIONS(2572), + [anon_sym_final] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_interface] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_typedef] = ACTIONS(2572), + [anon_sym_function] = ACTIONS(2572), + [anon_sym_var] = ACTIONS(2572), + [aux_sym_integer_token1] = ACTIONS(2572), + [aux_sym_integer_token2] = ACTIONS(2574), + [aux_sym_float_token1] = ACTIONS(2572), + [aux_sym_float_token2] = ACTIONS(2574), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [aux_sym_string_token1] = ACTIONS(2574), + [aux_sym_string_token3] = ACTIONS(2574), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2574), [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(2576), + [anon_sym_POUND] = ACTIONS(2578), + [anon_sym_package] = ACTIONS(2576), + [anon_sym_import] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_using] = ACTIONS(2576), + [anon_sym_throw] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_cast] = ACTIONS(2576), + [anon_sym_DOLLARtype] = ACTIONS(2578), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_untyped] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_this] = ACTIONS(2576), + [anon_sym_AT] = ACTIONS(2576), + [anon_sym_AT_COLON] = ACTIONS(2578), + [anon_sym_try] = ACTIONS(2576), + [anon_sym_catch] = ACTIONS(2576), + [anon_sym_else] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_new] = ACTIONS(2576), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_PERCENT] = ACTIONS(2578), + [anon_sym_SLASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_LT_LT] = ACTIONS(2578), + [anon_sym_GT_GT] = ACTIONS(2576), + [anon_sym_GT_GT_GT] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2578), + [anon_sym_AMP_AMP] = ACTIONS(2578), + [anon_sym_PIPE_PIPE] = ACTIONS(2578), + [anon_sym_EQ_EQ] = ACTIONS(2578), + [anon_sym_BANG_EQ] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2576), + [anon_sym_LT_EQ] = ACTIONS(2578), + [anon_sym_GT] = ACTIONS(2576), + [anon_sym_GT_EQ] = ACTIONS(2578), + [anon_sym_EQ_GT] = ACTIONS(2578), + [anon_sym_QMARK_QMARK] = ACTIONS(2578), + [anon_sym_EQ] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2578), + [anon_sym_null] = ACTIONS(2576), + [anon_sym_macro] = ACTIONS(2576), + [anon_sym_abstract] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_public] = ACTIONS(2576), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym_overload] = ACTIONS(2576), + [anon_sym_override] = ACTIONS(2576), + [anon_sym_final] = ACTIONS(2576), + [anon_sym_class] = ACTIONS(2576), + [anon_sym_interface] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_function] = ACTIONS(2576), + [anon_sym_var] = ACTIONS(2576), + [aux_sym_integer_token1] = ACTIONS(2576), + [aux_sym_integer_token2] = ACTIONS(2578), + [aux_sym_float_token1] = ACTIONS(2576), + [aux_sym_float_token2] = ACTIONS(2578), + [anon_sym_true] = ACTIONS(2576), + [anon_sym_false] = ACTIONS(2576), + [aux_sym_string_token1] = ACTIONS(2578), + [aux_sym_string_token3] = ACTIONS(2578), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2578), [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(2580), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_package] = ACTIONS(2580), + [anon_sym_import] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2582), + [anon_sym_using] = ACTIONS(2580), + [anon_sym_throw] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_case] = ACTIONS(2580), + [anon_sym_default] = ACTIONS(2580), + [anon_sym_cast] = ACTIONS(2580), + [anon_sym_DOLLARtype] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_untyped] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_this] = ACTIONS(2580), + [anon_sym_AT] = ACTIONS(2580), + [anon_sym_AT_COLON] = ACTIONS(2582), + [anon_sym_try] = ACTIONS(2580), + [anon_sym_catch] = ACTIONS(2580), + [anon_sym_else] = ACTIONS(2580), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), + [anon_sym_do] = ACTIONS(2580), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_TILDE] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_EQ_GT] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_EQ] = ACTIONS(2580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2582), + [anon_sym_null] = ACTIONS(2580), + [anon_sym_macro] = ACTIONS(2580), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_public] = ACTIONS(2580), + [anon_sym_private] = ACTIONS(2580), + [anon_sym_extern] = ACTIONS(2580), + [anon_sym_inline] = ACTIONS(2580), + [anon_sym_overload] = ACTIONS(2580), + [anon_sym_override] = ACTIONS(2580), + [anon_sym_final] = ACTIONS(2580), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_interface] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2580), + [anon_sym_typedef] = ACTIONS(2580), + [anon_sym_function] = ACTIONS(2580), + [anon_sym_var] = ACTIONS(2580), + [aux_sym_integer_token1] = ACTIONS(2580), + [aux_sym_integer_token2] = ACTIONS(2582), + [aux_sym_float_token1] = ACTIONS(2580), + [aux_sym_float_token2] = ACTIONS(2582), + [anon_sym_true] = ACTIONS(2580), + [anon_sym_false] = ACTIONS(2580), + [aux_sym_string_token1] = ACTIONS(2582), + [aux_sym_string_token3] = ACTIONS(2582), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2582), [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(2584), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_package] = ACTIONS(2584), + [anon_sym_import] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2584), + [anon_sym_default] = ACTIONS(2584), + [anon_sym_cast] = ACTIONS(2584), + [anon_sym_DOLLARtype] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2584), + [anon_sym_return] = ACTIONS(2584), + [anon_sym_untyped] = ACTIONS(2584), + [anon_sym_break] = ACTIONS(2584), + [anon_sym_continue] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_this] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2584), + [anon_sym_AT_COLON] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_catch] = ACTIONS(2584), + [anon_sym_else] = ACTIONS(2584), + [anon_sym_if] = ACTIONS(2584), + [anon_sym_while] = ACTIONS(2584), + [anon_sym_do] = ACTIONS(2584), + [anon_sym_new] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2586), + [anon_sym_PERCENT] = ACTIONS(2586), + [anon_sym_SLASH] = ACTIONS(2584), + [anon_sym_PLUS] = ACTIONS(2584), + [anon_sym_LT_LT] = ACTIONS(2586), + [anon_sym_GT_GT] = ACTIONS(2584), + [anon_sym_GT_GT_GT] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_CARET] = ACTIONS(2586), + [anon_sym_AMP_AMP] = ACTIONS(2586), + [anon_sym_PIPE_PIPE] = ACTIONS(2586), + [anon_sym_EQ_EQ] = ACTIONS(2586), + [anon_sym_BANG_EQ] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_LT_EQ] = ACTIONS(2586), + [anon_sym_GT] = ACTIONS(2584), + [anon_sym_GT_EQ] = ACTIONS(2586), + [anon_sym_EQ_GT] = ACTIONS(2586), + [anon_sym_QMARK_QMARK] = ACTIONS(2586), + [anon_sym_EQ] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2586), + [anon_sym_null] = ACTIONS(2584), + [anon_sym_macro] = ACTIONS(2584), + [anon_sym_abstract] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_public] = ACTIONS(2584), + [anon_sym_private] = ACTIONS(2584), + [anon_sym_extern] = ACTIONS(2584), + [anon_sym_inline] = ACTIONS(2584), + [anon_sym_overload] = ACTIONS(2584), + [anon_sym_override] = ACTIONS(2584), + [anon_sym_final] = ACTIONS(2584), + [anon_sym_class] = ACTIONS(2584), + [anon_sym_interface] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2584), + [anon_sym_typedef] = ACTIONS(2584), + [anon_sym_function] = ACTIONS(2584), + [anon_sym_var] = ACTIONS(2584), + [aux_sym_integer_token1] = ACTIONS(2584), + [aux_sym_integer_token2] = ACTIONS(2586), + [aux_sym_float_token1] = ACTIONS(2584), + [aux_sym_float_token2] = ACTIONS(2586), + [anon_sym_true] = ACTIONS(2584), + [anon_sym_false] = ACTIONS(2584), + [aux_sym_string_token1] = ACTIONS(2586), + [aux_sym_string_token3] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2586), [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(2588), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_package] = ACTIONS(2588), + [anon_sym_import] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2588), + [anon_sym_throw] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_cast] = ACTIONS(2588), + [anon_sym_DOLLARtype] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_untyped] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_this] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2588), + [anon_sym_AT_COLON] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2588), + [anon_sym_catch] = ACTIONS(2588), + [anon_sym_else] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_do] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2590), + [anon_sym_PERCENT] = ACTIONS(2590), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_PLUS] = ACTIONS(2588), + [anon_sym_LT_LT] = ACTIONS(2590), + [anon_sym_GT_GT] = ACTIONS(2588), + [anon_sym_GT_GT_GT] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_AMP_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2590), + [anon_sym_BANG_EQ] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_LT_EQ] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(2588), + [anon_sym_GT_EQ] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(2590), + [anon_sym_QMARK_QMARK] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2590), + [anon_sym_null] = ACTIONS(2588), + [anon_sym_macro] = ACTIONS(2588), + [anon_sym_abstract] = ACTIONS(2588), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_public] = ACTIONS(2588), + [anon_sym_private] = ACTIONS(2588), + [anon_sym_extern] = ACTIONS(2588), + [anon_sym_inline] = ACTIONS(2588), + [anon_sym_overload] = ACTIONS(2588), + [anon_sym_override] = ACTIONS(2588), + [anon_sym_final] = ACTIONS(2588), + [anon_sym_class] = ACTIONS(2588), + [anon_sym_interface] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [anon_sym_typedef] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(2588), + [anon_sym_var] = ACTIONS(2588), + [aux_sym_integer_token1] = ACTIONS(2588), + [aux_sym_integer_token2] = ACTIONS(2590), + [aux_sym_float_token1] = ACTIONS(2588), + [aux_sym_float_token2] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2588), + [anon_sym_false] = ACTIONS(2588), + [aux_sym_string_token1] = ACTIONS(2590), + [aux_sym_string_token3] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2590), [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(2592), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_package] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(2592), + [anon_sym_throw] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_switch] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_case] = ACTIONS(2592), + [anon_sym_default] = ACTIONS(2592), + [anon_sym_cast] = ACTIONS(2592), + [anon_sym_DOLLARtype] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_untyped] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_this] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2592), + [anon_sym_AT_COLON] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_catch] = ACTIONS(2592), + [anon_sym_else] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_do] = ACTIONS(2592), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(2594), + [anon_sym_GT_GT] = ACTIONS(2592), + [anon_sym_GT_GT_GT] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_EQ_EQ] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_LT_EQ] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2592), + [anon_sym_GT_EQ] = ACTIONS(2594), + [anon_sym_EQ_GT] = ACTIONS(2594), + [anon_sym_QMARK_QMARK] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2594), + [anon_sym_null] = ACTIONS(2592), + [anon_sym_macro] = ACTIONS(2592), + [anon_sym_abstract] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_public] = ACTIONS(2592), + [anon_sym_private] = ACTIONS(2592), + [anon_sym_extern] = ACTIONS(2592), + [anon_sym_inline] = ACTIONS(2592), + [anon_sym_overload] = ACTIONS(2592), + [anon_sym_override] = ACTIONS(2592), + [anon_sym_final] = ACTIONS(2592), + [anon_sym_class] = ACTIONS(2592), + [anon_sym_interface] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), + [anon_sym_typedef] = ACTIONS(2592), + [anon_sym_function] = ACTIONS(2592), + [anon_sym_var] = ACTIONS(2592), + [aux_sym_integer_token1] = ACTIONS(2592), + [aux_sym_integer_token2] = ACTIONS(2594), + [aux_sym_float_token1] = ACTIONS(2592), + [aux_sym_float_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2592), + [anon_sym_false] = ACTIONS(2592), + [aux_sym_string_token1] = ACTIONS(2594), + [aux_sym_string_token3] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2594), [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(2596), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_package] = ACTIONS(2596), + [anon_sym_import] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2598), + [anon_sym_using] = ACTIONS(2596), + [anon_sym_throw] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_case] = ACTIONS(2596), + [anon_sym_default] = ACTIONS(2596), + [anon_sym_cast] = ACTIONS(2596), + [anon_sym_DOLLARtype] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_untyped] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_this] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_AT_COLON] = ACTIONS(2598), + [anon_sym_try] = ACTIONS(2596), + [anon_sym_catch] = ACTIONS(2596), + [anon_sym_else] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_do] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2598), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2598), + [anon_sym_PERCENT] = ACTIONS(2598), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2596), + [anon_sym_GT_GT_GT] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_AMP_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2598), + [anon_sym_BANG_EQ] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2598), + [anon_sym_EQ_GT] = ACTIONS(2598), + [anon_sym_QMARK_QMARK] = ACTIONS(2598), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2598), + [anon_sym_null] = ACTIONS(2596), + [anon_sym_macro] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_extern] = ACTIONS(2596), + [anon_sym_inline] = ACTIONS(2596), + [anon_sym_overload] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_final] = ACTIONS(2596), + [anon_sym_class] = ACTIONS(2596), + [anon_sym_interface] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), + [anon_sym_typedef] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2596), + [anon_sym_var] = ACTIONS(2596), + [aux_sym_integer_token1] = ACTIONS(2596), + [aux_sym_integer_token2] = ACTIONS(2598), + [aux_sym_float_token1] = ACTIONS(2596), + [aux_sym_float_token2] = ACTIONS(2598), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [aux_sym_string_token1] = ACTIONS(2598), + [aux_sym_string_token3] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2598), [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(2600), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_package] = ACTIONS(2600), + [anon_sym_import] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2602), + [anon_sym_using] = ACTIONS(2600), + [anon_sym_throw] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_switch] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_case] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2600), + [anon_sym_cast] = ACTIONS(2600), + [anon_sym_DOLLARtype] = ACTIONS(2602), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_untyped] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_this] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2600), + [anon_sym_AT_COLON] = ACTIONS(2602), + [anon_sym_try] = ACTIONS(2600), + [anon_sym_catch] = ACTIONS(2600), + [anon_sym_else] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_do] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2602), + [anon_sym_PERCENT] = ACTIONS(2602), + [anon_sym_SLASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_LT_LT] = ACTIONS(2602), + [anon_sym_GT_GT] = ACTIONS(2600), + [anon_sym_GT_GT_GT] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_PIPE] = ACTIONS(2600), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP_AMP] = ACTIONS(2602), + [anon_sym_PIPE_PIPE] = ACTIONS(2602), + [anon_sym_EQ_EQ] = ACTIONS(2602), + [anon_sym_BANG_EQ] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2600), + [anon_sym_LT_EQ] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(2600), + [anon_sym_GT_EQ] = ACTIONS(2602), + [anon_sym_EQ_GT] = ACTIONS(2602), + [anon_sym_QMARK_QMARK] = ACTIONS(2602), + [anon_sym_EQ] = ACTIONS(2600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2602), + [anon_sym_null] = ACTIONS(2600), + [anon_sym_macro] = ACTIONS(2600), + [anon_sym_abstract] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_public] = ACTIONS(2600), + [anon_sym_private] = ACTIONS(2600), + [anon_sym_extern] = ACTIONS(2600), + [anon_sym_inline] = ACTIONS(2600), + [anon_sym_overload] = ACTIONS(2600), + [anon_sym_override] = ACTIONS(2600), + [anon_sym_final] = ACTIONS(2600), + [anon_sym_class] = ACTIONS(2600), + [anon_sym_interface] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), + [anon_sym_typedef] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(2600), + [anon_sym_var] = ACTIONS(2600), + [aux_sym_integer_token1] = ACTIONS(2600), + [aux_sym_integer_token2] = ACTIONS(2602), + [aux_sym_float_token1] = ACTIONS(2600), + [aux_sym_float_token2] = ACTIONS(2602), + [anon_sym_true] = ACTIONS(2600), + [anon_sym_false] = ACTIONS(2600), + [aux_sym_string_token1] = ACTIONS(2602), + [aux_sym_string_token3] = ACTIONS(2602), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2602), [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(2604), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_package] = ACTIONS(2604), + [anon_sym_import] = ACTIONS(2604), + [anon_sym_STAR] = ACTIONS(2606), + [anon_sym_using] = ACTIONS(2604), + [anon_sym_throw] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_switch] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_case] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_cast] = ACTIONS(2604), + [anon_sym_DOLLARtype] = ACTIONS(2606), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_untyped] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_this] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2604), + [anon_sym_AT_COLON] = ACTIONS(2606), + [anon_sym_try] = ACTIONS(2604), + [anon_sym_catch] = ACTIONS(2604), + [anon_sym_else] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_do] = ACTIONS(2604), + [anon_sym_new] = ACTIONS(2604), + [anon_sym_TILDE] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2606), + [anon_sym_PERCENT] = ACTIONS(2606), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_LT_LT] = ACTIONS(2606), + [anon_sym_GT_GT] = ACTIONS(2604), + [anon_sym_GT_GT_GT] = ACTIONS(2606), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_CARET] = ACTIONS(2606), + [anon_sym_AMP_AMP] = ACTIONS(2606), + [anon_sym_PIPE_PIPE] = ACTIONS(2606), + [anon_sym_EQ_EQ] = ACTIONS(2606), + [anon_sym_BANG_EQ] = ACTIONS(2606), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_LT_EQ] = ACTIONS(2606), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_EQ] = ACTIONS(2606), + [anon_sym_EQ_GT] = ACTIONS(2606), + [anon_sym_QMARK_QMARK] = ACTIONS(2606), + [anon_sym_EQ] = ACTIONS(2604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2606), + [anon_sym_null] = ACTIONS(2604), + [anon_sym_macro] = ACTIONS(2604), + [anon_sym_abstract] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_extern] = ACTIONS(2604), + [anon_sym_inline] = ACTIONS(2604), + [anon_sym_overload] = ACTIONS(2604), + [anon_sym_override] = ACTIONS(2604), + [anon_sym_final] = ACTIONS(2604), + [anon_sym_class] = ACTIONS(2604), + [anon_sym_interface] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_typedef] = ACTIONS(2604), + [anon_sym_function] = ACTIONS(2604), + [anon_sym_var] = ACTIONS(2604), + [aux_sym_integer_token1] = ACTIONS(2604), + [aux_sym_integer_token2] = ACTIONS(2606), + [aux_sym_float_token1] = ACTIONS(2604), + [aux_sym_float_token2] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2604), + [anon_sym_false] = ACTIONS(2604), + [aux_sym_string_token1] = ACTIONS(2606), + [aux_sym_string_token3] = ACTIONS(2606), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2606), [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(2608), + [anon_sym_POUND] = ACTIONS(2610), + [anon_sym_package] = ACTIONS(2608), + [anon_sym_import] = ACTIONS(2608), + [anon_sym_STAR] = ACTIONS(2610), + [anon_sym_using] = ACTIONS(2608), + [anon_sym_throw] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2610), + [anon_sym_switch] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_case] = ACTIONS(2608), + [anon_sym_default] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2608), + [anon_sym_DOLLARtype] = ACTIONS(2610), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_untyped] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(2610), + [anon_sym_this] = ACTIONS(2608), + [anon_sym_AT] = ACTIONS(2608), + [anon_sym_AT_COLON] = ACTIONS(2610), + [anon_sym_try] = ACTIONS(2608), + [anon_sym_catch] = ACTIONS(2608), + [anon_sym_else] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_do] = ACTIONS(2608), + [anon_sym_new] = ACTIONS(2608), + [anon_sym_TILDE] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2608), + [anon_sym_PLUS_PLUS] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(2610), + [anon_sym_PERCENT] = ACTIONS(2610), + [anon_sym_SLASH] = ACTIONS(2608), + [anon_sym_PLUS] = ACTIONS(2608), + [anon_sym_LT_LT] = ACTIONS(2610), + [anon_sym_GT_GT] = ACTIONS(2608), + [anon_sym_GT_GT_GT] = ACTIONS(2610), + [anon_sym_AMP] = ACTIONS(2608), + [anon_sym_PIPE] = ACTIONS(2608), + [anon_sym_CARET] = ACTIONS(2610), + [anon_sym_AMP_AMP] = ACTIONS(2610), + [anon_sym_PIPE_PIPE] = ACTIONS(2610), + [anon_sym_EQ_EQ] = ACTIONS(2610), + [anon_sym_BANG_EQ] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2608), + [anon_sym_LT_EQ] = ACTIONS(2610), + [anon_sym_GT] = ACTIONS(2608), + [anon_sym_GT_EQ] = ACTIONS(2610), + [anon_sym_EQ_GT] = ACTIONS(2610), + [anon_sym_QMARK_QMARK] = ACTIONS(2610), + [anon_sym_EQ] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2610), + [anon_sym_null] = ACTIONS(2608), + [anon_sym_macro] = ACTIONS(2608), + [anon_sym_abstract] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_public] = ACTIONS(2608), + [anon_sym_private] = ACTIONS(2608), + [anon_sym_extern] = ACTIONS(2608), + [anon_sym_inline] = ACTIONS(2608), + [anon_sym_overload] = ACTIONS(2608), + [anon_sym_override] = ACTIONS(2608), + [anon_sym_final] = ACTIONS(2608), + [anon_sym_class] = ACTIONS(2608), + [anon_sym_interface] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), + [anon_sym_typedef] = ACTIONS(2608), + [anon_sym_function] = ACTIONS(2608), + [anon_sym_var] = ACTIONS(2608), + [aux_sym_integer_token1] = ACTIONS(2608), + [aux_sym_integer_token2] = ACTIONS(2610), + [aux_sym_float_token1] = ACTIONS(2608), + [aux_sym_float_token2] = ACTIONS(2610), + [anon_sym_true] = ACTIONS(2608), + [anon_sym_false] = ACTIONS(2608), + [aux_sym_string_token1] = ACTIONS(2610), + [aux_sym_string_token3] = ACTIONS(2610), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2610), [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(2612), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_package] = ACTIONS(2612), + [anon_sym_import] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_using] = ACTIONS(2612), + [anon_sym_throw] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_cast] = ACTIONS(2612), + [anon_sym_DOLLARtype] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_untyped] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_this] = ACTIONS(2612), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_AT_COLON] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2612), + [anon_sym_catch] = ACTIONS(2612), + [anon_sym_else] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_new] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PERCENT] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_LT_LT] = ACTIONS(2614), + [anon_sym_GT_GT] = ACTIONS(2612), + [anon_sym_GT_GT_GT] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(2614), + [anon_sym_PIPE_PIPE] = ACTIONS(2614), + [anon_sym_EQ_EQ] = ACTIONS(2614), + [anon_sym_BANG_EQ] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_LT_EQ] = ACTIONS(2614), + [anon_sym_GT] = ACTIONS(2612), + [anon_sym_GT_EQ] = ACTIONS(2614), + [anon_sym_EQ_GT] = ACTIONS(2614), + [anon_sym_QMARK_QMARK] = ACTIONS(2614), + [anon_sym_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), + [anon_sym_null] = ACTIONS(2612), + [anon_sym_macro] = ACTIONS(2612), + [anon_sym_abstract] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym_overload] = ACTIONS(2612), + [anon_sym_override] = ACTIONS(2612), + [anon_sym_final] = ACTIONS(2612), + [anon_sym_class] = ACTIONS(2612), + [anon_sym_interface] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_function] = ACTIONS(2612), + [anon_sym_var] = ACTIONS(2612), + [aux_sym_integer_token1] = ACTIONS(2612), + [aux_sym_integer_token2] = ACTIONS(2614), + [aux_sym_float_token1] = ACTIONS(2612), + [aux_sym_float_token2] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [aux_sym_string_token1] = ACTIONS(2614), + [aux_sym_string_token3] = ACTIONS(2614), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2614), [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_identifier] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2618), + [anon_sym_package] = ACTIONS(2616), + [anon_sym_import] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_using] = ACTIONS(2616), + [anon_sym_throw] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_cast] = ACTIONS(2616), + [anon_sym_DOLLARtype] = ACTIONS(2618), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_untyped] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym_this] = ACTIONS(2616), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_AT_COLON] = ACTIONS(2618), + [anon_sym_try] = ACTIONS(2616), + [anon_sym_catch] = ACTIONS(2616), + [anon_sym_else] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_new] = ACTIONS(2616), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [anon_sym_PERCENT] = ACTIONS(2618), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_LT_LT] = ACTIONS(2618), + [anon_sym_GT_GT] = ACTIONS(2616), + [anon_sym_GT_GT_GT] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2618), + [anon_sym_PIPE_PIPE] = ACTIONS(2618), + [anon_sym_EQ_EQ] = ACTIONS(2618), + [anon_sym_BANG_EQ] = ACTIONS(2618), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_LT_EQ] = ACTIONS(2618), + [anon_sym_GT] = ACTIONS(2616), + [anon_sym_GT_EQ] = ACTIONS(2618), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_QMARK_QMARK] = ACTIONS(2618), + [anon_sym_EQ] = ACTIONS(2616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), + [anon_sym_null] = ACTIONS(2616), + [anon_sym_macro] = ACTIONS(2616), + [anon_sym_abstract] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_public] = ACTIONS(2616), + [anon_sym_private] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym_overload] = ACTIONS(2616), + [anon_sym_override] = ACTIONS(2616), + [anon_sym_final] = ACTIONS(2616), + [anon_sym_class] = ACTIONS(2616), + [anon_sym_interface] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_function] = ACTIONS(2616), + [anon_sym_var] = ACTIONS(2616), + [aux_sym_integer_token1] = ACTIONS(2616), + [aux_sym_integer_token2] = ACTIONS(2618), + [aux_sym_float_token1] = ACTIONS(2616), + [aux_sym_float_token2] = ACTIONS(2618), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym_string_token1] = ACTIONS(2618), + [aux_sym_string_token3] = ACTIONS(2618), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2618), [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(2620), + [anon_sym_POUND] = ACTIONS(2622), + [anon_sym_package] = ACTIONS(2620), + [anon_sym_import] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_using] = ACTIONS(2620), + [anon_sym_throw] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_cast] = ACTIONS(2620), + [anon_sym_DOLLARtype] = ACTIONS(2622), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_untyped] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_this] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_AT_COLON] = ACTIONS(2622), + [anon_sym_try] = ACTIONS(2620), + [anon_sym_catch] = ACTIONS(2620), + [anon_sym_else] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_new] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_PERCENT] = ACTIONS(2622), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_LT_LT] = ACTIONS(2622), + [anon_sym_GT_GT] = ACTIONS(2620), + [anon_sym_GT_GT_GT] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_AMP_AMP] = ACTIONS(2622), + [anon_sym_PIPE_PIPE] = ACTIONS(2622), + [anon_sym_EQ_EQ] = ACTIONS(2622), + [anon_sym_BANG_EQ] = ACTIONS(2622), + [anon_sym_LT] = ACTIONS(2620), + [anon_sym_LT_EQ] = ACTIONS(2622), + [anon_sym_GT] = ACTIONS(2620), + [anon_sym_GT_EQ] = ACTIONS(2622), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_QMARK_QMARK] = ACTIONS(2622), + [anon_sym_EQ] = ACTIONS(2620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2622), + [anon_sym_null] = ACTIONS(2620), + [anon_sym_macro] = ACTIONS(2620), + [anon_sym_abstract] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_public] = ACTIONS(2620), + [anon_sym_private] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym_inline] = ACTIONS(2620), + [anon_sym_overload] = ACTIONS(2620), + [anon_sym_override] = ACTIONS(2620), + [anon_sym_final] = ACTIONS(2620), + [anon_sym_class] = ACTIONS(2620), + [anon_sym_interface] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_typedef] = ACTIONS(2620), + [anon_sym_function] = ACTIONS(2620), + [anon_sym_var] = ACTIONS(2620), + [aux_sym_integer_token1] = ACTIONS(2620), + [aux_sym_integer_token2] = ACTIONS(2622), + [aux_sym_float_token1] = ACTIONS(2620), + [aux_sym_float_token2] = ACTIONS(2622), + [anon_sym_true] = ACTIONS(2620), + [anon_sym_false] = ACTIONS(2620), + [aux_sym_string_token1] = ACTIONS(2622), + [aux_sym_string_token3] = ACTIONS(2622), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2622), [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(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1956), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), [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(2628), + [anon_sym_POUND] = ACTIONS(2630), + [anon_sym_package] = ACTIONS(2628), + [anon_sym_import] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_using] = ACTIONS(2628), + [anon_sym_throw] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_cast] = ACTIONS(2628), + [anon_sym_DOLLARtype] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_untyped] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym_this] = ACTIONS(2628), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_AT_COLON] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_catch] = ACTIONS(2628), + [anon_sym_else] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PERCENT] = ACTIONS(2630), + [anon_sym_SLASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_GT_GT_GT] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_PIPE] = ACTIONS(2628), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_PIPE_PIPE] = ACTIONS(2630), + [anon_sym_EQ_EQ] = ACTIONS(2630), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_LT_EQ] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2628), + [anon_sym_GT_EQ] = ACTIONS(2630), + [anon_sym_EQ_GT] = ACTIONS(2630), + [anon_sym_QMARK_QMARK] = ACTIONS(2630), + [anon_sym_EQ] = ACTIONS(2628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_macro] = ACTIONS(2628), + [anon_sym_abstract] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_public] = ACTIONS(2628), + [anon_sym_private] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym_overload] = ACTIONS(2628), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_final] = ACTIONS(2628), + [anon_sym_class] = ACTIONS(2628), + [anon_sym_interface] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_typedef] = ACTIONS(2628), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_var] = ACTIONS(2628), + [aux_sym_integer_token1] = ACTIONS(2628), + [aux_sym_integer_token2] = ACTIONS(2630), + [aux_sym_float_token1] = ACTIONS(2628), + [aux_sym_float_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [aux_sym_string_token1] = ACTIONS(2630), + [aux_sym_string_token3] = ACTIONS(2630), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2630), [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(2632), + [anon_sym_POUND] = ACTIONS(2634), + [anon_sym_package] = ACTIONS(2632), + [anon_sym_import] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_using] = ACTIONS(2632), + [anon_sym_throw] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2634), + [anon_sym_switch] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_case] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_cast] = ACTIONS(2632), + [anon_sym_DOLLARtype] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_untyped] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym_this] = ACTIONS(2632), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_AT_COLON] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_catch] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_PERCENT] = ACTIONS(2634), + [anon_sym_SLASH] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_LT_LT] = ACTIONS(2634), + [anon_sym_GT_GT] = ACTIONS(2632), + [anon_sym_GT_GT_GT] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(2632), + [anon_sym_CARET] = ACTIONS(2634), + [anon_sym_AMP_AMP] = ACTIONS(2634), + [anon_sym_PIPE_PIPE] = ACTIONS(2634), + [anon_sym_EQ_EQ] = ACTIONS(2634), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_LT] = ACTIONS(2632), + [anon_sym_LT_EQ] = ACTIONS(2634), + [anon_sym_GT] = ACTIONS(2632), + [anon_sym_GT_EQ] = ACTIONS(2634), + [anon_sym_EQ_GT] = ACTIONS(2634), + [anon_sym_QMARK_QMARK] = ACTIONS(2634), + [anon_sym_EQ] = ACTIONS(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_macro] = ACTIONS(2632), + [anon_sym_abstract] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_public] = ACTIONS(2632), + [anon_sym_private] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym_inline] = ACTIONS(2632), + [anon_sym_overload] = ACTIONS(2632), + [anon_sym_override] = ACTIONS(2632), + [anon_sym_final] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2632), + [anon_sym_interface] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_typedef] = ACTIONS(2632), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_var] = ACTIONS(2632), + [aux_sym_integer_token1] = ACTIONS(2632), + [aux_sym_integer_token2] = ACTIONS(2634), + [aux_sym_float_token1] = ACTIONS(2632), + [aux_sym_float_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [aux_sym_string_token1] = ACTIONS(2634), + [aux_sym_string_token3] = ACTIONS(2634), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2634), [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(2636), + [anon_sym_POUND] = ACTIONS(2638), + [anon_sym_package] = ACTIONS(2636), + [anon_sym_import] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_using] = ACTIONS(2636), + [anon_sym_throw] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_cast] = ACTIONS(2636), + [anon_sym_DOLLARtype] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_untyped] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym_this] = ACTIONS(2636), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_AT_COLON] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_catch] = ACTIONS(2636), + [anon_sym_else] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [anon_sym_PERCENT] = ACTIONS(2638), + [anon_sym_SLASH] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_LT_LT] = ACTIONS(2638), + [anon_sym_GT_GT] = ACTIONS(2636), + [anon_sym_GT_GT_GT] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(2636), + [anon_sym_CARET] = ACTIONS(2638), + [anon_sym_AMP_AMP] = ACTIONS(2638), + [anon_sym_PIPE_PIPE] = ACTIONS(2638), + [anon_sym_EQ_EQ] = ACTIONS(2638), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2636), + [anon_sym_LT_EQ] = ACTIONS(2638), + [anon_sym_GT] = ACTIONS(2636), + [anon_sym_GT_EQ] = ACTIONS(2638), + [anon_sym_EQ_GT] = ACTIONS(2638), + [anon_sym_QMARK_QMARK] = ACTIONS(2638), + [anon_sym_EQ] = ACTIONS(2636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_macro] = ACTIONS(2636), + [anon_sym_abstract] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_public] = ACTIONS(2636), + [anon_sym_private] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym_inline] = ACTIONS(2636), + [anon_sym_overload] = ACTIONS(2636), + [anon_sym_override] = ACTIONS(2636), + [anon_sym_final] = ACTIONS(2636), + [anon_sym_class] = ACTIONS(2636), + [anon_sym_interface] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_typedef] = ACTIONS(2636), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_var] = ACTIONS(2636), + [aux_sym_integer_token1] = ACTIONS(2636), + [aux_sym_integer_token2] = ACTIONS(2638), + [aux_sym_float_token1] = ACTIONS(2636), + [aux_sym_float_token2] = ACTIONS(2638), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [aux_sym_string_token1] = ACTIONS(2638), + [aux_sym_string_token3] = ACTIONS(2638), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2638), [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_comment] = ACTIONS(3), - [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_identifier] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1994), + [anon_sym_package] = ACTIONS(1992), + [anon_sym_import] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [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_for] = ACTIONS(1992), + [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_try] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [553] = { + [sym_identifier] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_cast] = ACTIONS(2640), + [anon_sym_DOLLARtype] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_untyped] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_AT_COLON] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_catch] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_LT_LT] = ACTIONS(2642), + [anon_sym_GT_GT] = ACTIONS(2640), + [anon_sym_GT_GT_GT] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_PIPE_PIPE] = ACTIONS(2642), + [anon_sym_EQ_EQ] = ACTIONS(2642), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_LT_EQ] = ACTIONS(2642), + [anon_sym_GT] = ACTIONS(2640), + [anon_sym_GT_EQ] = ACTIONS(2642), + [anon_sym_EQ_GT] = ACTIONS(2642), + [anon_sym_QMARK_QMARK] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_macro] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym_overload] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_final] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [aux_sym_integer_token1] = ACTIONS(2640), + [aux_sym_integer_token2] = ACTIONS(2642), + [aux_sym_float_token1] = ACTIONS(2640), + [aux_sym_float_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [aux_sym_string_token1] = ACTIONS(2642), + [aux_sym_string_token3] = ACTIONS(2642), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2642), [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(2644), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_package] = ACTIONS(2644), + [anon_sym_import] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2644), + [anon_sym_throw] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_cast] = ACTIONS(2644), + [anon_sym_DOLLARtype] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_untyped] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_this] = ACTIONS(2644), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_AT_COLON] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_catch] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2644), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2644), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_QMARK_QMARK] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_macro] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym_overload] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_final] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_var] = ACTIONS(2644), + [aux_sym_integer_token1] = ACTIONS(2644), + [aux_sym_integer_token2] = ACTIONS(2647), + [aux_sym_float_token1] = ACTIONS(2644), + [aux_sym_float_token2] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym_string_token1] = ACTIONS(2647), + [aux_sym_string_token3] = ACTIONS(2647), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2647), [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(2650), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_package] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2650), + [anon_sym_default] = ACTIONS(2650), + [anon_sym_cast] = ACTIONS(2650), + [anon_sym_DOLLARtype] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_untyped] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_this] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2650), + [anon_sym_AT_COLON] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_catch] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_LT_LT] = ACTIONS(2652), + [anon_sym_GT_GT] = ACTIONS(2650), + [anon_sym_GT_GT_GT] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_EQ_EQ] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_LT_EQ] = ACTIONS(2652), + [anon_sym_GT] = ACTIONS(2650), + [anon_sym_GT_EQ] = ACTIONS(2652), + [anon_sym_EQ_GT] = ACTIONS(2652), + [anon_sym_QMARK_QMARK] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_null] = ACTIONS(2650), + [anon_sym_macro] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_overload] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_final] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_typedef] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [aux_sym_integer_token1] = ACTIONS(2650), + [aux_sym_integer_token2] = ACTIONS(2652), + [aux_sym_float_token1] = ACTIONS(2650), + [aux_sym_float_token2] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [aux_sym_string_token1] = ACTIONS(2652), + [aux_sym_string_token3] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2652), [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(2654), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_package] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_using] = ACTIONS(2654), + [anon_sym_throw] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_case] = ACTIONS(2654), + [anon_sym_default] = ACTIONS(2654), + [anon_sym_cast] = ACTIONS(2654), + [anon_sym_DOLLARtype] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_untyped] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_this] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_AT_COLON] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2654), + [anon_sym_catch] = ACTIONS(2654), + [anon_sym_else] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_do] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT] = ACTIONS(2654), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_PIPE] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2654), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_EQ_GT] = ACTIONS(2656), + [anon_sym_QMARK_QMARK] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [anon_sym_null] = ACTIONS(2654), + [anon_sym_macro] = ACTIONS(2654), + [anon_sym_abstract] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_public] = ACTIONS(2654), + [anon_sym_private] = ACTIONS(2654), + [anon_sym_extern] = ACTIONS(2654), + [anon_sym_inline] = ACTIONS(2654), + [anon_sym_overload] = ACTIONS(2654), + [anon_sym_override] = ACTIONS(2654), + [anon_sym_final] = ACTIONS(2654), + [anon_sym_class] = ACTIONS(2654), + [anon_sym_interface] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), + [anon_sym_typedef] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2654), + [anon_sym_var] = ACTIONS(2654), + [aux_sym_integer_token1] = ACTIONS(2654), + [aux_sym_integer_token2] = ACTIONS(2656), + [aux_sym_float_token1] = ACTIONS(2654), + [aux_sym_float_token2] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2654), + [anon_sym_false] = ACTIONS(2654), + [aux_sym_string_token1] = ACTIONS(2656), + [aux_sym_string_token3] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2656), [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(2660), + [anon_sym_package] = ACTIONS(2658), + [anon_sym_import] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_using] = ACTIONS(2658), + [anon_sym_throw] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2660), + [anon_sym_switch] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_cast] = ACTIONS(2658), + [anon_sym_DOLLARtype] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_untyped] = ACTIONS(2658), + [anon_sym_break] = ACTIONS(2658), + [anon_sym_continue] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_this] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_AT_COLON] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_catch] = ACTIONS(2658), + [anon_sym_else] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2660), + [anon_sym_DASH_DASH] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_SLASH] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_LT_LT] = ACTIONS(2660), + [anon_sym_GT_GT] = ACTIONS(2658), + [anon_sym_GT_GT_GT] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_CARET] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_EQ_EQ] = ACTIONS(2660), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_LT_EQ] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2658), + [anon_sym_GT_EQ] = ACTIONS(2660), + [anon_sym_EQ_GT] = ACTIONS(2660), + [anon_sym_QMARK_QMARK] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_macro] = ACTIONS(2658), + [anon_sym_abstract] = ACTIONS(2658), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_public] = ACTIONS(2658), + [anon_sym_private] = ACTIONS(2658), + [anon_sym_extern] = ACTIONS(2658), + [anon_sym_inline] = ACTIONS(2658), + [anon_sym_overload] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2658), + [anon_sym_final] = ACTIONS(2658), + [anon_sym_class] = ACTIONS(2658), + [anon_sym_interface] = ACTIONS(2658), + [anon_sym_enum] = ACTIONS(2658), + [anon_sym_typedef] = ACTIONS(2658), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_var] = ACTIONS(2658), + [aux_sym_integer_token1] = ACTIONS(2658), + [aux_sym_integer_token2] = ACTIONS(2660), + [aux_sym_float_token1] = ACTIONS(2658), + [aux_sym_float_token2] = ACTIONS(2660), + [anon_sym_true] = ACTIONS(2658), + [anon_sym_false] = ACTIONS(2658), + [aux_sym_string_token1] = ACTIONS(2660), + [aux_sym_string_token3] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2660), [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(2662), + [anon_sym_POUND] = ACTIONS(2664), + [anon_sym_package] = ACTIONS(2662), + [anon_sym_import] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_using] = ACTIONS(2662), + [anon_sym_throw] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_switch] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_case] = ACTIONS(2662), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_cast] = ACTIONS(2662), + [anon_sym_DOLLARtype] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_untyped] = ACTIONS(2662), + [anon_sym_break] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_AT_COLON] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_catch] = ACTIONS(2662), + [anon_sym_else] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT] = ACTIONS(2662), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_EQ_GT] = ACTIONS(2664), + [anon_sym_QMARK_QMARK] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_macro] = ACTIONS(2662), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_public] = ACTIONS(2662), + [anon_sym_private] = ACTIONS(2662), + [anon_sym_extern] = ACTIONS(2662), + [anon_sym_inline] = ACTIONS(2662), + [anon_sym_overload] = ACTIONS(2662), + [anon_sym_override] = ACTIONS(2662), + [anon_sym_final] = ACTIONS(2662), + [anon_sym_class] = ACTIONS(2662), + [anon_sym_interface] = ACTIONS(2662), + [anon_sym_enum] = ACTIONS(2662), + [anon_sym_typedef] = ACTIONS(2662), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_var] = ACTIONS(2662), + [aux_sym_integer_token1] = ACTIONS(2662), + [aux_sym_integer_token2] = ACTIONS(2664), + [aux_sym_float_token1] = ACTIONS(2662), + [aux_sym_float_token2] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2662), + [anon_sym_false] = ACTIONS(2662), + [aux_sym_string_token1] = ACTIONS(2664), + [aux_sym_string_token3] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2664), [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(2666), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_package] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2668), + [anon_sym_using] = ACTIONS(2666), + [anon_sym_throw] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_switch] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_case] = ACTIONS(2666), + [anon_sym_default] = ACTIONS(2666), + [anon_sym_cast] = ACTIONS(2666), + [anon_sym_DOLLARtype] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_untyped] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2668), + [anon_sym_this] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2666), + [anon_sym_AT_COLON] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_do] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2668), + [anon_sym_PERCENT] = ACTIONS(2668), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2668), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_GT_GT_GT] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_CARET] = ACTIONS(2668), + [anon_sym_AMP_AMP] = ACTIONS(2668), + [anon_sym_PIPE_PIPE] = ACTIONS(2668), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2668), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2668), + [anon_sym_EQ_GT] = ACTIONS(2668), + [anon_sym_QMARK_QMARK] = ACTIONS(2668), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2668), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_macro] = ACTIONS(2666), + [anon_sym_abstract] = ACTIONS(2666), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_extern] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_overload] = ACTIONS(2666), + [anon_sym_override] = ACTIONS(2666), + [anon_sym_final] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_interface] = ACTIONS(2666), + [anon_sym_enum] = ACTIONS(2666), + [anon_sym_typedef] = ACTIONS(2666), + [anon_sym_function] = ACTIONS(2666), + [anon_sym_var] = ACTIONS(2666), + [aux_sym_integer_token1] = ACTIONS(2666), + [aux_sym_integer_token2] = ACTIONS(2668), + [aux_sym_float_token1] = ACTIONS(2666), + [aux_sym_float_token2] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [aux_sym_string_token1] = ACTIONS(2668), + [aux_sym_string_token3] = ACTIONS(2668), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2668), [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(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(2670), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2672), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1046), [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(2674), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_package] = ACTIONS(2674), + [anon_sym_import] = ACTIONS(2674), + [anon_sym_STAR] = ACTIONS(2676), + [anon_sym_using] = ACTIONS(2674), + [anon_sym_throw] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_switch] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_case] = ACTIONS(2674), + [anon_sym_default] = ACTIONS(2674), + [anon_sym_cast] = ACTIONS(2674), + [anon_sym_DOLLARtype] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2674), + [anon_sym_return] = ACTIONS(2674), + [anon_sym_untyped] = ACTIONS(2674), + [anon_sym_break] = ACTIONS(2674), + [anon_sym_continue] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_this] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2674), + [anon_sym_AT_COLON] = ACTIONS(2676), + [anon_sym_try] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2674), + [anon_sym_else] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2674), + [anon_sym_while] = ACTIONS(2674), + [anon_sym_do] = ACTIONS(2674), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2674), + [anon_sym_LT_LT] = ACTIONS(2676), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_GT_GT_GT] = ACTIONS(2676), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2676), + [anon_sym_AMP_AMP] = ACTIONS(2676), + [anon_sym_PIPE_PIPE] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2676), + [anon_sym_BANG_EQ] = ACTIONS(2676), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_LT_EQ] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_EQ] = ACTIONS(2676), + [anon_sym_EQ_GT] = ACTIONS(2676), + [anon_sym_QMARK_QMARK] = ACTIONS(2676), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2676), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_macro] = ACTIONS(2674), + [anon_sym_abstract] = ACTIONS(2674), + [anon_sym_static] = ACTIONS(2674), + [anon_sym_public] = ACTIONS(2674), + [anon_sym_private] = ACTIONS(2674), + [anon_sym_extern] = ACTIONS(2674), + [anon_sym_inline] = ACTIONS(2674), + [anon_sym_overload] = ACTIONS(2674), + [anon_sym_override] = ACTIONS(2674), + [anon_sym_final] = ACTIONS(2674), + [anon_sym_class] = ACTIONS(2674), + [anon_sym_interface] = ACTIONS(2674), + [anon_sym_enum] = ACTIONS(2674), + [anon_sym_typedef] = ACTIONS(2674), + [anon_sym_function] = ACTIONS(2674), + [anon_sym_var] = ACTIONS(2674), + [aux_sym_integer_token1] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token1] = ACTIONS(2674), + [aux_sym_float_token2] = ACTIONS(2676), + [anon_sym_true] = ACTIONS(2674), + [anon_sym_false] = ACTIONS(2674), + [aux_sym_string_token1] = ACTIONS(2676), + [aux_sym_string_token3] = ACTIONS(2676), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2676), [sym__closing_brace_unmarker] = ACTIONS(3), }, [562] = { + [sym_identifier] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_package] = ACTIONS(2678), + [anon_sym_import] = ACTIONS(2678), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_using] = ACTIONS(2678), + [anon_sym_throw] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2678), + [anon_sym_default] = ACTIONS(2678), + [anon_sym_cast] = ACTIONS(2678), + [anon_sym_DOLLARtype] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2678), + [anon_sym_return] = ACTIONS(2678), + [anon_sym_untyped] = ACTIONS(2678), + [anon_sym_break] = ACTIONS(2678), + [anon_sym_continue] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2680), + [anon_sym_this] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2678), + [anon_sym_AT_COLON] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2678), + [anon_sym_catch] = ACTIONS(2678), + [anon_sym_else] = ACTIONS(2678), + [anon_sym_if] = ACTIONS(2678), + [anon_sym_while] = ACTIONS(2678), + [anon_sym_do] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2680), + [anon_sym_PERCENT] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2678), + [anon_sym_LT_LT] = ACTIONS(2680), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_GT_GT_GT] = ACTIONS(2680), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2680), + [anon_sym_AMP_AMP] = ACTIONS(2680), + [anon_sym_PIPE_PIPE] = ACTIONS(2680), + [anon_sym_EQ_EQ] = ACTIONS(2680), + [anon_sym_BANG_EQ] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2678), + [anon_sym_LT_EQ] = ACTIONS(2680), + [anon_sym_GT] = ACTIONS(2678), + [anon_sym_GT_EQ] = ACTIONS(2680), + [anon_sym_EQ_GT] = ACTIONS(2680), + [anon_sym_QMARK_QMARK] = ACTIONS(2680), + [anon_sym_EQ] = ACTIONS(2678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), + [anon_sym_null] = ACTIONS(2678), + [anon_sym_macro] = ACTIONS(2678), + [anon_sym_abstract] = ACTIONS(2678), + [anon_sym_static] = ACTIONS(2678), + [anon_sym_public] = ACTIONS(2678), + [anon_sym_private] = ACTIONS(2678), + [anon_sym_extern] = ACTIONS(2678), + [anon_sym_inline] = ACTIONS(2678), + [anon_sym_overload] = ACTIONS(2678), + [anon_sym_override] = ACTIONS(2678), + [anon_sym_final] = ACTIONS(2678), + [anon_sym_class] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2678), + [anon_sym_enum] = ACTIONS(2678), + [anon_sym_typedef] = ACTIONS(2678), + [anon_sym_function] = ACTIONS(2678), + [anon_sym_var] = ACTIONS(2678), + [aux_sym_integer_token1] = ACTIONS(2678), + [aux_sym_integer_token2] = ACTIONS(2680), + [aux_sym_float_token1] = ACTIONS(2678), + [aux_sym_float_token2] = ACTIONS(2680), + [anon_sym_true] = ACTIONS(2678), + [anon_sym_false] = ACTIONS(2678), + [aux_sym_string_token1] = ACTIONS(2680), + [aux_sym_string_token3] = ACTIONS(2680), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2680), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [563] = { + [sym_identifier] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_package] = ACTIONS(2682), + [anon_sym_import] = ACTIONS(2682), + [anon_sym_STAR] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2682), + [anon_sym_throw] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_case] = ACTIONS(2682), + [anon_sym_default] = ACTIONS(2682), + [anon_sym_cast] = ACTIONS(2682), + [anon_sym_DOLLARtype] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2682), + [anon_sym_untyped] = ACTIONS(2682), + [anon_sym_break] = ACTIONS(2682), + [anon_sym_continue] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_this] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2682), + [anon_sym_AT_COLON] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2682), + [anon_sym_catch] = ACTIONS(2682), + [anon_sym_else] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2682), + [anon_sym_while] = ACTIONS(2682), + [anon_sym_do] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(2682), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2684), + [anon_sym_PERCENT] = ACTIONS(2684), + [anon_sym_SLASH] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2682), + [anon_sym_LT_LT] = ACTIONS(2684), + [anon_sym_GT_GT] = ACTIONS(2682), + [anon_sym_GT_GT_GT] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(2682), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP_AMP] = ACTIONS(2684), + [anon_sym_PIPE_PIPE] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2684), + [anon_sym_BANG_EQ] = ACTIONS(2684), + [anon_sym_LT] = ACTIONS(2682), + [anon_sym_LT_EQ] = ACTIONS(2684), + [anon_sym_GT] = ACTIONS(2682), + [anon_sym_GT_EQ] = ACTIONS(2684), + [anon_sym_EQ_GT] = ACTIONS(2684), + [anon_sym_QMARK_QMARK] = ACTIONS(2684), + [anon_sym_EQ] = ACTIONS(2682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2684), + [anon_sym_null] = ACTIONS(2682), + [anon_sym_macro] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2682), + [anon_sym_static] = ACTIONS(2682), + [anon_sym_public] = ACTIONS(2682), + [anon_sym_private] = ACTIONS(2682), + [anon_sym_extern] = ACTIONS(2682), + [anon_sym_inline] = ACTIONS(2682), + [anon_sym_overload] = ACTIONS(2682), + [anon_sym_override] = ACTIONS(2682), + [anon_sym_final] = ACTIONS(2682), + [anon_sym_class] = ACTIONS(2682), + [anon_sym_interface] = ACTIONS(2682), + [anon_sym_enum] = ACTIONS(2682), + [anon_sym_typedef] = ACTIONS(2682), + [anon_sym_function] = ACTIONS(2682), + [anon_sym_var] = ACTIONS(2682), + [aux_sym_integer_token1] = ACTIONS(2682), + [aux_sym_integer_token2] = ACTIONS(2684), + [aux_sym_float_token1] = ACTIONS(2682), + [aux_sym_float_token2] = ACTIONS(2684), + [anon_sym_true] = ACTIONS(2682), + [anon_sym_false] = ACTIONS(2682), + [aux_sym_string_token1] = ACTIONS(2684), + [aux_sym_string_token3] = ACTIONS(2684), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2684), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [564] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(2686), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_using] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_cast] = ACTIONS(1048), + [anon_sym_DOLLARtype] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_this] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(2688), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_AT_COLON] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1956), + [anon_sym_QMARK_QMARK] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1048), + [anon_sym_macro] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_overload] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_function] = ACTIONS(1048), + [anon_sym_var] = ACTIONS(1048), + [aux_sym_integer_token1] = ACTIONS(1048), + [aux_sym_integer_token2] = ACTIONS(1046), + [aux_sym_float_token1] = ACTIONS(1048), + [aux_sym_float_token2] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [aux_sym_string_token1] = ACTIONS(1046), + [aux_sym_string_token3] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [565] = { + [sym_identifier] = ACTIONS(2690), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_package] = ACTIONS(2690), + [anon_sym_import] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_using] = ACTIONS(2690), + [anon_sym_throw] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_case] = ACTIONS(2690), + [anon_sym_default] = ACTIONS(2690), + [anon_sym_cast] = ACTIONS(2690), + [anon_sym_DOLLARtype] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2690), + [anon_sym_untyped] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_this] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_AT_COLON] = ACTIONS(2692), + [anon_sym_try] = ACTIONS(2690), + [anon_sym_catch] = ACTIONS(2690), + [anon_sym_else] = ACTIONS(2690), + [anon_sym_if] = ACTIONS(2690), + [anon_sym_while] = ACTIONS(2690), + [anon_sym_do] = ACTIONS(2690), + [anon_sym_new] = ACTIONS(2690), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2690), + [anon_sym_PLUS] = ACTIONS(2690), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2690), + [anon_sym_GT_GT_GT] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2692), + [anon_sym_BANG_EQ] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2690), + [anon_sym_LT_EQ] = ACTIONS(2692), + [anon_sym_GT] = ACTIONS(2690), + [anon_sym_GT_EQ] = ACTIONS(2692), + [anon_sym_EQ_GT] = ACTIONS(2692), + [anon_sym_QMARK_QMARK] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2690), + [anon_sym_macro] = ACTIONS(2690), + [anon_sym_abstract] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(2690), + [anon_sym_public] = ACTIONS(2690), + [anon_sym_private] = ACTIONS(2690), + [anon_sym_extern] = ACTIONS(2690), + [anon_sym_inline] = ACTIONS(2690), + [anon_sym_overload] = ACTIONS(2690), + [anon_sym_override] = ACTIONS(2690), + [anon_sym_final] = ACTIONS(2690), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_interface] = ACTIONS(2690), + [anon_sym_enum] = ACTIONS(2690), + [anon_sym_typedef] = ACTIONS(2690), + [anon_sym_function] = ACTIONS(2690), + [anon_sym_var] = ACTIONS(2690), + [aux_sym_integer_token1] = ACTIONS(2690), + [aux_sym_integer_token2] = ACTIONS(2692), + [aux_sym_float_token1] = ACTIONS(2690), + [aux_sym_float_token2] = ACTIONS(2692), + [anon_sym_true] = ACTIONS(2690), + [anon_sym_false] = ACTIONS(2690), + [aux_sym_string_token1] = ACTIONS(2692), + [aux_sym_string_token3] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2692), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [566] = { + [sym_identifier] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_package] = ACTIONS(2694), + [anon_sym_import] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_using] = ACTIONS(2694), + [anon_sym_throw] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_switch] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_case] = ACTIONS(2694), + [anon_sym_default] = ACTIONS(2694), + [anon_sym_cast] = ACTIONS(2694), + [anon_sym_DOLLARtype] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_untyped] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2696), + [anon_sym_this] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_AT_COLON] = ACTIONS(2696), + [anon_sym_try] = ACTIONS(2694), + [anon_sym_catch] = ACTIONS(2694), + [anon_sym_else] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_while] = ACTIONS(2694), + [anon_sym_do] = ACTIONS(2694), + [anon_sym_new] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP_AMP] = ACTIONS(2696), + [anon_sym_PIPE_PIPE] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2696), + [anon_sym_BANG_EQ] = ACTIONS(2696), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2696), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2696), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_QMARK] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2694), + [anon_sym_macro] = ACTIONS(2694), + [anon_sym_abstract] = ACTIONS(2694), + [anon_sym_static] = ACTIONS(2694), + [anon_sym_public] = ACTIONS(2694), + [anon_sym_private] = ACTIONS(2694), + [anon_sym_extern] = ACTIONS(2694), + [anon_sym_inline] = ACTIONS(2694), + [anon_sym_overload] = ACTIONS(2694), + [anon_sym_override] = ACTIONS(2694), + [anon_sym_final] = ACTIONS(2694), + [anon_sym_class] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_typedef] = ACTIONS(2694), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_var] = ACTIONS(2694), + [aux_sym_integer_token1] = ACTIONS(2694), + [aux_sym_integer_token2] = ACTIONS(2696), + [aux_sym_float_token1] = ACTIONS(2694), + [aux_sym_float_token2] = ACTIONS(2696), + [anon_sym_true] = ACTIONS(2694), + [anon_sym_false] = ACTIONS(2694), + [aux_sym_string_token1] = ACTIONS(2696), + [aux_sym_string_token3] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2696), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [567] = { + [sym_identifier] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_package] = ACTIONS(2698), + [anon_sym_import] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_using] = ACTIONS(2698), + [anon_sym_throw] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2698), + [anon_sym_default] = ACTIONS(2698), + [anon_sym_cast] = ACTIONS(2698), + [anon_sym_DOLLARtype] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_return] = ACTIONS(2698), + [anon_sym_untyped] = ACTIONS(2698), + [anon_sym_break] = ACTIONS(2698), + [anon_sym_continue] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_this] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_AT_COLON] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2698), + [anon_sym_catch] = ACTIONS(2698), + [anon_sym_else] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [anon_sym_do] = ACTIONS(2698), + [anon_sym_new] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2698), + [anon_sym_PLUS] = ACTIONS(2698), + [anon_sym_LT_LT] = ACTIONS(2700), + [anon_sym_GT_GT] = ACTIONS(2698), + [anon_sym_GT_GT_GT] = ACTIONS(2700), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_AMP_AMP] = ACTIONS(2700), + [anon_sym_PIPE_PIPE] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2700), + [anon_sym_BANG_EQ] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_LT_EQ] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2698), + [anon_sym_GT_EQ] = ACTIONS(2700), + [anon_sym_EQ_GT] = ACTIONS(2700), + [anon_sym_QMARK_QMARK] = ACTIONS(2700), + [anon_sym_EQ] = ACTIONS(2698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2698), + [anon_sym_macro] = ACTIONS(2698), + [anon_sym_abstract] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2698), + [anon_sym_public] = ACTIONS(2698), + [anon_sym_private] = ACTIONS(2698), + [anon_sym_extern] = ACTIONS(2698), + [anon_sym_inline] = ACTIONS(2698), + [anon_sym_overload] = ACTIONS(2698), + [anon_sym_override] = ACTIONS(2698), + [anon_sym_final] = ACTIONS(2698), + [anon_sym_class] = ACTIONS(2698), + [anon_sym_interface] = ACTIONS(2698), + [anon_sym_enum] = ACTIONS(2698), + [anon_sym_typedef] = ACTIONS(2698), + [anon_sym_function] = ACTIONS(2698), + [anon_sym_var] = ACTIONS(2698), + [aux_sym_integer_token1] = ACTIONS(2698), + [aux_sym_integer_token2] = ACTIONS(2700), + [aux_sym_float_token1] = ACTIONS(2698), + [aux_sym_float_token2] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2698), + [anon_sym_false] = ACTIONS(2698), + [aux_sym_string_token1] = ACTIONS(2700), + [aux_sym_string_token3] = ACTIONS(2700), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2700), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [568] = { + [sym_identifier] = ACTIONS(2702), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_package] = ACTIONS(2702), + [anon_sym_import] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_using] = ACTIONS(2702), + [anon_sym_throw] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2702), + [anon_sym_default] = ACTIONS(2702), + [anon_sym_cast] = ACTIONS(2702), + [anon_sym_DOLLARtype] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2702), + [anon_sym_untyped] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2704), + [anon_sym_this] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_AT_COLON] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2702), + [anon_sym_catch] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [anon_sym_do] = ACTIONS(2702), + [anon_sym_new] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2702), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2704), + [anon_sym_BANG_EQ] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2702), + [anon_sym_LT_EQ] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2704), + [anon_sym_EQ_GT] = ACTIONS(2704), + [anon_sym_QMARK_QMARK] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2702), + [anon_sym_macro] = ACTIONS(2702), + [anon_sym_abstract] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2702), + [anon_sym_public] = ACTIONS(2702), + [anon_sym_private] = ACTIONS(2702), + [anon_sym_extern] = ACTIONS(2702), + [anon_sym_inline] = ACTIONS(2702), + [anon_sym_overload] = ACTIONS(2702), + [anon_sym_override] = ACTIONS(2702), + [anon_sym_final] = ACTIONS(2702), + [anon_sym_class] = ACTIONS(2702), + [anon_sym_interface] = ACTIONS(2702), + [anon_sym_enum] = ACTIONS(2702), + [anon_sym_typedef] = ACTIONS(2702), + [anon_sym_function] = ACTIONS(2702), + [anon_sym_var] = ACTIONS(2702), + [aux_sym_integer_token1] = ACTIONS(2702), + [aux_sym_integer_token2] = ACTIONS(2704), + [aux_sym_float_token1] = ACTIONS(2702), + [aux_sym_float_token2] = ACTIONS(2704), + [anon_sym_true] = ACTIONS(2702), + [anon_sym_false] = ACTIONS(2702), + [aux_sym_string_token1] = ACTIONS(2704), + [aux_sym_string_token3] = ACTIONS(2704), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2704), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [569] = { + [sym_identifier] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_package] = ACTIONS(2706), + [anon_sym_import] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_using] = ACTIONS(2706), + [anon_sym_throw] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2706), + [anon_sym_default] = ACTIONS(2706), + [anon_sym_cast] = ACTIONS(2706), + [anon_sym_DOLLARtype] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2706), + [anon_sym_untyped] = ACTIONS(2706), + [anon_sym_break] = ACTIONS(2706), + [anon_sym_continue] = ACTIONS(2706), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_this] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_AT_COLON] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2706), + [anon_sym_catch] = ACTIONS(2706), + [anon_sym_else] = ACTIONS(2706), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_while] = ACTIONS(2706), + [anon_sym_do] = ACTIONS(2706), + [anon_sym_new] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2706), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2706), + [anon_sym_GT_GT_GT] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2706), + [anon_sym_LT_EQ] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2708), + [anon_sym_EQ_GT] = ACTIONS(2708), + [anon_sym_QMARK_QMARK] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2706), + [anon_sym_macro] = ACTIONS(2706), + [anon_sym_abstract] = ACTIONS(2706), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2706), + [anon_sym_private] = ACTIONS(2706), + [anon_sym_extern] = ACTIONS(2706), + [anon_sym_inline] = ACTIONS(2706), + [anon_sym_overload] = ACTIONS(2706), + [anon_sym_override] = ACTIONS(2706), + [anon_sym_final] = ACTIONS(2706), + [anon_sym_class] = ACTIONS(2706), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2706), + [anon_sym_typedef] = ACTIONS(2706), + [anon_sym_function] = ACTIONS(2706), + [anon_sym_var] = ACTIONS(2706), + [aux_sym_integer_token1] = ACTIONS(2706), + [aux_sym_integer_token2] = ACTIONS(2708), + [aux_sym_float_token1] = ACTIONS(2706), + [aux_sym_float_token2] = ACTIONS(2708), + [anon_sym_true] = ACTIONS(2706), + [anon_sym_false] = ACTIONS(2706), + [aux_sym_string_token1] = ACTIONS(2708), + [aux_sym_string_token3] = ACTIONS(2708), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2708), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [570] = { + [sym_else_clause] = STATE(791), [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_STAR] = ACTIONS(1950), [anon_sym_using] = ACTIONS(1948), [anon_sym_throw] = ACTIONS(1948), [anon_sym_LPAREN] = ACTIONS(1950), @@ -57518,6 +66175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1950), [anon_sym_cast] = ACTIONS(1948), [anon_sym_DOLLARtype] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1948), [anon_sym_return] = ACTIONS(1948), [anon_sym_untyped] = ACTIONS(1948), [anon_sym_break] = ACTIONS(1948), @@ -57526,7 +66184,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1948), [anon_sym_AT] = ACTIONS(1948), [anon_sym_AT_COLON] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(2710), [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), [anon_sym_new] = ACTIONS(1948), [anon_sym_TILDE] = ACTIONS(1950), [anon_sym_BANG] = ACTIONS(1948), @@ -57534,7 +66197,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1950), [anon_sym_DASH_DASH] = ACTIONS(1950), [anon_sym_PERCENT] = 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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2712), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [571] = { + [sym_identifier] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_package] = ACTIONS(2714), + [anon_sym_import] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_using] = ACTIONS(2714), + [anon_sym_throw] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2714), + [anon_sym_default] = ACTIONS(2714), + [anon_sym_cast] = ACTIONS(2714), + [anon_sym_DOLLARtype] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_untyped] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_this] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2714), + [anon_sym_AT_COLON] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2714), + [anon_sym_catch] = ACTIONS(2714), + [anon_sym_else] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_while] = ACTIONS(2714), + [anon_sym_do] = ACTIONS(2714), + [anon_sym_new] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [anon_sym_PERCENT] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_LT_LT] = ACTIONS(2716), + [anon_sym_GT_GT] = ACTIONS(2714), + [anon_sym_GT_GT_GT] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2716), + [anon_sym_AMP_AMP] = ACTIONS(2716), + [anon_sym_PIPE_PIPE] = ACTIONS(2716), + [anon_sym_EQ_EQ] = ACTIONS(2716), + [anon_sym_BANG_EQ] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_LT_EQ] = ACTIONS(2716), + [anon_sym_GT] = ACTIONS(2714), + [anon_sym_GT_EQ] = ACTIONS(2716), + [anon_sym_EQ_GT] = ACTIONS(2716), + [anon_sym_QMARK_QMARK] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2714), + [anon_sym_macro] = ACTIONS(2714), + [anon_sym_abstract] = ACTIONS(2714), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_public] = ACTIONS(2714), + [anon_sym_private] = ACTIONS(2714), + [anon_sym_extern] = ACTIONS(2714), + [anon_sym_inline] = ACTIONS(2714), + [anon_sym_overload] = ACTIONS(2714), + [anon_sym_override] = ACTIONS(2714), + [anon_sym_final] = ACTIONS(2714), + [anon_sym_class] = ACTIONS(2714), + [anon_sym_interface] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [anon_sym_typedef] = ACTIONS(2714), + [anon_sym_function] = ACTIONS(2714), + [anon_sym_var] = ACTIONS(2714), + [aux_sym_integer_token1] = ACTIONS(2714), + [aux_sym_integer_token2] = ACTIONS(2716), + [aux_sym_float_token1] = ACTIONS(2714), + [aux_sym_float_token2] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2714), + [anon_sym_false] = ACTIONS(2714), + [aux_sym_string_token1] = ACTIONS(2716), + [aux_sym_string_token3] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2716), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [572] = { + [sym_else_clause] = STATE(470), + [sym_identifier] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_package] = ACTIONS(1948), + [anon_sym_import] = ACTIONS(1948), [anon_sym_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_SLASH] = ACTIONS(1948), [anon_sym_PLUS] = ACTIONS(1948), [anon_sym_LT_LT] = ACTIONS(1950), @@ -57554,7 +66387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1950), [anon_sym_QMARK_QMARK] = ACTIONS(1950), [anon_sym_EQ] = ACTIONS(1948), - [sym__rangeOperator] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1950), [anon_sym_null] = ACTIONS(1948), [anon_sym_macro] = ACTIONS(1948), [anon_sym_abstract] = ACTIONS(1948), @@ -57568,6 +66401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1948), [anon_sym_class] = ACTIONS(1948), [anon_sym_interface] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), [anon_sym_typedef] = ACTIONS(1948), [anon_sym_function] = ACTIONS(1948), [anon_sym_var] = ACTIONS(1948), @@ -57580,4172 +66414,2753 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(1950), [aux_sym_string_token3] = ACTIONS(1950), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2720), + [sym__closing_brace_marker] = ACTIONS(1950), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [563] = { + [573] = { + [sym_catch_statement] = STATE(585), + [aux_sym_try_statement_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [574] = { + [sym_catch_statement] = STATE(585), + [aux_sym_try_statement_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2730), + [anon_sym_DOLLARtype] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_untyped] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_AT_COLON] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2728), + [anon_sym_QMARK_QMARK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2730), + [anon_sym_macro] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_inline] = ACTIONS(2730), + [anon_sym_overload] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_final] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_typedef] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [aux_sym_integer_token1] = ACTIONS(2730), + [aux_sym_integer_token2] = ACTIONS(2728), + [aux_sym_float_token1] = ACTIONS(2730), + [aux_sym_float_token2] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [aux_sym_string_token1] = ACTIONS(2728), + [aux_sym_string_token3] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [575] = { + [sym_catch_statement] = STATE(585), + [aux_sym_try_statement_repeat1] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2232), [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_package] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2228), + [anon_sym_switch] = ACTIONS(2232), [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2228), + [anon_sym_cast] = ACTIONS(2232), [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_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_untyped] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_catch] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), [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_SLASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT] = ACTIONS(2232), [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), [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] = ACTIONS(2232), [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2228), + [anon_sym_GT] = ACTIONS(2232), [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), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), + [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2228), + [aux_sym_float_token1] = ACTIONS(2232), [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), [aux_sym_string_token1] = ACTIONS(2230), [aux_sym_string_token3] = ACTIONS(2230), [sym_comment] = ACTIONS(3), [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), + [576] = { + [sym_catch_statement] = STATE(578), + [aux_sym_try_statement_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2732), + [anon_sym_else] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2722), [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), + [577] = { + [sym_catch_statement] = STATE(578), + [aux_sym_try_statement_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2730), + [anon_sym_DOLLARtype] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_untyped] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_AT_COLON] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_catch] = ACTIONS(2732), + [anon_sym_else] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2728), + [anon_sym_QMARK_QMARK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2730), + [anon_sym_macro] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_inline] = ACTIONS(2730), + [anon_sym_overload] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_final] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_typedef] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [aux_sym_integer_token1] = ACTIONS(2730), + [aux_sym_integer_token2] = ACTIONS(2728), + [aux_sym_float_token1] = ACTIONS(2730), + [aux_sym_float_token2] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [aux_sym_string_token1] = ACTIONS(2728), + [aux_sym_string_token3] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2728), [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), + [578] = { + [sym_catch_statement] = STATE(578), + [aux_sym_try_statement_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_package] = ACTIONS(2734), + [anon_sym_import] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_using] = ACTIONS(2734), + [anon_sym_throw] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_cast] = ACTIONS(2734), + [anon_sym_DOLLARtype] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2734), + [anon_sym_untyped] = ACTIONS(2734), + [anon_sym_break] = ACTIONS(2734), + [anon_sym_continue] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2736), + [anon_sym_this] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2734), + [anon_sym_AT_COLON] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2734), + [anon_sym_catch] = ACTIONS(2738), + [anon_sym_else] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2734), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_do] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2734), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2734), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_EQ_GT] = ACTIONS(2736), + [anon_sym_QMARK_QMARK] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), + [anon_sym_null] = ACTIONS(2734), + [anon_sym_macro] = ACTIONS(2734), + [anon_sym_abstract] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2734), + [anon_sym_public] = ACTIONS(2734), + [anon_sym_private] = ACTIONS(2734), + [anon_sym_extern] = ACTIONS(2734), + [anon_sym_inline] = ACTIONS(2734), + [anon_sym_overload] = ACTIONS(2734), + [anon_sym_override] = ACTIONS(2734), + [anon_sym_final] = ACTIONS(2734), + [anon_sym_class] = ACTIONS(2734), + [anon_sym_interface] = ACTIONS(2734), + [anon_sym_enum] = ACTIONS(2734), + [anon_sym_typedef] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2734), + [anon_sym_var] = ACTIONS(2734), + [aux_sym_integer_token1] = ACTIONS(2734), + [aux_sym_integer_token2] = ACTIONS(2736), + [aux_sym_float_token1] = ACTIONS(2734), + [aux_sym_float_token2] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [aux_sym_string_token1] = ACTIONS(2736), + [aux_sym_string_token3] = ACTIONS(2736), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2736), [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), + [579] = { + [sym_catch_statement] = STATE(578), + [aux_sym_try_statement_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_cast] = ACTIONS(2232), + [anon_sym_DOLLARtype] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_untyped] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), + [anon_sym_AT_COLON] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_catch] = ACTIONS(2732), + [anon_sym_else] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [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(2232), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), + [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_enum] = 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(2230), + [aux_sym_float_token1] = ACTIONS(2232), + [aux_sym_float_token2] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [aux_sym_string_token1] = ACTIONS(2230), + [aux_sym_string_token3] = ACTIONS(2230), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2230), [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), + [580] = { + [sym_catch_statement] = STATE(578), + [aux_sym_try_statement_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2722), [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), + [581] = { + [sym_catch_statement] = STATE(578), + [aux_sym_try_statement_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2730), + [anon_sym_DOLLARtype] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_untyped] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_AT_COLON] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_catch] = ACTIONS(2730), + [anon_sym_else] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2728), + [anon_sym_QMARK_QMARK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2730), + [anon_sym_macro] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_inline] = ACTIONS(2730), + [anon_sym_overload] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_final] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_typedef] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [aux_sym_integer_token1] = ACTIONS(2730), + [aux_sym_integer_token2] = ACTIONS(2728), + [aux_sym_float_token1] = ACTIONS(2730), + [aux_sym_float_token2] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [aux_sym_string_token1] = ACTIONS(2728), + [aux_sym_string_token3] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2728), [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), + [582] = { + [sym_catch_statement] = STATE(578), + [aux_sym_try_statement_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_cast] = ACTIONS(2232), + [anon_sym_DOLLARtype] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_untyped] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), + [anon_sym_AT_COLON] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_catch] = ACTIONS(2232), + [anon_sym_else] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [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(2232), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), + [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_enum] = 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(2230), + [aux_sym_float_token1] = ACTIONS(2232), + [aux_sym_float_token2] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [aux_sym_string_token1] = ACTIONS(2230), + [aux_sym_string_token3] = ACTIONS(2230), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2230), [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), + [583] = { + [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), + }, + [584] = { + [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), + }, + [585] = { + [sym_catch_statement] = STATE(585), + [aux_sym_try_statement_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2736), + [sym_identifier] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_package] = ACTIONS(2734), + [anon_sym_import] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_using] = ACTIONS(2734), + [anon_sym_throw] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_cast] = ACTIONS(2734), + [anon_sym_DOLLARtype] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2734), + [anon_sym_untyped] = ACTIONS(2734), + [anon_sym_break] = ACTIONS(2734), + [anon_sym_continue] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2736), + [anon_sym_this] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2734), + [anon_sym_AT_COLON] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2734), + [anon_sym_catch] = ACTIONS(2749), + [anon_sym_else] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2734), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_do] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2734), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2734), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_EQ_GT] = ACTIONS(2736), + [anon_sym_QMARK_QMARK] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), + [anon_sym_null] = ACTIONS(2734), + [anon_sym_macro] = ACTIONS(2734), + [anon_sym_abstract] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2734), + [anon_sym_public] = ACTIONS(2734), + [anon_sym_private] = ACTIONS(2734), + [anon_sym_extern] = ACTIONS(2734), + [anon_sym_inline] = ACTIONS(2734), + [anon_sym_overload] = ACTIONS(2734), + [anon_sym_override] = ACTIONS(2734), + [anon_sym_final] = ACTIONS(2734), + [anon_sym_class] = ACTIONS(2734), + [anon_sym_interface] = ACTIONS(2734), + [anon_sym_enum] = ACTIONS(2734), + [anon_sym_typedef] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2734), + [anon_sym_var] = ACTIONS(2734), + [aux_sym_integer_token1] = ACTIONS(2734), + [aux_sym_integer_token2] = ACTIONS(2736), + [aux_sym_float_token1] = ACTIONS(2734), + [aux_sym_float_token2] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [aux_sym_string_token1] = ACTIONS(2736), + [aux_sym_string_token3] = ACTIONS(2736), [sym_comment] = ACTIONS(3), [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), + [586] = { + [sym_catch_statement] = STATE(585), + [aux_sym_try_statement_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), [sym_comment] = ACTIONS(3), [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__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__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__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__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__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__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__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__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__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__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__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__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__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__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), + [587] = { + [sym_catch_statement] = STATE(585), + [aux_sym_try_statement_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2730), + [anon_sym_DOLLARtype] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_untyped] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_AT_COLON] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_catch] = ACTIONS(2730), + [anon_sym_else] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2728), + [anon_sym_QMARK_QMARK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2730), + [anon_sym_macro] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_inline] = ACTIONS(2730), + [anon_sym_overload] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_final] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_typedef] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [aux_sym_integer_token1] = ACTIONS(2730), + [aux_sym_integer_token2] = ACTIONS(2728), + [aux_sym_float_token1] = ACTIONS(2730), + [aux_sym_float_token2] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [aux_sym_string_token1] = ACTIONS(2728), + [aux_sym_string_token3] = ACTIONS(2728), [sym_comment] = ACTIONS(3), [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(2752), + [anon_sym_POUND] = ACTIONS(2754), + [anon_sym_package] = ACTIONS(2752), + [anon_sym_import] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_cast] = ACTIONS(2752), + [anon_sym_DOLLARtype] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_untyped] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_this] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_AT_COLON] = ACTIONS(2754), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PERCENT] = ACTIONS(2754), + [anon_sym_SLASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_GT_GT_GT] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_EQ_EQ] = ACTIONS(2754), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_LT_EQ] = ACTIONS(2754), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_EQ] = ACTIONS(2754), + [anon_sym_EQ_GT] = ACTIONS(2754), + [anon_sym_QMARK_QMARK] = ACTIONS(2754), + [anon_sym_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_macro] = ACTIONS(2752), + [anon_sym_abstract] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym_overload] = ACTIONS(2752), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_final] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_interface] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_var] = ACTIONS(2752), + [aux_sym_integer_token1] = ACTIONS(2752), + [aux_sym_integer_token2] = ACTIONS(2754), + [aux_sym_float_token1] = ACTIONS(2752), + [aux_sym_float_token2] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [aux_sym_string_token1] = ACTIONS(2754), + [aux_sym_string_token3] = ACTIONS(2754), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2754), [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_else_clause] = STATE(470), + [sym_identifier] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_package] = ACTIONS(1948), + [anon_sym_import] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2758), + [sym__closing_brace_marker] = ACTIONS(1950), [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_else_clause] = STATE(709), + [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_STAR] = ACTIONS(1978), + [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_for] = ACTIONS(1976), + [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_try] = ACTIONS(1976), + [anon_sym_catch] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2730), + [anon_sym_DOLLARtype] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_untyped] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_AT_COLON] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_catch] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2728), + [anon_sym_QMARK_QMARK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2730), + [anon_sym_macro] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_inline] = ACTIONS(2730), + [anon_sym_overload] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_final] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_typedef] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [aux_sym_integer_token1] = ACTIONS(2730), + [aux_sym_integer_token2] = ACTIONS(2728), + [aux_sym_float_token1] = ACTIONS(2730), + [aux_sym_float_token2] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [aux_sym_string_token1] = ACTIONS(2728), + [aux_sym_string_token3] = ACTIONS(2728), [sym_comment] = ACTIONS(3), [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_else_clause] = STATE(791), + [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_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(271), [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), + [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_STAR] = ACTIONS(1966), + [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_for] = ACTIONS(1964), + [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_try] = ACTIONS(1964), + [anon_sym_catch] = ACTIONS(1964), + [anon_sym_else] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2762), [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_else_clause] = STATE(669), + [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_STAR] = ACTIONS(1974), + [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_for] = ACTIONS(1972), + [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_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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_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_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_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__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__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__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__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_else_clause] = STATE(791), + [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_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [596] = { + [sym_else_clause] = STATE(470), + [sym_identifier] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_package] = ACTIONS(1948), + [anon_sym_import] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__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), + [597] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2736), + [sym_identifier] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_package] = ACTIONS(2734), + [anon_sym_import] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_using] = ACTIONS(2734), + [anon_sym_throw] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_cast] = ACTIONS(2734), + [anon_sym_DOLLARtype] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2734), + [anon_sym_untyped] = ACTIONS(2734), + [anon_sym_break] = ACTIONS(2734), + [anon_sym_continue] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2736), + [anon_sym_this] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2734), + [anon_sym_AT_COLON] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2734), + [anon_sym_catch] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2734), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_do] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2734), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2734), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_EQ_GT] = ACTIONS(2736), + [anon_sym_QMARK_QMARK] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), + [anon_sym_null] = ACTIONS(2734), + [anon_sym_macro] = ACTIONS(2734), + [anon_sym_abstract] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2734), + [anon_sym_public] = ACTIONS(2734), + [anon_sym_private] = ACTIONS(2734), + [anon_sym_extern] = ACTIONS(2734), + [anon_sym_inline] = ACTIONS(2734), + [anon_sym_overload] = ACTIONS(2734), + [anon_sym_override] = ACTIONS(2734), + [anon_sym_final] = ACTIONS(2734), + [anon_sym_class] = ACTIONS(2734), + [anon_sym_interface] = ACTIONS(2734), + [anon_sym_enum] = ACTIONS(2734), + [anon_sym_typedef] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2734), + [anon_sym_var] = ACTIONS(2734), + [aux_sym_integer_token1] = ACTIONS(2734), + [aux_sym_integer_token2] = ACTIONS(2736), + [aux_sym_float_token1] = ACTIONS(2734), + [aux_sym_float_token2] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [aux_sym_string_token1] = ACTIONS(2736), + [aux_sym_string_token3] = ACTIONS(2736), [sym_comment] = ACTIONS(3), [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), + [598] = { + [sym_else_clause] = STATE(491), + [sym_identifier] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_package] = ACTIONS(1972), + [anon_sym_import] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [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_for] = ACTIONS(1972), + [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_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__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), + [599] = { + [sym_else_clause] = STATE(520), + [sym_identifier] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_package] = ACTIONS(1976), + [anon_sym_import] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [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_for] = ACTIONS(1976), + [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_try] = ACTIONS(1976), + [anon_sym_catch] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), [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), + [600] = { + [sym_catch_statement] = STATE(614), + [aux_sym_try_statement_repeat1] = STATE(614), + [sym_identifier] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_cast] = ACTIONS(2232), + [anon_sym_DOLLARtype] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_untyped] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), + [anon_sym_AT_COLON] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_catch] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [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(2232), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), + [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_enum] = 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(2230), + [aux_sym_float_token1] = ACTIONS(2232), + [aux_sym_float_token2] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [aux_sym_string_token1] = ACTIONS(2230), + [aux_sym_string_token3] = ACTIONS(2230), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2230), [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__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_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_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__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__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), + [601] = { + [sym_else_clause] = STATE(709), + [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_STAR] = ACTIONS(1978), + [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_for] = ACTIONS(1976), + [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_try] = ACTIONS(1976), + [anon_sym_catch] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [602] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), [sym_comment] = ACTIONS(3), [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), + [603] = { + [sym_else_clause] = STATE(669), + [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_STAR] = ACTIONS(1974), + [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_for] = ACTIONS(1972), + [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_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [604] = { + [sym_catch_statement] = STATE(614), + [aux_sym_try_statement_repeat1] = STATE(614), + [sym_identifier] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_cast] = ACTIONS(2232), + [anon_sym_DOLLARtype] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_untyped] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), + [anon_sym_AT_COLON] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_catch] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [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(2232), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), + [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_enum] = 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(2230), + [aux_sym_float_token1] = ACTIONS(2232), + [aux_sym_float_token2] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [aux_sym_string_token1] = ACTIONS(2230), + [aux_sym_string_token3] = ACTIONS(2230), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2230), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [617] = { + [605] = { [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_STAR] = ACTIONS(1982), [anon_sym_using] = ACTIONS(1980), [anon_sym_throw] = ACTIONS(1980), [anon_sym_LPAREN] = ACTIONS(1982), @@ -61753,6 +69168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1982), [anon_sym_cast] = ACTIONS(1980), [anon_sym_DOLLARtype] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1980), [anon_sym_return] = ACTIONS(1980), [anon_sym_untyped] = ACTIONS(1980), [anon_sym_break] = ACTIONS(1980), @@ -61761,7 +69177,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1980), [anon_sym_AT] = ACTIONS(1980), [anon_sym_AT_COLON] = ACTIONS(1982), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_catch] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), [anon_sym_if] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), [anon_sym_new] = ACTIONS(1980), [anon_sym_TILDE] = ACTIONS(1982), [anon_sym_BANG] = ACTIONS(1980), @@ -61769,7 +69190,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -61789,7 +69209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1982), [anon_sym_QMARK_QMARK] = ACTIONS(1982), [anon_sym_EQ] = ACTIONS(1980), - [sym__rangeOperator] = ACTIONS(1982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_null] = ACTIONS(1980), [anon_sym_macro] = ACTIONS(1980), [anon_sym_abstract] = ACTIONS(1980), @@ -61803,6 +69223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1980), [anon_sym_class] = ACTIONS(1980), [anon_sym_interface] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_typedef] = ACTIONS(1980), [anon_sym_function] = ACTIONS(1980), [anon_sym_var] = ACTIONS(1980), @@ -61815,261 +69236,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(1982), [aux_sym_string_token3] = ACTIONS(1982), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2769), [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), + [606] = { + [sym_else_clause] = STATE(791), + [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_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2773), [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), + [607] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), [sym_comment] = ACTIONS(3), [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), + [608] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2730), + [anon_sym_DOLLARtype] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_untyped] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_AT_COLON] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_catch] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2728), + [anon_sym_QMARK_QMARK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2730), + [anon_sym_macro] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_inline] = ACTIONS(2730), + [anon_sym_overload] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_final] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_typedef] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [aux_sym_integer_token1] = ACTIONS(2730), + [aux_sym_integer_token2] = ACTIONS(2728), + [aux_sym_float_token1] = ACTIONS(2730), + [aux_sym_float_token2] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [aux_sym_string_token1] = ACTIONS(2728), + [aux_sym_string_token3] = ACTIONS(2728), [sym_comment] = ACTIONS(3), [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), + [609] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_cast] = ACTIONS(2232), + [anon_sym_DOLLARtype] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_untyped] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), + [anon_sym_AT_COLON] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_catch] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [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(2232), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), + [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_enum] = 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(2230), + [aux_sym_float_token1] = ACTIONS(2232), + [aux_sym_float_token2] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [aux_sym_string_token1] = ACTIONS(2230), + [aux_sym_string_token3] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [610] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_import] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_using] = ACTIONS(2232), + [anon_sym_throw] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_switch] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_cast] = ACTIONS(2232), + [anon_sym_DOLLARtype] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_untyped] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), + [anon_sym_AT_COLON] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2232), + [anon_sym_catch] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_do] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [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(2232), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), + [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_enum] = 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(2230), + [aux_sym_float_token1] = ACTIONS(2232), + [aux_sym_float_token2] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [aux_sym_string_token1] = ACTIONS(2230), + [aux_sym_string_token3] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [611] = { + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_package] = ACTIONS(1986), + [anon_sym_import] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1986), + [anon_sym_throw] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_cast] = ACTIONS(1986), + [anon_sym_DOLLARtype] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_untyped] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_this] = ACTIONS(1986), + [anon_sym_AT] = ACTIONS(1986), + [anon_sym_AT_COLON] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_new] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1988), + [anon_sym_SLASH] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_LT_LT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1986), + [anon_sym_GT_GT_GT] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_CARET] = ACTIONS(1988), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_PIPE_PIPE] = ACTIONS(1988), + [anon_sym_EQ_EQ] = ACTIONS(1988), + [anon_sym_BANG_EQ] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_LT_EQ] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1986), + [anon_sym_GT_EQ] = ACTIONS(1988), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_QMARK] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1988), + [anon_sym_null] = ACTIONS(1986), + [anon_sym_macro] = ACTIONS(1986), + [anon_sym_abstract] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_public] = ACTIONS(1986), + [anon_sym_private] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_inline] = ACTIONS(1986), + [anon_sym_overload] = ACTIONS(1986), + [anon_sym_override] = ACTIONS(1986), + [anon_sym_final] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1986), + [anon_sym_interface] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1986), + [anon_sym_function] = ACTIONS(1986), + [anon_sym_var] = ACTIONS(1986), + [aux_sym_integer_token1] = ACTIONS(1986), + [aux_sym_integer_token2] = ACTIONS(1988), + [aux_sym_float_token1] = ACTIONS(1986), + [aux_sym_float_token2] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [aux_sym_string_token1] = ACTIONS(1988), + [aux_sym_string_token3] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2775), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [612] = { + [sym_catch_statement] = STATE(614), + [aux_sym_try_statement_repeat1] = STATE(614), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2722), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [613] = { + [sym_catch_statement] = STATE(614), + [aux_sym_try_statement_repeat1] = STATE(614), + [sym_identifier] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2730), + [anon_sym_DOLLARtype] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_untyped] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_AT_COLON] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_catch] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2728), + [anon_sym_QMARK_QMARK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2730), + [anon_sym_macro] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_inline] = ACTIONS(2730), + [anon_sym_overload] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_final] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_typedef] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [aux_sym_integer_token1] = ACTIONS(2730), + [aux_sym_integer_token2] = ACTIONS(2728), + [aux_sym_float_token1] = ACTIONS(2730), + [aux_sym_float_token2] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [aux_sym_string_token1] = ACTIONS(2728), + [aux_sym_string_token3] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2728), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [614] = { + [sym_catch_statement] = STATE(614), + [aux_sym_try_statement_repeat1] = STATE(614), + [sym_identifier] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_package] = ACTIONS(2734), + [anon_sym_import] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_using] = ACTIONS(2734), + [anon_sym_throw] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_cast] = ACTIONS(2734), + [anon_sym_DOLLARtype] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2734), + [anon_sym_untyped] = ACTIONS(2734), + [anon_sym_break] = ACTIONS(2734), + [anon_sym_continue] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2736), + [anon_sym_this] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2734), + [anon_sym_AT_COLON] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2734), + [anon_sym_catch] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2734), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_do] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2734), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2734), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_EQ_GT] = ACTIONS(2736), + [anon_sym_QMARK_QMARK] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), + [anon_sym_null] = ACTIONS(2734), + [anon_sym_macro] = ACTIONS(2734), + [anon_sym_abstract] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2734), + [anon_sym_public] = ACTIONS(2734), + [anon_sym_private] = ACTIONS(2734), + [anon_sym_extern] = ACTIONS(2734), + [anon_sym_inline] = ACTIONS(2734), + [anon_sym_overload] = ACTIONS(2734), + [anon_sym_override] = ACTIONS(2734), + [anon_sym_final] = ACTIONS(2734), + [anon_sym_class] = ACTIONS(2734), + [anon_sym_interface] = ACTIONS(2734), + [anon_sym_enum] = ACTIONS(2734), + [anon_sym_typedef] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2734), + [anon_sym_var] = ACTIONS(2734), + [aux_sym_integer_token1] = ACTIONS(2734), + [aux_sym_integer_token2] = ACTIONS(2736), + [aux_sym_float_token1] = ACTIONS(2734), + [aux_sym_float_token2] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [aux_sym_string_token1] = ACTIONS(2736), + [aux_sym_string_token3] = ACTIONS(2736), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2736), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [615] = { + [sym_catch_statement] = STATE(614), + [aux_sym_try_statement_repeat1] = STATE(614), + [sym_identifier] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2730), + [anon_sym_DOLLARtype] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_untyped] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_AT_COLON] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_catch] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PERCENT] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_LT_LT] = ACTIONS(2728), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_GT_GT_GT] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2728), + [anon_sym_QMARK_QMARK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2730), + [anon_sym_macro] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_inline] = ACTIONS(2730), + [anon_sym_overload] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_final] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_typedef] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [aux_sym_integer_token1] = ACTIONS(2730), + [aux_sym_integer_token2] = ACTIONS(2728), + [aux_sym_float_token1] = ACTIONS(2730), + [aux_sym_float_token2] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [aux_sym_string_token1] = ACTIONS(2728), + [aux_sym_string_token3] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2728), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [616] = { + [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_STAR] = ACTIONS(1994), + [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_for] = ACTIONS(1992), + [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_try] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), [anon_sym_if] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), [anon_sym_new] = ACTIONS(1992), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_BANG] = ACTIONS(1992), @@ -62077,7 +70125,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -62097,7 +70144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1994), [anon_sym_QMARK_QMARK] = ACTIONS(1994), [anon_sym_EQ] = ACTIONS(1992), - [sym__rangeOperator] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1994), [anon_sym_null] = ACTIONS(1992), [anon_sym_macro] = ACTIONS(1992), [anon_sym_abstract] = ACTIONS(1992), @@ -62111,6 +70158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1992), [anon_sym_class] = ACTIONS(1992), [anon_sym_interface] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), [anon_sym_typedef] = ACTIONS(1992), [anon_sym_function] = ACTIONS(1992), [anon_sym_var] = ACTIONS(1992), @@ -62123,707 +70171,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(1994), [aux_sym_string_token3] = ACTIONS(1994), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2780), [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__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__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_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_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_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_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__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), + [617] = { + [sym_catch_statement] = STATE(614), + [aux_sym_try_statement_repeat1] = STATE(614), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2722), [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), + [618] = { + [ts_builtin_sym_end] = ACTIONS(2104), + [sym_identifier] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_package] = ACTIONS(2102), + [anon_sym_import] = ACTIONS(2102), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_using] = ACTIONS(2102), + [anon_sym_throw] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_cast] = ACTIONS(2102), + [anon_sym_DOLLARtype] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_untyped] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_AT_COLON] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2102), + [anon_sym_catch] = ACTIONS(2102), + [anon_sym_else] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2102), + [anon_sym_new] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(2104), + [anon_sym_SLASH] = ACTIONS(2102), + [anon_sym_PLUS] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2104), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_GT_GT_GT] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2104), + [anon_sym_PIPE_PIPE] = ACTIONS(2104), + [anon_sym_EQ_EQ] = ACTIONS(2104), + [anon_sym_BANG_EQ] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_LT_EQ] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2102), + [anon_sym_GT_EQ] = ACTIONS(2104), + [anon_sym_EQ_GT] = ACTIONS(2104), + [anon_sym_QMARK_QMARK] = ACTIONS(2104), + [anon_sym_EQ] = ACTIONS(2102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2104), + [anon_sym_null] = ACTIONS(2102), + [anon_sym_macro] = ACTIONS(2102), + [anon_sym_abstract] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_public] = ACTIONS(2102), + [anon_sym_private] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_inline] = ACTIONS(2102), + [anon_sym_overload] = ACTIONS(2102), + [anon_sym_override] = ACTIONS(2102), + [anon_sym_final] = ACTIONS(2102), + [anon_sym_class] = ACTIONS(2102), + [anon_sym_interface] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_typedef] = ACTIONS(2102), + [anon_sym_function] = ACTIONS(2102), + [anon_sym_var] = ACTIONS(2102), + [aux_sym_integer_token1] = ACTIONS(2102), + [aux_sym_integer_token2] = ACTIONS(2104), + [aux_sym_float_token1] = ACTIONS(2102), + [aux_sym_float_token2] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2102), + [anon_sym_false] = ACTIONS(2102), + [aux_sym_string_token1] = ACTIONS(2104), + [aux_sym_string_token3] = ACTIONS(2104), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [631] = { + [619] = { [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_STAR] = ACTIONS(2262), [anon_sym_using] = ACTIONS(2260), [anon_sym_throw] = ACTIONS(2260), [anon_sym_LPAREN] = ACTIONS(2262), @@ -62831,6 +70357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2262), [anon_sym_cast] = ACTIONS(2260), [anon_sym_DOLLARtype] = ACTIONS(2262), + [anon_sym_for] = ACTIONS(2260), [anon_sym_return] = ACTIONS(2260), [anon_sym_untyped] = ACTIONS(2260), [anon_sym_break] = ACTIONS(2260), @@ -62839,7 +70366,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2260), [anon_sym_AT] = ACTIONS(2260), [anon_sym_AT_COLON] = ACTIONS(2262), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_catch] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), [anon_sym_if] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), [anon_sym_new] = ACTIONS(2260), [anon_sym_TILDE] = ACTIONS(2262), [anon_sym_BANG] = ACTIONS(2260), @@ -62847,7 +70379,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -62867,7 +70398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2262), [anon_sym_QMARK_QMARK] = ACTIONS(2262), [anon_sym_EQ] = ACTIONS(2260), - [sym__rangeOperator] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), [anon_sym_null] = ACTIONS(2260), [anon_sym_macro] = ACTIONS(2260), [anon_sym_abstract] = ACTIONS(2260), @@ -62881,6 +70412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2260), [anon_sym_class] = ACTIONS(2260), [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), [anon_sym_typedef] = ACTIONS(2260), [anon_sym_function] = ACTIONS(2260), [anon_sym_var] = ACTIONS(2260), @@ -62895,2091 +70427,2953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [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_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_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__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), + [620] = { + [ts_builtin_sym_end] = ACTIONS(810), + [sym_identifier] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(810), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_using] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_cast] = ACTIONS(814), + [anon_sym_DOLLARtype] = ACTIONS(810), + [anon_sym_for] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_untyped] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_this] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_AT_COLON] = ACTIONS(810), + [anon_sym_try] = ACTIONS(814), + [anon_sym_catch] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_new] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_PLUS_PLUS] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_GT_GT_GT] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(810), + [anon_sym_BANG_EQ] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_LT_EQ] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_EQ] = ACTIONS(810), + [anon_sym_EQ_GT] = ACTIONS(810), + [anon_sym_QMARK_QMARK] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(810), + [anon_sym_null] = ACTIONS(814), + [anon_sym_macro] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_inline] = ACTIONS(814), + [anon_sym_overload] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_function] = ACTIONS(814), + [anon_sym_var] = ACTIONS(814), + [aux_sym_integer_token1] = ACTIONS(814), + [aux_sym_integer_token2] = ACTIONS(810), + [aux_sym_float_token1] = ACTIONS(814), + [aux_sym_float_token2] = ACTIONS(810), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [aux_sym_string_token1] = ACTIONS(810), + [aux_sym_string_token3] = ACTIONS(810), [sym_comment] = ACTIONS(3), [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), + [621] = { + [ts_builtin_sym_end] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2238), + [anon_sym_POUND] = ACTIONS(2240), + [anon_sym_package] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_using] = ACTIONS(2238), + [anon_sym_throw] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_cast] = ACTIONS(2238), + [anon_sym_DOLLARtype] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_untyped] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_this] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_AT_COLON] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_catch] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_new] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2240), + [anon_sym_DASH_DASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2240), + [anon_sym_GT_GT] = ACTIONS(2238), + [anon_sym_GT_GT_GT] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_LT_EQ] = ACTIONS(2240), + [anon_sym_GT] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2240), + [anon_sym_EQ_GT] = ACTIONS(2240), + [anon_sym_QMARK_QMARK] = ACTIONS(2240), + [anon_sym_EQ] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2240), + [anon_sym_null] = ACTIONS(2238), + [anon_sym_macro] = ACTIONS(2238), + [anon_sym_abstract] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_public] = ACTIONS(2238), + [anon_sym_private] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_inline] = ACTIONS(2238), + [anon_sym_overload] = ACTIONS(2238), + [anon_sym_override] = ACTIONS(2238), + [anon_sym_final] = ACTIONS(2238), + [anon_sym_class] = ACTIONS(2238), + [anon_sym_interface] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_typedef] = ACTIONS(2238), + [anon_sym_function] = ACTIONS(2238), + [anon_sym_var] = ACTIONS(2238), + [aux_sym_integer_token1] = ACTIONS(2238), + [aux_sym_integer_token2] = ACTIONS(2240), + [aux_sym_float_token1] = ACTIONS(2238), + [aux_sym_float_token2] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [aux_sym_string_token1] = ACTIONS(2240), + [aux_sym_string_token3] = ACTIONS(2240), [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), + [622] = { + [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_STAR] = ACTIONS(2246), + [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_for] = ACTIONS(2244), + [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_try] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [623] = { + [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_STAR] = ACTIONS(2250), + [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_for] = ACTIONS(2248), + [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_try] = ACTIONS(2248), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_else] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [624] = { + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2422), + [anon_sym_package] = ACTIONS(2420), + [anon_sym_import] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_cast] = ACTIONS(2420), + [anon_sym_DOLLARtype] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_untyped] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_this] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_AT_COLON] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_EQ_GT] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2420), + [anon_sym_macro] = ACTIONS(2420), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym_overload] = ACTIONS(2420), + [anon_sym_override] = ACTIONS(2420), + [anon_sym_final] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2420), + [anon_sym_var] = ACTIONS(2420), + [aux_sym_integer_token1] = ACTIONS(2420), + [aux_sym_integer_token2] = ACTIONS(2422), + [aux_sym_float_token1] = ACTIONS(2420), + [aux_sym_float_token2] = ACTIONS(2422), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(2422), + [aux_sym_string_token3] = ACTIONS(2422), [sym_comment] = ACTIONS(3), [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), + [625] = { + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2426), + [anon_sym_package] = ACTIONS(2424), + [anon_sym_import] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_cast] = ACTIONS(2424), + [anon_sym_DOLLARtype] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_untyped] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_this] = ACTIONS(2424), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_AT_COLON] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2426), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_GT_GT_GT] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_CARET] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_PIPE_PIPE] = ACTIONS(2426), + [anon_sym_EQ_EQ] = ACTIONS(2426), + [anon_sym_BANG_EQ] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_LT_EQ] = ACTIONS(2426), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_GT_EQ] = ACTIONS(2426), + [anon_sym_EQ_GT] = ACTIONS(2426), + [anon_sym_QMARK_QMARK] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2426), + [anon_sym_null] = ACTIONS(2424), + [anon_sym_macro] = ACTIONS(2424), + [anon_sym_abstract] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym_overload] = ACTIONS(2424), + [anon_sym_override] = ACTIONS(2424), + [anon_sym_final] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2424), + [anon_sym_var] = ACTIONS(2424), + [aux_sym_integer_token1] = ACTIONS(2424), + [aux_sym_integer_token2] = ACTIONS(2426), + [aux_sym_float_token1] = ACTIONS(2424), + [aux_sym_float_token2] = ACTIONS(2426), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [aux_sym_string_token1] = ACTIONS(2426), + [aux_sym_string_token3] = ACTIONS(2426), [sym_comment] = ACTIONS(3), [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), + [626] = { + [ts_builtin_sym_end] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_package] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_cast] = ACTIONS(2452), + [anon_sym_DOLLARtype] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_untyped] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_this] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2452), + [anon_sym_AT_COLON] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_catch] = ACTIONS(2452), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), + [anon_sym_null] = ACTIONS(2452), + [anon_sym_macro] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_extern] = ACTIONS(2452), + [anon_sym_inline] = ACTIONS(2452), + [anon_sym_overload] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_final] = ACTIONS(2452), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [anon_sym_typedef] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [aux_sym_integer_token1] = ACTIONS(2452), + [aux_sym_integer_token2] = ACTIONS(2454), + [aux_sym_float_token1] = ACTIONS(2452), + [aux_sym_float_token2] = ACTIONS(2454), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [aux_sym_string_token3] = ACTIONS(2454), [sym_comment] = ACTIONS(3), [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), + [627] = { + [ts_builtin_sym_end] = ACTIONS(2466), + [sym_identifier] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_package] = ACTIONS(2464), + [anon_sym_import] = ACTIONS(2464), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_using] = ACTIONS(2464), + [anon_sym_throw] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_cast] = ACTIONS(2464), + [anon_sym_DOLLARtype] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_untyped] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_this] = ACTIONS(2464), + [anon_sym_AT] = ACTIONS(2464), + [anon_sym_AT_COLON] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2464), + [anon_sym_catch] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_EQ_GT] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_null] = ACTIONS(2464), + [anon_sym_macro] = ACTIONS(2464), + [anon_sym_abstract] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_inline] = ACTIONS(2464), + [anon_sym_overload] = ACTIONS(2464), + [anon_sym_override] = ACTIONS(2464), + [anon_sym_final] = ACTIONS(2464), + [anon_sym_class] = ACTIONS(2464), + [anon_sym_interface] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_typedef] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2464), + [anon_sym_var] = ACTIONS(2464), + [aux_sym_integer_token1] = ACTIONS(2464), + [aux_sym_integer_token2] = ACTIONS(2466), + [aux_sym_float_token1] = ACTIONS(2464), + [aux_sym_float_token2] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [aux_sym_string_token1] = ACTIONS(2466), + [aux_sym_string_token3] = ACTIONS(2466), [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), + [628] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_package] = ACTIONS(1432), + [anon_sym_import] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_cast] = ACTIONS(1432), + [anon_sym_DOLLARtype] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_untyped] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_this] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_AT_COLON] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_catch] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_LT_LT] = ACTIONS(1434), + [anon_sym_GT_GT] = ACTIONS(1432), + [anon_sym_GT_GT_GT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP_AMP] = ACTIONS(1434), + [anon_sym_PIPE_PIPE] = ACTIONS(1434), + [anon_sym_EQ_EQ] = ACTIONS(1434), + [anon_sym_BANG_EQ] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_LT_EQ] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_GT_EQ] = ACTIONS(1434), + [anon_sym_EQ_GT] = ACTIONS(1434), + [anon_sym_QMARK_QMARK] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), + [anon_sym_null] = ACTIONS(1432), + [anon_sym_macro] = ACTIONS(1432), + [anon_sym_abstract] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_public] = ACTIONS(1432), + [anon_sym_private] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym_overload] = ACTIONS(1432), + [anon_sym_override] = ACTIONS(1432), + [anon_sym_final] = ACTIONS(1432), + [anon_sym_class] = ACTIONS(1432), + [anon_sym_interface] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_var] = ACTIONS(1432), + [aux_sym_integer_token1] = ACTIONS(1432), + [aux_sym_integer_token2] = ACTIONS(1434), + [aux_sym_float_token1] = ACTIONS(1432), + [aux_sym_float_token2] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [aux_sym_string_token1] = ACTIONS(1434), + [aux_sym_string_token3] = ACTIONS(1434), [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), + [629] = { + [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_STAR] = ACTIONS(2258), + [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_for] = ACTIONS(2256), + [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_try] = ACTIONS(2256), + [anon_sym_catch] = ACTIONS(2256), + [anon_sym_else] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [630] = { + [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_STAR] = ACTIONS(2294), + [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_for] = ACTIONS(2292), + [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_try] = ACTIONS(2292), + [anon_sym_catch] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [631] = { + [ts_builtin_sym_end] = ACTIONS(2630), + [sym_identifier] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2630), + [anon_sym_package] = ACTIONS(2628), + [anon_sym_import] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_using] = ACTIONS(2628), + [anon_sym_throw] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_cast] = ACTIONS(2628), + [anon_sym_DOLLARtype] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_untyped] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym_this] = ACTIONS(2628), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_AT_COLON] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_catch] = ACTIONS(2628), + [anon_sym_else] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [anon_sym_PERCENT] = ACTIONS(2630), + [anon_sym_SLASH] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_LT_LT] = ACTIONS(2630), + [anon_sym_GT_GT] = ACTIONS(2628), + [anon_sym_GT_GT_GT] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_PIPE] = ACTIONS(2628), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_PIPE_PIPE] = ACTIONS(2630), + [anon_sym_EQ_EQ] = ACTIONS(2630), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_LT_EQ] = ACTIONS(2630), + [anon_sym_GT] = ACTIONS(2628), + [anon_sym_GT_EQ] = ACTIONS(2630), + [anon_sym_EQ_GT] = ACTIONS(2630), + [anon_sym_QMARK_QMARK] = ACTIONS(2630), + [anon_sym_EQ] = ACTIONS(2628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_macro] = ACTIONS(2628), + [anon_sym_abstract] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_public] = ACTIONS(2628), + [anon_sym_private] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym_inline] = ACTIONS(2628), + [anon_sym_overload] = ACTIONS(2628), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_final] = ACTIONS(2628), + [anon_sym_class] = ACTIONS(2628), + [anon_sym_interface] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_typedef] = ACTIONS(2628), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_var] = ACTIONS(2628), + [aux_sym_integer_token1] = ACTIONS(2628), + [aux_sym_integer_token2] = ACTIONS(2630), + [aux_sym_float_token1] = ACTIONS(2628), + [aux_sym_float_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [aux_sym_string_token1] = ACTIONS(2630), + [aux_sym_string_token3] = ACTIONS(2630), [sym_comment] = ACTIONS(3), [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), + [632] = { + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2634), + [anon_sym_package] = ACTIONS(2632), + [anon_sym_import] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_using] = ACTIONS(2632), + [anon_sym_throw] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2634), + [anon_sym_switch] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_cast] = ACTIONS(2632), + [anon_sym_DOLLARtype] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_untyped] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym_this] = ACTIONS(2632), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_AT_COLON] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_catch] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_PERCENT] = ACTIONS(2634), + [anon_sym_SLASH] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_LT_LT] = ACTIONS(2634), + [anon_sym_GT_GT] = ACTIONS(2632), + [anon_sym_GT_GT_GT] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(2632), + [anon_sym_CARET] = ACTIONS(2634), + [anon_sym_AMP_AMP] = ACTIONS(2634), + [anon_sym_PIPE_PIPE] = ACTIONS(2634), + [anon_sym_EQ_EQ] = ACTIONS(2634), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_LT] = ACTIONS(2632), + [anon_sym_LT_EQ] = ACTIONS(2634), + [anon_sym_GT] = ACTIONS(2632), + [anon_sym_GT_EQ] = ACTIONS(2634), + [anon_sym_EQ_GT] = ACTIONS(2634), + [anon_sym_QMARK_QMARK] = ACTIONS(2634), + [anon_sym_EQ] = ACTIONS(2632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_macro] = ACTIONS(2632), + [anon_sym_abstract] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_public] = ACTIONS(2632), + [anon_sym_private] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym_inline] = ACTIONS(2632), + [anon_sym_overload] = ACTIONS(2632), + [anon_sym_override] = ACTIONS(2632), + [anon_sym_final] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2632), + [anon_sym_interface] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_typedef] = ACTIONS(2632), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_var] = ACTIONS(2632), + [aux_sym_integer_token1] = ACTIONS(2632), + [aux_sym_integer_token2] = ACTIONS(2634), + [aux_sym_float_token1] = ACTIONS(2632), + [aux_sym_float_token2] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [aux_sym_string_token1] = ACTIONS(2634), + [aux_sym_string_token3] = ACTIONS(2634), [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), + [633] = { + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_cast] = ACTIONS(2640), + [anon_sym_DOLLARtype] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_untyped] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_AT_COLON] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_catch] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_LT_LT] = ACTIONS(2642), + [anon_sym_GT_GT] = ACTIONS(2640), + [anon_sym_GT_GT_GT] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_PIPE_PIPE] = ACTIONS(2642), + [anon_sym_EQ_EQ] = ACTIONS(2642), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_LT_EQ] = ACTIONS(2642), + [anon_sym_GT] = ACTIONS(2640), + [anon_sym_GT_EQ] = ACTIONS(2642), + [anon_sym_EQ_GT] = ACTIONS(2642), + [anon_sym_QMARK_QMARK] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_macro] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym_overload] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_final] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [aux_sym_integer_token1] = ACTIONS(2640), + [aux_sym_integer_token2] = ACTIONS(2642), + [aux_sym_float_token1] = ACTIONS(2640), + [aux_sym_float_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [aux_sym_string_token1] = ACTIONS(2642), + [aux_sym_string_token3] = ACTIONS(2642), [sym_comment] = ACTIONS(3), [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), + [634] = { + [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_STAR] = ACTIONS(2306), + [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_for] = ACTIONS(2304), + [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_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [635] = { + [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_STAR] = ACTIONS(2270), + [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_for] = ACTIONS(2268), + [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_try] = ACTIONS(2268), + [anon_sym_catch] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [636] = { + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_package] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_cast] = ACTIONS(2650), + [anon_sym_DOLLARtype] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_untyped] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_this] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2650), + [anon_sym_AT_COLON] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_catch] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_LT_LT] = ACTIONS(2652), + [anon_sym_GT_GT] = ACTIONS(2650), + [anon_sym_GT_GT_GT] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_EQ_EQ] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_LT_EQ] = ACTIONS(2652), + [anon_sym_GT] = ACTIONS(2650), + [anon_sym_GT_EQ] = ACTIONS(2652), + [anon_sym_EQ_GT] = ACTIONS(2652), + [anon_sym_QMARK_QMARK] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_null] = ACTIONS(2650), + [anon_sym_macro] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_overload] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_final] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_typedef] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [aux_sym_integer_token1] = ACTIONS(2650), + [aux_sym_integer_token2] = ACTIONS(2652), + [aux_sym_float_token1] = ACTIONS(2650), + [aux_sym_float_token2] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [aux_sym_string_token1] = ACTIONS(2652), + [aux_sym_string_token3] = ACTIONS(2652), [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), + [637] = { + [ts_builtin_sym_end] = ACTIONS(2656), + [sym_identifier] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_package] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_using] = ACTIONS(2654), + [anon_sym_throw] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_cast] = ACTIONS(2654), + [anon_sym_DOLLARtype] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_untyped] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_this] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_AT_COLON] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2654), + [anon_sym_catch] = ACTIONS(2654), + [anon_sym_else] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_do] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT] = ACTIONS(2654), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_PIPE] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2654), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_EQ_GT] = ACTIONS(2656), + [anon_sym_QMARK_QMARK] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [anon_sym_null] = ACTIONS(2654), + [anon_sym_macro] = ACTIONS(2654), + [anon_sym_abstract] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_public] = ACTIONS(2654), + [anon_sym_private] = ACTIONS(2654), + [anon_sym_extern] = ACTIONS(2654), + [anon_sym_inline] = ACTIONS(2654), + [anon_sym_overload] = ACTIONS(2654), + [anon_sym_override] = ACTIONS(2654), + [anon_sym_final] = ACTIONS(2654), + [anon_sym_class] = ACTIONS(2654), + [anon_sym_interface] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), + [anon_sym_typedef] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2654), + [anon_sym_var] = ACTIONS(2654), + [aux_sym_integer_token1] = ACTIONS(2654), + [aux_sym_integer_token2] = ACTIONS(2656), + [aux_sym_float_token1] = ACTIONS(2654), + [aux_sym_float_token2] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2654), + [anon_sym_false] = ACTIONS(2654), + [aux_sym_string_token1] = ACTIONS(2656), + [aux_sym_string_token3] = ACTIONS(2656), [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), + [638] = { + [ts_builtin_sym_end] = ACTIONS(2668), + [sym_identifier] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_package] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2668), + [anon_sym_using] = ACTIONS(2666), + [anon_sym_throw] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_switch] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_cast] = ACTIONS(2666), + [anon_sym_DOLLARtype] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_untyped] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2668), + [anon_sym_this] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2666), + [anon_sym_AT_COLON] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_catch] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_do] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2668), + [anon_sym_PERCENT] = ACTIONS(2668), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_LT_LT] = ACTIONS(2668), + [anon_sym_GT_GT] = ACTIONS(2666), + [anon_sym_GT_GT_GT] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_CARET] = ACTIONS(2668), + [anon_sym_AMP_AMP] = ACTIONS(2668), + [anon_sym_PIPE_PIPE] = ACTIONS(2668), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_LT_EQ] = ACTIONS(2668), + [anon_sym_GT] = ACTIONS(2666), + [anon_sym_GT_EQ] = ACTIONS(2668), + [anon_sym_EQ_GT] = ACTIONS(2668), + [anon_sym_QMARK_QMARK] = ACTIONS(2668), + [anon_sym_EQ] = ACTIONS(2666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2668), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_macro] = ACTIONS(2666), + [anon_sym_abstract] = ACTIONS(2666), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_extern] = ACTIONS(2666), + [anon_sym_inline] = ACTIONS(2666), + [anon_sym_overload] = ACTIONS(2666), + [anon_sym_override] = ACTIONS(2666), + [anon_sym_final] = ACTIONS(2666), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_interface] = ACTIONS(2666), + [anon_sym_enum] = ACTIONS(2666), + [anon_sym_typedef] = ACTIONS(2666), + [anon_sym_function] = ACTIONS(2666), + [anon_sym_var] = ACTIONS(2666), + [aux_sym_integer_token1] = ACTIONS(2666), + [aux_sym_integer_token2] = ACTIONS(2668), + [aux_sym_float_token1] = ACTIONS(2666), + [aux_sym_float_token2] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [aux_sym_string_token1] = ACTIONS(2668), + [aux_sym_string_token3] = ACTIONS(2668), [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), + [639] = { + [ts_builtin_sym_end] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_package] = ACTIONS(2682), + [anon_sym_import] = ACTIONS(2682), + [anon_sym_STAR] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2682), + [anon_sym_throw] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_cast] = ACTIONS(2682), + [anon_sym_DOLLARtype] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2682), + [anon_sym_untyped] = ACTIONS(2682), + [anon_sym_break] = ACTIONS(2682), + [anon_sym_continue] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_this] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2682), + [anon_sym_AT_COLON] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2682), + [anon_sym_catch] = ACTIONS(2682), + [anon_sym_else] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2682), + [anon_sym_while] = ACTIONS(2682), + [anon_sym_do] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(2682), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2684), + [anon_sym_PERCENT] = ACTIONS(2684), + [anon_sym_SLASH] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2682), + [anon_sym_LT_LT] = ACTIONS(2684), + [anon_sym_GT_GT] = ACTIONS(2682), + [anon_sym_GT_GT_GT] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(2682), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP_AMP] = ACTIONS(2684), + [anon_sym_PIPE_PIPE] = ACTIONS(2684), + [anon_sym_EQ_EQ] = ACTIONS(2684), + [anon_sym_BANG_EQ] = ACTIONS(2684), + [anon_sym_LT] = ACTIONS(2682), + [anon_sym_LT_EQ] = ACTIONS(2684), + [anon_sym_GT] = ACTIONS(2682), + [anon_sym_GT_EQ] = ACTIONS(2684), + [anon_sym_EQ_GT] = ACTIONS(2684), + [anon_sym_QMARK_QMARK] = ACTIONS(2684), + [anon_sym_EQ] = ACTIONS(2682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2684), + [anon_sym_null] = ACTIONS(2682), + [anon_sym_macro] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2682), + [anon_sym_static] = ACTIONS(2682), + [anon_sym_public] = ACTIONS(2682), + [anon_sym_private] = ACTIONS(2682), + [anon_sym_extern] = ACTIONS(2682), + [anon_sym_inline] = ACTIONS(2682), + [anon_sym_overload] = ACTIONS(2682), + [anon_sym_override] = ACTIONS(2682), + [anon_sym_final] = ACTIONS(2682), + [anon_sym_class] = ACTIONS(2682), + [anon_sym_interface] = ACTIONS(2682), + [anon_sym_enum] = ACTIONS(2682), + [anon_sym_typedef] = ACTIONS(2682), + [anon_sym_function] = ACTIONS(2682), + [anon_sym_var] = ACTIONS(2682), + [aux_sym_integer_token1] = ACTIONS(2682), + [aux_sym_integer_token2] = ACTIONS(2684), + [aux_sym_float_token1] = ACTIONS(2682), + [aux_sym_float_token2] = ACTIONS(2684), + [anon_sym_true] = ACTIONS(2682), + [anon_sym_false] = ACTIONS(2682), + [aux_sym_string_token1] = ACTIONS(2684), + [aux_sym_string_token3] = ACTIONS(2684), [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), + [640] = { + [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_STAR] = ACTIONS(2326), + [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_for] = ACTIONS(2324), + [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_try] = ACTIONS(2324), + [anon_sym_catch] = ACTIONS(2324), + [anon_sym_else] = ACTIONS(2324), + [anon_sym_if] = ACTIONS(2324), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [641] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_package] = ACTIONS(2714), + [anon_sym_import] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_using] = ACTIONS(2714), + [anon_sym_throw] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_cast] = ACTIONS(2714), + [anon_sym_DOLLARtype] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_untyped] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_this] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2714), + [anon_sym_AT_COLON] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2714), + [anon_sym_catch] = ACTIONS(2714), + [anon_sym_else] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_while] = ACTIONS(2714), + [anon_sym_do] = ACTIONS(2714), + [anon_sym_new] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [anon_sym_PERCENT] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_LT_LT] = ACTIONS(2716), + [anon_sym_GT_GT] = ACTIONS(2714), + [anon_sym_GT_GT_GT] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_CARET] = ACTIONS(2716), + [anon_sym_AMP_AMP] = ACTIONS(2716), + [anon_sym_PIPE_PIPE] = ACTIONS(2716), + [anon_sym_EQ_EQ] = ACTIONS(2716), + [anon_sym_BANG_EQ] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_LT_EQ] = ACTIONS(2716), + [anon_sym_GT] = ACTIONS(2714), + [anon_sym_GT_EQ] = ACTIONS(2716), + [anon_sym_EQ_GT] = ACTIONS(2716), + [anon_sym_QMARK_QMARK] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2714), + [anon_sym_macro] = ACTIONS(2714), + [anon_sym_abstract] = ACTIONS(2714), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_public] = ACTIONS(2714), + [anon_sym_private] = ACTIONS(2714), + [anon_sym_extern] = ACTIONS(2714), + [anon_sym_inline] = ACTIONS(2714), + [anon_sym_overload] = ACTIONS(2714), + [anon_sym_override] = ACTIONS(2714), + [anon_sym_final] = ACTIONS(2714), + [anon_sym_class] = ACTIONS(2714), + [anon_sym_interface] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [anon_sym_typedef] = ACTIONS(2714), + [anon_sym_function] = ACTIONS(2714), + [anon_sym_var] = ACTIONS(2714), + [aux_sym_integer_token1] = ACTIONS(2714), + [aux_sym_integer_token2] = ACTIONS(2716), + [aux_sym_float_token1] = ACTIONS(2714), + [aux_sym_float_token2] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2714), + [anon_sym_false] = ACTIONS(2714), + [aux_sym_string_token1] = ACTIONS(2716), + [aux_sym_string_token3] = ACTIONS(2716), [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), + [642] = { + [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_STAR] = ACTIONS(2298), + [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_for] = ACTIONS(2296), + [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_try] = ACTIONS(2296), + [anon_sym_catch] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [643] = { + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_package] = ACTIONS(2010), + [anon_sym_import] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_using] = ACTIONS(2010), + [anon_sym_throw] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_cast] = ACTIONS(2010), + [anon_sym_DOLLARtype] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_untyped] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_this] = ACTIONS(2010), + [anon_sym_AT] = ACTIONS(2010), + [anon_sym_AT_COLON] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2010), + [anon_sym_catch] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_new] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_SLASH] = ACTIONS(2010), + [anon_sym_PLUS] = ACTIONS(2010), + [anon_sym_LT_LT] = ACTIONS(2012), + [anon_sym_GT_GT] = ACTIONS(2010), + [anon_sym_GT_GT_GT] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_CARET] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_EQ] = ACTIONS(2012), + [anon_sym_BANG_EQ] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2010), + [anon_sym_LT_EQ] = ACTIONS(2012), + [anon_sym_GT] = ACTIONS(2010), + [anon_sym_GT_EQ] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(2012), + [anon_sym_QMARK_QMARK] = ACTIONS(2012), + [anon_sym_EQ] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2012), + [anon_sym_null] = ACTIONS(2010), + [anon_sym_macro] = ACTIONS(2010), + [anon_sym_abstract] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_public] = ACTIONS(2010), + [anon_sym_private] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_inline] = ACTIONS(2010), + [anon_sym_overload] = ACTIONS(2010), + [anon_sym_override] = ACTIONS(2010), + [anon_sym_final] = ACTIONS(2010), + [anon_sym_class] = ACTIONS(2010), + [anon_sym_interface] = ACTIONS(2010), + [anon_sym_enum] = ACTIONS(2010), + [anon_sym_typedef] = ACTIONS(2010), + [anon_sym_function] = ACTIONS(2010), + [anon_sym_var] = ACTIONS(2010), + [aux_sym_integer_token1] = ACTIONS(2010), + [aux_sym_integer_token2] = ACTIONS(2012), + [aux_sym_float_token1] = ACTIONS(2010), + [aux_sym_float_token2] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [aux_sym_string_token1] = ACTIONS(2012), + [aux_sym_string_token3] = ACTIONS(2012), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [659] = { + [644] = { + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_package] = ACTIONS(2014), + [anon_sym_import] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_using] = ACTIONS(2014), + [anon_sym_throw] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_cast] = ACTIONS(2014), + [anon_sym_DOLLARtype] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_untyped] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_this] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2014), + [anon_sym_AT_COLON] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2016), + [anon_sym_PERCENT] = ACTIONS(2016), + [anon_sym_SLASH] = ACTIONS(2014), + [anon_sym_PLUS] = ACTIONS(2014), + [anon_sym_LT_LT] = ACTIONS(2016), + [anon_sym_GT_GT] = ACTIONS(2014), + [anon_sym_GT_GT_GT] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2016), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_EQ_EQ] = ACTIONS(2016), + [anon_sym_BANG_EQ] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_LT_EQ] = ACTIONS(2016), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_EQ] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(2016), + [anon_sym_QMARK_QMARK] = ACTIONS(2016), + [anon_sym_EQ] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(2014), + [anon_sym_macro] = ACTIONS(2014), + [anon_sym_abstract] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_public] = ACTIONS(2014), + [anon_sym_private] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_inline] = ACTIONS(2014), + [anon_sym_overload] = ACTIONS(2014), + [anon_sym_override] = ACTIONS(2014), + [anon_sym_final] = ACTIONS(2014), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_interface] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2014), + [anon_sym_function] = ACTIONS(2014), + [anon_sym_var] = ACTIONS(2014), + [aux_sym_integer_token1] = ACTIONS(2014), + [aux_sym_integer_token2] = ACTIONS(2016), + [aux_sym_float_token1] = ACTIONS(2014), + [aux_sym_float_token2] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [aux_sym_string_token1] = ACTIONS(2016), + [aux_sym_string_token3] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [645] = { + [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_STAR] = ACTIONS(2342), + [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_for] = ACTIONS(2340), + [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_try] = ACTIONS(2340), + [anon_sym_catch] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [646] = { + [sym_else_clause] = STATE(791), + [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_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [647] = { + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(2020), + [anon_sym_package] = ACTIONS(2018), + [anon_sym_import] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_using] = ACTIONS(2018), + [anon_sym_throw] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_cast] = ACTIONS(2018), + [anon_sym_DOLLARtype] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_untyped] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_this] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2018), + [anon_sym_AT_COLON] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_new] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PERCENT] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2018), + [anon_sym_PLUS] = ACTIONS(2018), + [anon_sym_LT_LT] = ACTIONS(2020), + [anon_sym_GT_GT] = ACTIONS(2018), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2020), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_GT] = ACTIONS(2018), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_EQ_GT] = ACTIONS(2020), + [anon_sym_QMARK_QMARK] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2020), + [anon_sym_null] = ACTIONS(2018), + [anon_sym_macro] = ACTIONS(2018), + [anon_sym_abstract] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_public] = ACTIONS(2018), + [anon_sym_private] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_inline] = ACTIONS(2018), + [anon_sym_overload] = ACTIONS(2018), + [anon_sym_override] = ACTIONS(2018), + [anon_sym_final] = ACTIONS(2018), + [anon_sym_class] = ACTIONS(2018), + [anon_sym_interface] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2018), + [anon_sym_function] = ACTIONS(2018), + [anon_sym_var] = ACTIONS(2018), + [aux_sym_integer_token1] = ACTIONS(2018), + [aux_sym_integer_token2] = ACTIONS(2020), + [aux_sym_float_token1] = ACTIONS(2018), + [aux_sym_float_token2] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [aux_sym_string_token1] = ACTIONS(2020), + [aux_sym_string_token3] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [648] = { + [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_STAR] = ACTIONS(1966), + [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_for] = ACTIONS(1964), + [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_try] = ACTIONS(1964), + [anon_sym_catch] = ACTIONS(1964), + [anon_sym_else] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [649] = { + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_package] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_using] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_cast] = ACTIONS(2022), + [anon_sym_DOLLARtype] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_untyped] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_this] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_AT_COLON] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_GT_GT_GT] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2024), + [anon_sym_BANG_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2022), + [anon_sym_GT_EQ] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(2024), + [anon_sym_QMARK_QMARK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2024), + [anon_sym_null] = ACTIONS(2022), + [anon_sym_macro] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_inline] = ACTIONS(2022), + [anon_sym_overload] = ACTIONS(2022), + [anon_sym_override] = ACTIONS(2022), + [anon_sym_final] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_typedef] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [aux_sym_integer_token1] = ACTIONS(2022), + [aux_sym_integer_token2] = ACTIONS(2024), + [aux_sym_float_token1] = ACTIONS(2022), + [aux_sym_float_token2] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [aux_sym_string_token1] = ACTIONS(2024), + [aux_sym_string_token3] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [650] = { + [sym_else_clause] = STATE(470), + [sym_identifier] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_package] = ACTIONS(1948), + [anon_sym_import] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [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_for] = ACTIONS(1948), + [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_try] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__closing_brace_unmarker] = ACTIONS(3), + }, + [651] = { + [ts_builtin_sym_end] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_package] = ACTIONS(2026), + [anon_sym_import] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_using] = ACTIONS(2026), + [anon_sym_throw] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_cast] = ACTIONS(2026), + [anon_sym_DOLLARtype] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_untyped] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_this] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2026), + [anon_sym_AT_COLON] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_new] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PERCENT] = ACTIONS(2028), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_LT_LT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym_GT_GT_GT] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2026), + [anon_sym_CARET] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_EQ_EQ] = ACTIONS(2028), + [anon_sym_BANG_EQ] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2026), + [anon_sym_GT_EQ] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2028), + [anon_sym_QMARK_QMARK] = ACTIONS(2028), + [anon_sym_EQ] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2028), + [anon_sym_null] = ACTIONS(2026), + [anon_sym_macro] = ACTIONS(2026), + [anon_sym_abstract] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_inline] = ACTIONS(2026), + [anon_sym_overload] = ACTIONS(2026), + [anon_sym_override] = ACTIONS(2026), + [anon_sym_final] = ACTIONS(2026), + [anon_sym_class] = ACTIONS(2026), + [anon_sym_interface] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [anon_sym_typedef] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(2026), + [anon_sym_var] = ACTIONS(2026), + [aux_sym_integer_token1] = ACTIONS(2026), + [aux_sym_integer_token2] = ACTIONS(2028), + [aux_sym_float_token1] = ACTIONS(2026), + [aux_sym_float_token2] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [aux_sym_string_token1] = ACTIONS(2028), + [aux_sym_string_token3] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [652] = { + [ts_builtin_sym_end] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_package] = ACTIONS(2030), + [anon_sym_import] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2032), + [anon_sym_using] = ACTIONS(2030), + [anon_sym_throw] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_cast] = ACTIONS(2030), + [anon_sym_DOLLARtype] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_untyped] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_this] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2030), + [anon_sym_AT_COLON] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_new] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2032), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2032), + [anon_sym_PERCENT] = ACTIONS(2032), + [anon_sym_SLASH] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_LT_LT] = ACTIONS(2032), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_GT_GT_GT] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_EQ_EQ] = ACTIONS(2032), + [anon_sym_BANG_EQ] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_LT_EQ] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2030), + [anon_sym_GT_EQ] = ACTIONS(2032), + [anon_sym_EQ_GT] = ACTIONS(2032), + [anon_sym_QMARK_QMARK] = ACTIONS(2032), + [anon_sym_EQ] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2032), + [anon_sym_null] = ACTIONS(2030), + [anon_sym_macro] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_overload] = ACTIONS(2030), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2030), + [anon_sym_function] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [aux_sym_integer_token1] = ACTIONS(2030), + [aux_sym_integer_token2] = ACTIONS(2032), + [aux_sym_float_token1] = ACTIONS(2030), + [aux_sym_float_token2] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [aux_sym_string_token1] = ACTIONS(2032), + [aux_sym_string_token3] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [653] = { + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2034), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_package] = ACTIONS(2034), + [anon_sym_import] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_using] = ACTIONS(2034), + [anon_sym_throw] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_cast] = ACTIONS(2034), + [anon_sym_DOLLARtype] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_untyped] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_this] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2034), + [anon_sym_AT_COLON] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_new] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_PERCENT] = ACTIONS(2036), + [anon_sym_SLASH] = ACTIONS(2034), + [anon_sym_PLUS] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_GT_GT_GT] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_EQ_EQ] = ACTIONS(2036), + [anon_sym_BANG_EQ] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_LT_EQ] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2034), + [anon_sym_GT_EQ] = ACTIONS(2036), + [anon_sym_EQ_GT] = ACTIONS(2036), + [anon_sym_QMARK_QMARK] = ACTIONS(2036), + [anon_sym_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2034), + [anon_sym_macro] = ACTIONS(2034), + [anon_sym_abstract] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_inline] = ACTIONS(2034), + [anon_sym_overload] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_final] = ACTIONS(2034), + [anon_sym_class] = ACTIONS(2034), + [anon_sym_interface] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2034), + [anon_sym_function] = ACTIONS(2034), + [anon_sym_var] = ACTIONS(2034), + [aux_sym_integer_token1] = ACTIONS(2034), + [aux_sym_integer_token2] = ACTIONS(2036), + [aux_sym_float_token1] = ACTIONS(2034), + [aux_sym_float_token2] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [aux_sym_string_token1] = ACTIONS(2036), + [aux_sym_string_token3] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [654] = { + [ts_builtin_sym_end] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2038), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_package] = ACTIONS(2038), + [anon_sym_import] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_using] = ACTIONS(2038), + [anon_sym_throw] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_cast] = ACTIONS(2038), + [anon_sym_DOLLARtype] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_untyped] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2038), + [anon_sym_AT_COLON] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_new] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2040), + [anon_sym_PERCENT] = ACTIONS(2040), + [anon_sym_SLASH] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(2038), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_GT_GT_GT] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2040), + [anon_sym_AMP_AMP] = ACTIONS(2040), + [anon_sym_PIPE_PIPE] = ACTIONS(2040), + [anon_sym_EQ_EQ] = ACTIONS(2040), + [anon_sym_BANG_EQ] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_LT_EQ] = ACTIONS(2040), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_EQ] = ACTIONS(2040), + [anon_sym_EQ_GT] = ACTIONS(2040), + [anon_sym_QMARK_QMARK] = ACTIONS(2040), + [anon_sym_EQ] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2040), + [anon_sym_null] = ACTIONS(2038), + [anon_sym_macro] = ACTIONS(2038), + [anon_sym_abstract] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_public] = ACTIONS(2038), + [anon_sym_private] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_inline] = ACTIONS(2038), + [anon_sym_overload] = ACTIONS(2038), + [anon_sym_override] = ACTIONS(2038), + [anon_sym_final] = ACTIONS(2038), + [anon_sym_class] = ACTIONS(2038), + [anon_sym_interface] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2038), + [anon_sym_function] = ACTIONS(2038), + [anon_sym_var] = ACTIONS(2038), + [aux_sym_integer_token1] = ACTIONS(2038), + [aux_sym_integer_token2] = ACTIONS(2040), + [aux_sym_float_token1] = ACTIONS(2038), + [aux_sym_float_token2] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2038), + [anon_sym_false] = ACTIONS(2038), + [aux_sym_string_token1] = ACTIONS(2040), + [aux_sym_string_token3] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [655] = { [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_STAR] = ACTIONS(2350), [anon_sym_using] = ACTIONS(2348), [anon_sym_throw] = ACTIONS(2348), [anon_sym_LPAREN] = ACTIONS(2350), @@ -64987,6 +73381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2350), [anon_sym_cast] = ACTIONS(2348), [anon_sym_DOLLARtype] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2348), [anon_sym_return] = ACTIONS(2348), [anon_sym_untyped] = ACTIONS(2348), [anon_sym_break] = ACTIONS(2348), @@ -64995,7 +73390,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(2348), [anon_sym_AT] = ACTIONS(2348), [anon_sym_AT_COLON] = ACTIONS(2350), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_catch] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), [anon_sym_if] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), [anon_sym_new] = ACTIONS(2348), [anon_sym_TILDE] = ACTIONS(2350), [anon_sym_BANG] = ACTIONS(2348), @@ -65003,7 +73403,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -65023,7 +73422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2350), [anon_sym_QMARK_QMARK] = ACTIONS(2350), [anon_sym_EQ] = ACTIONS(2348), - [sym__rangeOperator] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), [anon_sym_null] = ACTIONS(2348), [anon_sym_macro] = ACTIONS(2348), [anon_sym_abstract] = ACTIONS(2348), @@ -65037,6 +73436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(2348), [anon_sym_class] = ACTIONS(2348), [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), [anon_sym_typedef] = ACTIONS(2348), [anon_sym_function] = ACTIONS(2348), [anon_sym_var] = ACTIONS(2348), @@ -65051,3462 +73451,30856 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), + [656] = { + [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_STAR] = ACTIONS(2354), + [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_for] = ACTIONS(2352), + [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_try] = ACTIONS(2352), + [anon_sym_catch] = ACTIONS(2352), + [anon_sym_else] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [657] = { + [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_STAR] = ACTIONS(2358), + [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_for] = ACTIONS(2356), + [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_try] = ACTIONS(2356), + [anon_sym_catch] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [658] = { + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2362), + [anon_sym_package] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_cast] = ACTIONS(2360), + [anon_sym_DOLLARtype] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_untyped] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_this] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_AT_COLON] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_catch] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_EQ_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2362), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2362), + [anon_sym_EQ_GT] = ACTIONS(2362), + [anon_sym_QMARK_QMARK] = ACTIONS(2362), + [anon_sym_EQ] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2362), + [anon_sym_null] = ACTIONS(2360), + [anon_sym_macro] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_extern] = ACTIONS(2360), + [anon_sym_inline] = ACTIONS(2360), + [anon_sym_overload] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_final] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_typedef] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [aux_sym_integer_token1] = ACTIONS(2360), + [aux_sym_integer_token2] = ACTIONS(2362), + [aux_sym_float_token1] = ACTIONS(2360), + [aux_sym_float_token2] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2360), + [anon_sym_false] = ACTIONS(2360), + [aux_sym_string_token1] = ACTIONS(2362), + [aux_sym_string_token3] = ACTIONS(2362), [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), + [659] = { + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2366), + [anon_sym_package] = ACTIONS(2364), + [anon_sym_import] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2364), + [anon_sym_throw] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_cast] = ACTIONS(2364), + [anon_sym_DOLLARtype] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_untyped] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_this] = ACTIONS(2364), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_AT_COLON] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_catch] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2364), + [anon_sym_GT_GT_GT] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2364), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_EQ_GT] = ACTIONS(2366), + [anon_sym_QMARK_QMARK] = ACTIONS(2366), + [anon_sym_EQ] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), + [anon_sym_null] = ACTIONS(2364), + [anon_sym_macro] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_public] = ACTIONS(2364), + [anon_sym_private] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_inline] = ACTIONS(2364), + [anon_sym_overload] = ACTIONS(2364), + [anon_sym_override] = ACTIONS(2364), + [anon_sym_final] = ACTIONS(2364), + [anon_sym_class] = ACTIONS(2364), + [anon_sym_interface] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_typedef] = ACTIONS(2364), + [anon_sym_function] = ACTIONS(2364), + [anon_sym_var] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2364), + [aux_sym_integer_token2] = ACTIONS(2366), + [aux_sym_float_token1] = ACTIONS(2364), + [aux_sym_float_token2] = ACTIONS(2366), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [aux_sym_string_token1] = ACTIONS(2366), + [aux_sym_string_token3] = ACTIONS(2366), [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), + [660] = { + [ts_builtin_sym_end] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2042), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_package] = ACTIONS(2042), + [anon_sym_import] = ACTIONS(2042), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_using] = ACTIONS(2042), + [anon_sym_throw] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_cast] = ACTIONS(2042), + [anon_sym_DOLLARtype] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_untyped] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_this] = ACTIONS(2042), + [anon_sym_AT] = ACTIONS(2042), + [anon_sym_AT_COLON] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_catch] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_new] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2044), + [anon_sym_PERCENT] = ACTIONS(2044), + [anon_sym_SLASH] = ACTIONS(2042), + [anon_sym_PLUS] = ACTIONS(2042), + [anon_sym_LT_LT] = ACTIONS(2044), + [anon_sym_GT_GT] = ACTIONS(2042), + [anon_sym_GT_GT_GT] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_PIPE] = ACTIONS(2042), + [anon_sym_CARET] = ACTIONS(2044), + [anon_sym_AMP_AMP] = ACTIONS(2044), + [anon_sym_PIPE_PIPE] = ACTIONS(2044), + [anon_sym_EQ_EQ] = ACTIONS(2044), + [anon_sym_BANG_EQ] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2042), + [anon_sym_LT_EQ] = ACTIONS(2044), + [anon_sym_GT] = ACTIONS(2042), + [anon_sym_GT_EQ] = ACTIONS(2044), + [anon_sym_EQ_GT] = ACTIONS(2044), + [anon_sym_QMARK_QMARK] = ACTIONS(2044), + [anon_sym_EQ] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2042), + [anon_sym_macro] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_overload] = ACTIONS(2042), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_typedef] = ACTIONS(2042), + [anon_sym_function] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [aux_sym_integer_token1] = ACTIONS(2042), + [aux_sym_integer_token2] = ACTIONS(2044), + [aux_sym_float_token1] = ACTIONS(2042), + [aux_sym_float_token2] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2042), + [anon_sym_false] = ACTIONS(2042), + [aux_sym_string_token1] = ACTIONS(2044), + [aux_sym_string_token3] = ACTIONS(2044), [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), + [661] = { + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2370), + [anon_sym_package] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_cast] = ACTIONS(2368), + [anon_sym_DOLLARtype] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_untyped] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_this] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_AT_COLON] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_EQ_GT] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_EQ] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), + [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_enum] = 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(2370), + [aux_sym_float_token1] = ACTIONS(2368), + [aux_sym_float_token2] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [aux_sym_string_token1] = ACTIONS(2370), + [aux_sym_string_token3] = ACTIONS(2370), [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), + [662] = { + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(2374), + [anon_sym_package] = ACTIONS(2372), + [anon_sym_import] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_cast] = ACTIONS(2372), + [anon_sym_DOLLARtype] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_untyped] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_this] = ACTIONS(2372), + [anon_sym_AT] = ACTIONS(2372), + [anon_sym_AT_COLON] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PERCENT] = ACTIONS(2374), + [anon_sym_SLASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_LT_LT] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_GT_GT_GT] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_CARET] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [anon_sym_EQ_EQ] = ACTIONS(2374), + [anon_sym_BANG_EQ] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2372), + [anon_sym_LT_EQ] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2372), + [anon_sym_GT_EQ] = ACTIONS(2374), + [anon_sym_EQ_GT] = ACTIONS(2374), + [anon_sym_QMARK_QMARK] = ACTIONS(2374), + [anon_sym_EQ] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2374), + [anon_sym_null] = ACTIONS(2372), + [anon_sym_macro] = ACTIONS(2372), + [anon_sym_abstract] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_public] = ACTIONS(2372), + [anon_sym_private] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_overload] = ACTIONS(2372), + [anon_sym_override] = ACTIONS(2372), + [anon_sym_final] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_interface] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_function] = ACTIONS(2372), + [anon_sym_var] = ACTIONS(2372), + [aux_sym_integer_token1] = ACTIONS(2372), + [aux_sym_integer_token2] = ACTIONS(2374), + [aux_sym_float_token1] = ACTIONS(2372), + [aux_sym_float_token2] = ACTIONS(2374), + [anon_sym_true] = ACTIONS(2372), + [anon_sym_false] = ACTIONS(2372), + [aux_sym_string_token1] = ACTIONS(2374), + [aux_sym_string_token3] = ACTIONS(2374), [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), + [663] = { + [ts_builtin_sym_end] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_package] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_cast] = ACTIONS(2376), + [anon_sym_DOLLARtype] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_untyped] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_this] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_AT_COLON] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_catch] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PERCENT] = ACTIONS(2378), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_GT_GT_GT] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_AMP_AMP] = ACTIONS(2378), + [anon_sym_PIPE_PIPE] = ACTIONS(2378), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2378), + [anon_sym_EQ_GT] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2378), + [anon_sym_null] = ACTIONS(2376), + [anon_sym_macro] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_extern] = ACTIONS(2376), + [anon_sym_inline] = ACTIONS(2376), + [anon_sym_overload] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_final] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [anon_sym_typedef] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [aux_sym_integer_token1] = ACTIONS(2376), + [aux_sym_integer_token2] = ACTIONS(2378), + [aux_sym_float_token1] = ACTIONS(2376), + [aux_sym_float_token2] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [aux_sym_string_token1] = ACTIONS(2378), + [aux_sym_string_token3] = ACTIONS(2378), [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), + [664] = { + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2384), + [anon_sym_POUND] = ACTIONS(2386), + [anon_sym_package] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_cast] = ACTIONS(2384), + [anon_sym_DOLLARtype] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_untyped] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_this] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_AT_COLON] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_GT_GT_GT] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_EQ_GT] = ACTIONS(2386), + [anon_sym_QMARK_QMARK] = ACTIONS(2386), + [anon_sym_EQ] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_null] = ACTIONS(2384), + [anon_sym_macro] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_overload] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_final] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_typedef] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [aux_sym_integer_token1] = ACTIONS(2384), + [aux_sym_integer_token2] = ACTIONS(2386), + [aux_sym_float_token1] = ACTIONS(2384), + [aux_sym_float_token2] = ACTIONS(2386), + [anon_sym_true] = ACTIONS(2384), + [anon_sym_false] = ACTIONS(2384), + [aux_sym_string_token1] = ACTIONS(2386), + [aux_sym_string_token3] = ACTIONS(2386), [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), + [665] = { + [ts_builtin_sym_end] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2394), + [anon_sym_package] = ACTIONS(2392), + [anon_sym_import] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_using] = ACTIONS(2392), + [anon_sym_throw] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_switch] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_cast] = ACTIONS(2392), + [anon_sym_DOLLARtype] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_untyped] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_this] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_AT_COLON] = ACTIONS(2394), + [anon_sym_try] = ACTIONS(2392), + [anon_sym_catch] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_EQ_GT] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2394), + [anon_sym_null] = ACTIONS(2392), + [anon_sym_macro] = ACTIONS(2392), + [anon_sym_abstract] = ACTIONS(2392), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_public] = ACTIONS(2392), + [anon_sym_private] = ACTIONS(2392), + [anon_sym_extern] = ACTIONS(2392), + [anon_sym_inline] = ACTIONS(2392), + [anon_sym_overload] = ACTIONS(2392), + [anon_sym_override] = ACTIONS(2392), + [anon_sym_final] = ACTIONS(2392), + [anon_sym_class] = ACTIONS(2392), + [anon_sym_interface] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [anon_sym_typedef] = ACTIONS(2392), + [anon_sym_function] = ACTIONS(2392), + [anon_sym_var] = ACTIONS(2392), + [aux_sym_integer_token1] = ACTIONS(2392), + [aux_sym_integer_token2] = ACTIONS(2394), + [aux_sym_float_token1] = ACTIONS(2392), + [aux_sym_float_token2] = ACTIONS(2394), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [aux_sym_string_token1] = ACTIONS(2394), + [aux_sym_string_token3] = ACTIONS(2394), [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), + [666] = { + [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_STAR] = ACTIONS(2282), + [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_for] = ACTIONS(2280), + [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_try] = ACTIONS(2280), + [anon_sym_catch] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [667] = { + [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_STAR] = ACTIONS(1982), + [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_for] = ACTIONS(1980), + [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_try] = ACTIONS(1980), + [anon_sym_catch] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [668] = { + [ts_builtin_sym_end] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_package] = ACTIONS(2046), + [anon_sym_import] = ACTIONS(2046), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_using] = ACTIONS(2046), + [anon_sym_throw] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_cast] = ACTIONS(2046), + [anon_sym_DOLLARtype] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_untyped] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_this] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2046), + [anon_sym_AT_COLON] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2046), + [anon_sym_catch] = ACTIONS(2046), + [anon_sym_else] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_do] = ACTIONS(2046), + [anon_sym_new] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2048), + [anon_sym_PERCENT] = ACTIONS(2048), + [anon_sym_SLASH] = ACTIONS(2046), + [anon_sym_PLUS] = ACTIONS(2046), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_GT_GT] = ACTIONS(2046), + [anon_sym_GT_GT_GT] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2048), + [anon_sym_AMP_AMP] = ACTIONS(2048), + [anon_sym_PIPE_PIPE] = ACTIONS(2048), + [anon_sym_EQ_EQ] = ACTIONS(2048), + [anon_sym_BANG_EQ] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_LT_EQ] = ACTIONS(2048), + [anon_sym_GT] = ACTIONS(2046), + [anon_sym_GT_EQ] = ACTIONS(2048), + [anon_sym_EQ_GT] = ACTIONS(2048), + [anon_sym_QMARK_QMARK] = ACTIONS(2048), + [anon_sym_EQ] = ACTIONS(2046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), + [anon_sym_null] = ACTIONS(2046), + [anon_sym_macro] = ACTIONS(2046), + [anon_sym_abstract] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_public] = ACTIONS(2046), + [anon_sym_private] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_inline] = ACTIONS(2046), + [anon_sym_overload] = ACTIONS(2046), + [anon_sym_override] = ACTIONS(2046), + [anon_sym_final] = ACTIONS(2046), + [anon_sym_class] = ACTIONS(2046), + [anon_sym_interface] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2046), + [anon_sym_function] = ACTIONS(2046), + [anon_sym_var] = ACTIONS(2046), + [aux_sym_integer_token1] = ACTIONS(2046), + [aux_sym_integer_token2] = ACTIONS(2048), + [aux_sym_float_token1] = ACTIONS(2046), + [aux_sym_float_token2] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2046), + [anon_sym_false] = ACTIONS(2046), + [aux_sym_string_token1] = ACTIONS(2048), + [aux_sym_string_token3] = ACTIONS(2048), [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), + [669] = { + [ts_builtin_sym_end] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(2406), + [anon_sym_package] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_cast] = ACTIONS(2404), + [anon_sym_DOLLARtype] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_untyped] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_this] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_AT_COLON] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_catch] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2406), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_GT_GT_GT] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_EQ_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_LT_EQ] = ACTIONS(2406), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_EQ] = ACTIONS(2406), + [anon_sym_EQ_GT] = ACTIONS(2406), + [anon_sym_QMARK_QMARK] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2406), + [anon_sym_null] = ACTIONS(2404), + [anon_sym_macro] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym_overload] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_final] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_typedef] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [aux_sym_integer_token1] = ACTIONS(2404), + [aux_sym_integer_token2] = ACTIONS(2406), + [aux_sym_float_token1] = ACTIONS(2404), + [aux_sym_float_token2] = ACTIONS(2406), + [anon_sym_true] = ACTIONS(2404), + [anon_sym_false] = ACTIONS(2404), + [aux_sym_string_token1] = ACTIONS(2406), + [aux_sym_string_token3] = ACTIONS(2406), [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), + [670] = { + [sym_else_clause] = STATE(709), + [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_STAR] = ACTIONS(1978), + [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_for] = ACTIONS(1976), + [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_try] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [671] = { + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_package] = ACTIONS(1986), + [anon_sym_import] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_using] = ACTIONS(1986), + [anon_sym_throw] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_cast] = ACTIONS(1986), + [anon_sym_DOLLARtype] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_untyped] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_this] = ACTIONS(1986), + [anon_sym_AT] = ACTIONS(1986), + [anon_sym_AT_COLON] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_new] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1988), + [anon_sym_SLASH] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_LT_LT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1986), + [anon_sym_GT_GT_GT] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_CARET] = ACTIONS(1988), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_PIPE_PIPE] = ACTIONS(1988), + [anon_sym_EQ_EQ] = ACTIONS(1988), + [anon_sym_BANG_EQ] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_LT_EQ] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1986), + [anon_sym_GT_EQ] = ACTIONS(1988), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_QMARK] = ACTIONS(1988), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1988), + [anon_sym_null] = ACTIONS(1986), + [anon_sym_macro] = ACTIONS(1986), + [anon_sym_abstract] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_public] = ACTIONS(1986), + [anon_sym_private] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_inline] = ACTIONS(1986), + [anon_sym_overload] = ACTIONS(1986), + [anon_sym_override] = ACTIONS(1986), + [anon_sym_final] = ACTIONS(1986), + [anon_sym_class] = ACTIONS(1986), + [anon_sym_interface] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1986), + [anon_sym_function] = ACTIONS(1986), + [anon_sym_var] = ACTIONS(1986), + [aux_sym_integer_token1] = ACTIONS(1986), + [aux_sym_integer_token2] = ACTIONS(1988), + [aux_sym_float_token1] = ACTIONS(1986), + [aux_sym_float_token2] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [aux_sym_string_token1] = ACTIONS(1988), + [aux_sym_string_token3] = ACTIONS(1988), [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), + [672] = { + [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_STAR] = ACTIONS(2286), + [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_for] = ACTIONS(2284), + [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_try] = ACTIONS(2284), + [anon_sym_catch] = ACTIONS(2284), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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), + [673] = { + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(2290), + [anon_sym_package] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_cast] = ACTIONS(2288), + [anon_sym_DOLLARtype] = ACTIONS(2290), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_untyped] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_this] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_AT_COLON] = ACTIONS(2290), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_PERCENT] = ACTIONS(2290), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2290), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2290), + [anon_sym_PIPE_PIPE] = ACTIONS(2290), + [anon_sym_EQ_EQ] = ACTIONS(2290), + [anon_sym_BANG_EQ] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2290), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2290), + [anon_sym_EQ_GT] = ACTIONS(2290), + [anon_sym_QMARK_QMARK] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2290), + [anon_sym_null] = ACTIONS(2288), + [anon_sym_macro] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_extern] = ACTIONS(2288), + [anon_sym_inline] = ACTIONS(2288), + [anon_sym_overload] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_final] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [anon_sym_typedef] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [aux_sym_integer_token1] = ACTIONS(2288), + [aux_sym_integer_token2] = ACTIONS(2290), + [aux_sym_float_token1] = ACTIONS(2288), + [aux_sym_float_token2] = ACTIONS(2290), + [anon_sym_true] = ACTIONS(2288), + [anon_sym_false] = ACTIONS(2288), + [aux_sym_string_token1] = ACTIONS(2290), + [aux_sym_string_token3] = ACTIONS(2290), [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), + [674] = { + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2050), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_package] = ACTIONS(2050), + [anon_sym_import] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_using] = ACTIONS(2050), + [anon_sym_throw] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_cast] = ACTIONS(2050), + [anon_sym_DOLLARtype] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_untyped] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_AT] = ACTIONS(2050), + [anon_sym_AT_COLON] = ACTIONS(2052), + [anon_sym_try] = ACTIONS(2050), + [anon_sym_catch] = ACTIONS(2050), + [anon_sym_else] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_do] = ACTIONS(2050), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2052), + [anon_sym_PERCENT] = ACTIONS(2052), + [anon_sym_SLASH] = ACTIONS(2050), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_LT_LT] = ACTIONS(2052), + [anon_sym_GT_GT] = ACTIONS(2050), + [anon_sym_GT_GT_GT] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym_AMP_AMP] = ACTIONS(2052), + [anon_sym_PIPE_PIPE] = ACTIONS(2052), + [anon_sym_EQ_EQ] = ACTIONS(2052), + [anon_sym_BANG_EQ] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2050), + [anon_sym_LT_EQ] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2050), + [anon_sym_GT_EQ] = ACTIONS(2052), + [anon_sym_EQ_GT] = ACTIONS(2052), + [anon_sym_QMARK_QMARK] = ACTIONS(2052), + [anon_sym_EQ] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2052), + [anon_sym_null] = ACTIONS(2050), + [anon_sym_macro] = ACTIONS(2050), + [anon_sym_abstract] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_public] = ACTIONS(2050), + [anon_sym_private] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_inline] = ACTIONS(2050), + [anon_sym_overload] = ACTIONS(2050), + [anon_sym_override] = ACTIONS(2050), + [anon_sym_final] = ACTIONS(2050), + [anon_sym_class] = ACTIONS(2050), + [anon_sym_interface] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_typedef] = ACTIONS(2050), + [anon_sym_function] = ACTIONS(2050), + [anon_sym_var] = ACTIONS(2050), + [aux_sym_integer_token1] = ACTIONS(2050), + [aux_sym_integer_token2] = ACTIONS(2052), + [aux_sym_float_token1] = ACTIONS(2050), + [aux_sym_float_token2] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [aux_sym_string_token1] = ACTIONS(2052), + [aux_sym_string_token3] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [675] = { + [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_STAR] = ACTIONS(2302), + [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_for] = ACTIONS(2300), + [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_try] = ACTIONS(2300), + [anon_sym_catch] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [676] = { + [ts_builtin_sym_end] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2414), + [anon_sym_package] = ACTIONS(2412), + [anon_sym_import] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2412), + [anon_sym_throw] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_cast] = ACTIONS(2412), + [anon_sym_DOLLARtype] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_untyped] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_this] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_AT_COLON] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_catch] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_EQ_GT] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2414), + [anon_sym_null] = ACTIONS(2412), + [anon_sym_macro] = ACTIONS(2412), + [anon_sym_abstract] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym_overload] = ACTIONS(2412), + [anon_sym_override] = ACTIONS(2412), + [anon_sym_final] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2412), + [anon_sym_interface] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_typedef] = ACTIONS(2412), + [anon_sym_function] = ACTIONS(2412), + [anon_sym_var] = ACTIONS(2412), + [aux_sym_integer_token1] = ACTIONS(2412), + [aux_sym_integer_token2] = ACTIONS(2414), + [aux_sym_float_token1] = ACTIONS(2412), + [aux_sym_float_token2] = ACTIONS(2414), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [aux_sym_string_token1] = ACTIONS(2414), + [aux_sym_string_token3] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [677] = { + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2418), + [anon_sym_package] = ACTIONS(2416), + [anon_sym_import] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2416), + [anon_sym_throw] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_cast] = ACTIONS(2416), + [anon_sym_DOLLARtype] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_untyped] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_this] = ACTIONS(2416), + [anon_sym_AT] = ACTIONS(2416), + [anon_sym_AT_COLON] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_catch] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_GT_GT_GT] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2416), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2416), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(2418), + [anon_sym_QMARK_QMARK] = ACTIONS(2418), + [anon_sym_EQ] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2416), + [anon_sym_macro] = ACTIONS(2416), + [anon_sym_abstract] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym_overload] = ACTIONS(2416), + [anon_sym_override] = ACTIONS(2416), + [anon_sym_final] = ACTIONS(2416), + [anon_sym_class] = ACTIONS(2416), + [anon_sym_interface] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2416), + [anon_sym_var] = ACTIONS(2416), + [aux_sym_integer_token1] = ACTIONS(2416), + [aux_sym_integer_token2] = ACTIONS(2418), + [aux_sym_float_token1] = ACTIONS(2416), + [aux_sym_float_token2] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [aux_sym_string_token1] = ACTIONS(2418), + [aux_sym_string_token3] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [678] = { + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2754), + [anon_sym_package] = ACTIONS(2752), + [anon_sym_import] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_cast] = ACTIONS(2752), + [anon_sym_DOLLARtype] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_untyped] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_this] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_AT_COLON] = ACTIONS(2754), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PERCENT] = ACTIONS(2754), + [anon_sym_SLASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_GT_GT_GT] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_EQ_EQ] = ACTIONS(2754), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_LT_EQ] = ACTIONS(2754), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_EQ] = ACTIONS(2754), + [anon_sym_EQ_GT] = ACTIONS(2754), + [anon_sym_QMARK_QMARK] = ACTIONS(2754), + [anon_sym_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_macro] = ACTIONS(2752), + [anon_sym_abstract] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym_overload] = ACTIONS(2752), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_final] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_interface] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_var] = ACTIONS(2752), + [aux_sym_integer_token1] = ACTIONS(2752), + [aux_sym_integer_token2] = ACTIONS(2754), + [aux_sym_float_token1] = ACTIONS(2752), + [aux_sym_float_token2] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [aux_sym_string_token1] = ACTIONS(2754), + [aux_sym_string_token3] = ACTIONS(2754), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [679] = { + [ts_builtin_sym_end] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_package] = ACTIONS(2054), + [anon_sym_import] = ACTIONS(2054), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_using] = ACTIONS(2054), + [anon_sym_throw] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_switch] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_cast] = ACTIONS(2054), + [anon_sym_DOLLARtype] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_untyped] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_this] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2054), + [anon_sym_AT_COLON] = ACTIONS(2056), + [anon_sym_try] = ACTIONS(2054), + [anon_sym_catch] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_do] = ACTIONS(2054), + [anon_sym_new] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2056), + [anon_sym_DASH_DASH] = ACTIONS(2056), + [anon_sym_PERCENT] = ACTIONS(2056), + [anon_sym_SLASH] = ACTIONS(2054), + [anon_sym_PLUS] = ACTIONS(2054), + [anon_sym_LT_LT] = ACTIONS(2056), + [anon_sym_GT_GT] = ACTIONS(2054), + [anon_sym_GT_GT_GT] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_EQ_EQ] = ACTIONS(2056), + [anon_sym_BANG_EQ] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2054), + [anon_sym_LT_EQ] = ACTIONS(2056), + [anon_sym_GT] = ACTIONS(2054), + [anon_sym_GT_EQ] = ACTIONS(2056), + [anon_sym_EQ_GT] = ACTIONS(2056), + [anon_sym_QMARK_QMARK] = ACTIONS(2056), + [anon_sym_EQ] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2054), + [anon_sym_macro] = ACTIONS(2054), + [anon_sym_abstract] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_public] = ACTIONS(2054), + [anon_sym_private] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_inline] = ACTIONS(2054), + [anon_sym_overload] = ACTIONS(2054), + [anon_sym_override] = ACTIONS(2054), + [anon_sym_final] = ACTIONS(2054), + [anon_sym_class] = ACTIONS(2054), + [anon_sym_interface] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2054), + [anon_sym_function] = ACTIONS(2054), + [anon_sym_var] = ACTIONS(2054), + [aux_sym_integer_token1] = ACTIONS(2054), + [aux_sym_integer_token2] = ACTIONS(2056), + [aux_sym_float_token1] = ACTIONS(2054), + [aux_sym_float_token2] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [aux_sym_string_token1] = ACTIONS(2056), + [aux_sym_string_token3] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [680] = { + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2434), + [anon_sym_package] = ACTIONS(2432), + [anon_sym_import] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2432), + [anon_sym_throw] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_cast] = ACTIONS(2432), + [anon_sym_DOLLARtype] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_untyped] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_this] = ACTIONS(2432), + [anon_sym_AT] = ACTIONS(2432), + [anon_sym_AT_COLON] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_catch] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [anon_sym_PERCENT] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2434), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_GT_GT_GT] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_EQ_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2432), + [anon_sym_LT_EQ] = ACTIONS(2434), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2434), + [anon_sym_EQ_GT] = ACTIONS(2434), + [anon_sym_QMARK_QMARK] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), + [anon_sym_null] = ACTIONS(2432), + [anon_sym_macro] = ACTIONS(2432), + [anon_sym_abstract] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_public] = ACTIONS(2432), + [anon_sym_private] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym_inline] = ACTIONS(2432), + [anon_sym_overload] = ACTIONS(2432), + [anon_sym_override] = ACTIONS(2432), + [anon_sym_final] = ACTIONS(2432), + [anon_sym_class] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_typedef] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(2432), + [anon_sym_var] = ACTIONS(2432), + [aux_sym_integer_token1] = ACTIONS(2432), + [aux_sym_integer_token2] = ACTIONS(2434), + [aux_sym_float_token1] = ACTIONS(2432), + [aux_sym_float_token2] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2432), + [anon_sym_false] = ACTIONS(2432), + [aux_sym_string_token1] = ACTIONS(2434), + [aux_sym_string_token3] = ACTIONS(2434), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [681] = { + [ts_builtin_sym_end] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2058), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_package] = ACTIONS(2058), + [anon_sym_import] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_using] = ACTIONS(2058), + [anon_sym_throw] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_cast] = ACTIONS(2058), + [anon_sym_DOLLARtype] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_untyped] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_this] = ACTIONS(2058), + [anon_sym_AT] = ACTIONS(2058), + [anon_sym_AT_COLON] = ACTIONS(2060), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_catch] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_new] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym_PERCENT] = ACTIONS(2060), + [anon_sym_SLASH] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_GT_GT_GT] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_CARET] = ACTIONS(2060), + [anon_sym_AMP_AMP] = ACTIONS(2060), + [anon_sym_PIPE_PIPE] = ACTIONS(2060), + [anon_sym_EQ_EQ] = ACTIONS(2060), + [anon_sym_BANG_EQ] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2058), + [anon_sym_LT_EQ] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2058), + [anon_sym_GT_EQ] = ACTIONS(2060), + [anon_sym_EQ_GT] = ACTIONS(2060), + [anon_sym_QMARK_QMARK] = ACTIONS(2060), + [anon_sym_EQ] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2060), + [anon_sym_null] = ACTIONS(2058), + [anon_sym_macro] = ACTIONS(2058), + [anon_sym_abstract] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_public] = ACTIONS(2058), + [anon_sym_private] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_inline] = ACTIONS(2058), + [anon_sym_overload] = ACTIONS(2058), + [anon_sym_override] = ACTIONS(2058), + [anon_sym_final] = ACTIONS(2058), + [anon_sym_class] = ACTIONS(2058), + [anon_sym_interface] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2058), + [anon_sym_function] = ACTIONS(2058), + [anon_sym_var] = ACTIONS(2058), + [aux_sym_integer_token1] = ACTIONS(2058), + [aux_sym_integer_token2] = ACTIONS(2060), + [aux_sym_float_token1] = ACTIONS(2058), + [aux_sym_float_token2] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [aux_sym_string_token1] = ACTIONS(2060), + [aux_sym_string_token3] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [682] = { + [ts_builtin_sym_end] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_package] = ACTIONS(2006), + [anon_sym_import] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_using] = ACTIONS(2006), + [anon_sym_throw] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_cast] = ACTIONS(2006), + [anon_sym_DOLLARtype] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_untyped] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_this] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_AT_COLON] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2006), + [anon_sym_catch] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_do] = ACTIONS(2006), + [anon_sym_new] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2008), + [anon_sym_PERCENT] = ACTIONS(2008), + [anon_sym_SLASH] = ACTIONS(2006), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_LT_LT] = ACTIONS(2008), + [anon_sym_GT_GT] = ACTIONS(2006), + [anon_sym_GT_GT_GT] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [anon_sym_EQ_EQ] = ACTIONS(2008), + [anon_sym_BANG_EQ] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(2008), + [anon_sym_GT] = ACTIONS(2006), + [anon_sym_GT_EQ] = ACTIONS(2008), + [anon_sym_EQ_GT] = ACTIONS(2008), + [anon_sym_QMARK_QMARK] = ACTIONS(2008), + [anon_sym_EQ] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2008), + [anon_sym_null] = ACTIONS(2006), + [anon_sym_macro] = ACTIONS(2006), + [anon_sym_abstract] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2006), + [anon_sym_public] = ACTIONS(2006), + [anon_sym_private] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_inline] = ACTIONS(2006), + [anon_sym_overload] = ACTIONS(2006), + [anon_sym_override] = ACTIONS(2006), + [anon_sym_final] = ACTIONS(2006), + [anon_sym_class] = ACTIONS(2006), + [anon_sym_interface] = ACTIONS(2006), + [anon_sym_enum] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2006), + [anon_sym_function] = ACTIONS(2006), + [anon_sym_var] = ACTIONS(2006), + [aux_sym_integer_token1] = ACTIONS(2006), + [aux_sym_integer_token2] = ACTIONS(2008), + [aux_sym_float_token1] = ACTIONS(2006), + [aux_sym_float_token2] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [aux_sym_string_token1] = ACTIONS(2008), + [aux_sym_string_token3] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [683] = { + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2440), + [anon_sym_POUND] = ACTIONS(2442), + [anon_sym_package] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_cast] = ACTIONS(2440), + [anon_sym_DOLLARtype] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_untyped] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_this] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_AT_COLON] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_catch] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2440), + [anon_sym_GT_EQ] = ACTIONS(2442), + [anon_sym_EQ_GT] = ACTIONS(2442), + [anon_sym_QMARK_QMARK] = ACTIONS(2442), + [anon_sym_EQ] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2442), + [anon_sym_null] = ACTIONS(2440), + [anon_sym_macro] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym_inline] = ACTIONS(2440), + [anon_sym_overload] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_final] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_typedef] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [aux_sym_integer_token1] = ACTIONS(2440), + [aux_sym_integer_token2] = ACTIONS(2442), + [aux_sym_float_token1] = ACTIONS(2440), + [aux_sym_float_token2] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [aux_sym_string_token1] = ACTIONS(2442), + [aux_sym_string_token3] = ACTIONS(2442), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [684] = { + [ts_builtin_sym_end] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2444), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_package] = ACTIONS(2444), + [anon_sym_import] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_using] = ACTIONS(2444), + [anon_sym_throw] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_switch] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_cast] = ACTIONS(2444), + [anon_sym_DOLLARtype] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_untyped] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_this] = ACTIONS(2444), + [anon_sym_AT] = ACTIONS(2444), + [anon_sym_AT_COLON] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_catch] = ACTIONS(2444), + [anon_sym_else] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_PLUS_PLUS] = ACTIONS(2446), + [anon_sym_DASH_DASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2446), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_GT_GT_GT] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_CARET] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_PIPE_PIPE] = ACTIONS(2446), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_LT_EQ] = ACTIONS(2446), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_GT_EQ] = ACTIONS(2446), + [anon_sym_EQ_GT] = ACTIONS(2446), + [anon_sym_QMARK_QMARK] = ACTIONS(2446), + [anon_sym_EQ] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2446), + [anon_sym_null] = ACTIONS(2444), + [anon_sym_macro] = ACTIONS(2444), + [anon_sym_abstract] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym_inline] = ACTIONS(2444), + [anon_sym_overload] = ACTIONS(2444), + [anon_sym_override] = ACTIONS(2444), + [anon_sym_final] = ACTIONS(2444), + [anon_sym_class] = ACTIONS(2444), + [anon_sym_interface] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_typedef] = ACTIONS(2444), + [anon_sym_function] = ACTIONS(2444), + [anon_sym_var] = ACTIONS(2444), + [aux_sym_integer_token1] = ACTIONS(2444), + [aux_sym_integer_token2] = ACTIONS(2446), + [aux_sym_float_token1] = ACTIONS(2444), + [aux_sym_float_token2] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2444), + [anon_sym_false] = ACTIONS(2444), + [aux_sym_string_token1] = ACTIONS(2446), + [aux_sym_string_token3] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [685] = { + [ts_builtin_sym_end] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2448), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_package] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_cast] = ACTIONS(2448), + [anon_sym_DOLLARtype] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_untyped] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_this] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_AT_COLON] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2448), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_EQ_GT] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_EQ] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2450), + [anon_sym_null] = ACTIONS(2448), + [anon_sym_macro] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_inline] = ACTIONS(2448), + [anon_sym_overload] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_final] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [anon_sym_typedef] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [aux_sym_integer_token1] = ACTIONS(2448), + [aux_sym_integer_token2] = ACTIONS(2450), + [aux_sym_float_token1] = ACTIONS(2448), + [aux_sym_float_token2] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [aux_sym_string_token1] = ACTIONS(2450), + [aux_sym_string_token3] = ACTIONS(2450), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [686] = { + [ts_builtin_sym_end] = ACTIONS(2458), + [sym_identifier] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_package] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_cast] = ACTIONS(2456), + [anon_sym_DOLLARtype] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_untyped] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_this] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_AT_COLON] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_catch] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_EQ_GT] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2458), + [anon_sym_null] = ACTIONS(2456), + [anon_sym_macro] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_inline] = ACTIONS(2456), + [anon_sym_overload] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_final] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [anon_sym_typedef] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [aux_sym_integer_token1] = ACTIONS(2456), + [aux_sym_integer_token2] = ACTIONS(2458), + [aux_sym_float_token1] = ACTIONS(2456), + [aux_sym_float_token2] = ACTIONS(2458), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [aux_sym_string_token1] = ACTIONS(2458), + [aux_sym_string_token3] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [687] = { + [ts_builtin_sym_end] = ACTIONS(2064), + [sym_identifier] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_package] = ACTIONS(2062), + [anon_sym_import] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_using] = ACTIONS(2062), + [anon_sym_throw] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_switch] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_cast] = ACTIONS(2062), + [anon_sym_DOLLARtype] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_untyped] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2062), + [anon_sym_AT_COLON] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2062), + [anon_sym_catch] = ACTIONS(2062), + [anon_sym_else] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_new] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_PERCENT] = ACTIONS(2064), + [anon_sym_SLASH] = ACTIONS(2062), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_LT_LT] = ACTIONS(2064), + [anon_sym_GT_GT] = ACTIONS(2062), + [anon_sym_GT_GT_GT] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2064), + [anon_sym_PIPE_PIPE] = ACTIONS(2064), + [anon_sym_EQ_EQ] = ACTIONS(2064), + [anon_sym_BANG_EQ] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2062), + [anon_sym_LT_EQ] = ACTIONS(2064), + [anon_sym_GT] = ACTIONS(2062), + [anon_sym_GT_EQ] = ACTIONS(2064), + [anon_sym_EQ_GT] = ACTIONS(2064), + [anon_sym_QMARK_QMARK] = ACTIONS(2064), + [anon_sym_EQ] = ACTIONS(2062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2064), + [anon_sym_null] = ACTIONS(2062), + [anon_sym_macro] = ACTIONS(2062), + [anon_sym_abstract] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_public] = ACTIONS(2062), + [anon_sym_private] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_inline] = ACTIONS(2062), + [anon_sym_overload] = ACTIONS(2062), + [anon_sym_override] = ACTIONS(2062), + [anon_sym_final] = ACTIONS(2062), + [anon_sym_class] = ACTIONS(2062), + [anon_sym_interface] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2062), + [anon_sym_function] = ACTIONS(2062), + [anon_sym_var] = ACTIONS(2062), + [aux_sym_integer_token1] = ACTIONS(2062), + [aux_sym_integer_token2] = ACTIONS(2064), + [aux_sym_float_token1] = ACTIONS(2062), + [aux_sym_float_token2] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2062), + [anon_sym_false] = ACTIONS(2062), + [aux_sym_string_token1] = ACTIONS(2064), + [aux_sym_string_token3] = ACTIONS(2064), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [688] = { + [ts_builtin_sym_end] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_package] = ACTIONS(2066), + [anon_sym_import] = ACTIONS(2066), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_using] = ACTIONS(2066), + [anon_sym_throw] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_cast] = ACTIONS(2066), + [anon_sym_DOLLARtype] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_untyped] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_this] = ACTIONS(2066), + [anon_sym_AT] = ACTIONS(2066), + [anon_sym_AT_COLON] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_new] = ACTIONS(2066), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_PLUS_PLUS] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [anon_sym_PERCENT] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_LT_LT] = ACTIONS(2068), + [anon_sym_GT_GT] = ACTIONS(2066), + [anon_sym_GT_GT_GT] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_CARET] = ACTIONS(2068), + [anon_sym_AMP_AMP] = ACTIONS(2068), + [anon_sym_PIPE_PIPE] = ACTIONS(2068), + [anon_sym_EQ_EQ] = ACTIONS(2068), + [anon_sym_BANG_EQ] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_LT_EQ] = ACTIONS(2068), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_GT_EQ] = ACTIONS(2068), + [anon_sym_EQ_GT] = ACTIONS(2068), + [anon_sym_QMARK_QMARK] = ACTIONS(2068), + [anon_sym_EQ] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2068), + [anon_sym_null] = ACTIONS(2066), + [anon_sym_macro] = ACTIONS(2066), + [anon_sym_abstract] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_public] = ACTIONS(2066), + [anon_sym_private] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_inline] = ACTIONS(2066), + [anon_sym_overload] = ACTIONS(2066), + [anon_sym_override] = ACTIONS(2066), + [anon_sym_final] = ACTIONS(2066), + [anon_sym_class] = ACTIONS(2066), + [anon_sym_interface] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_typedef] = ACTIONS(2066), + [anon_sym_function] = ACTIONS(2066), + [anon_sym_var] = ACTIONS(2066), + [aux_sym_integer_token1] = ACTIONS(2066), + [aux_sym_integer_token2] = ACTIONS(2068), + [aux_sym_float_token1] = ACTIONS(2066), + [aux_sym_float_token2] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [aux_sym_string_token1] = ACTIONS(2068), + [aux_sym_string_token3] = ACTIONS(2068), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [689] = { + [ts_builtin_sym_end] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2460), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_package] = ACTIONS(2460), + [anon_sym_import] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2460), + [anon_sym_throw] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_cast] = ACTIONS(2460), + [anon_sym_DOLLARtype] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_untyped] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_this] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2460), + [anon_sym_AT_COLON] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2460), + [anon_sym_catch] = ACTIONS(2460), + [anon_sym_else] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_do] = ACTIONS(2460), + [anon_sym_new] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_EQ_GT] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_EQ] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2462), + [anon_sym_null] = ACTIONS(2460), + [anon_sym_macro] = ACTIONS(2460), + [anon_sym_abstract] = ACTIONS(2460), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_public] = ACTIONS(2460), + [anon_sym_private] = ACTIONS(2460), + [anon_sym_extern] = ACTIONS(2460), + [anon_sym_inline] = ACTIONS(2460), + [anon_sym_overload] = ACTIONS(2460), + [anon_sym_override] = ACTIONS(2460), + [anon_sym_final] = ACTIONS(2460), + [anon_sym_class] = ACTIONS(2460), + [anon_sym_interface] = ACTIONS(2460), + [anon_sym_enum] = ACTIONS(2460), + [anon_sym_typedef] = ACTIONS(2460), + [anon_sym_function] = ACTIONS(2460), + [anon_sym_var] = ACTIONS(2460), + [aux_sym_integer_token1] = ACTIONS(2460), + [aux_sym_integer_token2] = ACTIONS(2462), + [aux_sym_float_token1] = ACTIONS(2460), + [aux_sym_float_token2] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [aux_sym_string_token1] = ACTIONS(2462), + [aux_sym_string_token3] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [690] = { + [ts_builtin_sym_end] = ACTIONS(2470), + [sym_identifier] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_package] = ACTIONS(2468), + [anon_sym_import] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2468), + [anon_sym_throw] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_cast] = ACTIONS(2468), + [anon_sym_DOLLARtype] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_untyped] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_this] = ACTIONS(2468), + [anon_sym_AT] = ACTIONS(2468), + [anon_sym_AT_COLON] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_catch] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_new] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_EQ_GT] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_EQ] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2470), + [anon_sym_null] = ACTIONS(2468), + [anon_sym_macro] = ACTIONS(2468), + [anon_sym_abstract] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_public] = ACTIONS(2468), + [anon_sym_private] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_inline] = ACTIONS(2468), + [anon_sym_overload] = ACTIONS(2468), + [anon_sym_override] = ACTIONS(2468), + [anon_sym_final] = ACTIONS(2468), + [anon_sym_class] = ACTIONS(2468), + [anon_sym_interface] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [anon_sym_typedef] = ACTIONS(2468), + [anon_sym_function] = ACTIONS(2468), + [anon_sym_var] = ACTIONS(2468), + [aux_sym_integer_token1] = ACTIONS(2468), + [aux_sym_integer_token2] = ACTIONS(2470), + [aux_sym_float_token1] = ACTIONS(2468), + [aux_sym_float_token2] = ACTIONS(2470), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [aux_sym_string_token1] = ACTIONS(2470), + [aux_sym_string_token3] = ACTIONS(2470), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [691] = { + [ts_builtin_sym_end] = ACTIONS(2474), + [sym_identifier] = ACTIONS(2472), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_package] = ACTIONS(2472), + [anon_sym_import] = ACTIONS(2472), + [anon_sym_STAR] = ACTIONS(2474), + [anon_sym_using] = ACTIONS(2472), + [anon_sym_throw] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_cast] = ACTIONS(2472), + [anon_sym_DOLLARtype] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_untyped] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_this] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2472), + [anon_sym_AT_COLON] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2472), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_do] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_EQ_GT] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_EQ] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_null] = ACTIONS(2472), + [anon_sym_macro] = ACTIONS(2472), + [anon_sym_abstract] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2472), + [anon_sym_public] = ACTIONS(2472), + [anon_sym_private] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_inline] = ACTIONS(2472), + [anon_sym_overload] = ACTIONS(2472), + [anon_sym_override] = ACTIONS(2472), + [anon_sym_final] = ACTIONS(2472), + [anon_sym_class] = ACTIONS(2472), + [anon_sym_interface] = ACTIONS(2472), + [anon_sym_enum] = ACTIONS(2472), + [anon_sym_typedef] = ACTIONS(2472), + [anon_sym_function] = ACTIONS(2472), + [anon_sym_var] = ACTIONS(2472), + [aux_sym_integer_token1] = ACTIONS(2472), + [aux_sym_integer_token2] = ACTIONS(2474), + [aux_sym_float_token1] = ACTIONS(2472), + [aux_sym_float_token2] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [aux_sym_string_token1] = ACTIONS(2474), + [aux_sym_string_token3] = ACTIONS(2474), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [692] = { + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_package] = ACTIONS(2476), + [anon_sym_import] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_cast] = ACTIONS(2476), + [anon_sym_DOLLARtype] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_untyped] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_this] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_AT_COLON] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PERCENT] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_LT_LT] = ACTIONS(2478), + [anon_sym_GT_GT] = ACTIONS(2476), + [anon_sym_GT_GT_GT] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(2478), + [anon_sym_EQ_EQ] = ACTIONS(2478), + [anon_sym_BANG_EQ] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_LT_EQ] = ACTIONS(2478), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_GT_EQ] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(2478), + [anon_sym_QMARK_QMARK] = ACTIONS(2478), + [anon_sym_EQ] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), + [anon_sym_null] = ACTIONS(2476), + [anon_sym_macro] = ACTIONS(2476), + [anon_sym_abstract] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_public] = ACTIONS(2476), + [anon_sym_private] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_overload] = ACTIONS(2476), + [anon_sym_override] = ACTIONS(2476), + [anon_sym_final] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_interface] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2476), + [anon_sym_var] = ACTIONS(2476), + [aux_sym_integer_token1] = ACTIONS(2476), + [aux_sym_integer_token2] = ACTIONS(2478), + [aux_sym_float_token1] = ACTIONS(2476), + [aux_sym_float_token2] = ACTIONS(2478), + [anon_sym_true] = ACTIONS(2476), + [anon_sym_false] = ACTIONS(2476), + [aux_sym_string_token1] = ACTIONS(2478), + [aux_sym_string_token3] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [693] = { + [ts_builtin_sym_end] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2480), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2480), + [anon_sym_import] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2480), + [anon_sym_throw] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_cast] = ACTIONS(2480), + [anon_sym_DOLLARtype] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_untyped] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2480), + [anon_sym_AT_COLON] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2480), + [anon_sym_catch] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_LT_LT] = ACTIONS(2482), + [anon_sym_GT_GT] = ACTIONS(2480), + [anon_sym_GT_GT_GT] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_LT_EQ] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2480), + [anon_sym_GT_EQ] = ACTIONS(2482), + [anon_sym_EQ_GT] = ACTIONS(2482), + [anon_sym_QMARK_QMARK] = ACTIONS(2482), + [anon_sym_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2480), + [anon_sym_macro] = ACTIONS(2480), + [anon_sym_abstract] = ACTIONS(2480), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_public] = ACTIONS(2480), + [anon_sym_private] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_overload] = ACTIONS(2480), + [anon_sym_override] = ACTIONS(2480), + [anon_sym_final] = ACTIONS(2480), + [anon_sym_class] = ACTIONS(2480), + [anon_sym_interface] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_function] = ACTIONS(2480), + [anon_sym_var] = ACTIONS(2480), + [aux_sym_integer_token1] = ACTIONS(2480), + [aux_sym_integer_token2] = ACTIONS(2482), + [aux_sym_float_token1] = ACTIONS(2480), + [aux_sym_float_token2] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2480), + [anon_sym_false] = ACTIONS(2480), + [aux_sym_string_token1] = ACTIONS(2482), + [aux_sym_string_token3] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [694] = { + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2484), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_package] = ACTIONS(2484), + [anon_sym_import] = ACTIONS(2484), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_using] = ACTIONS(2484), + [anon_sym_throw] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_switch] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_cast] = ACTIONS(2484), + [anon_sym_DOLLARtype] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_untyped] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_this] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2484), + [anon_sym_AT_COLON] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_catch] = ACTIONS(2484), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_new] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [anon_sym_PERCENT] = ACTIONS(2486), + [anon_sym_SLASH] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2486), + [anon_sym_GT_GT] = ACTIONS(2484), + [anon_sym_GT_GT_GT] = ACTIONS(2486), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2484), + [anon_sym_CARET] = ACTIONS(2486), + [anon_sym_AMP_AMP] = ACTIONS(2486), + [anon_sym_PIPE_PIPE] = ACTIONS(2486), + [anon_sym_EQ_EQ] = ACTIONS(2486), + [anon_sym_BANG_EQ] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2484), + [anon_sym_LT_EQ] = ACTIONS(2486), + [anon_sym_GT] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2486), + [anon_sym_EQ_GT] = ACTIONS(2486), + [anon_sym_QMARK_QMARK] = ACTIONS(2486), + [anon_sym_EQ] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2486), + [anon_sym_null] = ACTIONS(2484), + [anon_sym_macro] = ACTIONS(2484), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2484), + [anon_sym_public] = ACTIONS(2484), + [anon_sym_private] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_inline] = ACTIONS(2484), + [anon_sym_overload] = ACTIONS(2484), + [anon_sym_override] = ACTIONS(2484), + [anon_sym_final] = ACTIONS(2484), + [anon_sym_class] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2484), + [anon_sym_enum] = ACTIONS(2484), + [anon_sym_typedef] = ACTIONS(2484), + [anon_sym_function] = ACTIONS(2484), + [anon_sym_var] = ACTIONS(2484), + [aux_sym_integer_token1] = ACTIONS(2484), + [aux_sym_integer_token2] = ACTIONS(2486), + [aux_sym_float_token1] = ACTIONS(2484), + [aux_sym_float_token2] = ACTIONS(2486), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(2486), + [aux_sym_string_token3] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [695] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_identifier] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_package] = ACTIONS(874), + [anon_sym_import] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(872), + [anon_sym_using] = ACTIONS(874), + [anon_sym_throw] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_cast] = ACTIONS(874), + [anon_sym_DOLLARtype] = ACTIONS(872), + [anon_sym_for] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_untyped] = ACTIONS(874), + [anon_sym_break] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_this] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_AT_COLON] = ACTIONS(872), + [anon_sym_try] = ACTIONS(874), + [anon_sym_catch] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_if] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [anon_sym_do] = ACTIONS(874), + [anon_sym_new] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(872), + [anon_sym_DASH_DASH] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(872), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(872), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_GT_GT_GT] = ACTIONS(872), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(872), + [anon_sym_AMP_AMP] = ACTIONS(872), + [anon_sym_PIPE_PIPE] = ACTIONS(872), + [anon_sym_EQ_EQ] = ACTIONS(872), + [anon_sym_BANG_EQ] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(872), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_QMARK] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_null] = ACTIONS(874), + [anon_sym_macro] = ACTIONS(874), + [anon_sym_abstract] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(874), + [anon_sym_inline] = ACTIONS(874), + [anon_sym_overload] = ACTIONS(874), + [anon_sym_override] = ACTIONS(874), + [anon_sym_final] = ACTIONS(874), + [anon_sym_class] = ACTIONS(874), + [anon_sym_interface] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_typedef] = ACTIONS(874), + [anon_sym_function] = ACTIONS(874), + [anon_sym_var] = ACTIONS(874), + [aux_sym_integer_token1] = ACTIONS(874), + [aux_sym_integer_token2] = ACTIONS(872), + [aux_sym_float_token1] = ACTIONS(874), + [aux_sym_float_token2] = ACTIONS(872), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [aux_sym_string_token1] = ACTIONS(872), + [aux_sym_string_token3] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [696] = { + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_package] = ACTIONS(2488), + [anon_sym_import] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2488), + [anon_sym_throw] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_cast] = ACTIONS(2488), + [anon_sym_DOLLARtype] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_untyped] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_this] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2488), + [anon_sym_AT_COLON] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_catch] = ACTIONS(2488), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_EQ_GT] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_EQ] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2490), + [anon_sym_null] = ACTIONS(2488), + [anon_sym_macro] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_inline] = ACTIONS(2488), + [anon_sym_overload] = ACTIONS(2488), + [anon_sym_override] = ACTIONS(2488), + [anon_sym_final] = ACTIONS(2488), + [anon_sym_class] = ACTIONS(2488), + [anon_sym_interface] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [anon_sym_typedef] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_var] = ACTIONS(2488), + [aux_sym_integer_token1] = ACTIONS(2488), + [aux_sym_integer_token2] = ACTIONS(2490), + [aux_sym_float_token1] = ACTIONS(2488), + [aux_sym_float_token2] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [aux_sym_string_token1] = ACTIONS(2490), + [aux_sym_string_token3] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [697] = { + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_package] = ACTIONS(2492), + [anon_sym_import] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2494), + [anon_sym_using] = ACTIONS(2492), + [anon_sym_throw] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_cast] = ACTIONS(2492), + [anon_sym_DOLLARtype] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_untyped] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_this] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2492), + [anon_sym_AT_COLON] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_catch] = ACTIONS(2492), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_new] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_EQ_GT] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_EQ] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2494), + [anon_sym_null] = ACTIONS(2492), + [anon_sym_macro] = ACTIONS(2492), + [anon_sym_abstract] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_public] = ACTIONS(2492), + [anon_sym_private] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_inline] = ACTIONS(2492), + [anon_sym_overload] = ACTIONS(2492), + [anon_sym_override] = ACTIONS(2492), + [anon_sym_final] = ACTIONS(2492), + [anon_sym_class] = ACTIONS(2492), + [anon_sym_interface] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [anon_sym_typedef] = ACTIONS(2492), + [anon_sym_function] = ACTIONS(2492), + [anon_sym_var] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2492), + [aux_sym_integer_token2] = ACTIONS(2494), + [aux_sym_float_token1] = ACTIONS(2492), + [aux_sym_float_token2] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [aux_sym_string_token1] = ACTIONS(2494), + [aux_sym_string_token3] = ACTIONS(2494), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [698] = { + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2496), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_package] = ACTIONS(2496), + [anon_sym_import] = ACTIONS(2496), + [anon_sym_STAR] = ACTIONS(2498), + [anon_sym_using] = ACTIONS(2496), + [anon_sym_throw] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_switch] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_cast] = ACTIONS(2496), + [anon_sym_DOLLARtype] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_untyped] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_this] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2496), + [anon_sym_AT_COLON] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_catch] = ACTIONS(2496), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_new] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_EQ_GT] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_EQ] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2498), + [anon_sym_null] = ACTIONS(2496), + [anon_sym_macro] = ACTIONS(2496), + [anon_sym_abstract] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_public] = ACTIONS(2496), + [anon_sym_private] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_inline] = ACTIONS(2496), + [anon_sym_overload] = ACTIONS(2496), + [anon_sym_override] = ACTIONS(2496), + [anon_sym_final] = ACTIONS(2496), + [anon_sym_class] = ACTIONS(2496), + [anon_sym_interface] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [anon_sym_typedef] = ACTIONS(2496), + [anon_sym_function] = ACTIONS(2496), + [anon_sym_var] = ACTIONS(2496), + [aux_sym_integer_token1] = ACTIONS(2496), + [aux_sym_integer_token2] = ACTIONS(2498), + [aux_sym_float_token1] = ACTIONS(2496), + [aux_sym_float_token2] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [aux_sym_string_token1] = ACTIONS(2498), + [aux_sym_string_token3] = ACTIONS(2498), [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(2502), + [sym_identifier] = ACTIONS(2500), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_package] = ACTIONS(2500), + [anon_sym_import] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(2502), + [anon_sym_using] = ACTIONS(2500), + [anon_sym_throw] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_switch] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_cast] = ACTIONS(2500), + [anon_sym_DOLLARtype] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_untyped] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2500), + [anon_sym_AT_COLON] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_catch] = ACTIONS(2500), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_EQ_GT] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_EQ] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_null] = ACTIONS(2500), + [anon_sym_macro] = ACTIONS(2500), + [anon_sym_abstract] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_public] = ACTIONS(2500), + [anon_sym_private] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_inline] = ACTIONS(2500), + [anon_sym_overload] = ACTIONS(2500), + [anon_sym_override] = ACTIONS(2500), + [anon_sym_final] = ACTIONS(2500), + [anon_sym_class] = ACTIONS(2500), + [anon_sym_interface] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), + [anon_sym_typedef] = ACTIONS(2500), + [anon_sym_function] = ACTIONS(2500), + [anon_sym_var] = ACTIONS(2500), + [aux_sym_integer_token1] = ACTIONS(2500), + [aux_sym_integer_token2] = ACTIONS(2502), + [aux_sym_float_token1] = ACTIONS(2500), + [aux_sym_float_token2] = ACTIONS(2502), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [aux_sym_string_token1] = ACTIONS(2502), + [aux_sym_string_token3] = ACTIONS(2502), [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(2506), + [sym_identifier] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2506), + [anon_sym_package] = ACTIONS(2504), + [anon_sym_import] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2506), + [anon_sym_using] = ACTIONS(2504), + [anon_sym_throw] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_switch] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_cast] = ACTIONS(2504), + [anon_sym_DOLLARtype] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_untyped] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_this] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2504), + [anon_sym_AT_COLON] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_catch] = ACTIONS(2504), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2506), + [anon_sym_null] = ACTIONS(2504), + [anon_sym_macro] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_inline] = ACTIONS(2504), + [anon_sym_overload] = ACTIONS(2504), + [anon_sym_override] = ACTIONS(2504), + [anon_sym_final] = ACTIONS(2504), + [anon_sym_class] = ACTIONS(2504), + [anon_sym_interface] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [anon_sym_typedef] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_var] = ACTIONS(2504), + [aux_sym_integer_token1] = ACTIONS(2504), + [aux_sym_integer_token2] = ACTIONS(2506), + [aux_sym_float_token1] = ACTIONS(2504), + [aux_sym_float_token2] = ACTIONS(2506), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [aux_sym_string_token1] = ACTIONS(2506), + [aux_sym_string_token3] = ACTIONS(2506), [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(2072), + [sym_identifier] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_package] = ACTIONS(2070), + [anon_sym_import] = ACTIONS(2070), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_using] = ACTIONS(2070), + [anon_sym_throw] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_cast] = ACTIONS(2070), + [anon_sym_DOLLARtype] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_untyped] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_this] = ACTIONS(2070), + [anon_sym_AT] = ACTIONS(2070), + [anon_sym_AT_COLON] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2070), + [anon_sym_catch] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2070), + [anon_sym_TILDE] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_PLUS_PLUS] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_PERCENT] = ACTIONS(2072), + [anon_sym_SLASH] = ACTIONS(2070), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_LT_LT] = ACTIONS(2072), + [anon_sym_GT_GT] = ACTIONS(2070), + [anon_sym_GT_GT_GT] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_CARET] = ACTIONS(2072), + [anon_sym_AMP_AMP] = ACTIONS(2072), + [anon_sym_PIPE_PIPE] = ACTIONS(2072), + [anon_sym_EQ_EQ] = ACTIONS(2072), + [anon_sym_BANG_EQ] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_LT_EQ] = ACTIONS(2072), + [anon_sym_GT] = ACTIONS(2070), + [anon_sym_GT_EQ] = ACTIONS(2072), + [anon_sym_EQ_GT] = ACTIONS(2072), + [anon_sym_QMARK_QMARK] = ACTIONS(2072), + [anon_sym_EQ] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2072), + [anon_sym_null] = ACTIONS(2070), + [anon_sym_macro] = ACTIONS(2070), + [anon_sym_abstract] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_inline] = ACTIONS(2070), + [anon_sym_overload] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_final] = ACTIONS(2070), + [anon_sym_class] = ACTIONS(2070), + [anon_sym_interface] = ACTIONS(2070), + [anon_sym_enum] = ACTIONS(2070), + [anon_sym_typedef] = ACTIONS(2070), + [anon_sym_function] = ACTIONS(2070), + [anon_sym_var] = ACTIONS(2070), + [aux_sym_integer_token1] = ACTIONS(2070), + [aux_sym_integer_token2] = ACTIONS(2072), + [aux_sym_float_token1] = ACTIONS(2070), + [aux_sym_float_token2] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [aux_sym_string_token1] = ACTIONS(2072), + [aux_sym_string_token3] = ACTIONS(2072), + [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(2076), + [sym_identifier] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_package] = ACTIONS(2074), + [anon_sym_import] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_using] = ACTIONS(2074), + [anon_sym_throw] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_switch] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_cast] = ACTIONS(2074), + [anon_sym_DOLLARtype] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_untyped] = ACTIONS(2074), + [anon_sym_break] = ACTIONS(2074), + [anon_sym_continue] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_this] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2074), + [anon_sym_AT_COLON] = ACTIONS(2076), + [anon_sym_try] = ACTIONS(2074), + [anon_sym_catch] = ACTIONS(2074), + [anon_sym_else] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_new] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2076), + [anon_sym_PERCENT] = ACTIONS(2076), + [anon_sym_SLASH] = ACTIONS(2074), + [anon_sym_PLUS] = ACTIONS(2074), + [anon_sym_LT_LT] = ACTIONS(2076), + [anon_sym_GT_GT] = ACTIONS(2074), + [anon_sym_GT_GT_GT] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2076), + [anon_sym_PIPE_PIPE] = ACTIONS(2076), + [anon_sym_EQ_EQ] = ACTIONS(2076), + [anon_sym_BANG_EQ] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2074), + [anon_sym_LT_EQ] = ACTIONS(2076), + [anon_sym_GT] = ACTIONS(2074), + [anon_sym_GT_EQ] = ACTIONS(2076), + [anon_sym_EQ_GT] = ACTIONS(2076), + [anon_sym_QMARK_QMARK] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(2074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2074), + [anon_sym_macro] = ACTIONS(2074), + [anon_sym_abstract] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_public] = ACTIONS(2074), + [anon_sym_private] = ACTIONS(2074), + [anon_sym_extern] = ACTIONS(2074), + [anon_sym_inline] = ACTIONS(2074), + [anon_sym_overload] = ACTIONS(2074), + [anon_sym_override] = ACTIONS(2074), + [anon_sym_final] = ACTIONS(2074), + [anon_sym_class] = ACTIONS(2074), + [anon_sym_interface] = ACTIONS(2074), + [anon_sym_enum] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2074), + [anon_sym_function] = ACTIONS(2074), + [anon_sym_var] = ACTIONS(2074), + [aux_sym_integer_token1] = ACTIONS(2074), + [aux_sym_integer_token2] = ACTIONS(2076), + [aux_sym_float_token1] = ACTIONS(2074), + [aux_sym_float_token2] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [aux_sym_string_token1] = ACTIONS(2076), + [aux_sym_string_token3] = ACTIONS(2076), [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), + [sym_else_clause] = STATE(491), + [sym_identifier] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_package] = ACTIONS(1972), + [anon_sym_import] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [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_for] = ACTIONS(1972), + [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_try] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__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(2510), + [sym_identifier] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2510), + [anon_sym_package] = ACTIONS(2508), + [anon_sym_import] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_using] = ACTIONS(2508), + [anon_sym_throw] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_cast] = ACTIONS(2508), + [anon_sym_DOLLARtype] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_untyped] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_this] = ACTIONS(2508), + [anon_sym_AT] = ACTIONS(2508), + [anon_sym_AT_COLON] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2508), + [anon_sym_catch] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_new] = ACTIONS(2508), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_EQ_GT] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_EQ] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2508), + [anon_sym_macro] = ACTIONS(2508), + [anon_sym_abstract] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_public] = ACTIONS(2508), + [anon_sym_private] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_inline] = ACTIONS(2508), + [anon_sym_overload] = ACTIONS(2508), + [anon_sym_override] = ACTIONS(2508), + [anon_sym_final] = ACTIONS(2508), + [anon_sym_class] = ACTIONS(2508), + [anon_sym_interface] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2508), + [anon_sym_function] = ACTIONS(2508), + [anon_sym_var] = ACTIONS(2508), + [aux_sym_integer_token1] = ACTIONS(2508), + [aux_sym_integer_token2] = ACTIONS(2510), + [aux_sym_float_token1] = ACTIONS(2508), + [aux_sym_float_token2] = ACTIONS(2510), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [aux_sym_string_token1] = ACTIONS(2510), + [aux_sym_string_token3] = ACTIONS(2510), + [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(2080), + [sym_identifier] = ACTIONS(2078), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_package] = ACTIONS(2078), + [anon_sym_import] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_using] = ACTIONS(2078), + [anon_sym_throw] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_cast] = ACTIONS(2078), + [anon_sym_DOLLARtype] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_untyped] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_this] = ACTIONS(2078), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_AT_COLON] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2078), + [anon_sym_catch] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_do] = ACTIONS(2078), + [anon_sym_new] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_PLUS_PLUS] = ACTIONS(2080), + [anon_sym_DASH_DASH] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(2080), + [anon_sym_SLASH] = ACTIONS(2078), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_LT_LT] = ACTIONS(2080), + [anon_sym_GT_GT] = ACTIONS(2078), + [anon_sym_GT_GT_GT] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_AMP_AMP] = ACTIONS(2080), + [anon_sym_PIPE_PIPE] = ACTIONS(2080), + [anon_sym_EQ_EQ] = ACTIONS(2080), + [anon_sym_BANG_EQ] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_LT_EQ] = ACTIONS(2080), + [anon_sym_GT] = ACTIONS(2078), + [anon_sym_GT_EQ] = ACTIONS(2080), + [anon_sym_EQ_GT] = ACTIONS(2080), + [anon_sym_QMARK_QMARK] = ACTIONS(2080), + [anon_sym_EQ] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2080), + [anon_sym_null] = ACTIONS(2078), + [anon_sym_macro] = ACTIONS(2078), + [anon_sym_abstract] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2078), + [anon_sym_public] = ACTIONS(2078), + [anon_sym_private] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_inline] = ACTIONS(2078), + [anon_sym_overload] = ACTIONS(2078), + [anon_sym_override] = ACTIONS(2078), + [anon_sym_final] = ACTIONS(2078), + [anon_sym_class] = ACTIONS(2078), + [anon_sym_interface] = ACTIONS(2078), + [anon_sym_enum] = ACTIONS(2078), + [anon_sym_typedef] = ACTIONS(2078), + [anon_sym_function] = ACTIONS(2078), + [anon_sym_var] = ACTIONS(2078), + [aux_sym_integer_token1] = ACTIONS(2078), + [aux_sym_integer_token2] = ACTIONS(2080), + [aux_sym_float_token1] = ACTIONS(2078), + [aux_sym_float_token2] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [aux_sym_string_token1] = ACTIONS(2080), + [aux_sym_string_token3] = ACTIONS(2080), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [706] = { + [ts_builtin_sym_end] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_package] = ACTIONS(2082), + [anon_sym_import] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_using] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_cast] = ACTIONS(2082), + [anon_sym_DOLLARtype] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_untyped] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_this] = ACTIONS(2082), + [anon_sym_AT] = ACTIONS(2082), + [anon_sym_AT_COLON] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_catch] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_do] = ACTIONS(2082), + [anon_sym_new] = ACTIONS(2082), + [anon_sym_TILDE] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2082), + [anon_sym_PLUS_PLUS] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2084), + [anon_sym_PERCENT] = ACTIONS(2084), + [anon_sym_SLASH] = ACTIONS(2082), + [anon_sym_PLUS] = ACTIONS(2082), + [anon_sym_LT_LT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(2082), + [anon_sym_GT_GT_GT] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_CARET] = ACTIONS(2084), + [anon_sym_AMP_AMP] = ACTIONS(2084), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_EQ_EQ] = ACTIONS(2084), + [anon_sym_BANG_EQ] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2082), + [anon_sym_LT_EQ] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2082), + [anon_sym_GT_EQ] = ACTIONS(2084), + [anon_sym_EQ_GT] = ACTIONS(2084), + [anon_sym_QMARK_QMARK] = ACTIONS(2084), + [anon_sym_EQ] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2084), + [anon_sym_null] = ACTIONS(2082), + [anon_sym_macro] = ACTIONS(2082), + [anon_sym_abstract] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_public] = ACTIONS(2082), + [anon_sym_private] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_inline] = ACTIONS(2082), + [anon_sym_overload] = ACTIONS(2082), + [anon_sym_override] = ACTIONS(2082), + [anon_sym_final] = ACTIONS(2082), + [anon_sym_class] = ACTIONS(2082), + [anon_sym_interface] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_typedef] = ACTIONS(2082), + [anon_sym_function] = ACTIONS(2082), + [anon_sym_var] = ACTIONS(2082), + [aux_sym_integer_token1] = ACTIONS(2082), + [aux_sym_integer_token2] = ACTIONS(2084), + [aux_sym_float_token1] = ACTIONS(2082), + [aux_sym_float_token2] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2082), + [anon_sym_false] = ACTIONS(2082), + [aux_sym_string_token1] = ACTIONS(2084), + [aux_sym_string_token3] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [707] = { + [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_STAR] = ACTIONS(2310), + [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_for] = ACTIONS(2308), + [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_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 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, - 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, + [708] = { + [ts_builtin_sym_end] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_package] = ACTIONS(2086), + [anon_sym_import] = ACTIONS(2086), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_using] = ACTIONS(2086), + [anon_sym_throw] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_cast] = ACTIONS(2086), + [anon_sym_DOLLARtype] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_untyped] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_this] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2086), + [anon_sym_AT_COLON] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2086), + [anon_sym_catch] = ACTIONS(2086), + [anon_sym_else] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_do] = ACTIONS(2086), + [anon_sym_new] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2088), + [anon_sym_PERCENT] = ACTIONS(2088), + [anon_sym_SLASH] = ACTIONS(2086), + [anon_sym_PLUS] = ACTIONS(2086), + [anon_sym_LT_LT] = ACTIONS(2088), + [anon_sym_GT_GT] = ACTIONS(2086), + [anon_sym_GT_GT_GT] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2088), + [anon_sym_AMP_AMP] = ACTIONS(2088), + [anon_sym_PIPE_PIPE] = ACTIONS(2088), + [anon_sym_EQ_EQ] = ACTIONS(2088), + [anon_sym_BANG_EQ] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_LT_EQ] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2086), + [anon_sym_GT_EQ] = ACTIONS(2088), + [anon_sym_EQ_GT] = ACTIONS(2088), + [anon_sym_QMARK_QMARK] = ACTIONS(2088), + [anon_sym_EQ] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2088), + [anon_sym_null] = ACTIONS(2086), + [anon_sym_macro] = ACTIONS(2086), + [anon_sym_abstract] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2086), + [anon_sym_public] = ACTIONS(2086), + [anon_sym_private] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_inline] = ACTIONS(2086), + [anon_sym_overload] = ACTIONS(2086), + [anon_sym_override] = ACTIONS(2086), + [anon_sym_final] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2086), + [anon_sym_interface] = ACTIONS(2086), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2086), + [anon_sym_function] = ACTIONS(2086), + [anon_sym_var] = ACTIONS(2086), + [aux_sym_integer_token1] = ACTIONS(2086), + [aux_sym_integer_token2] = ACTIONS(2088), + [aux_sym_float_token1] = ACTIONS(2086), + [aux_sym_float_token2] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [aux_sym_string_token1] = ACTIONS(2088), + [aux_sym_string_token3] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [709] = { + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2514), + [anon_sym_package] = ACTIONS(2512), + [anon_sym_import] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_using] = ACTIONS(2512), + [anon_sym_throw] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_cast] = ACTIONS(2512), + [anon_sym_DOLLARtype] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_untyped] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_this] = ACTIONS(2512), + [anon_sym_AT] = ACTIONS(2512), + [anon_sym_AT_COLON] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_catch] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_EQ_GT] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_EQ] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2512), + [anon_sym_macro] = ACTIONS(2512), + [anon_sym_abstract] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_public] = ACTIONS(2512), + [anon_sym_private] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_inline] = ACTIONS(2512), + [anon_sym_overload] = ACTIONS(2512), + [anon_sym_override] = ACTIONS(2512), + [anon_sym_final] = ACTIONS(2512), + [anon_sym_class] = ACTIONS(2512), + [anon_sym_interface] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2512), + [anon_sym_function] = ACTIONS(2512), + [anon_sym_var] = ACTIONS(2512), + [aux_sym_integer_token1] = ACTIONS(2512), + [aux_sym_integer_token2] = ACTIONS(2514), + [aux_sym_float_token1] = ACTIONS(2512), + [aux_sym_float_token2] = ACTIONS(2514), + [anon_sym_true] = ACTIONS(2512), + [anon_sym_false] = ACTIONS(2512), + [aux_sym_string_token1] = ACTIONS(2514), + [aux_sym_string_token3] = ACTIONS(2514), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [710] = { + [ts_builtin_sym_end] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2090), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_package] = ACTIONS(2090), + [anon_sym_import] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_using] = ACTIONS(2090), + [anon_sym_throw] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_switch] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_cast] = ACTIONS(2090), + [anon_sym_DOLLARtype] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_untyped] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_this] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2090), + [anon_sym_AT_COLON] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2092), + [anon_sym_DASH_DASH] = ACTIONS(2092), + [anon_sym_PERCENT] = ACTIONS(2092), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(2092), + [anon_sym_GT_GT] = ACTIONS(2090), + [anon_sym_GT_GT_GT] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2092), + [anon_sym_AMP_AMP] = ACTIONS(2092), + [anon_sym_PIPE_PIPE] = ACTIONS(2092), + [anon_sym_EQ_EQ] = ACTIONS(2092), + [anon_sym_BANG_EQ] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_LT_EQ] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2090), + [anon_sym_GT_EQ] = ACTIONS(2092), + [anon_sym_EQ_GT] = ACTIONS(2092), + [anon_sym_QMARK_QMARK] = ACTIONS(2092), + [anon_sym_EQ] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2092), + [anon_sym_null] = ACTIONS(2090), + [anon_sym_macro] = ACTIONS(2090), + [anon_sym_abstract] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_public] = ACTIONS(2090), + [anon_sym_private] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_inline] = ACTIONS(2090), + [anon_sym_overload] = ACTIONS(2090), + [anon_sym_override] = ACTIONS(2090), + [anon_sym_final] = ACTIONS(2090), + [anon_sym_class] = ACTIONS(2090), + [anon_sym_interface] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2090), + [anon_sym_function] = ACTIONS(2090), + [anon_sym_var] = ACTIONS(2090), + [aux_sym_integer_token1] = ACTIONS(2090), + [aux_sym_integer_token2] = ACTIONS(2092), + [aux_sym_float_token1] = ACTIONS(2090), + [aux_sym_float_token2] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2090), + [anon_sym_false] = ACTIONS(2090), + [aux_sym_string_token1] = ACTIONS(2092), + [aux_sym_string_token3] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [711] = { + [ts_builtin_sym_end] = ACTIONS(2096), + [sym_identifier] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(2096), + [anon_sym_package] = ACTIONS(2094), + [anon_sym_import] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_using] = ACTIONS(2094), + [anon_sym_throw] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_cast] = ACTIONS(2094), + [anon_sym_DOLLARtype] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_untyped] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_this] = ACTIONS(2094), + [anon_sym_AT] = ACTIONS(2094), + [anon_sym_AT_COLON] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2094), + [anon_sym_catch] = ACTIONS(2094), + [anon_sym_else] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_new] = ACTIONS(2094), + [anon_sym_TILDE] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_PERCENT] = ACTIONS(2096), + [anon_sym_SLASH] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2094), + [anon_sym_LT_LT] = ACTIONS(2096), + [anon_sym_GT_GT] = ACTIONS(2094), + [anon_sym_GT_GT_GT] = ACTIONS(2096), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_CARET] = ACTIONS(2096), + [anon_sym_AMP_AMP] = ACTIONS(2096), + [anon_sym_PIPE_PIPE] = ACTIONS(2096), + [anon_sym_EQ_EQ] = ACTIONS(2096), + [anon_sym_BANG_EQ] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_LT_EQ] = ACTIONS(2096), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_EQ] = ACTIONS(2096), + [anon_sym_EQ_GT] = ACTIONS(2096), + [anon_sym_QMARK_QMARK] = ACTIONS(2096), + [anon_sym_EQ] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2096), + [anon_sym_null] = ACTIONS(2094), + [anon_sym_macro] = ACTIONS(2094), + [anon_sym_abstract] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_public] = ACTIONS(2094), + [anon_sym_private] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_inline] = ACTIONS(2094), + [anon_sym_overload] = ACTIONS(2094), + [anon_sym_override] = ACTIONS(2094), + [anon_sym_final] = ACTIONS(2094), + [anon_sym_class] = ACTIONS(2094), + [anon_sym_interface] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + [anon_sym_typedef] = ACTIONS(2094), + [anon_sym_function] = ACTIONS(2094), + [anon_sym_var] = ACTIONS(2094), + [aux_sym_integer_token1] = ACTIONS(2094), + [aux_sym_integer_token2] = ACTIONS(2096), + [aux_sym_float_token1] = ACTIONS(2094), + [aux_sym_float_token2] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2094), + [anon_sym_false] = ACTIONS(2094), + [aux_sym_string_token1] = ACTIONS(2096), + [aux_sym_string_token3] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [712] = { + [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_STAR] = ACTIONS(2338), + [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_for] = ACTIONS(2336), + [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_try] = ACTIONS(2336), + [anon_sym_catch] = ACTIONS(2336), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [713] = { + [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_STAR] = ACTIONS(2346), + [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_for] = ACTIONS(2344), + [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_try] = ACTIONS(2344), + [anon_sym_catch] = ACTIONS(2344), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [714] = { + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2380), + [anon_sym_POUND] = ACTIONS(2382), + [anon_sym_package] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_cast] = ACTIONS(2380), + [anon_sym_DOLLARtype] = ACTIONS(2382), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_untyped] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_this] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_AT_COLON] = ACTIONS(2382), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_catch] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2382), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_GT_GT_GT] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP_AMP] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2382), + [anon_sym_BANG_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2382), + [anon_sym_EQ_GT] = ACTIONS(2382), + [anon_sym_QMARK_QMARK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2382), + [anon_sym_null] = ACTIONS(2380), + [anon_sym_macro] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_extern] = ACTIONS(2380), + [anon_sym_inline] = ACTIONS(2380), + [anon_sym_overload] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_final] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [anon_sym_typedef] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [aux_sym_integer_token1] = ACTIONS(2380), + [aux_sym_integer_token2] = ACTIONS(2382), + [aux_sym_float_token1] = ACTIONS(2380), + [aux_sym_float_token2] = ACTIONS(2382), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [aux_sym_string_token1] = ACTIONS(2382), + [aux_sym_string_token3] = ACTIONS(2382), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [715] = { + [ts_builtin_sym_end] = ACTIONS(2108), + [sym_identifier] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_package] = ACTIONS(2106), + [anon_sym_import] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2106), + [anon_sym_throw] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_cast] = ACTIONS(2106), + [anon_sym_DOLLARtype] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_untyped] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_this] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2106), + [anon_sym_AT_COLON] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2106), + [anon_sym_catch] = ACTIONS(2106), + [anon_sym_else] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_do] = ACTIONS(2106), + [anon_sym_new] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2108), + [anon_sym_PERCENT] = ACTIONS(2108), + [anon_sym_SLASH] = ACTIONS(2106), + [anon_sym_PLUS] = ACTIONS(2106), + [anon_sym_LT_LT] = ACTIONS(2108), + [anon_sym_GT_GT] = ACTIONS(2106), + [anon_sym_GT_GT_GT] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2108), + [anon_sym_AMP_AMP] = ACTIONS(2108), + [anon_sym_PIPE_PIPE] = ACTIONS(2108), + [anon_sym_EQ_EQ] = ACTIONS(2108), + [anon_sym_BANG_EQ] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_LT_EQ] = ACTIONS(2108), + [anon_sym_GT] = ACTIONS(2106), + [anon_sym_GT_EQ] = ACTIONS(2108), + [anon_sym_EQ_GT] = ACTIONS(2108), + [anon_sym_QMARK_QMARK] = ACTIONS(2108), + [anon_sym_EQ] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2108), + [anon_sym_null] = ACTIONS(2106), + [anon_sym_macro] = ACTIONS(2106), + [anon_sym_abstract] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_public] = ACTIONS(2106), + [anon_sym_private] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_inline] = ACTIONS(2106), + [anon_sym_overload] = ACTIONS(2106), + [anon_sym_override] = ACTIONS(2106), + [anon_sym_final] = ACTIONS(2106), + [anon_sym_class] = ACTIONS(2106), + [anon_sym_interface] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2106), + [anon_sym_function] = ACTIONS(2106), + [anon_sym_var] = ACTIONS(2106), + [aux_sym_integer_token1] = ACTIONS(2106), + [aux_sym_integer_token2] = ACTIONS(2108), + [aux_sym_float_token1] = ACTIONS(2106), + [aux_sym_float_token2] = ACTIONS(2108), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [aux_sym_string_token1] = ACTIONS(2108), + [aux_sym_string_token3] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [716] = { + [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_STAR] = ACTIONS(2314), + [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_for] = ACTIONS(2312), + [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_try] = ACTIONS(2312), + [anon_sym_catch] = ACTIONS(2312), + [anon_sym_else] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [717] = { + [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_STAR] = ACTIONS(2318), + [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_for] = ACTIONS(2316), + [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_try] = ACTIONS(2316), + [anon_sym_catch] = ACTIONS(2316), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [718] = { + [ts_builtin_sym_end] = ACTIONS(2322), + [sym_identifier] = ACTIONS(2320), + [anon_sym_POUND] = ACTIONS(2322), + [anon_sym_package] = ACTIONS(2320), + [anon_sym_import] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2322), + [anon_sym_using] = ACTIONS(2320), + [anon_sym_throw] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_switch] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2322), + [anon_sym_cast] = ACTIONS(2320), + [anon_sym_DOLLARtype] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2320), + [anon_sym_return] = ACTIONS(2320), + [anon_sym_untyped] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2322), + [anon_sym_this] = ACTIONS(2320), + [anon_sym_AT] = ACTIONS(2320), + [anon_sym_AT_COLON] = ACTIONS(2322), + [anon_sym_try] = ACTIONS(2320), + [anon_sym_catch] = ACTIONS(2320), + [anon_sym_else] = ACTIONS(2320), + [anon_sym_if] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_do] = ACTIONS(2320), + [anon_sym_new] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2322), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2322), + [anon_sym_DASH_DASH] = ACTIONS(2322), + [anon_sym_PERCENT] = ACTIONS(2322), + [anon_sym_SLASH] = ACTIONS(2320), + [anon_sym_PLUS] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2322), + [anon_sym_GT_GT] = ACTIONS(2320), + [anon_sym_GT_GT_GT] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2320), + [anon_sym_CARET] = ACTIONS(2322), + [anon_sym_AMP_AMP] = ACTIONS(2322), + [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [anon_sym_EQ_EQ] = ACTIONS(2322), + [anon_sym_BANG_EQ] = ACTIONS(2322), + [anon_sym_LT] = ACTIONS(2320), + [anon_sym_LT_EQ] = ACTIONS(2322), + [anon_sym_GT] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2322), + [anon_sym_EQ_GT] = ACTIONS(2322), + [anon_sym_QMARK_QMARK] = ACTIONS(2322), + [anon_sym_EQ] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_null] = ACTIONS(2320), + [anon_sym_macro] = ACTIONS(2320), + [anon_sym_abstract] = ACTIONS(2320), + [anon_sym_static] = ACTIONS(2320), + [anon_sym_public] = ACTIONS(2320), + [anon_sym_private] = ACTIONS(2320), + [anon_sym_extern] = ACTIONS(2320), + [anon_sym_inline] = ACTIONS(2320), + [anon_sym_overload] = ACTIONS(2320), + [anon_sym_override] = ACTIONS(2320), + [anon_sym_final] = ACTIONS(2320), + [anon_sym_class] = ACTIONS(2320), + [anon_sym_interface] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2320), + [anon_sym_typedef] = ACTIONS(2320), + [anon_sym_function] = ACTIONS(2320), + [anon_sym_var] = ACTIONS(2320), + [aux_sym_integer_token1] = ACTIONS(2320), + [aux_sym_integer_token2] = ACTIONS(2322), + [aux_sym_float_token1] = ACTIONS(2320), + [aux_sym_float_token2] = ACTIONS(2322), + [anon_sym_true] = ACTIONS(2320), + [anon_sym_false] = ACTIONS(2320), + [aux_sym_string_token1] = ACTIONS(2322), + [aux_sym_string_token3] = ACTIONS(2322), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [719] = { + [ts_builtin_sym_end] = ACTIONS(2112), + [sym_identifier] = ACTIONS(2110), + [anon_sym_POUND] = ACTIONS(2112), + [anon_sym_package] = ACTIONS(2110), + [anon_sym_import] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_using] = ACTIONS(2110), + [anon_sym_throw] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_cast] = ACTIONS(2110), + [anon_sym_DOLLARtype] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_untyped] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_this] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_AT_COLON] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_catch] = ACTIONS(2110), + [anon_sym_else] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_do] = ACTIONS(2110), + [anon_sym_new] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2112), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2112), + [anon_sym_PERCENT] = ACTIONS(2112), + [anon_sym_SLASH] = ACTIONS(2110), + [anon_sym_PLUS] = ACTIONS(2110), + [anon_sym_LT_LT] = ACTIONS(2112), + [anon_sym_GT_GT] = ACTIONS(2110), + [anon_sym_GT_GT_GT] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2112), + [anon_sym_AMP_AMP] = ACTIONS(2112), + [anon_sym_PIPE_PIPE] = ACTIONS(2112), + [anon_sym_EQ_EQ] = ACTIONS(2112), + [anon_sym_BANG_EQ] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_LT_EQ] = ACTIONS(2112), + [anon_sym_GT] = ACTIONS(2110), + [anon_sym_GT_EQ] = ACTIONS(2112), + [anon_sym_EQ_GT] = ACTIONS(2112), + [anon_sym_QMARK_QMARK] = ACTIONS(2112), + [anon_sym_EQ] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2112), + [anon_sym_null] = ACTIONS(2110), + [anon_sym_macro] = ACTIONS(2110), + [anon_sym_abstract] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_inline] = ACTIONS(2110), + [anon_sym_overload] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_final] = ACTIONS(2110), + [anon_sym_class] = ACTIONS(2110), + [anon_sym_interface] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2110), + [anon_sym_function] = ACTIONS(2110), + [anon_sym_var] = ACTIONS(2110), + [aux_sym_integer_token1] = ACTIONS(2110), + [aux_sym_integer_token2] = ACTIONS(2112), + [aux_sym_float_token1] = ACTIONS(2110), + [aux_sym_float_token2] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [aux_sym_string_token1] = ACTIONS(2112), + [aux_sym_string_token3] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [720] = { + [ts_builtin_sym_end] = ACTIONS(2116), + [sym_identifier] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(2116), + [anon_sym_package] = ACTIONS(2114), + [anon_sym_import] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2116), + [anon_sym_using] = ACTIONS(2114), + [anon_sym_throw] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_cast] = ACTIONS(2114), + [anon_sym_DOLLARtype] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_untyped] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_this] = ACTIONS(2114), + [anon_sym_AT] = ACTIONS(2114), + [anon_sym_AT_COLON] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2114), + [anon_sym_catch] = ACTIONS(2114), + [anon_sym_else] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_new] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2116), + [anon_sym_PERCENT] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2114), + [anon_sym_PLUS] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(2116), + [anon_sym_GT_GT] = ACTIONS(2114), + [anon_sym_GT_GT_GT] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2116), + [anon_sym_PIPE_PIPE] = ACTIONS(2116), + [anon_sym_EQ_EQ] = ACTIONS(2116), + [anon_sym_BANG_EQ] = ACTIONS(2116), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_LT_EQ] = ACTIONS(2116), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2116), + [anon_sym_EQ_GT] = ACTIONS(2116), + [anon_sym_QMARK_QMARK] = ACTIONS(2116), + [anon_sym_EQ] = ACTIONS(2114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2116), + [anon_sym_null] = ACTIONS(2114), + [anon_sym_macro] = ACTIONS(2114), + [anon_sym_abstract] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_public] = ACTIONS(2114), + [anon_sym_private] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_inline] = ACTIONS(2114), + [anon_sym_overload] = ACTIONS(2114), + [anon_sym_override] = ACTIONS(2114), + [anon_sym_final] = ACTIONS(2114), + [anon_sym_class] = ACTIONS(2114), + [anon_sym_interface] = ACTIONS(2114), + [anon_sym_enum] = ACTIONS(2114), + [anon_sym_typedef] = ACTIONS(2114), + [anon_sym_function] = ACTIONS(2114), + [anon_sym_var] = ACTIONS(2114), + [aux_sym_integer_token1] = ACTIONS(2114), + [aux_sym_integer_token2] = ACTIONS(2116), + [aux_sym_float_token1] = ACTIONS(2114), + [aux_sym_float_token2] = ACTIONS(2116), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [aux_sym_string_token1] = ACTIONS(2116), + [aux_sym_string_token3] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [721] = { + [ts_builtin_sym_end] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(2120), + [anon_sym_package] = ACTIONS(2118), + [anon_sym_import] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_using] = ACTIONS(2118), + [anon_sym_throw] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_cast] = ACTIONS(2118), + [anon_sym_DOLLARtype] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_untyped] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_this] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2118), + [anon_sym_AT_COLON] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_catch] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_new] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [anon_sym_PERCENT] = ACTIONS(2120), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_PLUS] = ACTIONS(2118), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(2118), + [anon_sym_GT_GT_GT] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_EQ_EQ] = ACTIONS(2120), + [anon_sym_BANG_EQ] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_LT_EQ] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2118), + [anon_sym_GT_EQ] = ACTIONS(2120), + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_QMARK_QMARK] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2120), + [anon_sym_null] = ACTIONS(2118), + [anon_sym_macro] = ACTIONS(2118), + [anon_sym_abstract] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_public] = ACTIONS(2118), + [anon_sym_private] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_inline] = ACTIONS(2118), + [anon_sym_overload] = ACTIONS(2118), + [anon_sym_override] = ACTIONS(2118), + [anon_sym_final] = ACTIONS(2118), + [anon_sym_class] = ACTIONS(2118), + [anon_sym_interface] = ACTIONS(2118), + [anon_sym_enum] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2118), + [anon_sym_function] = ACTIONS(2118), + [anon_sym_var] = ACTIONS(2118), + [aux_sym_integer_token1] = ACTIONS(2118), + [aux_sym_integer_token2] = ACTIONS(2120), + [aux_sym_float_token1] = ACTIONS(2118), + [aux_sym_float_token2] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2118), + [anon_sym_false] = ACTIONS(2118), + [aux_sym_string_token1] = ACTIONS(2120), + [aux_sym_string_token3] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [722] = { + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(2398), + [anon_sym_package] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_cast] = ACTIONS(2396), + [anon_sym_DOLLARtype] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_untyped] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_this] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_AT_COLON] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_catch] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(2398), + [anon_sym_QMARK_QMARK] = ACTIONS(2398), + [anon_sym_EQ] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [anon_sym_null] = ACTIONS(2396), + [anon_sym_macro] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym_inline] = ACTIONS(2396), + [anon_sym_overload] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_final] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_typedef] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [aux_sym_integer_token1] = ACTIONS(2396), + [aux_sym_integer_token2] = ACTIONS(2398), + [aux_sym_float_token1] = ACTIONS(2396), + [aux_sym_float_token2] = ACTIONS(2398), + [anon_sym_true] = ACTIONS(2396), + [anon_sym_false] = ACTIONS(2396), + [aux_sym_string_token1] = ACTIONS(2398), + [aux_sym_string_token3] = ACTIONS(2398), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(2124), + [sym_identifier] = ACTIONS(2122), + [anon_sym_POUND] = ACTIONS(2124), + [anon_sym_package] = ACTIONS(2122), + [anon_sym_import] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_using] = ACTIONS(2122), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_cast] = ACTIONS(2122), + [anon_sym_DOLLARtype] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_untyped] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_this] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_AT_COLON] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_catch] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(2124), + [anon_sym_SLASH] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2122), + [anon_sym_LT_LT] = ACTIONS(2124), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_GT_GT_GT] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_AMP_AMP] = ACTIONS(2124), + [anon_sym_PIPE_PIPE] = ACTIONS(2124), + [anon_sym_EQ_EQ] = ACTIONS(2124), + [anon_sym_BANG_EQ] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_LT_EQ] = ACTIONS(2124), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_GT_EQ] = ACTIONS(2124), + [anon_sym_EQ_GT] = ACTIONS(2124), + [anon_sym_QMARK_QMARK] = ACTIONS(2124), + [anon_sym_EQ] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2124), + [anon_sym_null] = ACTIONS(2122), + [anon_sym_macro] = ACTIONS(2122), + [anon_sym_abstract] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_inline] = ACTIONS(2122), + [anon_sym_overload] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_final] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_interface] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_typedef] = ACTIONS(2122), + [anon_sym_function] = ACTIONS(2122), + [anon_sym_var] = ACTIONS(2122), + [aux_sym_integer_token1] = ACTIONS(2122), + [aux_sym_integer_token2] = ACTIONS(2124), + [aux_sym_float_token1] = ACTIONS(2122), + [aux_sym_float_token2] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [aux_sym_string_token1] = ACTIONS(2124), + [aux_sym_string_token3] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [724] = { + [ts_builtin_sym_end] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_package] = ACTIONS(2400), + [anon_sym_import] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2400), + [anon_sym_throw] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_cast] = ACTIONS(2400), + [anon_sym_DOLLARtype] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_untyped] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_this] = ACTIONS(2400), + [anon_sym_AT] = ACTIONS(2400), + [anon_sym_AT_COLON] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_catch] = ACTIONS(2400), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_PERCENT] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_LT_LT] = ACTIONS(2402), + [anon_sym_GT_GT] = ACTIONS(2400), + [anon_sym_GT_GT_GT] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_EQ_EQ] = ACTIONS(2402), + [anon_sym_BANG_EQ] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2400), + [anon_sym_LT_EQ] = ACTIONS(2402), + [anon_sym_GT] = ACTIONS(2400), + [anon_sym_GT_EQ] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(2402), + [anon_sym_QMARK_QMARK] = ACTIONS(2402), + [anon_sym_EQ] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2400), + [anon_sym_macro] = ACTIONS(2400), + [anon_sym_abstract] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym_overload] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_final] = ACTIONS(2400), + [anon_sym_class] = ACTIONS(2400), + [anon_sym_interface] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_typedef] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2400), + [anon_sym_var] = ACTIONS(2400), + [aux_sym_integer_token1] = ACTIONS(2400), + [aux_sym_integer_token2] = ACTIONS(2402), + [aux_sym_float_token1] = ACTIONS(2400), + [aux_sym_float_token2] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2400), + [anon_sym_false] = ACTIONS(2400), + [aux_sym_string_token1] = ACTIONS(2402), + [aux_sym_string_token3] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2126), + [anon_sym_POUND] = ACTIONS(2128), + [anon_sym_package] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2128), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_cast] = ACTIONS(2126), + [anon_sym_DOLLARtype] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_untyped] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_this] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_AT_COLON] = ACTIONS(2128), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_catch] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2128), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2128), + [anon_sym_PERCENT] = ACTIONS(2128), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2128), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2128), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2128), + [anon_sym_AMP_AMP] = ACTIONS(2128), + [anon_sym_PIPE_PIPE] = ACTIONS(2128), + [anon_sym_EQ_EQ] = ACTIONS(2128), + [anon_sym_BANG_EQ] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2128), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2128), + [anon_sym_EQ_GT] = ACTIONS(2128), + [anon_sym_QMARK_QMARK] = ACTIONS(2128), + [anon_sym_EQ] = ACTIONS(2126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2128), + [anon_sym_null] = ACTIONS(2126), + [anon_sym_macro] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_inline] = ACTIONS(2126), + [anon_sym_overload] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_final] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [anon_sym_typedef] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [aux_sym_integer_token1] = ACTIONS(2126), + [aux_sym_integer_token2] = ACTIONS(2128), + [aux_sym_float_token1] = ACTIONS(2126), + [aux_sym_float_token2] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [aux_sym_string_token1] = ACTIONS(2128), + [aux_sym_string_token3] = ACTIONS(2128), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [726] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2518), + [anon_sym_package] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_cast] = ACTIONS(2516), + [anon_sym_DOLLARtype] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_untyped] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_this] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2516), + [anon_sym_AT_COLON] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_catch] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_EQ_GT] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_EQ] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_null] = ACTIONS(2516), + [anon_sym_macro] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_inline] = ACTIONS(2516), + [anon_sym_overload] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_final] = ACTIONS(2516), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_typedef] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [aux_sym_integer_token1] = ACTIONS(2516), + [aux_sym_integer_token2] = ACTIONS(2518), + [aux_sym_float_token1] = ACTIONS(2516), + [aux_sym_float_token2] = ACTIONS(2518), + [anon_sym_true] = ACTIONS(2516), + [anon_sym_false] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [aux_sym_string_token3] = ACTIONS(2518), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [727] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_package] = ACTIONS(2520), + [anon_sym_import] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_using] = ACTIONS(2520), + [anon_sym_throw] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_cast] = ACTIONS(2520), + [anon_sym_DOLLARtype] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_untyped] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_this] = ACTIONS(2520), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_AT_COLON] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_catch] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_EQ_GT] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_EQ] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2522), + [anon_sym_null] = ACTIONS(2520), + [anon_sym_macro] = ACTIONS(2520), + [anon_sym_abstract] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_public] = ACTIONS(2520), + [anon_sym_private] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym_overload] = ACTIONS(2520), + [anon_sym_override] = ACTIONS(2520), + [anon_sym_final] = ACTIONS(2520), + [anon_sym_class] = ACTIONS(2520), + [anon_sym_interface] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2520), + [anon_sym_var] = ACTIONS(2520), + [aux_sym_integer_token1] = ACTIONS(2520), + [aux_sym_integer_token2] = ACTIONS(2522), + [aux_sym_float_token1] = ACTIONS(2520), + [aux_sym_float_token2] = ACTIONS(2522), + [anon_sym_true] = ACTIONS(2520), + [anon_sym_false] = ACTIONS(2520), + [aux_sym_string_token1] = ACTIONS(2522), + [aux_sym_string_token3] = ACTIONS(2522), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [728] = { + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2130), + [anon_sym_import] = ACTIONS(2130), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_using] = ACTIONS(2130), + [anon_sym_throw] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_cast] = ACTIONS(2130), + [anon_sym_DOLLARtype] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_untyped] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_this] = ACTIONS(2130), + [anon_sym_AT] = ACTIONS(2130), + [anon_sym_AT_COLON] = ACTIONS(2132), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_catch] = ACTIONS(2130), + [anon_sym_else] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_TILDE] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2130), + [anon_sym_PLUS_PLUS] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2132), + [anon_sym_PERCENT] = ACTIONS(2132), + [anon_sym_SLASH] = ACTIONS(2130), + [anon_sym_PLUS] = ACTIONS(2130), + [anon_sym_LT_LT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(2130), + [anon_sym_GT_GT_GT] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_EQ_EQ] = ACTIONS(2132), + [anon_sym_BANG_EQ] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_LT_EQ] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_EQ] = ACTIONS(2132), + [anon_sym_EQ_GT] = ACTIONS(2132), + [anon_sym_QMARK_QMARK] = ACTIONS(2132), + [anon_sym_EQ] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2132), + [anon_sym_null] = ACTIONS(2130), + [anon_sym_macro] = ACTIONS(2130), + [anon_sym_abstract] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2130), + [anon_sym_public] = ACTIONS(2130), + [anon_sym_private] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_inline] = ACTIONS(2130), + [anon_sym_overload] = ACTIONS(2130), + [anon_sym_override] = ACTIONS(2130), + [anon_sym_final] = ACTIONS(2130), + [anon_sym_class] = ACTIONS(2130), + [anon_sym_interface] = ACTIONS(2130), + [anon_sym_enum] = ACTIONS(2130), + [anon_sym_typedef] = ACTIONS(2130), + [anon_sym_function] = ACTIONS(2130), + [anon_sym_var] = ACTIONS(2130), + [aux_sym_integer_token1] = ACTIONS(2130), + [aux_sym_integer_token2] = ACTIONS(2132), + [aux_sym_float_token1] = ACTIONS(2130), + [aux_sym_float_token2] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [aux_sym_string_token1] = ACTIONS(2132), + [aux_sym_string_token3] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(2136), + [anon_sym_package] = ACTIONS(2134), + [anon_sym_import] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2134), + [anon_sym_throw] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_cast] = ACTIONS(2134), + [anon_sym_DOLLARtype] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_untyped] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_this] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2134), + [anon_sym_AT_COLON] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_new] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_PERCENT] = ACTIONS(2136), + [anon_sym_SLASH] = ACTIONS(2134), + [anon_sym_PLUS] = ACTIONS(2134), + [anon_sym_LT_LT] = ACTIONS(2136), + [anon_sym_GT_GT] = ACTIONS(2134), + [anon_sym_GT_GT_GT] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_EQ_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_LT_EQ] = ACTIONS(2136), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_EQ] = ACTIONS(2136), + [anon_sym_EQ_GT] = ACTIONS(2136), + [anon_sym_QMARK_QMARK] = ACTIONS(2136), + [anon_sym_EQ] = ACTIONS(2134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2134), + [anon_sym_macro] = ACTIONS(2134), + [anon_sym_abstract] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym_overload] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_final] = ACTIONS(2134), + [anon_sym_class] = ACTIONS(2134), + [anon_sym_interface] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2134), + [anon_sym_function] = ACTIONS(2134), + [anon_sym_var] = ACTIONS(2134), + [aux_sym_integer_token1] = ACTIONS(2134), + [aux_sym_integer_token2] = ACTIONS(2136), + [aux_sym_float_token1] = ACTIONS(2134), + [aux_sym_float_token2] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [aux_sym_string_token1] = ACTIONS(2136), + [aux_sym_string_token3] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2526), + [anon_sym_package] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_cast] = ACTIONS(2524), + [anon_sym_DOLLARtype] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_untyped] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_this] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_AT_COLON] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_catch] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_EQ_GT] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_EQ] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2524), + [anon_sym_macro] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym_overload] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_final] = ACTIONS(2524), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_typedef] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [aux_sym_integer_token1] = ACTIONS(2524), + [aux_sym_integer_token2] = ACTIONS(2526), + [aux_sym_float_token1] = ACTIONS(2524), + [aux_sym_float_token2] = ACTIONS(2526), + [anon_sym_true] = ACTIONS(2524), + [anon_sym_false] = ACTIONS(2524), + [aux_sym_string_token1] = ACTIONS(2526), + [aux_sym_string_token3] = ACTIONS(2526), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2138), + [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_package] = ACTIONS(2138), + [anon_sym_import] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_using] = ACTIONS(2138), + [anon_sym_throw] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_switch] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_cast] = ACTIONS(2138), + [anon_sym_DOLLARtype] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_untyped] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_this] = ACTIONS(2138), + [anon_sym_AT] = ACTIONS(2138), + [anon_sym_AT_COLON] = ACTIONS(2140), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_GT_GT_GT] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_EQ_GT] = ACTIONS(2140), + [anon_sym_QMARK_QMARK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_null] = ACTIONS(2138), + [anon_sym_macro] = ACTIONS(2138), + [anon_sym_abstract] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_public] = ACTIONS(2138), + [anon_sym_private] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym_overload] = ACTIONS(2138), + [anon_sym_override] = ACTIONS(2138), + [anon_sym_final] = ACTIONS(2138), + [anon_sym_class] = ACTIONS(2138), + [anon_sym_interface] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_typedef] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(2138), + [anon_sym_var] = ACTIONS(2138), + [aux_sym_integer_token1] = ACTIONS(2138), + [aux_sym_integer_token2] = ACTIONS(2140), + [aux_sym_float_token1] = ACTIONS(2138), + [aux_sym_float_token2] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [aux_sym_string_token1] = ACTIONS(2140), + [aux_sym_string_token3] = ACTIONS(2140), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_package] = ACTIONS(2528), + [anon_sym_import] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_using] = ACTIONS(2528), + [anon_sym_throw] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_cast] = ACTIONS(2528), + [anon_sym_DOLLARtype] = ACTIONS(2530), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_untyped] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_this] = ACTIONS(2528), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_AT_COLON] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_catch] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [anon_sym_PERCENT] = ACTIONS(2530), + [anon_sym_SLASH] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_LT_LT] = ACTIONS(2530), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_GT_GT_GT] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2530), + [anon_sym_AMP_AMP] = ACTIONS(2530), + [anon_sym_PIPE_PIPE] = ACTIONS(2530), + [anon_sym_EQ_EQ] = ACTIONS(2530), + [anon_sym_BANG_EQ] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_LT_EQ] = ACTIONS(2530), + [anon_sym_GT] = ACTIONS(2528), + [anon_sym_GT_EQ] = ACTIONS(2530), + [anon_sym_EQ_GT] = ACTIONS(2530), + [anon_sym_QMARK_QMARK] = ACTIONS(2530), + [anon_sym_EQ] = ACTIONS(2528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2530), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_macro] = ACTIONS(2528), + [anon_sym_abstract] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_public] = ACTIONS(2528), + [anon_sym_private] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym_inline] = ACTIONS(2528), + [anon_sym_overload] = ACTIONS(2528), + [anon_sym_override] = ACTIONS(2528), + [anon_sym_final] = ACTIONS(2528), + [anon_sym_class] = ACTIONS(2528), + [anon_sym_interface] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_typedef] = ACTIONS(2528), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_var] = ACTIONS(2528), + [aux_sym_integer_token1] = ACTIONS(2528), + [aux_sym_integer_token2] = ACTIONS(2530), + [aux_sym_float_token1] = ACTIONS(2528), + [aux_sym_float_token2] = ACTIONS(2530), + [anon_sym_true] = ACTIONS(2528), + [anon_sym_false] = ACTIONS(2528), + [aux_sym_string_token1] = ACTIONS(2530), + [aux_sym_string_token3] = ACTIONS(2530), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [733] = { + [sym_else_clause] = STATE(520), + [sym_identifier] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_package] = ACTIONS(1976), + [anon_sym_import] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [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_for] = ACTIONS(1976), + [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_try] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2534), + [anon_sym_package] = ACTIONS(2532), + [anon_sym_import] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_throw] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_cast] = ACTIONS(2532), + [anon_sym_DOLLARtype] = ACTIONS(2534), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_untyped] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_this] = ACTIONS(2532), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_AT_COLON] = ACTIONS(2534), + [anon_sym_try] = ACTIONS(2532), + [anon_sym_catch] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_new] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_EQ_GT] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2534), + [anon_sym_null] = ACTIONS(2532), + [anon_sym_macro] = ACTIONS(2532), + [anon_sym_abstract] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), + [anon_sym_private] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym_inline] = ACTIONS(2532), + [anon_sym_overload] = ACTIONS(2532), + [anon_sym_override] = ACTIONS(2532), + [anon_sym_final] = ACTIONS(2532), + [anon_sym_class] = ACTIONS(2532), + [anon_sym_interface] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_typedef] = ACTIONS(2532), + [anon_sym_function] = ACTIONS(2532), + [anon_sym_var] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [aux_sym_integer_token2] = ACTIONS(2534), + [aux_sym_float_token1] = ACTIONS(2532), + [aux_sym_float_token2] = ACTIONS(2534), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [aux_sym_string_token3] = ACTIONS(2534), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_package] = ACTIONS(2536), + [anon_sym_import] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_cast] = ACTIONS(2536), + [anon_sym_DOLLARtype] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_untyped] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_this] = ACTIONS(2536), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_AT_COLON] = ACTIONS(2538), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_catch] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_EQ_GT] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2538), + [anon_sym_null] = ACTIONS(2536), + [anon_sym_macro] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym_overload] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_final] = ACTIONS(2536), + [anon_sym_class] = ACTIONS(2536), + [anon_sym_interface] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_var] = ACTIONS(2536), + [aux_sym_integer_token1] = ACTIONS(2536), + [aux_sym_integer_token2] = ACTIONS(2538), + [aux_sym_float_token1] = ACTIONS(2536), + [aux_sym_float_token2] = ACTIONS(2538), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [aux_sym_string_token1] = ACTIONS(2538), + [aux_sym_string_token3] = ACTIONS(2538), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [736] = { + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2542), + [anon_sym_package] = ACTIONS(2540), + [anon_sym_import] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2540), + [anon_sym_throw] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_cast] = ACTIONS(2540), + [anon_sym_DOLLARtype] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_untyped] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_this] = ACTIONS(2540), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_AT_COLON] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_catch] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_EQ_GT] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_EQ] = ACTIONS(2540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2542), + [anon_sym_null] = ACTIONS(2540), + [anon_sym_macro] = ACTIONS(2540), + [anon_sym_abstract] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2540), + [anon_sym_private] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym_overload] = ACTIONS(2540), + [anon_sym_override] = ACTIONS(2540), + [anon_sym_final] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2540), + [anon_sym_interface] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_var] = ACTIONS(2540), + [aux_sym_integer_token1] = ACTIONS(2540), + [aux_sym_integer_token2] = ACTIONS(2542), + [aux_sym_float_token1] = ACTIONS(2540), + [aux_sym_float_token2] = ACTIONS(2542), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [aux_sym_string_token1] = ACTIONS(2542), + [aux_sym_string_token3] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [737] = { + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_package] = ACTIONS(2544), + [anon_sym_import] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_using] = ACTIONS(2544), + [anon_sym_throw] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_cast] = ACTIONS(2544), + [anon_sym_DOLLARtype] = ACTIONS(2546), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_untyped] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_this] = ACTIONS(2544), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_AT_COLON] = ACTIONS(2546), + [anon_sym_try] = ACTIONS(2544), + [anon_sym_catch] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_new] = ACTIONS(2544), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_EQ_GT] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_EQ] = ACTIONS(2544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2546), + [anon_sym_null] = ACTIONS(2544), + [anon_sym_macro] = ACTIONS(2544), + [anon_sym_abstract] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym_overload] = ACTIONS(2544), + [anon_sym_override] = ACTIONS(2544), + [anon_sym_final] = ACTIONS(2544), + [anon_sym_class] = ACTIONS(2544), + [anon_sym_interface] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_typedef] = ACTIONS(2544), + [anon_sym_function] = ACTIONS(2544), + [anon_sym_var] = ACTIONS(2544), + [aux_sym_integer_token1] = ACTIONS(2544), + [aux_sym_integer_token2] = ACTIONS(2546), + [aux_sym_float_token1] = ACTIONS(2544), + [aux_sym_float_token2] = ACTIONS(2546), + [anon_sym_true] = ACTIONS(2544), + [anon_sym_false] = ACTIONS(2544), + [aux_sym_string_token1] = ACTIONS(2546), + [aux_sym_string_token3] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [738] = { + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_package] = ACTIONS(2548), + [anon_sym_import] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_using] = ACTIONS(2548), + [anon_sym_throw] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_cast] = ACTIONS(2548), + [anon_sym_DOLLARtype] = ACTIONS(2550), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_untyped] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_this] = ACTIONS(2548), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_AT_COLON] = ACTIONS(2550), + [anon_sym_try] = ACTIONS(2548), + [anon_sym_catch] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_new] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_EQ_GT] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_EQ] = ACTIONS(2548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), + [anon_sym_null] = ACTIONS(2548), + [anon_sym_macro] = ACTIONS(2548), + [anon_sym_abstract] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_public] = ACTIONS(2548), + [anon_sym_private] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym_inline] = ACTIONS(2548), + [anon_sym_overload] = ACTIONS(2548), + [anon_sym_override] = ACTIONS(2548), + [anon_sym_final] = ACTIONS(2548), + [anon_sym_class] = ACTIONS(2548), + [anon_sym_interface] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_typedef] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(2548), + [anon_sym_var] = ACTIONS(2548), + [aux_sym_integer_token1] = ACTIONS(2548), + [aux_sym_integer_token2] = ACTIONS(2550), + [aux_sym_float_token1] = ACTIONS(2548), + [aux_sym_float_token2] = ACTIONS(2550), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [aux_sym_string_token1] = ACTIONS(2550), + [aux_sym_string_token3] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [739] = { + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_package] = ACTIONS(2552), + [anon_sym_import] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2552), + [anon_sym_throw] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_cast] = ACTIONS(2552), + [anon_sym_DOLLARtype] = ACTIONS(2554), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_untyped] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_this] = ACTIONS(2552), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_AT_COLON] = ACTIONS(2554), + [anon_sym_try] = ACTIONS(2552), + [anon_sym_catch] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_new] = ACTIONS(2552), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_EQ_GT] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_EQ] = ACTIONS(2552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2554), + [anon_sym_null] = ACTIONS(2552), + [anon_sym_macro] = ACTIONS(2552), + [anon_sym_abstract] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym_inline] = ACTIONS(2552), + [anon_sym_overload] = ACTIONS(2552), + [anon_sym_override] = ACTIONS(2552), + [anon_sym_final] = ACTIONS(2552), + [anon_sym_class] = ACTIONS(2552), + [anon_sym_interface] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_typedef] = ACTIONS(2552), + [anon_sym_function] = ACTIONS(2552), + [anon_sym_var] = ACTIONS(2552), + [aux_sym_integer_token1] = ACTIONS(2552), + [aux_sym_integer_token2] = ACTIONS(2554), + [aux_sym_float_token1] = ACTIONS(2552), + [aux_sym_float_token2] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [aux_sym_string_token1] = ACTIONS(2554), + [aux_sym_string_token3] = ACTIONS(2554), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [740] = { + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_package] = ACTIONS(2556), + [anon_sym_import] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_throw] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_cast] = ACTIONS(2556), + [anon_sym_DOLLARtype] = ACTIONS(2558), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_untyped] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_this] = ACTIONS(2556), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_AT_COLON] = ACTIONS(2558), + [anon_sym_try] = ACTIONS(2556), + [anon_sym_catch] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_EQ_GT] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_EQ] = ACTIONS(2556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2558), + [anon_sym_null] = ACTIONS(2556), + [anon_sym_macro] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym_overload] = ACTIONS(2556), + [anon_sym_override] = ACTIONS(2556), + [anon_sym_final] = ACTIONS(2556), + [anon_sym_class] = ACTIONS(2556), + [anon_sym_interface] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_var] = ACTIONS(2556), + [aux_sym_integer_token1] = ACTIONS(2556), + [aux_sym_integer_token2] = ACTIONS(2558), + [aux_sym_float_token1] = ACTIONS(2556), + [aux_sym_float_token2] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [aux_sym_string_token1] = ACTIONS(2558), + [aux_sym_string_token3] = ACTIONS(2558), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [741] = { + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2142), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_package] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_cast] = ACTIONS(2142), + [anon_sym_DOLLARtype] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_untyped] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_this] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_AT_COLON] = ACTIONS(2144), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2144), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_LT_LT] = ACTIONS(2144), + [anon_sym_GT_GT] = ACTIONS(2142), + [anon_sym_GT_GT_GT] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_CARET] = ACTIONS(2144), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2142), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_EQ_GT] = ACTIONS(2144), + [anon_sym_QMARK_QMARK] = ACTIONS(2144), + [anon_sym_EQ] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2144), + [anon_sym_null] = ACTIONS(2142), + [anon_sym_macro] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_inline] = ACTIONS(2142), + [anon_sym_overload] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_final] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [anon_sym_typedef] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [aux_sym_integer_token1] = ACTIONS(2142), + [aux_sym_integer_token2] = ACTIONS(2144), + [aux_sym_float_token1] = ACTIONS(2142), + [aux_sym_float_token2] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [aux_sym_string_token1] = ACTIONS(2144), + [aux_sym_string_token3] = ACTIONS(2144), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [742] = { + [ts_builtin_sym_end] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_package] = ACTIONS(2146), + [anon_sym_import] = ACTIONS(2146), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_using] = ACTIONS(2146), + [anon_sym_throw] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_switch] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_cast] = ACTIONS(2146), + [anon_sym_DOLLARtype] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_untyped] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_this] = ACTIONS(2146), + [anon_sym_AT] = ACTIONS(2146), + [anon_sym_AT_COLON] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_new] = ACTIONS(2146), + [anon_sym_TILDE] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_PLUS_PLUS] = ACTIONS(2148), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PLUS] = ACTIONS(2146), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_GT_GT] = ACTIONS(2146), + [anon_sym_GT_GT_GT] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_CARET] = ACTIONS(2148), + [anon_sym_AMP_AMP] = ACTIONS(2148), + [anon_sym_PIPE_PIPE] = ACTIONS(2148), + [anon_sym_EQ_EQ] = ACTIONS(2148), + [anon_sym_BANG_EQ] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2146), + [anon_sym_LT_EQ] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2146), + [anon_sym_GT_EQ] = ACTIONS(2148), + [anon_sym_EQ_GT] = ACTIONS(2148), + [anon_sym_QMARK_QMARK] = ACTIONS(2148), + [anon_sym_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2148), + [anon_sym_null] = ACTIONS(2146), + [anon_sym_macro] = ACTIONS(2146), + [anon_sym_abstract] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_public] = ACTIONS(2146), + [anon_sym_private] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_inline] = ACTIONS(2146), + [anon_sym_overload] = ACTIONS(2146), + [anon_sym_override] = ACTIONS(2146), + [anon_sym_final] = ACTIONS(2146), + [anon_sym_class] = ACTIONS(2146), + [anon_sym_interface] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [anon_sym_typedef] = ACTIONS(2146), + [anon_sym_function] = ACTIONS(2146), + [anon_sym_var] = ACTIONS(2146), + [aux_sym_integer_token1] = ACTIONS(2146), + [aux_sym_integer_token2] = ACTIONS(2148), + [aux_sym_float_token1] = ACTIONS(2146), + [aux_sym_float_token2] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [aux_sym_string_token1] = ACTIONS(2148), + [aux_sym_string_token3] = ACTIONS(2148), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [743] = { + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2562), + [anon_sym_package] = ACTIONS(2560), + [anon_sym_import] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_using] = ACTIONS(2560), + [anon_sym_throw] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_cast] = ACTIONS(2560), + [anon_sym_DOLLARtype] = ACTIONS(2562), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_untyped] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_this] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_AT_COLON] = ACTIONS(2562), + [anon_sym_try] = ACTIONS(2560), + [anon_sym_catch] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_EQ_GT] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_EQ] = ACTIONS(2560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_null] = ACTIONS(2560), + [anon_sym_macro] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_inline] = ACTIONS(2560), + [anon_sym_overload] = ACTIONS(2560), + [anon_sym_override] = ACTIONS(2560), + [anon_sym_final] = ACTIONS(2560), + [anon_sym_class] = ACTIONS(2560), + [anon_sym_interface] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_typedef] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_var] = ACTIONS(2560), + [aux_sym_integer_token1] = ACTIONS(2560), + [aux_sym_integer_token2] = ACTIONS(2562), + [aux_sym_float_token1] = ACTIONS(2560), + [aux_sym_float_token2] = ACTIONS(2562), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [aux_sym_string_token1] = ACTIONS(2562), + [aux_sym_string_token3] = ACTIONS(2562), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [744] = { + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(2152), + [anon_sym_package] = ACTIONS(2150), + [anon_sym_import] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2150), + [anon_sym_throw] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_cast] = ACTIONS(2150), + [anon_sym_DOLLARtype] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_untyped] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_this] = ACTIONS(2150), + [anon_sym_AT] = ACTIONS(2150), + [anon_sym_AT_COLON] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2150), + [anon_sym_catch] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(2150), + [anon_sym_new] = ACTIONS(2150), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2150), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2150), + [anon_sym_PLUS] = ACTIONS(2150), + [anon_sym_LT_LT] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(2150), + [anon_sym_GT_GT_GT] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_CARET] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_EQ_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_LT_EQ] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2152), + [anon_sym_EQ_GT] = ACTIONS(2152), + [anon_sym_QMARK_QMARK] = ACTIONS(2152), + [anon_sym_EQ] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2150), + [anon_sym_macro] = ACTIONS(2150), + [anon_sym_abstract] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2150), + [anon_sym_public] = ACTIONS(2150), + [anon_sym_private] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_inline] = ACTIONS(2150), + [anon_sym_overload] = ACTIONS(2150), + [anon_sym_override] = ACTIONS(2150), + [anon_sym_final] = ACTIONS(2150), + [anon_sym_class] = ACTIONS(2150), + [anon_sym_interface] = ACTIONS(2150), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_typedef] = ACTIONS(2150), + [anon_sym_function] = ACTIONS(2150), + [anon_sym_var] = ACTIONS(2150), + [aux_sym_integer_token1] = ACTIONS(2150), + [aux_sym_integer_token2] = ACTIONS(2152), + [aux_sym_float_token1] = ACTIONS(2150), + [aux_sym_float_token2] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [aux_sym_string_token1] = ACTIONS(2152), + [aux_sym_string_token3] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [745] = { + [ts_builtin_sym_end] = ACTIONS(2156), + [sym_identifier] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_package] = ACTIONS(2154), + [anon_sym_import] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_using] = ACTIONS(2154), + [anon_sym_throw] = ACTIONS(2154), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_cast] = ACTIONS(2154), + [anon_sym_DOLLARtype] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2154), + [anon_sym_untyped] = ACTIONS(2154), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_this] = ACTIONS(2154), + [anon_sym_AT] = ACTIONS(2154), + [anon_sym_AT_COLON] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2154), + [anon_sym_catch] = ACTIONS(2154), + [anon_sym_else] = ACTIONS(2154), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_do] = ACTIONS(2154), + [anon_sym_new] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2154), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_LT_LT] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(2154), + [anon_sym_GT_GT_GT] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(2156), + [anon_sym_QMARK_QMARK] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(2154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2156), + [anon_sym_null] = ACTIONS(2154), + [anon_sym_macro] = ACTIONS(2154), + [anon_sym_abstract] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2154), + [anon_sym_public] = ACTIONS(2154), + [anon_sym_private] = ACTIONS(2154), + [anon_sym_extern] = ACTIONS(2154), + [anon_sym_inline] = ACTIONS(2154), + [anon_sym_overload] = ACTIONS(2154), + [anon_sym_override] = ACTIONS(2154), + [anon_sym_final] = ACTIONS(2154), + [anon_sym_class] = ACTIONS(2154), + [anon_sym_interface] = ACTIONS(2154), + [anon_sym_enum] = ACTIONS(2154), + [anon_sym_typedef] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2154), + [anon_sym_var] = ACTIONS(2154), + [aux_sym_integer_token1] = ACTIONS(2154), + [aux_sym_integer_token2] = ACTIONS(2156), + [aux_sym_float_token1] = ACTIONS(2154), + [aux_sym_float_token2] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [aux_sym_string_token1] = ACTIONS(2156), + [aux_sym_string_token3] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [746] = { + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_package] = ACTIONS(2158), + [anon_sym_import] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2158), + [anon_sym_throw] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2158), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_cast] = ACTIONS(2158), + [anon_sym_DOLLARtype] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_untyped] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_this] = ACTIONS(2158), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_AT_COLON] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_catch] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_new] = ACTIONS(2158), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2158), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2158), + [anon_sym_PLUS] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_EQ_GT] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_EQ] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2160), + [anon_sym_null] = ACTIONS(2158), + [anon_sym_macro] = ACTIONS(2158), + [anon_sym_abstract] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_public] = ACTIONS(2158), + [anon_sym_private] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_inline] = ACTIONS(2158), + [anon_sym_overload] = ACTIONS(2158), + [anon_sym_override] = ACTIONS(2158), + [anon_sym_final] = ACTIONS(2158), + [anon_sym_class] = ACTIONS(2158), + [anon_sym_interface] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_typedef] = ACTIONS(2158), + [anon_sym_function] = ACTIONS(2158), + [anon_sym_var] = ACTIONS(2158), + [aux_sym_integer_token1] = ACTIONS(2158), + [aux_sym_integer_token2] = ACTIONS(2160), + [aux_sym_float_token1] = ACTIONS(2158), + [aux_sym_float_token2] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [aux_sym_string_token1] = ACTIONS(2160), + [aux_sym_string_token3] = ACTIONS(2160), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [747] = { + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2566), + [anon_sym_package] = ACTIONS(2564), + [anon_sym_import] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_using] = ACTIONS(2564), + [anon_sym_throw] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_cast] = ACTIONS(2564), + [anon_sym_DOLLARtype] = ACTIONS(2566), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_untyped] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym_this] = ACTIONS(2564), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_AT_COLON] = ACTIONS(2566), + [anon_sym_try] = ACTIONS(2564), + [anon_sym_catch] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(2564), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_PERCENT] = ACTIONS(2566), + [anon_sym_SLASH] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2564), + [anon_sym_GT_GT_GT] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_AMP_AMP] = ACTIONS(2566), + [anon_sym_PIPE_PIPE] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2566), + [anon_sym_BANG_EQ] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_LT_EQ] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2564), + [anon_sym_GT_EQ] = ACTIONS(2566), + [anon_sym_EQ_GT] = ACTIONS(2566), + [anon_sym_QMARK_QMARK] = ACTIONS(2566), + [anon_sym_EQ] = ACTIONS(2564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), + [anon_sym_null] = ACTIONS(2564), + [anon_sym_macro] = ACTIONS(2564), + [anon_sym_abstract] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_public] = ACTIONS(2564), + [anon_sym_private] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym_overload] = ACTIONS(2564), + [anon_sym_override] = ACTIONS(2564), + [anon_sym_final] = ACTIONS(2564), + [anon_sym_class] = ACTIONS(2564), + [anon_sym_interface] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_typedef] = ACTIONS(2564), + [anon_sym_function] = ACTIONS(2564), + [anon_sym_var] = ACTIONS(2564), + [aux_sym_integer_token1] = ACTIONS(2564), + [aux_sym_integer_token2] = ACTIONS(2566), + [aux_sym_float_token1] = ACTIONS(2564), + [aux_sym_float_token2] = ACTIONS(2566), + [anon_sym_true] = ACTIONS(2564), + [anon_sym_false] = ACTIONS(2564), + [aux_sym_string_token1] = ACTIONS(2566), + [aux_sym_string_token3] = ACTIONS(2566), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [748] = { + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2570), + [anon_sym_package] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_cast] = ACTIONS(2568), + [anon_sym_DOLLARtype] = ACTIONS(2570), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_untyped] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_this] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2568), + [anon_sym_AT_COLON] = ACTIONS(2570), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_catch] = ACTIONS(2568), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_EQ_GT] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_EQ] = ACTIONS(2568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2570), + [anon_sym_null] = ACTIONS(2568), + [anon_sym_macro] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym_overload] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_final] = ACTIONS(2568), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [aux_sym_integer_token1] = ACTIONS(2568), + [aux_sym_integer_token2] = ACTIONS(2570), + [aux_sym_float_token1] = ACTIONS(2568), + [aux_sym_float_token2] = ACTIONS(2570), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [aux_sym_string_token1] = ACTIONS(2570), + [aux_sym_string_token3] = ACTIONS(2570), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [749] = { + [ts_builtin_sym_end] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_package] = ACTIONS(2572), + [anon_sym_import] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_using] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_cast] = ACTIONS(2572), + [anon_sym_DOLLARtype] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_untyped] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_this] = ACTIONS(2572), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_AT_COLON] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2572), + [anon_sym_catch] = ACTIONS(2572), + [anon_sym_else] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_new] = ACTIONS(2572), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2574), + [anon_sym_null] = ACTIONS(2572), + [anon_sym_macro] = ACTIONS(2572), + [anon_sym_abstract] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2572), + [anon_sym_private] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym_overload] = ACTIONS(2572), + [anon_sym_override] = ACTIONS(2572), + [anon_sym_final] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_interface] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_typedef] = ACTIONS(2572), + [anon_sym_function] = ACTIONS(2572), + [anon_sym_var] = ACTIONS(2572), + [aux_sym_integer_token1] = ACTIONS(2572), + [aux_sym_integer_token2] = ACTIONS(2574), + [aux_sym_float_token1] = ACTIONS(2572), + [aux_sym_float_token2] = ACTIONS(2574), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [aux_sym_string_token1] = ACTIONS(2574), + [aux_sym_string_token3] = ACTIONS(2574), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [750] = { + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_identifier] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2578), + [anon_sym_package] = ACTIONS(2576), + [anon_sym_import] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_using] = ACTIONS(2576), + [anon_sym_throw] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_cast] = ACTIONS(2576), + [anon_sym_DOLLARtype] = ACTIONS(2578), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_untyped] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_this] = ACTIONS(2576), + [anon_sym_AT] = ACTIONS(2576), + [anon_sym_AT_COLON] = ACTIONS(2578), + [anon_sym_try] = ACTIONS(2576), + [anon_sym_catch] = ACTIONS(2576), + [anon_sym_else] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_new] = ACTIONS(2576), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_PERCENT] = ACTIONS(2578), + [anon_sym_SLASH] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_LT_LT] = ACTIONS(2578), + [anon_sym_GT_GT] = ACTIONS(2576), + [anon_sym_GT_GT_GT] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2578), + [anon_sym_AMP_AMP] = ACTIONS(2578), + [anon_sym_PIPE_PIPE] = ACTIONS(2578), + [anon_sym_EQ_EQ] = ACTIONS(2578), + [anon_sym_BANG_EQ] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2576), + [anon_sym_LT_EQ] = ACTIONS(2578), + [anon_sym_GT] = ACTIONS(2576), + [anon_sym_GT_EQ] = ACTIONS(2578), + [anon_sym_EQ_GT] = ACTIONS(2578), + [anon_sym_QMARK_QMARK] = ACTIONS(2578), + [anon_sym_EQ] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2578), + [anon_sym_null] = ACTIONS(2576), + [anon_sym_macro] = ACTIONS(2576), + [anon_sym_abstract] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_public] = ACTIONS(2576), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym_overload] = ACTIONS(2576), + [anon_sym_override] = ACTIONS(2576), + [anon_sym_final] = ACTIONS(2576), + [anon_sym_class] = ACTIONS(2576), + [anon_sym_interface] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_typedef] = ACTIONS(2576), + [anon_sym_function] = ACTIONS(2576), + [anon_sym_var] = ACTIONS(2576), + [aux_sym_integer_token1] = ACTIONS(2576), + [aux_sym_integer_token2] = ACTIONS(2578), + [aux_sym_float_token1] = ACTIONS(2576), + [aux_sym_float_token2] = ACTIONS(2578), + [anon_sym_true] = ACTIONS(2576), + [anon_sym_false] = ACTIONS(2576), + [aux_sym_string_token1] = ACTIONS(2578), + [aux_sym_string_token3] = ACTIONS(2578), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [751] = { + [ts_builtin_sym_end] = ACTIONS(2582), + [sym_identifier] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_package] = ACTIONS(2580), + [anon_sym_import] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2582), + [anon_sym_using] = ACTIONS(2580), + [anon_sym_throw] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_cast] = ACTIONS(2580), + [anon_sym_DOLLARtype] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_untyped] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_this] = ACTIONS(2580), + [anon_sym_AT] = ACTIONS(2580), + [anon_sym_AT_COLON] = ACTIONS(2582), + [anon_sym_try] = ACTIONS(2580), + [anon_sym_catch] = ACTIONS(2580), + [anon_sym_else] = ACTIONS(2580), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), + [anon_sym_do] = ACTIONS(2580), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_TILDE] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_EQ_GT] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_EQ] = ACTIONS(2580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2582), + [anon_sym_null] = ACTIONS(2580), + [anon_sym_macro] = ACTIONS(2580), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_public] = ACTIONS(2580), + [anon_sym_private] = ACTIONS(2580), + [anon_sym_extern] = ACTIONS(2580), + [anon_sym_inline] = ACTIONS(2580), + [anon_sym_overload] = ACTIONS(2580), + [anon_sym_override] = ACTIONS(2580), + [anon_sym_final] = ACTIONS(2580), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_interface] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2580), + [anon_sym_typedef] = ACTIONS(2580), + [anon_sym_function] = ACTIONS(2580), + [anon_sym_var] = ACTIONS(2580), + [aux_sym_integer_token1] = ACTIONS(2580), + [aux_sym_integer_token2] = ACTIONS(2582), + [aux_sym_float_token1] = ACTIONS(2580), + [aux_sym_float_token2] = ACTIONS(2582), + [anon_sym_true] = ACTIONS(2580), + [anon_sym_false] = ACTIONS(2580), + [aux_sym_string_token1] = ACTIONS(2582), + [aux_sym_string_token3] = ACTIONS(2582), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [752] = { + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_package] = ACTIONS(2584), + [anon_sym_import] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_cast] = ACTIONS(2584), + [anon_sym_DOLLARtype] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2584), + [anon_sym_return] = ACTIONS(2584), + [anon_sym_untyped] = ACTIONS(2584), + [anon_sym_break] = ACTIONS(2584), + [anon_sym_continue] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_this] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2584), + [anon_sym_AT_COLON] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_catch] = ACTIONS(2584), + [anon_sym_else] = ACTIONS(2584), + [anon_sym_if] = ACTIONS(2584), + [anon_sym_while] = ACTIONS(2584), + [anon_sym_do] = ACTIONS(2584), + [anon_sym_new] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2586), + [anon_sym_PERCENT] = ACTIONS(2586), + [anon_sym_SLASH] = ACTIONS(2584), + [anon_sym_PLUS] = ACTIONS(2584), + [anon_sym_LT_LT] = ACTIONS(2586), + [anon_sym_GT_GT] = ACTIONS(2584), + [anon_sym_GT_GT_GT] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_CARET] = ACTIONS(2586), + [anon_sym_AMP_AMP] = ACTIONS(2586), + [anon_sym_PIPE_PIPE] = ACTIONS(2586), + [anon_sym_EQ_EQ] = ACTIONS(2586), + [anon_sym_BANG_EQ] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_LT_EQ] = ACTIONS(2586), + [anon_sym_GT] = ACTIONS(2584), + [anon_sym_GT_EQ] = ACTIONS(2586), + [anon_sym_EQ_GT] = ACTIONS(2586), + [anon_sym_QMARK_QMARK] = ACTIONS(2586), + [anon_sym_EQ] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2586), + [anon_sym_null] = ACTIONS(2584), + [anon_sym_macro] = ACTIONS(2584), + [anon_sym_abstract] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_public] = ACTIONS(2584), + [anon_sym_private] = ACTIONS(2584), + [anon_sym_extern] = ACTIONS(2584), + [anon_sym_inline] = ACTIONS(2584), + [anon_sym_overload] = ACTIONS(2584), + [anon_sym_override] = ACTIONS(2584), + [anon_sym_final] = ACTIONS(2584), + [anon_sym_class] = ACTIONS(2584), + [anon_sym_interface] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2584), + [anon_sym_typedef] = ACTIONS(2584), + [anon_sym_function] = ACTIONS(2584), + [anon_sym_var] = ACTIONS(2584), + [aux_sym_integer_token1] = ACTIONS(2584), + [aux_sym_integer_token2] = ACTIONS(2586), + [aux_sym_float_token1] = ACTIONS(2584), + [aux_sym_float_token2] = ACTIONS(2586), + [anon_sym_true] = ACTIONS(2584), + [anon_sym_false] = ACTIONS(2584), + [aux_sym_string_token1] = ACTIONS(2586), + [aux_sym_string_token3] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [753] = { + [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_STAR] = ACTIONS(2278), + [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_for] = ACTIONS(2276), + [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_try] = ACTIONS(2276), + [anon_sym_catch] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [754] = { + [ts_builtin_sym_end] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_package] = ACTIONS(2588), + [anon_sym_import] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2588), + [anon_sym_throw] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_cast] = ACTIONS(2588), + [anon_sym_DOLLARtype] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_untyped] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_this] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2588), + [anon_sym_AT_COLON] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2588), + [anon_sym_catch] = ACTIONS(2588), + [anon_sym_else] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_do] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2590), + [anon_sym_PERCENT] = ACTIONS(2590), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_PLUS] = ACTIONS(2588), + [anon_sym_LT_LT] = ACTIONS(2590), + [anon_sym_GT_GT] = ACTIONS(2588), + [anon_sym_GT_GT_GT] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_AMP_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2590), + [anon_sym_BANG_EQ] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_LT_EQ] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(2588), + [anon_sym_GT_EQ] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(2590), + [anon_sym_QMARK_QMARK] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2590), + [anon_sym_null] = ACTIONS(2588), + [anon_sym_macro] = ACTIONS(2588), + [anon_sym_abstract] = ACTIONS(2588), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_public] = ACTIONS(2588), + [anon_sym_private] = ACTIONS(2588), + [anon_sym_extern] = ACTIONS(2588), + [anon_sym_inline] = ACTIONS(2588), + [anon_sym_overload] = ACTIONS(2588), + [anon_sym_override] = ACTIONS(2588), + [anon_sym_final] = ACTIONS(2588), + [anon_sym_class] = ACTIONS(2588), + [anon_sym_interface] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [anon_sym_typedef] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(2588), + [anon_sym_var] = ACTIONS(2588), + [aux_sym_integer_token1] = ACTIONS(2588), + [aux_sym_integer_token2] = ACTIONS(2590), + [aux_sym_float_token1] = ACTIONS(2588), + [aux_sym_float_token2] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2588), + [anon_sym_false] = ACTIONS(2588), + [aux_sym_string_token1] = ACTIONS(2590), + [aux_sym_string_token3] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [755] = { + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2164), + [anon_sym_package] = ACTIONS(2162), + [anon_sym_import] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(2162), + [anon_sym_throw] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_cast] = ACTIONS(2162), + [anon_sym_DOLLARtype] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_untyped] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_this] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_AT_COLON] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2162), + [anon_sym_catch] = ACTIONS(2162), + [anon_sym_else] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_do] = ACTIONS(2162), + [anon_sym_new] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2164), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_PERCENT] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(2164), + [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_GT_GT_GT] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_AMP_AMP] = ACTIONS(2164), + [anon_sym_PIPE_PIPE] = ACTIONS(2164), + [anon_sym_EQ_EQ] = ACTIONS(2164), + [anon_sym_BANG_EQ] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2164), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2164), + [anon_sym_EQ_GT] = ACTIONS(2164), + [anon_sym_QMARK_QMARK] = ACTIONS(2164), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2164), + [anon_sym_null] = ACTIONS(2162), + [anon_sym_macro] = ACTIONS(2162), + [anon_sym_abstract] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_public] = ACTIONS(2162), + [anon_sym_private] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_inline] = ACTIONS(2162), + [anon_sym_overload] = ACTIONS(2162), + [anon_sym_override] = ACTIONS(2162), + [anon_sym_final] = ACTIONS(2162), + [anon_sym_class] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_typedef] = ACTIONS(2162), + [anon_sym_function] = ACTIONS(2162), + [anon_sym_var] = ACTIONS(2162), + [aux_sym_integer_token1] = ACTIONS(2162), + [aux_sym_integer_token2] = ACTIONS(2164), + [aux_sym_float_token1] = ACTIONS(2162), + [aux_sym_float_token2] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [aux_sym_string_token1] = ACTIONS(2164), + [aux_sym_string_token3] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [756] = { + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(2168), + [anon_sym_package] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_cast] = ACTIONS(2166), + [anon_sym_DOLLARtype] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_untyped] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_this] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_AT_COLON] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_catch] = ACTIONS(2166), + [anon_sym_else] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2168), + [anon_sym_DASH_DASH] = ACTIONS(2168), + [anon_sym_PERCENT] = ACTIONS(2168), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_LT_LT] = ACTIONS(2168), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_GT_GT_GT] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2168), + [anon_sym_AMP_AMP] = ACTIONS(2168), + [anon_sym_PIPE_PIPE] = ACTIONS(2168), + [anon_sym_EQ_EQ] = ACTIONS(2168), + [anon_sym_BANG_EQ] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2168), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2168), + [anon_sym_EQ_GT] = ACTIONS(2168), + [anon_sym_QMARK_QMARK] = ACTIONS(2168), + [anon_sym_EQ] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2168), + [anon_sym_null] = ACTIONS(2166), + [anon_sym_macro] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym_inline] = ACTIONS(2166), + [anon_sym_overload] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_final] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [anon_sym_typedef] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [aux_sym_integer_token1] = ACTIONS(2166), + [aux_sym_integer_token2] = ACTIONS(2168), + [aux_sym_float_token1] = ACTIONS(2166), + [aux_sym_float_token2] = ACTIONS(2168), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [aux_sym_string_token1] = ACTIONS(2168), + [aux_sym_string_token3] = ACTIONS(2168), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [757] = { + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_package] = ACTIONS(2170), + [anon_sym_import] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2170), + [anon_sym_throw] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_cast] = ACTIONS(2170), + [anon_sym_DOLLARtype] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_untyped] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_this] = ACTIONS(2170), + [anon_sym_AT] = ACTIONS(2170), + [anon_sym_AT_COLON] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_catch] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_new] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_PERCENT] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2170), + [anon_sym_PLUS] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(2172), + [anon_sym_GT_GT] = ACTIONS(2170), + [anon_sym_GT_GT_GT] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_CARET] = ACTIONS(2172), + [anon_sym_AMP_AMP] = ACTIONS(2172), + [anon_sym_PIPE_PIPE] = ACTIONS(2172), + [anon_sym_EQ_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_LT_EQ] = ACTIONS(2172), + [anon_sym_GT] = ACTIONS(2170), + [anon_sym_GT_EQ] = ACTIONS(2172), + [anon_sym_EQ_GT] = ACTIONS(2172), + [anon_sym_QMARK_QMARK] = ACTIONS(2172), + [anon_sym_EQ] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2170), + [anon_sym_macro] = ACTIONS(2170), + [anon_sym_abstract] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_inline] = ACTIONS(2170), + [anon_sym_overload] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_final] = ACTIONS(2170), + [anon_sym_class] = ACTIONS(2170), + [anon_sym_interface] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [anon_sym_typedef] = ACTIONS(2170), + [anon_sym_function] = ACTIONS(2170), + [anon_sym_var] = ACTIONS(2170), + [aux_sym_integer_token1] = ACTIONS(2170), + [aux_sym_integer_token2] = ACTIONS(2172), + [aux_sym_float_token1] = ACTIONS(2170), + [aux_sym_float_token2] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2170), + [anon_sym_false] = ACTIONS(2170), + [aux_sym_string_token1] = ACTIONS(2172), + [aux_sym_string_token3] = ACTIONS(2172), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [758] = { + [ts_builtin_sym_end] = ACTIONS(2594), + [sym_identifier] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_package] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(2592), + [anon_sym_throw] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_switch] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_cast] = ACTIONS(2592), + [anon_sym_DOLLARtype] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_untyped] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_this] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2592), + [anon_sym_AT_COLON] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_catch] = ACTIONS(2592), + [anon_sym_else] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_do] = ACTIONS(2592), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(2594), + [anon_sym_GT_GT] = ACTIONS(2592), + [anon_sym_GT_GT_GT] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_EQ_EQ] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_LT_EQ] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2592), + [anon_sym_GT_EQ] = ACTIONS(2594), + [anon_sym_EQ_GT] = ACTIONS(2594), + [anon_sym_QMARK_QMARK] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2594), + [anon_sym_null] = ACTIONS(2592), + [anon_sym_macro] = ACTIONS(2592), + [anon_sym_abstract] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_public] = ACTIONS(2592), + [anon_sym_private] = ACTIONS(2592), + [anon_sym_extern] = ACTIONS(2592), + [anon_sym_inline] = ACTIONS(2592), + [anon_sym_overload] = ACTIONS(2592), + [anon_sym_override] = ACTIONS(2592), + [anon_sym_final] = ACTIONS(2592), + [anon_sym_class] = ACTIONS(2592), + [anon_sym_interface] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), + [anon_sym_typedef] = ACTIONS(2592), + [anon_sym_function] = ACTIONS(2592), + [anon_sym_var] = ACTIONS(2592), + [aux_sym_integer_token1] = ACTIONS(2592), + [aux_sym_integer_token2] = ACTIONS(2594), + [aux_sym_float_token1] = ACTIONS(2592), + [aux_sym_float_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2592), + [anon_sym_false] = ACTIONS(2592), + [aux_sym_string_token1] = ACTIONS(2594), + [aux_sym_string_token3] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [759] = { + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(2176), + [anon_sym_package] = ACTIONS(2174), + [anon_sym_import] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(2174), + [anon_sym_throw] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_cast] = ACTIONS(2174), + [anon_sym_DOLLARtype] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_untyped] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_this] = ACTIONS(2174), + [anon_sym_AT] = ACTIONS(2174), + [anon_sym_AT_COLON] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_catch] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_new] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_PLUS_PLUS] = ACTIONS(2176), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [anon_sym_PERCENT] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_LT_LT] = ACTIONS(2176), + [anon_sym_GT_GT] = ACTIONS(2174), + [anon_sym_GT_GT_GT] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_CARET] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_EQ_EQ] = ACTIONS(2176), + [anon_sym_BANG_EQ] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_LT_EQ] = ACTIONS(2176), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_GT_EQ] = ACTIONS(2176), + [anon_sym_EQ_GT] = ACTIONS(2176), + [anon_sym_QMARK_QMARK] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2176), + [anon_sym_null] = ACTIONS(2174), + [anon_sym_macro] = ACTIONS(2174), + [anon_sym_abstract] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_inline] = ACTIONS(2174), + [anon_sym_overload] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_final] = ACTIONS(2174), + [anon_sym_class] = ACTIONS(2174), + [anon_sym_interface] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [anon_sym_typedef] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(2174), + [anon_sym_var] = ACTIONS(2174), + [aux_sym_integer_token1] = ACTIONS(2174), + [aux_sym_integer_token2] = ACTIONS(2176), + [aux_sym_float_token1] = ACTIONS(2174), + [aux_sym_float_token2] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [aux_sym_string_token1] = ACTIONS(2176), + [aux_sym_string_token3] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [760] = { + [ts_builtin_sym_end] = ACTIONS(2598), + [sym_identifier] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_package] = ACTIONS(2596), + [anon_sym_import] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2598), + [anon_sym_using] = ACTIONS(2596), + [anon_sym_throw] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_cast] = ACTIONS(2596), + [anon_sym_DOLLARtype] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_untyped] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_this] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_AT_COLON] = ACTIONS(2598), + [anon_sym_try] = ACTIONS(2596), + [anon_sym_catch] = ACTIONS(2596), + [anon_sym_else] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_do] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2598), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2598), + [anon_sym_PERCENT] = ACTIONS(2598), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2596), + [anon_sym_GT_GT_GT] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_AMP_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2598), + [anon_sym_BANG_EQ] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2598), + [anon_sym_EQ_GT] = ACTIONS(2598), + [anon_sym_QMARK_QMARK] = ACTIONS(2598), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2598), + [anon_sym_null] = ACTIONS(2596), + [anon_sym_macro] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_extern] = ACTIONS(2596), + [anon_sym_inline] = ACTIONS(2596), + [anon_sym_overload] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_final] = ACTIONS(2596), + [anon_sym_class] = ACTIONS(2596), + [anon_sym_interface] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), + [anon_sym_typedef] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2596), + [anon_sym_var] = ACTIONS(2596), + [aux_sym_integer_token1] = ACTIONS(2596), + [aux_sym_integer_token2] = ACTIONS(2598), + [aux_sym_float_token1] = ACTIONS(2596), + [aux_sym_float_token2] = ACTIONS(2598), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [aux_sym_string_token1] = ACTIONS(2598), + [aux_sym_string_token3] = ACTIONS(2598), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [761] = { + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2600), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_package] = ACTIONS(2600), + [anon_sym_import] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2602), + [anon_sym_using] = ACTIONS(2600), + [anon_sym_throw] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_switch] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_cast] = ACTIONS(2600), + [anon_sym_DOLLARtype] = ACTIONS(2602), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_untyped] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_this] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2600), + [anon_sym_AT_COLON] = ACTIONS(2602), + [anon_sym_try] = ACTIONS(2600), + [anon_sym_catch] = ACTIONS(2600), + [anon_sym_else] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_do] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2602), + [anon_sym_PERCENT] = ACTIONS(2602), + [anon_sym_SLASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_LT_LT] = ACTIONS(2602), + [anon_sym_GT_GT] = ACTIONS(2600), + [anon_sym_GT_GT_GT] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2600), + [anon_sym_PIPE] = ACTIONS(2600), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP_AMP] = ACTIONS(2602), + [anon_sym_PIPE_PIPE] = ACTIONS(2602), + [anon_sym_EQ_EQ] = ACTIONS(2602), + [anon_sym_BANG_EQ] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2600), + [anon_sym_LT_EQ] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(2600), + [anon_sym_GT_EQ] = ACTIONS(2602), + [anon_sym_EQ_GT] = ACTIONS(2602), + [anon_sym_QMARK_QMARK] = ACTIONS(2602), + [anon_sym_EQ] = ACTIONS(2600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2602), + [anon_sym_null] = ACTIONS(2600), + [anon_sym_macro] = ACTIONS(2600), + [anon_sym_abstract] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_public] = ACTIONS(2600), + [anon_sym_private] = ACTIONS(2600), + [anon_sym_extern] = ACTIONS(2600), + [anon_sym_inline] = ACTIONS(2600), + [anon_sym_overload] = ACTIONS(2600), + [anon_sym_override] = ACTIONS(2600), + [anon_sym_final] = ACTIONS(2600), + [anon_sym_class] = ACTIONS(2600), + [anon_sym_interface] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), + [anon_sym_typedef] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(2600), + [anon_sym_var] = ACTIONS(2600), + [aux_sym_integer_token1] = ACTIONS(2600), + [aux_sym_integer_token2] = ACTIONS(2602), + [aux_sym_float_token1] = ACTIONS(2600), + [aux_sym_float_token2] = ACTIONS(2602), + [anon_sym_true] = ACTIONS(2600), + [anon_sym_false] = ACTIONS(2600), + [aux_sym_string_token1] = ACTIONS(2602), + [aux_sym_string_token3] = ACTIONS(2602), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [762] = { + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(2180), + [anon_sym_package] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_cast] = ACTIONS(2178), + [anon_sym_DOLLARtype] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_untyped] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_this] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_AT_COLON] = ACTIONS(2180), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_catch] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(2180), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2180), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_GT_GT_GT] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_AMP_AMP] = ACTIONS(2180), + [anon_sym_PIPE_PIPE] = ACTIONS(2180), + [anon_sym_EQ_EQ] = ACTIONS(2180), + [anon_sym_BANG_EQ] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2180), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_EQ] = ACTIONS(2180), + [anon_sym_EQ_GT] = ACTIONS(2180), + [anon_sym_QMARK_QMARK] = ACTIONS(2180), + [anon_sym_EQ] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2180), + [anon_sym_null] = ACTIONS(2178), + [anon_sym_macro] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_inline] = ACTIONS(2178), + [anon_sym_overload] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_final] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_typedef] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [aux_sym_integer_token1] = ACTIONS(2178), + [aux_sym_integer_token2] = ACTIONS(2180), + [aux_sym_float_token1] = ACTIONS(2178), + [aux_sym_float_token2] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2178), + [anon_sym_false] = ACTIONS(2178), + [aux_sym_string_token1] = ACTIONS(2180), + [aux_sym_string_token3] = ACTIONS(2180), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [763] = { + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_package] = ACTIONS(2604), + [anon_sym_import] = ACTIONS(2604), + [anon_sym_STAR] = ACTIONS(2606), + [anon_sym_using] = ACTIONS(2604), + [anon_sym_throw] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_switch] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_cast] = ACTIONS(2604), + [anon_sym_DOLLARtype] = ACTIONS(2606), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_untyped] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_this] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2604), + [anon_sym_AT_COLON] = ACTIONS(2606), + [anon_sym_try] = ACTIONS(2604), + [anon_sym_catch] = ACTIONS(2604), + [anon_sym_else] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_do] = ACTIONS(2604), + [anon_sym_new] = ACTIONS(2604), + [anon_sym_TILDE] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2606), + [anon_sym_PERCENT] = ACTIONS(2606), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_LT_LT] = ACTIONS(2606), + [anon_sym_GT_GT] = ACTIONS(2604), + [anon_sym_GT_GT_GT] = ACTIONS(2606), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_CARET] = ACTIONS(2606), + [anon_sym_AMP_AMP] = ACTIONS(2606), + [anon_sym_PIPE_PIPE] = ACTIONS(2606), + [anon_sym_EQ_EQ] = ACTIONS(2606), + [anon_sym_BANG_EQ] = ACTIONS(2606), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_LT_EQ] = ACTIONS(2606), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_EQ] = ACTIONS(2606), + [anon_sym_EQ_GT] = ACTIONS(2606), + [anon_sym_QMARK_QMARK] = ACTIONS(2606), + [anon_sym_EQ] = ACTIONS(2604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2606), + [anon_sym_null] = ACTIONS(2604), + [anon_sym_macro] = ACTIONS(2604), + [anon_sym_abstract] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_extern] = ACTIONS(2604), + [anon_sym_inline] = ACTIONS(2604), + [anon_sym_overload] = ACTIONS(2604), + [anon_sym_override] = ACTIONS(2604), + [anon_sym_final] = ACTIONS(2604), + [anon_sym_class] = ACTIONS(2604), + [anon_sym_interface] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_typedef] = ACTIONS(2604), + [anon_sym_function] = ACTIONS(2604), + [anon_sym_var] = ACTIONS(2604), + [aux_sym_integer_token1] = ACTIONS(2604), + [aux_sym_integer_token2] = ACTIONS(2606), + [aux_sym_float_token1] = ACTIONS(2604), + [aux_sym_float_token2] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2604), + [anon_sym_false] = ACTIONS(2604), + [aux_sym_string_token1] = ACTIONS(2606), + [aux_sym_string_token3] = ACTIONS(2606), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(2610), + [sym_identifier] = ACTIONS(2608), + [anon_sym_POUND] = ACTIONS(2610), + [anon_sym_package] = ACTIONS(2608), + [anon_sym_import] = ACTIONS(2608), + [anon_sym_STAR] = ACTIONS(2610), + [anon_sym_using] = ACTIONS(2608), + [anon_sym_throw] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2610), + [anon_sym_switch] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_cast] = ACTIONS(2608), + [anon_sym_DOLLARtype] = ACTIONS(2610), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_untyped] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(2610), + [anon_sym_this] = ACTIONS(2608), + [anon_sym_AT] = ACTIONS(2608), + [anon_sym_AT_COLON] = ACTIONS(2610), + [anon_sym_try] = ACTIONS(2608), + [anon_sym_catch] = ACTIONS(2608), + [anon_sym_else] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_do] = ACTIONS(2608), + [anon_sym_new] = ACTIONS(2608), + [anon_sym_TILDE] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2608), + [anon_sym_PLUS_PLUS] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(2610), + [anon_sym_PERCENT] = ACTIONS(2610), + [anon_sym_SLASH] = ACTIONS(2608), + [anon_sym_PLUS] = ACTIONS(2608), + [anon_sym_LT_LT] = ACTIONS(2610), + [anon_sym_GT_GT] = ACTIONS(2608), + [anon_sym_GT_GT_GT] = ACTIONS(2610), + [anon_sym_AMP] = ACTIONS(2608), + [anon_sym_PIPE] = ACTIONS(2608), + [anon_sym_CARET] = ACTIONS(2610), + [anon_sym_AMP_AMP] = ACTIONS(2610), + [anon_sym_PIPE_PIPE] = ACTIONS(2610), + [anon_sym_EQ_EQ] = ACTIONS(2610), + [anon_sym_BANG_EQ] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2608), + [anon_sym_LT_EQ] = ACTIONS(2610), + [anon_sym_GT] = ACTIONS(2608), + [anon_sym_GT_EQ] = ACTIONS(2610), + [anon_sym_EQ_GT] = ACTIONS(2610), + [anon_sym_QMARK_QMARK] = ACTIONS(2610), + [anon_sym_EQ] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2610), + [anon_sym_null] = ACTIONS(2608), + [anon_sym_macro] = ACTIONS(2608), + [anon_sym_abstract] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_public] = ACTIONS(2608), + [anon_sym_private] = ACTIONS(2608), + [anon_sym_extern] = ACTIONS(2608), + [anon_sym_inline] = ACTIONS(2608), + [anon_sym_overload] = ACTIONS(2608), + [anon_sym_override] = ACTIONS(2608), + [anon_sym_final] = ACTIONS(2608), + [anon_sym_class] = ACTIONS(2608), + [anon_sym_interface] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), + [anon_sym_typedef] = ACTIONS(2608), + [anon_sym_function] = ACTIONS(2608), + [anon_sym_var] = ACTIONS(2608), + [aux_sym_integer_token1] = ACTIONS(2608), + [aux_sym_integer_token2] = ACTIONS(2610), + [aux_sym_float_token1] = ACTIONS(2608), + [aux_sym_float_token2] = ACTIONS(2610), + [anon_sym_true] = ACTIONS(2608), + [anon_sym_false] = ACTIONS(2608), + [aux_sym_string_token1] = ACTIONS(2610), + [aux_sym_string_token3] = ACTIONS(2610), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_package] = ACTIONS(2612), + [anon_sym_import] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_using] = ACTIONS(2612), + [anon_sym_throw] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_cast] = ACTIONS(2612), + [anon_sym_DOLLARtype] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_untyped] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_this] = ACTIONS(2612), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_AT_COLON] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2612), + [anon_sym_catch] = ACTIONS(2612), + [anon_sym_else] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_new] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PERCENT] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_LT_LT] = ACTIONS(2614), + [anon_sym_GT_GT] = ACTIONS(2612), + [anon_sym_GT_GT_GT] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(2614), + [anon_sym_PIPE_PIPE] = ACTIONS(2614), + [anon_sym_EQ_EQ] = ACTIONS(2614), + [anon_sym_BANG_EQ] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_LT_EQ] = ACTIONS(2614), + [anon_sym_GT] = ACTIONS(2612), + [anon_sym_GT_EQ] = ACTIONS(2614), + [anon_sym_EQ_GT] = ACTIONS(2614), + [anon_sym_QMARK_QMARK] = ACTIONS(2614), + [anon_sym_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), + [anon_sym_null] = ACTIONS(2612), + [anon_sym_macro] = ACTIONS(2612), + [anon_sym_abstract] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym_overload] = ACTIONS(2612), + [anon_sym_override] = ACTIONS(2612), + [anon_sym_final] = ACTIONS(2612), + [anon_sym_class] = ACTIONS(2612), + [anon_sym_interface] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_function] = ACTIONS(2612), + [anon_sym_var] = ACTIONS(2612), + [aux_sym_integer_token1] = ACTIONS(2612), + [aux_sym_integer_token2] = ACTIONS(2614), + [aux_sym_float_token1] = ACTIONS(2612), + [aux_sym_float_token2] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [aux_sym_string_token1] = ACTIONS(2614), + [aux_sym_string_token3] = ACTIONS(2614), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [766] = { + [ts_builtin_sym_end] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_package] = ACTIONS(2408), + [anon_sym_import] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2408), + [anon_sym_throw] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_cast] = ACTIONS(2408), + [anon_sym_DOLLARtype] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_untyped] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_this] = ACTIONS(2408), + [anon_sym_AT] = ACTIONS(2408), + [anon_sym_AT_COLON] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_catch] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2408), + [anon_sym_GT_GT_GT] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2408), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_EQ_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2408), + [anon_sym_LT_EQ] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2408), + [anon_sym_GT_EQ] = ACTIONS(2410), + [anon_sym_EQ_GT] = ACTIONS(2410), + [anon_sym_QMARK_QMARK] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2410), + [anon_sym_null] = ACTIONS(2408), + [anon_sym_macro] = ACTIONS(2408), + [anon_sym_abstract] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_overload] = ACTIONS(2408), + [anon_sym_override] = ACTIONS(2408), + [anon_sym_final] = ACTIONS(2408), + [anon_sym_class] = ACTIONS(2408), + [anon_sym_interface] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_function] = ACTIONS(2408), + [anon_sym_var] = ACTIONS(2408), + [aux_sym_integer_token1] = ACTIONS(2408), + [aux_sym_integer_token2] = ACTIONS(2410), + [aux_sym_float_token1] = ACTIONS(2408), + [aux_sym_float_token2] = ACTIONS(2410), + [anon_sym_true] = ACTIONS(2408), + [anon_sym_false] = ACTIONS(2408), + [aux_sym_string_token1] = ACTIONS(2410), + [aux_sym_string_token3] = ACTIONS(2410), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2618), + [anon_sym_package] = ACTIONS(2616), + [anon_sym_import] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_using] = ACTIONS(2616), + [anon_sym_throw] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_cast] = ACTIONS(2616), + [anon_sym_DOLLARtype] = ACTIONS(2618), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_untyped] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym_this] = ACTIONS(2616), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_AT_COLON] = ACTIONS(2618), + [anon_sym_try] = ACTIONS(2616), + [anon_sym_catch] = ACTIONS(2616), + [anon_sym_else] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_new] = ACTIONS(2616), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [anon_sym_PERCENT] = ACTIONS(2618), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_LT_LT] = ACTIONS(2618), + [anon_sym_GT_GT] = ACTIONS(2616), + [anon_sym_GT_GT_GT] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_CARET] = ACTIONS(2618), + [anon_sym_AMP_AMP] = ACTIONS(2618), + [anon_sym_PIPE_PIPE] = ACTIONS(2618), + [anon_sym_EQ_EQ] = ACTIONS(2618), + [anon_sym_BANG_EQ] = ACTIONS(2618), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_LT_EQ] = ACTIONS(2618), + [anon_sym_GT] = ACTIONS(2616), + [anon_sym_GT_EQ] = ACTIONS(2618), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_QMARK_QMARK] = ACTIONS(2618), + [anon_sym_EQ] = ACTIONS(2616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), + [anon_sym_null] = ACTIONS(2616), + [anon_sym_macro] = ACTIONS(2616), + [anon_sym_abstract] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_public] = ACTIONS(2616), + [anon_sym_private] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym_inline] = ACTIONS(2616), + [anon_sym_overload] = ACTIONS(2616), + [anon_sym_override] = ACTIONS(2616), + [anon_sym_final] = ACTIONS(2616), + [anon_sym_class] = ACTIONS(2616), + [anon_sym_interface] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_typedef] = ACTIONS(2616), + [anon_sym_function] = ACTIONS(2616), + [anon_sym_var] = ACTIONS(2616), + [aux_sym_integer_token1] = ACTIONS(2616), + [aux_sym_integer_token2] = ACTIONS(2618), + [aux_sym_float_token1] = ACTIONS(2616), + [aux_sym_float_token2] = ACTIONS(2618), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym_string_token1] = ACTIONS(2618), + [aux_sym_string_token3] = ACTIONS(2618), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [768] = { + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2182), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_package] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_cast] = ACTIONS(2182), + [anon_sym_DOLLARtype] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_untyped] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_this] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_AT_COLON] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_catch] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PERCENT] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_LT_LT] = ACTIONS(2184), + [anon_sym_GT_GT] = ACTIONS(2182), + [anon_sym_GT_GT_GT] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_CARET] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_EQ_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(2184), + [anon_sym_GT] = ACTIONS(2182), + [anon_sym_GT_EQ] = ACTIONS(2184), + [anon_sym_EQ_GT] = ACTIONS(2184), + [anon_sym_QMARK_QMARK] = ACTIONS(2184), + [anon_sym_EQ] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2182), + [anon_sym_macro] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_inline] = ACTIONS(2182), + [anon_sym_overload] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_final] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_typedef] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [aux_sym_integer_token1] = ACTIONS(2182), + [aux_sym_integer_token2] = ACTIONS(2184), + [aux_sym_float_token1] = ACTIONS(2182), + [aux_sym_float_token2] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2182), + [anon_sym_false] = ACTIONS(2182), + [aux_sym_string_token1] = ACTIONS(2184), + [aux_sym_string_token3] = ACTIONS(2184), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [769] = { + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2622), + [anon_sym_package] = ACTIONS(2620), + [anon_sym_import] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_using] = ACTIONS(2620), + [anon_sym_throw] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_cast] = ACTIONS(2620), + [anon_sym_DOLLARtype] = ACTIONS(2622), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_untyped] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_this] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_AT_COLON] = ACTIONS(2622), + [anon_sym_try] = ACTIONS(2620), + [anon_sym_catch] = ACTIONS(2620), + [anon_sym_else] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_new] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_PERCENT] = ACTIONS(2622), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_LT_LT] = ACTIONS(2622), + [anon_sym_GT_GT] = ACTIONS(2620), + [anon_sym_GT_GT_GT] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_AMP_AMP] = ACTIONS(2622), + [anon_sym_PIPE_PIPE] = ACTIONS(2622), + [anon_sym_EQ_EQ] = ACTIONS(2622), + [anon_sym_BANG_EQ] = ACTIONS(2622), + [anon_sym_LT] = ACTIONS(2620), + [anon_sym_LT_EQ] = ACTIONS(2622), + [anon_sym_GT] = ACTIONS(2620), + [anon_sym_GT_EQ] = ACTIONS(2622), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_QMARK_QMARK] = ACTIONS(2622), + [anon_sym_EQ] = ACTIONS(2620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2622), + [anon_sym_null] = ACTIONS(2620), + [anon_sym_macro] = ACTIONS(2620), + [anon_sym_abstract] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_public] = ACTIONS(2620), + [anon_sym_private] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym_inline] = ACTIONS(2620), + [anon_sym_overload] = ACTIONS(2620), + [anon_sym_override] = ACTIONS(2620), + [anon_sym_final] = ACTIONS(2620), + [anon_sym_class] = ACTIONS(2620), + [anon_sym_interface] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_typedef] = ACTIONS(2620), + [anon_sym_function] = ACTIONS(2620), + [anon_sym_var] = ACTIONS(2620), + [aux_sym_integer_token1] = ACTIONS(2620), + [aux_sym_integer_token2] = ACTIONS(2622), + [aux_sym_float_token1] = ACTIONS(2620), + [aux_sym_float_token2] = ACTIONS(2622), + [anon_sym_true] = ACTIONS(2620), + [anon_sym_false] = ACTIONS(2620), + [aux_sym_string_token1] = ACTIONS(2622), + [aux_sym_string_token3] = ACTIONS(2622), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [770] = { + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2638), + [anon_sym_package] = ACTIONS(2636), + [anon_sym_import] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_using] = ACTIONS(2636), + [anon_sym_throw] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_cast] = ACTIONS(2636), + [anon_sym_DOLLARtype] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_untyped] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym_this] = ACTIONS(2636), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_AT_COLON] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_catch] = ACTIONS(2636), + [anon_sym_else] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [anon_sym_PERCENT] = ACTIONS(2638), + [anon_sym_SLASH] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_LT_LT] = ACTIONS(2638), + [anon_sym_GT_GT] = ACTIONS(2636), + [anon_sym_GT_GT_GT] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(2636), + [anon_sym_CARET] = ACTIONS(2638), + [anon_sym_AMP_AMP] = ACTIONS(2638), + [anon_sym_PIPE_PIPE] = ACTIONS(2638), + [anon_sym_EQ_EQ] = ACTIONS(2638), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2636), + [anon_sym_LT_EQ] = ACTIONS(2638), + [anon_sym_GT] = ACTIONS(2636), + [anon_sym_GT_EQ] = ACTIONS(2638), + [anon_sym_EQ_GT] = ACTIONS(2638), + [anon_sym_QMARK_QMARK] = ACTIONS(2638), + [anon_sym_EQ] = ACTIONS(2636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_macro] = ACTIONS(2636), + [anon_sym_abstract] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_public] = ACTIONS(2636), + [anon_sym_private] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym_inline] = ACTIONS(2636), + [anon_sym_overload] = ACTIONS(2636), + [anon_sym_override] = ACTIONS(2636), + [anon_sym_final] = ACTIONS(2636), + [anon_sym_class] = ACTIONS(2636), + [anon_sym_interface] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_typedef] = ACTIONS(2636), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_var] = ACTIONS(2636), + [aux_sym_integer_token1] = ACTIONS(2636), + [aux_sym_integer_token2] = ACTIONS(2638), + [aux_sym_float_token1] = ACTIONS(2636), + [aux_sym_float_token2] = ACTIONS(2638), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [aux_sym_string_token1] = ACTIONS(2638), + [aux_sym_string_token3] = ACTIONS(2638), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [771] = { + [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_STAR] = ACTIONS(1994), + [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_for] = ACTIONS(1992), + [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_try] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [772] = { + [ts_builtin_sym_end] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(2188), + [anon_sym_package] = ACTIONS(2186), + [anon_sym_import] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_cast] = ACTIONS(2186), + [anon_sym_DOLLARtype] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_untyped] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_this] = ACTIONS(2186), + [anon_sym_AT] = ACTIONS(2186), + [anon_sym_AT_COLON] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_LT_LT] = ACTIONS(2188), + [anon_sym_GT_GT] = ACTIONS(2186), + [anon_sym_GT_GT_GT] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_CARET] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2188), + [anon_sym_PIPE_PIPE] = ACTIONS(2188), + [anon_sym_EQ_EQ] = ACTIONS(2188), + [anon_sym_BANG_EQ] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_LT_EQ] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2186), + [anon_sym_GT_EQ] = ACTIONS(2188), + [anon_sym_EQ_GT] = ACTIONS(2188), + [anon_sym_QMARK_QMARK] = ACTIONS(2188), + [anon_sym_EQ] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2188), + [anon_sym_null] = ACTIONS(2186), + [anon_sym_macro] = ACTIONS(2186), + [anon_sym_abstract] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym_overload] = ACTIONS(2186), + [anon_sym_override] = ACTIONS(2186), + [anon_sym_final] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_interface] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_function] = ACTIONS(2186), + [anon_sym_var] = ACTIONS(2186), + [aux_sym_integer_token1] = ACTIONS(2186), + [aux_sym_integer_token2] = ACTIONS(2188), + [aux_sym_float_token1] = ACTIONS(2186), + [aux_sym_float_token2] = ACTIONS(2188), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [aux_sym_string_token1] = ACTIONS(2188), + [aux_sym_string_token3] = ACTIONS(2188), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [773] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_package] = ACTIONS(2644), + [anon_sym_import] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2644), + [anon_sym_throw] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_cast] = ACTIONS(2644), + [anon_sym_DOLLARtype] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_untyped] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_this] = ACTIONS(2644), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_AT_COLON] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_catch] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2644), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2644), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_QMARK_QMARK] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_macro] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym_overload] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_final] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_var] = ACTIONS(2644), + [aux_sym_integer_token1] = ACTIONS(2644), + [aux_sym_integer_token2] = ACTIONS(2647), + [aux_sym_float_token1] = ACTIONS(2644), + [aux_sym_float_token2] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym_string_token1] = ACTIONS(2647), + [aux_sym_string_token3] = ACTIONS(2647), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [774] = { + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(2660), + [anon_sym_package] = ACTIONS(2658), + [anon_sym_import] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_using] = ACTIONS(2658), + [anon_sym_throw] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2660), + [anon_sym_switch] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_cast] = ACTIONS(2658), + [anon_sym_DOLLARtype] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_untyped] = ACTIONS(2658), + [anon_sym_break] = ACTIONS(2658), + [anon_sym_continue] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_this] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2658), + [anon_sym_AT_COLON] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_catch] = ACTIONS(2658), + [anon_sym_else] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2660), + [anon_sym_DASH_DASH] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_SLASH] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_LT_LT] = ACTIONS(2660), + [anon_sym_GT_GT] = ACTIONS(2658), + [anon_sym_GT_GT_GT] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_CARET] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_EQ_EQ] = ACTIONS(2660), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_LT_EQ] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2658), + [anon_sym_GT_EQ] = ACTIONS(2660), + [anon_sym_EQ_GT] = ACTIONS(2660), + [anon_sym_QMARK_QMARK] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_macro] = ACTIONS(2658), + [anon_sym_abstract] = ACTIONS(2658), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_public] = ACTIONS(2658), + [anon_sym_private] = ACTIONS(2658), + [anon_sym_extern] = ACTIONS(2658), + [anon_sym_inline] = ACTIONS(2658), + [anon_sym_overload] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2658), + [anon_sym_final] = ACTIONS(2658), + [anon_sym_class] = ACTIONS(2658), + [anon_sym_interface] = ACTIONS(2658), + [anon_sym_enum] = ACTIONS(2658), + [anon_sym_typedef] = ACTIONS(2658), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_var] = ACTIONS(2658), + [aux_sym_integer_token1] = ACTIONS(2658), + [aux_sym_integer_token2] = ACTIONS(2660), + [aux_sym_float_token1] = ACTIONS(2658), + [aux_sym_float_token2] = ACTIONS(2660), + [anon_sym_true] = ACTIONS(2658), + [anon_sym_false] = ACTIONS(2658), + [aux_sym_string_token1] = ACTIONS(2660), + [aux_sym_string_token3] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [775] = { + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(2664), + [anon_sym_package] = ACTIONS(2662), + [anon_sym_import] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_using] = ACTIONS(2662), + [anon_sym_throw] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_switch] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_cast] = ACTIONS(2662), + [anon_sym_DOLLARtype] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_untyped] = ACTIONS(2662), + [anon_sym_break] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2662), + [anon_sym_AT_COLON] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_catch] = ACTIONS(2662), + [anon_sym_else] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT] = ACTIONS(2662), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_EQ_GT] = ACTIONS(2664), + [anon_sym_QMARK_QMARK] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_macro] = ACTIONS(2662), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_public] = ACTIONS(2662), + [anon_sym_private] = ACTIONS(2662), + [anon_sym_extern] = ACTIONS(2662), + [anon_sym_inline] = ACTIONS(2662), + [anon_sym_overload] = ACTIONS(2662), + [anon_sym_override] = ACTIONS(2662), + [anon_sym_final] = ACTIONS(2662), + [anon_sym_class] = ACTIONS(2662), + [anon_sym_interface] = ACTIONS(2662), + [anon_sym_enum] = ACTIONS(2662), + [anon_sym_typedef] = ACTIONS(2662), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_var] = ACTIONS(2662), + [aux_sym_integer_token1] = ACTIONS(2662), + [aux_sym_integer_token2] = ACTIONS(2664), + [aux_sym_float_token1] = ACTIONS(2662), + [aux_sym_float_token2] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2662), + [anon_sym_false] = ACTIONS(2662), + [aux_sym_string_token1] = ACTIONS(2664), + [aux_sym_string_token3] = ACTIONS(2664), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [776] = { + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_package] = ACTIONS(2190), + [anon_sym_import] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_using] = ACTIONS(2190), + [anon_sym_throw] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_cast] = ACTIONS(2190), + [anon_sym_DOLLARtype] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_untyped] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_this] = ACTIONS(2190), + [anon_sym_AT] = ACTIONS(2190), + [anon_sym_AT_COLON] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_catch] = ACTIONS(2190), + [anon_sym_else] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS_PLUS] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_PERCENT] = ACTIONS(2192), + [anon_sym_SLASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2192), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2192), + [anon_sym_AMP_AMP] = ACTIONS(2192), + [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [anon_sym_EQ_EQ] = ACTIONS(2192), + [anon_sym_BANG_EQ] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_LT_EQ] = ACTIONS(2192), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2192), + [anon_sym_EQ_GT] = ACTIONS(2192), + [anon_sym_QMARK_QMARK] = ACTIONS(2192), + [anon_sym_EQ] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), + [anon_sym_null] = ACTIONS(2190), + [anon_sym_macro] = ACTIONS(2190), + [anon_sym_abstract] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_public] = ACTIONS(2190), + [anon_sym_private] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_inline] = ACTIONS(2190), + [anon_sym_overload] = ACTIONS(2190), + [anon_sym_override] = ACTIONS(2190), + [anon_sym_final] = ACTIONS(2190), + [anon_sym_class] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_typedef] = ACTIONS(2190), + [anon_sym_function] = ACTIONS(2190), + [anon_sym_var] = ACTIONS(2190), + [aux_sym_integer_token1] = ACTIONS(2190), + [aux_sym_integer_token2] = ACTIONS(2192), + [aux_sym_float_token1] = ACTIONS(2190), + [aux_sym_float_token2] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [aux_sym_string_token1] = ACTIONS(2192), + [aux_sym_string_token3] = ACTIONS(2192), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [777] = { + [ts_builtin_sym_end] = ACTIONS(2676), + [sym_identifier] = ACTIONS(2674), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_package] = ACTIONS(2674), + [anon_sym_import] = ACTIONS(2674), + [anon_sym_STAR] = ACTIONS(2676), + [anon_sym_using] = ACTIONS(2674), + [anon_sym_throw] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_switch] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_cast] = ACTIONS(2674), + [anon_sym_DOLLARtype] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2674), + [anon_sym_return] = ACTIONS(2674), + [anon_sym_untyped] = ACTIONS(2674), + [anon_sym_break] = ACTIONS(2674), + [anon_sym_continue] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_this] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2674), + [anon_sym_AT_COLON] = ACTIONS(2676), + [anon_sym_try] = ACTIONS(2674), + [anon_sym_catch] = ACTIONS(2674), + [anon_sym_else] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2674), + [anon_sym_while] = ACTIONS(2674), + [anon_sym_do] = ACTIONS(2674), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [anon_sym_PERCENT] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2674), + [anon_sym_LT_LT] = ACTIONS(2676), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_GT_GT_GT] = ACTIONS(2676), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2676), + [anon_sym_AMP_AMP] = ACTIONS(2676), + [anon_sym_PIPE_PIPE] = ACTIONS(2676), + [anon_sym_EQ_EQ] = ACTIONS(2676), + [anon_sym_BANG_EQ] = ACTIONS(2676), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_LT_EQ] = ACTIONS(2676), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_EQ] = ACTIONS(2676), + [anon_sym_EQ_GT] = ACTIONS(2676), + [anon_sym_QMARK_QMARK] = ACTIONS(2676), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2676), + [anon_sym_null] = ACTIONS(2674), + [anon_sym_macro] = ACTIONS(2674), + [anon_sym_abstract] = ACTIONS(2674), + [anon_sym_static] = ACTIONS(2674), + [anon_sym_public] = ACTIONS(2674), + [anon_sym_private] = ACTIONS(2674), + [anon_sym_extern] = ACTIONS(2674), + [anon_sym_inline] = ACTIONS(2674), + [anon_sym_overload] = ACTIONS(2674), + [anon_sym_override] = ACTIONS(2674), + [anon_sym_final] = ACTIONS(2674), + [anon_sym_class] = ACTIONS(2674), + [anon_sym_interface] = ACTIONS(2674), + [anon_sym_enum] = ACTIONS(2674), + [anon_sym_typedef] = ACTIONS(2674), + [anon_sym_function] = ACTIONS(2674), + [anon_sym_var] = ACTIONS(2674), + [aux_sym_integer_token1] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token1] = ACTIONS(2674), + [aux_sym_float_token2] = ACTIONS(2676), + [anon_sym_true] = ACTIONS(2674), + [anon_sym_false] = ACTIONS(2674), + [aux_sym_string_token1] = ACTIONS(2676), + [aux_sym_string_token3] = ACTIONS(2676), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [778] = { + [ts_builtin_sym_end] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_package] = ACTIONS(2678), + [anon_sym_import] = ACTIONS(2678), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_using] = ACTIONS(2678), + [anon_sym_throw] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_cast] = ACTIONS(2678), + [anon_sym_DOLLARtype] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2678), + [anon_sym_return] = ACTIONS(2678), + [anon_sym_untyped] = ACTIONS(2678), + [anon_sym_break] = ACTIONS(2678), + [anon_sym_continue] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2680), + [anon_sym_this] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2678), + [anon_sym_AT_COLON] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2678), + [anon_sym_catch] = ACTIONS(2678), + [anon_sym_else] = ACTIONS(2678), + [anon_sym_if] = ACTIONS(2678), + [anon_sym_while] = ACTIONS(2678), + [anon_sym_do] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2680), + [anon_sym_PERCENT] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2678), + [anon_sym_LT_LT] = ACTIONS(2680), + [anon_sym_GT_GT] = ACTIONS(2678), + [anon_sym_GT_GT_GT] = ACTIONS(2680), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_CARET] = ACTIONS(2680), + [anon_sym_AMP_AMP] = ACTIONS(2680), + [anon_sym_PIPE_PIPE] = ACTIONS(2680), + [anon_sym_EQ_EQ] = ACTIONS(2680), + [anon_sym_BANG_EQ] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2678), + [anon_sym_LT_EQ] = ACTIONS(2680), + [anon_sym_GT] = ACTIONS(2678), + [anon_sym_GT_EQ] = ACTIONS(2680), + [anon_sym_EQ_GT] = ACTIONS(2680), + [anon_sym_QMARK_QMARK] = ACTIONS(2680), + [anon_sym_EQ] = ACTIONS(2678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), + [anon_sym_null] = ACTIONS(2678), + [anon_sym_macro] = ACTIONS(2678), + [anon_sym_abstract] = ACTIONS(2678), + [anon_sym_static] = ACTIONS(2678), + [anon_sym_public] = ACTIONS(2678), + [anon_sym_private] = ACTIONS(2678), + [anon_sym_extern] = ACTIONS(2678), + [anon_sym_inline] = ACTIONS(2678), + [anon_sym_overload] = ACTIONS(2678), + [anon_sym_override] = ACTIONS(2678), + [anon_sym_final] = ACTIONS(2678), + [anon_sym_class] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2678), + [anon_sym_enum] = ACTIONS(2678), + [anon_sym_typedef] = ACTIONS(2678), + [anon_sym_function] = ACTIONS(2678), + [anon_sym_var] = ACTIONS(2678), + [aux_sym_integer_token1] = ACTIONS(2678), + [aux_sym_integer_token2] = ACTIONS(2680), + [aux_sym_float_token1] = ACTIONS(2678), + [aux_sym_float_token2] = ACTIONS(2680), + [anon_sym_true] = ACTIONS(2678), + [anon_sym_false] = ACTIONS(2678), + [aux_sym_string_token1] = ACTIONS(2680), + [aux_sym_string_token3] = ACTIONS(2680), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [779] = { + [ts_builtin_sym_end] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_package] = ACTIONS(2194), + [anon_sym_import] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2194), + [anon_sym_throw] = ACTIONS(2194), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_cast] = ACTIONS(2194), + [anon_sym_DOLLARtype] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_untyped] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_this] = ACTIONS(2194), + [anon_sym_AT] = ACTIONS(2194), + [anon_sym_AT_COLON] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2194), + [anon_sym_catch] = ACTIONS(2194), + [anon_sym_else] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [anon_sym_PERCENT] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_LT_LT] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(2194), + [anon_sym_GT_GT_GT] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_EQ_EQ] = ACTIONS(2196), + [anon_sym_BANG_EQ] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_LT_EQ] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2194), + [anon_sym_GT_EQ] = ACTIONS(2196), + [anon_sym_EQ_GT] = ACTIONS(2196), + [anon_sym_QMARK_QMARK] = ACTIONS(2196), + [anon_sym_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2196), + [anon_sym_null] = ACTIONS(2194), + [anon_sym_macro] = ACTIONS(2194), + [anon_sym_abstract] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym_inline] = ACTIONS(2194), + [anon_sym_overload] = ACTIONS(2194), + [anon_sym_override] = ACTIONS(2194), + [anon_sym_final] = ACTIONS(2194), + [anon_sym_class] = ACTIONS(2194), + [anon_sym_interface] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_function] = ACTIONS(2194), + [anon_sym_var] = ACTIONS(2194), + [aux_sym_integer_token1] = ACTIONS(2194), + [aux_sym_integer_token2] = ACTIONS(2196), + [aux_sym_float_token1] = ACTIONS(2194), + [aux_sym_float_token2] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [aux_sym_string_token1] = ACTIONS(2196), + [aux_sym_string_token3] = ACTIONS(2196), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [780] = { + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2690), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_package] = ACTIONS(2690), + [anon_sym_import] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_using] = ACTIONS(2690), + [anon_sym_throw] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_cast] = ACTIONS(2690), + [anon_sym_DOLLARtype] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2690), + [anon_sym_untyped] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_this] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_AT_COLON] = ACTIONS(2692), + [anon_sym_try] = ACTIONS(2690), + [anon_sym_catch] = ACTIONS(2690), + [anon_sym_else] = ACTIONS(2690), + [anon_sym_if] = ACTIONS(2690), + [anon_sym_while] = ACTIONS(2690), + [anon_sym_do] = ACTIONS(2690), + [anon_sym_new] = ACTIONS(2690), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2690), + [anon_sym_PLUS] = ACTIONS(2690), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2690), + [anon_sym_GT_GT_GT] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2692), + [anon_sym_BANG_EQ] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2690), + [anon_sym_LT_EQ] = ACTIONS(2692), + [anon_sym_GT] = ACTIONS(2690), + [anon_sym_GT_EQ] = ACTIONS(2692), + [anon_sym_EQ_GT] = ACTIONS(2692), + [anon_sym_QMARK_QMARK] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2690), + [anon_sym_macro] = ACTIONS(2690), + [anon_sym_abstract] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(2690), + [anon_sym_public] = ACTIONS(2690), + [anon_sym_private] = ACTIONS(2690), + [anon_sym_extern] = ACTIONS(2690), + [anon_sym_inline] = ACTIONS(2690), + [anon_sym_overload] = ACTIONS(2690), + [anon_sym_override] = ACTIONS(2690), + [anon_sym_final] = ACTIONS(2690), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_interface] = ACTIONS(2690), + [anon_sym_enum] = ACTIONS(2690), + [anon_sym_typedef] = ACTIONS(2690), + [anon_sym_function] = ACTIONS(2690), + [anon_sym_var] = ACTIONS(2690), + [aux_sym_integer_token1] = ACTIONS(2690), + [aux_sym_integer_token2] = ACTIONS(2692), + [aux_sym_float_token1] = ACTIONS(2690), + [aux_sym_float_token2] = ACTIONS(2692), + [anon_sym_true] = ACTIONS(2690), + [anon_sym_false] = ACTIONS(2690), + [aux_sym_string_token1] = ACTIONS(2692), + [aux_sym_string_token3] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [781] = { + [ts_builtin_sym_end] = ACTIONS(2696), + [sym_identifier] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_package] = ACTIONS(2694), + [anon_sym_import] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_using] = ACTIONS(2694), + [anon_sym_throw] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_switch] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_cast] = ACTIONS(2694), + [anon_sym_DOLLARtype] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_untyped] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2696), + [anon_sym_this] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_AT_COLON] = ACTIONS(2696), + [anon_sym_try] = ACTIONS(2694), + [anon_sym_catch] = ACTIONS(2694), + [anon_sym_else] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_while] = ACTIONS(2694), + [anon_sym_do] = ACTIONS(2694), + [anon_sym_new] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP_AMP] = ACTIONS(2696), + [anon_sym_PIPE_PIPE] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2696), + [anon_sym_BANG_EQ] = ACTIONS(2696), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2696), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2696), + [anon_sym_EQ_GT] = ACTIONS(2696), + [anon_sym_QMARK_QMARK] = ACTIONS(2696), + [anon_sym_EQ] = ACTIONS(2694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + [anon_sym_null] = ACTIONS(2694), + [anon_sym_macro] = ACTIONS(2694), + [anon_sym_abstract] = ACTIONS(2694), + [anon_sym_static] = ACTIONS(2694), + [anon_sym_public] = ACTIONS(2694), + [anon_sym_private] = ACTIONS(2694), + [anon_sym_extern] = ACTIONS(2694), + [anon_sym_inline] = ACTIONS(2694), + [anon_sym_overload] = ACTIONS(2694), + [anon_sym_override] = ACTIONS(2694), + [anon_sym_final] = ACTIONS(2694), + [anon_sym_class] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_typedef] = ACTIONS(2694), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_var] = ACTIONS(2694), + [aux_sym_integer_token1] = ACTIONS(2694), + [aux_sym_integer_token2] = ACTIONS(2696), + [aux_sym_float_token1] = ACTIONS(2694), + [aux_sym_float_token2] = ACTIONS(2696), + [anon_sym_true] = ACTIONS(2694), + [anon_sym_false] = ACTIONS(2694), + [aux_sym_string_token1] = ACTIONS(2696), + [aux_sym_string_token3] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [782] = { + [sym_else_clause] = STATE(669), + [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_STAR] = ACTIONS(1974), + [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_for] = ACTIONS(1972), + [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_try] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [783] = { + [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_STAR] = ACTIONS(2254), + [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_for] = ACTIONS(2252), + [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_try] = ACTIONS(2252), + [anon_sym_catch] = ACTIONS(2252), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [784] = { + [ts_builtin_sym_end] = ACTIONS(2700), + [sym_identifier] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_package] = ACTIONS(2698), + [anon_sym_import] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_using] = ACTIONS(2698), + [anon_sym_throw] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_cast] = ACTIONS(2698), + [anon_sym_DOLLARtype] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_return] = ACTIONS(2698), + [anon_sym_untyped] = ACTIONS(2698), + [anon_sym_break] = ACTIONS(2698), + [anon_sym_continue] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_this] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_AT_COLON] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2698), + [anon_sym_catch] = ACTIONS(2698), + [anon_sym_else] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [anon_sym_do] = ACTIONS(2698), + [anon_sym_new] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2698), + [anon_sym_PLUS] = ACTIONS(2698), + [anon_sym_LT_LT] = ACTIONS(2700), + [anon_sym_GT_GT] = ACTIONS(2698), + [anon_sym_GT_GT_GT] = ACTIONS(2700), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_AMP_AMP] = ACTIONS(2700), + [anon_sym_PIPE_PIPE] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2700), + [anon_sym_BANG_EQ] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_LT_EQ] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2698), + [anon_sym_GT_EQ] = ACTIONS(2700), + [anon_sym_EQ_GT] = ACTIONS(2700), + [anon_sym_QMARK_QMARK] = ACTIONS(2700), + [anon_sym_EQ] = ACTIONS(2698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2698), + [anon_sym_macro] = ACTIONS(2698), + [anon_sym_abstract] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2698), + [anon_sym_public] = ACTIONS(2698), + [anon_sym_private] = ACTIONS(2698), + [anon_sym_extern] = ACTIONS(2698), + [anon_sym_inline] = ACTIONS(2698), + [anon_sym_overload] = ACTIONS(2698), + [anon_sym_override] = ACTIONS(2698), + [anon_sym_final] = ACTIONS(2698), + [anon_sym_class] = ACTIONS(2698), + [anon_sym_interface] = ACTIONS(2698), + [anon_sym_enum] = ACTIONS(2698), + [anon_sym_typedef] = ACTIONS(2698), + [anon_sym_function] = ACTIONS(2698), + [anon_sym_var] = ACTIONS(2698), + [aux_sym_integer_token1] = ACTIONS(2698), + [aux_sym_integer_token2] = ACTIONS(2700), + [aux_sym_float_token1] = ACTIONS(2698), + [aux_sym_float_token2] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2698), + [anon_sym_false] = ACTIONS(2698), + [aux_sym_string_token1] = ACTIONS(2700), + [aux_sym_string_token3] = ACTIONS(2700), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [785] = { + [ts_builtin_sym_end] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2702), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_package] = ACTIONS(2702), + [anon_sym_import] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_using] = ACTIONS(2702), + [anon_sym_throw] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_cast] = ACTIONS(2702), + [anon_sym_DOLLARtype] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2702), + [anon_sym_untyped] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2704), + [anon_sym_this] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_AT_COLON] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2702), + [anon_sym_catch] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [anon_sym_do] = ACTIONS(2702), + [anon_sym_new] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [anon_sym_PERCENT] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2704), + [anon_sym_GT_GT] = ACTIONS(2702), + [anon_sym_GT_GT_GT] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2704), + [anon_sym_BANG_EQ] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2702), + [anon_sym_LT_EQ] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2704), + [anon_sym_EQ_GT] = ACTIONS(2704), + [anon_sym_QMARK_QMARK] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2702), + [anon_sym_macro] = ACTIONS(2702), + [anon_sym_abstract] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2702), + [anon_sym_public] = ACTIONS(2702), + [anon_sym_private] = ACTIONS(2702), + [anon_sym_extern] = ACTIONS(2702), + [anon_sym_inline] = ACTIONS(2702), + [anon_sym_overload] = ACTIONS(2702), + [anon_sym_override] = ACTIONS(2702), + [anon_sym_final] = ACTIONS(2702), + [anon_sym_class] = ACTIONS(2702), + [anon_sym_interface] = ACTIONS(2702), + [anon_sym_enum] = ACTIONS(2702), + [anon_sym_typedef] = ACTIONS(2702), + [anon_sym_function] = ACTIONS(2702), + [anon_sym_var] = ACTIONS(2702), + [aux_sym_integer_token1] = ACTIONS(2702), + [aux_sym_integer_token2] = ACTIONS(2704), + [aux_sym_float_token1] = ACTIONS(2702), + [aux_sym_float_token2] = ACTIONS(2704), + [anon_sym_true] = ACTIONS(2702), + [anon_sym_false] = ACTIONS(2702), + [aux_sym_string_token1] = ACTIONS(2704), + [aux_sym_string_token3] = ACTIONS(2704), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [786] = { + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_package] = ACTIONS(2706), + [anon_sym_import] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_using] = ACTIONS(2706), + [anon_sym_throw] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_cast] = ACTIONS(2706), + [anon_sym_DOLLARtype] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2706), + [anon_sym_untyped] = ACTIONS(2706), + [anon_sym_break] = ACTIONS(2706), + [anon_sym_continue] = ACTIONS(2706), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_this] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_AT_COLON] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2706), + [anon_sym_catch] = ACTIONS(2706), + [anon_sym_else] = ACTIONS(2706), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_while] = ACTIONS(2706), + [anon_sym_do] = ACTIONS(2706), + [anon_sym_new] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2706), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2706), + [anon_sym_GT_GT_GT] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2706), + [anon_sym_LT_EQ] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2708), + [anon_sym_EQ_GT] = ACTIONS(2708), + [anon_sym_QMARK_QMARK] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2706), + [anon_sym_macro] = ACTIONS(2706), + [anon_sym_abstract] = ACTIONS(2706), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2706), + [anon_sym_private] = ACTIONS(2706), + [anon_sym_extern] = ACTIONS(2706), + [anon_sym_inline] = ACTIONS(2706), + [anon_sym_overload] = ACTIONS(2706), + [anon_sym_override] = ACTIONS(2706), + [anon_sym_final] = ACTIONS(2706), + [anon_sym_class] = ACTIONS(2706), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2706), + [anon_sym_typedef] = ACTIONS(2706), + [anon_sym_function] = ACTIONS(2706), + [anon_sym_var] = ACTIONS(2706), + [aux_sym_integer_token1] = ACTIONS(2706), + [aux_sym_integer_token2] = ACTIONS(2708), + [aux_sym_float_token1] = ACTIONS(2706), + [aux_sym_float_token2] = ACTIONS(2708), + [anon_sym_true] = ACTIONS(2706), + [anon_sym_false] = ACTIONS(2706), + [aux_sym_string_token1] = ACTIONS(2708), + [aux_sym_string_token3] = ACTIONS(2708), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [787] = { + [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), + }, + [788] = { + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_package] = ACTIONS(2198), + [anon_sym_import] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(2198), + [anon_sym_throw] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_switch] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_cast] = ACTIONS(2198), + [anon_sym_DOLLARtype] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_untyped] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_this] = ACTIONS(2198), + [anon_sym_AT] = ACTIONS(2198), + [anon_sym_AT_COLON] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2198), + [anon_sym_catch] = ACTIONS(2198), + [anon_sym_else] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(2198), + [anon_sym_new] = ACTIONS(2198), + [anon_sym_TILDE] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_PLUS_PLUS] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_PERCENT] = ACTIONS(2200), + [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_GT_GT_GT] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_CARET] = ACTIONS(2200), + [anon_sym_AMP_AMP] = ACTIONS(2200), + [anon_sym_PIPE_PIPE] = ACTIONS(2200), + [anon_sym_EQ_EQ] = ACTIONS(2200), + [anon_sym_BANG_EQ] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_LT_EQ] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_EQ] = ACTIONS(2200), + [anon_sym_EQ_GT] = ACTIONS(2200), + [anon_sym_QMARK_QMARK] = ACTIONS(2200), + [anon_sym_EQ] = ACTIONS(2198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), + [anon_sym_null] = ACTIONS(2198), + [anon_sym_macro] = ACTIONS(2198), + [anon_sym_abstract] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2198), + [anon_sym_private] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym_inline] = ACTIONS(2198), + [anon_sym_overload] = ACTIONS(2198), + [anon_sym_override] = ACTIONS(2198), + [anon_sym_final] = ACTIONS(2198), + [anon_sym_class] = ACTIONS(2198), + [anon_sym_interface] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_typedef] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(2198), + [anon_sym_var] = ACTIONS(2198), + [aux_sym_integer_token1] = ACTIONS(2198), + [aux_sym_integer_token2] = ACTIONS(2200), + [aux_sym_float_token1] = ACTIONS(2198), + [aux_sym_float_token2] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [aux_sym_string_token1] = ACTIONS(2200), + [aux_sym_string_token3] = ACTIONS(2200), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [789] = { + [ts_builtin_sym_end] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2202), + [anon_sym_POUND] = ACTIONS(2204), + [anon_sym_package] = ACTIONS(2202), + [anon_sym_import] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_using] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_cast] = ACTIONS(2202), + [anon_sym_DOLLARtype] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_untyped] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_this] = ACTIONS(2202), + [anon_sym_AT] = ACTIONS(2202), + [anon_sym_AT_COLON] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2202), + [anon_sym_catch] = ACTIONS(2202), + [anon_sym_else] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_do] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2202), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_LT_LT] = ACTIONS(2204), + [anon_sym_GT_GT] = ACTIONS(2202), + [anon_sym_GT_GT_GT] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_PIPE] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2204), + [anon_sym_PIPE_PIPE] = ACTIONS(2204), + [anon_sym_EQ_EQ] = ACTIONS(2204), + [anon_sym_BANG_EQ] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_LT_EQ] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2202), + [anon_sym_GT_EQ] = ACTIONS(2204), + [anon_sym_EQ_GT] = ACTIONS(2204), + [anon_sym_QMARK_QMARK] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2204), + [anon_sym_null] = ACTIONS(2202), + [anon_sym_macro] = ACTIONS(2202), + [anon_sym_abstract] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_public] = ACTIONS(2202), + [anon_sym_private] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym_inline] = ACTIONS(2202), + [anon_sym_overload] = ACTIONS(2202), + [anon_sym_override] = ACTIONS(2202), + [anon_sym_final] = ACTIONS(2202), + [anon_sym_class] = ACTIONS(2202), + [anon_sym_interface] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2202), + [anon_sym_function] = ACTIONS(2202), + [anon_sym_var] = ACTIONS(2202), + [aux_sym_integer_token1] = ACTIONS(2202), + [aux_sym_integer_token2] = ACTIONS(2204), + [aux_sym_float_token1] = ACTIONS(2202), + [aux_sym_float_token2] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [aux_sym_string_token1] = ACTIONS(2204), + [aux_sym_string_token3] = ACTIONS(2204), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [790] = { + [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), + }, + [791] = { + [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_STAR] = ACTIONS(2330), + [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_for] = ACTIONS(2328), + [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_try] = ACTIONS(2328), + [anon_sym_catch] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [792] = { + [ts_builtin_sym_end] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2206), + [anon_sym_POUND] = ACTIONS(2208), + [anon_sym_package] = ACTIONS(2206), + [anon_sym_import] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_using] = ACTIONS(2206), + [anon_sym_throw] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_switch] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_cast] = ACTIONS(2206), + [anon_sym_DOLLARtype] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_untyped] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_this] = ACTIONS(2206), + [anon_sym_AT] = ACTIONS(2206), + [anon_sym_AT_COLON] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_catch] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_TILDE] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2208), + [anon_sym_PERCENT] = ACTIONS(2208), + [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_LT_LT] = ACTIONS(2208), + [anon_sym_GT_GT] = ACTIONS(2206), + [anon_sym_GT_GT_GT] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2208), + [anon_sym_PIPE_PIPE] = ACTIONS(2208), + [anon_sym_EQ_EQ] = ACTIONS(2208), + [anon_sym_BANG_EQ] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_LT_EQ] = ACTIONS(2208), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2208), + [anon_sym_EQ_GT] = ACTIONS(2208), + [anon_sym_QMARK_QMARK] = ACTIONS(2208), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2206), + [anon_sym_macro] = ACTIONS(2206), + [anon_sym_abstract] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_public] = ACTIONS(2206), + [anon_sym_private] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_inline] = ACTIONS(2206), + [anon_sym_overload] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2206), + [anon_sym_final] = ACTIONS(2206), + [anon_sym_class] = ACTIONS(2206), + [anon_sym_interface] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_typedef] = ACTIONS(2206), + [anon_sym_function] = ACTIONS(2206), + [anon_sym_var] = ACTIONS(2206), + [aux_sym_integer_token1] = ACTIONS(2206), + [aux_sym_integer_token2] = ACTIONS(2208), + [aux_sym_float_token1] = ACTIONS(2206), + [aux_sym_float_token2] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [aux_sym_string_token1] = ACTIONS(2208), + [aux_sym_string_token3] = ACTIONS(2208), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [793] = { + [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_STAR] = ACTIONS(2334), + [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_for] = ACTIONS(2332), + [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_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [794] = { + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2210), + [anon_sym_POUND] = ACTIONS(2212), + [anon_sym_package] = ACTIONS(2210), + [anon_sym_import] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2210), + [anon_sym_throw] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_cast] = ACTIONS(2210), + [anon_sym_DOLLARtype] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_untyped] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_this] = ACTIONS(2210), + [anon_sym_AT] = ACTIONS(2210), + [anon_sym_AT_COLON] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2210), + [anon_sym_catch] = ACTIONS(2210), + [anon_sym_else] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2210), + [anon_sym_PLUS] = ACTIONS(2210), + [anon_sym_LT_LT] = ACTIONS(2212), + [anon_sym_GT_GT] = ACTIONS(2210), + [anon_sym_GT_GT_GT] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(2210), + [anon_sym_CARET] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2212), + [anon_sym_PIPE_PIPE] = ACTIONS(2212), + [anon_sym_EQ_EQ] = ACTIONS(2212), + [anon_sym_BANG_EQ] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2210), + [anon_sym_LT_EQ] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2210), + [anon_sym_GT_EQ] = ACTIONS(2212), + [anon_sym_EQ_GT] = ACTIONS(2212), + [anon_sym_QMARK_QMARK] = ACTIONS(2212), + [anon_sym_EQ] = ACTIONS(2210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2212), + [anon_sym_null] = ACTIONS(2210), + [anon_sym_macro] = ACTIONS(2210), + [anon_sym_abstract] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_public] = ACTIONS(2210), + [anon_sym_private] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym_inline] = ACTIONS(2210), + [anon_sym_overload] = ACTIONS(2210), + [anon_sym_override] = ACTIONS(2210), + [anon_sym_final] = ACTIONS(2210), + [anon_sym_class] = ACTIONS(2210), + [anon_sym_interface] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_function] = ACTIONS(2210), + [anon_sym_var] = ACTIONS(2210), + [aux_sym_integer_token1] = ACTIONS(2210), + [aux_sym_integer_token2] = ACTIONS(2212), + [aux_sym_float_token1] = ACTIONS(2210), + [aux_sym_float_token2] = ACTIONS(2212), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [aux_sym_string_token1] = ACTIONS(2212), + [aux_sym_string_token3] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [795] = { + [ts_builtin_sym_end] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(2216), + [anon_sym_package] = ACTIONS(2214), + [anon_sym_import] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(2214), + [anon_sym_throw] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_switch] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_cast] = ACTIONS(2214), + [anon_sym_DOLLARtype] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_untyped] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_this] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2214), + [anon_sym_AT_COLON] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_catch] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_PLUS_PLUS] = ACTIONS(2216), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_PERCENT] = ACTIONS(2216), + [anon_sym_SLASH] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_EQ_EQ] = ACTIONS(2216), + [anon_sym_BANG_EQ] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_LT_EQ] = ACTIONS(2216), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2216), + [anon_sym_EQ_GT] = ACTIONS(2216), + [anon_sym_QMARK_QMARK] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2214), + [anon_sym_macro] = ACTIONS(2214), + [anon_sym_abstract] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_public] = ACTIONS(2214), + [anon_sym_private] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_inline] = ACTIONS(2214), + [anon_sym_overload] = ACTIONS(2214), + [anon_sym_override] = ACTIONS(2214), + [anon_sym_final] = ACTIONS(2214), + [anon_sym_class] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_typedef] = ACTIONS(2214), + [anon_sym_function] = ACTIONS(2214), + [anon_sym_var] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(2214), + [aux_sym_integer_token2] = ACTIONS(2216), + [aux_sym_float_token1] = ACTIONS(2214), + [aux_sym_float_token2] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [aux_sym_string_token1] = ACTIONS(2216), + [aux_sym_string_token3] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [796] = { + [ts_builtin_sym_end] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_package] = ACTIONS(2218), + [anon_sym_import] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_using] = ACTIONS(2218), + [anon_sym_throw] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_switch] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_cast] = ACTIONS(2218), + [anon_sym_DOLLARtype] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_untyped] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_this] = ACTIONS(2218), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_AT_COLON] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(2220), + [anon_sym_SLASH] = ACTIONS(2218), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_LT_LT] = ACTIONS(2220), + [anon_sym_GT_GT] = ACTIONS(2218), + [anon_sym_GT_GT_GT] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_AMP_AMP] = ACTIONS(2220), + [anon_sym_PIPE_PIPE] = ACTIONS(2220), + [anon_sym_EQ_EQ] = ACTIONS(2220), + [anon_sym_BANG_EQ] = ACTIONS(2220), + [anon_sym_LT] = ACTIONS(2218), + [anon_sym_LT_EQ] = ACTIONS(2220), + [anon_sym_GT] = ACTIONS(2218), + [anon_sym_GT_EQ] = ACTIONS(2220), + [anon_sym_EQ_GT] = ACTIONS(2220), + [anon_sym_QMARK_QMARK] = ACTIONS(2220), + [anon_sym_EQ] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2220), + [anon_sym_null] = ACTIONS(2218), + [anon_sym_macro] = ACTIONS(2218), + [anon_sym_abstract] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_inline] = ACTIONS(2218), + [anon_sym_overload] = ACTIONS(2218), + [anon_sym_override] = ACTIONS(2218), + [anon_sym_final] = ACTIONS(2218), + [anon_sym_class] = ACTIONS(2218), + [anon_sym_interface] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_typedef] = ACTIONS(2218), + [anon_sym_function] = ACTIONS(2218), + [anon_sym_var] = ACTIONS(2218), + [aux_sym_integer_token1] = ACTIONS(2218), + [aux_sym_integer_token2] = ACTIONS(2220), + [aux_sym_float_token1] = ACTIONS(2218), + [aux_sym_float_token2] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [aux_sym_string_token1] = ACTIONS(2220), + [aux_sym_string_token3] = ACTIONS(2220), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [797] = { + [ts_builtin_sym_end] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_package] = ACTIONS(2222), + [anon_sym_import] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_using] = ACTIONS(2222), + [anon_sym_throw] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_switch] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_cast] = ACTIONS(2222), + [anon_sym_DOLLARtype] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_untyped] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_this] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2222), + [anon_sym_AT_COLON] = ACTIONS(2224), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_catch] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2222), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2222), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_EQ_GT] = ACTIONS(2224), + [anon_sym_QMARK_QMARK] = ACTIONS(2224), + [anon_sym_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_null] = ACTIONS(2222), + [anon_sym_macro] = ACTIONS(2222), + [anon_sym_abstract] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_public] = ACTIONS(2222), + [anon_sym_private] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_inline] = ACTIONS(2222), + [anon_sym_overload] = ACTIONS(2222), + [anon_sym_override] = ACTIONS(2222), + [anon_sym_final] = ACTIONS(2222), + [anon_sym_class] = ACTIONS(2222), + [anon_sym_interface] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_typedef] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(2222), + [anon_sym_var] = ACTIONS(2222), + [aux_sym_integer_token1] = ACTIONS(2222), + [aux_sym_integer_token2] = ACTIONS(2224), + [aux_sym_float_token1] = ACTIONS(2222), + [aux_sym_float_token2] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [aux_sym_string_token1] = ACTIONS(2224), + [aux_sym_string_token3] = ACTIONS(2224), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [798] = { + [ts_builtin_sym_end] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(2228), + [anon_sym_package] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_cast] = ACTIONS(2226), + [anon_sym_DOLLARtype] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_untyped] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_this] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_AT_COLON] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_catch] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2228), + [anon_sym_GT_GT] = ACTIONS(2226), + [anon_sym_GT_GT_GT] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2226), + [anon_sym_CARET] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_LT_EQ] = ACTIONS(2228), + [anon_sym_GT] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_QMARK_QMARK] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2226), + [anon_sym_macro] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_inline] = ACTIONS(2226), + [anon_sym_overload] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_final] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_typedef] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [aux_sym_integer_token1] = ACTIONS(2226), + [aux_sym_integer_token2] = ACTIONS(2228), + [aux_sym_float_token1] = ACTIONS(2226), + [aux_sym_float_token2] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [aux_sym_string_token1] = ACTIONS(2228), + [aux_sym_string_token3] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_package] = ACTIONS(2436), + [anon_sym_import] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2436), + [anon_sym_throw] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_cast] = ACTIONS(2436), + [anon_sym_DOLLARtype] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_untyped] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_this] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(2436), + [anon_sym_AT_COLON] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_catch] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_EQ_GT] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_EQ] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), + [anon_sym_null] = ACTIONS(2436), + [anon_sym_macro] = ACTIONS(2436), + [anon_sym_abstract] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_inline] = ACTIONS(2436), + [anon_sym_overload] = ACTIONS(2436), + [anon_sym_override] = ACTIONS(2436), + [anon_sym_final] = ACTIONS(2436), + [anon_sym_class] = ACTIONS(2436), + [anon_sym_interface] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_typedef] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_var] = ACTIONS(2436), + [aux_sym_integer_token1] = ACTIONS(2436), + [aux_sym_integer_token2] = ACTIONS(2438), + [aux_sym_float_token1] = ACTIONS(2436), + [aux_sym_float_token2] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [aux_sym_string_token1] = ACTIONS(2438), + [aux_sym_string_token3] = ACTIONS(2438), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [800] = { + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2430), + [anon_sym_package] = ACTIONS(2428), + [anon_sym_import] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2428), + [anon_sym_throw] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_cast] = ACTIONS(2428), + [anon_sym_DOLLARtype] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_untyped] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_this] = ACTIONS(2428), + [anon_sym_AT] = ACTIONS(2428), + [anon_sym_AT_COLON] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_catch] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PERCENT] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(2430), + [anon_sym_GT_GT] = ACTIONS(2428), + [anon_sym_GT_GT_GT] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_CARET] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_EQ_EQ] = ACTIONS(2430), + [anon_sym_BANG_EQ] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2428), + [anon_sym_LT_EQ] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2428), + [anon_sym_GT_EQ] = ACTIONS(2430), + [anon_sym_EQ_GT] = ACTIONS(2430), + [anon_sym_QMARK_QMARK] = ACTIONS(2430), + [anon_sym_EQ] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2428), + [anon_sym_macro] = ACTIONS(2428), + [anon_sym_abstract] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym_inline] = ACTIONS(2428), + [anon_sym_overload] = ACTIONS(2428), + [anon_sym_override] = ACTIONS(2428), + [anon_sym_final] = ACTIONS(2428), + [anon_sym_class] = ACTIONS(2428), + [anon_sym_interface] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_typedef] = ACTIONS(2428), + [anon_sym_function] = ACTIONS(2428), + [anon_sym_var] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2428), + [aux_sym_integer_token2] = ACTIONS(2430), + [aux_sym_float_token1] = ACTIONS(2428), + [aux_sym_float_token2] = ACTIONS(2430), + [anon_sym_true] = ACTIONS(2428), + [anon_sym_false] = ACTIONS(2428), + [aux_sym_string_token1] = ACTIONS(2430), + [aux_sym_string_token3] = ACTIONS(2430), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [801] = { + [ts_builtin_sym_end] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2236), + [anon_sym_package] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_cast] = ACTIONS(2234), + [anon_sym_DOLLARtype] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_untyped] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_this] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_AT_COLON] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_catch] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2236), + [anon_sym_DASH_DASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2236), + [anon_sym_GT_GT] = ACTIONS(2234), + [anon_sym_GT_GT_GT] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(2236), + [anon_sym_AMP_AMP] = ACTIONS(2236), + [anon_sym_PIPE_PIPE] = ACTIONS(2236), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_LT_EQ] = ACTIONS(2236), + [anon_sym_GT] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2236), + [anon_sym_EQ_GT] = ACTIONS(2236), + [anon_sym_QMARK_QMARK] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2236), + [anon_sym_null] = ACTIONS(2234), + [anon_sym_macro] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_inline] = ACTIONS(2234), + [anon_sym_overload] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_final] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_typedef] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [aux_sym_integer_token1] = ACTIONS(2234), + [aux_sym_integer_token2] = ACTIONS(2236), + [aux_sym_float_token1] = ACTIONS(2234), + [aux_sym_float_token2] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [aux_sym_string_token1] = ACTIONS(2236), + [aux_sym_string_token3] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [802] = { + [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_STAR] = ACTIONS(2266), + [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_for] = ACTIONS(2264), + [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_try] = ACTIONS(2264), + [anon_sym_catch] = ACTIONS(2264), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [803] = { + [ts_builtin_sym_end] = ACTIONS(810), + [sym_identifier] = ACTIONS(814), + [anon_sym_POUND] = ACTIONS(810), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_using] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_cast] = ACTIONS(814), + [anon_sym_DOLLARtype] = ACTIONS(810), + [anon_sym_for] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_untyped] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(810), + [anon_sym_this] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_AT_COLON] = ACTIONS(810), + [anon_sym_try] = ACTIONS(814), + [anon_sym_catch] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_new] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_PLUS_PLUS] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_GT_GT_GT] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(810), + [anon_sym_BANG_EQ] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_LT_EQ] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_EQ] = ACTIONS(810), + [anon_sym_EQ_GT] = ACTIONS(810), + [anon_sym_QMARK_QMARK] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(810), + [anon_sym_null] = ACTIONS(814), + [anon_sym_macro] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_extern] = ACTIONS(814), + [anon_sym_inline] = ACTIONS(814), + [anon_sym_overload] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_typedef] = ACTIONS(814), + [anon_sym_function] = ACTIONS(814), + [anon_sym_var] = ACTIONS(814), + [aux_sym_integer_token1] = ACTIONS(814), + [aux_sym_integer_token2] = ACTIONS(810), + [aux_sym_float_token1] = ACTIONS(814), + [aux_sym_float_token2] = ACTIONS(810), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [aux_sym_string_token1] = ACTIONS(810), + [aux_sym_string_token3] = ACTIONS(810), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [804] = { + [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_STAR] = ACTIONS(2274), + [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_for] = ACTIONS(2272), + [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_try] = ACTIONS(2272), + [anon_sym_catch] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), + }, + [805] = { + [ts_builtin_sym_end] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_package] = ACTIONS(2098), + [anon_sym_import] = ACTIONS(2098), + [anon_sym_STAR] = ACTIONS(2100), + [anon_sym_using] = ACTIONS(2098), + [anon_sym_throw] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_cast] = ACTIONS(2098), + [anon_sym_DOLLARtype] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_untyped] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_this] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2098), + [anon_sym_AT_COLON] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2098), + [anon_sym_catch] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2098), + [anon_sym_new] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2100), + [anon_sym_PERCENT] = ACTIONS(2100), + [anon_sym_SLASH] = ACTIONS(2098), + [anon_sym_PLUS] = ACTIONS(2098), + [anon_sym_LT_LT] = ACTIONS(2100), + [anon_sym_GT_GT] = ACTIONS(2098), + [anon_sym_GT_GT_GT] = ACTIONS(2100), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_EQ_EQ] = ACTIONS(2100), + [anon_sym_BANG_EQ] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2098), + [anon_sym_LT_EQ] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2098), + [anon_sym_GT_EQ] = ACTIONS(2100), + [anon_sym_EQ_GT] = ACTIONS(2100), + [anon_sym_QMARK_QMARK] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(2098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2100), + [anon_sym_null] = ACTIONS(2098), + [anon_sym_macro] = ACTIONS(2098), + [anon_sym_abstract] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_public] = ACTIONS(2098), + [anon_sym_private] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_inline] = ACTIONS(2098), + [anon_sym_overload] = ACTIONS(2098), + [anon_sym_override] = ACTIONS(2098), + [anon_sym_final] = ACTIONS(2098), + [anon_sym_class] = ACTIONS(2098), + [anon_sym_interface] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2098), + [anon_sym_function] = ACTIONS(2098), + [anon_sym_var] = ACTIONS(2098), + [aux_sym_integer_token1] = ACTIONS(2098), + [aux_sym_integer_token2] = ACTIONS(2100), + [aux_sym_float_token1] = ACTIONS(2098), + [aux_sym_float_token2] = ACTIONS(2100), + [anon_sym_true] = ACTIONS(2098), + [anon_sym_false] = ACTIONS(2098), + [aux_sym_string_token1] = ACTIONS(2100), + [aux_sym_string_token3] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [806] = { + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_package] = ACTIONS(2784), + [anon_sym_import] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_using] = ACTIONS(2784), + [anon_sym_throw] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_cast] = ACTIONS(2784), + [anon_sym_DOLLARtype] = ACTIONS(2782), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_untyped] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_this] = ACTIONS(2784), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_AT_COLON] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_LT_LT] = ACTIONS(2782), + [anon_sym_GT_GT] = ACTIONS(2784), + [anon_sym_GT_GT_GT] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_EQ_EQ] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_LT_EQ] = ACTIONS(2782), + [anon_sym_GT] = ACTIONS(2784), + [anon_sym_GT_EQ] = ACTIONS(2782), + [anon_sym_EQ_GT] = ACTIONS(2782), + [anon_sym_QMARK_QMARK] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2782), + [anon_sym_null] = ACTIONS(2784), + [anon_sym_macro] = ACTIONS(2784), + [anon_sym_abstract] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym_overload] = ACTIONS(2784), + [anon_sym_override] = ACTIONS(2784), + [anon_sym_final] = ACTIONS(2784), + [anon_sym_class] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2784), + [anon_sym_var] = ACTIONS(2784), + [aux_sym_integer_token1] = ACTIONS(2784), + [aux_sym_integer_token2] = ACTIONS(2782), + [aux_sym_float_token1] = ACTIONS(2784), + [aux_sym_float_token2] = ACTIONS(2782), + [anon_sym_true] = ACTIONS(2784), + [anon_sym_false] = ACTIONS(2784), + [aux_sym_string_token1] = ACTIONS(2782), + [aux_sym_string_token3] = ACTIONS(2782), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2786), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [807] = { + [sym_identifier] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_package] = ACTIONS(2784), + [anon_sym_import] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_using] = ACTIONS(2784), + [anon_sym_throw] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_cast] = ACTIONS(2784), + [anon_sym_DOLLARtype] = ACTIONS(2782), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_untyped] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_this] = ACTIONS(2784), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_AT_COLON] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_LT_LT] = ACTIONS(2782), + [anon_sym_GT_GT] = ACTIONS(2784), + [anon_sym_GT_GT_GT] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_EQ_EQ] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_LT_EQ] = ACTIONS(2782), + [anon_sym_GT] = ACTIONS(2784), + [anon_sym_GT_EQ] = ACTIONS(2782), + [anon_sym_EQ_GT] = ACTIONS(2782), + [anon_sym_QMARK_QMARK] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2782), + [anon_sym_null] = ACTIONS(2784), + [anon_sym_macro] = ACTIONS(2784), + [anon_sym_abstract] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym_overload] = ACTIONS(2784), + [anon_sym_override] = ACTIONS(2784), + [anon_sym_final] = ACTIONS(2784), + [anon_sym_class] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2784), + [anon_sym_var] = ACTIONS(2784), + [aux_sym_integer_token1] = ACTIONS(2784), + [aux_sym_integer_token2] = ACTIONS(2782), + [aux_sym_float_token1] = ACTIONS(2784), + [aux_sym_float_token2] = ACTIONS(2782), + [anon_sym_true] = ACTIONS(2784), + [anon_sym_false] = ACTIONS(2784), + [aux_sym_string_token1] = ACTIONS(2782), + [aux_sym_string_token3] = ACTIONS(2782), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2788), + [sym__closing_brace_marker] = ACTIONS(2782), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [808] = { + [ts_builtin_sym_end] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_package] = ACTIONS(2792), + [anon_sym_import] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2792), + [anon_sym_throw] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_cast] = ACTIONS(2792), + [anon_sym_DOLLARtype] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_untyped] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_this] = ACTIONS(2792), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_AT_COLON] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_new] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_SLASH] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2792), + [anon_sym_GT_GT_GT] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2790), + [anon_sym_BANG_EQ] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2792), + [anon_sym_LT_EQ] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2792), + [anon_sym_GT_EQ] = ACTIONS(2790), + [anon_sym_EQ_GT] = ACTIONS(2790), + [anon_sym_QMARK_QMARK] = ACTIONS(2790), + [anon_sym_EQ] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2790), + [anon_sym_null] = ACTIONS(2792), + [anon_sym_macro] = ACTIONS(2792), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_public] = ACTIONS(2792), + [anon_sym_private] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym_inline] = ACTIONS(2792), + [anon_sym_overload] = ACTIONS(2792), + [anon_sym_override] = ACTIONS(2792), + [anon_sym_final] = ACTIONS(2792), + [anon_sym_class] = ACTIONS(2792), + [anon_sym_interface] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_typedef] = ACTIONS(2792), + [anon_sym_function] = ACTIONS(2792), + [anon_sym_var] = ACTIONS(2792), + [aux_sym_integer_token1] = ACTIONS(2792), + [aux_sym_integer_token2] = ACTIONS(2790), + [aux_sym_float_token1] = ACTIONS(2792), + [aux_sym_float_token2] = ACTIONS(2790), + [anon_sym_true] = ACTIONS(2792), + [anon_sym_false] = ACTIONS(2792), + [aux_sym_string_token1] = ACTIONS(2790), + [aux_sym_string_token3] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [809] = { + [sym_identifier] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_package] = ACTIONS(2792), + [anon_sym_import] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2792), + [anon_sym_throw] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_cast] = ACTIONS(2792), + [anon_sym_DOLLARtype] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_untyped] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_this] = ACTIONS(2792), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_AT_COLON] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_new] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_SLASH] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2792), + [anon_sym_GT_GT_GT] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2790), + [anon_sym_BANG_EQ] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2792), + [anon_sym_LT_EQ] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2792), + [anon_sym_GT_EQ] = ACTIONS(2790), + [anon_sym_EQ_GT] = ACTIONS(2790), + [anon_sym_QMARK_QMARK] = ACTIONS(2790), + [anon_sym_EQ] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2790), + [anon_sym_null] = ACTIONS(2792), + [anon_sym_macro] = ACTIONS(2792), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_public] = ACTIONS(2792), + [anon_sym_private] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym_inline] = ACTIONS(2792), + [anon_sym_overload] = ACTIONS(2792), + [anon_sym_override] = ACTIONS(2792), + [anon_sym_final] = ACTIONS(2792), + [anon_sym_class] = ACTIONS(2792), + [anon_sym_interface] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_typedef] = ACTIONS(2792), + [anon_sym_function] = ACTIONS(2792), + [anon_sym_var] = ACTIONS(2792), + [aux_sym_integer_token1] = ACTIONS(2792), + [aux_sym_integer_token2] = ACTIONS(2790), + [aux_sym_float_token1] = ACTIONS(2792), + [aux_sym_float_token2] = ACTIONS(2790), + [anon_sym_true] = ACTIONS(2792), + [anon_sym_false] = ACTIONS(2792), + [aux_sym_string_token1] = ACTIONS(2790), + [aux_sym_string_token3] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2790), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [810] = { + [ts_builtin_sym_end] = ACTIONS(295), + [sym_identifier] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(295), + [anon_sym_package] = ACTIONS(2794), + [anon_sym_import] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_using] = ACTIONS(2794), + [anon_sym_throw] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_switch] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_cast] = ACTIONS(2794), + [anon_sym_DOLLARtype] = ACTIONS(295), + [anon_sym_for] = ACTIONS(2794), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_untyped] = ACTIONS(2794), + [anon_sym_break] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(295), + [anon_sym_this] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_AT_COLON] = ACTIONS(295), + [anon_sym_try] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_while] = ACTIONS(2794), + [anon_sym_do] = ACTIONS(2794), + [anon_sym_new] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_LT_LT] = ACTIONS(295), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(295), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_AMP_AMP] = ACTIONS(295), + [anon_sym_PIPE_PIPE] = ACTIONS(295), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_GT_EQ] = ACTIONS(295), + [anon_sym_EQ_GT] = ACTIONS(295), + [anon_sym_QMARK_QMARK] = ACTIONS(295), + [anon_sym_EQ] = ACTIONS(2794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(295), + [anon_sym_null] = ACTIONS(2794), + [anon_sym_macro] = ACTIONS(2794), + [anon_sym_abstract] = ACTIONS(2794), + [anon_sym_static] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2794), + [anon_sym_private] = ACTIONS(2794), + [anon_sym_extern] = ACTIONS(2794), + [anon_sym_inline] = ACTIONS(2794), + [anon_sym_overload] = ACTIONS(2794), + [anon_sym_override] = ACTIONS(2794), + [anon_sym_final] = ACTIONS(2794), + [anon_sym_class] = ACTIONS(2794), + [anon_sym_interface] = ACTIONS(2794), + [anon_sym_enum] = ACTIONS(2794), + [anon_sym_typedef] = ACTIONS(2794), + [anon_sym_function] = ACTIONS(2794), + [anon_sym_var] = ACTIONS(2794), + [aux_sym_integer_token1] = ACTIONS(2794), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(2794), + [aux_sym_float_token2] = ACTIONS(295), + [anon_sym_true] = ACTIONS(2794), + [anon_sym_false] = ACTIONS(2794), + [aux_sym_string_token1] = ACTIONS(295), + [aux_sym_string_token3] = ACTIONS(295), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [811] = { + [sym_identifier] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(295), + [anon_sym_package] = ACTIONS(2794), + [anon_sym_import] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(295), + [anon_sym_using] = ACTIONS(2794), + [anon_sym_throw] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_switch] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_cast] = ACTIONS(2794), + [anon_sym_DOLLARtype] = ACTIONS(295), + [anon_sym_for] = ACTIONS(2794), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_untyped] = ACTIONS(2794), + [anon_sym_break] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(295), + [anon_sym_this] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_AT_COLON] = ACTIONS(295), + [anon_sym_try] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_while] = ACTIONS(2794), + [anon_sym_do] = ACTIONS(2794), + [anon_sym_new] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_LT_LT] = ACTIONS(295), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(295), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_AMP_AMP] = ACTIONS(295), + [anon_sym_PIPE_PIPE] = ACTIONS(295), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_GT_EQ] = ACTIONS(295), + [anon_sym_EQ_GT] = ACTIONS(295), + [anon_sym_QMARK_QMARK] = ACTIONS(295), + [anon_sym_EQ] = ACTIONS(2794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(295), + [anon_sym_null] = ACTIONS(2794), + [anon_sym_macro] = ACTIONS(2794), + [anon_sym_abstract] = ACTIONS(2794), + [anon_sym_static] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2794), + [anon_sym_private] = ACTIONS(2794), + [anon_sym_extern] = ACTIONS(2794), + [anon_sym_inline] = ACTIONS(2794), + [anon_sym_overload] = ACTIONS(2794), + [anon_sym_override] = ACTIONS(2794), + [anon_sym_final] = ACTIONS(2794), + [anon_sym_class] = ACTIONS(2794), + [anon_sym_interface] = ACTIONS(2794), + [anon_sym_enum] = ACTIONS(2794), + [anon_sym_typedef] = ACTIONS(2794), + [anon_sym_function] = ACTIONS(2794), + [anon_sym_var] = ACTIONS(2794), + [aux_sym_integer_token1] = ACTIONS(2794), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(2794), + [aux_sym_float_token2] = ACTIONS(295), + [anon_sym_true] = ACTIONS(2794), + [anon_sym_false] = ACTIONS(2794), + [aux_sym_string_token1] = ACTIONS(295), + [aux_sym_string_token3] = ACTIONS(295), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(295), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [812] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2741), + [sym_integer] = STATE(2741), + [sym_float] = STATE(2741), + [sym_bool] = STATE(2741), + [sym_string] = STATE(2213), + [sym_null] = STATE(2741), + [sym_array] = STATE(2741), + [sym_map] = STATE(2741), + [sym_object] = STATE(2741), + [sym_pair] = STATE(2741), + [aux_sym_member_expression_repeat1] = STATE(812), + [sym_identifier] = ACTIONS(866), + [anon_sym_DOT] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_return] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_this] = ACTIONS(2796), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_catch] = ACTIONS(729), + [anon_sym_else] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_new] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_GT_GT_GT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(727), + [anon_sym_QMARK_QMARK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_null] = ACTIONS(740), + [aux_sym_integer_token1] = ACTIONS(743), + [aux_sym_integer_token2] = ACTIONS(746), + [aux_sym_float_token1] = ACTIONS(749), + [aux_sym_float_token2] = ACTIONS(752), + [anon_sym_true] = ACTIONS(755), + [anon_sym_false] = ACTIONS(755), + [aux_sym_string_token1] = ACTIONS(758), + [aux_sym_string_token3] = ACTIONS(761), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [813] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2741), + [sym_integer] = STATE(2741), + [sym_float] = STATE(2741), + [sym_bool] = STATE(2741), + [sym_string] = STATE(2213), + [sym_null] = STATE(2741), + [sym_array] = STATE(2741), + [sym_map] = STATE(2741), + [sym_object] = STATE(2741), + [sym_pair] = STATE(2741), + [aux_sym_member_expression_repeat1] = STATE(812), + [sym_identifier] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_DOLLARtype] = ACTIONS(764), + [anon_sym_return] = ACTIONS(766), + [anon_sym_untyped] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(766), + [anon_sym_catch] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_new] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_QMARK] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [814] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2741), + [sym_integer] = STATE(2741), + [sym_float] = STATE(2741), + [sym_bool] = STATE(2741), + [sym_string] = STATE(2213), + [sym_null] = STATE(2741), + [sym_array] = STATE(2741), + [sym_map] = STATE(2741), + [sym_object] = STATE(2741), + [sym_pair] = STATE(2741), + [aux_sym_member_expression_repeat1] = STATE(812), + [sym_identifier] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_return] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(770), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_new] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [815] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2741), + [sym_integer] = STATE(2741), + [sym_float] = STATE(2741), + [sym_bool] = STATE(2741), + [sym_string] = STATE(2213), + [sym_null] = STATE(2741), + [sym_array] = STATE(2741), + [sym_map] = STATE(2741), + [sym_object] = STATE(2741), + [sym_pair] = STATE(2741), + [aux_sym_member_expression_repeat1] = STATE(812), + [sym_identifier] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_untyped] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(666), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_new] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_GT_GT_GT] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_EQ_GT] = ACTIONS(666), + [anon_sym_QMARK_QMARK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(666), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [816] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2741), + [sym_integer] = STATE(2741), + [sym_float] = STATE(2741), + [sym_bool] = STATE(2741), + [sym_string] = STATE(2213), + [sym_null] = STATE(2741), + [sym_array] = STATE(2741), + [sym_map] = STATE(2741), + [sym_object] = STATE(2741), + [sym_pair] = STATE(2741), + [aux_sym_member_expression_repeat1] = STATE(812), + [sym_identifier] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_DOLLARtype] = ACTIONS(772), + [anon_sym_return] = ACTIONS(774), + [anon_sym_untyped] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_catch] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_new] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [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(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_QMARK_QMARK] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [817] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2703), + [sym_integer] = STATE(2703), + [sym_float] = STATE(2703), + [sym_bool] = STATE(2703), + [sym_string] = STATE(2213), + [sym_null] = STATE(2703), + [sym_array] = STATE(2703), + [sym_map] = STATE(2703), + [sym_object] = STATE(2703), + [sym_pair] = STATE(2703), + [aux_sym_member_expression_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_DOLLARtype] = ACTIONS(764), + [anon_sym_return] = ACTIONS(766), + [anon_sym_untyped] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_this] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_new] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_QMARK] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [818] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2703), + [sym_integer] = STATE(2703), + [sym_float] = STATE(2703), + [sym_bool] = STATE(2703), + [sym_string] = STATE(2213), + [sym_null] = STATE(2703), + [sym_array] = STATE(2703), + [sym_map] = STATE(2703), + [sym_object] = STATE(2703), + [sym_pair] = STATE(2703), + [aux_sym_member_expression_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_return] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_this] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [anon_sym_new] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [819] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2703), + [sym_integer] = STATE(2703), + [sym_float] = STATE(2703), + [sym_bool] = STATE(2703), + [sym_string] = STATE(2213), + [sym_null] = STATE(2703), + [sym_array] = STATE(2703), + [sym_map] = STATE(2703), + [sym_object] = STATE(2703), + [sym_pair] = STATE(2703), + [aux_sym_member_expression_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_DOLLARtype] = ACTIONS(772), + [anon_sym_return] = ACTIONS(774), + [anon_sym_untyped] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_this] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [anon_sym_new] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [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(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_QMARK_QMARK] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [820] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2703), + [sym_integer] = STATE(2703), + [sym_float] = STATE(2703), + [sym_bool] = STATE(2703), + [sym_string] = STATE(2213), + [sym_null] = STATE(2703), + [sym_array] = STATE(2703), + [sym_map] = STATE(2703), + [sym_object] = STATE(2703), + [sym_pair] = STATE(2703), + [aux_sym_member_expression_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_untyped] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(666), + [anon_sym_this] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_new] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_GT_GT_GT] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_EQ_GT] = ACTIONS(666), + [anon_sym_QMARK_QMARK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(666), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [821] = { + [sym_member_expression] = STATE(850), + [sym__lhs_expression] = STATE(166), + [sym__literal] = STATE(2703), + [sym_integer] = STATE(2703), + [sym_float] = STATE(2703), + [sym_bool] = STATE(2703), + [sym_string] = STATE(2213), + [sym_null] = STATE(2703), + [sym_array] = STATE(2703), + [sym_map] = STATE(2703), + [sym_object] = STATE(2703), + [sym_pair] = STATE(2703), + [aux_sym_member_expression_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_return] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_this] = ACTIONS(2804), + [anon_sym_catch] = ACTIONS(729), + [anon_sym_else] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_new] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_GT_GT_GT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(727), + [anon_sym_QMARK_QMARK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_null] = ACTIONS(740), + [aux_sym_integer_token1] = ACTIONS(743), + [aux_sym_integer_token2] = ACTIONS(746), + [aux_sym_float_token1] = ACTIONS(749), + [aux_sym_float_token2] = ACTIONS(752), + [anon_sym_true] = ACTIONS(755), + [anon_sym_false] = ACTIONS(755), + [aux_sym_string_token1] = ACTIONS(758), + [aux_sym_string_token3] = ACTIONS(761), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [822] = { + [sym__rhs_expression] = STATE(172), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(172), + [sym__literal] = STATE(919), + [sym_integer] = STATE(919), + [sym_float] = STATE(919), + [sym_bool] = STATE(919), + [sym_string] = STATE(912), + [sym_null] = STATE(919), + [sym_array] = STATE(919), + [sym_map] = STATE(919), + [sym_object] = STATE(919), + [sym_pair] = STATE(919), + [sym_identifier] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_cast] = ACTIONS(694), + [anon_sym_DOLLARtype] = ACTIONS(692), + [anon_sym_return] = ACTIONS(694), + [anon_sym_untyped] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_new] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(694), + [aux_sym_integer_token1] = ACTIONS(694), + [aux_sym_integer_token2] = ACTIONS(692), + [aux_sym_float_token1] = ACTIONS(694), + [aux_sym_float_token2] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [aux_sym_string_token1] = ACTIONS(692), + [aux_sym_string_token3] = ACTIONS(692), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [823] = { + [sym__rhs_expression] = STATE(187), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(187), + [sym__literal] = STATE(919), + [sym_integer] = STATE(919), + [sym_float] = STATE(919), + [sym_bool] = STATE(919), + [sym_string] = STATE(912), + [sym_null] = STATE(919), + [sym_array] = STATE(919), + [sym_map] = STATE(919), + [sym_object] = STATE(919), + [sym_pair] = STATE(919), + [sym_identifier] = ACTIONS(2807), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_new] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [824] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2740), + [sym_integer] = STATE(2740), + [sym_float] = STATE(2740), + [sym_bool] = STATE(2740), + [sym_string] = STATE(2213), + [sym_null] = STATE(2740), + [sym_array] = STATE(2740), + [sym_map] = STATE(2740), + [sym_object] = STATE(2740), + [sym_pair] = STATE(2740), + [aux_sym_member_expression_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_return] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_this] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_DASH_GT] = ACTIONS(727), + [anon_sym_new] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_GT_GT_GT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(727), + [anon_sym_QMARK_QMARK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_null] = ACTIONS(740), + [aux_sym_integer_token1] = ACTIONS(743), + [aux_sym_integer_token2] = ACTIONS(746), + [aux_sym_float_token1] = ACTIONS(749), + [aux_sym_float_token2] = ACTIONS(752), + [anon_sym_true] = ACTIONS(755), + [anon_sym_false] = ACTIONS(755), + [aux_sym_string_token1] = ACTIONS(758), + [aux_sym_string_token3] = ACTIONS(761), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [825] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2740), + [sym_integer] = STATE(2740), + [sym_float] = STATE(2740), + [sym_bool] = STATE(2740), + [sym_string] = STATE(2213), + [sym_null] = STATE(2740), + [sym_array] = STATE(2740), + [sym_map] = STATE(2740), + [sym_object] = STATE(2740), + [sym_pair] = STATE(2740), + [aux_sym_member_expression_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_DOLLARtype] = ACTIONS(772), + [anon_sym_return] = ACTIONS(774), + [anon_sym_untyped] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_DASH_GT] = ACTIONS(772), + [anon_sym_new] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [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(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_QMARK_QMARK] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [826] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2740), + [sym_integer] = STATE(2740), + [sym_float] = STATE(2740), + [sym_bool] = STATE(2740), + [sym_string] = STATE(2213), + [sym_null] = STATE(2740), + [sym_array] = STATE(2740), + [sym_map] = STATE(2740), + [sym_object] = STATE(2740), + [sym_pair] = STATE(2740), + [aux_sym_member_expression_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_untyped] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(666), + [anon_sym_new] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_GT_GT_GT] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_EQ_GT] = ACTIONS(666), + [anon_sym_QMARK_QMARK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(666), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [827] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2740), + [sym_integer] = STATE(2740), + [sym_float] = STATE(2740), + [sym_bool] = STATE(2740), + [sym_string] = STATE(2213), + [sym_null] = STATE(2740), + [sym_array] = STATE(2740), + [sym_map] = STATE(2740), + [sym_object] = STATE(2740), + [sym_pair] = STATE(2740), + [aux_sym_member_expression_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_DOLLARtype] = ACTIONS(764), + [anon_sym_return] = ACTIONS(766), + [anon_sym_untyped] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(766), + [anon_sym_DASH_GT] = ACTIONS(764), + [anon_sym_new] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_QMARK] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [828] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2740), + [sym_integer] = STATE(2740), + [sym_float] = STATE(2740), + [sym_bool] = STATE(2740), + [sym_string] = STATE(2213), + [sym_null] = STATE(2740), + [sym_array] = STATE(2740), + [sym_map] = STATE(2740), + [sym_object] = STATE(2740), + [sym_pair] = STATE(2740), + [aux_sym_member_expression_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_return] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(770), + [anon_sym_DASH_GT] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [829] = { + [sym_operator] = STATE(1875), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(830), + [sym_identifier] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_switch] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_cast] = ACTIONS(836), + [anon_sym_DOLLARtype] = ACTIONS(838), + [anon_sym_return] = ACTIONS(836), + [anon_sym_untyped] = ACTIONS(836), + [anon_sym_break] = ACTIONS(836), + [anon_sym_continue] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_this] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_new] = ACTIONS(836), + [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(57), + [anon_sym_null] = ACTIONS(836), + [aux_sym_integer_token1] = ACTIONS(836), + [aux_sym_integer_token2] = ACTIONS(838), + [aux_sym_float_token1] = ACTIONS(836), + [aux_sym_float_token2] = ACTIONS(838), + [anon_sym_true] = ACTIONS(836), + [anon_sym_false] = ACTIONS(836), + [aux_sym_string_token1] = ACTIONS(838), + [aux_sym_string_token3] = ACTIONS(838), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [830] = { + [sym_operator] = STATE(1875), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(830), + [sym_identifier] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_cast] = ACTIONS(844), + [anon_sym_DOLLARtype] = ACTIONS(842), + [anon_sym_return] = ACTIONS(844), + [anon_sym_untyped] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_this] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_new] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_PERCENT] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_GT_GT_GT] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_QMARK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(849), + [anon_sym_null] = ACTIONS(844), + [aux_sym_integer_token1] = ACTIONS(844), + [aux_sym_integer_token2] = ACTIONS(842), + [aux_sym_float_token1] = ACTIONS(844), + [aux_sym_float_token2] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [aux_sym_string_token1] = ACTIONS(842), + [aux_sym_string_token3] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [831] = { + [sym__rhs_expression] = STATE(172), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(172), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [sym_identifier] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_cast] = ACTIONS(694), + [anon_sym_DOLLARtype] = ACTIONS(692), + [anon_sym_return] = ACTIONS(694), + [anon_sym_untyped] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(694), + [anon_sym_new] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(694), + [aux_sym_integer_token1] = ACTIONS(694), + [aux_sym_integer_token2] = ACTIONS(692), + [aux_sym_float_token1] = ACTIONS(694), + [aux_sym_float_token2] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [aux_sym_string_token1] = ACTIONS(692), + [aux_sym_string_token3] = ACTIONS(692), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [832] = { + [sym_operator] = STATE(822), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(186), + [sym__bitwiseOperator] = STATE(186), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(829), + [sym_identifier] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_switch] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_cast] = ACTIONS(700), + [anon_sym_DOLLARtype] = ACTIONS(698), + [anon_sym_return] = ACTIONS(700), + [anon_sym_untyped] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_this] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_new] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(808), + [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(57), + [anon_sym_null] = ACTIONS(700), + [aux_sym_integer_token1] = ACTIONS(700), + [aux_sym_integer_token2] = ACTIONS(698), + [aux_sym_float_token1] = ACTIONS(700), + [aux_sym_float_token2] = ACTIONS(698), + [anon_sym_true] = ACTIONS(700), + [anon_sym_false] = ACTIONS(700), + [aux_sym_string_token1] = ACTIONS(698), + [aux_sym_string_token3] = ACTIONS(698), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [833] = { + [sym__rhs_expression] = STATE(922), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(922), + [sym__literal] = STATE(921), + [sym_integer] = STATE(921), + [sym_float] = STATE(921), + [sym_bool] = STATE(921), + [sym_string] = STATE(912), + [sym_null] = STATE(921), + [sym_array] = STATE(921), + [sym_map] = STATE(921), + [sym_object] = STATE(921), + [sym_pair] = STATE(921), + [sym_identifier] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_cast] = ACTIONS(2822), + [anon_sym_DOLLARtype] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_untyped] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_this] = ACTIONS(2830), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2820), + [anon_sym_PERCENT] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_LT_LT] = ACTIONS(2820), + [anon_sym_GT_GT] = ACTIONS(2822), + [anon_sym_GT_GT_GT] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2820), + [anon_sym_BANG_EQ] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2820), + [anon_sym_GT] = ACTIONS(2822), + [anon_sym_GT_EQ] = ACTIONS(2820), + [anon_sym_EQ_GT] = ACTIONS(2820), + [anon_sym_QMARK_QMARK] = ACTIONS(2820), + [anon_sym_EQ] = ACTIONS(2822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2820), + [anon_sym_null] = ACTIONS(2836), + [aux_sym_integer_token1] = ACTIONS(2839), + [aux_sym_integer_token2] = ACTIONS(2842), + [aux_sym_float_token1] = ACTIONS(2845), + [aux_sym_float_token2] = ACTIONS(2848), + [anon_sym_true] = ACTIONS(2851), + [anon_sym_false] = ACTIONS(2851), + [aux_sym_string_token1] = ACTIONS(2854), + [aux_sym_string_token3] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [834] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2745), + [sym_integer] = STATE(2745), + [sym_float] = STATE(2745), + [sym_bool] = STATE(2745), + [sym_string] = STATE(2213), + [sym_null] = STATE(2745), + [sym_array] = STATE(2745), + [sym_map] = STATE(2745), + [sym_object] = STATE(2745), + [sym_pair] = STATE(2745), + [aux_sym_member_expression_repeat1] = STATE(835), + [sym_identifier] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_return] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(800), + [anon_sym_DASH_GT] = ACTIONS(768), + [anon_sym_new] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [835] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2745), + [sym_integer] = STATE(2745), + [sym_float] = STATE(2745), + [sym_bool] = STATE(2745), + [sym_string] = STATE(2213), + [sym_null] = STATE(2745), + [sym_array] = STATE(2745), + [sym_map] = STATE(2745), + [sym_object] = STATE(2745), + [sym_pair] = STATE(2745), + [aux_sym_member_expression_repeat1] = STATE(835), + [sym_identifier] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_return] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_this] = ACTIONS(2865), + [anon_sym_DASH_GT] = ACTIONS(727), + [anon_sym_new] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_GT_GT_GT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(727), + [anon_sym_QMARK_QMARK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(727), + [anon_sym_null] = ACTIONS(740), + [aux_sym_integer_token1] = ACTIONS(743), + [aux_sym_integer_token2] = ACTIONS(746), + [aux_sym_float_token1] = ACTIONS(749), + [aux_sym_float_token2] = ACTIONS(752), + [anon_sym_true] = ACTIONS(755), + [anon_sym_false] = ACTIONS(755), + [aux_sym_string_token1] = ACTIONS(758), + [aux_sym_string_token3] = ACTIONS(761), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [836] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2745), + [sym_integer] = STATE(2745), + [sym_float] = STATE(2745), + [sym_bool] = STATE(2745), + [sym_string] = STATE(2213), + [sym_null] = STATE(2745), + [sym_array] = STATE(2745), + [sym_map] = STATE(2745), + [sym_object] = STATE(2745), + [sym_pair] = STATE(2745), + [aux_sym_member_expression_repeat1] = STATE(835), + [sym_identifier] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_return] = ACTIONS(668), + [anon_sym_untyped] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(800), + [anon_sym_DASH_GT] = ACTIONS(666), + [anon_sym_new] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_GT_GT_GT] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(666), + [anon_sym_PIPE_PIPE] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_EQ_GT] = ACTIONS(666), + [anon_sym_QMARK_QMARK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(666), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [837] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2745), + [sym_integer] = STATE(2745), + [sym_float] = STATE(2745), + [sym_bool] = STATE(2745), + [sym_string] = STATE(2213), + [sym_null] = STATE(2745), + [sym_array] = STATE(2745), + [sym_map] = STATE(2745), + [sym_object] = STATE(2745), + [sym_pair] = STATE(2745), + [aux_sym_member_expression_repeat1] = STATE(835), + [sym_identifier] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_DOLLARtype] = ACTIONS(772), + [anon_sym_return] = ACTIONS(774), + [anon_sym_untyped] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(800), + [anon_sym_DASH_GT] = ACTIONS(772), + [anon_sym_new] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [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(774), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_QMARK_QMARK] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [838] = { + [sym__rhs_expression] = STATE(263), + [sym_member_expression] = STATE(293), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(263), + [sym__literal] = STATE(1338), + [sym_integer] = STATE(1338), + [sym_float] = STATE(1338), + [sym_bool] = STATE(1338), + [sym_string] = STATE(1302), + [sym_null] = STATE(1338), + [sym_array] = STATE(1338), + [sym_map] = STATE(1338), + [sym_object] = STATE(1338), + [sym_pair] = STATE(1338), + [sym_identifier] = ACTIONS(2868), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_case] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_catch] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_new] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(692), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [839] = { + [sym__rhs_expression] = STATE(187), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(187), + [sym__literal] = STATE(1355), + [sym_integer] = STATE(1355), + [sym_float] = STATE(1355), + [sym_bool] = STATE(1355), + [sym_string] = STATE(1308), + [sym_null] = STATE(1355), + [sym_array] = STATE(1355), + [sym_map] = STATE(1355), + [sym_object] = STATE(1355), + [sym_pair] = STATE(1355), + [sym_identifier] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_new] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [840] = { + [sym_member_expression] = STATE(910), + [sym__lhs_expression] = STATE(909), + [sym__literal] = STATE(2745), + [sym_integer] = STATE(2745), + [sym_float] = STATE(2745), + [sym_bool] = STATE(2745), + [sym_string] = STATE(2213), + [sym_null] = STATE(2745), + [sym_array] = STATE(2745), + [sym_map] = STATE(2745), + [sym_object] = STATE(2745), + [sym_pair] = STATE(2745), + [aux_sym_member_expression_repeat1] = STATE(835), + [sym_identifier] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_cast] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_DOLLARtype] = ACTIONS(764), + [anon_sym_return] = ACTIONS(766), + [anon_sym_untyped] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_this] = ACTIONS(800), + [anon_sym_DASH_GT] = ACTIONS(764), + [anon_sym_new] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(764), + [anon_sym_DASH_DASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_QMARK_QMARK] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [841] = { + [sym__rhs_expression] = STATE(291), + [sym_member_expression] = STATE(293), + [sym__lhs_expression] = STATE(2615), + [sym__call] = STATE(248), + [sym__constructor_call] = STATE(249), + [sym_call_expression] = STATE(291), + [sym__literal] = STATE(1338), + [sym_integer] = STATE(1338), + [sym_float] = STATE(1338), + [sym_bool] = STATE(1338), + [sym_string] = STATE(1302), + [sym_null] = STATE(1338), + [sym_array] = STATE(1338), + [sym_map] = STATE(1338), + [sym_object] = STATE(1338), + [sym_pair] = STATE(1338), + [sym_identifier] = ACTIONS(2868), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_case] = ACTIONS(700), + [anon_sym_default] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_this] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_new] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_GT_GT_GT] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(698), + [anon_sym_PIPE_PIPE] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(698), + [anon_sym_BANG_EQ] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(698), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(698), + [anon_sym_QMARK_QMARK] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(698), + [anon_sym_null] = ACTIONS(708), + [aux_sym_integer_token1] = ACTIONS(710), + [aux_sym_integer_token2] = ACTIONS(712), + [aux_sym_float_token1] = ACTIONS(714), + [aux_sym_float_token2] = ACTIONS(716), + [anon_sym_true] = ACTIONS(718), + [anon_sym_false] = ACTIONS(718), + [aux_sym_string_token1] = ACTIONS(720), + [aux_sym_string_token3] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(698), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [842] = { + [sym__rhs_expression] = STATE(172), + [sym_member_expression] = STATE(150), + [sym__lhs_expression] = STATE(2444), + [sym__call] = STATE(147), + [sym__constructor_call] = STATE(148), + [sym_call_expression] = STATE(172), + [sym__literal] = STATE(1355), + [sym_integer] = STATE(1355), + [sym_float] = STATE(1355), + [sym_bool] = STATE(1355), + [sym_string] = STATE(1308), + [sym_null] = STATE(1355), + [sym_array] = STATE(1355), + [sym_map] = STATE(1355), + [sym_object] = STATE(1355), + [sym_pair] = STATE(1355), + [sym_identifier] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_this] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(694), + [anon_sym_catch] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_new] = ACTIONS(780), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(692), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_GT_GT_GT] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(692), + [anon_sym_QMARK_QMARK] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_null] = ACTIONS(676), + [aux_sym_integer_token1] = ACTIONS(678), + [aux_sym_integer_token2] = ACTIONS(680), + [aux_sym_float_token1] = ACTIONS(682), + [aux_sym_float_token2] = ACTIONS(684), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [843] = { + [sym_operator] = STATE(1751), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(844), + [sym_identifier] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_cast] = ACTIONS(2872), + [anon_sym_DOLLARtype] = ACTIONS(953), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_untyped] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_this] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(953), + [anon_sym_PERCENT] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(2872), + [anon_sym_GT_GT_GT] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_CARET] = ACTIONS(953), + [anon_sym_AMP_AMP] = ACTIONS(953), + [anon_sym_PIPE_PIPE] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(2872), + [anon_sym_LT_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(2872), + [anon_sym_GT_EQ] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(953), + [anon_sym_QMARK_QMARK] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(2872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(953), + [anon_sym_null] = ACTIONS(2872), + [aux_sym_integer_token1] = ACTIONS(2872), + [aux_sym_integer_token2] = ACTIONS(953), + [aux_sym_float_token1] = ACTIONS(2872), + [aux_sym_float_token2] = ACTIONS(953), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [aux_sym_string_token1] = ACTIONS(953), + [aux_sym_string_token3] = ACTIONS(953), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [844] = { + [sym_operator] = STATE(1751), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(2169), + [sym__bitwiseOperator] = STATE(2169), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(844), + [sym_identifier] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_cast] = ACTIONS(844), + [anon_sym_DOLLARtype] = ACTIONS(842), + [anon_sym_return] = ACTIONS(844), + [anon_sym_untyped] = ACTIONS(844), + [anon_sym_break] = ACTIONS(844), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_this] = ACTIONS(844), + [anon_sym_new] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_PERCENT] = ACTIONS(846), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(846), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_GT_GT_GT] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(849), + [anon_sym_QMARK_QMARK] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(849), + [anon_sym_null] = ACTIONS(844), + [aux_sym_integer_token1] = ACTIONS(844), + [aux_sym_integer_token2] = ACTIONS(842), + [aux_sym_float_token1] = ACTIONS(844), + [aux_sym_float_token2] = ACTIONS(842), + [anon_sym_true] = ACTIONS(844), + [anon_sym_false] = ACTIONS(844), + [aux_sym_string_token1] = ACTIONS(842), + [aux_sym_string_token3] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [845] = { + [sym_operator] = STATE(831), + [sym__unaryOperator] = STATE(186), + [sym__prefixUnaryOperator] = STATE(186), + [sym__postfixUnaryOperator] = STATE(186), + [sym__binaryOperator] = STATE(186), + [sym__arithmeticOperator] = STATE(186), + [sym__bitwiseOperator] = STATE(186), + [sym__logicalOperator] = STATE(186), + [sym__comparisonOperator] = STATE(186), + [sym__miscOperator] = STATE(186), + [sym__assignmentOperator] = STATE(186), + [sym__compoundAssignmentOperator] = STATE(186), + [sym__rangeOperator] = STATE(186), + [aux_sym_expression_repeat1] = STATE(843), + [sym_identifier] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_cast] = ACTIONS(2822), + [anon_sym_DOLLARtype] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_untyped] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_this] = ACTIONS(2822), + [anon_sym_new] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(808), + [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(57), + [anon_sym_null] = ACTIONS(2822), + [aux_sym_integer_token1] = ACTIONS(2822), + [aux_sym_integer_token2] = ACTIONS(2820), + [aux_sym_float_token1] = ACTIONS(2822), + [aux_sym_float_token2] = ACTIONS(2820), + [anon_sym_true] = ACTIONS(2822), + [anon_sym_false] = ACTIONS(2822), + [aux_sym_string_token1] = ACTIONS(2820), + [aux_sym_string_token3] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 23, + ACTIONS(1480), 1, + anon_sym_LBRACE, + ACTIONS(1492), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(1496), 1, + anon_sym_new, + ACTIONS(1498), 1, + anon_sym_null, + ACTIONS(1500), 1, + aux_sym_integer_token1, + ACTIONS(1502), 1, + aux_sym_integer_token2, + ACTIONS(1504), 1, + aux_sym_float_token1, + ACTIONS(1506), 1, + aux_sym_float_token2, + ACTIONS(1510), 1, + aux_sym_string_token1, + ACTIONS(1512), 1, + aux_sym_string_token3, + ACTIONS(2874), 1, + sym_identifier, + STATE(1447), 1, + sym_member_expression, + STATE(1486), 1, + sym_string, + STATE(1529), 1, + sym__constructor_call, + STATE(1559), 1, + sym__call, + STATE(2436), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1508), 2, + anon_sym_true, + anon_sym_false, + STATE(1516), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1517), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(700), 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(698), 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, + [111] = 23, + ACTIONS(1480), 1, + anon_sym_LBRACE, + ACTIONS(1492), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(1496), 1, + anon_sym_new, + ACTIONS(1498), 1, + anon_sym_null, + ACTIONS(1500), 1, + aux_sym_integer_token1, + ACTIONS(1502), 1, + aux_sym_integer_token2, + ACTIONS(1504), 1, + aux_sym_float_token1, + ACTIONS(1506), 1, + aux_sym_float_token2, + ACTIONS(1510), 1, + aux_sym_string_token1, + ACTIONS(1512), 1, + aux_sym_string_token3, + ACTIONS(2874), 1, + sym_identifier, + STATE(1447), 1, + sym_member_expression, + STATE(1486), 1, + sym_string, + STATE(1529), 1, + sym__constructor_call, + STATE(1559), 1, + sym__call, + STATE(2436), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1508), 2, + anon_sym_true, + anon_sym_false, + STATE(1558), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1517), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(694), 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(692), 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, + [222] = 22, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(1438), 1, + anon_sym_this, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1466), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1481), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1520), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(694), 13, + 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, + sym_identifier, + ACTIONS(692), 19, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [330] = 23, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(1438), 1, + anon_sym_this, + ACTIONS(2876), 1, + sym_identifier, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1466), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1445), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1520), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(700), 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(698), 19, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [440] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + ACTIONS(1054), 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, + 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, + [509] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2878), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1737), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(700), 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(698), 18, + 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, + [618] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2878), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1737), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(694), 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(692), 18, + 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, + [727] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_this, + ACTIONS(2880), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1655), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1901), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(700), 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(698), 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, + [836] = 23, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2882), 1, + sym_identifier, + STATE(1654), 1, + sym_string, + STATE(1689), 1, + sym_member_expression, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1761), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1846), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(700), 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(698), 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, + [945] = 23, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(1686), 1, + anon_sym_this, + ACTIONS(2884), 1, + sym_identifier, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1585), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1481), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1899), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(694), 13, + anon_sym_DOT, + anon_sym_in, + 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(692), 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, + [1054] = 23, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2882), 1, + sym_identifier, + STATE(1654), 1, + sym_string, + STATE(1689), 1, + sym_member_expression, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1806), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1846), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(694), 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(692), 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, + [1163] = 23, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(1686), 1, + anon_sym_this, + ACTIONS(2884), 1, + sym_identifier, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1585), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1445), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1899), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(700), 13, + anon_sym_DOT, + anon_sym_in, + 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(698), 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, + [1272] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_this, + ACTIONS(2880), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1655), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1901), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(694), 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(692), 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, + [1381] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(2886), 1, + sym_identifier, + STATE(860), 1, + aux_sym_member_expression_repeat1, + STATE(946), 1, + sym__lhs_expression, + STATE(951), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2743), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 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(666), 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, + [1483] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2891), 1, + anon_sym_this, + STATE(860), 1, + aux_sym_member_expression_repeat1, + STATE(946), 1, + sym__lhs_expression, + STATE(951), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2743), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 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(727), 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, + [1585] = 6, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [1659] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(2886), 1, + sym_identifier, + STATE(860), 1, + aux_sym_member_expression_repeat1, + STATE(946), 1, + sym__lhs_expression, + STATE(951), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2743), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 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(768), 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, + [1761] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(2886), 1, + sym_identifier, + STATE(860), 1, + aux_sym_member_expression_repeat1, + STATE(946), 1, + sym__lhs_expression, + STATE(951), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2743), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 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(772), 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, + [1863] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(2886), 1, + sym_identifier, + STATE(860), 1, + aux_sym_member_expression_repeat1, + STATE(946), 1, + sym__lhs_expression, + STATE(951), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2743), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 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(764), 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, + [1965] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2898), 1, + sym_identifier, + STATE(878), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2738), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 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(764), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [2065] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2900), 1, + sym_identifier, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, + sym_member_expression, + STATE(867), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2753), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 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(768), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [2165] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2902), 1, + sym_identifier, + ACTIONS(2905), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, + sym_member_expression, + STATE(867), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2753), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 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(727), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [2265] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2900), 1, + sym_identifier, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, + sym_member_expression, + STATE(867), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2753), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 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(764), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [2365] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2900), 1, + sym_identifier, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, + sym_member_expression, + STATE(867), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2753), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 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(666), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [2465] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2900), 1, + sym_identifier, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, + sym_member_expression, + STATE(867), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2753), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 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(772), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [2565] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(912), 1, + anon_sym_this, + ACTIONS(2908), 1, + sym_identifier, + STATE(873), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2758), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 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(764), 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, + [2665] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(912), 1, + anon_sym_this, + ACTIONS(2908), 1, + sym_identifier, + STATE(873), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2758), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 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(768), 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, + [2765] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2910), 1, + sym_identifier, + ACTIONS(2913), 1, + anon_sym_this, + STATE(873), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2758), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 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(727), 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, + [2865] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(912), 1, + anon_sym_this, + ACTIONS(2908), 1, + sym_identifier, + STATE(873), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2758), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 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(666), 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, + [2965] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(912), 1, + anon_sym_this, + ACTIONS(2908), 1, + sym_identifier, + STATE(873), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2758), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 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(772), 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, + [3065] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2898), 1, + sym_identifier, + STATE(878), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2738), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 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(666), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [3165] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2898), 1, + sym_identifier, + STATE(878), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2738), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 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(772), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [3265] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2919), 1, + anon_sym_this, + STATE(878), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2738), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 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(727), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [3365] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1686), 1, + anon_sym_this, + ACTIONS(2922), 1, + sym_identifier, + STATE(850), 1, + sym_member_expression, + STATE(881), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2754), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 13, + anon_sym_DOT, + anon_sym_in, + 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(764), 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, + [3465] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1686), 1, + anon_sym_this, + ACTIONS(2922), 1, + sym_identifier, + STATE(850), 1, + sym_member_expression, + STATE(881), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2754), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 13, + anon_sym_DOT, + anon_sym_in, + 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(768), 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, + [3565] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2924), 1, + sym_identifier, + ACTIONS(2927), 1, + anon_sym_this, + STATE(850), 1, + sym_member_expression, + STATE(881), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2754), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 13, + anon_sym_DOT, + anon_sym_in, + 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(727), 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, + [3665] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2898), 1, + sym_identifier, + STATE(878), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2738), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 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(768), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [3765] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1686), 1, + anon_sym_this, + ACTIONS(2922), 1, + sym_identifier, + STATE(850), 1, + sym_member_expression, + STATE(881), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2754), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 13, + anon_sym_DOT, + anon_sym_in, + 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(666), 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, + [3865] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1686), 1, + anon_sym_this, + ACTIONS(2922), 1, + sym_identifier, + STATE(850), 1, + sym_member_expression, + STATE(881), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2754), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 13, + anon_sym_DOT, + anon_sym_in, + 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(772), 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, + [3965] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(888), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 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(768), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4064] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + STATE(893), 1, + aux_sym_member_expression_repeat1, + STATE(1044), 1, + sym__lhs_expression, + STATE(1061), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 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(772), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4163] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(888), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 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(764), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4262] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2938), 1, + sym_identifier, + ACTIONS(2941), 1, + anon_sym_this, + STATE(888), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 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(727), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4361] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(888), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 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(666), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4460] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(888), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 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(772), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4559] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + STATE(893), 1, + aux_sym_member_expression_repeat1, + STATE(1044), 1, + sym__lhs_expression, + STATE(1061), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 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(764), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4658] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + STATE(893), 1, + aux_sym_member_expression_repeat1, + STATE(1044), 1, + sym__lhs_expression, + STATE(1061), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 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(768), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4757] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2947), 1, + anon_sym_this, + STATE(893), 1, + aux_sym_member_expression_repeat1, + STATE(1044), 1, + sym__lhs_expression, + STATE(1061), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 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(727), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4856] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + STATE(893), 1, + aux_sym_member_expression_repeat1, + STATE(1044), 1, + sym__lhs_expression, + STATE(1061), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 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(666), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4955] = 6, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(2950), 1, + anon_sym_DOT, + ACTIONS(2952), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [5025] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1604), 1, + anon_sym_this, + ACTIONS(2954), 1, + sym_identifier, + STATE(850), 1, + sym_member_expression, + STATE(898), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 11, + anon_sym_in, + 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(764), 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, + [5123] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2956), 1, + sym_identifier, + STATE(901), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2782), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 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(768), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [5221] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2958), 1, + sym_identifier, + ACTIONS(2961), 1, + anon_sym_this, + STATE(850), 1, + sym_member_expression, + STATE(898), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 11, + anon_sym_in, + 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(727), 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, + [5319] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1604), 1, + anon_sym_this, + ACTIONS(2954), 1, + sym_identifier, + STATE(850), 1, + sym_member_expression, + STATE(898), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 11, + anon_sym_in, + 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(768), 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, + [5417] = 10, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2950), 1, + anon_sym_DOT, + ACTIONS(2952), 1, + anon_sym_QMARK, + ACTIONS(2964), 1, + anon_sym_COLON, + ACTIONS(2966), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1046), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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(1048), 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, + [5495] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(2968), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_this, + STATE(901), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2782), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 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(727), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [5593] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1604), 1, + anon_sym_this, + ACTIONS(2954), 1, + sym_identifier, + STATE(850), 1, + sym_member_expression, + STATE(898), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 11, + anon_sym_in, + 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(666), 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, + [5691] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(1604), 1, + anon_sym_this, + ACTIONS(2954), 1, + sym_identifier, + STATE(850), 1, + sym_member_expression, + STATE(898), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 11, + anon_sym_in, + 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(772), 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, + [5789] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2956), 1, + sym_identifier, + STATE(901), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2782), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 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(772), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [5887] = 4, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [5953] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2956), 1, + sym_identifier, + STATE(901), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2782), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 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(666), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [6051] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2956), 1, + sym_identifier, + STATE(901), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2782), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 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(764), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [6149] = 9, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2974), 1, + anon_sym_DOT, + ACTIONS(2976), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2966), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1050), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1046), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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(1048), 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, + [6225] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 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(1114), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [6288] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [6351] = 6, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1046), 23, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + ACTIONS(1048), 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, + 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, + [6420] = 4, + ACTIONS(2966), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1960), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + ACTIONS(1962), 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, + [6484] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2966), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 23, + anon_sym_STAR, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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(1048), 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, + [6558] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2966), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 23, + anon_sym_STAR, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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(1048), 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, + [6632] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2966), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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(1046), 24, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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, + [6704] = 10, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, + ACTIONS(2966), 1, + anon_sym_EQ_GT, + ACTIONS(2982), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1046), 23, + anon_sym_STAR, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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(1048), 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, + [6780] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2966), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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(1046), 24, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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, + [6852] = 6, + ACTIONS(2966), 1, + anon_sym_EQ_GT, + ACTIONS(2984), 1, + anon_sym_DOT, + ACTIONS(2986), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [6919] = 6, + ACTIONS(2966), 1, + anon_sym_EQ_GT, + ACTIONS(2988), 1, + anon_sym_DOT, + ACTIONS(2990), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [6986] = 6, + ACTIONS(2966), 1, + anon_sym_EQ_GT, + ACTIONS(2992), 1, + anon_sym_DOT, + ACTIONS(2994), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [7053] = 6, + ACTIONS(2966), 1, + anon_sym_EQ_GT, + ACTIONS(2996), 1, + anon_sym_DOT, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [7120] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2872), 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(953), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [7179] = 4, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2822), 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(2820), 25, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [7240] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(928), 1, + aux_sym_expression_repeat1, + STATE(1926), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(836), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2169), 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(838), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [7318] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + STATE(842), 1, + sym_operator, + STATE(927), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(698), 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_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [7390] = 13, + ACTIONS(3002), 1, + anon_sym_DASH, + STATE(842), 1, + sym_operator, + STATE(927), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(1988), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3000), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3004), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(698), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [7468] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(931), 1, + aux_sym_expression_repeat1, + STATE(1962), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(836), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2169), 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(838), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [7546] = 13, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(928), 1, + aux_sym_expression_repeat1, + STATE(1926), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(842), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [7624] = 13, + ACTIONS(3008), 1, + anon_sym_DASH, + STATE(838), 1, + sym_operator, + STATE(924), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2130), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(830), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3006), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3010), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(698), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(828), 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, + anon_sym_DOT_DOT_DOT, + STATE(242), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [7702] = 10, + ACTIONS(832), 1, + anon_sym_DASH, + STATE(838), 1, + sym_operator, + STATE(924), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(698), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(830), 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(242), 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(828), 15, + 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, + anon_sym_DOT_DOT_DOT, + [7774] = 13, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(931), 1, + aux_sym_expression_repeat1, + STATE(1962), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(842), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [7852] = 12, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(842), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [7926] = 12, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(933), 1, + aux_sym_expression_repeat1, + STATE(1833), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(842), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [8000] = 4, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [8058] = 6, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3012), 1, + anon_sym_DOT, + ACTIONS(3014), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + 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, + [8120] = 12, + ACTIONS(3018), 1, + anon_sym_DASH, + STATE(939), 1, + aux_sym_expression_repeat1, + STATE(1292), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2178), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(830), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(810), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(3016), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3020), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(828), 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, + anon_sym_DOT_DOT_DOT, + STATE(242), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [8193] = 13, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(937), 1, + aux_sym_expression_repeat1, + STATE(1831), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(842), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [8268] = 13, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(938), 1, + aux_sym_expression_repeat1, + STATE(1785), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(842), 3, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [8343] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(933), 1, + aux_sym_expression_repeat1, + STATE(1833), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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(872), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [8416] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(937), 1, + aux_sym_expression_repeat1, + STATE(1831), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(836), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(838), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [8491] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(931), 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(928), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [8546] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1204), 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(1202), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [8601] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + STATE(848), 1, + sym_operator, + STATE(940), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(698), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [8670] = 6, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3022), 1, + anon_sym_DOT, + ACTIONS(3024), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + 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, + [8731] = 10, + ACTIONS(3030), 1, + anon_sym_DASH, + STATE(847), 1, + sym_operator, + STATE(949), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3032), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(698), 3, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(3028), 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(950), 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(3026), 15, + 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, + anon_sym_DOT_DOT_DOT, + [8800] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 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(1114), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [8855] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1141), 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(1138), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [8910] = 13, + ACTIONS(3002), 1, + anon_sym_DASH, + STATE(848), 1, + sym_operator, + STATE(940), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(1988), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(698), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3000), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3004), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [8985] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(938), 1, + aux_sym_expression_repeat1, + STATE(1785), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(836), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(838), 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(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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9060] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1180), 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(1178), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9115] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9170] = 6, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3034), 1, + anon_sym_DOT, + ACTIONS(3036), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9230] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3038), 1, + sym_identifier, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_RBRACK, + STATE(961), 1, + aux_sym_expression_repeat1, + STATE(1552), 1, + sym_operator, + STATE(2731), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9308] = 4, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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, + 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(1050), 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, + 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, + [9364] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3044), 1, + sym_identifier, + ACTIONS(3046), 1, + anon_sym_RBRACK, + STATE(1009), 1, + aux_sym_expression_repeat1, + STATE(1953), 1, + sym_operator, + STATE(2640), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9442] = 5, + ACTIONS(3048), 1, + anon_sym_DOT, + ACTIONS(3050), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9500] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3052), 1, + sym_identifier, + ACTIONS(3054), 1, + anon_sym_RBRACK, + STATE(1009), 1, + aux_sym_expression_repeat1, + STATE(1953), 1, + sym_operator, + STATE(2686), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9578] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3056), 1, + sym_identifier, + ACTIONS(3058), 1, + anon_sym_RBRACK, + STATE(965), 1, + aux_sym_expression_repeat1, + STATE(1552), 1, + sym_operator, + STATE(2853), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9656] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, + sym_identifier, + ACTIONS(3062), 1, + anon_sym_RBRACK, + STATE(955), 1, + aux_sym_expression_repeat1, + STATE(1552), 1, + sym_operator, + STATE(2819), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9734] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9788] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3064), 1, + sym_identifier, + ACTIONS(3066), 1, + anon_sym_RBRACK, + STATE(1009), 1, + aux_sym_expression_repeat1, + STATE(1953), 1, + sym_operator, + STATE(2707), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9866] = 4, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9922] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3068), 1, + sym_identifier, + ACTIONS(3070), 1, + anon_sym_RBRACK, + STATE(957), 1, + aux_sym_expression_repeat1, + STATE(1552), 1, + sym_operator, + STATE(2674), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [10000] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3072), 1, + sym_identifier, + ACTIONS(3074), 1, + anon_sym_RBRACK, + STATE(966), 1, + aux_sym_expression_repeat1, + STATE(1552), 1, + sym_operator, + STATE(2785), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [10078] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3076), 1, + sym_identifier, + ACTIONS(3078), 1, + anon_sym_RBRACK, + STATE(1009), 1, + aux_sym_expression_repeat1, + STATE(1953), 1, + sym_operator, + STATE(2683), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [10156] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3080), 1, + sym_identifier, + ACTIONS(3082), 1, + anon_sym_RBRACK, + STATE(1009), 1, + aux_sym_expression_repeat1, + STATE(1953), 1, + sym_operator, + STATE(2795), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [10234] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 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(1114), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [10288] = 6, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3084), 1, + anon_sym_DOT, + ACTIONS(3086), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + 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, + [10348] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 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(1054), 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, + 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, + [10402] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3088), 1, + anon_sym_RPAREN, + ACTIONS(3090), 1, + anon_sym_COMMA, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + STATE(2793), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [10477] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3092), 1, + anon_sym_RPAREN, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3096), 1, + sym__lookback_semicolon, + STATE(359), 1, + sym_operator, + STATE(1059), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [10546] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3098), 1, + anon_sym_RPAREN, + ACTIONS(3100), 1, + sym__lookback_semicolon, + STATE(332), 1, + sym_operator, + STATE(1043), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [10615] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3102), 1, + anon_sym_RPAREN, + ACTIONS(3104), 1, + sym__lookback_semicolon, + STATE(334), 1, + sym_operator, + STATE(1065), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [10684] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3106), 1, + anon_sym_RPAREN, + ACTIONS(3108), 1, + sym__lookback_semicolon, + STATE(335), 1, + sym_operator, + STATE(1039), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [10753] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3110), 1, + anon_sym_RPAREN, + ACTIONS(3112), 1, + sym__lookback_semicolon, + STATE(223), 1, + sym_operator, + STATE(1060), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [10822] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 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, + 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(1114), 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, + 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, + [10875] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3114), 1, + anon_sym_RPAREN, + ACTIONS(3116), 1, + sym__lookback_semicolon, + STATE(338), 1, + sym_operator, + STATE(1055), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [10944] = 13, + ACTIONS(842), 1, + anon_sym_in, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(978), 1, + aux_sym_expression_repeat1, + STATE(1879), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11017] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3118), 1, + anon_sym_RPAREN, + ACTIONS(3120), 1, + sym__lookback_semicolon, + STATE(340), 1, + sym_operator, + STATE(1063), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [11086] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3122), 1, + anon_sym_RPAREN, + ACTIONS(3124), 1, + sym__lookback_semicolon, + STATE(343), 1, + sym_operator, + STATE(1067), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [11155] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1204), 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(1202), 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, + 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, + [11208] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3126), 1, + anon_sym_RPAREN, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + STATE(2697), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11283] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3128), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + STATE(2739), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11358] = 13, + ACTIONS(698), 1, + anon_sym_RBRACE, + ACTIONS(3002), 1, + anon_sym_DASH, + STATE(858), 1, + sym_operator, + STATE(1000), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(1988), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3000), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3004), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11431] = 13, + ACTIONS(842), 1, + anon_sym_RBRACE, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(985), 1, + aux_sym_expression_repeat1, + STATE(1897), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11504] = 13, + ACTIONS(842), 1, + sym__lookback_semicolon, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(986), 1, + aux_sym_expression_repeat1, + STATE(1769), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11577] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3130), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + anon_sym_COLON, + ACTIONS(3134), 1, + sym__lookback_semicolon, + STATE(321), 1, + sym_operator, + STATE(1115), 1, + sym_access_identifiers, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [11646] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3136), 1, + anon_sym_RPAREN, + STATE(982), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + STATE(2692), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11721] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3138), 1, + anon_sym_RPAREN, + ACTIONS(3140), 1, + sym__lookback_semicolon, + STATE(232), 1, + sym_operator, + STATE(1041), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [11790] = 10, + ACTIONS(698), 1, + sym__lookback_semicolon, + ACTIONS(3146), 1, + anon_sym_DASH, + STATE(856), 1, + sym_operator, + STATE(1008), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3144), 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(1034), 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(3142), 15, + 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, + anon_sym_DOT_DOT_DOT, + [11857] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(838), 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(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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11928] = 10, + ACTIONS(698), 1, + anon_sym_RBRACE, + ACTIONS(808), 1, + anon_sym_DASH, + STATE(858), 1, + sym_operator, + STATE(1000), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [11995] = 13, + ACTIONS(842), 1, + anon_sym_COLON, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(993), 1, + aux_sym_expression_repeat1, + STATE(1732), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12068] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3150), 1, + anon_sym_RPAREN, + STATE(1024), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + STATE(2663), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12143] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3130), 1, + anon_sym_LPAREN, + ACTIONS(3152), 1, + anon_sym_COLON, + ACTIONS(3154), 1, + sym__lookback_semicolon, + STATE(317), 1, + sym_operator, + STATE(1178), 1, + sym_access_identifiers, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [12212] = 10, + ACTIONS(698), 1, + anon_sym_in, + ACTIONS(3160), 1, + anon_sym_DASH, + STATE(855), 1, + sym_operator, + STATE(1001), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3162), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3158), 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(1027), 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(3156), 15, + 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, + anon_sym_DOT_DOT_DOT, + [12279] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1204), 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(1202), 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, + 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, + [12332] = 13, + ACTIONS(698), 1, + sym__lookback_semicolon, + ACTIONS(3166), 1, + anon_sym_DASH, + STATE(856), 1, + sym_operator, + STATE(1008), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2190), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3164), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3168), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12405] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3170), 1, + anon_sym_RPAREN, + STATE(1021), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + STATE(2856), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12480] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(838), 1, + anon_sym_RBRACE, + STATE(985), 1, + aux_sym_expression_repeat1, + STATE(1897), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(836), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12553] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(838), 1, + anon_sym_in, + STATE(978), 1, + aux_sym_expression_repeat1, + STATE(1879), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(836), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12626] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3172), 1, + anon_sym_RPAREN, + ACTIONS(3174), 1, + sym__lookback_semicolon, + STATE(357), 1, + sym_operator, + STATE(1050), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [12695] = 12, + ACTIONS(3002), 1, + anon_sym_DASH, + STATE(991), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1988), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(698), 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(3000), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3004), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12766] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(838), 1, + anon_sym_COLON, + STATE(993), 1, + aux_sym_expression_repeat1, + STATE(1732), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(836), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12839] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3176), 1, + anon_sym_RPAREN, + ACTIONS(3178), 1, + sym__lookback_semicolon, + STATE(228), 1, + sym_operator, + STATE(1047), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [12908] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3180), 1, + anon_sym_RPAREN, + ACTIONS(3182), 1, + sym__lookback_semicolon, + STATE(349), 1, + sym_operator, + STATE(1048), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [12977] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3130), 1, + anon_sym_LPAREN, + ACTIONS(3184), 1, + anon_sym_COLON, + ACTIONS(3186), 1, + sym__lookback_semicolon, + STATE(323), 1, + sym_operator, + STATE(1121), 1, + sym_access_identifiers, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [13046] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(838), 1, + sym__lookback_semicolon, + STATE(986), 1, + aux_sym_expression_repeat1, + STATE(1769), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(836), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [13119] = 12, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(1009), 1, + aux_sym_expression_repeat1, + STATE(1953), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(842), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + ACTIONS(852), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(846), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [13190] = 13, + ACTIONS(698), 1, + anon_sym_COLON, + ACTIONS(3002), 1, + anon_sym_DASH, + STATE(852), 1, + sym_operator, + STATE(1004), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(1988), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3000), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3004), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [13263] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3130), 1, + anon_sym_LPAREN, + ACTIONS(3188), 1, + anon_sym_COLON, + ACTIONS(3190), 1, + sym__lookback_semicolon, + STATE(298), 1, + sym_operator, + STATE(1095), 1, + sym_access_identifiers, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [13332] = 13, + ACTIONS(698), 1, + anon_sym_in, + ACTIONS(3002), 1, + anon_sym_DASH, + STATE(855), 1, + sym_operator, + STATE(1001), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3162), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2187), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3158), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3194), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3156), 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, + anon_sym_DOT_DOT_DOT, + STATE(1027), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [13405] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3196), 1, + anon_sym_RPAREN, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + STATE(2804), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [13480] = 10, + ACTIONS(698), 1, + anon_sym_COLON, + ACTIONS(808), 1, + anon_sym_DASH, + STATE(852), 1, + sym_operator, + STATE(1004), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(700), 2, + anon_sym_DOT, + anon_sym_QMARK, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [13547] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3198), 1, + anon_sym_RPAREN, + ACTIONS(3200), 1, + sym__lookback_semicolon, + STATE(347), 1, + sym_operator, + STATE(1054), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [13616] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3130), 1, + anon_sym_LPAREN, + ACTIONS(3202), 1, + anon_sym_COLON, + ACTIONS(3204), 1, + sym__lookback_semicolon, + STATE(239), 1, + sym_operator, + STATE(1192), 1, + sym_access_identifiers, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [13685] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(931), 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(928), 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, + 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, + [13738] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3206), 1, + anon_sym_RPAREN, + ACTIONS(3208), 1, + sym__lookback_semicolon, + STATE(324), 1, + sym_operator, + STATE(1064), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [13807] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1141), 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(1138), 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, + 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, + [13860] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3210), 1, + anon_sym_RPAREN, + ACTIONS(3212), 1, + sym__lookback_semicolon, + STATE(307), 1, + sym_operator, + STATE(1062), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [13929] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3214), 1, + anon_sym_RPAREN, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + STATE(2662), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14004] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 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(1114), 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, + 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, + [14057] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(931), 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(928), 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, + 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, + [14110] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3216), 1, + anon_sym_RPAREN, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + STATE(2774), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14185] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1141), 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(1138), 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, + 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, + [14238] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3130), 1, + anon_sym_LPAREN, + ACTIONS(3218), 1, + anon_sym_COLON, + ACTIONS(3220), 1, + sym__lookback_semicolon, + STATE(326), 1, + sym_operator, + STATE(1127), 1, + sym_access_identifiers, + 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(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [14307] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1180), 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(1178), 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, + 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, + [14360] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3222), 1, + anon_sym_RPAREN, + ACTIONS(3224), 1, + sym__lookback_semicolon, + STATE(226), 1, + sym_operator, + STATE(1056), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [14429] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + 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, + [14482] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + 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, + [14535] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3226), 1, + anon_sym_RPAREN, + ACTIONS(3228), 1, + sym__lookback_semicolon, + STATE(328), 1, + sym_operator, + STATE(1051), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [14604] = 11, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3230), 1, + anon_sym_RPAREN, + ACTIONS(3232), 1, + sym__lookback_semicolon, + STATE(329), 1, + sym_operator, + STATE(1045), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [14673] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3234), 1, + anon_sym_RPAREN, + STATE(1013), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + STATE(2799), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14748] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1180), 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(1178), 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, + 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, + [14801] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(3236), 1, + sym_identifier, + ACTIONS(3239), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, + sym_member_expression, + STATE(1035), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(727), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + STATE(2646), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(729), 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, + [14887] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3242), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14957] = 12, + ACTIONS(3008), 1, + anon_sym_DASH, + STATE(1057), 1, + aux_sym_expression_repeat1, + STATE(1292), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(698), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2130), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(830), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3006), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3010), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(828), 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, + anon_sym_DOT_DOT_DOT, + STATE(242), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [15027] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3244), 1, + sym_identifier, + ACTIONS(3246), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, + sym_member_expression, + STATE(1035), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(764), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(2646), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(766), 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, + [15113] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3250), 1, + sym__lookback_semicolon, + STATE(339), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15179] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3244), 1, + sym_identifier, + ACTIONS(3246), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, + sym_member_expression, + STATE(1035), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(772), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(2646), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(774), 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, + [15265] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3252), 1, + sym__lookback_semicolon, + STATE(233), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15331] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(1049), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3254), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [15401] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3256), 1, + sym__lookback_semicolon, + STATE(336), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15467] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 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(1114), 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, + 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, + [15519] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3258), 1, + sym__lookback_semicolon, + STATE(333), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15585] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(1036), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [15655] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3262), 1, + sym__lookback_semicolon, + STATE(231), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15721] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3264), 1, + sym__lookback_semicolon, + STATE(358), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15787] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3266), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [15857] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3268), 1, + sym__lookback_semicolon, + STATE(224), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15923] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3270), 1, + sym__lookback_semicolon, + STATE(331), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15989] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3244), 1, + sym_identifier, + ACTIONS(3246), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, + sym_member_expression, + STATE(1035), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(666), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2646), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(668), 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, + [16075] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(1066), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(810), 2, + anon_sym_catch, + anon_sym_else, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [16145] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3272), 1, + sym__lookback_semicolon, + STATE(356), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16211] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3274), 1, + sym__lookback_semicolon, + STATE(341), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16277] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3276), 1, + sym__lookback_semicolon, + STATE(230), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16343] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(933), 1, + aux_sym_expression_repeat1, + STATE(1833), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(838), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [16413] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3244), 1, + sym_identifier, + ACTIONS(3246), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, + sym_member_expression, + STATE(1035), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(768), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(2646), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(770), 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, + [16499] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3278), 1, + sym__lookback_semicolon, + STATE(225), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16565] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3280), 1, + sym__lookback_semicolon, + STATE(227), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16631] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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, + 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, + [16683] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3282), 1, + sym__lookback_semicolon, + STATE(346), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16749] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3284), 1, + sym__lookback_semicolon, + STATE(342), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16815] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3286), 1, + sym__lookback_semicolon, + STATE(327), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16881] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3288), 1, + sym__lookback_semicolon, + STATE(337), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [16947] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(872), 2, + anon_sym_catch, + anon_sym_else, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17017] = 10, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3248), 1, + anon_sym_RPAREN, + ACTIONS(3290), 1, + sym__lookback_semicolon, + STATE(344), 1, + sym_operator, + STATE(1952), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(186), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [17083] = 12, + ACTIONS(2762), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1069), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17152] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3298), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17221] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3300), 1, + sym__lookback_semicolon, + STATE(1082), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17290] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3302), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17359] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3304), 1, + sym__lookback_semicolon, + STATE(1108), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17428] = 12, + ACTIONS(2786), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1081), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17497] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3306), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17566] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3308), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17635] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3308), 1, + sym__lookback_semicolon, + STATE(1087), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17704] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3310), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17773] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3312), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17842] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3312), 1, + sym__lookback_semicolon, + STATE(1088), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17911] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3314), 1, + sym__lookback_semicolon, + STATE(1089), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17980] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3316), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18049] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3318), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18118] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3318), 1, + sym__lookback_semicolon, + STATE(1091), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18187] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3320), 1, + sym__lookback_semicolon, + STATE(1092), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18256] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3322), 1, + anon_sym_RBRACE, + STATE(1219), 1, + aux_sym_expression_repeat1, + STATE(1857), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18325] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3324), 1, + anon_sym_RBRACK, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, - anon_sym_true, - anon_sym_false, - STATE(1244), 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(526), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -68515,86 +104309,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [111] = 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, + [18394] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3326), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(207), 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(544), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(542), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -68603,86 +104366,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, 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, + [18463] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3328), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(528), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -68691,86 +104423,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, 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, - 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, + [18532] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3330), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_DASH, + 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, - ACTIONS(542), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18601] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3330), 1, + sym__lookback_semicolon, + STATE(1096), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -68779,85 +104537,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [444] = 23, - ACTIONS(472), 1, - anon_sym_this, - 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(2443), 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, - sym__lhs_expression, + [18670] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3332), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, - anon_sym_true, - anon_sym_false, - STATE(1298), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1275), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(544), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_DASH, + 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, - ACTIONS(542), 19, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18739] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3334), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -68866,84 +104651,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [554] = 22, - ACTIONS(472), 1, - anon_sym_this, - 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, - 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, - sym__lhs_expression, + [18808] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3334), 1, + sym__lookback_semicolon, + STATE(1098), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, - anon_sym_true, - anon_sym_false, - STATE(1304), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1275), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(526), 13, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, anon_sym_BANG, - anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 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, - sym_identifier, - ACTIONS(528), 19, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18877] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3336), 1, + sym__lookback_semicolon, + STATE(1099), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -68952,66 +104765,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [662] = 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(2445), 1, - sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, + [18946] = 9, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3338), 1, + anon_sym_COLON, + ACTIONS(3340), 1, + sym__lookback_semicolon, + STATE(314), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1449), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(544), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -69020,13 +104802,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 18, - anon_sym_RBRACE, + STATE(186), 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), 15, + 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, @@ -69038,84 +104830,44 @@ 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_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(2445), 1, - sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, + anon_sym_DOT_DOT_DOT, + [19009] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3342), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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(1449), 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, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(528), 18, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69124,84 +104876,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [880] = 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(876), 1, - anon_sym_this, - ACTIONS(2447), 1, - sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, + [19078] = 12, + ACTIONS(698), 1, + anon_sym_in, + ACTIONS(3002), 1, + anon_sym_DASH, + STATE(1233), 1, + aux_sym_expression_repeat1, + STATE(1525), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1641), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(544), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3162), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2187), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3158), 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(542), 18, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3192), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3194), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3156), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69210,84 +104933,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1027), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [989] = 23, - 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(998), 1, - anon_sym_this, - ACTIONS(2449), 1, - 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, + [19147] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3344), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(1459), 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, - ACTIONS(526), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(528), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69296,84 +104990,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1098] = 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(876), 1, - anon_sym_this, - ACTIONS(2447), 1, - sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, + [19216] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3346), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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(1641), 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, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(528), 18, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69382,84 +105047,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1207] = 23, - 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(998), 1, - anon_sym_this, - ACTIONS(2449), 1, - 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, + [19285] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3346), 1, + sym__lookback_semicolon, + STATE(1101), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - STATE(1506), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(544), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(542), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69468,80 +105104,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1316] = 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(956), 1, - anon_sym_this, - ACTIONS(2451), 1, - sym_identifier, - STATE(720), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [19354] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3348), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(470), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_DASH, + 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, - ACTIONS(466), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [19423] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3350), 1, + anon_sym_RPAREN, + STATE(1181), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69550,80 +105218,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1418] = 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(956), 1, - anon_sym_this, - ACTIONS(2451), 1, - sym_identifier, - STATE(720), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [19492] = 12, + ACTIONS(2769), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1182), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(476), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(474), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69632,80 +105275,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1520] = 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(2453), 1, - sym_identifier, - ACTIONS(2456), 1, - anon_sym_this, - STATE(720), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [19561] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3352), 1, + anon_sym_RPAREN, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 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, - ACTIONS(483), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(478), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69714,80 +105332,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1622] = 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(956), 1, - anon_sym_this, - ACTIONS(2451), 1, - sym_identifier, - STATE(720), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [19630] = 12, + ACTIONS(2775), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1184), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(520), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(518), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69796,80 +105389,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1724] = 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(956), 1, - anon_sym_this, - ACTIONS(2451), 1, - sym_identifier, - STATE(720), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [19699] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3354), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(524), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(522), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69878,78 +105446,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1826] = 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(876), 1, - anon_sym_this, - ACTIONS(2459), 1, - sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(732), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + [19768] = 12, + ACTIONS(2788), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1111), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(476), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(474), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -69958,78 +105503,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [1926] = 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(444), 1, - anon_sym_this, - ACTIONS(2461), 1, - sym_identifier, - STATE(727), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [19837] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3356), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(524), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(522), 21, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70038,78 +105560,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [2026] = 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(444), 1, - anon_sym_this, - ACTIONS(2461), 1, - sym_identifier, - STATE(727), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [19906] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3358), 1, + sym__lookback_semicolon, + STATE(1112), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(520), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, anon_sym_BANG, - anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 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, - ACTIONS(518), 21, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [19975] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3356), 1, + sym__lookback_semicolon, + STATE(1191), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70118,78 +105674,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [2126] = 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(876), 1, - anon_sym_this, - ACTIONS(2459), 1, - sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(732), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + [20044] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3360), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(520), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(518), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70198,78 +105731,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [2226] = 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(2463), 1, - sym_identifier, - ACTIONS(2466), 1, - anon_sym_this, - STATE(727), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [20113] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3362), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 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, - ACTIONS(483), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(478), 21, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70278,78 +105788,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [2326] = 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(998), 1, - anon_sym_this, - ACTIONS(2469), 1, - sym_identifier, - STATE(733), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [20182] = 12, + ACTIONS(2758), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1117), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(520), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(518), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70358,78 +105845,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [2426] = 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(876), 1, - anon_sym_this, - ACTIONS(2459), 1, - sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(732), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + [20251] = 12, + ACTIONS(1968), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1118), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(524), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(522), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70438,59 +105902,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [2526] = 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(876), 1, - anon_sym_this, - ACTIONS(2459), 1, - sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(732), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + [20320] = 9, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3364), 1, + anon_sym_COLON, + ACTIONS(3366), 1, + sym__lookback_semicolon, + STATE(322), 1, + sym_operator, 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, - ACTIONS(470), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -70499,14 +105939,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(466), 19, - anon_sym_LPAREN, - anon_sym_COLON, + STATE(186), 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), 15, + 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, @@ -70518,78 +105967,44 @@ 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_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(733), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + anon_sym_DOT_DOT_DOT, + [20383] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3368), 1, + anon_sym_RBRACK, + STATE(1120), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, 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, - ACTIONS(524), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(522), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70598,78 +106013,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [2726] = 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(2471), 1, - sym_identifier, - ACTIONS(2474), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(732), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + [20452] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3370), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 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, - ACTIONS(483), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(478), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70678,78 +106070,55 @@ 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_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(2477), 1, - sym_identifier, - ACTIONS(2480), 1, - anon_sym_this, - STATE(733), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(509), 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, - ACTIONS(483), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [20521] = 12, + ACTIONS(61), 1, 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(478), 19, + ACTIONS(3372), 1, sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70758,78 +106127,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [2926] = 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(998), 1, - anon_sym_this, - ACTIONS(2469), 1, - sym_identifier, - STATE(733), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [20590] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3374), 1, + sym__lookback_semicolon, + STATE(1124), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(470), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(466), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70838,78 +106184,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [3026] = 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(998), 1, - anon_sym_this, - ACTIONS(2469), 1, - sym_identifier, - STATE(733), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [20659] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3376), 1, + anon_sym_RBRACK, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, 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, - ACTIONS(476), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(474), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -70918,57 +106241,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [3126] = 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(444), 1, - anon_sym_this, - ACTIONS(2461), 1, - sym_identifier, - STATE(727), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [20728] = 9, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3378), 1, + anon_sym_COLON, + ACTIONS(3380), 1, + sym__lookback_semicolon, + STATE(325), 1, + sym_operator, 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, - ACTIONS(476), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -70977,16 +106278,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(474), 21, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, + STATE(186), 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), 15, + 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, @@ -70998,78 +106306,44 @@ 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_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(727), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + anon_sym_DOT_DOT_DOT, + [20791] = 12, + ACTIONS(1984), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1128), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(470), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(466), 21, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71078,77 +106352,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [3326] = 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(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - STATE(747), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [20860] = 12, + ACTIONS(1990), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1129), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(470), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(466), 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71157,77 +106409,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [3425] = 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(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(745), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [20929] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3382), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(524), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(522), 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(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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71236,77 +106466,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [3524] = 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(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - STATE(747), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [20998] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3382), 1, + sym__lookback_semicolon, + STATE(1131), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(520), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(518), 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71315,127 +106523,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, 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, + [21067] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3384), 1, + sym__lookback_semicolon, + STATE(1132), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - 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, + [21136] = 9, + ACTIONS(808), 1, 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_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(745), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3386), 1, + anon_sym_COLON, + ACTIONS(3388), 1, + sym__lookback_semicolon, + STATE(330), 1, + sym_operator, 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, - ACTIONS(520), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -71444,15 +106617,23 @@ 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, + STATE(186), 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), 15, + 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, @@ -71464,146 +106645,101 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_DOT_DOT_DOT, + [21199] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3390), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - 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, + [21268] = 12, + ACTIONS(61), 1, 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_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(745), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3392), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(470), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(466), 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(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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71612,77 +106748,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [3981] = 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(2503), 1, - sym_identifier, - ACTIONS(2506), 1, - anon_sym_this, - STATE(745), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [21337] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3394), 1, + sym__lookback_semicolon, + STATE(1136), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 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, - ACTIONS(483), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(478), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71691,77 +106805,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4080] = 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(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - STATE(747), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [21406] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3396), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(524), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(522), 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71770,77 +106862,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4179] = 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(2509), 1, - sym_identifier, - ACTIONS(2512), 1, - anon_sym_this, - STATE(747), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [21475] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3398), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 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, - ACTIONS(483), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(478), 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71849,77 +106919,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4278] = 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(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - STATE(747), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [21544] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3398), 1, + sym__lookback_semicolon, + STATE(1140), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(476), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, anon_sym_BANG, - anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 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, - ACTIONS(474), 20, - sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_DASH_GT, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [21613] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3400), 1, + sym__lookback_semicolon, + STATE(1141), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -71928,77 +107033,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4377] = 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(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(745), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [21682] = 12, + ACTIONS(1996), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1143), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(476), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(474), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72007,76 +107090,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4476] = 20, - 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(752), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [21751] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3402), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(520), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(518), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72085,76 +107147,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4574] = 20, - 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(752), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [21820] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3402), 1, + sym__lookback_semicolon, + STATE(1144), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, - ACTIONS(524), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(522), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72163,76 +107204,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4672] = 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(2517), 1, - sym_identifier, - ACTIONS(2520), 1, - anon_sym_this, - STATE(752), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [21889] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3404), 1, + sym__lookback_semicolon, + STATE(1145), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 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, - ACTIONS(483), 10, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(478), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72241,58 +107261,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4770] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(2491), 1, - anon_sym_DOT, - ACTIONS(2495), 1, - anon_sym_QMARK, + [21958] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3406), 1, + sym__lookback_semicolon, + STATE(1148), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72301,80 +107318,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [4840] = 20, - 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(752), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [22027] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3408), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(470), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(466), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72383,76 +107375,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [4938] = 20, - 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(752), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [22096] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3410), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, - ACTIONS(476), 10, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(474), 19, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72461,56 +107432,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [5036] = 4, - ACTIONS(1524), 1, - anon_sym_COLON, + [22165] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3410), 1, + sym__lookback_semicolon, + STATE(1153), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72519,58 +107489,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [5102] = 3, + [22234] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3412), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72579,125 +107546,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [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, + [22303] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3414), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2169), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - 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, + [22372] = 12, + ACTIONS(61), 1, 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, - [5242] = 3, + ACTIONS(3416), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72706,170 +107660,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [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, + [22441] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3416), 1, + sym__lookback_semicolon, + STATE(1154), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 23, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_TILDE, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - 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, + [22510] = 12, + ACTIONS(3294), 1, 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, - [5384] = 10, - 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(3418), 1, + sym__lookback_semicolon, + STATE(1155), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - 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, + [22579] = 12, + ACTIONS(61), 1, 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, - [5461] = 6, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1508), 1, - anon_sym_LT, + ACTIONS(3420), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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), 23, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_TILDE, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -72878,212 +107831,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - ACTIONS(1504), 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, - anon_sym_BANG, + [22648] = 12, + ACTIONS(3294), 1, 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, - [5530] = 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(3420), 1, + sym__lookback_semicolon, + STATE(1157), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2497), 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, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1502), 24, - 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [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, + [22717] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3422), 1, + sym__lookback_semicolon, + STATE(1158), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2497), 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, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - anon_sym_TILDE, + sym_comment, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [5674] = 4, - ACTIONS(2497), 1, - anon_sym_COLON, + [22786] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3424), 1, + sym__lookback_semicolon, + STATE(1161), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 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(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1628), 26, - 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73092,298 +108002,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [5738] = 6, - ACTIONS(2497), 1, - anon_sym_EQ_GT, - ACTIONS(2525), 1, - anon_sym_DOT, - ACTIONS(2527), 1, - anon_sym_QMARK, + [22855] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3426), 1, + sym__lookback_semicolon, + STATE(1197), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, 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(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1502), 25, - 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [5805] = 6, - ACTIONS(2320), 1, - anon_sym_DOT, - ACTIONS(2322), 1, - anon_sym_QMARK, - ACTIONS(2497), 1, - anon_sym_EQ_GT, + [22924] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3428), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1502), 25, - 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, + 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [5872] = 6, - ACTIONS(2497), 1, - anon_sym_EQ_GT, - ACTIONS(2529), 1, - anon_sym_DOT, - ACTIONS(2531), 1, - anon_sym_QMARK, + [22993] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3430), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1502), 25, - 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, + 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [5939] = 6, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2126), 1, - anon_sym_QMARK, - ACTIONS(2497), 1, - anon_sym_EQ_GT, + [23062] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3432), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1502), 25, - 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, + 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [6006] = 3, + [23131] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3432), 1, + sym__lookback_semicolon, + STATE(1164), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2437), 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(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(644), 26, - 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73392,55 +108287,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [6065] = 4, - ACTIONS(1468), 1, - anon_sym_LBRACK, + [23200] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3434), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, 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(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(2387), 25, - 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73449,52 +108344,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [6126] = 4, - ACTIONS(1524), 1, - anon_sym_COLON, + [23269] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3436), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_DASH, + 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, - 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, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [23338] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3436), 1, + sym__lookback_semicolon, + STATE(1165), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73503,54 +108458,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [6184] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(2533), 1, - anon_sym_DOT, - ACTIONS(2535), 1, - anon_sym_QMARK, + [23407] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3438), 1, + sym__lookback_semicolon, + STATE(1166), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, - anon_sym_this, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 27, - sym__closing_brace_marker, - 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73559,53 +108515,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [6246] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(2537), 1, - anon_sym_DOT, - ACTIONS(2539), 1, - anon_sym_QMARK, + [23476] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3440), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, - anon_sym_this, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - 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, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73614,61 +108572,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [6307] = 10, - ACTIONS(588), 1, + [23545] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(704), 1, - sym_operator, - STATE(782), 1, + ACTIONS(3440), 1, + sym__lookback_semicolon, + STATE(1168), 1, aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(590), 2, + ACTIONS(3148), 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, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 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(272), 11, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, 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, - anon_sym_TILDE, - anon_sym_PERCENT, + sym__rangeOperator, + [23614] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3442), 1, + sym__lookback_semicolon, + STATE(1169), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73677,46 +108686,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [6376] = 3, + [23683] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3444), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - 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, - 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73725,50 +108743,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [6431] = 3, + [23752] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3446), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 27, - sym__lookback_semicolon, - sym__closing_brace_marker, - 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73777,50 +108800,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [6486] = 3, + [23821] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3448), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1516), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1514), 26, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73829,53 +108857,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [6541] = 13, - ACTIONS(2541), 1, + [23890] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(704), 1, - sym_operator, - STATE(782), 1, + ACTIONS(3448), 1, + sym__lookback_semicolon, + STATE(1172), 1, aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(590), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1844), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(542), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - ACTIONS(586), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2543), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2545), 5, + ACTIONS(3296), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(272), 9, + ACTIONS(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -73885,7 +108925,43 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(584), 10, + sym__rangeOperator, + [23959] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3450), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -73895,46 +108971,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [6616] = 3, + [24028] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3452), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1550), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1548), 26, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73943,50 +109028,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [6671] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1483), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, + [24097] = 12, + ACTIONS(3294), 1, 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(1480), 26, + ACTIONS(3452), 1, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_TILDE, + STATE(1173), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73995,63 +109085,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [6726] = 13, - ACTIONS(51), 1, + [24166] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(784), 1, + ACTIONS(3454), 1, + sym__lookback_semicolon, + STATE(1174), 1, aux_sym_expression_repeat1, - STATE(1501), 1, + STATE(1685), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 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, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74061,46 +109142,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [6801] = 3, + [24235] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3456), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1473), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1470), 26, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74109,63 +109199,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [6856] = 13, - ACTIONS(602), 1, + [24304] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(784), 1, + ACTIONS(3458), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1501), 1, + STATE(1809), 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(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(594), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74175,48 +109256,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [6931] = 13, - ACTIONS(602), 1, + [24373] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(785), 1, + ACTIONS(3460), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1550), 1, + STATE(1809), 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(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2169), 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, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -74226,7 +109324,43 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(596), 10, + sym__rangeOperator, + [24442] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3460), 1, + sym__lookback_semicolon, + STATE(1176), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74236,47 +109370,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [7005] = 5, - ACTIONS(2547), 1, - anon_sym_DOT, - ACTIONS(2549), 1, - anon_sym_QMARK, + [24511] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3462), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, - anon_sym_this, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - 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_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74285,50 +109427,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [7063] = 4, - ACTIONS(1524), 1, - anon_sym_COLON, + [24580] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3464), 1, + sym__lookback_semicolon, + STATE(1106), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 25, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74337,32 +109484,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [7119] = 10, - ACTIONS(582), 1, + [24649] = 9, + ACTIONS(808), 1, anon_sym_DASH, - STATE(711), 1, + ACTIONS(3466), 1, + anon_sym_COLON, + ACTIONS(3468), 1, + sym__lookback_semicolon, + STATE(351), 1, sym_operator, - STATE(798), 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(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(542), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -74372,7 +109521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(186), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -74384,10 +109533,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 15, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74399,45 +109549,44 @@ 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, + [24712] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3470), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 26, - sym__lookback_semicolon, - 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74446,62 +109595,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [7241] = 13, - ACTIONS(602), 1, + [24781] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(790), 1, + ACTIONS(3472), 1, + sym__lookback_semicolon, + STATE(1208), 1, aux_sym_expression_repeat1, - STATE(1532), 1, + STATE(1685), 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(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(594), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(599), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74511,58 +109652,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [7315] = 13, - ACTIONS(2551), 1, + [24850] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(711), 1, - sym_operator, - STATE(798), 1, + ACTIONS(3474), 1, + anon_sym_RPAREN, + STATE(932), 1, aux_sym_expression_repeat1, + STATE(1854), 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(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1837), 2, + STATE(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(542), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - 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, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74572,116 +109709,54 @@ 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, - 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, - 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [7457] = 13, - ACTIONS(51), 1, + [24919] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(785), 1, + ACTIONS(3476), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1550), 1, + STATE(1809), 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(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, + STATE(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(578), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74691,48 +109766,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [7531] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(2557), 1, - anon_sym_DOT, - ACTIONS(2559), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1508), 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(1506), 25, + [24988] = 12, + ACTIONS(2773), 1, sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_TILDE, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1265), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PERCENT, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74741,62 +109823,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [7591] = 13, - ACTIONS(602), 1, + [25057] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(795), 1, + ACTIONS(3478), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1472), 1, + STATE(1809), 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(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(594), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74806,58 +109880,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [7665] = 13, - ACTIONS(2551), 1, + [25126] = 12, + ACTIONS(2242), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(708), 1, - sym_operator, - STATE(793), 1, + STATE(1188), 1, aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1837), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(542), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2553), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2555), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74867,45 +109937,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [7739] = 3, + [25195] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3480), 1, + anon_sym_RBRACK, + STATE(1189), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - 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_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74914,62 +109994,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [7793] = 13, - ACTIONS(51), 1, + [25264] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(790), 1, + ACTIONS(3482), 1, + sym__lookback_semicolon, + STATE(1212), 1, aux_sym_expression_repeat1, - STATE(1532), 1, + STATE(1685), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(578), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -74979,56 +110051,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [7867] = 10, - ACTIONS(2565), 1, + [25333] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(706), 1, - sym_operator, - STATE(800), 1, + ACTIONS(3484), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(2567), 2, + ACTIONS(63), 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(2169), 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(780), 11, + ACTIONS(57), 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, 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_TILDE, - anon_sym_PERCENT, + sym__rangeOperator, + [25402] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3486), 1, + anon_sym_RBRACK, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75037,58 +110165,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [7935] = 13, - ACTIONS(51), 1, + [25471] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(795), 1, + ACTIONS(3488), 1, + anon_sym_while, + STATE(932), 1, aux_sym_expression_repeat1, - STATE(1472), 1, + STATE(1854), 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(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, + STATE(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(578), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75098,44 +110222,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8009] = 3, + [25540] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3490), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1550), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1548), 24, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75144,19 +110279,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [8062] = 3, + [25609] = 9, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(3492), 1, + anon_sym_COLON, + ACTIONS(3494), 1, + sym__lookback_semicolon, + STATE(262), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 17, - anon_sym_this, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -75165,24 +110316,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(1420), 27, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DASH_GT, + STATE(186), 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), 15, + 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, @@ -75194,63 +110344,43 @@ 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, - [8115] = 15, - ACTIONS(51), 1, + anon_sym_DOT_DOT_DOT, + [25672] = 12, + ACTIONS(1952), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2573), 1, - anon_sym_RBRACK, - STATE(812), 1, + STATE(1195), 1, aux_sym_expression_repeat1, - STATE(1281), 1, + STATE(1685), 1, sym_operator, - STATE(2417), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75260,56 +110390,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8192] = 12, - ACTIONS(602), 1, + [25741] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(804), 1, + ACTIONS(3496), 1, + anon_sym_RBRACK, + STATE(1196), 1, aux_sym_expression_repeat1, - STATE(1522), 1, + STATE(1296), 1, sym_operator, 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(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(594), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75319,44 +110447,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8263] = 3, + [25810] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3498), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1483), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1480), 24, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75365,48 +110504,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [8316] = 3, + [25879] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3500), 1, + anon_sym_RBRACK, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 25, - 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75415,63 +110561,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [8369] = 15, - ACTIONS(51), 1, + [25948] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2575), 1, - sym_identifier, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(853), 1, + ACTIONS(3502), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1809), 1, sym_operator, - STATE(2306), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75481,59 +110618,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8446] = 15, - ACTIONS(51), 1, + [26017] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2579), 1, - sym_identifier, - ACTIONS(2581), 1, - anon_sym_RBRACK, - STATE(807), 1, + ACTIONS(3502), 1, + sym__lookback_semicolon, + STATE(1218), 1, aux_sym_expression_repeat1, - STATE(1281), 1, + STATE(1685), 1, sym_operator, - STATE(2299), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75543,59 +110675,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8523] = 15, - ACTIONS(51), 1, + [26086] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2583), 1, - sym_identifier, - ACTIONS(2585), 1, + ACTIONS(3504), 1, anon_sym_RBRACK, - STATE(814), 1, + STATE(1200), 1, aux_sym_expression_repeat1, - STATE(1281), 1, + STATE(1296), 1, sym_operator, - STATE(2399), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75605,44 +110732,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8600] = 3, + [26155] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3506), 1, + anon_sym_RBRACK, + STATE(932), 1, + aux_sym_expression_repeat1, + STATE(1854), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1516), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1514), 24, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75651,63 +110789,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [8653] = 15, - ACTIONS(51), 1, + [26224] = 12, + ACTIONS(61), 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(3508), 1, + anon_sym_RBRACE, + STATE(1085), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1631), 1, sym_operator, - STATE(2426), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75717,59 +110846,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8730] = 15, - ACTIONS(51), 1, + [26293] = 12, + ACTIONS(3294), 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(3510), 1, + sym__lookback_semicolon, + STATE(1205), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1685), 1, sym_operator, - STATE(2431), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75779,44 +110903,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8807] = 3, + [26362] = 12, + ACTIONS(3294), 1, + anon_sym_DASH, + ACTIONS(3512), 1, + sym__lookback_semicolon, + STATE(1221), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1473), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(3148), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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, - 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, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75825,63 +110960,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, - [8860] = 15, - ACTIONS(51), 1, + [26431] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2595), 1, - sym_identifier, - ACTIONS(2597), 1, - anon_sym_RBRACK, - STATE(853), 1, + ACTIONS(3514), 1, + anon_sym_while, + STATE(1206), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1296), 1, sym_operator, - STATE(2374), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75891,44 +111017,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8937] = 3, + [26500] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3516), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, - anon_sym_this, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 27, - sym__closing_brace_marker, - 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, + 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75937,63 +111074,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [26569] = 12, + 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(3518), 1, + anon_sym_while, + STATE(932), 1, aux_sym_expression_repeat1, - STATE(1281), 1, + STATE(1854), 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, + STATE(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76003,59 +111131,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [26638] = 12, + ACTIONS(3294), 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(3520), 1, + sym__lookback_semicolon, + STATE(1226), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1685), 1, sym_operator, - STATE(2290), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76065,59 +111188,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, + [26707] = 12, + ACTIONS(61), 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(3520), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1281), 1, + STATE(1809), 1, sym_operator, - STATE(2318), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76127,178 +111245,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - 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, - 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, - anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_COLON, - ACTIONS(2621), 1, - sym__lookback_semicolon, - STATE(111), 1, - sym_operator, - STATE(1009), 1, - sym_access_identifiers, - 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [9375] = 11, - ACTIONS(582), 1, + [26776] = 12, + ACTIONS(61), 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, + ACTIONS(3522), 1, + anon_sym_RBRACK, + STATE(1086), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, sym_operator, - STATE(996), 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, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76307,55 +111302,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9443] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2627), 1, - anon_sym_COLON, - ACTIONS(2629), 1, + [26845] = 12, + ACTIONS(2780), 1, sym__lookback_semicolon, - STATE(168), 1, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1227), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(1005), 1, - sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76364,57 +111359,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9511] = 14, - ACTIONS(51), 1, + [26914] = 12, + ACTIONS(842), 1, + sym__lookback_semicolon, + ACTIONS(855), 1, anon_sym_DASH, - ACTIONS(2631), 1, - anon_sym_RPAREN, - ACTIONS(2633), 1, - anon_sym_COMMA, - STATE(850), 1, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1809), 1, sym_operator, - STATE(2362), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(858), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(852), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(846), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(861), 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(849), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76424,55 +111416,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [26983] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2635), 1, - anon_sym_RPAREN, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2639), 1, + ACTIONS(3524), 1, sym__lookback_semicolon, - STATE(106), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, sym_operator, - STATE(889), 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(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76481,55 +111473,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9653] = 11, - ACTIONS(582), 1, + [27052] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2641), 1, - anon_sym_RPAREN, - ACTIONS(2643), 1, + ACTIONS(3524), 1, sym__lookback_semicolon, - STATE(101), 1, + STATE(1228), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(887), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76538,55 +111530,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9721] = 11, - ACTIONS(582), 1, + [27121] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, - anon_sym_COLON, - ACTIONS(2647), 1, + ACTIONS(3526), 1, sym__lookback_semicolon, - STATE(164), 1, + STATE(1229), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(981), 1, - sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76595,121 +111587,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, 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, - 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, + [27190] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2653), 1, - anon_sym_RPAREN, - ACTIONS(2655), 1, + ACTIONS(3528), 1, sym__lookback_semicolon, - STATE(121), 1, + STATE(1234), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(894), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76718,55 +111644,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9943] = 11, - ACTIONS(582), 1, + [27259] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2657), 1, - anon_sym_RPAREN, - ACTIONS(2659), 1, + ACTIONS(3530), 1, sym__lookback_semicolon, - STATE(129), 1, + STATE(1217), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(893), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76775,55 +111701,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10011] = 11, - ACTIONS(582), 1, + [27328] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2661), 1, - anon_sym_RPAREN, - ACTIONS(2663), 1, + ACTIONS(3532), 1, sym__lookback_semicolon, - STATE(131), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 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(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76832,56 +111758,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10079] = 13, - ACTIONS(594), 1, - sym__lookback_semicolon, - ACTIONS(602), 1, + [27397] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(831), 1, + ACTIONS(3534), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1584), 1, + STATE(1809), 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(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2169), 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(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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76891,43 +111815,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10151] = 3, + [27466] = 12, + ACTIONS(842), 1, + anon_sym_RBRACE, + ACTIONS(855), 1, + anon_sym_DASH, + STATE(1219), 1, + aux_sym_expression_repeat1, + STATE(1857), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 17, - anon_sym_this, + ACTIONS(858), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 26, - sym__lookback_semicolon, - 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, + ACTIONS(846), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76936,59 +111872,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [10203] = 11, - ACTIONS(582), 1, + [27535] = 12, + ACTIONS(842), 1, + anon_sym_in, + ACTIONS(855), 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, + STATE(1220), 1, + aux_sym_expression_repeat1, + STATE(1860), 1, sym_operator, - STATE(895), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(858), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(852), 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(846), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(861), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(849), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76997,54 +111929,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10271] = 10, - ACTIONS(542), 1, - anon_sym_COLON, - ACTIONS(582), 1, + [27604] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(716), 1, - sym_operator, - STATE(845), 1, + ACTIONS(3536), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, + STATE(1809), 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(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(49), 9, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77053,56 +111986,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10337] = 13, - ACTIONS(51), 1, + [27673] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(578), 1, - anon_sym_RBRACE, - STATE(870), 1, + ACTIONS(3538), 1, + sym__lookback_semicolon, + STATE(1223), 1, aux_sym_expression_repeat1, - STATE(1517), 1, + STATE(1685), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77112,55 +112043,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10409] = 11, - ACTIONS(582), 1, + [27742] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2669), 1, - anon_sym_RPAREN, - ACTIONS(2671), 1, + ACTIONS(3540), 1, sym__lookback_semicolon, - STATE(135), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, sym_operator, - STATE(898), 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(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77169,123 +112100,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, 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, - 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(518), 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(520), 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, - [10563] = 14, - ACTIONS(51), 1, + [27811] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2673), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(3536), 1, + sym__lookback_semicolon, + STATE(1071), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1685), 1, sym_operator, - STATE(2348), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77295,55 +112157,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, + [27880] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(873), 1, + ACTIONS(3542), 1, + sym__lookback_semicolon, + STATE(1179), 1, aux_sym_expression_repeat1, - STATE(1091), 1, + STATE(1685), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(590), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1869), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(562), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - ACTIONS(586), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2677), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2679), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77353,55 +112214,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10707] = 12, - ACTIONS(2551), 1, + [27949] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(848), 1, + ACTIONS(3544), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1809), 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(1837), 2, + STATE(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(542), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - 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, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77411,57 +112271,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10777] = 14, - ACTIONS(51), 1, + [28018] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2681), 1, - anon_sym_RPAREN, - STATE(838), 1, + ACTIONS(3546), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1809), 1, sym_operator, - STATE(2346), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77471,55 +112328,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10851] = 11, - ACTIONS(582), 1, + [28087] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2683), 1, - anon_sym_RPAREN, - ACTIONS(2685), 1, + ACTIONS(3548), 1, sym__lookback_semicolon, - STATE(149), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, sym_operator, - STATE(900), 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(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77528,57 +112385,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10919] = 14, - ACTIONS(51), 1, + [28156] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2687), 1, - anon_sym_RPAREN, - STATE(862), 1, + ACTIONS(3550), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1809), 1, sym_operator, - STATE(2437), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77588,56 +112442,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [28225] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(716), 1, - sym_operator, - STATE(845), 1, + ACTIONS(3550), 1, + sym__lookback_semicolon, + STATE(1074), 1, aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1837), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2553), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2555), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77647,56 +112499,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11065] = 13, - ACTIONS(51), 1, + [28294] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(578), 1, - anon_sym_COLON, - STATE(865), 1, + ACTIONS(3552), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1446), 1, + STATE(1809), 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(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, + STATE(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77706,55 +112556,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [28363] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2689), 1, - anon_sym_RPAREN, - ACTIONS(2691), 1, + ACTIONS(3554), 1, sym__lookback_semicolon, - STATE(171), 1, + STATE(1075), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(899), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77763,57 +112613,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11205] = 14, - ACTIONS(51), 1, + [28432] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2693), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(838), 1, + anon_sym_in, + STATE(1220), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1860), 1, sym_operator, - STATE(2328), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77823,55 +112670,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [28501] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(850), 1, + ACTIONS(3556), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1809), 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(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(578), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77881,55 +112727,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [28570] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2695), 1, - anon_sym_RPAREN, - ACTIONS(2697), 1, + ACTIONS(3558), 1, sym__lookback_semicolon, - STATE(154), 1, + STATE(1236), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(905), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3292), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3296), 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(3142), 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, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, + [28639] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3560), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77938,55 +112841,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11417] = 12, - ACTIONS(602), 1, + [28708] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(850), 1, + ACTIONS(3556), 1, + sym__lookback_semicolon, + STATE(1077), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1685), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(605), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(594), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(599), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77996,55 +112898,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, + [28777] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2699), 1, - anon_sym_RPAREN, - ACTIONS(2701), 1, + ACTIONS(3562), 1, sym__lookback_semicolon, - STATE(117), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, sym_operator, - STATE(892), 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(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78053,57 +112955,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [28846] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2703), 1, - anon_sym_RPAREN, - STATE(847), 1, + ACTIONS(3564), 1, + sym__lookback_semicolon, + STATE(1240), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1685), 1, sym_operator, - STATE(2326), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78113,55 +113012,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, + [28915] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(853), 1, + ACTIONS(3566), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1809), 1, sym_operator, 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78171,122 +113069,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [28984] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(713), 1, - sym_operator, - STATE(835), 1, + ACTIONS(3568), 1, + sym__lookback_semicolon, + STATE(1231), 1, aux_sym_expression_repeat1, + STATE(1685), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1837), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2553), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2555), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78296,57 +113126,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11857] = 14, - ACTIONS(51), 1, + [29053] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2705), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(3570), 1, + sym__lookback_semicolon, + STATE(1078), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1685), 1, sym_operator, - STATE(2402), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78356,57 +113183,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11931] = 14, - ACTIONS(51), 1, + [29122] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2707), 1, + ACTIONS(3572), 1, anon_sym_RPAREN, - STATE(850), 1, + STATE(1104), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1296), 1, sym_operator, - STATE(2309), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78416,55 +113240,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2709), 1, - anon_sym_RPAREN, - ACTIONS(2711), 1, + [29191] = 12, + ACTIONS(2720), 1, sym__lookback_semicolon, - STATE(139), 1, + ACTIONS(3294), 1, + anon_sym_DASH, + STATE(1245), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(890), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78473,55 +113297,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, + [29260] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2713), 1, - anon_sym_RPAREN, - ACTIONS(2715), 1, + ACTIONS(3574), 1, sym__lookback_semicolon, - STATE(160), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, sym_operator, - STATE(888), 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(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78530,57 +113354,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [29329] = 12, + ACTIONS(2712), 1, + sym__lookback_semicolon, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2717), 1, - anon_sym_RPAREN, - STATE(857), 1, + STATE(1238), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1685), 1, sym_operator, - STATE(2308), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78590,55 +113411,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 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, + [29398] = 12, + 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(3576), 1, + anon_sym_while, + STATE(1190), 1, + aux_sym_expression_repeat1, + STATE(1296), 1, sym_operator, - STATE(1033), 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, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78647,57 +113468,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [29467] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2723), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(3578), 1, + sym__lookback_semicolon, + STATE(1249), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1685), 1, sym_operator, - STATE(2295), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78707,56 +113525,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12357] = 13, - ACTIONS(51), 1, + [29536] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(578), 1, + ACTIONS(3580), 1, sym__lookback_semicolon, - STATE(831), 1, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1584), 1, + STATE(1809), 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(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, + STATE(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78766,55 +113582,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [29605] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2725), 1, - anon_sym_RPAREN, - ACTIONS(2727), 1, + ACTIONS(3582), 1, sym__lookback_semicolon, - STATE(93), 1, + STATE(1251), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(896), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78823,56 +113639,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12497] = 13, - ACTIONS(594), 1, - anon_sym_COLON, - ACTIONS(602), 1, + [29674] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(865), 1, + ACTIONS(3584), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1446), 1, + STATE(1809), 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(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2169), 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(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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78882,55 +113696,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [29743] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_RPAREN, - ACTIONS(2731), 1, + ACTIONS(3586), 1, sym__lookback_semicolon, - STATE(98), 1, + STATE(1253), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(891), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78939,55 +113753,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12637] = 11, - ACTIONS(582), 1, + [29812] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_COLON, - ACTIONS(2735), 1, + ACTIONS(3588), 1, sym__lookback_semicolon, - STATE(144), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, sym_operator, - STATE(912), 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, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78996,113 +113810,54 @@ 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, - 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, - 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, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, - [12771] = 14, - ACTIONS(51), 1, + [29881] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2737), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(3590), 1, + sym__lookback_semicolon, + STATE(1255), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1685), 1, sym_operator, - STATE(2293), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79112,56 +113867,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12845] = 13, - ACTIONS(594), 1, - anon_sym_RBRACE, - ACTIONS(602), 1, + [29950] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(870), 1, + ACTIONS(3592), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1517), 1, + STATE(1809), 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(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2169), 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(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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79171,123 +113924,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, 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, + [30019] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_RPAREN, - STATE(869), 1, + ACTIONS(3594), 1, + sym__lookback_semicolon, + STATE(1257), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1685), 1, sym_operator, - STATE(2292), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79297,55 +113981,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13077] = 12, - ACTIONS(51), 1, + [30088] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(804), 1, + ACTIONS(3596), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1522), 1, + STATE(1809), 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(2169), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(772), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79355,55 +114038,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13147] = 11, - ACTIONS(582), 1, + [30157] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2741), 1, - anon_sym_RPAREN, - ACTIONS(2743), 1, + ACTIONS(3598), 1, sym__lookback_semicolon, - STATE(115), 1, + STATE(1259), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(904), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79412,57 +114095,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13215] = 14, - ACTIONS(51), 1, + [30226] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_RPAREN, - STATE(856), 1, + ACTIONS(3600), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1809), 1, sym_operator, - STATE(2429), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79472,57 +114152,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13289] = 14, - ACTIONS(51), 1, + [30295] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2747), 1, - anon_sym_RPAREN, - STATE(823), 1, + ACTIONS(3602), 1, + sym__lookback_semicolon, + STATE(1261), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1685), 1, sym_operator, - STATE(2368), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79532,43 +114209,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13363] = 3, + [30364] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3604), 1, + sym__lookback_semicolon, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, - anon_sym_this, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2169), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - 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, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79577,115 +114266,55 @@ 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, - [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, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(2755), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2751), 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(801), 11, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, 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_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, - [13481] = 11, - ACTIONS(582), 1, + [30433] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2757), 1, - anon_sym_RPAREN, - ACTIONS(2759), 1, + ACTIONS(3606), 1, sym__lookback_semicolon, - STATE(156), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 1, sym_operator, - STATE(884), 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(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79694,55 +114323,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13549] = 11, - ACTIONS(582), 1, + [30502] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2761), 1, - anon_sym_RPAREN, - ACTIONS(2763), 1, + ACTIONS(3608), 1, sym__lookback_semicolon, - STATE(114), 1, + STATE(1264), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(901), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79751,56 +114380,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13617] = 13, - ACTIONS(542), 1, - sym__lookback_semicolon, - ACTIONS(2765), 1, + [30571] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(715), 1, - sym_operator, - STATE(863), 1, + ACTIONS(3610), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, + STATE(1809), 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, + STATE(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79810,54 +114437,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 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, + [30640] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(906), 1, + ACTIONS(3612), 1, + sym__lookback_semicolon, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1809), 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(2169), 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), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79867,54 +114494,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13758] = 12, - ACTIONS(51), 1, + [30709] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - STATE(850), 1, + ACTIONS(3614), 1, + sym__lookback_semicolon, + STATE(1267), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1685), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2773), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1857), 2, + STATE(2199), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3144), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3296), 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(3142), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79924,53 +114551,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13827] = 10, - ACTIONS(582), 1, + [30778] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2777), 1, + ACTIONS(3616), 1, sym__lookback_semicolon, - STATE(159), 1, + STATE(1211), 1, + aux_sym_expression_repeat1, + STATE(1809), 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, + STATE(2169), 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79979,53 +114608,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(186), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13892] = 10, - ACTIONS(582), 1, + [30847] = 12, + ACTIONS(3294), 1, anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2779), 1, + ACTIONS(3618), 1, sym__lookback_semicolon, - STATE(116), 1, + STATE(1262), 1, + aux_sym_expression_repeat1, + STATE(1685), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3148), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2199), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3144), 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(3292), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3296), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3142), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -80034,547 +114665,1176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1034), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13957] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(883), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, + [30916] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, + sym_member_expression, + STATE(1011), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2781), 2, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(3620), 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, + [30995] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, + sym_member_expression, + STATE(987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(3620), 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, + [31074] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, + sym_member_expression, + STATE(1007), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(3620), 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, + [31153] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, + sym_member_expression, + STATE(1274), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(766), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(764), 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(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [31236] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, + sym_member_expression, + STATE(1274), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(770), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(768), 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(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [31319] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(3626), 1, + sym_identifier, + ACTIONS(3629), 1, + anon_sym_this, + STATE(969), 1, + sym_member_expression, + STATE(1274), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(729), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(727), 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(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [31402] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, + sym_member_expression, + STATE(1274), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(668), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(666), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, + anon_sym_DASH_GT, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14026] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2783), 1, - sym__lookback_semicolon, - STATE(99), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [31485] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, + sym_member_expression, + STATE(1274), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(774), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(772), 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(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_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, - [14091] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2785), 1, - sym__lookback_semicolon, - STATE(141), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [31568] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, + sym_member_expression, + STATE(1016), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, - 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, - [14156] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(3620), 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, + [31647] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, + sym_member_expression, + STATE(995), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(3620), 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, + [31725] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3632), 1, + sym_identifier, + ACTIONS(3634), 1, + anon_sym_this, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(700), 3, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(698), 6, + anon_sym_DOT, anon_sym_RPAREN, - ACTIONS(2787), 1, - sym__lookback_semicolon, - STATE(100), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2223), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [31813] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, + sym_member_expression, + STATE(1026), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, - 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2762), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(3620), 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, + [31891] = 23, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, + aux_sym_string_token1, + ACTIONS(722), 1, + aux_sym_string_token3, + ACTIONS(3636), 1, + sym_identifier, + ACTIONS(3638), 1, + anon_sym_this, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, + sym_member_expression, + STATE(2214), 1, + sym_string, + STATE(2615), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(718), 2, + anon_sym_true, + anon_sym_false, + STATE(291), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(700), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(698), 5, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14221] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2789), 1, - sym__lookback_semicolon, - STATE(112), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2227), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [31979] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3640), 1, + sym_identifier, + STATE(1284), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(766), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(764), 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_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_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, - [14286] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2791), 1, - sym__lookback_semicolon, - STATE(97), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2749), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [32061] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3640), 1, + sym_identifier, + STATE(1284), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(770), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(768), 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_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_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, - [14351] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2793), 1, - sym__lookback_semicolon, - STATE(109), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2749), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [32143] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(3642), 1, + sym_identifier, + ACTIONS(3645), 1, + anon_sym_this, + STATE(1284), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(729), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(727), 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_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_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, - [14416] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2795), 1, - sym__lookback_semicolon, - STATE(145), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2749), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [32225] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3640), 1, + sym_identifier, + STATE(1284), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(668), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(666), 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_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_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, - [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, + STATE(2749), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [32307] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3640), 1, + sym_identifier, + STATE(1284), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(774), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(772), 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_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_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, - [14546] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2799), 1, - sym__lookback_semicolon, - STATE(132), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2749), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [32389] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(1360), 1, + anon_sym_DOT, + ACTIONS(1362), 1, + anon_sym_QMARK, + ACTIONS(1530), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(3648), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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, - 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, + ACTIONS(1046), 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_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80584,219 +115844,97 @@ 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, - [14611] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2801), 1, - sym__lookback_semicolon, - STATE(118), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + anon_sym_DOT_DOT_DOT, + [32448] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 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(3650), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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, - 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(1046), 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, - [14676] = 12, - ACTIONS(2541), 1, - anon_sym_DASH, - STATE(903), 1, - aux_sym_expression_repeat1, - STATE(1091), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(542), 2, - sym__closing_brace_marker, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(590), 2, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1844), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - 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, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14745] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2803), 1, - sym__lookback_semicolon, - STATE(147), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + anon_sym_DOT_DOT_DOT, + [32507] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 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(3650), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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, - 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(1046), 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, - [14810] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, anon_sym_RPAREN, - ACTIONS(2805), 1, - sym__lookback_semicolon, - STATE(128), 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_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, 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, - 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, @@ -80806,52 +115944,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, - [14875] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2807), 1, - sym__lookback_semicolon, - STATE(113), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + anon_sym_DOT_DOT_DOT, + [32566] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(1530), 1, + anon_sym_LBRACK, + ACTIONS(1998), 1, + anon_sym_DOT, + ACTIONS(2000), 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(3648), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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, - 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, + ACTIONS(1046), 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_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80861,52 +115994,45 @@ 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, - [14940] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2809), 1, - sym__lookback_semicolon, - STATE(102), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + anon_sym_DOT_DOT_DOT, + [32625] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(1998), 1, + anon_sym_DOT, + ACTIONS(2000), 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(3648), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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, - 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, + ACTIONS(1046), 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_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80916,157 +116042,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, - [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_DOT_DOT_DOT, + [32681] = 23, + ACTIONS(702), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(704), 1, 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, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, aux_sym_float_token2, + ACTIONS(720), 1, aux_sym_string_token1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(1508), 24, + ACTIONS(820), 1, anon_sym_this, - anon_sym_AT, + ACTIONS(3652), 1, + sym_identifier, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(293), 1, + sym_member_expression, + STATE(1302), 1, + sym_string, + STATE(2615), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(718), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(692), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(694), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + STATE(1325), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [32767] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, 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, + ACTIONS(678), 1, aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, aux_sym_float_token1, - anon_sym_true, - anon_sym_false, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3638), 1, + anon_sym_this, + ACTIONS(3654), 1, sym_identifier, - [15056] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(804), 1, - aux_sym_expression_repeat1, - STATE(1522), 1, - sym_operator, + STATE(1298), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(578), 2, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(766), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(764), 7, sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, + anon_sym_QMARK, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15125] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2811), 1, - sym__lookback_semicolon, - STATE(107), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2756), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [32847] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(1360), 1, + anon_sym_DOT, + ACTIONS(1362), 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(3648), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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, - 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, + ACTIONS(1046), 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_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -81076,52 +116213,45 @@ 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, - [15190] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2813), 1, - sym__lookback_semicolon, - STATE(134), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + anon_sym_DOT_DOT_DOT, + [32903] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 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(3650), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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, - 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, + ACTIONS(1046), 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_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -81131,363 +116261,370 @@ 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, - [15255] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [32959] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(942), 1, + anon_sym_this, + ACTIONS(3656), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1308), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2815), 2, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(694), 3, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(692), 4, anon_sym_RPAREN, anon_sym_COMMA, - 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15324] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2817), 1, anon_sym_RBRACK, - STATE(1035), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, + anon_sym_EQ_GT, + STATE(1329), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33045] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3638), 1, + anon_sym_this, + ACTIONS(3654), 1, + sym_identifier, + STATE(1298), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(770), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(768), 7, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15392] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2819), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + STATE(2756), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33125] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(3658), 1, + sym_identifier, + ACTIONS(3661), 1, + anon_sym_this, + STATE(1298), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(729), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(727), 7, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15460] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2821), 1, - anon_sym_RBRACK, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, - sym_operator, + STATE(2756), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33205] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, 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(3650), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [15528] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2823), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, - 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, - [15596] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2825), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [33261] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3638), 1, + anon_sym_this, + ACTIONS(3654), 1, + sym_identifier, + STATE(1298), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(668), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(666), 7, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15664] = 9, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2827), 1, + STATE(2756), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33341] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3638), 1, + anon_sym_this, + ACTIONS(3654), 1, + sym_identifier, + STATE(1298), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(774), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(772), 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(2756), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33421] = 4, + ACTIONS(3648), 1, anon_sym_COLON, - ACTIONS(2829), 1, - sym__lookback_semicolon, - STATE(163), 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, + ACTIONS(1962), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -81496,22 +116633,18 @@ 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, + ACTIONS(1960), 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_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -81523,278 +116656,356 @@ 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, - anon_sym_DASH, - ACTIONS(2831), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [33468] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3664), 1, + sym_identifier, + ACTIONS(3666), 1, + anon_sym_LPAREN, + ACTIONS(3668), 1, + anon_sym_RPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2485), 1, + sym_type, + STATE(3251), 1, + sym__function_type_args, 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, - 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, - [15794] = 12, - ACTIONS(2825), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, - anon_sym_DASH, - STATE(1016), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33555] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(786), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3664), 1, + sym_identifier, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2442), 1, + sym_type, + STATE(3335), 1, + sym__function_type_args, 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, - 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15862] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2839), 1, - sym__lookback_semicolon, - STATE(974), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33642] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3664), 1, + sym_identifier, + ACTIONS(3666), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, + anon_sym_RPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2485), 1, + sym_type, + STATE(3138), 1, + sym__function_type_args, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33729] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(804), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3664), 1, + sym_identifier, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2592), 1, + sym_type, + STATE(3237), 1, + sym__function_type_args, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33816] = 24, + ACTIONS(3668), 1, + anon_sym_RPAREN, + ACTIONS(3672), 1, + sym_identifier, + ACTIONS(3675), 1, + anon_sym_LPAREN, + ACTIONS(3678), 1, + anon_sym_LBRACE, + ACTIONS(3681), 1, + anon_sym_LBRACK, + ACTIONS(3684), 1, + anon_sym_this, + ACTIONS(3690), 1, + anon_sym_null, + ACTIONS(3693), 1, + aux_sym_integer_token1, + ACTIONS(3696), 1, + aux_sym_integer_token2, + ACTIONS(3699), 1, + aux_sym_float_token1, + ACTIONS(3702), 1, + aux_sym_float_token2, + ACTIONS(3708), 1, + aux_sym_string_token1, + ACTIONS(3711), 1, + aux_sym_string_token3, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2485), 1, + sym_type, + STATE(3251), 1, + sym__function_type_args, 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(3705), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3687), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33903] = 4, + ACTIONS(3650), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1962), 12, + anon_sym_DOT, + anon_sym_QMARK, 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_DASH, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - 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, - anon_sym_DASH, - STATE(941), 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, + ACTIONS(1960), 23, 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, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, 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, - [15998] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2841), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, - 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, @@ -81803,1174 +117014,2005 @@ 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, - anon_sym_DASH, - ACTIONS(2843), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [33950] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + ACTIONS(3714), 1, + anon_sym_LBRACE, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2246), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2420), 1, + sym_type, + STATE(2552), 1, + sym_structure_type, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34034] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_this, + STATE(1361), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(774), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(772), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16134] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2845), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34112] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(973), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34196] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(973), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1317), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34280] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2516), 1, + sym__lhs_expression, + STATE(3119), 1, + sym_type, + STATE(3144), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34364] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(974), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1318), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34448] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2520), 1, + sym__lhs_expression, + STATE(2863), 1, + sym_type, + STATE(3171), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34532] = 9, + ACTIONS(1054), 1, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16202] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2847), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + ACTIONS(1530), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_DOT, + ACTIONS(3014), 1, + anon_sym_QMARK, 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(3648), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1050), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 16, + anon_sym_STAR, 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, - [16270] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2849), 1, - sym__lookback_semicolon, - STATE(956), 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, - 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, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16338] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2841), 1, - sym__lookback_semicolon, - STATE(1032), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [34588] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(977), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34672] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(979), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34756] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(979), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1322), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34840] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2534), 1, + sym__lhs_expression, + STATE(2923), 1, + sym_type, + STATE(3296), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34924] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, 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, - 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16406] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2851), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_LBRACK, 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(3734), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 19, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACK, 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, - [16474] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2853), 1, - sym__lookback_semicolon, - STATE(1027), 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, - 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, anon_sym_BANG_EQ, anon_sym_LT_EQ, 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, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [34980] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(980), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35064] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, 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, - 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16610] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2851), 1, - sym__lookback_semicolon, - STATE(945), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_LBRACK, 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(3734), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_DASH, 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_GT, + anon_sym_EQ, + ACTIONS(1046), 19, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACK, 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, - [16678] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2857), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, - 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_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, 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, - [16746] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2857), 1, - sym__lookback_semicolon, - STATE(971), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [35120] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1028), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, 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(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35204] = 6, + ACTIONS(2388), 1, + anon_sym_DOT, + ACTIONS(2390), 1, + anon_sym_QMARK, + ACTIONS(3648), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1046), 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, - 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, 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, - anon_sym_DASH, - ACTIONS(2859), 1, - sym__lookback_semicolon, - STATE(1014), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [35254] = 22, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3738), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, 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(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1445), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(698), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2348), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35336] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1015), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1349), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35420] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2611), 1, + sym__lhs_expression, + STATE(3085), 1, + sym_type, + STATE(3425), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35504] = 6, + ACTIONS(2996), 1, + anon_sym_DOT, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3650), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1046), 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, - 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, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16882] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2861), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [35554] = 23, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, + aux_sym_string_token1, + ACTIONS(722), 1, + aux_sym_string_token3, + ACTIONS(810), 1, + sym__closing_brace_marker, + ACTIONS(3718), 1, + anon_sym_this, + ACTIONS(3740), 1, + sym_identifier, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, + sym_member_expression, + STATE(2214), 1, + sym_string, + STATE(2615), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(718), 2, + anon_sym_true, + anon_sym_false, + STATE(464), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(814), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + STATE(2242), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35638] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(971), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1324), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35722] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2483), 1, + sym__lhs_expression, + STATE(3016), 1, + sym_type, + STATE(3146), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35806] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(989), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35890] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1005), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35974] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2595), 1, + sym__lhs_expression, + STATE(3051), 1, + sym_type, + STATE(3364), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36058] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(975), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1334), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36142] = 9, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16950] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2863), 1, - sym__lookback_semicolon, - STATE(948), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + ACTIONS(2974), 1, + anon_sym_DOT, + ACTIONS(2976), 1, + anon_sym_QMARK, 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(3650), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1050), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1048), 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_DASH, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17018] = 12, - ACTIONS(594), 1, - sym__lookback_semicolon, - ACTIONS(602), 1, - anon_sym_DASH, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 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(599), 4, - anon_sym_BANG, - anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(1046), 16, 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, - [17086] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2865), 1, - sym__lookback_semicolon, - STATE(937), 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, - 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, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17154] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2867), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [36198] = 6, + ACTIONS(2670), 1, + anon_sym_DOT, + ACTIONS(2672), 1, + anon_sym_QMARK, + ACTIONS(3648), 1, + anon_sym_EQ_GT, 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(1048), 10, 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, - [17222] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2861), 1, - sym__lookback_semicolon, - STATE(1003), 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, + ACTIONS(1046), 22, + sym__closing_brace_marker, 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, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, 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, - [17290] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2859), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, - 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, - [17358] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2839), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [36248] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2518), 1, + sym__lhs_expression, + STATE(2860), 1, + sym_type, + STATE(3161), 1, + sym_block, 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, - 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, - [17426] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2869), 1, - sym__lookback_semicolon, - STATE(934), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36332] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1018), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1346), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36416] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(971), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36500] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2481), 1, + sym__lhs_expression, + STATE(3117), 1, + sym_type, + STATE(3275), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36584] = 6, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3736), 1, + anon_sym_LBRACK, 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(1048), 13, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, 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_DASH, 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_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(1046), 19, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82979,334 +119021,1395 @@ 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, - anon_sym_DASH, - ACTIONS(2869), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [36634] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3742), 1, + anon_sym_DOT, + ACTIONS(3746), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_QMARK, 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(3744), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 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, + [36690] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2574), 1, + sym__lhs_expression, + STATE(2948), 1, + sym_type, + STATE(3181), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36774] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36858] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1357), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36942] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2495), 1, + sym__lhs_expression, + STATE(2936), 1, + sym_type, + STATE(3182), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37026] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1002), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37110] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1032), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1311), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37194] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2558), 1, + sym__lhs_expression, + STATE(2867), 1, + sym_type, + STATE(3340), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37278] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + ACTIONS(3714), 1, + anon_sym_LBRACE, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2261), 1, + sym_builtin_type, + STATE(2285), 1, + sym__lhs_expression, + STATE(2357), 1, + sym_type, + STATE(2393), 1, + sym_function_type, + STATE(2454), 1, + sym_structure_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37362] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1015), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37446] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1006), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1341), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37530] = 6, + ACTIONS(2988), 1, + anon_sym_DOT, + ACTIONS(2990), 1, + anon_sym_QMARK, + ACTIONS(3650), 1, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17562] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2871), 1, - sym__lookback_semicolon, - STATE(959), 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, + ACTIONS(1048), 10, 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_DASH, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17630] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2873), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, + ACTIONS(1046), 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, - 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, - [17698] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2875), 1, - sym__lookback_semicolon, - STATE(990), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [37580] = 23, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2399), 1, + sym_builtin_type, + STATE(2500), 1, + sym__lhs_expression, + STATE(3040), 1, + sym_type, + STATE(3268), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37664] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(972), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37748] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1020), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1353), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37832] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_this, + STATE(1361), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(766), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(764), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37910] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_this, + STATE(1361), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(770), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(768), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37988] = 20, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(3750), 1, + sym_identifier, + ACTIONS(3753), 1, + anon_sym_this, + STATE(1361), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(729), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(727), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38066] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_this, + STATE(1361), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(668), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(666), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38144] = 23, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3720), 1, + anon_sym_LPAREN, + STATE(1005), 1, + sym_type, + STATE(1061), 1, + sym_member_expression, + STATE(1333), 1, + aux_sym_variable_declaration_repeat1, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38228] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(3036), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38309] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3756), 1, + anon_sym_LPAREN, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(1749), 1, + sym_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38390] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2472), 1, + sym_type, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38471] = 6, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, 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, - 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - 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(3746), 1, + anon_sym_LBRACK, 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(1048), 11, + anon_sym_DOT, + anon_sym_QMARK, 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_DASH, 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_GT, + anon_sym_EQ, + ACTIONS(1046), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, 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, - anon_sym_DASH, - ACTIONS(2879), 1, - anon_sym_RBRACK, - STATE(965), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, - 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, - 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, @@ -83315,390 +120418,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17902] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2881), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [38520] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, 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(3734), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 19, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACK, 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, - [17970] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2883), 1, - sym__lookback_semicolon, - STATE(980), 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, - 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, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18038] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2885), 1, - sym__lookback_semicolon, - STATE(988), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [38573] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + ACTIONS(3758), 1, + sym_identifier, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2830), 1, + sym_type, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38654] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, 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, - 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18106] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2887), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, 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(3734), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 19, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACK, 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, - [18174] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2889), 1, - sym__lookback_semicolon, - STATE(923), 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, - 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, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18242] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2891), 1, - anon_sym_RBRACK, - STATE(909), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [38707] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(3762), 1, + anon_sym_this, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2444), 1, + sym__lhs_expression, + STATE(2581), 1, + sym_string, 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, - 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(698), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18310] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2887), 1, - sym__lookback_semicolon, - STATE(957), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + STATE(2538), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38788] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2452), 1, + sym_type, 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(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38869] = 4, + ACTIONS(3736), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(698), 19, 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_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, @@ -83707,222 +120726,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18378] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2893), 1, + anon_sym_DOT_DOT_DOT, + [38914] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3766), 1, + anon_sym_this, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(698), 4, anon_sym_RPAREN, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, - sym_operator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + STATE(2308), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38995] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_this, + ACTIONS(3768), 1, + anon_sym_LPAREN, + STATE(2120), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2361), 1, + sym__lhs_expression, + STATE(2363), 1, + sym_builtin_type, + STATE(2642), 1, + sym_function_type, + STATE(2726), 1, + sym_type, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(914), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39076] = 23, + ACTIONS(700), 1, + anon_sym_in, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3770), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2415), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1445), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(698), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2562), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39159] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, 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, + ACTIONS(3742), 1, + anon_sym_DOT, + ACTIONS(3748), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3744), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 9, + 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_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, - [18446] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2885), 1, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1046), 19, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + 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, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18514] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2895), 1, - sym__lookback_semicolon, - STATE(920), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [39212] = 5, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, 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(1048), 13, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, 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_DASH, 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_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(1046), 19, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACK, 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, - [18582] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2897), 1, - sym__lookback_semicolon, - STATE(982), 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, - 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, @@ -83931,166 +120991,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18650] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2899), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [39259] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2543), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39340] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2563), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39421] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2378), 1, + sym_type, + STATE(2393), 1, + sym_function_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39502] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2589), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39583] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(3118), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39664] = 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(1074), 14, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, 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, - [18718] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2901), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, + sym_identifier, + ACTIONS(1072), 20, 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_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, 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, - [18786] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2895), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, - 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, @@ -84099,110 +121326,569 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18854] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2897), 1, + anon_sym_DOT_DOT_DOT, + [39707] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_this, + ACTIONS(3768), 1, + anon_sym_LPAREN, + STATE(2120), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2361), 1, + sym__lhs_expression, + STATE(2363), 1, + sym_builtin_type, + STATE(2642), 1, + sym_function_type, + STATE(2717), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(914), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39788] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3774), 1, + anon_sym_this, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1761), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(698), 4, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2547), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39869] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2511), 1, + sym_type, 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, - 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39950] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2952), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40031] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2576), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40112] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3756), 1, + anon_sym_LPAREN, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(1810), 1, + sym_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40193] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2496), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40274] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3776), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2408), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(698), 4, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18922] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2899), 1, - sym__lookback_semicolon, - STATE(984), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + STATE(2565), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40355] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_this, + ACTIONS(3756), 1, + anon_sym_LPAREN, + STATE(1061), 1, + sym_member_expression, + STATE(1628), 1, + sym_builtin_type, + STATE(1675), 1, + sym__lhs_expression, + STATE(1718), 1, + sym_function_type, + STATE(1722), 1, + sym_type, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3722), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2733), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40436] = 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(1124), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1122), 20, anon_sym_STAR, + anon_sym_COLON, + anon_sym_COMMA, + 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, - 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, @@ -84211,54 +121897,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [18990] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2903), 1, - anon_sym_RBRACK, - STATE(963), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [40479] = 7, + ACTIONS(153), 1, + sym__closing_brace_marker, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(163), 1, + sym__closing_brace, + STATE(2462), 1, + aux_sym_map_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(1962), 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(55), 5, - anon_sym_PERCENT, + ACTIONS(1960), 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, - 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, @@ -84267,110 +121941,616 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19058] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2905), 1, - sym__lookback_semicolon, - STATE(989), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [40530] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2517), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40611] = 6, + ACTIONS(3780), 1, + anon_sym_DOT, + ACTIONS(3782), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1132), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1050), 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(1054), 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, + [40660] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2570), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40741] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2780), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40822] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2404), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40903] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2675), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40984] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2491), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41065] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2535), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41146] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_this, + ACTIONS(3768), 1, + anon_sym_LPAREN, + STATE(2120), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2361), 1, + sym__lhs_expression, + STATE(2363), 1, + sym_builtin_type, + STATE(2642), 1, + sym_function_type, + STATE(2720), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(914), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41227] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(2982), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41308] = 7, + ACTIONS(147), 1, + sym__closing_brace_marker, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(1765), 1, + sym__closing_brace, + STATE(2434), 1, + aux_sym_map_repeat1, 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(1962), 12, + anon_sym_DOT, + anon_sym_QMARK, 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_DASH, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19126] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2907), 1, - anon_sym_RBRACK, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, - sym_operator, - 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, + ACTIONS(1960), 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, - 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, @@ -84379,110 +122559,510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19194] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2909), 1, - sym__lookback_semicolon, - STATE(987), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [41359] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2677), 1, + sym_type, 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(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41440] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2457), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41521] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2369), 1, + sym_type, + STATE(2393), 1, + sym_function_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41602] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3622), 1, + sym_identifier, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3666), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2254), 1, + sym__lhs_expression, + STATE(2261), 1, + sym_builtin_type, + STATE(2393), 1, + sym_function_type, + STATE(3078), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(802), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2650), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41683] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2529), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41764] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2621), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41845] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_this, + ACTIONS(3768), 1, + anon_sym_LPAREN, + STATE(2120), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2361), 1, + sym__lhs_expression, + STATE(2363), 1, + sym_builtin_type, + STATE(2642), 1, + sym_function_type, + STATE(2725), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(914), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2757), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41926] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3726), 1, + anon_sym_LPAREN, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1718), 1, + sym_function_type, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2386), 1, + sym__lhs_expression, + STATE(2399), 1, + sym_builtin_type, + STATE(2672), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3732), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42007] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1096), 14, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, 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_DASH, 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19262] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2911), 1, - anon_sym_RBRACK, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, - sym_operator, - 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, + sym_identifier, + ACTIONS(1094), 20, anon_sym_STAR, + anon_sym_COMMA, + 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, - 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, @@ -84491,54 +123071,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19330] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2913), 1, - anon_sym_RBRACE, - STATE(1012), 1, - aux_sym_expression_repeat1, - STATE(1429), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [42050] = 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(1038), 14, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, 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_LT, + anon_sym_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(1036), 19, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -84547,54 +123110,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19398] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2915), 1, - sym__lookback_semicolon, - STATE(998), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [42092] = 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(1164), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1162), 19, 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_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, @@ -84603,54 +123149,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19466] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2917), 1, - sym__lookback_semicolon, - STATE(913), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [42134] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3234), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + STATE(2799), 1, + aux_sym__arg_list_repeat1, 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(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2798), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42218] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1188), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1186), 19, 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_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, @@ -84659,54 +123248,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19534] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2919), 1, - anon_sym_RPAREN, - STATE(952), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [42260] = 9, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, 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(1050), 2, + anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(3786), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 9, anon_sym_BANG, - anon_sym_LT, + 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(55), 5, - anon_sym_PERCENT, + ACTIONS(1046), 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, - 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_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [42314] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1074), 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, - 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, + ACTIONS(1072), 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, @@ -84715,54 +123332,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19602] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2921), 1, - sym__lookback_semicolon, - STATE(910), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [42356] = 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(700), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(698), 19, 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_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, @@ -84771,166 +123371,439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19670] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2923), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [42398] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3170), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + STATE(2856), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2645), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42482] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(766), 1, + anon_sym_in, + ACTIONS(3766), 1, + anon_sym_this, + ACTIONS(3788), 1, + sym_identifier, + STATE(1426), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(764), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2752), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42558] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(770), 1, + anon_sym_in, + ACTIONS(3766), 1, + anon_sym_this, + ACTIONS(3788), 1, + sym_identifier, + STATE(1426), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(768), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2752), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42634] = 20, + ACTIONS(729), 1, + anon_sym_in, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, + anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3793), 1, + anon_sym_this, + STATE(1426), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(727), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2752), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42710] = 20, + ACTIONS(668), 1, + anon_sym_in, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3766), 1, + anon_sym_this, + ACTIONS(3788), 1, + sym_identifier, + STATE(1426), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(666), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2752), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42786] = 20, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(774), 1, + anon_sym_in, + ACTIONS(3766), 1, + anon_sym_this, + ACTIONS(3788), 1, + sym_identifier, + STATE(1426), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(772), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2752), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42862] = 24, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3058), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3796), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + STATE(2853), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(2540), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2342), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42946] = 6, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACK, + STATE(2855), 1, + aux_sym_map_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(1962), 12, + anon_sym_DOT, + anon_sym_QMARK, 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, - [19738] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2921), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, + ACTIONS(1960), 18, 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, - [19806] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2925), 1, - sym__lookback_semicolon, - STATE(1020), 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, - 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, @@ -84939,110 +123812,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [19874] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2927), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [42994] = 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(1096), 12, + anon_sym_DOT, + anon_sym_QMARK, 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, - [19942] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2929), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, + ACTIONS(1094), 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, - 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, @@ -85051,110 +123852,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20010] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2931), 1, + anon_sym_DOT_DOT_DOT, + [43036] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3128), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + STATE(2739), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2734), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43120] = 24, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3070), 1, anon_sym_RBRACK, - STATE(978), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3802), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + STATE(2674), 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(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2342), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43204] = 6, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(3804), 1, + anon_sym_RBRACK, + STATE(2676), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1962), 12, + anon_sym_DOT, + anon_sym_QMARK, 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, - [20078] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2933), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, - 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, + ACTIONS(1960), 18, 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, - 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, @@ -85163,110 +124013,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20146] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2935), 1, - anon_sym_RBRACK, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [43252] = 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(1124), 12, + anon_sym_DOT, + anon_sym_QMARK, 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, - [20214] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2937), 1, - sym__lookback_semicolon, - STATE(911), 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, + ACTIONS(1122), 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, - 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, @@ -85275,80 +124053,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20282] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2939), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43294] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3136), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + STATE(2692), 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2688), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43378] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, 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, + ACTIONS(3806), 1, + anon_sym_DOT, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3808), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 9, + 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_GT, + anon_sym_EQ, + ACTIONS(1046), 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, - sym__rangeOperator, - [20350] = 9, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2941), 1, - anon_sym_COLON, - ACTIONS(2943), 1, - sym__lookback_semicolon, - STATE(138), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43432] = 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(1148), 14, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -85357,22 +124177,15 @@ 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, + sym_identifier, + ACTIONS(1146), 19, + 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, @@ -85384,54 +124197,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20412] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2945), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43474] = 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(1192), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1190), 19, 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_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, @@ -85440,54 +124236,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20480] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2939), 1, - sym__lookback_semicolon, - STATE(1030), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43516] = 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(1196), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1194), 19, 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_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, @@ -85496,54 +124275,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20548] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2947), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43558] = 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(1200), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1198), 19, 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_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, @@ -85552,54 +124314,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20616] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2949), 1, - sym__lookback_semicolon, - STATE(1006), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43600] = 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(1208), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1206), 19, 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_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, @@ -85608,54 +124353,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20684] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2951), 1, - sym__lookback_semicolon, - STATE(919), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43642] = 24, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3150), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + STATE(2663), 1, + aux_sym__arg_list_repeat1, 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(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2661), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43726] = 24, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3814), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + STATE(2731), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(2449), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2342), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43810] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(836), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(838), 19, 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_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, @@ -85664,54 +124512,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20752] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2951), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43852] = 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(1212), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1210), 19, 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_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, + [43894] = 5, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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, - 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_GT, + anon_sym_EQ, + ACTIONS(1046), 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, @@ -85720,54 +124592,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20820] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2953), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43940] = 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(926), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(924), 19, 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_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, @@ -85776,54 +124631,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20888] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2955), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [43982] = 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(1176), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1174), 19, 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_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, @@ -85831,55 +124669,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [20956] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2957), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [44024] = 22, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, + aux_sym_string_token1, + ACTIONS(722), 1, + aux_sym_string_token3, + ACTIONS(3816), 1, + sym_identifier, + ACTIONS(3818), 1, + anon_sym_this, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, + sym_member_expression, + STATE(2214), 1, + sym_string, + STATE(2615), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(718), 2, + anon_sym_true, + anon_sym_false, + STATE(291), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(698), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_EQ_GT, + STATE(2425), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44104] = 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(1100), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1098), 19, 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_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, @@ -85888,54 +124767,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21024] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2959), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44146] = 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(1104), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1102), 19, 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_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, @@ -85944,110 +124806,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21092] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2955), 1, - sym__lookback_semicolon, - STATE(1025), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44188] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3084), 1, + anon_sym_DOT, + ACTIONS(3086), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_LBRACK, 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(3820), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_DASH, 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_GT, + anon_sym_EQ, + ACTIONS(1046), 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, - sym__rangeOperator, - [21160] = 12, - ACTIONS(2819), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, - anon_sym_DASH, - STATE(1011), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44242] = 6, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(3822), 1, + anon_sym_RBRACK, + STATE(2770), 1, + aux_sym_map_repeat1, 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(1962), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1960), 18, 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, - 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, @@ -86056,54 +124892,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21228] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2961), 1, - sym__lookback_semicolon, - STATE(939), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [44290] = 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(1216), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1214), 19, 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_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, @@ -86112,80 +124932,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21296] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2963), 1, - sym__lookback_semicolon, - STATE(1029), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44332] = 10, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, + ACTIONS(3350), 1, + anon_sym_RPAREN, 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(3650), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_DASH, 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_GT, + anon_sym_EQ, + ACTIONS(1046), 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_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, + anon_sym_DOT_DOT_DOT, + [44388] = 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(1220), 14, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -86194,22 +124997,15 @@ 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, + sym_identifier, + ACTIONS(1218), 19, + 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, @@ -86221,166 +125017,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21426] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2969), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44430] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3736), 1, + anon_sym_LBRACK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_QMARK, 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(3820), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 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, - sym__rangeOperator, - [21494] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2971), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44484] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, 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(3786), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 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_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21562] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2973), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44538] = 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(1030), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1028), 19, 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_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, @@ -86389,54 +125146,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21630] = 12, - ACTIONS(2364), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, - anon_sym_DASH, - STATE(1019), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44580] = 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(1034), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1032), 19, 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_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, @@ -86445,54 +125185,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21698] = 12, - ACTIONS(594), 1, - anon_sym_RBRACE, - ACTIONS(602), 1, - anon_sym_DASH, - STATE(1001), 1, - aux_sym_expression_repeat1, - STATE(1603), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44622] = 3, 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(599), 4, + ACTIONS(1168), 14, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, 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_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(1166), 19, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -86501,54 +125224,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21766] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2971), 1, - sym__lookback_semicolon, - STATE(918), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44664] = 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(1044), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1042), 19, 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_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, @@ -86557,54 +125263,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21834] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2975), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44706] = 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(1058), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1056), 19, 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_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, @@ -86613,54 +125302,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21902] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2977), 1, - sym__lookback_semicolon, - STATE(953), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44748] = 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(1062), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1060), 19, 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_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, @@ -86669,24 +125341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21970] = 9, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2979), 1, + anon_sym_DOT_DOT_DOT, + [44790] = 4, + ACTIONS(3734), 1, anon_sym_COLON, - ACTIONS(2981), 1, - sym__lookback_semicolon, - STATE(125), 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, + ACTIONS(1962), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -86695,22 +125361,14 @@ 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, + ACTIONS(1960), 20, + 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, @@ -86722,54 +125380,38 @@ 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, - anon_sym_DASH, - ACTIONS(2983), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [44834] = 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(1066), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1064), 19, 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_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, @@ -86778,54 +125420,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22100] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2983), 1, - sym__lookback_semicolon, - STATE(1017), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44876] = 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(1070), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1068), 19, 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_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, @@ -86834,54 +125459,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22168] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2985), 1, - sym__lookback_semicolon, - STATE(936), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [44918] = 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(1078), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1076), 19, 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_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, @@ -86890,24 +125498,17 @@ 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, + anon_sym_DOT_DOT_DOT, + [44960] = 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(694), 14, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -86916,22 +125517,15 @@ 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, + sym_identifier, + ACTIONS(692), 19, + 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, @@ -86943,54 +125537,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45002] = 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(1088), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1086), 19, 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_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, @@ -86999,54 +125576,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22366] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2993), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45044] = 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(1092), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1090), 19, 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_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, @@ -87055,54 +125615,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22434] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_RBRACE, - STATE(1001), 1, - aux_sym_expression_repeat1, - STATE(1603), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45086] = 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(1108), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1106), 19, 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_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, @@ -87111,54 +125654,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22502] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2997), 1, - sym__lookback_semicolon, - STATE(975), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45128] = 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(1112), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1110), 19, 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_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 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, + [45170] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1228), 14, + anon_sym_DOT, + anon_sym_in, + 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(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_LT, + anon_sym_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(1226), 19, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -87167,54 +125732,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22570] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2999), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45212] = 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(1120), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1118), 19, 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_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, @@ -87223,110 +125771,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22638] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(3001), 1, - sym__lookback_semicolon, - STATE(930), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45254] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3034), 1, + anon_sym_DOT, + ACTIONS(3036), 1, + anon_sym_QMARK, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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(3744), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 9, anon_sym_BANG, - anon_sym_LT, + 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1046), 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, - ACTIONS(2837), 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_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [45308] = 9, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3034), 1, + anon_sym_DOT, + ACTIONS(3036), 1, + anon_sym_QMARK, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3808), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 9, + anon_sym_BANG, + anon_sym_DASH, 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_GT, + anon_sym_EQ, + ACTIONS(1046), 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, - sym__rangeOperator, - [22706] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3003), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45362] = 4, + ACTIONS(3746), 1, + anon_sym_LBRACK, 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(700), 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(55), 5, - anon_sym_PERCENT, + ACTIONS(698), 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, - 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, @@ -87335,54 +125901,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22774] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3005), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45406] = 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(1224), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1222), 19, 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_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, @@ -87391,54 +125940,37 @@ 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, - anon_sym_DASH, - ACTIONS(2997), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45448] = 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(844), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(842), 19, 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_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, @@ -87447,54 +125979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22910] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3007), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45490] = 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(1130), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1128), 19, 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_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, @@ -87503,54 +126018,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22978] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3009), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45532] = 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(1184), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1182), 19, 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_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, @@ -87559,54 +126057,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23046] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(3011), 1, - sym__lookback_semicolon, - STATE(908), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45574] = 24, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3062), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3828), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + STATE(2819), 1, + aux_sym_array_repeat1, 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(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(2463), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2342), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45658] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1136), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1134), 19, 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_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, @@ -87615,54 +126156,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23114] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(3013), 1, - sym__lookback_semicolon, - STATE(991), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45700] = 4, + ACTIONS(3744), 1, + anon_sym_COLON, 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(1962), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1960), 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, - 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, @@ -87671,54 +126196,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23182] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(3015), 1, - sym__lookback_semicolon, - STATE(958), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45744] = 24, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3074), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3830), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + STATE(2785), 1, + aux_sym_array_repeat1, 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(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(2586), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2342), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45828] = 6, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(3832), 1, + anon_sym_RBRACK, + STATE(2822), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1962), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1960), 18, 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, - 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, @@ -87727,54 +126297,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23250] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(3017), 1, - sym__lookback_semicolon, - STATE(1018), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [45876] = 6, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(3834), 1, + anon_sym_RBRACK, + STATE(2786), 1, + aux_sym_map_repeat1, 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(1962), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1960), 18, 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, - 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, @@ -87783,54 +126339,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23318] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3019), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [45924] = 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(1152), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1150), 19, 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_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, @@ -87839,54 +126379,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23386] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(3021), 1, - sym__lookback_semicolon, - STATE(917), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [45966] = 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(1156), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1154), 19, 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_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, @@ -87895,54 +126418,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23454] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2875), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46008] = 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(1160), 14, + anon_sym_DOT, + anon_sym_in, + 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(55), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1158), 19, 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_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, @@ -87951,54 +126457,37 @@ 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, - anon_sym_DASH, - ACTIONS(3009), 1, - sym__lookback_semicolon, - STATE(977), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46050] = 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(1172), 14, + anon_sym_DOT, + anon_sym_in, + 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(2835), 5, - anon_sym_PERCENT, + sym_identifier, + ACTIONS(1170), 19, 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_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, @@ -88007,110 +126496,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23590] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2855), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46092] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_QMARK, 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(3786), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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_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_GT, + anon_sym_EQ, + ACTIONS(1046), 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_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23658] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3023), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46143] = 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(1136), 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(55), 5, - anon_sym_PERCENT, + ACTIONS(1134), 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, - 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, @@ -88119,54 +126577,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23726] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(3025), 1, - sym__lookback_semicolon, - STATE(972), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46184] = 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(1078), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1076), 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, - 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, @@ -88175,54 +126615,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23794] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3027), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46225] = 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(1152), 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(55), 5, - anon_sym_PERCENT, + ACTIONS(1150), 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, - 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, @@ -88231,24 +126653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23862] = 9, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(3029), 1, - anon_sym_COLON, - ACTIONS(3031), 1, - sym__lookback_semicolon, - STATE(142), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46266] = 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(1156), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -88257,22 +126671,15 @@ 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, + ACTIONS(1154), 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, @@ -88284,54 +126691,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23924] = 12, - ACTIONS(2366), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, - anon_sym_DASH, - STATE(997), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46307] = 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(1160), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1158), 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, - 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, @@ -88340,54 +126729,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23992] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3033), 1, - anon_sym_RBRACK, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46348] = 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(1164), 12, + anon_sym_DOT, + anon_sym_QMARK, 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_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1162), 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, @@ -88396,54 +126767,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [24060] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(3035), 1, - sym__lookback_semicolon, - STATE(1010), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + [46389] = 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(1168), 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(2835), 5, - anon_sym_PERCENT, + ACTIONS(1166), 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, - 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, @@ -88452,393 +126805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - 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, - 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, - ACTIONS(3039), 1, - anon_sym_class, - ACTIONS(3041), 1, - anon_sym_interface, - STATE(797), 1, - sym_member_expression, - STATE(826), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, - 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, - 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, - 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, - ACTIONS(3043), 1, - anon_sym_class, - ACTIONS(3045), 1, - anon_sym_interface, - STATE(797), 1, - sym_member_expression, - STATE(867), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, - 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, - 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, - 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, - ACTIONS(3047), 1, - anon_sym_class, - ACTIONS(3049), 1, - anon_sym_interface, - STATE(797), 1, - sym_member_expression, - STATE(867), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, - 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, - 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, - 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, - ACTIONS(3051), 1, - anon_sym_class, - STATE(797), 1, - sym_member_expression, - STATE(861), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, - 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, - 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, - 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, - ACTIONS(3053), 1, - anon_sym_class, - STATE(797), 1, - sym_member_expression, - STATE(822), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, - 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, - 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, - 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, - ACTIONS(3055), 1, - anon_sym_class, - STATE(797), 1, - sym_member_expression, - STATE(861), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + anon_sym_DOT_DOT_DOT, + [46430] = 3, 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, - 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, - anon_sym_LBRACK, - ACTIONS(1612), 1, + ACTIONS(1172), 12, anon_sym_DOT, - ACTIONS(1614), 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(1504), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -88846,18 +126820,18 @@ 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(1170), 20, + sym__lookback_semicolon, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, + 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, @@ -88867,461 +126841,171 @@ 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_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, - 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, - 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, - 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(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_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(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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [24827] = 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(3065), 1, - sym_identifier, - ACTIONS(3068), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + anon_sym_DOT_DOT_DOT, + [46471] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(483), 2, - anon_sym_extends, - anon_sym_implements, - ACTIONS(509), 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, + ACTIONS(1176), 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, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [24907] = 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(797), 1, - sym_member_expression, - STATE(822), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, - 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, - 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, - 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(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + anon_sym_EQ, + ACTIONS(1174), 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, + [46512] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, + ACTIONS(1184), 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, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [25063] = 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(3071), 1, - sym_identifier, - ACTIONS(3073), 1, - anon_sym_this, - 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, + ACTIONS(1182), 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, + [46553] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(544), 2, - anon_sym_case, - anon_sym_default, - STATE(282), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(542), 5, - sym__closing_brace_marker, + ACTIONS(1188), 12, anon_sym_DOT, - anon_sym_COMMA, 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(1186), 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, - STATE(1937), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [25149] = 18, - ACTIONS(362), 1, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [46594] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - STATE(797), 1, - sym_member_expression, - STATE(821), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, - 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, - 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, - 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, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(861), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + ACTIONS(3254), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3041), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -89331,99 +127015,89 @@ 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, - 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(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [46673] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, + ACTIONS(1192), 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, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [25381] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1586), 1, + ACTIONS(1190), 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, + [46714] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1196), 12, anon_sym_DOT, - ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1594), 1, - anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_in, + 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(1194), 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, + [46755] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3057), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1200), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89431,18 +127105,18 @@ 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(1198), 20, + sym__lookback_semicolon, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, + 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, @@ -89452,214 +127126,130 @@ 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, - [25441] = 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(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + anon_sym_DOT_DOT_DOT, + [46796] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, + ACTIONS(1208), 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, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [25521] = 24, - ACTIONS(358), 1, - anon_sym_RPAREN, - 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(3063), 1, - anon_sym_this, - ACTIONS(3075), 1, - sym_identifier, - 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(2135), 1, - sym_type, - STATE(2724), 1, - sym__function_type_args, + ACTIONS(1206), 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, + [46837] = 3, 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, - [25608] = 24, - ACTIONS(3079), 1, - sym_identifier, - ACTIONS(3082), 1, - anon_sym_LPAREN, - ACTIONS(3085), 1, - anon_sym_RPAREN, - ACTIONS(3087), 1, - anon_sym_LBRACE, - ACTIONS(3090), 1, - anon_sym_LBRACK, - ACTIONS(3093), 1, - anon_sym_this, - ACTIONS(3099), 1, - anon_sym_null, - ACTIONS(3102), 1, - aux_sym_integer_token1, - ACTIONS(3105), 1, - aux_sym_integer_token2, - ACTIONS(3108), 1, - aux_sym_float_token1, - ACTIONS(3111), 1, - aux_sym_float_token2, - ACTIONS(3117), 1, - aux_sym_string_token1, - ACTIONS(3120), 1, - aux_sym_string_token3, - 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(2095), 1, - sym_type, - STATE(2829), 1, - sym__function_type_args, + ACTIONS(1212), 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(1210), 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, + [46878] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3114), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [25695] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1600), 1, + ACTIONS(1216), 12, anon_sym_DOT, - ACTIONS(1606), 1, anon_sym_QMARK, - ACTIONS(3125), 1, - anon_sym_in, - ACTIONS(3127), 1, - anon_sym_LBRACK, + 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(1214), 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, + [46919] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3123), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 10, + ACTIONS(1220), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89667,17 +127257,18 @@ 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, - sym_identifier, - ACTIONS(1502), 18, + ACTIONS(1218), 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, @@ -89687,28 +127278,16 @@ 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, - [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, - anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + [46960] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3123), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 10, + ACTIONS(1224), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89716,17 +127295,18 @@ 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, - sym_identifier, - ACTIONS(1502), 18, + ACTIONS(1222), 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, @@ -89736,28 +127316,16 @@ 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, - [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, + anon_sym_DOT_DOT_DOT, + [47001] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3129), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(694), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89765,17 +127333,18 @@ 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, + ACTIONS(692), 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, @@ -89785,31 +127354,16 @@ 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, - [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, + anon_sym_DOT_DOT_DOT, + [47042] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3129), 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(1504), 9, + ACTIONS(836), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89817,14 +127371,18 @@ 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(838), 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, @@ -89834,91 +127392,20 @@ 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, - [25931] = 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(3063), 1, - anon_sym_this, - ACTIONS(3075), 1, - sym_identifier, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3133), 1, - anon_sym_RPAREN, - 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(2095), 1, - sym_type, - STATE(2688), 1, - sym__function_type_args, - 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, - [26018] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3135), 1, + anon_sym_DOT_DOT_DOT, + [47083] = 6, + ACTIONS(3744), 1, + anon_sym_EQ_GT, + ACTIONS(3836), 1, anon_sym_DOT, - ACTIONS(3139), 1, - anon_sym_in, - ACTIONS(3141), 1, - anon_sym_LBRACK, - ACTIONS(3143), 1, + ACTIONS(3838), 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, + ACTIONS(1048), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89926,17 +127413,18 @@ 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, + ACTIONS(1046), 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_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -89947,30 +127435,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [26077] = 10, - ACTIONS(1508), 1, + anon_sym_DOT_DOT_DOT, + [47130] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, anon_sym_LT, - ACTIONS(1594), 1, - anon_sym_LBRACK, - ACTIONS(2533), 1, + ACTIONS(3034), 1, anon_sym_DOT, - ACTIONS(2535), 1, + ACTIONS(3036), 1, anon_sym_QMARK, - ACTIONS(3059), 1, - anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3057), 2, + ACTIONS(3808), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1506), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1504), 9, + ACTIONS(1048), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89980,12 +127461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 16, + ACTIONS(1046), 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, @@ -89996,214 +127478,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(3063), 1, - anon_sym_this, - ACTIONS(3075), 1, - sym_identifier, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3085), 1, - anon_sym_RPAREN, - 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(2095), 1, - sym_type, - STATE(2829), 1, - sym__function_type_args, - 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, - [26223] = 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(398), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3075), 1, - sym_identifier, - 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(2151), 1, - sym_type, - STATE(2740), 1, - sym__function_type_args, - 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, - [26310] = 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(3145), 1, - sym_identifier, - ACTIONS(3147), 1, - anon_sym_this, - 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, + anon_sym_DOT_DOT_DOT, + [47181] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(207), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [26393] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, + ACTIONS(1088), 12, 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(3129), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90211,17 +127493,18 @@ 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, + ACTIONS(1086), 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, @@ -90231,139 +127514,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [26452] = 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(3073), 1, - anon_sym_this, - ACTIONS(3149), 1, - sym_identifier, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 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(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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - 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, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(466), 9, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47222] = 6, + ACTIONS(2988), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2990), 1, anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3734), 1, 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_LT, - ACTIONS(1612), 1, - anon_sym_DOT, - ACTIONS(1614), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3057), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1048), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90371,18 +127535,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, + ACTIONS(1046), 19, + 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, @@ -90393,23 +127556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, 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, + sym_identifier, + [47269] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3057), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1092), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90417,18 +127572,18 @@ 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(1090), 20, + sym__lookback_semicolon, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, + 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, @@ -90438,243 +127593,141 @@ 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, + [47310] = 6, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(1530), 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, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(866), 1, - sym_type, - STATE(877), 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, - sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [26798] = 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(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(1050), 4, + sym__closing_brace_marker, anon_sym_LPAREN, - STATE(825), 1, - sym_type, - STATE(877), 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, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [26882] = 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(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3153), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1048), 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(1046), 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, + [47357] = 8, + ACTIONS(1050), 1, anon_sym_LPAREN, - STATE(825), 1, - sym_type, - STATE(877), 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, - sym_string, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [26966] = 23, - ACTIONS(362), 1, + ACTIONS(3820), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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(1046), 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, + [47408] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(824), 1, - sym_type, - STATE(877), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 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(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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, + ACTIONS(814), 2, + anon_sym_catch, + anon_sym_else, + STATE(695), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -90684,58 +127737,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27050] = 23, - ACTIONS(362), 1, + [47487] = 23, + ACTIONS(692), 1, + anon_sym_EQ_GT, + ACTIONS(694), 1, + anon_sym_in, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1604), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(877), 1, + ACTIONS(3840), 1, + sym_identifier, + STATE(1378), 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(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1585), 1, sym_string, + STATE(2578), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1276), 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(1481), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1878), 9, sym__literal, sym_integer, sym_float, @@ -90745,58 +127795,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27134] = 23, - ACTIONS(374), 1, + [47568] = 23, + ACTIONS(698), 1, + anon_sym_EQ_GT, + ACTIONS(700), 1, + anon_sym_in, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3766), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3842), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2415), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2164), 1, + STATE(2578), 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(1276), 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(1445), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2557), 9, sym__literal, sym_integer, sym_float, @@ -90806,302 +127853,244 @@ 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, - 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, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(874), 1, - sym_type, - STATE(877), 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, - sym_string, + [47649] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27302] = 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(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym_type, - STATE(877), 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, - sym_string, + ACTIONS(1108), 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(1106), 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, + [47690] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27386] = 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(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(851), 1, - sym_type, - STATE(877), 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, - sym_string, + ACTIONS(1112), 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(1110), 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, + [47731] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27470] = 23, - 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(3161), 1, - anon_sym_LBRACE, - 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(2118), 1, - sym__lhs_expression, - STATE(2451), 1, - sym_type, - STATE(2794), 1, - sym_block, + ACTIONS(1062), 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(1060), 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, + [47772] = 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, - [27554] = 23, - ACTIONS(362), 1, + ACTIONS(1130), 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(1128), 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, + [47813] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1030), 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(1028), 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, + [47854] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(830), 1, - sym_type, - STATE(877), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 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(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2911), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -91111,58 +128100,89 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27638] = 23, - ACTIONS(374), 1, + [47933] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1228), 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(1226), 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, + [47974] = 19, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3774), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3844), 1, + sym_identifier, + STATE(1537), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2109), 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(686), 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(764), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -91172,58 +128192,94 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27722] = 23, - ACTIONS(362), 1, + [48047] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3786), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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(1046), 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, + [48098] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3774), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(864), 1, - sym_type, - STATE(877), 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, + ACTIONS(3844), 1, + sym_identifier, + STATE(1537), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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, + ACTIONS(768), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -91233,58 +128289,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27806] = 23, - ACTIONS(362), 1, + [48171] = 19, + ACTIONS(731), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(734), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(740), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(743), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(746), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(749), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(752), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(758), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(761), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(3846), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3849), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(864), 1, - sym_type, - STATE(877), 1, - sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, + STATE(1537), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(755), 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, + ACTIONS(727), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -91294,58 +128343,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27890] = 23, - ACTIONS(374), 1, + [48244] = 19, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3774), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3844), 1, + sym_identifier, + STATE(1537), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2084), 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(686), 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(666), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -91355,58 +128397,92 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27974] = 23, - ACTIONS(362), 1, + [48317] = 6, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [48364] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3774), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(849), 1, - sym_type, - STATE(877), 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, + ACTIONS(3844), 1, + sym_identifier, + STATE(1537), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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, + ACTIONS(772), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -91416,58 +128492,132 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28058] = 23, - ACTIONS(362), 1, + [48437] = 8, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3806), 1, + anon_sym_DOT, + ACTIONS(3812), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3808), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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(1046), 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, + [48488] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1034), 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(1032), 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, + [48529] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3762), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(846), 1, - sym_type, - STATE(877), 1, + ACTIONS(3852), 1, + sym_identifier, + STATE(1545), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 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, + STATE(1987), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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, + ACTIONS(764), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -91477,58 +128627,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28142] = 23, - ACTIONS(362), 1, + [48602] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3762), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(846), 1, - sym_type, - STATE(877), 1, + ACTIONS(3852), 1, + sym_identifier, + STATE(1545), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, + STATE(1987), 1, sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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, + ACTIONS(768), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -91538,58 +128681,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28226] = 23, - ACTIONS(362), 1, + [48675] = 19, + ACTIONS(731), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(734), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(740), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(743), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(746), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(749), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(752), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(758), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(761), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(3854), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3857), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(836), 1, - sym_type, - STATE(877), 1, + STATE(1545), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 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, + STATE(1987), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(755), 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, + ACTIONS(727), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -91599,58 +128735,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28310] = 23, - ACTIONS(430), 1, + [48748] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(566), 1, + ACTIONS(3762), 1, anon_sym_this, - ACTIONS(3167), 1, + ACTIONS(3852), 1, sym_identifier, - STATE(259), 1, + STATE(1545), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1175), 1, - sym_string, - STATE(2181), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - ACTIONS(526), 2, - anon_sym_case, - anon_sym_default, - STATE(281), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(528), 3, - sym__closing_brace_marker, - anon_sym_COMMA, + ACTIONS(666), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, anon_sym_EQ_GT, - STATE(1214), 9, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -91660,58 +128789,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28394] = 23, - ACTIONS(374), 1, + [48821] = 19, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3762), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3852), 1, + sym_identifier, + STATE(1545), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2058), 1, + STATE(1987), 1, sym__lhs_expression, - STATE(2519), 1, - sym_type, - STATE(2863), 1, - sym_block, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(772), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -91721,119 +128843,214 @@ 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, - 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, + [48894] = 6, + ACTIONS(2996), 1, + anon_sym_DOT, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3734), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 19, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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, sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3153), 1, + [48941] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1120), 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(1118), 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, + [48982] = 8, + ACTIONS(1050), 1, anon_sym_LPAREN, - STATE(858), 1, - sym_type, - STATE(877), 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, - sym_string, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3084), 1, + anon_sym_DOT, + ACTIONS(3086), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3820), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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(1046), 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, + [49033] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28562] = 23, - ACTIONS(362), 1, + ACTIONS(1070), 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(1068), 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, + [49074] = 22, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(942), 1, + anon_sym_this, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(874), 1, - sym_type, - STATE(877), 1, + STATE(1378), 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(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1466), 1, sym_string, + STATE(2578), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(692), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1276), 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(1481), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1548), 9, sym__literal, sym_integer, sym_float, @@ -91843,115 +129060,366 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28646] = 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(3073), 1, - anon_sym_this, - ACTIONS(3149), 1, - sym_identifier, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [49153] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(520), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(518), 7, + ACTIONS(1038), 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(1036), 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, + [49194] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1044), 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(1042), 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, + [49235] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1066), 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(1064), 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, + [49276] = 9, + ACTIONS(1050), 1, anon_sym_LPAREN, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT, + ACTIONS(3860), 1, + anon_sym_DOT, + ACTIONS(3864), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3862), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1048), 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(1046), 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, + [49329] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(700), 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(698), 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, + [49370] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 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(842), 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, + [49411] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1058), 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(1056), 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, + [49452] = 6, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, - STATE(2405), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28724] = 22, - ACTIONS(736), 1, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49499] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3147), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3634), 1, anon_sym_this, - ACTIONS(3169), 1, + ACTIONS(3776), 1, sym_identifier, - STATE(1265), 1, + ACTIONS(3866), 1, + anon_sym_LPAREN, + STATE(147), 1, sym__call, - STATE(1266), 1, + STATE(148), 1, sym__constructor_call, - STATE(1892), 1, + STATE(2207), 1, sym_member_expression, - STATE(1932), 1, + STATE(2408), 1, sym_string, - STATE(2082), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1298), 2, + STATE(149), 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(2565), 9, sym__literal, sym_integer, sym_float, @@ -91961,58 +129429,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28806] = 23, - ACTIONS(374), 1, + [49577] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3368), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3171), 1, - anon_sym_LBRACE, - STATE(902), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1949), 1, + STATE(2444), 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(686), 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(3342), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -92022,55 +129485,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, + [49655] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3176), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 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(93), 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(3188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92080,58 +129541,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, + [49733] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3410), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(828), 1, - sym_type, - STATE(877), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 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(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3431), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92141,55 +129597,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, + [49811] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3073), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3149), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 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(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3196), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92199,58 +129653,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29130] = 23, - ACTIONS(362), 1, + [49889] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(812), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(816), 1, anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(3866), 1, anon_sym_LPAREN, - STATE(833), 1, - sym_type, - STATE(877), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 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(363), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(548), 9, sym__literal, sym_integer, sym_float, @@ -92260,55 +129709,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29214] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [49967] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3073), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3528), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3149), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3310), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92318,115 +129765,93 @@ 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, - 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, + [50045] = 6, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1132), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1054), 13, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + 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, - ACTIONS(522), 9, - anon_sym_DOT, + sym_identifier, + ACTIONS(1050), 14, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_LT, - 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, - [29368] = 23, - ACTIONS(374), 1, + anon_sym_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [50091] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3346), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2285), 1, + STATE(2461), 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(93), 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(3217), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92436,58 +129861,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29452] = 23, - ACTIONS(362), 1, + [50169] = 22, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(696), 1, + sym_identifier, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(3874), 1, anon_sym_LPAREN, - STATE(859), 1, - sym_type, - STATE(877), 1, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(293), 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(366), 1, sym_string, + STATE(2615), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(718), 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(250), 2, + sym__rhs_expression, + sym_call_expression, + STATE(560), 9, sym__literal, sym_integer, sym_float, @@ -92497,58 +129917,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29536] = 23, - ACTIONS(362), 1, + [50247] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3766), 1, anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(3866), 1, anon_sym_LPAREN, - STATE(859), 1, - sym_type, - STATE(877), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 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(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2308), 9, sym__literal, sym_integer, sym_float, @@ -92558,54 +129973,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29620] = 19, - ACTIONS(362), 1, + [50325] = 22, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3151), 1, + ACTIONS(3636), 1, sym_identifier, - STATE(1108), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(3638), 1, + anon_sym_this, + ACTIONS(3874), 1, + anon_sym_LPAREN, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2214), 1, sym_string, + STATE(2615), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(718), 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(250), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2227), 9, sym__literal, sym_integer, sym_float, @@ -92615,54 +130029,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29696] = 19, - ACTIONS(485), 1, + [50403] = 22, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(3179), 1, - sym_identifier, - ACTIONS(3182), 1, + ACTIONS(3634), 1, anon_sym_this, - STATE(1108), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(3770), 1, + sym_identifier, + ACTIONS(3876), 1, + anon_sym_LPAREN, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2415), 1, sym_string, + STATE(2578), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1276), 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(1467), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2562), 9, sym__literal, sym_integer, sym_float, @@ -92672,54 +130085,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, + [50481] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3147), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1996), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3151), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1108), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3300), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92729,58 +130141,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29848] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [50559] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3530), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(842), 1, - sym_type, - STATE(877), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 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(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3480), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92790,58 +130197,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29932] = 23, - ACTIONS(374), 1, + [50637] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3880), 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(3878), 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, + [50677] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 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(1364), 1, anon_sym_LBRACE, - STATE(902), 1, + ACTIONS(2758), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1945), 1, + STATE(2461), 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(93), 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(3147), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92851,58 +130290,53 @@ 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, + [50755] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(842), 1, - sym_type, - STATE(877), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 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(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3227), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92912,58 +130346,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30100] = 23, - ACTIONS(374), 1, + [50833] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1952), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2079), 1, + STATE(2461), 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(93), 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(3282), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -92973,58 +130402,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, + [50911] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1984), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(877), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 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(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3319), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -93034,58 +130458,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30268] = 23, - ACTIONS(374), 1, + [50989] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3496), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2147), 1, + STATE(2444), 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(686), 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(3247), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -93095,56 +130514,90 @@ 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, + [51067] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1074), 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(1072), 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, + [51107] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3452), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3185), 1, - anon_sym_LPAREN, - STATE(877), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 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(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3230), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -93154,56 +130607,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, + [51185] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3482), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2461), 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(93), 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(3495), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -93213,22 +130663,15 @@ 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, + [51263] = 4, + ACTIONS(3820), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3129), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1962), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -93236,17 +130679,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(1960), 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, @@ -93256,58 +130698,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, - [30567] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [51305] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1990), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2102), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3338), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -93317,56 +130757,109 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30648] = 22, - ACTIONS(362), 1, + [51383] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_this, + ACTIONS(2807), 1, sym_identifier, - ACTIONS(3159), 1, + ACTIONS(3866), 1, anon_sym_LPAREN, - ACTIONS(3163), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(912), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(919), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51461] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2105), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3234), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -93376,56 +130869,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30729] = 22, - ACTIONS(362), 1, + [51539] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3882), 1, sym_identifier, - ACTIONS(3063), 1, + ACTIONS(3884), 1, + anon_sym__, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2444), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2050), 1, - sym_type, + STATE(2581), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(3448), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2433), 9, sym__literal, sym_integer, sym_float, @@ -93435,103 +130925,109 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30810] = 10, - ACTIONS(1468), 1, + [51617] = 22, + ACTIONS(39), 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(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3542), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, - [30867] = 22, - ACTIONS(362), 1, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3288), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51695] = 22, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(2868), 1, sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3077), 1, + ACTIONS(3874), 1, anon_sym_LPAREN, - STATE(902), 1, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(293), 1, sym_member_expression, - STATE(1926), 1, + STATE(1302), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2615), 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(718), 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(250), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1338), 9, sym__literal, sym_integer, sym_float, @@ -93541,56 +131037,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30948] = 22, - ACTIONS(362), 1, + [51773] = 22, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(3718), 1, + anon_sym_this, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3159), 1, + ACTIONS(3874), 1, anon_sym_LPAREN, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, sym_member_expression, - STATE(1926), 1, + STATE(2214), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2615), 1, sym__lhs_expression, - STATE(2204), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(718), 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(250), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2242), 9, sym__literal, sym_integer, sym_float, @@ -93600,56 +131093,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, + [51851] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3189), 1, - sym_identifier, - ACTIONS(3191), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3510), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(224), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(2179), 1, - sym__lhs_expression, - STATE(2256), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(3381), 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(2484), 9, sym__literal, sym_integer, sym_float, @@ -93659,56 +131149,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, + [51929] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(552), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3300), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3193), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1204), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, + STATE(3367), 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(2484), 9, sym__literal, sym_integer, sym_float, @@ -93718,56 +131205,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, + [52007] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3538), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2230), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3223), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -93777,56 +131261,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31272] = 22, - ACTIONS(362), 1, + [52085] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3350), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2444), 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(686), 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(3358), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -93836,56 +131317,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, + [52163] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3536), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3195), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(902), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2461), 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(93), 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(3413), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -93895,56 +131373,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, + [52241] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3308), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2282), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3193), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -93954,56 +131429,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, + [52319] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3460), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2250), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3242), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -94013,100 +131485,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, + [52397] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3147), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3416), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3199), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(2007), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, - anon_sym_false, - STATE(207), 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, + anon_sym_false, + STATE(3467), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -94116,56 +131541,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, + [52475] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3402), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2461), 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(93), 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(3306), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -94175,22 +131597,22 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31809] = 8, - ACTIONS(1506), 1, + [52553] = 8, + ACTIONS(1050), 1, anon_sym_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1054), 1, anon_sym_LT, - ACTIONS(3135), 1, + ACTIONS(3860), 1, anon_sym_DOT, - ACTIONS(3143), 1, + ACTIONS(3864), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3137), 2, + ACTIONS(3862), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1048), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -94200,15 +131622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 19, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + ACTIONS(1046), 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, @@ -94219,70 +131638,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [31862] = 10, - ACTIONS(1468), 1, + anon_sym_DOT_DOT_DOT, + [52603] = 22, + ACTIONS(39), 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(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3418), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3486), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52681] = 5, + ACTIONS(3888), 1, + anon_sym_DOT_DOT_DOT, + STATE(2843), 1, 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, + ACTIONS(1962), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -94290,17 +131713,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, + ACTIONS(1960), 17, + anon_sym_STAR, 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, @@ -94310,117 +131732,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, - [31972] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [52725] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3185), 1, - anon_sym_LPAREN, - STATE(877), 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, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 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, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32053] = 22, - ACTIONS(362), 1, + ACTIONS(1364), 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, + ACTIONS(2769), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2190), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3464), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -94430,85 +131790,15 @@ 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, + [52803] = 4, + ACTIONS(3810), 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(2189), 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, - [32215] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3201), 1, + ACTIONS(700), 12, 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, @@ -94516,15 +131806,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(698), 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, @@ -94534,58 +131825,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, - [32272] = 22, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [52845] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(3890), 1, sym_identifier, - ACTIONS(3063), 1, + ACTIONS(3892), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(1612), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2072), 1, - sym_type, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(764), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -94595,56 +131881,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32353] = 22, - ACTIONS(362), 1, + [52917] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(776), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(778), 1, anon_sym_this, - ACTIONS(3185), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3866), 1, anon_sym_LPAREN, - STATE(877), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 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(363), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(564), 9, sym__literal, sym_integer, sym_float, @@ -94654,56 +131937,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, + [52995] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3398), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2184), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3244), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -94713,56 +131993,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, + [53073] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3464), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2461), 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(93), 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(3303), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -94772,56 +132049,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32596] = 22, - ACTIONS(362), 1, + [53151] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(3890), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(3892), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(1612), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, - STATE(2183), 1, - sym_type, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(768), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -94831,148 +132102,106 @@ 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, + [53223] = 19, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(734), 1, anon_sym_LBRACK, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(743), 1, + aux_sym_integer_token1, + ACTIONS(746), 1, + aux_sym_integer_token2, + ACTIONS(749), 1, + aux_sym_float_token1, + ACTIONS(752), 1, + aux_sym_float_token2, + ACTIONS(758), 1, + aux_sym_string_token1, + ACTIONS(761), 1, + aux_sym_string_token3, + ACTIONS(3894), 1, + sym_identifier, + ACTIONS(3897), 1, + anon_sym_this, + STATE(969), 1, + sym_member_expression, + STATE(1612), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3137), 2, + ACTIONS(755), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(727), 5, + anon_sym_RPAREN, 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_COMMA, 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, + STATE(2735), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53295] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3522), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2444), 1, sym__lhs_expression, - STATE(2112), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(3248), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -94982,56 +132211,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, + [53373] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3520), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2115), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3192), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -95041,56 +132267,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32949] = 22, - ACTIONS(362), 1, + [53451] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3211), 1, + ACTIONS(3890), 1, sym_identifier, - ACTIONS(3213), 1, - anon_sym_LPAREN, - ACTIONS(3215), 1, + ACTIONS(3892), 1, anon_sym_this, - STATE(1843), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2018), 1, + STATE(1612), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, - STATE(2024), 1, - sym_builtin_type, - STATE(2322), 1, - sym_type, - STATE(2367), 1, - sym_function_type, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(666), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -95100,56 +132320,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33030] = 22, - ACTIONS(362), 1, + [53523] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3211), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_this, + ACTIONS(2880), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3866), 1, anon_sym_LPAREN, - ACTIONS(3215), 1, - anon_sym_this, - STATE(1843), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(1926), 1, + STATE(1655), 1, sym_string, - STATE(2018), 1, + STATE(2444), 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(686), 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(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1901), 9, sym__literal, sym_integer, sym_float, @@ -95159,56 +132376,53 @@ 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, + [53601] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3213), 1, - anon_sym_LPAREN, - ACTIONS(3215), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1843), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2018), 1, + STATE(2461), 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(93), 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(3317), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -95218,56 +132432,53 @@ 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, + [53679] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3550), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2142), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3494), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -95277,56 +132488,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33273] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [53757] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2143), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3134), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -95336,56 +132544,130 @@ 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, + [53835] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1124), 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(1122), 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, + [53875] = 6, + ACTIONS(3648), 1, + anon_sym_EQ_GT, + ACTIONS(3900), 1, + anon_sym_DOT, + ACTIONS(3902), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [53921] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(3774), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3904), 1, + anon_sym_LPAREN, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2162), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(1733), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2547), 9, sym__literal, sym_integer, sym_float, @@ -95395,56 +132677,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33435] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [53999] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3219), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3554), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(224), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(3382), 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(2484), 9, sym__literal, sym_integer, sym_float, @@ -95454,56 +132733,53 @@ 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, + [54077] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3422), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2160), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3142), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -95513,56 +132789,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33597] = 22, - ACTIONS(362), 1, + [54155] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3784), 1, + sym_identifier, + ACTIONS(3906), 1, + anon_sym_while, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2444), 1, sym__lhs_expression, - STATE(2185), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(3416), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -95572,56 +132845,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33678] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [54233] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3426), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2188), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3269), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -95631,56 +132901,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33759] = 22, - ACTIONS(35), 1, + [54311] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3221), 1, - sym_identifier, - ACTIONS(3223), 1, + ACTIONS(3424), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1544), 2, + STATE(3154), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(542), 4, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2163), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -95690,19 +132957,15 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33840] = 6, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, + [54389] = 5, + ACTIONS(3912), 1, anon_sym_LT, - ACTIONS(3141), 1, - anon_sym_LBRACK, + STATE(1696), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3910), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -95712,15 +132975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, + ACTIONS(3908), 20, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -95732,116 +132995,51 @@ 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_DOT_DOT_DOT, + [54433] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(3890), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(3892), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(1612), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, - STATE(2272), 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, - [33970] = 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(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, + STATE(2213), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 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(686), 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(772), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -95851,115 +133049,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34051] = 22, - ACTIONS(362), 1, + [54505] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 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(2266), 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, - [34132] = 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, + ACTIONS(3784), 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(3914), 1, + anon_sym_while, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2444), 1, sym__lhs_expression, - STATE(2344), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(3159), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -95969,56 +133105,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34213] = 22, - ACTIONS(362), 1, + [54583] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(942), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3916), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(1926), 1, + STATE(1655), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2444), 1, sym__lhs_expression, - STATE(2350), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(172), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1855), 9, sym__literal, sym_integer, sym_float, @@ -96028,56 +133161,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34294] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [54661] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2780), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2251), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3197), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -96087,56 +133217,53 @@ 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, + [54739] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3558), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2249), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3198), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -96146,56 +133273,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34456] = 22, - ACTIONS(362), 1, + [54817] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(3818), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3918), 1, + sym_identifier, + STATE(1641), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2121), 1, sym__lhs_expression, - STATE(2352), 1, - sym_type, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(764), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2750), 9, sym__literal, sym_integer, sym_float, @@ -96205,56 +133326,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34537] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [54889] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3556), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2198), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3368), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -96264,56 +133382,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34618] = 22, - ACTIONS(362), 1, + [54967] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(3818), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(3918), 1, + sym_identifier, + STATE(1641), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2121), 1, sym__lhs_expression, - STATE(2193), 1, - sym_type, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(768), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2750), 9, sym__literal, sym_integer, sym_float, @@ -96323,272 +133435,53 @@ 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, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1524), 2, - anon_sym_COLON, - 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, - 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, - [34799] = 4, - ACTIONS(3057), 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), 21, - 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_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, - 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, - [34897] = 6, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3127), 1, - anon_sym_LBRACK, - 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), 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, - [34946] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [55039] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3406), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2461), 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, + ACTIONS(93), 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(3352), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -96598,56 +133491,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35027] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [55117] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3512), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2461), 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(93), 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(3149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -96657,56 +133547,53 @@ 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, + [55195] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3374), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2461), 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(93), 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(3466), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -96716,103 +133603,53 @@ 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, - 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, - anon_sym_LBRACE, - ACTIONS(374), 1, + [55273] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3213), 1, - anon_sym_LPAREN, - ACTIONS(3215), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3318), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1843), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2018), 1, + STATE(2461), 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(93), 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(3183), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -96822,194 +133659,106 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35327] = 22, - ACTIONS(362), 1, + [55351] = 19, + ACTIONS(731), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(734), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(740), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(743), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(746), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(749), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(752), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(758), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(761), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(3920), 1, sym_identifier, - ACTIONS(3063), 1, + ACTIONS(3923), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + STATE(1641), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2121), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2581), 1, - sym_type, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(755), 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, - [35408] = 3, - 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), 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, - [35450] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1410), 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(1408), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - 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, - 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(727), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [35492] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + STATE(2750), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [55423] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 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, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2429), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2430), 2, + STATE(3174), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -97019,99 +133768,53 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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_TILDE, - anon_sym_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, - [35624] = 24, - ACTIONS(736), 1, + [55501] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2573), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3235), 1, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3926), 1, sym_identifier, - STATE(1265), 1, + STATE(147), 1, sym__call, - STATE(1266), 1, + STATE(148), 1, sym__constructor_call, - STATE(1892), 1, + STATE(2207), 1, sym_member_expression, - STATE(1932), 1, + STATE(2408), 1, sym_string, - STATE(2082), 1, + STATE(2444), 1, sym__lhs_expression, - STATE(2417), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2088), 2, + STATE(149), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2591), 9, sym__literal, sym_integer, sym_float, @@ -97121,57 +133824,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35708] = 24, - ACTIONS(362), 1, + [55579] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2681), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(3818), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1641), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(2121), 1, sym__lhs_expression, - STATE(2346), 1, - aux_sym__arg_list_repeat1, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2345), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + ACTIONS(666), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2750), 9, sym__literal, sym_integer, sym_float, @@ -97181,57 +133877,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35792] = 24, - ACTIONS(362), 1, + [55651] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2703), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(1614), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2878), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + ACTIONS(3866), 1, + anon_sym_LPAREN, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(1926), 1, + STATE(1737), 1, sym_string, - STATE(2179), 1, + STATE(2444), 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(686), 2, anon_sym_true, anon_sym_false, - STATE(2325), 2, + STATE(149), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(1748), 9, sym__literal, sym_integer, sym_float, @@ -97241,103 +133933,109 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35876] = 10, - ACTIONS(1468), 1, + [55729] = 22, + ACTIONS(39), 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, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3382), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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, - [35932] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3397), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [55807] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 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(1364), 1, + anon_sym_LBRACE, + ACTIONS(3524), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 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(93), 2, anon_sym_true, anon_sym_false, - STATE(2307), 2, + STATE(3203), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -97347,99 +134045,53 @@ 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, - 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_TILDE, - anon_sym_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, - [36064] = 24, - ACTIONS(736), 1, - anon_sym_LBRACE, - ACTIONS(748), 1, + [55885] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2581), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3320), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3245), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1892), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1932), 1, + STATE(2395), 1, sym_string, - STATE(2082), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2299), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2278), 2, + STATE(3232), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -97449,57 +134101,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36148] = 24, - ACTIONS(362), 1, + [55963] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2687), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + ACTIONS(3866), 1, + anon_sym_LPAREN, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, + STATE(2444), 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(686), 2, anon_sym_true, anon_sym_false, - STATE(2436), 2, + STATE(149), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -97509,98 +134157,53 @@ 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, - 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_TILDE, - anon_sym_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, - [36280] = 23, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + [56041] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(562), 1, - sym__closing_brace_marker, - ACTIONS(3215), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3570), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3249), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(261), 1, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(1910), 1, + STATE(2312), 1, sym_member_expression, - STATE(1922), 1, + STATE(2395), 1, sym_string, - STATE(2181), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(564), 2, - anon_sym_case, - anon_sym_default, - STATE(469), 2, + STATE(3461), 2, sym__rhs_expression, sym_call_expression, - STATE(1974), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -97610,99 +134213,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36362] = 6, - ACTIONS(2288), 1, - 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, - 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, - [36410] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [56119] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 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, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3564), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2368), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2369), 2, + STATE(3253), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -97712,176 +134269,106 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36494] = 4, - ACTIONS(3127), 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), 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, - [36538] = 4, - ACTIONS(3141), 1, + [56197] = 19, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 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), 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, - [36582] = 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, - anon_sym_COLON, - 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(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3818), 1, + anon_sym_this, + ACTIONS(3918), 1, sym_identifier, - [36624] = 24, - ACTIONS(736), 1, - anon_sym_LBRACE, - ACTIONS(748), 1, + STATE(1641), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, + sym_member_expression, + STATE(2121), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(772), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2750), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56269] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2601), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2786), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3251), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1892), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1932), 1, + STATE(2395), 1, sym_string, - STATE(2082), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2428), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2075), 2, + STATE(3389), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -97891,13 +134378,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36708] = 4, - ACTIONS(3129), 1, + [56347] = 4, + ACTIONS(3808), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1962), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97910,15 +134397,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(1960), 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 +134415,14 @@ 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, + [56389] = 4, + ACTIONS(3786), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1410), 12, + ACTIONS(1962), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97948,15 +134435,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(1960), 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, @@ -97968,176 +134453,222 @@ 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, + [56431] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3568), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [36794] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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), 21, - anon_sym_COLON, - 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(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3163), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56509] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2775), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [36836] = 4, - ACTIONS(3137), 1, - anon_sym_COLON, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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), 20, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3459), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56587] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3502), 1, 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, - [36880] = 4, - ACTIONS(3123), 1, - anon_sym_COLON, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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), 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, - [36924] = 22, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3325), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56665] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3255), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1968), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(261), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(1910), 1, + STATE(2312), 1, sym_member_expression, - STATE(1922), 1, + STATE(2395), 1, sym_string, - STATE(2181), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, + STATE(3255), 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(2484), 9, sym__literal, sym_integer, sym_float, @@ -98147,94 +134678,165 @@ 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, + [56743] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3526), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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), 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, - [37050] = 20, - ACTIONS(362), 1, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3213), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56821] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3572), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, anon_sym_this, - STATE(1223), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(3357), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56899] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3384), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(470), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(466), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2406), 9, + STATE(3436), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -98244,94 +134846,165 @@ 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, + [56977] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3504), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 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), 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, - [37172] = 20, - ACTIONS(362), 1, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(3284), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [57055] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(3436), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3176), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [57133] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2773), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1223), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3365), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -98341,99 +135014,53 @@ 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, - anon_sym_LBRACE, - ACTIONS(374), 1, + [57211] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2720), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 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(93), 2, anon_sym_true, anon_sym_false, - STATE(2291), 2, + STATE(3308), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -98443,137 +135070,53 @@ 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, - 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_TILDE, - anon_sym_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, - [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, - 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, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [37476] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [57289] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3472), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1223), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3302), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -98583,57 +135126,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37552] = 24, - ACTIONS(736), 1, - anon_sym_LBRACE, - ACTIONS(748), 1, + [57367] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2609), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3261), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, + ACTIONS(3904), 1, + anon_sym_LPAREN, + STATE(1725), 1, sym__constructor_call, - STATE(1892), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1932), 1, + STATE(2395), 1, sym_string, - STATE(2082), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2318), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2203), 2, + STATE(1733), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -98643,96 +135182,53 @@ 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, - anon_sym_LBRACE, - ACTIONS(748), 1, + [57445] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2585), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2712), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3263), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1892), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1932), 1, + STATE(2395), 1, sym_string, - STATE(2082), 1, + STATE(2461), 1, sym__lhs_expression, - STATE(2399), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2104), 2, + STATE(3236), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -98742,53 +135238,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37762] = 20, - ACTIONS(362), 1, + [57523] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(942), 1, anon_sym_this, - STATE(1223), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3928), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(1926), 1, + STATE(912), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(921), 9, sym__literal, sym_integer, sym_float, @@ -98798,53 +135294,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37838] = 20, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, + [57601] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3265), 1, - sym_identifier, - ACTIONS(3268), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3330), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1223), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 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(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2406), 9, + STATE(3451), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -98852,325 +135348,185 @@ static const uint16_t ts_small_parse_table[] = { sym_null, sym_array, 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, - anon_sym_EQ_GT, - ACTIONS(3271), 1, - anon_sym_DOT, - ACTIONS(3273), 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), 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, - [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_TILDE, - anon_sym_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_object, + sym_pair, + [57679] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3304), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [38131] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3229), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [57757] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3334), 1, 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, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3479), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [57835] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2788), 1, 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(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3337), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [57913] = 5, + ACTIONS(3912), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1452), 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, - [38254] = 3, + STATE(1695), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1402), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3932), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -99178,17 +135534,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(1400), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3930), 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, @@ -99200,172 +135556,292 @@ 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, + [57957] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3314), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [38295] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3355), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58035] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3400), 1, 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, - [38336] = 3, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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), 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, - [38377] = 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3272), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58113] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3508), 1, + anon_sym_RBRACE, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3926), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2408), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, 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), 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(686), 2, + anon_sym_true, + anon_sym_false, + STATE(3143), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2591), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58191] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3336), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 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(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, - 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3402), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58269] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3578), 1, 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, - [38469] = 3, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3366), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58347] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1418), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3936), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -99376,15 +135852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1416), 20, + ACTIONS(3934), 21, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -99396,12 +135873,14 @@ 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, + [58387] = 4, + ACTIONS(3744), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1430), 12, + ACTIONS(1962), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99414,15 +135893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1428), 20, + ACTIONS(1960), 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,94 +135911,352 @@ 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, + [58429] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2882), 1, + sym_identifier, + ACTIONS(3904), 1, + anon_sym_LPAREN, + STATE(1654), 1, + sym_string, + STATE(1689), 1, + sym_member_expression, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2461), 1, + sym__lhs_expression, 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), 20, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1733), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1846), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58507] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, 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, - [38592] = 3, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3373), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58585] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(692), 1, 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, - [38633] = 6, - ACTIONS(1468), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3938), 1, + sym_identifier, + STATE(1654), 1, + sym_string, + STATE(1689), 1, + sym_member_expression, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1806), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1823), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58663] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3358), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3346), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58741] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3586), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3380), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58819] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3438), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3178), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58897] = 5, + ACTIONS(1050), 1, anon_sym_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1054), 1, anon_sym_LT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, + ACTIONS(1048), 11, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99533,13 +136268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 18, - anon_sym_RBRACE, + ACTIONS(1046), 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, @@ -99551,14 +136286,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38680] = 3, + anon_sym_DOT_DOT_DOT, + [58941] = 22, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, + aux_sym_string_token1, + ACTIONS(722), 1, + aux_sym_string_token3, + ACTIONS(820), 1, + anon_sym_this, + ACTIONS(840), 1, + sym_identifier, + ACTIONS(3874), 1, + anon_sym_LPAREN, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(293), 1, + sym_member_expression, + STATE(366), 1, + sym_string, + STATE(2615), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(718), 2, + anon_sym_true, + anon_sym_false, + STATE(250), 2, + sym__rhs_expression, + sym_call_expression, + STATE(486), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59019] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3590), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3408), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59097] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3356), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3164), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59175] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3394), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3186), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59253] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3594), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1450), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3415), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59331] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3942), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -99569,15 +136582,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1448), 20, + ACTIONS(3940), 21, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -99589,14 +136603,12 @@ 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, + [59371] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1584), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3946), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -99607,15 +136619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1582), 20, + ACTIONS(3944), 21, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -99627,14 +136640,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38762] = 3, + anon_sym_DOT_DOT_DOT, + [59411] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3598), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3128), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59489] = 22, + ACTIONS(1480), 1, + anon_sym_LBRACE, + ACTIONS(1492), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(1496), 1, + anon_sym_new, + ACTIONS(1498), 1, + anon_sym_null, + ACTIONS(1500), 1, + aux_sym_integer_token1, + ACTIONS(1502), 1, + aux_sym_integer_token2, + ACTIONS(1504), 1, + aux_sym_float_token1, + ACTIONS(1506), 1, + aux_sym_float_token2, + ACTIONS(1510), 1, + aux_sym_string_token1, + ACTIONS(1512), 1, + aux_sym_string_token3, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(3948), 1, + anon_sym_LPAREN, + STATE(1447), 1, + sym_member_expression, + STATE(1486), 1, + sym_string, + STATE(1529), 1, + sym__constructor_call, + STATE(1559), 1, + sym__call, + STATE(2436), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1508), 2, + anon_sym_true, + anon_sym_false, + STATE(1555), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1517), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59567] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3952), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -99645,15 +136768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(594), 20, + ACTIONS(3950), 21, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -99665,52 +136789,614 @@ 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_DOT_DOT_DOT, + [59607] = 22, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(3223), 1, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3275), 1, + ACTIONS(2876), 1, sym_identifier, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + ACTIONS(3876), 1, + anon_sym_LPAREN, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1466), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1467), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1520), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59685] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3602), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3449), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59763] = 22, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3876), 1, + anon_sym_LPAREN, + ACTIONS(3954), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1467), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2342), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59841] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3632), 1, + sym_identifier, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3866), 1, + anon_sym_LPAREN, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2223), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59919] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_this, + ACTIONS(2870), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_LPAREN, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1308), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1355), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59997] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3608), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3472), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60075] = 22, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, + aux_sym_string_token1, + ACTIONS(722), 1, + aux_sym_string_token3, + ACTIONS(3816), 1, + sym_identifier, + ACTIONS(3818), 1, + anon_sym_this, + ACTIONS(3874), 1, + anon_sym_LPAREN, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, + sym_member_expression, + STATE(2214), 1, + sym_string, + STATE(2615), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(718), 2, + anon_sym_true, + anon_sym_false, + STATE(250), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2425), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60153] = 22, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3766), 1, + anon_sym_this, + ACTIONS(3842), 1, + sym_identifier, + ACTIONS(3876), 1, + anon_sym_LPAREN, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2415), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1467), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2557), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60231] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3312), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3336), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60309] = 22, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3738), 1, + sym_identifier, + ACTIONS(3876), 1, + anon_sym_LPAREN, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1467), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2348), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60387] = 22, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3480), 1, + anon_sym_RBRACK, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(3315), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -99720,127 +137406,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38876] = 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), 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(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, + [60465] = 22, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3223), 1, - anon_sym_this, - ACTIONS(3275), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3760), 1, sym_identifier, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + ACTIONS(3762), 1, + anon_sym_this, + ACTIONS(3866), 1, + anon_sym_LPAREN, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1865), 1, + STATE(2444), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2581), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2538), 9, sym__literal, sym_integer, sym_float, @@ -99850,165 +137462,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39031] = 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), 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(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(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, - anon_sym_LBRACE, - ACTIONS(488), 1, + [60543] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3280), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3614), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(93), 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(3487), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -100018,51 +137518,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39227] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60621] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3223), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2762), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3275), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3169), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -100072,127 +137574,53 @@ 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, - 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, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60699] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3223), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(2242), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3275), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3309), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -100202,201 +137630,123 @@ 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, - 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, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [39578] = 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, - 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, + [60777] = 22, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(1686), 1, + anon_sym_this, + ACTIONS(2884), 1, sym_identifier, - [39619] = 3, + ACTIONS(3876), 1, + anon_sym_LPAREN, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1585), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, 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, - 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(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1467), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1899), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60855] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3618), 1, + sym__lookback_semicolon, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [39660] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3458), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60933] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1554), 12, + ACTIONS(1096), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100409,14 +137759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1552), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1094), 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_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -100428,15 +137778,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, - [39701] = 3, + anon_sym_DOT_DOT_DOT, + [60973] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1492), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3958), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -100447,15 +137794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1490), 20, + ACTIONS(3956), 21, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -100467,52 +137815,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39742] = 19, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [61013] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3219), 1, - anon_sym_this, - ACTIONS(3283), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3764), 1, sym_identifier, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(3766), 1, + anon_sym_this, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(187), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2308), 9, sym__literal, sym_integer, sym_float, @@ -100522,49 +137870,65 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39815] = 3, + [61088] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, - 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3458), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [61163] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1566), 12, + ACTIONS(1208), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100577,14 +137941,13 @@ 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(1206), 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, @@ -100596,15 +137959,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, - [39897] = 3, + anon_sym_DOT_DOT_DOT, + [61202] = 4, + ACTIONS(3094), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1500), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3962), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -100615,15 +137977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1498), 20, + ACTIONS(3960), 19, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -100635,52 +137996,52 @@ 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_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [61243] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3191), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3285), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3367), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -100690,52 +138051,65 @@ 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, + [61318] = 21, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, + aux_sym_string_token1, + ACTIONS(722), 1, + aux_sym_string_token3, + ACTIONS(3718), 1, + anon_sym_this, + ACTIONS(3740), 1, + sym_identifier, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, + sym_member_expression, + STATE(2214), 1, + sym_string, + STATE(2615), 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, - sym_identifier, - [40058] = 3, + ACTIONS(718), 2, + anon_sym_true, + anon_sym_false, + STATE(464), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2242), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [61393] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1394), 12, + ACTIONS(1062), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100748,15 +138122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1392), 20, + ACTIONS(1060), 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, @@ -100768,88 +138140,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40099] = 3, + anon_sym_DOT_DOT_DOT, + [61432] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 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(686), 2, + anon_sym_true, + anon_sym_false, + STATE(3041), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [61507] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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), 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, - [40181] = 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3183), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [61582] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1212), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100862,14 +138266,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(1210), 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 +138284,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, - [40222] = 19, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [61621] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3219), 1, - anon_sym_this, - ACTIONS(3283), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3632), 1, sym_identifier, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(3634), 1, + anon_sym_this, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(154), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2223), 9, sym__literal, sym_integer, sym_float, @@ -100937,52 +138339,65 @@ 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, - 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, + [61696] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [40342] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3229), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [61771] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1566), 12, + ACTIONS(1224), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100995,15 +138410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1564), 20, + ACTIONS(1222), 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, @@ -101015,12 +138428,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40383] = 3, + anon_sym_DOT_DOT_DOT, + [61810] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2878), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1737), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [61885] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1575), 12, + ACTIONS(1066), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -101033,15 +138500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1572), 20, + ACTIONS(1064), 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, @@ -101053,12 +138518,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40424] = 3, + anon_sym_DOT_DOT_DOT, + [61924] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(1686), 1, + anon_sym_this, + ACTIONS(2884), 1, + sym_identifier, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1585), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1470), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1899), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [61999] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_this, + ACTIONS(2807), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(912), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1492), 12, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym__rhs_expression, + sym_call_expression, + STATE(919), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62074] = 21, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, + aux_sym_string_token1, + ACTIONS(722), 1, + aux_sym_string_token3, + ACTIONS(820), 1, + anon_sym_this, + ACTIONS(840), 1, + sym_identifier, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(293), 1, + sym_member_expression, + STATE(366), 1, + sym_string, + STATE(2615), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(718), 2, + anon_sym_true, + anon_sym_false, + STATE(254), 2, + sym__rhs_expression, + sym_call_expression, + STATE(486), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62149] = 4, + ACTIONS(3964), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1962), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -101071,14 +138700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1490), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1960), 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, @@ -101090,13 +138717,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, + [62190] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [40465] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3232), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62265] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1402), 12, + ACTIONS(1172), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -101109,15 +138789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1400), 20, + ACTIONS(1170), 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, @@ -101129,52 +138807,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40506] = 19, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, + anon_sym_DOT_DOT_DOT, + [62304] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3287), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(3290), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3217), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62379] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1841), 1, + STATE(2395), 1, + sym_string, + STATE(2461), 1, sym__lhs_expression, - STATE(1926), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3193), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62454] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(93), 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(3325), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -101184,54 +138970,213 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40579] = 22, - ACTIONS(526), 1, + [62529] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(552), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(3235), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62604] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3634), 1, anon_sym_this, - ACTIONS(736), 1, + ACTIONS(3776), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2408), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(154), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2565), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62679] = 21, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - STATE(1208), 1, - sym_string, - STATE(1210), 1, + ACTIONS(3766), 1, + anon_sym_this, + ACTIONS(3842), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1265), 1, + STATE(2415), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1445), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2557), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62754] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3926), 1, + sym_identifier, + STATE(147), 1, sym__call, - STATE(1266), 1, + STATE(148), 1, sym__constructor_call, - STATE(2082), 1, + STATE(2207), 1, + sym_member_expression, + STATE(2408), 1, + sym_string, + STATE(2444), 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(686), 2, anon_sym_true, anon_sym_false, - STATE(1304), 2, + STATE(3143), 2, sym__rhs_expression, sym_call_expression, - STATE(1269), 9, + STATE(2591), 9, sym__literal, sym_integer, sym_float, @@ -101241,51 +139186,71 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40658] = 3, + [62829] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(3762), 1, + anon_sym_this, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2444), 1, + sym__lhs_expression, + STATE(2581), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(154), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2538), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [62904] = 6, + ACTIONS(3862), 1, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [40699] = 3, + ACTIONS(3967), 1, + anon_sym_DOT, + ACTIONS(3969), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(526), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1048), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -101296,14 +139261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(528), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1046), 17, + 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, @@ -101313,17 +139277,15 @@ 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, - [40740] = 3, + anon_sym_DOT_DOT_DOT, + [62949] = 4, + ACTIONS(3094), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1554), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3973), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -101334,15 +139296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1552), 20, + ACTIONS(3971), 19, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -101354,90 +139315,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40781] = 3, + anon_sym_DOT_DOT_DOT, + [62990] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2878), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1737), 1, + sym_string, + STATE(2444), 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, - 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(686), 2, + anon_sym_true, + anon_sym_false, + STATE(154), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1748), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63065] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(942), 1, + anon_sym_this, + ACTIONS(3928), 1, sym_identifier, - [40822] = 3, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(912), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, 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, - sym_identifier, - [40863] = 3, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 2, + sym__rhs_expression, + sym_call_expression, + STATE(921), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63140] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1398), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(3977), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -101448,15 +139439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1396), 20, + ACTIONS(3975), 20, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + 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, @@ -101468,126 +139459,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40904] = 3, + anon_sym_DOT_DOT_DOT, + [63179] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3337), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63254] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, - 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3149), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63329] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3346), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63404] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(3055), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63479] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(3378), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63554] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3954), 1, + sym_identifier, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2262), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(2463), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2342), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63629] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(764), 1, + sym_escape_sequence, + ACTIONS(3979), 1, + sym_identifier, + ACTIONS(3981), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, + anon_sym_LBRACK, + ACTIONS(3985), 1, + anon_sym_this, + ACTIONS(3987), 1, + aux_sym_string_token1, + ACTIONS(3989), 1, + aux_sym_string_token3, + ACTIONS(3991), 1, + sym_comment, + STATE(1827), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(678), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(682), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(766), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2689), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63700] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3634), 1, + anon_sym_this, + ACTIONS(3776), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2408), 1, + sym_string, + STATE(2444), 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, - sym_identifier, - [41027] = 3, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2565), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [63775] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1570), 12, + ACTIONS(836), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -101600,52 +139907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1568), 20, + ACTIONS(838), 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, - [41068] = 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), 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, @@ -101657,13 +139925,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, - [41109] = 3, + anon_sym_DOT_DOT_DOT, + [63814] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1438), 12, + ACTIONS(1176), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -101676,14 +139943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1174), 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, @@ -101695,53 +139961,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, - [41150] = 19, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [63853] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3219), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3283), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(3358), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -101751,51 +140016,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41223] = 19, - ACTIONS(362), 1, + [63928] = 21, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(3219), 1, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3283), 1, + ACTIONS(2876), 1, sym_identifier, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1378), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1466), 1, sym_string, + STATE(2578), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1276), 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(1445), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1520), 9, sym__literal, sym_integer, sym_float, @@ -101805,11 +140070,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41296] = 3, + [64003] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1414), 12, + ACTIONS(1108), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -101822,14 +140087,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1412), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1106), 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, @@ -101841,56 +140105,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, - [41337] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [64042] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2547), 2, + STATE(3147), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -101900,208 +140160,213 @@ 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, + [64117] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [41457] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3255), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64192] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, sym_identifier, - [41498] = 3, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(3342), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64267] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2882), 1, + sym_identifier, + STATE(1654), 1, + sym_string, + STATE(1689), 1, + sym_member_expression, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2461), 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(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1806), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1846), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64342] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3191), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3285), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(2645), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -102111,127 +140376,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41663] = 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), 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, + [64417] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [41704] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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), 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, - [41745] = 19, - ACTIONS(362), 1, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3479), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64492] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3191), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(942), 1, anon_sym_this, - ACTIONS(3285), 1, - sym_identifier, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(3928), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(912), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(154), 2, + sym__rhs_expression, + sym_call_expression, + STATE(921), 9, sym__literal, sym_integer, sym_float, @@ -102241,11 +140484,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41818] = 3, + [64567] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 12, + ACTIONS(1184), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102258,14 +140501,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(1182), 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, @@ -102277,170 +140519,158 @@ 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, + [64606] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, 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, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3466), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64681] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [41947] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1530), 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(1528), 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, - [41988] = 19, - ACTIONS(485), 1, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3464), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64756] = 19, + ACTIONS(731), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(734), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(740), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(743), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(746), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(749), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(752), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(758), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(761), 1, aux_sym_string_token3, - ACTIONS(3293), 1, + ACTIONS(3993), 1, sym_identifier, - ACTIONS(3296), 1, + ACTIONS(3996), 1, anon_sym_this, - STATE(1310), 1, + STATE(1776), 1, aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, + STATE(2181), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(755), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 6, - anon_sym_DOT, + ACTIONS(727), 4, + sym__lookback_semicolon, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_LT, - anon_sym_EQ_GT, - STATE(2401), 9, + STATE(2721), 9, sym__literal, sym_integer, sym_float, @@ -102450,135 +140680,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42061] = 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), 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, - [42102] = 8, - 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(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, - [42153] = 22, - ACTIONS(362), 1, + [64827] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(812), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + ACTIONS(816), 1, + anon_sym_this, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(1926), 1, + STATE(363), 1, sym_string, - STATE(2179), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - ACTIONS(2781), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2596), 2, + STATE(695), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(548), 9, sym__literal, sym_integer, sym_float, @@ -102588,163 +140734,173 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42232] = 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), 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, + [64902] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(2882), 1, sym_identifier, - [42273] = 3, + STATE(1654), 1, + sym_string, + STATE(1689), 1, + sym_member_expression, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2461), 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(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1761), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1846), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64977] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [42314] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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), 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(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3319), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65052] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [42355] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, 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), 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, - [42396] = 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3338), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65127] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1418), 12, + ACTIONS(700), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102757,14 +140913,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(698), 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, @@ -102776,19 +140931,120 @@ 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, + [65166] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [42437] = 6, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3207), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3397), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65241] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3436), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65316] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, + ACTIONS(1188), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102798,15 +141054,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(1186), 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,95 +141075,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [42484] = 8, + anon_sym_DOT_DOT_DOT, + [65355] = 21, + ACTIONS(1480), 1, + anon_sym_LBRACE, + ACTIONS(1492), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(1496), 1, + anon_sym_new, + ACTIONS(1498), 1, + anon_sym_null, + ACTIONS(1500), 1, + aux_sym_integer_token1, + ACTIONS(1502), 1, + aux_sym_integer_token2, + ACTIONS(1504), 1, + aux_sym_float_token1, ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, + aux_sym_float_token2, + ACTIONS(1510), 1, + aux_sym_string_token1, + ACTIONS(1512), 1, + aux_sym_string_token3, + ACTIONS(2874), 1, + sym_identifier, + STATE(1447), 1, + sym_member_expression, + STATE(1486), 1, + sym_string, + STATE(1529), 1, + sym__constructor_call, + STATE(1559), 1, + sym__call, + STATE(2436), 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, - [42535] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1508), 2, + anon_sym_true, + anon_sym_false, + STATE(1558), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1517), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65430] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3191), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3285), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3402), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -102916,49 +141184,65 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42608] = 3, + [65505] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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, - sym_identifier, - [42649] = 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3269), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65580] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(580), 12, + ACTIONS(1078), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102971,15 +141255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(578), 20, + ACTIONS(1076), 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, @@ -102991,12 +141273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [42690] = 3, + anon_sym_DOT_DOT_DOT, + [65619] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1542), 12, + ACTIONS(694), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -103009,14 +141291,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(692), 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, @@ -103028,92 +141309,226 @@ 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, + [65658] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(768), 1, + sym_escape_sequence, + ACTIONS(3979), 1, sym_identifier, - [42731] = 6, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2126), 1, - anon_sym_QMARK, - ACTIONS(3129), 1, - anon_sym_EQ_GT, + ACTIONS(3981), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, + anon_sym_LBRACK, + ACTIONS(3985), 1, + anon_sym_this, + ACTIONS(3987), 1, + aux_sym_string_token1, + ACTIONS(3989), 1, + aux_sym_string_token3, + ACTIONS(3991), 1, + sym_comment, + STATE(1827), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(678), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(682), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(770), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2689), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65729] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3186), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65804] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 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(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3192), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65879] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [42819] = 3, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3244), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65954] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1454), 12, + ACTIONS(1192), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -103126,14 +141541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1452), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1190), 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, @@ -103145,55 +141559,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, + [65993] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - [42860] = 22, - ACTIONS(35), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3272), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66068] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2366), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2777), 2, + STATE(3300), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103203,53 +141668,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42938] = 22, - ACTIONS(35), 1, + [66143] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2895), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2856), 2, + STATE(3306), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103259,53 +141722,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43016] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [66218] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1528), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3317), 2, sym__rhs_expression, sym_call_expression, - STATE(1641), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103315,53 +141776,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43094] = 22, - ACTIONS(362), 1, + [66293] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(3147), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3199), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(2007), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3248), 2, sym__rhs_expression, sym_call_expression, - STATE(2122), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -103371,53 +141830,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43172] = 22, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + [66368] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(2435), 1, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(259), 1, - sym_member_expression, - STATE(261), 1, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(1175), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2181), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(3352), 2, sym__rhs_expression, sym_call_expression, - STATE(1198), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103427,53 +141884,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43250] = 22, - ACTIONS(35), 1, + [66443] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3017), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, sym__call, - STATE(1635), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3197), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66518] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2818), 2, + STATE(3431), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103483,53 +141992,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43328] = 22, - ACTIONS(362), 1, + [66593] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3189), 1, + ACTIONS(3724), 1, sym_identifier, - ACTIONS(3191), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3301), 1, + STATE(1776), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(772), 4, + sym__lookback_semicolon, anon_sym_LPAREN, - STATE(224), 1, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66664] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(2179), 1, - sym__lhs_expression, - STATE(2256), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3467), 2, sym__rhs_expression, sym_call_expression, - STATE(2205), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103539,53 +142098,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, + [66739] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2817), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2853), 2, + STATE(3486), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103595,53 +142152,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43484] = 22, - ACTIONS(35), 1, + [66814] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(844), 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(842), 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, + [66853] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2744), 2, + STATE(3134), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103651,53 +142242,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43562] = 22, - ACTIONS(35), 1, + [66928] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2951), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2849), 2, + STATE(3142), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103707,53 +142296,142 @@ 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, + [67003] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3938), 1, + sym_identifier, + STATE(1654), 1, + sym_string, + STATE(1689), 1, + sym_member_expression, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1806), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1823), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67078] = 4, + ACTIONS(3094), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4001), 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(3999), 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, + [67119] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(472), 1, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(2441), 1, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1204), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3154), 2, sym__rhs_expression, sym_call_expression, - STATE(1307), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103763,53 +142441,159 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43718] = 22, - ACTIONS(35), 1, + [67194] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3174), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67269] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2871), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, sym__call, - STATE(1635), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3176), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67344] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2686), 2, + STATE(3178), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103819,11 +142603,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43796] = 3, + [67419] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3307), 10, + ACTIONS(1130), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -103834,16 +142620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3305), 21, + ACTIONS(1128), 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 +142638,214 @@ 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, + [67458] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67533] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3196), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67608] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3227), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67683] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3147), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3169), 1, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(3309), 1, - anon_sym_LPAREN, - STATE(1265), 1, - sym__call, - STATE(1266), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1892), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1932), 1, + STATE(2395), 1, sym_string, - STATE(2082), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1273), 2, + STATE(3230), 2, sym__rhs_expression, sym_call_expression, - STATE(1992), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103912,53 +142855,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43914] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [67758] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(382), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(472), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(548), 1, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(304), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2148), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3234), 2, sym__rhs_expression, sym_call_expression, - STATE(488), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -103968,53 +142909,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, + [67833] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3255), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(261), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(1910), 1, + STATE(2312), 1, sym_member_expression, - STATE(1922), 1, + STATE(2395), 1, sym_string, - STATE(2181), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(3203), 2, sym__rhs_expression, sym_call_expression, - STATE(2010), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -104024,53 +142963,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44070] = 22, - ACTIONS(35), 1, + [67908] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2961), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2697), 2, + STATE(3242), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -104080,13 +143017,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44148] = 3, + [67983] = 6, + ACTIONS(3808), 1, + anon_sym_EQ_GT, + ACTIONS(4003), 1, + anon_sym_DOT, + ACTIONS(4005), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1410), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1048), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -104097,14 +143038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1408), 19, + ACTIONS(1046), 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 +143054,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_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [68028] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3213), 2, sym__rhs_expression, sym_call_expression, - STATE(1980), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -104173,53 +143110,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44266] = 22, - ACTIONS(362), 1, + [68103] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(3311), 1, - sym_identifier, - ACTIONS(3313), 1, - anon_sym__, - ACTIONS(3315), 1, + ACTIONS(1438), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + ACTIONS(2880), 1, + sym_identifier, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(2179), 1, - sym__lhs_expression, - STATE(2256), 1, + STATE(1655), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2662), 2, + STATE(187), 2, sym__rhs_expression, sym_call_expression, - STATE(2234), 9, + STATE(1901), 9, sym__literal, sym_integer, sym_float, @@ -104229,53 +143164,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44344] = 22, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(736), 1, + [68178] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(812), 1, sym_identifier, - ACTIONS(3309), 1, - anon_sym_LPAREN, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, + ACTIONS(816), 1, + anon_sym_this, + STATE(147), 1, sym__call, - STATE(1266), 1, + STATE(148), 1, sym__constructor_call, - STATE(2082), 1, + STATE(150), 1, + sym_member_expression, + STATE(363), 1, + sym_string, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1273), 2, + STATE(172), 2, sym__rhs_expression, sym_call_expression, - STATE(1275), 9, + STATE(548), 9, sym__literal, sym_integer, sym_float, @@ -104285,53 +143218,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44422] = 22, - ACTIONS(942), 1, + [68253] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(727), 1, + sym_escape_sequence, + ACTIONS(740), 1, + anon_sym_null, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4007), 1, + sym_identifier, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(956), 1, + ACTIONS(4016), 1, anon_sym_this, - ACTIONS(958), 1, - anon_sym_new, - ACTIONS(960), 1, - anon_sym_null, - ACTIONS(962), 1, + ACTIONS(4019), 1, + aux_sym_string_token1, + ACTIONS(4022), 1, + aux_sym_string_token3, + STATE(1827), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(743), 2, aux_sym_integer_token1, - ACTIONS(964), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(749), 2, 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, - ACTIONS(3317), 1, - anon_sym_LPAREN, - 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, + ACTIONS(755), 2, anon_sym_true, anon_sym_false, - STATE(1271), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1227), 9, + ACTIONS(729), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -104341,53 +143270,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44500] = 22, - ACTIONS(35), 1, + [68324] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2755), 2, + STATE(2661), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -104397,53 +143324,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44578] = 22, - ACTIONS(35), 1, + [68399] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(666), 1, + sym_escape_sequence, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(3979), 1, + sym_identifier, + ACTIONS(3981), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(37), 1, + ACTIONS(3985), 1, anon_sym_this, - 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, + ACTIONS(3987), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(3989), 1, aux_sym_string_token3, - ACTIONS(528), 1, - sym__lookback_semicolon, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3319), 1, - sym_identifier, - STATE(1362), 1, + ACTIONS(3991), 1, + sym_comment, + STATE(1827), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, sym_member_expression, - STATE(1384), 1, + STATE(2213), 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(678), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(682), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1459), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1589), 9, + ACTIONS(668), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -104453,53 +143376,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44656] = 22, - ACTIONS(35), 1, + [68470] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3013), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2846), 2, + STATE(3459), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -104509,53 +143430,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44734] = 22, - ACTIONS(430), 1, + [68545] = 21, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(560), 1, - sym_identifier, - ACTIONS(566), 1, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(259), 1, + ACTIONS(2876), 1, + sym_identifier, + STATE(1378), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + STATE(1464), 1, sym__call, - STATE(296), 1, + STATE(1465), 1, + sym__constructor_call, + STATE(1466), 1, sym_string, - STATE(2254), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(1481), 2, sym__rhs_expression, sym_call_expression, - STATE(416), 9, + STATE(1520), 9, sym__literal, sym_integer, sym_float, @@ -104565,53 +143484,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44812] = 22, - ACTIONS(35), 1, + [68620] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2937), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3772), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + ACTIONS(3774), 1, + anon_sym_this, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2640), 2, + STATE(1761), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2547), 9, sym__literal, sym_integer, sym_float, @@ -104621,53 +143538,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44890] = 22, - ACTIONS(35), 1, + [68695] = 21, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(706), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3015), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(820), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3652), 1, sym_identifier, - STATE(1633), 1, + STATE(248), 1, sym__call, - STATE(1635), 1, + STATE(249), 1, sym__constructor_call, - STATE(1989), 1, + STATE(293), 1, sym_member_expression, - STATE(2035), 1, + STATE(1302), 1, sym_string, - STATE(2161), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(2775), 2, + STATE(263), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1325), 9, sym__literal, sym_integer, sym_float, @@ -104677,13 +143592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44968] = 4, - ACTIONS(3137), 1, - anon_sym_COLON, + [68770] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1136), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -104696,13 +143609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 18, + ACTIONS(1134), 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,12 +143627,12 @@ 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, + [68809] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1196), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -104732,14 +143645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1486), 19, + ACTIONS(1194), 18, sym__lookback_semicolon, - anon_sym_COLON, + 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, @@ -104751,54 +143663,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [45050] = 22, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [68848] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2877), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3634), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3738), 1, sym_identifier, - STATE(1633), 1, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2262), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2623), 2, + STATE(1445), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2348), 9, sym__literal, sym_integer, sym_float, @@ -104808,53 +143718,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45128] = 22, - ACTIONS(35), 1, + [68923] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1200), 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(1198), 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, + [68962] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3954), 1, sym_identifier, - STATE(1633), 1, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2262), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2684), 2, + STATE(2449), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2342), 9, sym__literal, sym_integer, sym_float, @@ -104864,53 +143808,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45206] = 22, - ACTIONS(362), 1, + [69037] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1070), 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(1068), 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, + [69076] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(147), 1, sym__call, - STATE(765), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, sym_string, - STATE(2148), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(154), 2, sym__rhs_expression, sym_call_expression, - STATE(769), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -104920,53 +143898,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45284] = 22, - ACTIONS(430), 1, + [69151] = 21, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(706), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(3215), 1, - anon_sym_this, - ACTIONS(3249), 1, + ACTIONS(3636), 1, sym_identifier, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + ACTIONS(3638), 1, + anon_sym_this, + STATE(248), 1, sym__call, - STATE(1910), 1, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, sym_member_expression, - STATE(1922), 1, + STATE(2214), 1, sym_string, - STATE(2181), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(291), 2, sym__rhs_expression, sym_call_expression, - STATE(1974), 9, + STATE(2227), 9, sym__literal, sym_integer, sym_float, @@ -104976,129 +143952,51 @@ 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, - 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, - 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, - [45406] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3325), 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(3323), 21, - sym__lookback_semicolon, - anon_sym_RPAREN, + [69226] = 21, + ACTIONS(702), 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, - [45446] = 22, - ACTIONS(35), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(706), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(3636), 1, sym_identifier, - ACTIONS(3327), 1, - anon_sym_LPAREN, - STATE(1362), 1, - sym_member_expression, - STATE(1384), 1, - sym_string, - STATE(1633), 1, + ACTIONS(3638), 1, + anon_sym_this, + STATE(248), 1, sym__call, - STATE(1635), 1, + STATE(249), 1, sym__constructor_call, - STATE(2161), 1, + STATE(2211), 1, + sym_member_expression, + STATE(2214), 1, + sym_string, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(1540), 2, + STATE(254), 2, sym__rhs_expression, sym_call_expression, - STATE(1506), 9, + STATE(2227), 9, sym__literal, sym_integer, sym_float, @@ -105108,53 +144006,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45524] = 22, - ACTIONS(35), 1, + [69301] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2805), 2, + STATE(3310), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -105164,53 +144060,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45602] = 22, - ACTIONS(35), 1, + [69376] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3634), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3738), 1, sym_identifier, - STATE(1633), 1, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2262), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2628), 2, + STATE(1470), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2348), 9, sym__literal, sym_integer, sym_float, @@ -105220,53 +144114,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45680] = 22, - ACTIONS(35), 1, + [69451] = 21, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(706), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(89), 1, - aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3025), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(722), 1, + aux_sym_string_token3, + ACTIONS(2868), 1, sym_identifier, - STATE(1633), 1, + STATE(248), 1, sym__call, - STATE(1635), 1, + STATE(249), 1, sym__constructor_call, - STATE(1989), 1, + STATE(293), 1, sym_member_expression, - STATE(2035), 1, + STATE(1302), 1, sym_string, - STATE(2161), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(2761), 2, + STATE(291), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1338), 9, sym__literal, sym_integer, sym_float, @@ -105276,53 +144168,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45758] = 22, - ACTIONS(362), 1, + [69526] = 6, + ACTIONS(3808), 1, + anon_sym_EQ_GT, + ACTIONS(4025), 1, + anon_sym_DOT, + ACTIONS(4027), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [69571] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(472), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(2374), 1, + ACTIONS(3784), 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(147), 1, sym__call, - STATE(765), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, sym_string, - STATE(2148), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(2990), 2, sym__rhs_expression, sym_call_expression, - STATE(767), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -105332,53 +144261,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45836] = 22, - ACTIONS(35), 1, + [69646] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2865), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2629), 2, + STATE(3250), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -105388,53 +144315,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45914] = 22, - ACTIONS(35), 1, + [69721] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3009), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3954), 1, sym_identifier, - STATE(1633), 1, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2262), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2760), 2, + STATE(2586), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2342), 9, sym__literal, sym_integer, sym_float, @@ -105444,53 +144369,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45992] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [69796] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2891), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2759), 2, + STATE(3309), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -105500,53 +144423,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46070] = 22, - ACTIONS(35), 1, + [69871] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2859), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2718), 2, + STATE(3315), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -105556,53 +144477,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46148] = 22, - ACTIONS(362), 1, + [69946] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(2931), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2668), 2, + STATE(2798), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -105612,53 +144531,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46226] = 22, - ACTIONS(35), 1, + [70021] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3021), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2870), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(1308), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2626), 2, + STATE(187), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1355), 9, sym__literal, sym_integer, sym_float, @@ -105668,53 +144585,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46304] = 22, - ACTIONS(35), 1, + [70096] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(942), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3656), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(1308), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2634), 2, + STATE(172), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1329), 9, sym__literal, sym_integer, sym_float, @@ -105724,53 +144639,126 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46382] = 22, - ACTIONS(362), 1, + [70171] = 6, + ACTIONS(2996), 1, + anon_sym_DOT, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3786), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [70216] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1034), 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(1032), 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, + [70255] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(472), 1, + ACTIONS(942), 1, anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(3916), 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(147), 1, sym__call, - STATE(1395), 1, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1655), 1, sym_string, - STATE(2179), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(172), 2, sym__rhs_expression, sym_call_expression, - STATE(1449), 9, + STATE(1855), 9, sym__literal, sym_integer, sym_float, @@ -105780,50 +144768,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, + [70330] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3255), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3329), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3303), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -105833,50 +144822,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46532] = 19, - ACTIONS(362), 1, + [70405] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1112), 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(1110), 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, + [70444] = 21, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(3255), 1, + ACTIONS(1604), 1, anon_sym_this, - ACTIONS(3329), 1, + ACTIONS(3840), 1, sym_identifier, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1378), 1, sym_member_expression, - STATE(1926), 1, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1585), 1, sym_string, + STATE(2578), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1276), 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(1481), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1878), 9, sym__literal, sym_integer, sym_float, @@ -105886,50 +144912,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46604] = 19, - ACTIONS(485), 1, + [70519] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1088), 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(1086), 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, + [70558] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1038), 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(1036), 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, + [70597] = 21, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(3331), 1, - sym_identifier, - ACTIONS(3334), 1, + ACTIONS(3718), 1, anon_sym_this, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3740), 1, + sym_identifier, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, sym_member_expression, - STATE(1926), 1, + STATE(2214), 1, sym_string, + STATE(2615), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(718), 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(254), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2242), 9, sym__literal, sym_integer, sym_float, @@ -105939,50 +145038,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46676] = 19, - ACTIONS(362), 1, + [70672] = 21, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(3255), 1, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3329), 1, + ACTIONS(2876), 1, sym_identifier, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1378), 1, sym_member_expression, - STATE(1926), 1, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1466), 1, sym_string, + STATE(2578), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1276), 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(1470), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1520), 9, sym__literal, sym_integer, sym_float, @@ -105992,50 +145092,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46748] = 19, - ACTIONS(362), 1, + [70747] = 21, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(3255), 1, - anon_sym_this, - ACTIONS(3329), 1, + ACTIONS(3816), 1, sym_identifier, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3818), 1, + anon_sym_this, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(2211), 1, sym_member_expression, - STATE(1926), 1, + STATE(2214), 1, sym_string, + STATE(2615), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(718), 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(291), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2425), 9, sym__literal, sym_integer, sym_float, @@ -106045,50 +145146,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46820] = 19, - ACTIONS(362), 1, + [70822] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(3120), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -106098,50 +145200,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46892] = 19, - ACTIONS(362), 1, + [70897] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(3483), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -106151,91 +145254,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, + [70972] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2853), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3954), 1, sym_identifier, - STATE(1633), 1, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2262), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2694), 2, + STATE(2540), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2342), 9, sym__literal, sym_integer, sym_float, @@ -106245,50 +145308,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, + [71047] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3341), 1, - sym_identifier, - ACTIONS(3344), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(93), 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(3413), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -106298,50 +145362,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, + [71122] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3336), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -106351,50 +145416,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47228] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [71197] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, + STATE(2461), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 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(3282), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -106404,53 +145470,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47300] = 22, - ACTIONS(35), 1, + [71272] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2909), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2735), 2, + STATE(3247), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -106460,53 +145524,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47378] = 22, - ACTIONS(736), 1, + [71347] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3309), 1, - anon_sym_LPAREN, - ACTIONS(3347), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1265), 1, + STATE(147), 1, sym__call, - STATE(1266), 1, + STATE(148), 1, sym__constructor_call, - STATE(1892), 1, + STATE(2207), 1, sym_member_expression, - STATE(1932), 1, + STATE(2213), 1, sym_string, - STATE(2082), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1273), 2, + STATE(2734), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -106516,53 +145578,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47456] = 22, - ACTIONS(35), 1, + [71422] = 21, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(706), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2949), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3816), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(3818), 1, + anon_sym_this, + STATE(248), 1, sym__call, - STATE(1635), 1, + STATE(249), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2211), 1, sym_member_expression, - STATE(2035), 1, + STATE(2214), 1, sym_string, - STATE(2161), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(2855), 2, + STATE(254), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2425), 9, sym__literal, sym_integer, sym_float, @@ -106572,53 +145632,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47534] = 22, - ACTIONS(35), 1, + [71497] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2857), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2807), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(912), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2659), 2, + STATE(172), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(919), 9, sym__literal, sym_integer, sym_float, @@ -106628,11 +145686,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47612] = 3, + [71572] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3351), 10, + ACTIONS(1152), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -106643,16 +145703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3349), 21, + ACTIONS(1150), 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, @@ -106664,70 +145721,12 @@ 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_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(2875), 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(2732), 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, - [47730] = 4, - ACTIONS(3187), 1, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + [71611] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1156), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -106740,13 +145739,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 18, - anon_sym_RBRACE, + ACTIONS(1154), 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, @@ -106758,110 +145757,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [47772] = 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(2861), 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, + anon_sym_DOT_DOT_DOT, + [71650] = 6, + ACTIONS(3820), 1, + anon_sym_EQ_GT, + ACTIONS(4029), 1, + anon_sym_DOT, + ACTIONS(4031), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(2774), 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, - [47850] = 22, - ACTIONS(362), 1, + ACTIONS(1048), 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(1046), 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, + [71695] = 21, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2913), 1, - anon_sym_RBRACE, - ACTIONS(3063), 1, + ACTIONS(1686), 1, anon_sym_this, - ACTIONS(3353), 1, + ACTIONS(2884), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1378), 1, sym_member_expression, - STATE(2007), 1, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1585), 1, sym_string, - STATE(2179), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2809), 2, + STATE(1481), 2, sym__rhs_expression, sym_call_expression, - STATE(2246), 9, + STATE(1899), 9, sym__literal, sym_integer, sym_float, @@ -106871,53 +145851,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, + [71770] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(2007), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(1789), 2, sym__rhs_expression, sym_call_expression, - STATE(2246), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -106927,11 +145905,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48006] = 3, + [71845] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3357), 10, + ACTIONS(1160), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -106942,16 +145922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3355), 21, + ACTIONS(1158), 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 +145940,52 @@ 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, + [71884] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2839), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2673), 2, + STATE(3103), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -107020,53 +145995,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48124] = 22, - ACTIONS(35), 1, + [71959] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2883), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2676), 2, + STATE(3407), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -107076,95 +146049,51 @@ 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, + [72034] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2985), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3954), 1, sym_identifier, - STATE(1633), 1, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2262), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2884), 2, + STATE(2441), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2342), 9, sym__literal, sym_integer, sym_float, @@ -107174,90 +146103,51 @@ 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, - 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, + [72109] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2855), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2753), 2, + STATE(3288), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -107267,53 +146157,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48448] = 22, - ACTIONS(35), 1, + [72184] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2897), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2672), 2, + STATE(3284), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -107323,131 +146211,51 @@ 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, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3365), 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(3363), 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, - [48570] = 5, - ACTIONS(3367), 1, - anon_sym_LT, - STATE(1399), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3371), 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(3369), 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, - [48614] = 22, - ACTIONS(35), 1, + [72259] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2899), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2695), 2, + STATE(2688), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -107457,11 +146265,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48692] = 3, + [72334] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1462), 12, + ACTIONS(1228), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -107474,14 +146282,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1460), 19, + ACTIONS(1226), 18, sym__lookback_semicolon, - anon_sym_COLON, + 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, + [72373] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1044), 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(1042), 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, @@ -107493,54 +146336,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [48732] = 22, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [72412] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2819), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(1686), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2884), 1, sym_identifier, - STATE(1633), 1, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(1585), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2720), 2, + STATE(1445), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1899), 9, sym__literal, sym_integer, sym_float, @@ -107550,53 +146391,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48810] = 22, - ACTIONS(35), 1, + [72487] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 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, + ACTIONS(776), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(778), 1, + anon_sym_this, + ACTIONS(780), 1, + anon_sym_new, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(363), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2681), 2, + STATE(172), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(564), 9, sym__literal, sym_integer, sym_float, @@ -107606,53 +146445,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48888] = 22, - ACTIONS(35), 1, + [72562] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(772), 1, + sym_escape_sequence, + ACTIONS(3979), 1, + sym_identifier, + ACTIONS(3981), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(3985), 1, + anon_sym_this, + ACTIONS(3987), 1, + aux_sym_string_token1, + ACTIONS(3989), 1, + aux_sym_string_token3, + ACTIONS(3991), 1, + sym_comment, + STATE(1827), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(678), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(682), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(774), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2689), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72633] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2905), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2882), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(1654), 1, sym_string, - STATE(2161), 1, + STATE(1689), 1, + sym_member_expression, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2699), 2, + STATE(1789), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1846), 9, sym__literal, sym_integer, sym_float, @@ -107662,53 +146551,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48966] = 22, - ACTIONS(35), 1, + [72708] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3035), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2841), 2, + STATE(2911), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -107718,53 +146605,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49044] = 22, - ACTIONS(362), 1, + [72783] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(2903), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3760), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + ACTIONS(3762), 1, + anon_sym_this, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(2444), 1, sym__lhs_expression, + STATE(2581), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2641), 2, + STATE(187), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2538), 9, sym__literal, sym_integer, sym_float, @@ -107774,53 +146659,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49122] = 22, - ACTIONS(35), 1, + [72858] = 6, + ACTIONS(3744), 1, + anon_sym_EQ_GT, + ACTIONS(4003), 1, + anon_sym_DOT, + ACTIONS(4005), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [72903] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2825), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2880), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(1655), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2691), 2, + STATE(172), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1901), 9, sym__literal, sym_integer, sym_float, @@ -107830,53 +146752,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49200] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [72978] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(382), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(576), 1, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(304), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2148), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3494), 2, sym__rhs_expression, sym_call_expression, - STATE(433), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -107886,53 +146806,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49278] = 22, - ACTIONS(35), 1, + [73053] = 6, + ACTIONS(3820), 1, + anon_sym_EQ_GT, + ACTIONS(4033), 1, + anon_sym_DOT, + ACTIONS(4035), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [73098] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2915), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(942), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3928), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(912), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2705), 2, + STATE(922), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(921), 9, sym__literal, sym_integer, sym_float, @@ -107942,13 +146899,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49356] = 4, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [73173] = 6, + ACTIONS(2988), 1, + anon_sym_DOT, + ACTIONS(2990), 1, + anon_sym_QMARK, + ACTIONS(3786), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1048), 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(1046), 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, + [73218] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 12, + ACTIONS(1030), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -107961,13 +146955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 18, + ACTIONS(1028), 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, @@ -107979,54 +146973,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [49398] = 22, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [73257] = 21, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(706), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2841), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(820), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(840), 1, sym_identifier, - STATE(1633), 1, + STATE(248), 1, sym__call, - STATE(1635), 1, + STATE(249), 1, sym__constructor_call, - STATE(1989), 1, + STATE(293), 1, sym_member_expression, - STATE(2035), 1, + STATE(366), 1, sym_string, - STATE(2161), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(2693), 2, + STATE(263), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(486), 9, sym__literal, sym_integer, sym_float, @@ -108036,53 +147028,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49476] = 22, - ACTIONS(35), 1, + [73332] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3772), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + ACTIONS(3774), 1, + anon_sym_this, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2739), 2, + STATE(1789), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2547), 9, sym__literal, sym_integer, sym_float, @@ -108092,53 +147082,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49554] = 22, - ACTIONS(35), 1, + [73407] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2921), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2851), 2, + STATE(3381), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -108148,53 +147136,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49632] = 22, - ACTIONS(35), 1, + [73482] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3327), 1, - anon_sym_LPAREN, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1540), 2, + STATE(3416), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -108204,53 +147190,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49710] = 22, - ACTIONS(35), 1, + [73557] = 19, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2925), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + STATE(1776), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(666), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73628] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(812), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(816), 1, + anon_sym_this, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(363), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2706), 2, + STATE(154), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(548), 9, sym__literal, sym_integer, sym_float, @@ -108260,53 +147296,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49788] = 22, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + [73703] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3071), 1, - sym_identifier, - ACTIONS(3073), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(261), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(1910), 1, + STATE(2312), 1, sym_member_expression, - STATE(1922), 1, + STATE(2395), 1, sym_string, - STATE(2181), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(3382), 2, sym__rhs_expression, sym_call_expression, - STATE(1937), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -108316,53 +147350,141 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49866] = 22, - ACTIONS(35), 1, + [73778] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2364), 1, + ACTIONS(776), 1, + sym_identifier, + ACTIONS(778), 1, + anon_sym_this, + ACTIONS(780), 1, + anon_sym_new, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(363), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(187), 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, + [73853] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1164), 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(1162), 18, sym__lookback_semicolon, - ACTIONS(3163), 1, + 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, + [73892] = 21, + ACTIONS(674), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(696), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, + aux_sym_string_token1, + ACTIONS(722), 1, + aux_sym_string_token3, + STATE(248), 1, sym__call, - STATE(1635), 1, + STATE(249), 1, sym__constructor_call, - STATE(1989), 1, + STATE(293), 1, sym_member_expression, - STATE(2035), 1, + STATE(366), 1, sym_string, - STATE(2161), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(2696), 2, + STATE(254), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(560), 9, sym__literal, sym_integer, sym_float, @@ -108372,53 +147494,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49944] = 22, - ACTIONS(362), 1, + [73967] = 21, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(696), 1, + sym_identifier, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(248), 1, sym__call, - STATE(1892), 1, + STATE(249), 1, + sym__constructor_call, + STATE(293), 1, sym_member_expression, - STATE(1926), 1, + STATE(366), 1, sym_string, - STATE(2179), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(263), 2, sym__rhs_expression, sym_call_expression, - STATE(1961), 9, + STATE(560), 9, sym__literal, sym_integer, sym_float, @@ -108428,53 +147548,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50022] = 22, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + [74042] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1168), 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(1166), 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, + [74081] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(540), 1, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(259), 1, - sym_member_expression, - STATE(261), 1, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(296), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2254), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(3302), 2, sym__rhs_expression, sym_call_expression, - STATE(480), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -108484,53 +147638,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50100] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [74156] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(528), 1, - anon_sym_RBRACE, - ACTIONS(552), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3373), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1395), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, + STATE(3355), 2, sym__rhs_expression, sym_call_expression, - STATE(1573), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -108540,53 +147692,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50178] = 22, - ACTIONS(35), 1, + [74231] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2939), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3634), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3770), 1, sym_identifier, - STATE(1633), 1, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2415), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2731), 2, + STATE(1445), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2562), 9, sym__literal, sym_integer, sym_float, @@ -108596,53 +147746,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50256] = 22, - ACTIONS(362), 1, + [74306] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(2879), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2758), 2, + STATE(3159), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -108652,53 +147800,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50334] = 22, - ACTIONS(35), 1, + [74381] = 21, + ACTIONS(1480), 1, + anon_sym_LBRACE, + ACTIONS(1492), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(1496), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1498), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1500), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1502), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1504), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1506), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1510), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1512), 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, + ACTIONS(2874), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1447), 1, sym_member_expression, - STATE(2035), 1, + STATE(1486), 1, sym_string, - STATE(2161), 1, + STATE(1529), 1, + sym__constructor_call, + STATE(1559), 1, + sym__call, + STATE(2436), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1508), 2, anon_sym_true, anon_sym_false, - STATE(2852), 2, + STATE(1515), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1517), 9, sym__literal, sym_integer, sym_float, @@ -108708,53 +147854,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50412] = 22, - ACTIONS(35), 1, + [74456] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2738), 2, + STATE(3164), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -108764,109 +147908,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50490] = 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(2887), 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, + [74531] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(2867), 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, - [50568] = 22, - ACTIONS(362), 1, + ACTIONS(1216), 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(1214), 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, + [74570] = 21, + ACTIONS(1248), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(3634), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3770), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1464), 1, sym__call, - STATE(1892), 1, + STATE(1465), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2415), 1, sym_string, - STATE(2179), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(1470), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2562), 9, sym__literal, sym_integer, sym_float, @@ -108876,53 +147998,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50646] = 22, - ACTIONS(35), 1, + [74645] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2863), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2865), 2, + STATE(3368), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -108932,53 +148052,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50724] = 22, - ACTIONS(35), 1, + [74720] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 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, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3764), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(3766), 1, + anon_sym_this, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2733), 2, + STATE(154), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2308), 9, sym__literal, sym_integer, sym_float, @@ -108988,53 +148106,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50802] = 22, - ACTIONS(35), 1, + [74795] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2851), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2864), 2, + STATE(3198), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -109044,53 +148160,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50880] = 22, - ACTIONS(35), 1, + [74870] = 21, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(706), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2831), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2868), 1, sym_identifier, - STATE(1633), 1, + STATE(248), 1, sym__call, - STATE(1635), 1, + STATE(249), 1, sym__constructor_call, - STATE(1989), 1, + STATE(293), 1, sym_member_expression, - STATE(2035), 1, + STATE(1302), 1, sym_string, - STATE(2161), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(2862), 2, + STATE(263), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1338), 9, sym__literal, sym_integer, sym_float, @@ -109100,53 +148214,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50958] = 22, - ACTIONS(35), 1, + [74945] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, - sym_identifier, - ACTIONS(3223), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3327), 1, - anon_sym_LPAREN, - STATE(1633), 1, + ACTIONS(3954), 1, + sym_identifier, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2262), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(1540), 2, + STATE(1470), 2, sym__rhs_expression, sym_call_expression, - STATE(2163), 9, + STATE(2342), 9, sym__literal, sym_integer, sym_float, @@ -109156,53 +148268,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51036] = 22, - ACTIONS(35), 1, + [75020] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2734), 2, + STATE(3365), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -109212,53 +148322,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51114] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [75095] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2919), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2701), 2, + STATE(3480), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -109268,17 +148376,13 @@ 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, + [75170] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 10, + ACTIONS(1088), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -109289,14 +148393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 18, - sym__closing_brace_marker, - anon_sym_COMMA, + ACTIONS(1086), 18, + anon_sym_STAR, + anon_sym_while, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -109306,55 +148409,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, - [51238] = 22, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [75209] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2889), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2807), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(912), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2858), 2, + STATE(154), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(919), 9, sym__literal, sym_integer, sym_float, @@ -109364,88 +148466,51 @@ 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, + [75284] = 21, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, - anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(2868), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(248), 1, sym__call, - STATE(1528), 1, + STATE(249), 1, + sym__constructor_call, + STATE(293), 1, + sym_member_expression, + STATE(1302), 1, sym_string, - STATE(2179), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, + STATE(254), 2, sym__rhs_expression, sym_call_expression, - STATE(1641), 9, + STATE(1338), 9, sym__literal, sym_integer, sym_float, @@ -109455,11 +148520,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51431] = 3, + [75359] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1542), 12, + ACTIONS(1092), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -109472,13 +148537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1540), 18, + ACTIONS(1090), 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, @@ -109490,52 +148555,52 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LBRACE, - ACTIONS(748), 1, + anon_sym_DOT_DOT_DOT, + [75398] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, - sym__call, - STATE(1266), 1, + STATE(1725), 1, sym__constructor_call, - STATE(2082), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1283), 2, + STATE(3253), 2, sym__rhs_expression, sym_call_expression, - STATE(1275), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -109545,90 +148610,51 @@ 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, - anon_sym_LBRACE, - ACTIONS(442), 1, + [75473] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(2435), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(259), 1, - sym_member_expression, - STATE(261), 1, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(1175), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2181), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, + STATE(3223), 2, sym__rhs_expression, sym_call_expression, - STATE(1198), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -109638,51 +148664,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51665] = 21, - ACTIONS(736), 1, + [75548] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(776), 1, + sym_identifier, + ACTIONS(778), 1, + anon_sym_this, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(754), 1, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(363), 1, + sym_string, + STATE(2444), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(154), 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, + [75623] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1892), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(1932), 1, + STATE(2395), 1, sym_string, - STATE(2082), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1283), 2, + STATE(3461), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -109692,49 +148772,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51740] = 19, - ACTIONS(362), 1, + [75698] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_this, - STATE(1557), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + ACTIONS(2880), 1, + sym_identifier, + STATE(147), 1, + sym__call, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(1655), 1, sym_string, + STATE(2444), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(154), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1901), 9, sym__literal, sym_integer, sym_float, @@ -109744,51 +148826,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51811] = 21, - ACTIONS(35), 1, + [75773] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2856), 2, + STATE(3163), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -109798,51 +148880,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51886] = 21, - ACTIONS(736), 1, + [75848] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1265), 1, + STATE(147), 1, sym__call, - STATE(1266), 1, + STATE(148), 1, sym__constructor_call, - STATE(1892), 1, + STATE(2207), 1, sym_member_expression, - STATE(1932), 1, + STATE(2213), 1, sym_string, - STATE(2082), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2278), 2, + STATE(695), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -109852,51 +148934,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51961] = 21, - ACTIONS(35), 1, + [75923] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, - sym_identifier, - ACTIONS(3223), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, anon_sym_this, - STATE(1633), 1, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1636), 2, + STATE(3357), 2, sym__rhs_expression, sym_call_expression, - STATE(2163), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -109906,51 +148988,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52036] = 21, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + [75998] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3071), 1, - sym_identifier, - ACTIONS(3073), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - STATE(261), 1, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(1910), 1, + STATE(2312), 1, sym_member_expression, - STATE(1922), 1, + STATE(2395), 1, sym_string, - STATE(2181), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, + STATE(3308), 2, sym__rhs_expression, sym_call_expression, - STATE(1937), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -109960,51 +149042,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52111] = 21, - ACTIONS(430), 1, + [76073] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3253), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3632), 1, sym_identifier, - ACTIONS(3255), 1, + ACTIONS(3634), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + STATE(147), 1, sym__call, - STATE(1910), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1922), 1, + STATE(2213), 1, sym_string, - STATE(2181), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, + STATE(187), 2, sym__rhs_expression, sym_call_expression, - STATE(2010), 9, + STATE(2223), 9, sym__literal, sym_integer, sym_float, @@ -110014,51 +149096,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52186] = 21, - ACTIONS(430), 1, + [76148] = 21, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(706), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(708), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(710), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(712), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(714), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(716), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(722), 1, aux_sym_string_token3, - ACTIONS(3071), 1, - sym_identifier, - ACTIONS(3073), 1, + ACTIONS(820), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + ACTIONS(840), 1, + sym_identifier, + STATE(248), 1, sym__call, - STATE(1910), 1, + STATE(249), 1, + sym__constructor_call, + STATE(293), 1, sym_member_expression, - STATE(1922), 1, + STATE(366), 1, sym_string, - STATE(2181), 1, + STATE(2615), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, + STATE(464), 2, sym__rhs_expression, sym_call_expression, - STATE(1937), 9, + STATE(486), 9, sym__literal, sym_integer, sym_float, @@ -110068,87 +149150,51 @@ 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, + [76223] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2862), 2, + STATE(3236), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -110158,11 +149204,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52375] = 3, + [76298] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1454), 12, + ACTIONS(1220), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -110175,13 +149221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1452), 18, + ACTIONS(1218), 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, @@ -110193,50 +149239,50 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_DOT_DOT_DOT, + [76337] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(3387), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_this, - ACTIONS(3391), 1, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(3393), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3395), 1, - sym_comment, - STATE(1482), 1, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1776), 1, aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, + STATE(2181), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 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(686), 2, anon_sym_true, anon_sym_false, - ACTIONS(470), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2300), 9, + ACTIONS(764), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2721), 9, sym__literal, sym_integer, sym_float, @@ -110246,87 +149292,51 @@ 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, - anon_sym_LBRACE, - ACTIONS(374), 1, + [76408] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2701), 2, + STATE(3495), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -110336,51 +149346,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52599] = 21, - ACTIONS(35), 1, + [76483] = 21, + ACTIONS(1480), 1, + anon_sym_LBRACE, + ACTIONS(1492), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1494), 1, + anon_sym_this, + ACTIONS(1496), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1498), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1500), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1502), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1504), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1506), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1510), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1512), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2874), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1447), 1, sym_member_expression, - STATE(2035), 1, + STATE(1486), 1, sym_string, - STATE(2161), 1, + STATE(1529), 1, + sym__constructor_call, + STATE(1559), 1, + sym__call, + STATE(2436), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1508), 2, anon_sym_true, anon_sym_false, - STATE(2864), 2, + STATE(1516), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1517), 9, sym__literal, sym_integer, sym_float, @@ -110390,51 +149400,51 @@ 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, - anon_sym_LBRACE, - ACTIONS(748), 1, + [76558] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, - sym__call, - STATE(1266), 1, + STATE(1725), 1, sym__constructor_call, - STATE(2082), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1298), 2, + STATE(3169), 2, sym__rhs_expression, sym_call_expression, - STATE(1275), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -110444,11 +149454,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52749] = 3, + [76633] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1570), 12, + ACTIONS(1058), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -110461,13 +149471,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1568), 18, + ACTIONS(1056), 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, + [76672] = 5, + ACTIONS(4039), 1, + anon_sym_RPAREN, + STATE(1952), 1, + aux_sym_variable_declaration_repeat2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4042), 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(4037), 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, @@ -110479,52 +149527,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [52788] = 21, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [76715] = 21, + ACTIONS(942), 1, + anon_sym_this, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_new, + ACTIONS(1266), 1, + anon_sym_null, + ACTIONS(1268), 1, + aux_sym_integer_token1, + ACTIONS(1270), 1, + aux_sym_integer_token2, + ACTIONS(1272), 1, + aux_sym_float_token1, + ACTIONS(1274), 1, + aux_sym_float_token2, + ACTIONS(1278), 1, + aux_sym_string_token1, + ACTIONS(1280), 1, + aux_sym_string_token3, + ACTIONS(4044), 1, + sym_identifier, + STATE(1378), 1, + sym_member_expression, + STATE(1464), 1, + sym__call, + STATE(1465), 1, + sym__constructor_call, + STATE(1466), 1, + sym_string, + STATE(2578), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1276), 2, + anon_sym_true, + anon_sym_false, + STATE(1481), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1548), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [76790] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(780), 1, anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(3624), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3926), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(147), 1, sym__call, - STATE(1892), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, sym_member_expression, - STATE(1926), 1, + STATE(2408), 1, sym_string, - STATE(2179), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2345), 2, + STATE(154), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2591), 9, sym__literal, sym_integer, sym_float, @@ -110534,51 +149636,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52863] = 21, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [76865] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(382), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(576), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(304), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2148), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, + STATE(3366), 2, sym__rhs_expression, sym_call_expression, - STATE(433), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -110588,51 +149690,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52938] = 21, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(954), 1, + [76940] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(958), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(960), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(962), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(964), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(968), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(972), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(974), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2439), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, sym_identifier, - STATE(1207), 1, - sym_string, - STATE(1212), 1, - sym_member_expression, - STATE(1276), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1277), 1, + STATE(1951), 1, sym__call, - STATE(2279), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1224), 2, + STATE(3373), 2, sym__rhs_expression, sym_call_expression, - STATE(1227), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -110642,51 +149744,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53013] = 21, - ACTIONS(35), 1, + [77015] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2865), 2, + STATE(3380), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -110696,51 +149798,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53088] = 21, - ACTIONS(942), 1, + [77090] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(958), 1, - anon_sym_new, - ACTIONS(960), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(962), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(964), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(968), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(972), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(974), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2439), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1614), 1, + anon_sym_this, + ACTIONS(2878), 1, sym_identifier, - STATE(1207), 1, - sym_string, - STATE(1212), 1, - sym_member_expression, - STATE(1276), 1, - sym__constructor_call, - STATE(1277), 1, + STATE(147), 1, sym__call, - STATE(2279), 1, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, + sym_member_expression, + STATE(1737), 1, + sym_string, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1244), 2, + STATE(187), 2, sym__rhs_expression, sym_call_expression, - STATE(1227), 9, + STATE(1748), 9, sym__literal, sym_integer, sym_float, @@ -110750,11 +149852,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53163] = 3, + [77165] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1450), 12, + ACTIONS(1120), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -110767,49 +149869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1448), 18, + ACTIONS(1118), 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, @@ -110821,50 +149887,52 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LBRACE, - ACTIONS(3387), 1, + anon_sym_DOT_DOT_DOT, + [77204] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_this, - ACTIONS(3391), 1, - aux_sym_string_token1, - ACTIONS(3393), 1, - aux_sym_string_token3, - ACTIONS(3395), 1, - sym_comment, - 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(384), 2, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym_integer_token1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 2, + ACTIONS(89), 1, aux_sym_float_token1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(392), 2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 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(3408), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -110874,51 +149942,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53312] = 21, - ACTIONS(35), 1, + [77279] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2694), 2, + STATE(3415), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -110928,51 +149996,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53387] = 21, - ACTIONS(430), 1, + [77354] = 21, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3255), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + ACTIONS(2870), 1, + sym_identifier, + STATE(147), 1, sym__call, - STATE(1910), 1, + STATE(148), 1, + sym__constructor_call, + STATE(150), 1, sym_member_expression, - STATE(1922), 1, + STATE(1308), 1, sym_string, - STATE(2181), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, + STATE(172), 2, sym__rhs_expression, sym_call_expression, - STATE(2010), 9, + STATE(1355), 9, sym__literal, sym_integer, sym_float, @@ -110982,51 +150050,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53462] = 21, - ACTIONS(35), 1, + [77429] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2849), 2, + STATE(3128), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -111036,51 +150104,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53537] = 21, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [77504] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(382), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(576), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(304), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2148), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(663), 2, + STATE(3449), 2, sym__rhs_expression, sym_call_expression, - STATE(433), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -111090,51 +150158,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53612] = 21, - ACTIONS(35), 1, + [77579] = 21, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1260), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1264), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1266), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1268), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1270), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1272), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1274), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1278), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1280), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3766), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3842), 1, sym_identifier, - STATE(1633), 1, + STATE(1464), 1, sym__call, - STATE(1635), 1, + STATE(1465), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2207), 1, sym_member_expression, - STATE(2035), 1, + STATE(2415), 1, sym_string, - STATE(2161), 1, + STATE(2578), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1276), 2, anon_sym_true, anon_sym_false, - STATE(2867), 2, + STATE(1470), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2557), 9, sym__literal, sym_integer, sym_float, @@ -111144,51 +150212,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53687] = 21, - ACTIONS(430), 1, + [77654] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(538), 1, - anon_sym_this, - ACTIONS(540), 1, + ACTIONS(3724), 1, sym_identifier, - ACTIONS(546), 1, - anon_sym_new, - STATE(259), 1, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1776), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + STATE(2213), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(768), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2721), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [77725] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(3784), 1, + sym_identifier, + STATE(147), 1, sym__call, - STATE(296), 1, + STATE(148), 1, + sym__constructor_call, + STATE(2207), 1, + sym_member_expression, + STATE(2213), 1, sym_string, - STATE(2254), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, + STATE(3098), 2, sym__rhs_expression, sym_call_expression, - STATE(480), 9, + STATE(2239), 9, sym__literal, sym_integer, sym_float, @@ -111198,49 +150318,51 @@ 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, + [77800] = 21, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(696), 1, sym_identifier, - ACTIONS(3400), 1, + ACTIONS(702), 1, anon_sym_LBRACE, - ACTIONS(3403), 1, + ACTIONS(704), 1, anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_this, - ACTIONS(3409), 1, + ACTIONS(706), 1, + anon_sym_new, + ACTIONS(708), 1, + anon_sym_null, + ACTIONS(710), 1, + aux_sym_integer_token1, + ACTIONS(712), 1, + aux_sym_integer_token2, + ACTIONS(714), 1, + aux_sym_float_token1, + ACTIONS(716), 1, + aux_sym_float_token2, + ACTIONS(720), 1, aux_sym_string_token1, - ACTIONS(3412), 1, + ACTIONS(722), 1, aux_sym_string_token3, - STATE(1482), 1, - aux_sym_member_expression_repeat1, - STATE(1876), 1, + STATE(248), 1, + sym__call, + STATE(249), 1, + sym__constructor_call, + STATE(293), 1, sym_member_expression, - STATE(1877), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(366), 1, sym_string, - ACTIONS(497), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(503), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(509), 2, + STATE(2615), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(718), 2, anon_sym_true, anon_sym_false, - ACTIONS(483), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2300), 9, + STATE(291), 2, + sym__rhs_expression, + sym_call_expression, + STATE(560), 9, sym__literal, sym_integer, sym_float, @@ -111250,49 +150372,51 @@ static const uint16_t ts_small_parse_table[] = { 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, + [77875] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_this, - ACTIONS(3391), 1, - aux_sym_string_token1, - ACTIONS(3393), 1, - aux_sym_string_token3, - ACTIONS(3395), 1, - sym_comment, - 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(384), 2, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym_integer_token1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 2, + ACTIONS(89), 1, aux_sym_float_token1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(392), 2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_this, + ACTIONS(3868), 1, + sym_identifier, + STATE(1725), 1, + sym__constructor_call, + STATE(1951), 1, + sym__call, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, + sym_string, + STATE(2461), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 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(3472), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -111302,51 +150426,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53904] = 21, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + [77950] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(540), 1, + ACTIONS(3868), 1, sym_identifier, - ACTIONS(546), 1, - anon_sym_new, - STATE(259), 1, - sym_member_expression, - STATE(261), 1, + STATE(1725), 1, sym__constructor_call, - STATE(262), 1, + STATE(1951), 1, sym__call, - STATE(296), 1, + STATE(2312), 1, + sym_member_expression, + STATE(2395), 1, sym_string, - STATE(2254), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(281), 2, + STATE(3451), 2, sym__rhs_expression, sym_call_expression, - STATE(480), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -111356,51 +150480,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53979] = 21, - ACTIONS(35), 1, + [78025] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1364), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, + STATE(1725), 1, sym__constructor_call, - STATE(1989), 1, + STATE(1951), 1, + sym__call, + STATE(2312), 1, sym_member_expression, - STATE(2035), 1, + STATE(2395), 1, sym_string, - STATE(2161), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2777), 2, + STATE(3389), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -111410,51 +150534,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54054] = 21, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [78100] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1364), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3868), 1, sym_identifier, - STATE(224), 1, + STATE(1725), 1, sym__constructor_call, - STATE(226), 1, + STATE(1951), 1, sym__call, - STATE(1892), 1, + STATE(2312), 1, sym_member_expression, - STATE(1926), 1, + STATE(2395), 1, sym_string, - STATE(2179), 1, + STATE(2461), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2758), 2, + STATE(3487), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2484), 9, sym__literal, sym_integer, sym_float, @@ -111464,51 +150588,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54129] = 21, - ACTIONS(35), 1, + [78175] = 21, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(780), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2870), 1, sym_identifier, - STATE(1633), 1, + STATE(147), 1, sym__call, - STATE(1635), 1, + STATE(148), 1, sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, sym_member_expression, - STATE(2035), 1, + STATE(1308), 1, sym_string, - STATE(2161), 1, + STATE(2444), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2852), 2, + STATE(154), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1355), 9, sym__literal, sym_integer, sym_float, @@ -111518,51 +150642,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54204] = 21, - ACTIONS(362), 1, + [78250] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(552), 1, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3193), 1, + ACTIONS(4046), 1, sym_identifier, - STATE(201), 1, + STATE(969), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1204), 1, - sym_string, - STATE(2179), 1, + STATE(1979), 1, sym__lhs_expression, + STATE(1980), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1325), 9, + ACTIONS(772), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -111572,13 +150693,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54279] = 3, + [78320] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1446), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4050), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -111589,13 +150708,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1444), 18, + ACTIONS(4048), 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, @@ -111607,104 +150727,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [54318] = 19, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT, + [78358] = 6, + ACTIONS(2992), 1, + anon_sym_DOT, + ACTIONS(2994), 1, + anon_sym_QMARK, + ACTIONS(3650), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(522), 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, - aux_sym_string_token1, - ACTIONS(3393), 1, - aux_sym_string_token3, - ACTIONS(3395), 1, sym_comment, - 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(384), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(388), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(524), 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, - [54389] = 21, - ACTIONS(35), 1, + ACTIONS(1048), 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(1046), 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, + [78402] = 19, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4046), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1979), 1, sym__lhs_expression, + STATE(1980), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2693), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + ACTIONS(764), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -111714,51 +150817,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54464] = 21, - ACTIONS(35), 1, + [78472] = 19, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4046), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1979), 1, sym__lhs_expression, + STATE(1980), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2851), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + ACTIONS(666), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -111768,51 +150868,83 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54539] = 21, - ACTIONS(362), 1, + [78542] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 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(1114), 17, + 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_LT, + anon_sym_GT, + anon_sym_EQ, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [78580] = 19, + ACTIONS(731), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(734), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(740), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(743), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(746), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(749), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(752), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(758), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(761), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3217), 1, + ACTIONS(4052), 1, sym_identifier, - ACTIONS(3219), 1, + ACTIONS(4055), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(1979), 1, sym__lhs_expression, + STATE(1980), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(755), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1961), 9, + ACTIONS(727), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -111822,51 +150954,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54614] = 21, - ACTIONS(35), 1, + [78650] = 19, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4046), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1979), 1, sym__lhs_expression, + STATE(1980), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2696), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + ACTIONS(768), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -111876,105 +151005,182 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54689] = 21, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, + [78720] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4060), 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(4058), 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, + [78758] = 4, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 11, + anon_sym_in, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + 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(394), 1, aux_sym_string_token1, - ACTIONS(396), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, + [78796] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 11, + anon_sym_in, anon_sym_this, - ACTIONS(2441), 1, + 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, 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, + ACTIONS(1050), 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, + aux_sym_string_token1, + aux_sym_string_token3, + [78832] = 4, + ACTIONS(4062), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(931), 12, + anon_sym_in, + 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(207), 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, - [54764] = 21, - ACTIONS(362), 1, + sym_identifier, + ACTIONS(928), 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, + [78870] = 19, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3217), 1, + ACTIONS(3890), 1, sym_identifier, - ACTIONS(3219), 1, + ACTIONS(3892), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4064), 1, + anon_sym_RPAREN, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, + STATE(2309), 1, sym__lhs_expression, + STATE(2854), 1, + sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1961), 9, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -111984,103 +151190,112 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54839] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, + [78938] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 11, + anon_sym_in, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1114), 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(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(1557), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [78974] = 5, + ACTIONS(4070), 1, + anon_sym_EQ, + STATE(193), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(4066), 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, - ACTIONS(466), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [54910] = 21, - ACTIONS(35), 1, + sym_identifier, + ACTIONS(4068), 14, + anon_sym_DOT, + 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_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [79014] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(864), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(1438), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(815), 1, + aux_sym_member_expression_repeat1, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2706), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2741), 9, sym__literal, sym_integer, sym_float, @@ -112090,51 +151305,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54985] = 21, - ACTIONS(362), 1, + [79079] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1614), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2900), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, sym_member_expression, - STATE(1926), 1, + STATE(868), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2668), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2753), 9, sym__literal, sym_integer, sym_float, @@ -112144,51 +151352,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55060] = 21, - ACTIONS(362), 1, + [79144] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(3762), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3852), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1544), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2620), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -112198,51 +151399,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55135] = 21, - ACTIONS(430), 1, + [79209] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(3762), 1, anon_sym_this, - ACTIONS(2435), 1, + ACTIONS(3852), 1, sym_identifier, - STATE(259), 1, + STATE(1546), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1175), 1, - sym_string, - STATE(2181), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(281), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1198), 9, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -112252,159 +151446,44 @@ 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, + [79274] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3762), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3852), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1547), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2846), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -112414,90 +151493,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, + [79339] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(3766), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3788), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1428), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2447), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2752), 9, sym__literal, sym_integer, sym_float, @@ -112507,51 +151540,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55522] = 21, - ACTIONS(362), 1, + [79404] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(4072), 1, + anon_sym_new, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, + STATE(2470), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2608), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -112561,87 +151587,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, + [79469] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(1275), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2487), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -112651,87 +151634,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55711] = 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), 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, + [79534] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1686), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2922), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(850), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(879), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2825), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2754), 9, sym__literal, sym_integer, sym_float, @@ -112741,51 +151681,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55825] = 21, - ACTIONS(35), 1, + [79599] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3638), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3654), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1297), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2691), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2756), 9, sym__literal, sym_integer, sym_float, @@ -112795,51 +151728,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55900] = 21, - ACTIONS(362), 1, + [79664] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3638), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3654), 1, + sym_identifier, + STATE(1300), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1980), 9, + STATE(2756), 9, sym__literal, sym_integer, sym_float, @@ -112849,51 +151775,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55975] = 21, - ACTIONS(736), 1, + [79729] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(3638), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(3654), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(1301), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(1932), 1, - sym_string, - STATE(2082), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2104), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2756), 9, sym__literal, sym_integer, sym_float, @@ -112903,51 +151822,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56050] = 21, - ACTIONS(35), 1, + [79794] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, + ACTIONS(3762), 1, anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(3852), 1, sym_identifier, - STATE(1362), 1, + STATE(1543), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(1384), 1, - sym_string, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(2161), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1544), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1506), 9, + STATE(2755), 9, sym__literal, sym_integer, sym_float, @@ -112957,51 +151869,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56125] = 21, - ACTIONS(362), 1, + [79859] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(3716), 1, sym_identifier, - STATE(201), 1, + ACTIONS(3718), 1, + anon_sym_this, + STATE(1360), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, - sym_string, - STATE(2179), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1449), 9, + STATE(2757), 9, sym__literal, sym_integer, sym_float, @@ -113011,87 +151916,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, + [79924] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(538), 1, - anon_sym_this, - ACTIONS(540), 1, + ACTIONS(3716), 1, sym_identifier, - ACTIONS(546), 1, - anon_sym_new, - STATE(259), 1, + ACTIONS(3718), 1, + anon_sym_this, + STATE(1362), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, - sym_string, - STATE(2254), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, - sym__rhs_expression, - sym_call_expression, - STATE(480), 9, + STATE(2757), 9, sym__literal, sym_integer, sym_float, @@ -113101,51 +151963,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56314] = 21, - ACTIONS(35), 1, + [79989] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3716), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3718), 1, + anon_sym_this, + STATE(1310), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2841), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2757), 9, sym__literal, sym_integer, sym_float, @@ -113155,51 +152010,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56389] = 21, - ACTIONS(362), 1, + [80054] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(3638), 1, anon_sym_this, - ACTIONS(3321), 1, + ACTIONS(3654), 1, sym_identifier, - STATE(201), 1, + STATE(1293), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, - sym_string, - STATE(2148), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(769), 9, + STATE(2756), 9, sym__literal, sym_integer, sym_float, @@ -113209,51 +152057,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56464] = 21, - ACTIONS(430), 1, + [80119] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(3167), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(259), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1175), 1, - sym_string, - STATE(2181), 1, + STATE(1276), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(281), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1214), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -113263,51 +152104,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56539] = 21, - ACTIONS(362), 1, + [80184] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(912), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2908), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(872), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2866), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2758), 9, sym__literal, sym_integer, sym_float, @@ -113317,51 +152151,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56614] = 21, - ACTIONS(35), 1, + [80249] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(912), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2908), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(874), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2681), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2758), 9, sym__literal, sym_integer, sym_float, @@ -113371,51 +152198,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56689] = 21, - ACTIONS(362), 1, + [80314] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2374), 1, + ACTIONS(2956), 1, sym_identifier, - STATE(201), 1, + STATE(907), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, - sym_string, - STATE(2148), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(767), 9, + STATE(2782), 9, sym__literal, sym_integer, sym_float, @@ -113425,51 +152245,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56764] = 21, - ACTIONS(362), 1, + [80379] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(912), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2908), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(875), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2663), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2758), 9, sym__literal, sym_integer, sym_float, @@ -113479,51 +152292,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56839] = 21, - ACTIONS(362), 1, + [80444] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(3321), 1, + ACTIONS(3716), 1, sym_identifier, - STATE(201), 1, + ACTIONS(3718), 1, + anon_sym_this, + STATE(1359), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, - sym_string, - STATE(2148), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(770), 2, - sym__rhs_expression, - sym_call_expression, - STATE(769), 9, + STATE(2757), 9, sym__literal, sym_integer, sym_float, @@ -113533,88 +152339,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56914] = 4, - ACTIONS(3419), 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), 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, + [80509] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(912), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2908), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(871), 1, + aux_sym_member_expression_repeat1, + STATE(1022), 1, + sym__lhs_expression, + STATE(1029), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2369), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2758), 9, sym__literal, sym_integer, sym_float, @@ -113624,51 +152386,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57030] = 21, - ACTIONS(362), 1, + [80574] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(3321), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(201), 1, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(4074), 1, + anon_sym_new, + STATE(969), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, + STATE(2213), 1, sym_string, - STATE(2148), 1, + STATE(2458), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(769), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -113678,51 +152433,79 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57105] = 21, - ACTIONS(430), 1, + [80639] = 6, + ACTIONS(4076), 1, + anon_sym_DOT, + ACTIONS(4078), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1132), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1050), 11, + sym__closing_brace_marker, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(442), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + anon_sym_DASH_GT, + anon_sym_LT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1054), 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, + [80680] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(538), 1, - anon_sym_this, - ACTIONS(2435), 1, + ACTIONS(2930), 1, sym_identifier, - STATE(259), 1, + ACTIONS(2932), 1, + anon_sym_this, + STATE(889), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1175), 1, - sym_string, - STATE(2181), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1198), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -113732,51 +152515,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, + [80745] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(816), 1, + anon_sym_this, + ACTIONS(876), 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(129), 1, + aux_sym_member_expression_repeat1, + STATE(166), 1, sym__lhs_expression, + STATE(500), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1304), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1275), 9, + STATE(2737), 9, sym__literal, sym_integer, sym_float, @@ -113786,51 +152562,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57255] = 21, - ACTIONS(362), 1, + [80810] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3244), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3246), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(1038), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2466), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2646), 9, sym__literal, sym_integer, sym_float, @@ -113840,51 +152609,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57330] = 21, - ACTIONS(736), 1, + [80875] = 18, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3169), 1, - sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(92), 1, + aux_sym_member_expression_repeat1, + STATE(295), 1, sym_member_expression, - STATE(1932), 1, - sym_string, - STATE(2082), 1, + STATE(296), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1283), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1992), 9, + STATE(2751), 9, sym__literal, sym_integer, sym_float, @@ -113894,87 +152656,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, + [80940] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(958), 1, - anon_sym_new, - ACTIONS(960), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(962), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(964), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(968), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(972), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(974), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2439), 1, + ACTIONS(2956), 1, sym_identifier, - STATE(1207), 1, - sym_string, - STATE(1212), 1, + STATE(904), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(1276), 1, - sym__constructor_call, - STATE(1277), 1, - sym__call, - STATE(2279), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1323), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1227), 9, + STATE(2782), 9, sym__literal, sym_integer, sym_float, @@ -113984,51 +152703,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57519] = 21, - ACTIONS(35), 1, + [81005] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1272), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2720), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -114038,51 +152750,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57594] = 21, - ACTIONS(362), 1, + [81070] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3979), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3985), 1, + anon_sym_this, + STATE(1790), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2759), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -114092,51 +152797,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57669] = 21, - ACTIONS(736), 1, + [81135] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3169), 1, + ACTIONS(3979), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + ACTIONS(3985), 1, + anon_sym_this, + STATE(1829), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, sym_member_expression, - STATE(1932), 1, + STATE(2213), 1, sym_string, - STATE(2082), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1298), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1992), 9, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -114146,87 +152844,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, + [81200] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(576), 1, + ACTIONS(3979), 1, sym_identifier, - STATE(201), 1, + ACTIONS(3985), 1, + anon_sym_this, + STATE(1892), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, + STATE(2213), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(433), 9, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -114236,51 +152891,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57858] = 21, - ACTIONS(35), 1, + [81265] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2930), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(2932), 1, + anon_sym_this, + STATE(885), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2672), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -114290,51 +152938,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57933] = 21, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(37), 1, + [81330] = 18, + ACTIONS(41), 1, anon_sym_this, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3319), 1, + ACTIONS(2956), 1, sym_identifier, - STATE(1362), 1, + STATE(897), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(1384), 1, - sym_string, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(2161), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1459), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1589), 9, + STATE(2782), 9, sym__literal, sym_integer, sym_float, @@ -114344,87 +152985,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, + [81395] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(548), 1, + ACTIONS(3244), 1, sym_identifier, - STATE(201), 1, + ACTIONS(3246), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, + STATE(1040), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(488), 9, + STATE(2646), 9, sym__literal, sym_integer, sym_float, @@ -114434,51 +153032,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58122] = 21, - ACTIONS(35), 1, + [81460] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2930), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(2932), 1, + anon_sym_this, + STATE(887), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2686), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -114488,51 +153079,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58197] = 21, - ACTIONS(35), 1, + [81525] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(816), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(876), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(125), 1, + aux_sym_member_expression_repeat1, + STATE(166), 1, + sym__lhs_expression, + STATE(500), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2884), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2737), 9, sym__literal, sym_integer, sym_float, @@ -114542,51 +153126,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58272] = 21, - ACTIONS(362), 1, + [81590] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(472), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(2374), 1, - sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, - sym_string, - STATE(2148), 1, + ACTIONS(2898), 1, + sym_identifier, + STATE(882), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, + sym_member_expression, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(767), 9, + STATE(2738), 9, sym__literal, sym_integer, sym_float, @@ -114596,51 +153173,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58347] = 21, - ACTIONS(362), 1, + [81655] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, + ACTIONS(1574), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(2898), 1, + sym_identifier, + STATE(876), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1980), 9, + STATE(2738), 9, sym__literal, sym_integer, sym_float, @@ -114650,51 +153220,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58422] = 21, - ACTIONS(362), 1, + [81720] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(2441), 1, + ACTIONS(2898), 1, sym_identifier, - STATE(201), 1, + STATE(877), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1204), 1, - sym_string, - STATE(2179), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1307), 9, + STATE(2738), 9, sym__literal, sym_integer, sym_float, @@ -114704,87 +153267,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, + [81785] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2930), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(2932), 1, + anon_sym_this, + STATE(890), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2547), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -114794,51 +153314,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58611] = 21, - ACTIONS(736), 1, + [81850] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(816), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(876), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(126), 1, + aux_sym_member_expression_repeat1, + STATE(166), 1, + sym__lhs_expression, + STATE(500), 1, sym_member_expression, - STATE(1932), 1, + STATE(2213), 1, sym_string, - STATE(2082), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2088), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2737), 9, sym__literal, sym_integer, sym_float, @@ -114848,51 +153361,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58686] = 21, - ACTIONS(362), 1, + [81915] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3979), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3985), 1, + anon_sym_this, + STATE(1759), 1, + aux_sym_member_expression_repeat1, + STATE(2196), 1, + sym__lhs_expression, + STATE(2200), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2307), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -114902,51 +153408,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58761] = 21, - ACTIONS(362), 1, + [81980] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, + ACTIONS(894), 1, anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(2815), 1, sym_identifier, - STATE(201), 1, + STATE(828), 1, + aux_sym_member_expression_repeat1, + STATE(909), 1, + sym__lhs_expression, + STATE(910), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1641), 9, + STATE(2740), 9, sym__literal, sym_integer, sym_float, @@ -114956,51 +153455,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58836] = 21, - ACTIONS(362), 1, + [82045] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(894), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2815), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(826), 1, + aux_sym_member_expression_repeat1, + STATE(909), 1, + sym__lhs_expression, + STATE(910), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2872), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2740), 9, sym__literal, sym_integer, sym_float, @@ -115010,49 +153502,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58911] = 19, - ACTIONS(485), 1, + [82110] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3426), 1, + ACTIONS(2956), 1, sym_identifier, - ACTIONS(3429), 1, - anon_sym_this, - STATE(1557), 1, + STATE(906), 1, aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(960), 1, sym_member_expression, - STATE(1865), 1, + STATE(967), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(686), 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(2782), 9, sym__literal, sym_integer, sym_float, @@ -115062,51 +153549,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58982] = 21, - ACTIONS(362), 1, + [82175] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(894), 1, anon_sym_this, - ACTIONS(3353), 1, + ACTIONS(2815), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(825), 1, + aux_sym_member_expression_repeat1, + STATE(909), 1, + sym__lhs_expression, + STATE(910), 1, sym_member_expression, - STATE(2007), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2809), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2246), 9, + STATE(2740), 9, sym__literal, sym_integer, sym_float, @@ -115116,51 +153596,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59057] = 21, - ACTIONS(362), 1, + [82240] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3147), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(3199), 1, + ACTIONS(2898), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(865), 1, + aux_sym_member_expression_repeat1, + STATE(960), 1, sym_member_expression, - STATE(2007), 1, - sym_string, - STATE(2179), 1, + STATE(967), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2122), 9, + STATE(2738), 9, sym__literal, sym_integer, sym_float, @@ -115170,51 +153643,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59132] = 21, - ACTIONS(736), 1, + [82305] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(4080), 1, + anon_sym_new, + STATE(969), 1, sym_member_expression, - STATE(1932), 1, + STATE(2213), 1, sym_string, - STATE(2082), 1, + STATE(2490), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2075), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -115224,51 +153690,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59207] = 21, - ACTIONS(362), 1, + [82370] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(548), 1, + ACTIONS(864), 1, sym_identifier, - STATE(201), 1, + ACTIONS(1438), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(814), 1, + aux_sym_member_expression_repeat1, + STATE(850), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, + STATE(2213), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(488), 9, + STATE(2741), 9, sym__literal, sym_integer, sym_float, @@ -115278,51 +153737,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59282] = 21, - ACTIONS(362), 1, + [82435] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2441), 1, + ACTIONS(864), 1, sym_identifier, - STATE(201), 1, + ACTIONS(1438), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(816), 1, + aux_sym_member_expression_repeat1, + STATE(850), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1204), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1307), 9, + STATE(2741), 9, sym__literal, sym_integer, sym_float, @@ -115332,51 +153784,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59357] = 21, - ACTIONS(35), 1, + [82500] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(4082), 1, + anon_sym_new, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, + STATE(2494), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2805), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -115386,51 +153831,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59432] = 21, - ACTIONS(362), 1, + [82565] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3189), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3191), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4084), 1, + anon_sym_new, + STATE(969), 1, sym_member_expression, - STATE(2179), 1, - sym__lhs_expression, - STATE(2256), 1, + STATE(2213), 1, sym_string, + STATE(2502), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2205), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -115440,87 +153878,44 @@ 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, + [82630] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(894), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2815), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(827), 1, + aux_sym_member_expression_repeat1, + STATE(909), 1, + sym__lhs_expression, + STATE(910), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2596), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2740), 9, sym__literal, sym_integer, sym_float, @@ -115530,87 +153925,44 @@ 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, + [82695] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3432), 1, + ACTIONS(818), 1, sym_identifier, - STATE(1208), 1, - sym_string, - STATE(1210), 1, + ACTIONS(820), 1, + anon_sym_this, + STATE(102), 1, + aux_sym_member_expression_repeat1, + STATE(295), 1, sym_member_expression, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(2082), 1, + STATE(296), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1304), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1269), 9, + STATE(2742), 9, sym__literal, sym_integer, sym_float, @@ -115620,51 +153972,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59735] = 21, - ACTIONS(362), 1, + [82760] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(818), 1, sym_identifier, - STATE(201), 1, + ACTIONS(820), 1, + anon_sym_this, + STATE(104), 1, + aux_sym_member_expression_repeat1, + STATE(295), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, - sym_string, - STATE(2179), 1, + STATE(296), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1449), 9, + STATE(2742), 9, sym__literal, sym_integer, sym_float, @@ -115674,51 +154019,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59810] = 21, - ACTIONS(35), 1, + [82825] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(818), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(820), 1, + anon_sym_this, + STATE(105), 1, + aux_sym_member_expression_repeat1, + STATE(295), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(296), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2855), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2742), 9, sym__literal, sym_integer, sym_float, @@ -115728,51 +154066,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59885] = 21, - ACTIONS(35), 1, + [82890] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(816), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(876), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(128), 1, + aux_sym_member_expression_repeat1, + STATE(166), 1, + sym__lhs_expression, + STATE(500), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2774), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2737), 9, sym__literal, sym_integer, sym_float, @@ -115782,180 +154113,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59960] = 21, - ACTIONS(35), 1, + [82955] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(864), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(1438), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(813), 1, + aux_sym_member_expression_repeat1, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2753), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2741), 9, sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - 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, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [83020] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1494), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2886), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(862), 1, + aux_sym_member_expression_repeat1, + STATE(946), 1, + sym__lhs_expression, + STATE(951), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2739), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2743), 9, sym__literal, sym_integer, sym_float, @@ -115965,87 +154207,44 @@ 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, + [83085] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1494), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2886), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(859), 1, + aux_sym_member_expression_repeat1, + STATE(946), 1, + sym__lhs_expression, + STATE(951), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2738), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2743), 9, sym__literal, sym_integer, sym_float, @@ -116055,51 +154254,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60308] = 21, - ACTIONS(430), 1, + [83150] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(560), 1, - sym_identifier, - ACTIONS(566), 1, + ACTIONS(3766), 1, anon_sym_this, - STATE(259), 1, + ACTIONS(3788), 1, + sym_identifier, + STATE(1425), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, - sym_string, - STATE(2254), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(281), 2, - sym__rhs_expression, - sym_call_expression, - STATE(416), 9, + STATE(2752), 9, sym__literal, sym_integer, sym_float, @@ -116109,88 +154301,44 @@ 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, + [83215] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1614), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2900), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, + STATE(866), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2732), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2753), 9, sym__literal, sym_integer, sym_float, @@ -116200,87 +154348,44 @@ 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, + [83280] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(818), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(820), 1, + anon_sym_this, + STATE(101), 1, + aux_sym_member_expression_repeat1, + STATE(295), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(296), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2430), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2742), 9, sym__literal, sym_integer, sym_float, @@ -116290,51 +154395,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60613] = 21, - ACTIONS(362), 1, + [83345] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1614), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2900), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, sym_member_expression, - STATE(1926), 1, + STATE(869), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2853), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2753), 9, sym__literal, sym_integer, sym_float, @@ -116344,51 +154442,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60688] = 21, - ACTIONS(35), 1, + [83410] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, + ACTIONS(942), 1, anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(2799), 1, sym_identifier, - STATE(1362), 1, + STATE(166), 1, + sym__lhs_expression, + STATE(817), 1, + aux_sym_member_expression_repeat1, + STATE(850), 1, sym_member_expression, - STATE(1384), 1, + STATE(2213), 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(686), 2, anon_sym_true, anon_sym_false, - STATE(1459), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1506), 9, + STATE(2703), 9, sym__literal, sym_integer, sym_float, @@ -116398,87 +154489,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60763] = 3, - 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, + [83475] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2934), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(2936), 1, + anon_sym_this, + STATE(892), 1, + aux_sym_member_expression_repeat1, + STATE(1044), 1, + sym__lhs_expression, + STATE(1061), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2325), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2733), 9, sym__literal, sym_integer, sym_float, @@ -116488,51 +154536,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60877] = 21, - ACTIONS(35), 1, + [83540] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(3223), 1, + ACTIONS(2936), 1, anon_sym_this, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(894), 1, + aux_sym_member_expression_repeat1, + STATE(1044), 1, + sym__lhs_expression, + STATE(1061), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1544), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2163), 9, + STATE(2733), 9, sym__literal, sym_integer, sym_float, @@ -116542,51 +154583,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60952] = 21, - ACTIONS(35), 1, + [83605] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1614), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2900), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(166), 1, + sym__lhs_expression, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, + STATE(870), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2735), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2753), 9, sym__literal, sym_integer, sym_float, @@ -116596,90 +154630,91 @@ 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, + [83670] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3766), 1, + anon_sym_this, + ACTIONS(3788), 1, + sym_identifier, + STATE(1424), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, + sym__lhs_expression, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2752), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [83735] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3766), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3788), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1427), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2734), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2752), 9, sym__literal, sym_integer, sym_float, @@ -116689,51 +154724,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61147] = 21, - ACTIONS(35), 1, + [83800] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1686), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2922), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(880), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2733), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2754), 9, sym__literal, sym_integer, sym_float, @@ -116743,51 +154771,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61222] = 21, - ACTIONS(35), 1, + [83865] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2934), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(2936), 1, + anon_sym_this, + STATE(886), 1, + aux_sym_member_expression_repeat1, + STATE(1044), 1, + sym__lhs_expression, + STATE(1061), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2731), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2733), 9, sym__literal, sym_integer, sym_float, @@ -116797,51 +154818,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61297] = 21, - ACTIONS(362), 1, + [83930] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1494), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2886), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(864), 1, + aux_sym_member_expression_repeat1, + STATE(946), 1, + sym__lhs_expression, + STATE(951), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2743), 9, sym__literal, sym_integer, sym_float, @@ -116851,51 +154865,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61372] = 21, - ACTIONS(362), 1, + [83995] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2374), 1, + ACTIONS(3890), 1, sym_identifier, - STATE(201), 1, + ACTIONS(3892), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, - sym_string, - STATE(2148), 1, + STATE(1611), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(767), 9, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -116905,51 +154912,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61447] = 21, - ACTIONS(362), 1, + [84060] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(548), 1, + ACTIONS(3890), 1, sym_identifier, - STATE(201), 1, + ACTIONS(3892), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, - sym_string, - STATE(2148), 1, + STATE(1615), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(488), 9, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -116959,87 +154959,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61522] = 3, + [84125] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_null, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + ACTIONS(682), 1, + aux_sym_float_token1, + ACTIONS(684), 1, + aux_sym_float_token2, + ACTIONS(688), 1, + aux_sym_string_token1, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(3244), 1, + sym_identifier, + ACTIONS(3246), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, + sym_member_expression, + STATE(1058), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, 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, + ACTIONS(686), 2, + anon_sym_true, + anon_sym_false, + STATE(2646), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [84190] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3890), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3892), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1629), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2818), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -117049,89 +155053,44 @@ 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, + [84255] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(560), 1, - sym_identifier, - ACTIONS(566), 1, + ACTIONS(1686), 1, anon_sym_this, - STATE(259), 1, + ACTIONS(2922), 1, + sym_identifier, + STATE(850), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, - sym_string, - STATE(2254), 1, + STATE(883), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(469), 2, - sym__rhs_expression, - sym_call_expression, - STATE(416), 9, + STATE(2754), 9, sym__literal, sym_integer, sym_float, @@ -117141,85 +155100,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61754] = 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), 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, + [84320] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(3163), 1, + ACTIONS(2936), 1, anon_sym_this, - STATE(1557), 1, + STATE(891), 1, aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, + STATE(1044), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(1061), 1, + sym_member_expression, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(2733), 9, sym__literal, sym_integer, sym_float, @@ -117229,51 +155147,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61864] = 21, - ACTIONS(362), 1, + [84385] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, + ACTIONS(778), 1, anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(864), 1, sym_identifier, - STATE(201), 1, + STATE(117), 1, + aux_sym_member_expression_repeat1, + STATE(166), 1, + sym__lhs_expression, + STATE(500), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1449), 9, + STATE(2744), 9, sym__literal, sym_integer, sym_float, @@ -117283,51 +155194,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61939] = 21, - ACTIONS(362), 1, + [84450] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(552), 1, + ACTIONS(778), 1, anon_sym_this, - ACTIONS(3373), 1, + ACTIONS(864), 1, sym_identifier, - STATE(201), 1, + STATE(116), 1, + aux_sym_member_expression_repeat1, + STATE(166), 1, + sym__lhs_expression, + STATE(500), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1573), 9, + STATE(2744), 9, sym__literal, sym_integer, sym_float, @@ -117337,51 +155241,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62014] = 21, - ACTIONS(35), 1, + [84515] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(778), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(864), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(118), 1, + aux_sym_member_expression_repeat1, + STATE(166), 1, + sym__lhs_expression, + STATE(500), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2684), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2744), 9, sym__literal, sym_integer, sym_float, @@ -117391,51 +155288,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62089] = 21, - ACTIONS(362), 1, + [84580] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3353), 1, + ACTIONS(3724), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1947), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(2007), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2246), 9, + STATE(2721), 9, sym__literal, sym_integer, sym_float, @@ -117445,51 +155335,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62164] = 21, - ACTIONS(35), 1, + [84645] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3890), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3892), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1607), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2705), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -117499,51 +155382,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62239] = 21, - ACTIONS(430), 1, + [84710] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3215), 1, - anon_sym_this, - ACTIONS(3249), 1, + ACTIONS(3724), 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, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1966), 1, + aux_sym_member_expression_repeat1, STATE(2181), 1, sym__lhs_expression, + STATE(2185), 1, + sym_member_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(469), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1974), 9, + STATE(2721), 9, sym__literal, sym_integer, sym_float, @@ -117553,51 +155429,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62314] = 21, - ACTIONS(35), 1, + [84775] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(800), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2860), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(834), 1, + aux_sym_member_expression_repeat1, + STATE(909), 1, + sym__lhs_expression, + STATE(910), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2626), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2745), 9, sym__literal, sym_integer, sym_float, @@ -117607,51 +155476,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62389] = 21, - ACTIONS(35), 1, + [84840] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(800), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2860), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(836), 1, + aux_sym_member_expression_repeat1, + STATE(909), 1, + sym__lhs_expression, + STATE(910), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2744), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2745), 9, sym__literal, sym_integer, sym_float, @@ -117661,87 +155523,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [84905] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(942), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(2799), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(166), 1, + sym__lhs_expression, + STATE(818), 1, + aux_sym_member_expression_repeat1, + STATE(850), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2641), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2703), 9, sym__literal, sym_integer, sym_float, @@ -117751,51 +155570,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62578] = 21, - ACTIONS(35), 1, + [84970] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3724), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1907), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2699), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2721), 9, sym__literal, sym_integer, sym_float, @@ -117805,51 +155617,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62653] = 21, - ACTIONS(35), 1, + [85035] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(800), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2860), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(837), 1, + aux_sym_member_expression_repeat1, + STATE(909), 1, + sym__lhs_expression, + STATE(910), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2695), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2745), 9, sym__literal, sym_integer, sym_float, @@ -117859,124 +155664,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [85100] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(778), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(864), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(114), 1, + aux_sym_member_expression_repeat1, + STATE(166), 1, + sym__lhs_expression, + STATE(500), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2291), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2744), 9, sym__literal, sym_integer, sym_float, @@ -117986,87 +155711,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [85165] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4046), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(1979), 1, sym__lhs_expression, + STATE(1981), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2436), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -118076,51 +155758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62997] = 21, - ACTIONS(362), 1, + [85230] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3147), 1, + ACTIONS(1686), 1, anon_sym_this, - ACTIONS(3199), 1, + ACTIONS(2922), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(850), 1, sym_member_expression, - STATE(2007), 1, - sym_string, - STATE(2179), 1, + STATE(884), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2122), 9, + STATE(2754), 9, sym__literal, sym_integer, sym_float, @@ -118130,87 +155805,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [85295] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4046), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, + STATE(1978), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, + sym__lhs_expression, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1636), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -118220,51 +155852,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63186] = 21, - ACTIONS(35), 1, + [85360] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4046), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1974), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2718), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -118274,51 +155899,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63261] = 21, - ACTIONS(35), 1, + [85425] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(800), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2860), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(840), 1, + aux_sym_member_expression_repeat1, + STATE(909), 1, + sym__lhs_expression, + STATE(910), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2760), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2745), 9, sym__literal, sym_integer, sym_float, @@ -118328,51 +155946,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63336] = 21, - ACTIONS(35), 1, + [85490] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3724), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3730), 1, + anon_sym_this, + STATE(1803), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2761), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2721), 9, sym__literal, sym_integer, sym_float, @@ -118382,51 +155993,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63411] = 21, - ACTIONS(35), 1, + [85555] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3774), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3844), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1536), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2676), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -118436,51 +156040,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63486] = 21, - ACTIONS(35), 1, + [85620] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3774), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3844), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1538), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2673), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -118490,87 +156087,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [85685] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3244), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3246), 1, + anon_sym_this, + STATE(166), 1, + sym__lhs_expression, + STATE(969), 1, sym_member_expression, - STATE(2035), 1, + STATE(1052), 1, + aux_sym_member_expression_repeat1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2697), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2646), 9, sym__literal, sym_integer, sym_float, @@ -118580,51 +156134,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63675] = 21, - ACTIONS(362), 1, + [85750] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, + ACTIONS(3774), 1, anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(3844), 1, sym_identifier, - STATE(201), 1, + STATE(1540), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, + STATE(2213), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1641), 9, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -118634,49 +156181,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63750] = 19, - ACTIONS(362), 1, + [85815] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3163), 1, + ACTIONS(942), 1, anon_sym_this, - STATE(1557), 1, + ACTIONS(2799), 1, + sym_identifier, + STATE(166), 1, + sym__lhs_expression, + STATE(820), 1, aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(850), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 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(2703), 9, sym__literal, sym_integer, sym_float, @@ -118686,51 +156228,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63821] = 21, - ACTIONS(430), 1, + [85880] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3215), 1, + ACTIONS(3886), 1, anon_sym_this, - ACTIONS(3249), 1, + ACTIONS(4046), 1, sym_identifier, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, + STATE(969), 1, sym_member_expression, - STATE(1922), 1, - sym_string, - STATE(2181), 1, + STATE(1977), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1974), 9, + STATE(2746), 9, sym__literal, sym_integer, sym_float, @@ -118740,51 +156275,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63896] = 21, - ACTIONS(35), 1, + [85945] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1604), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2954), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(899), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2858), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2748), 9, sym__literal, sym_integer, sym_float, @@ -118794,87 +156322,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [86010] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1604), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2954), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(902), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2659), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2748), 9, sym__literal, sym_integer, sym_float, @@ -118884,123 +156369,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, 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, - 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, + [86075] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3189), 1, - sym_identifier, - ACTIONS(3191), 1, + ACTIONS(1604), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(2954), 1, + sym_identifier, + STATE(850), 1, sym_member_expression, - STATE(2179), 1, + STATE(903), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, sym__lhs_expression, - STATE(2256), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2205), 9, + STATE(2748), 9, sym__literal, sym_integer, sym_float, @@ -119010,51 +156416,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64238] = 21, - ACTIONS(35), 1, + [86140] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3774), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3844), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1534), 1, + aux_sym_member_expression_repeat1, + STATE(2181), 1, + sym__lhs_expression, + STATE(2185), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2634), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -119064,51 +156463,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64313] = 21, - ACTIONS(35), 1, + [86205] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(942), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2799), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(166), 1, + sym__lhs_expression, + STATE(819), 1, + aux_sym_member_expression_repeat1, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, + STATE(2213), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2755), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2703), 9, sym__literal, sym_integer, sym_float, @@ -119118,51 +156510,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64388] = 21, - ACTIONS(35), 1, + [86270] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3634), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3640), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1283), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2640), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2749), 9, sym__literal, sym_integer, sym_float, @@ -119172,90 +156557,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64463] = 6, - ACTIONS(3239), 1, - anon_sym_EQ_GT, - ACTIONS(3453), 1, - anon_sym_DOT, - ACTIONS(3455), 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, - 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, + [86335] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3634), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3640), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1285), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2629), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2749), 9, sym__literal, sym_integer, sym_float, @@ -119265,51 +156604,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64583] = 21, - ACTIONS(35), 1, + [86400] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(1362), 1, + ACTIONS(3624), 1, + anon_sym_this, + ACTIONS(4086), 1, + anon_sym_new, + STATE(969), 1, sym_member_expression, - STATE(1384), 1, + STATE(2213), 1, sym_string, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(2161), 1, + STATE(2594), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(1636), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1506), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -119319,90 +156651,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64658] = 6, - ACTIONS(3137), 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, - [64703] = 21, - ACTIONS(362), 1, + [86465] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(1273), 1, + aux_sym_member_expression_repeat1, + STATE(1979), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2589), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -119412,51 +156698,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64778] = 21, - ACTIONS(430), 1, + [86530] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(560), 1, - sym_identifier, - ACTIONS(566), 1, + ACTIONS(3634), 1, anon_sym_this, - STATE(259), 1, + ACTIONS(3640), 1, + sym_identifier, + STATE(1286), 1, + aux_sym_member_expression_repeat1, + STATE(1984), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, - sym_string, - STATE(2254), 1, + STATE(1987), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(416), 9, + STATE(2749), 9, sym__literal, sym_integer, sym_float, @@ -119466,51 +156745,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64853] = 21, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + [86595] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1604), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(2954), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(850), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(896), 1, + aux_sym_member_expression_repeat1, + STATE(976), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2628), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2748), 9, sym__literal, sym_integer, sym_float, @@ -119520,51 +156792,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64928] = 21, - ACTIONS(35), 1, + [86660] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3818), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1636), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2775), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2750), 9, sym__literal, sym_integer, sym_float, @@ -119574,87 +156839,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65003] = 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), 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, + [86725] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(3818), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(1644), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(1932), 1, - sym_string, - STATE(2082), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2203), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2750), 9, sym__literal, sym_integer, sym_float, @@ -119664,51 +156886,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65117] = 21, - ACTIONS(35), 1, + [86790] = 18, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3818), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1652), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2121), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2623), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2750), 9, sym__literal, sym_integer, sym_float, @@ -119718,121 +156933,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65192] = 4, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3457), 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, - [65233] = 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), 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, - [65272] = 19, - ACTIONS(485), 1, + [86855] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3461), 1, - sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3634), 1, anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1654), 1, + ACTIONS(3640), 1, + sym_identifier, + STATE(1282), 1, aux_sym_member_expression_repeat1, - STATE(1689), 1, + STATE(1984), 1, + sym_member_expression, + STATE(1987), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2387), 9, + STATE(2749), 9, sym__literal, sym_integer, sym_float, @@ -119842,121 +156980,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65342] = 6, - ACTIONS(2529), 1, - anon_sym_DOT, - ACTIONS(2531), 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), 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(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, - 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, - [65424] = 19, - ACTIONS(362), 1, + [86920] = 18, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 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, + STATE(93), 1, aux_sym_member_expression_repeat1, - STATE(1689), 1, + STATE(295), 1, + sym_member_expression, + STATE(296), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - ACTIONS(466), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2387), 9, + STATE(2751), 9, sym__literal, sym_integer, sym_float, @@ -119966,83 +157027,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65494] = 3, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3473), 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, - [65532] = 19, - ACTIONS(362), 1, + [86985] = 18, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 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, + STATE(88), 1, aux_sym_member_expression_repeat1, - STATE(1689), 1, + STATE(295), 1, + sym_member_expression, + STATE(296), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - ACTIONS(522), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2387), 9, + STATE(2751), 9, sym__literal, sym_integer, sym_float, @@ -120052,48 +157074,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65602] = 19, - ACTIONS(362), 1, + [87050] = 18, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(674), 1, + anon_sym_this, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 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, + STATE(94), 1, aux_sym_member_expression_repeat1, - STATE(1689), 1, + STATE(295), 1, + sym_member_expression, + STATE(296), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - ACTIONS(474), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2387), 9, + STATE(2751), 9, sym__literal, sym_integer, sym_float, @@ -120103,48 +157121,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65672] = 19, - ACTIONS(362), 1, + [87115] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, + ACTIONS(3890), 1, sym_identifier, - STATE(902), 1, + ACTIONS(3892), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(1654), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2309), 1, + sym__lhs_expression, + STATE(2947), 1, + sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - ACTIONS(518), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2387), 9, + STATE(2735), 9, sym__literal, sym_integer, sym_float, @@ -120154,83 +157168,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65742] = 6, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, - 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, - 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, + [87180] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(3818), 1, anon_sym_this, - ACTIONS(3481), 1, - anon_sym_RPAREN, - STATE(902), 1, + ACTIONS(3918), 1, + sym_identifier, + STATE(1634), 1, + aux_sym_member_expression_repeat1, + STATE(2120), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1986), 1, + STATE(2121), 1, sym__lhs_expression, - STATE(2408), 1, - sym_function_arg, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2370), 9, + STATE(2750), 9, sym__literal, sym_integer, sym_float, @@ -120240,44 +157215,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65853] = 18, - ACTIONS(362), 1, + [87245] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(1494), 1, anon_sym_this, - STATE(749), 1, + ACTIONS(2886), 1, + sym_identifier, + STATE(863), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(946), 1, sym__lhs_expression, - STATE(797), 1, + STATE(951), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2743), 9, sym__literal, sym_integer, sym_float, @@ -120287,44 +157262,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65918] = 18, - ACTIONS(362), 1, + [87310] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(376), 1, - anon_sym_this, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2427), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(694), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2800), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2386), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120334,44 +157307,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65983] = 18, - ACTIONS(362), 1, + [87372] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3163), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(1601), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(969), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2338), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2351), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120381,44 +157352,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66048] = 18, - ACTIONS(362), 1, + [87434] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3063), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(198), 1, - sym__call, - STATE(902), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2148), 1, + STATE(2266), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2439), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120428,44 +157397,104 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66113] = 18, - ACTIONS(37), 1, + [87496] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 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(1050), 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_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, + [87530] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1116), 11, + anon_sym_case, + anon_sym_default, anon_sym_this, - ACTIONS(362), 1, + 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(1114), 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_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, + [87564] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2515), 1, + ACTIONS(2930), 1, sym_identifier, - STATE(755), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, sym_member_expression, - STATE(1926), 1, + STATE(1011), 1, + sym__lhs_expression, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2413), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -120475,44 +157504,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66178] = 18, - ACTIONS(362), 1, + [87626] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(3244), 1, sym_identifier, - STATE(731), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + ACTIONS(3246), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(3025), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2646), 9, sym__literal, sym_integer, sym_float, @@ -120522,44 +157549,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66243] = 18, - ACTIONS(362), 1, + [87688] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(728), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2271), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120569,44 +157594,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66308] = 18, - ACTIONS(362), 1, + [87750] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(2930), 1, sym_identifier, - STATE(735), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, sym_member_expression, - STATE(1926), 1, + STATE(1016), 1, + sym__lhs_expression, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -120616,44 +157639,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66373] = 18, - ACTIONS(362), 1, + [87812] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(2489), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(744), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2784), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120663,44 +157684,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66438] = 18, - ACTIONS(362), 1, + [87874] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3163), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(1452), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(969), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2264), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2351), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120710,44 +157729,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66503] = 18, - ACTIONS(362), 1, + [87936] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(2930), 1, sym_identifier, - ACTIONS(3063), 1, + ACTIONS(2932), 1, anon_sym_this, - ACTIONS(3483), 1, - anon_sym_new, - STATE(902), 1, + STATE(960), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2141), 1, + STATE(1026), 1, sym__lhs_expression, + STATE(2213), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2439), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -120757,44 +157774,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66568] = 18, - ACTIONS(362), 1, + [87998] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3383), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3389), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(1490), 1, - aux_sym_member_expression_repeat1, - STATE(1876), 1, + STATE(969), 1, sym_member_expression, - STATE(1877), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2268), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2300), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120804,91 +157819,75 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66633] = 18, - ACTIONS(362), 1, + [88060] = 5, + ACTIONS(4088), 1, + anon_sym_EQ, + STATE(244), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4068), 11, + sym__closing_brace_marker, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, + anon_sym_QMARK, + anon_sym_EQ_GT, 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, + ACTIONS(4066), 12, + anon_sym_case, + anon_sym_default, 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(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, + 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, - 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, + sym_identifier, + [88098] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(550), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(552), 1, + ACTIONS(3246), 1, anon_sym_this, - STATE(46), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2197), 1, + sym__lhs_expression, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2340), 9, + STATE(2646), 9, sym__literal, sym_integer, sym_float, @@ -120898,44 +157897,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66763] = 18, - ACTIONS(362), 1, + [88160] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(734), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2761), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120945,44 +157942,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66828] = 18, - ACTIONS(362), 1, + [88222] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(468), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(472), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(29), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2765), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2377), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -120992,44 +157987,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66893] = 18, - ACTIONS(362), 1, + [88284] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(468), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(472), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(31), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2319), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2377), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -121039,91 +158032,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66958] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, + [88346] = 4, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 11, + anon_sym_case, + anon_sym_default, + anon_sym_this, + anon_sym_catch, + anon_sym_else, 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 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, - 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(32), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 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, - 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, + [88382] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3383), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(3389), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(1483), 1, - aux_sym_member_expression_repeat1, - STATE(1876), 1, + STATE(969), 1, sym_member_expression, - STATE(1877), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2335), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2300), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -121133,44 +158109,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67088] = 18, - ACTIONS(362), 1, + [88444] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(412), 1, - anon_sym_this, - ACTIONS(2376), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(687), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2768), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2375), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -121180,44 +158154,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67153] = 18, - ACTIONS(362), 1, + [88506] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(568), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(49), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2847), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2381), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -121227,44 +158199,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67218] = 18, - ACTIONS(362), 1, + [88568] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3063), 1, + ACTIONS(3246), 1, anon_sym_this, - ACTIONS(3485), 1, - anon_sym_new, - STATE(902), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, - STATE(2177), 1, + STATE(2961), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2439), 9, + STATE(2646), 9, sym__literal, sym_integer, sym_float, @@ -121274,44 +158244,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67283] = 18, - ACTIONS(362), 1, + [88630] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(568), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(54), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, + ACTIONS(3624), 1, + anon_sym_this, + STATE(969), 1, sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2287), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2381), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -121321,44 +158289,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67348] = 18, - ACTIONS(362), 1, + [88692] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(2930), 1, sym_identifier, - ACTIONS(3063), 1, + ACTIONS(2932), 1, anon_sym_this, - STATE(902), 1, + STATE(960), 1, sym_member_expression, - STATE(1048), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, + STATE(1007), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2439), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -121368,44 +158334,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67413] = 18, - ACTIONS(362), 1, + [88754] = 18, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(568), 1, + ACTIONS(4090), 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, + ACTIONS(4092), 1, + sym__closing_brace_marker, + STATE(2340), 1, + sym__closing_brace, + STATE(2385), 1, + sym_pair, + STATE(2549), 1, + sym_structure_type_pair, + STATE(3072), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2381), 9, + STATE(3267), 8, sym__literal, sym_integer, sym_float, @@ -121414,77 +158380,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [67478] = 3, - 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, - 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, + [88818] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(550), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(552), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(42), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2314), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2340), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -121494,44 +158425,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67578] = 18, - ACTIONS(362), 1, + [88880] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(468), 1, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(472), 1, + ACTIONS(3624), 1, anon_sym_this, - STATE(28), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, + STATE(969), 1, sym_member_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, + STATE(2250), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2377), 9, + STATE(2650), 9, sym__literal, sym_integer, sym_float, @@ -121541,44 +158470,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67643] = 18, - ACTIONS(362), 1, + [88942] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(2451), 1, + ACTIONS(2930), 1, sym_identifier, - STATE(719), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, sym_member_expression, - STATE(777), 1, + STATE(987), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -121588,44 +158515,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67708] = 18, - ACTIONS(362), 1, + [89004] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(2451), 1, + ACTIONS(2930), 1, sym_identifier, - STATE(721), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, + ACTIONS(2932), 1, + anon_sym_this, + STATE(960), 1, sym_member_expression, - STATE(777), 1, + STATE(995), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2213), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(2762), 9, sym__literal, sym_integer, sym_float, @@ -121635,44 +158560,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67773] = 18, - ACTIONS(362), 1, + [89066] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(956), 1, + ACTIONS(3985), 1, anon_sym_this, - ACTIONS(2451), 1, + ACTIONS(4094), 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, + STATE(2213), 1, sym_string, + STATE(2366), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_member_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -121682,44 +158605,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67838] = 18, - ACTIONS(362), 1, + [89128] = 17, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(568), 1, + ACTIONS(4096), 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, + ACTIONS(4098), 1, + sym__closing_brace_marker, + STATE(1471), 1, + sym__closing_brace, + STATE(2382), 1, + sym_pair, + STATE(3072), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2381), 9, + STATE(3267), 8, sym__literal, sym_integer, sym_float, @@ -121728,45 +158649,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [67903] = 18, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, + [89189] = 17, + ACTIONS(151), 1, + sym__closing_brace_marker, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2515), 1, + ACTIONS(4096), 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, + STATE(255), 1, + sym__closing_brace, + STATE(2367), 1, + sym_pair, + STATE(3072), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2413), 9, + STATE(3267), 8, sym__literal, sym_integer, sym_float, @@ -121775,45 +158693,73 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [67968] = 18, - ACTIONS(362), 1, + [89250] = 4, + ACTIONS(4062), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(928), 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(931), 12, + anon_sym_case, + anon_sym_default, + anon_sym_this, + 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, + [89285] = 17, + ACTIONS(149), 1, + sym__closing_brace_marker, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(4096), 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, + STATE(1519), 1, + sym__closing_brace, + STATE(2358), 1, + sym_pair, + STATE(3072), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2351), 9, + STATE(3267), 8, sym__literal, sym_integer, sym_float, @@ -121822,45 +158768,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68033] = 18, - ACTIONS(362), 1, + [89346] = 17, + ACTIONS(153), 1, + sym__closing_brace_marker, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3383), 1, + ACTIONS(4096), 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, + STATE(158), 1, + sym__closing_brace, + STATE(2385), 1, + sym_pair, + STATE(3072), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2300), 9, + STATE(3267), 8, sym__literal, sym_integer, sym_float, @@ -121869,45 +158812,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68098] = 18, - ACTIONS(362), 1, + [89407] = 17, + ACTIONS(147), 1, + sym__closing_brace_marker, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(4096), 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, + STATE(1861), 1, + sym__closing_brace, + STATE(2407), 1, + sym_pair, + STATE(3072), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(3267), 8, sym__literal, sym_integer, sym_float, @@ -121916,45 +158856,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68163] = 18, - ACTIONS(362), 1, + [89468] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3231), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -121963,45 +158898,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68228] = 18, - ACTIONS(362), 1, + [89526] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3371), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2439), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122010,45 +158940,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68293] = 18, - ACTIONS(362), 1, + [89584] = 6, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(4102), 1, + anon_sym_DOT, + ACTIONS(4104), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 8, + anon_sym_in, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 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, + aux_sym_string_token1, + aux_sym_string_token3, + [89622] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1263), 1, - sym__call, - STATE(1926), 1, + STATE(3034), 1, sym_string, - STATE(2279), 1, - sym__lhs_expression, + STATE(3044), 1, + sym_pair, + STATE(3478), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2439), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122057,45 +159014,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68358] = 18, - ACTIONS(362), 1, + [89680] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3209), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122104,45 +159056,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68423] = 18, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, + [89738] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2515), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3130), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2413), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122151,45 +159098,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68488] = 18, - ACTIONS(362), 1, + [89796] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(2451), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3218), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122198,45 +159140,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68553] = 18, - ACTIONS(362), 1, + [89854] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(550), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3257), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2340), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122245,45 +159182,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68618] = 18, - ACTIONS(362), 1, + [89912] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3270), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2351), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122292,45 +159224,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68683] = 18, - ACTIONS(362), 1, + [89970] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3337), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3221), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2370), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122339,45 +159266,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68748] = 18, - ACTIONS(362), 1, + [90028] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1278), 1, - sym__call, - STATE(1926), 1, + STATE(3034), 1, sym_string, - STATE(2082), 1, - sym__lhs_expression, + STATE(3044), 1, + sym_pair, + STATE(3225), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2439), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122386,45 +159308,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68813] = 18, - ACTIONS(362), 1, + [90086] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2649), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3155), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2336), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122433,45 +159350,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68878] = 18, - ACTIONS(362), 1, + [90144] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3263), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122480,45 +159392,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [68943] = 18, - ACTIONS(362), 1, + [90202] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3337), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3279), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2370), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122527,45 +159434,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [69008] = 18, - ACTIONS(362), 1, + [90260] = 16, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3337), 1, + ACTIONS(4100), 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, + STATE(3034), 1, sym_string, + STATE(3044), 1, + sym_pair, + STATE(3274), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2370), 9, + STATE(3339), 8, sym__literal, sym_integer, sym_float, @@ -122574,45 +159476,67 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [69073] = 18, - ACTIONS(362), 1, + [90318] = 5, + ACTIONS(4106), 1, + anon_sym_EQ, + STATE(193), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4068), 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(4066), 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, + [90354] = 14, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 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, + ACTIONS(690), 1, + aux_sym_string_token3, + ACTIONS(4108), 1, + sym_identifier, + STATE(2537), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2439), 9, + STATE(2771), 9, sym__literal, sym_integer, sym_float, @@ -122622,44 +159546,36 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69138] = 18, - ACTIONS(362), 1, + [90407] = 14, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2649), 1, + ACTIONS(4108), 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, + STATE(2537), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2336), 9, + STATE(2714), 9, sym__literal, sym_integer, sym_float, @@ -122669,44 +159585,65 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69203] = 18, - ACTIONS(362), 1, + [90460] = 4, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(928), 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(931), 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, + [90493] = 14, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(4108), 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, + STATE(2537), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(2790), 9, sym__literal, sym_integer, sym_float, @@ -122716,44 +159653,36 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69268] = 18, - ACTIONS(362), 1, + [90546] = 14, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(4108), 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, + STATE(2537), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2766), 9, sym__literal, sym_integer, sym_float, @@ -122763,44 +159692,38 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69333] = 18, - ACTIONS(362), 1, + [90599] = 15, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(412), 1, - anon_sym_this, - ACTIONS(2376), 1, + ACTIONS(4096), 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, + STATE(2695), 1, + sym_pair, + STATE(3072), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2375), 9, + STATE(3267), 8, sym__literal, sym_integer, sym_float, @@ -122809,45 +159732,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [69398] = 18, - ACTIONS(362), 1, + [90654] = 15, + ACTIONS(670), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(676), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3337), 1, + ACTIONS(4108), 1, sym_identifier, - ACTIONS(3339), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, + STATE(2537), 1, sym_string, - STATE(1986), 1, - sym__lhs_expression, - STATE(2561), 1, - sym_function_arg, + STATE(2719), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(686), 2, anon_sym_true, anon_sym_false, - STATE(2370), 9, + STATE(3245), 8, sym__literal, sym_integer, sym_float, @@ -122856,18910 +159772,15743 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [69463] = 18, - ACTIONS(362), 1, + [90709] = 6, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(4112), 1, + anon_sym_DOT, + ACTIONS(4114), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 11, + sym__closing_brace_marker, + anon_sym_LPAREN, + 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, + [90745] = 5, + ACTIONS(4116), 1, + anon_sym_EQ, + STATE(244), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4068), 7, + sym__closing_brace_marker, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(4066), 12, + anon_sym_case, + anon_sym_default, + anon_sym_this, + 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, + [90779] = 7, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1050), 1, + sym_escape_sequence, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4118), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_QMARK, + ACTIONS(4120), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1054), 16, anon_sym_LBRACE, - ACTIONS(374), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + anon_sym_this, 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_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(396), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(2649), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - ACTIONS(2651), 1, + [90817] = 6, + ACTIONS(4124), 1, + anon_sym_DOT, + ACTIONS(4126), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1132), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1054), 7, 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, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 10, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [90853] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1116), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, 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, + sym_identifier, + ACTIONS(1114), 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, + [90882] = 4, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(928), 7, + sym__closing_brace_marker, anon_sym_LBRACE, - ACTIONS(374), 1, anon_sym_LBRACK, - ACTIONS(376), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(931), 12, + anon_sym_case, + anon_sym_default, anon_sym_this, - ACTIONS(382), 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, + [90913] = 5, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4128), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 8, + anon_sym_this, + anon_sym_EQ, anon_sym_null, - ACTIONS(384), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 10, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_QMARK, aux_sym_integer_token2, - ACTIONS(388), 1, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [90946] = 11, + ACTIONS(43), 1, + anon_sym_AT, + ACTIONS(45), 1, + anon_sym_AT_COLON, + ACTIONS(4132), 1, + anon_sym_final, + ACTIONS(4134), 1, + anon_sym_class, + ACTIONS(4136), 1, + anon_sym_typedef, + ACTIONS(4138), 1, + anon_sym_function, + ACTIONS(4140), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2194), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + STATE(2206), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4130), 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, + [90991] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, aux_sym_float_token1, - ACTIONS(390), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 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, + [91020] = 5, + ACTIONS(4144), 1, + anon_sym_LPAREN, + STATE(2186), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4147), 6, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(394), 1, aux_sym_string_token1, - ACTIONS(396), 1, aux_sym_string_token3, - ACTIONS(2427), 1, + ACTIONS(4142), 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, - 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, + [91053] = 5, + ACTIONS(4149), 1, + anon_sym_EQ, + STATE(981), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(4066), 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(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, + sym_identifier, + ACTIONS(4068), 9, + 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, + [91086] = 4, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 12, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(374), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + 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, + [91117] = 11, + ACTIONS(43), 1, + anon_sym_AT, + ACTIONS(45), 1, + anon_sym_AT_COLON, + ACTIONS(4153), 1, + anon_sym_final, + ACTIONS(4155), 1, + anon_sym_class, + ACTIONS(4157), 1, + anon_sym_typedef, + ACTIONS(4159), 1, + anon_sym_function, + ACTIONS(4161), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2194), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + STATE(2205), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4151), 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, + [91162] = 5, + ACTIONS(4163), 1, + anon_sym_EQ, + STATE(997), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4066), 8, + anon_sym_this, + anon_sym_new, anon_sym_null, - ACTIONS(384), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(4068), 10, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(388), 1, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [91195] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, aux_sym_float_token1, - ACTIONS(390), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1050), 12, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(394), 1, aux_sym_string_token1, - ACTIONS(396), 1, aux_sym_string_token3, - ACTIONS(412), 1, + [91223] = 6, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1054), 7, anon_sym_this, - ACTIONS(2376), 1, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, 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(1050), 9, + anon_sym_LPAREN, + 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, + [91257] = 4, + ACTIONS(4062), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(931), 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(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, + sym_identifier, + ACTIONS(928), 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, + [91287] = 5, + ACTIONS(4169), 1, + anon_sym_AT, + ACTIONS(4172), 1, + anon_sym_AT_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2194), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + ACTIONS(4175), 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, + [91318] = 9, + ACTIONS(4153), 1, + anon_sym_final, + ACTIONS(4155), 1, + anon_sym_class, + ACTIONS(4157), 1, + anon_sym_typedef, + ACTIONS(4159), 1, + anon_sym_function, + ACTIONS(4161), 1, + anon_sym_var, + ACTIONS(4179), 1, + anon_sym_interface, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2198), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4177), 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, + [91356] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1114), 1, + sym_escape_sequence, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(1116), 16, anon_sym_LBRACE, - ACTIONS(374), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + anon_sym_this, 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_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(396), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(412), 1, - anon_sym_this, - ACTIONS(2376), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, 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, + [91384] = 4, + ACTIONS(4181), 1, + anon_sym_LPAREN, + ACTIONS(4183), 1, + anon_sym_AT, 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, - 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(4185), 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, + [91412] = 4, 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, + STATE(2198), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4190), 5, + anon_sym_class, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + ACTIONS(4187), 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, + [91440] = 5, + ACTIONS(4192), 1, + anon_sym_EQ, + STATE(997), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4068), 7, + 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(3315), 1, + ACTIONS(4066), 8, 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, - 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, - anon_sym_LBRACK, - ACTIONS(382), 1, + anon_sym_new, 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, + anon_sym_true, + anon_sym_false, 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(3), 2, + [91470] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(1050), 1, + sym_escape_sequence, + ACTIONS(3991), 1, 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, + ACTIONS(1054), 16, anon_sym_LBRACE, - ACTIONS(374), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + anon_sym_this, 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_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(396), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(2515), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, 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, + [91498] = 9, + ACTIONS(4132), 1, + anon_sym_final, + ACTIONS(4134), 1, + anon_sym_class, + ACTIONS(4136), 1, + anon_sym_typedef, + ACTIONS(4138), 1, + anon_sym_function, + ACTIONS(4140), 1, + anon_sym_var, + ACTIONS(4194), 1, + anon_sym_interface, 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, + STATE(2198), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4177), 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, + [91536] = 3, + ACTIONS(4196), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4198), 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, + [91561] = 4, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(928), 7, + 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, + ACTIONS(931), 8, 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(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, - 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, + anon_sym_true, + anon_sym_false, 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, + [91588] = 3, + ACTIONS(4200), 1, + anon_sym_AT, 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, - 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, + ACTIONS(4202), 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, + [91613] = 8, + ACTIONS(4204), 1, + anon_sym_final, + ACTIONS(4206), 1, + anon_sym_class, + ACTIONS(4208), 1, + anon_sym_typedef, + ACTIONS(4210), 1, + anon_sym_function, + ACTIONS(4212), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2198), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4177), 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, + [91648] = 8, + ACTIONS(4214), 1, + anon_sym_final, + ACTIONS(4216), 1, + anon_sym_class, + ACTIONS(4218), 1, + anon_sym_typedef, + ACTIONS(4220), 1, + anon_sym_function, + ACTIONS(4222), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2198), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4177), 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, + [91683] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1048), 5, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, 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(1046), 8, + 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, + [91709] = 6, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1132), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [91736] = 6, + ACTIONS(4224), 1, + anon_sym_DOT, + ACTIONS(4228), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4226), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + [91763] = 6, + ACTIONS(4230), 1, + anon_sym_DOT, + ACTIONS(4232), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1132), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [91790] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1046), 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, + [91810] = 6, + ACTIONS(4076), 1, + anon_sym_DOT, + ACTIONS(4078), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4226), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [91836] = 3, + ACTIONS(1132), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1960), 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, + [91855] = 3, + ACTIONS(4226), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1960), 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, + [91874] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4234), 1, + aux_sym_string_token1, + ACTIONS(4236), 1, + aux_sym_string_token2, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4242), 1, + sym_escape_sequence, + STATE(2234), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [91904] = 6, + ACTIONS(4230), 1, + anon_sym_DOT, + ACTIONS(4232), 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, - [70178] = 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, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4244), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + [91928] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4246), 1, + aux_sym_string_token1, + ACTIONS(4248), 1, + aux_sym_string_token2, + ACTIONS(4250), 1, + sym_escape_sequence, + STATE(2230), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [91958] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4252), 1, + aux_sym_string_token1, + ACTIONS(4254), 1, + aux_sym_string_token2, + ACTIONS(4256), 1, + sym_escape_sequence, + STATE(2221), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [91988] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4258), 1, + aux_sym_string_token1, + ACTIONS(4260), 1, + aux_sym_string_token2, + ACTIONS(4262), 1, + sym_escape_sequence, + STATE(2228), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [92018] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4264), 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, - ACTIONS(3), 2, + ACTIONS(4266), 1, + aux_sym_string_token2, + ACTIONS(4269), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4272), 1, + anon_sym_DOLLAR, + ACTIONS(4275), 1, + sym_escape_sequence, + STATE(2220), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [92048] = 9, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(3991), 1, 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, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4278), 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, - ACTIONS(3), 2, + ACTIONS(4280), 1, + aux_sym_string_token2, + ACTIONS(4282), 1, + sym_escape_sequence, + STATE(2220), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [92078] = 9, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(3991), 1, 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, - 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(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4280), 1, + aux_sym_string_token2, + ACTIONS(4282), 1, + sym_escape_sequence, + ACTIONS(4284), 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, + STATE(2220), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [92108] = 5, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4288), 1, + anon_sym_QMARK, 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, - 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, + ACTIONS(1046), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [92130] = 6, + ACTIONS(4102), 1, + anon_sym_DOT, + ACTIONS(4104), 1, + anon_sym_QMARK, 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, - 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(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1132), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [92154] = 7, + ACTIONS(3082), 1, + anon_sym_RBRACK, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 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, - [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, + ACTIONS(1046), 2, + anon_sym_COMMA, 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, - ACTIONS(3), 2, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4244), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92180] = 9, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(3991), 1, 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, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4290), 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, + ACTIONS(4292), 1, + aux_sym_string_token2, + ACTIONS(4294), 1, + sym_escape_sequence, + STATE(2222), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [92210] = 5, + ACTIONS(4226), 1, + anon_sym_EQ_GT, + ACTIONS(4296), 1, + anon_sym_DOT, + ACTIONS(4298), 1, + anon_sym_QMARK, 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, - 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(1046), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + [92232] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4280), 1, + aux_sym_string_token2, + ACTIONS(4282), 1, + sym_escape_sequence, + ACTIONS(4300), 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, + STATE(2220), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [92262] = 7, + ACTIONS(3046), 1, + anon_sym_RBRACK, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, 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, + ACTIONS(1046), 2, + anon_sym_COMMA, 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, - ACTIONS(3), 2, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4244), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92288] = 9, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(3991), 1, 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, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4280), 1, + aux_sym_string_token2, + ACTIONS(4282), 1, + sym_escape_sequence, + ACTIONS(4302), 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, + STATE(2220), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [92318] = 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(3878), 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, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [92334] = 7, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1050), 1, + sym_escape_sequence, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4118), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_QMARK, + ACTIONS(4120), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1054), 4, 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, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [92360] = 6, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, 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, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4244), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1046), 3, + anon_sym_COMMA, + anon_sym_RBRACK, 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, - ACTIONS(3), 2, + [92384] = 9, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(3991), 1, 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, + ACTIONS(4238), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4240), 1, + anon_sym_DOLLAR, + ACTIONS(4280), 1, + aux_sym_string_token2, + ACTIONS(4282), 1, + sym_escape_sequence, + ACTIONS(4304), 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(2220), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2360), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [92414] = 7, + ACTIONS(3078), 1, + anon_sym_RBRACK, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, 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, + ACTIONS(1046), 2, + anon_sym_COMMA, 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, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4244), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92440] = 7, + ACTIONS(3054), 1, + anon_sym_RBRACK, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, 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, + ACTIONS(1046), 2, + anon_sym_COMMA, 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, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4244), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92466] = 2, 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, + ACTIONS(3950), 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(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, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [92482] = 7, + ACTIONS(3066), 1, + anon_sym_RBRACK, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, 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, - 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, + ACTIONS(1046), 2, + anon_sym_COMMA, 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(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4244), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92508] = 5, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4308), 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, - [71283] = 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(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(1046), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [92530] = 6, + ACTIONS(4112), 1, + anon_sym_DOT, + ACTIONS(4114), 1, + anon_sym_QMARK, 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, + ACTIONS(1046), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4226), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92553] = 6, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, + ACTIONS(4310), 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, - [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, + ACTIONS(1050), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + [92576] = 5, + ACTIONS(4226), 1, + anon_sym_EQ_GT, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_QMARK, 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, - 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(1046), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [92597] = 6, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, + ACTIONS(4316), 1, + anon_sym_COLON, 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, + ACTIONS(1050), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + [92620] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2349), 1, + sym__type_path, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, + [92646] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2368), 1, + sym_type_name, + STATE(2604), 1, + sym__type_path, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [92672] = 7, + ACTIONS(3930), 1, + anon_sym_DASH_GT, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4326), 1, + anon_sym_EQ, + STATE(2174), 1, + sym__assignmentOperator, + STATE(2355), 1, + sym_type_params, 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, + ACTIONS(4322), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [92696] = 6, + ACTIONS(1046), 1, + anon_sym_in, + ACTIONS(4230), 1, + anon_sym_DOT, + ACTIONS(4232), 1, + anon_sym_QMARK, 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, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4328), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92718] = 3, + STATE(3312), 1, + sym__access_identifier, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4330), 6, + anon_sym_default, 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, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [92734] = 6, + ACTIONS(1046), 1, + anon_sym_in, + ACTIONS(4102), 1, + anon_sym_DOT, + ACTIONS(4104), 1, + anon_sym_QMARK, 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, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4328), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92756] = 8, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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, + ACTIONS(4334), 1, + anon_sym_extends, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(661), 1, + sym_block, + STATE(2383), 1, + sym_type_params, + STATE(2460), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [92782] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4338), 1, + anon_sym_STAR, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2260), 1, + aux_sym_package_statement_repeat1, + STATE(2411), 1, + sym_type_name, + STATE(2590), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [71933] = 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(1274), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [92808] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2336), 1, + sym__type_path, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [71998] = 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(1294), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [92834] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4342), 1, + anon_sym_STAR, + STATE(2259), 1, + aux_sym_package_statement_repeat1, + STATE(2416), 1, + sym_type_name, + STATE(2448), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [72063] = 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(37), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [92860] = 4, + ACTIONS(4324), 1, + anon_sym_LT, + STATE(2355), 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, - [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(3930), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [92878] = 6, + ACTIONS(1046), 1, + anon_sym_RBRACE, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, 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, - 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(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4344), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [92900] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(153), 1, + sym__arg_list, + STATE(2359), 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, - [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, - 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, + ACTIONS(3930), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [92922] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2368), 1, + sym_type_name, + STATE(2600), 1, + sym__type_path, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, 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, + [92948] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2301), 1, + sym__type_path, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, 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, + [92974] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4348), 1, + anon_sym_STAR, + STATE(2412), 1, + sym_type_name, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2459), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, 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, + [93000] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4350), 1, + anon_sym_STAR, + STATE(2388), 1, + sym_type_name, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2564), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [93026] = 4, + ACTIONS(4324), 1, + anon_sym_LT, + STATE(2389), 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, + ACTIONS(3908), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [93044] = 3, + ACTIONS(4244), 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, - [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, + ACTIONS(1960), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, 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, + [93060] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2345), 1, + sym__type_path, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, 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, + [93086] = 8, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 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, + ACTIONS(4354), 1, + anon_sym_extends, + STATE(514), 1, + sym_block, + STATE(2373), 1, + sym_type_params, + STATE(2503), 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(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, + [93112] = 6, + ACTIONS(1046), 1, + sym__lookback_semicolon, + ACTIONS(4124), 1, + anon_sym_DOT, + ACTIONS(4126), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4356), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [93134] = 8, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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(4336), 1, + anon_sym_implements, + ACTIONS(4358), 1, + anon_sym_extends, + STATE(696), 1, + sym_block, + STATE(2421), 1, + sym_type_params, + STATE(2606), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [93160] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2295), 1, + sym__type_path, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [93186] = 8, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + ACTIONS(4360), 1, + anon_sym_extends, + STATE(458), 1, + sym_block, + STATE(2417), 1, + sym_type_params, + STATE(2466), 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(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, - 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, + [93212] = 6, + ACTIONS(4362), 1, + anon_sym_LPAREN, + ACTIONS(4364), 1, + anon_sym_LT, + STATE(253), 1, + sym__arg_list, + STATE(2381), 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, - [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(3930), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [93234] = 5, + ACTIONS(3564), 1, + sym__lookback_semicolon, + ACTIONS(4366), 1, + anon_sym_else, + STATE(470), 1, + sym_else_clause, 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, + ACTIONS(1950), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [93254] = 8, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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(4336), 1, + anon_sym_implements, + ACTIONS(4368), 1, + anon_sym_extends, + STATE(672), 1, + sym_block, + STATE(2402), 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(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, + [93280] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2337), 1, + sym__type_path, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, 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, - 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(3493), 1, - anon_sym_new, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2074), 1, - sym__lhs_expression, + [93306] = 6, + ACTIONS(1046), 1, + sym__lookback_semicolon, + ACTIONS(4370), 1, + anon_sym_DOT, + ACTIONS(4372), 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, - [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, - 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, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4356), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [93328] = 4, + ACTIONS(4374), 1, + anon_sym_catch, 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, - 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(1256), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2276), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2722), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [93346] = 4, + ACTIONS(4374), 1, + anon_sym_catch, 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, - [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, + STATE(2276), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2728), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [93364] = 4, + ACTIONS(4376), 1, + anon_sym_catch, 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, - 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, + STATE(2276), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2736), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [93382] = 4, + ACTIONS(4374), 1, + anon_sym_catch, 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, + STATE(2276), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2230), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [93400] = 3, 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, + STATE(2276), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2722), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [93416] = 3, 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, + STATE(2276), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2728), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [93432] = 3, 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, - 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(1943), 1, - sym__lhs_expression, + STATE(2276), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2230), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [93448] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2313), 1, + sym__type_path, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, - 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, + [93474] = 3, + STATE(2960), 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, - [73744] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(4379), 6, + anon_sym_default, 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, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [93490] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2322), 1, + sym__type_path, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [93516] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2353), 1, + sym__type_path, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [73806] = 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(2414), 1, - sym__lhs_expression, + [93542] = 7, + ACTIONS(3930), 1, + anon_sym_DASH_GT, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4383), 1, + anon_sym_EQ, + STATE(2173), 1, + sym__assignmentOperator, + STATE(2355), 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, - 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, + ACTIONS(4381), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [93566] = 6, + ACTIONS(1046), 1, + anon_sym_RBRACE, + ACTIONS(4230), 1, + anon_sym_DOT, + ACTIONS(4232), 1, + anon_sym_QMARK, 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(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4344), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [93588] = 8, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 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(4385), 1, + anon_sym_extends, + STATE(481), 1, + sym_block, + STATE(2422), 1, + sym_type_params, + STATE(2486), 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, + [93614] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2304), 1, + sym__type_path, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [93640] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2346), 1, + sym__type_path, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [93666] = 8, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2324), 1, + sym__type_path, + STATE(2325), 1, + aux_sym_package_statement_repeat1, + STATE(2368), 1, + sym_type_name, + STATE(2815), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [93692] = 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, - [74240] = 17, - ACTIONS(362), 1, + ACTIONS(4387), 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(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, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [93705] = 4, + ACTIONS(4366), 1, + anon_sym_else, + STATE(470), 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(1950), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [93722] = 4, + ACTIONS(4366), 1, + anon_sym_else, + STATE(491), 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, - [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, + ACTIONS(1974), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [93739] = 4, + ACTIONS(4366), 1, + anon_sym_else, + STATE(520), 1, + sym_else_clause, 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, + ACTIONS(1978), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [93756] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(679), 1, + sym_block, + STATE(2616), 1, + sym_type_params, + STATE(2619), 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, - [74488] = 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(1978), 1, - sym__lhs_expression, + [93779] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2310), 1, + aux_sym_package_statement_repeat1, + STATE(2384), 1, + sym_type_name, + STATE(2709), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [93802] = 6, + ACTIONS(151), 1, + sym__closing_brace_marker, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(292), 1, + sym__closing_brace, 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, + STATE(2374), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [93823] = 6, + ACTIONS(4098), 1, + sym__closing_brace_marker, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(1438), 1, + sym__closing_brace, 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, + STATE(2334), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [93844] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2311), 1, + aux_sym_package_statement_repeat1, + STATE(2670), 1, + sym_type_name, + STATE(2701), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [93867] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2351), 1, + aux_sym_package_statement_repeat1, + STATE(2816), 1, + sym_type_name, + STATE(2817), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [74736] = 17, - ACTIONS(362), 1, + [93890] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 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, + STATE(534), 1, + sym_block, + STATE(2514), 1, + sym_type_params, + STATE(2515), 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, - [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, + [93913] = 5, + ACTIONS(4393), 1, + anon_sym_DOT, + ACTIONS(4397), 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, - [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(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4395), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [93932] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2318), 1, + aux_sym_package_statement_repeat1, + STATE(2423), 1, + sym_type_name, + STATE(2736), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [74922] = 17, - ACTIONS(362), 1, + [93955] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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(1999), 1, - sym__lhs_expression, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(714), 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(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, + [93978] = 5, + ACTIONS(3558), 1, + sym__lookback_semicolon, + ACTIONS(4399), 1, + anon_sym_else, + STATE(470), 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, - [75046] = 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(1951), 1, - sym__lhs_expression, + ACTIONS(1950), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [93997] = 6, + ACTIONS(149), 1, + sym__closing_brace_marker, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(217), 1, + sym__closing_brace, 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, - 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, + STATE(2320), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [94018] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2315), 1, + aux_sym_package_statement_repeat1, + STATE(2372), 1, + sym_type_name, + STATE(2727), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [94041] = 5, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4401), 1, + anon_sym_DOT, + ACTIONS(4403), 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, - [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, + ACTIONS(1046), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [94060] = 6, + ACTIONS(4407), 1, + anon_sym_COLON, + ACTIONS(4409), 1, + anon_sym_QMARK, + ACTIONS(4411), 1, + anon_sym_EQ, + STATE(2170), 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, - [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(4405), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [94081] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2390), 1, + sym_type_name, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2711), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [94104] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2690), 1, + sym_type_name, + STATE(2796), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [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, + [94127] = 3, 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, + ACTIONS(1050), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1046), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [94142] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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(1994), 1, - sym__lhs_expression, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(804), 1, + sym_block, + STATE(2560), 1, + sym_type_params, + STATE(2561), 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, - [75544] = 17, - ACTIONS(362), 1, + [94165] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4352), 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(820), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(482), 1, + sym_block, + STATE(2488), 1, + sym_type_params, + STATE(2489), 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, - [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, + [94188] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2414), 1, + sym_type_name, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2728), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [94211] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2323), 1, + aux_sym_package_statement_repeat1, + STATE(2371), 1, + sym_type_name, + STATE(2698), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [94234] = 6, + ACTIONS(153), 1, + sym__closing_brace_marker, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(178), 1, + sym__closing_brace, 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, - 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(1933), 1, - sym__lhs_expression, + STATE(2339), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [94255] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2401), 1, + sym_type_name, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2712), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [75730] = 17, - ACTIONS(362), 1, + [94278] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4352), 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, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(459), 1, + sym_block, + STATE(2467), 1, + sym_type_params, + STATE(2468), 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(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, - 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(822), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [94301] = 6, + ACTIONS(149), 1, + sym__closing_brace_marker, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(206), 1, + sym__closing_brace, 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, - 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(2374), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [94322] = 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, - [75916] = 17, - ACTIONS(362), 1, + ACTIONS(3975), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + [94335] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 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(1927), 1, - sym__lhs_expression, + STATE(385), 1, + sym_block, + STATE(2492), 1, + sym_type_params, + STATE(2493), 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, - [75978] = 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(821), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [94358] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2396), 1, + sym_type_name, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2699), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [76040] = 17, - ACTIONS(362), 1, + [94381] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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(4336), 1, + anon_sym_implements, + STATE(682), 1, + sym_block, + STATE(2554), 1, + sym_type_params, + STATE(2555), 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, - 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, + [94404] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2398), 1, + sym_type_name, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2730), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [76164] = 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(1976), 1, - sym__lhs_expression, + [94427] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2387), 1, + sym_type_name, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2658), 1, + aux_sym__type_path_repeat1, + STATE(3281), 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, - [76226] = 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(1964), 1, - sym__lhs_expression, + [94450] = 4, + ACTIONS(4415), 1, + anon_sym_catch, 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, - 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, + STATE(2329), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2722), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [94467] = 4, + ACTIONS(4415), 1, + anon_sym_catch, 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, - 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(1966), 1, - sym__lhs_expression, + STATE(2329), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2728), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [94484] = 4, + ACTIONS(4417), 1, + anon_sym_catch, 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, - 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(2329), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2736), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [94501] = 4, + ACTIONS(4415), 1, + anon_sym_catch, 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, - 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, + STATE(2329), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2230), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [94518] = 3, 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, + STATE(2329), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2722), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [94533] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1524), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1508), 9, + STATE(2329), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2728), 4, + sym__closing_brace_marker, 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, + anon_sym_catch, + [94548] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2329), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2230), 4, 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, - [76575] = 17, - ACTIONS(137), 1, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [94563] = 6, + ACTIONS(4098), 1, sym__closing_brace_marker, - 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(3505), 1, - sym_identifier, - STATE(1600), 1, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(1448), 1, sym__closing_brace, - STATE(2042), 1, - sym_pair, - STATE(2536), 1, - sym_string, 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, + STATE(2374), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [94584] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(673), 1, + sym_block, + STATE(2573), 1, + sym_type_params, + STATE(2575), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [94607] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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(4336), 1, + anon_sym_implements, + STATE(748), 1, + sym_block, + STATE(2476), 1, + sym_type_params, + STATE(2477), 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, + [94630] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 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, + STATE(455), 1, + sym_block, + STATE(2527), 1, + sym_type_params, + STATE(2528), 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, + [94653] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 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(4413), 1, + anon_sym_extends, + STATE(662), 1, + sym_block, + STATE(2473), 1, + sym_type_params, + STATE(2474), 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(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [76819] = 17, - ACTIONS(139), 1, + [94676] = 6, + ACTIONS(153), 1, sym__closing_brace_marker, - 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(3505), 1, - sym_identifier, - STATE(269), 1, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(135), 1, sym__closing_brace, - STATE(2043), 1, - sym_pair, - STATE(2536), 1, - sym_string, 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, + STATE(2374), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [94697] = 4, + ACTIONS(4422), 1, anon_sym_EQ, - STATE(203), 1, - sym__assignmentOperator, 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, + ACTIONS(4420), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1086), 3, + anon_sym_DOT, 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, + [94714] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2326), 1, + aux_sym_package_statement_repeat1, + STATE(2403), 1, + sym_type_name, + STATE(2656), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, 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, + [94737] = 5, + ACTIONS(4244), 1, + anon_sym_EQ_GT, + ACTIONS(4306), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(4308), 1, 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(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, - anon_sym_LBRACE, + ACTIONS(1046), 3, 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, - [76985] = 3, + sym_identifier, + [94756] = 6, + ACTIONS(151), 1, + sym__closing_brace_marker, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(290), 1, + sym__closing_brace, 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, + STATE(2297), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [94777] = 3, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1102), 5, 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, - aux_sym_string_token1, - aux_sym_string_token3, - [77017] = 3, + [94792] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(737), 1, + sym_block, + STATE(2450), 1, + sym_type_params, + STATE(2451), 1, + aux_sym_class_declaration_repeat3, 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, + [94815] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(528), 1, + sym_block, + STATE(2509), 1, + sym_type_params, + STATE(2510), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [94838] = 5, + ACTIONS(4165), 1, anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1050), 2, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACE, + anon_sym_LT, + ACTIONS(4395), 2, anon_sym_COLON, + anon_sym_EQ_GT, + [94857] = 5, + ACTIONS(4244), 1, + anon_sym_EQ_GT, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4288), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1046), 3, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, + sym_identifier, + [94876] = 7, + ACTIONS(4324), 1, 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, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(397), 1, + sym_block, + STATE(2541), 1, + sym_type_params, + STATE(2542), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 9, + [94899] = 6, + ACTIONS(147), 1, + sym__closing_brace_marker, + ACTIONS(4389), 1, anon_sym_case, + ACTIONS(4391), 1, 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, + STATE(376), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2374), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [94920] = 7, + ACTIONS(4318), 1, + sym__camelCaseIdentifier, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2769), 1, + sym_type_name, + STATE(2777), 1, + aux_sym__type_path_repeat1, + STATE(3281), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [94943] = 6, + ACTIONS(147), 1, sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4389), 1, + anon_sym_case, + ACTIONS(4391), 1, + anon_sym_default, + STATE(372), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2350), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [94964] = 7, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, anon_sym_LBRACE, + STATE(484), 1, + sym_block, + STATE(2532), 1, + sym_type_params, + STATE(2533), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [94987] = 6, + ACTIONS(3040), 1, anon_sym_COMMA, + ACTIONS(3060), 1, + sym_identifier, + ACTIONS(3062), 1, + anon_sym_RBRACK, + ACTIONS(3736), 1, anon_sym_LBRACK, - anon_sym_QMARK, + STATE(2819), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95007] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3940), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [95019] = 6, + ACTIONS(4324), 1, anon_sym_LT, + ACTIONS(4346), 1, + anon_sym_LPAREN, + ACTIONS(4424), 1, + anon_sym_DOT, + STATE(192), 1, + sym__arg_list, + STATE(2895), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95039] = 5, + ACTIONS(4383), 1, + anon_sym_EQ, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + STATE(2173), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4381), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [95057] = 6, + ACTIONS(149), 1, + sym__closing_brace_marker, + ACTIONS(1960), 1, anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(1527), 1, + sym__closing_brace, + STATE(2440), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95077] = 4, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(175), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3940), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [95093] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4430), 1, + sym_escape_sequence, + ACTIONS(4428), 4, aux_sym_string_token1, - aux_sym_string_token3, - [77081] = 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [95109] = 4, + ACTIONS(4364), 1, + anon_sym_LT, + STATE(2659), 1, + sym_type_params, 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, + ACTIONS(3930), 3, sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [95125] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4424), 1, anon_sym_DOT, + ACTIONS(4432), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + STATE(1441), 1, + sym__arg_list, + STATE(3037), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95145] = 4, + ACTIONS(4364), 1, + anon_sym_LT, + STATE(2660), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3908), 3, + sym__closing_brace_marker, anon_sym_COMMA, - 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, + [95161] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4436), 1, + sym_escape_sequence, + ACTIONS(4434), 4, aux_sym_string_token1, - aux_sym_string_token3, - [77113] = 5, - ACTIONS(3515), 1, - anon_sym_EQ, - STATE(276), 1, - sym__assignmentOperator, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [95177] = 6, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3068), 1, + sym_identifier, + ACTIONS(3070), 1, + anon_sym_RBRACK, + ACTIONS(3736), 1, + anon_sym_LBRACK, + STATE(2674), 1, + aux_sym_array_repeat1, 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, + [95197] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4440), 1, + sym_escape_sequence, + ACTIONS(4438), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [95213] = 6, + ACTIONS(151), 1, sym__closing_brace_marker, + ACTIONS(1960), 1, + anon_sym_EQ_GT, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(258), 1, + sym__closing_brace, + STATE(2631), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95233] = 3, + ACTIONS(4424), 1, anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4442), 4, anon_sym_LBRACE, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [95247] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3971), 4, + anon_sym_RPAREN, 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, - [77149] = 4, - ACTIONS(3517), 1, + anon_sym_GT, anon_sym_EQ, + [95261] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1050), 1, + sym_escape_sequence, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(1054), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [95277] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4432), 1, + anon_sym_LPAREN, + STATE(1476), 1, + sym__arg_list, + STATE(2857), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95297] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(1549), 1, + sym__arg_list, + STATE(3125), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95317] = 6, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + ACTIONS(4446), 1, + anon_sym_extends, + STATE(540), 1, + sym_block, + STATE(2519), 1, + aux_sym_class_declaration_repeat3, 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, - 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, - [77183] = 14, - 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(3519), 1, - sym_identifier, - STATE(2213), 1, - sym_string, + [95337] = 5, + ACTIONS(4448), 1, + anon_sym_case, + ACTIONS(4451), 1, + anon_sym_default, + ACTIONS(4454), 1, + sym__closing_brace_marker, 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, - 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, + STATE(2374), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [95355] = 6, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3056), 1, sym_identifier, - STATE(2213), 1, - sym_string, - STATE(2443), 1, - sym_pair, + ACTIONS(3058), 1, + anon_sym_RBRACK, + ACTIONS(3736), 1, + anon_sym_LBRACK, + STATE(2853), 1, + aux_sym_array_repeat1, 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, + [95375] = 4, + ACTIONS(4399), 1, + anon_sym_else, + STATE(470), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1483), 10, + ACTIONS(1950), 3, + sym__closing_brace_marker, 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, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LBRACE, + [95391] = 6, + ACTIONS(3040), 1, anon_sym_COMMA, + ACTIONS(3072), 1, + sym_identifier, + ACTIONS(3074), 1, + anon_sym_RBRACK, + ACTIONS(3736), 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(2785), 1, + aux_sym_array_repeat1, 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, + [95411] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3999), 4, 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, - aux_sym_string_token1, - aux_sym_string_token3, - [77361] = 15, - 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(3505), 1, - sym_identifier, - STATE(2415), 1, - sym_pair, - STATE(2536), 1, - sym_string, + anon_sym_GT, + anon_sym_EQ, + [95425] = 6, + ACTIONS(4456), 1, + sym__camelCaseIdentifier, + ACTIONS(4458), 1, + sym__lookback_semicolon, + STATE(449), 1, + sym__semicolon, + STATE(2666), 1, + sym_package_name, + STATE(2693), 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(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [77416] = 14, - 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, + [95445] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4462), 1, + sym_escape_sequence, + ACTIONS(4460), 4, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3519), 1, - sym_identifier, - STATE(2213), 1, - sym_string, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [95461] = 4, + ACTIONS(4362), 1, + anon_sym_LPAREN, + STATE(265), 1, + sym__arg_list, 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, - 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(3940), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [95477] = 6, + ACTIONS(1960), 1, + anon_sym_EQ_GT, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(4098), 1, + sym__closing_brace_marker, + STATE(1473), 1, + sym__closing_brace, + STATE(2584), 1, + aux_sym_map_repeat1, 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, + [95497] = 6, + ACTIONS(4332), 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(4336), 1, + anon_sym_implements, + ACTIONS(4464), 1, + anon_sym_extends, + STATE(691), 1, + sym_block, + STATE(2593), 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(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, + [95517] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4362), 1, + anon_sym_LPAREN, + ACTIONS(4424), 1, anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_QMARK, + STATE(261), 1, + sym__arg_list, + STATE(3104), 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), 11, + [95537] = 6, + ACTIONS(153), 1, sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(1960), 1, + anon_sym_EQ_GT, + ACTIONS(3778), 1, anon_sym_COMMA, - anon_sym_LBRACK, + STATE(163), 1, + sym__closing_brace, + STATE(2462), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95557] = 4, + ACTIONS(4466), 1, 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, + STATE(1695), 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, + ACTIONS(3930), 3, sym__lookback_semicolon, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_DASH_GT, + [95573] = 6, + ACTIONS(4324), 1, 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(4346), 1, + anon_sym_LPAREN, + ACTIONS(4424), 1, + anon_sym_DOT, + STATE(185), 1, + sym__arg_list, + STATE(3066), 1, + sym_type_params, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1506), 1, - sym_escape_sequence, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3533), 1, + [95593] = 5, + ACTIONS(4468), 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, + ACTIONS(4472), 1, + sym__lookback_semicolon, + STATE(716), 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, + ACTIONS(4470), 2, + anon_sym_as, + anon_sym_in, + [95611] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3944), 5, 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, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [95623] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4362), 1, anon_sym_LPAREN, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(4424), 1, + anon_sym_DOT, + STATE(272), 1, + sym__arg_list, + STATE(3014), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3546), 6, - 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, + [95643] = 5, + ACTIONS(4474), 1, + anon_sym_DOT, + ACTIONS(4478), 1, + sym__lookback_semicolon, + STATE(485), 1, + sym__semicolon, 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, + ACTIONS(4476), 2, + anon_sym_as, + anon_sym_in, + [95661] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4482), 1, + sym_escape_sequence, + ACTIONS(4480), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [95677] = 2, 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, + ACTIONS(3956), 5, 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, - 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, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [95689] = 6, + ACTIONS(4456), 1, + sym__camelCaseIdentifier, + ACTIONS(4484), 1, + sym__lookback_semicolon, + STATE(783), 1, + sym__semicolon, + STATE(2681), 1, + sym_package_name, + STATE(2700), 1, + aux_sym_package_statement_repeat1, 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, + [95709] = 3, + ACTIONS(4356), 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, + ACTIONS(1960), 4, 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, - [77909] = 5, - ACTIONS(3578), 1, - anon_sym_EQ, - STATE(810), 1, - sym__assignmentOperator, + [95723] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4432), 1, + anon_sym_LPAREN, + STATE(1449), 1, + sym__arg_list, + STATE(3023), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95743] = 4, + ACTIONS(4399), 1, + anon_sym_else, + STATE(520), 1, + sym_else_clause, 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, - sym__lookback_semicolon, + ACTIONS(1978), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [95759] = 3, + ACTIONS(4424), 1, anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4486), 4, 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, - [77942] = 3, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [95773] = 4, + ACTIONS(4466), 1, + anon_sym_LT, + STATE(1696), 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), 13, + ACTIONS(3908), 3, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH_GT, + [95789] = 6, + ACTIONS(4324), 1, 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, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4488), 1, + anon_sym_LPAREN, + STATE(1837), 1, + sym__arg_list, + STATE(3043), 1, + sym_type_params, 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, + [95809] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4424), 1, anon_sym_DOT, + ACTIONS(4488), 1, anon_sym_LPAREN, + STATE(1762), 1, + sym__arg_list, + STATE(2954), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95829] = 6, + ACTIONS(4332), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4490), 1, + anon_sym_extends, + STATE(645), 1, + sym_block, + STATE(2428), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95849] = 6, + ACTIONS(4324), 1, 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, + ACTIONS(4346), 1, + anon_sym_LPAREN, + ACTIONS(4424), 1, + anon_sym_DOT, + STATE(167), 1, + sym__arg_list, + STATE(3096), 1, + sym_type_params, 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, + [95869] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, 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, - 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, - [78077] = 4, - ACTIONS(3586), 1, + ACTIONS(3960), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, anon_sym_EQ, + [95883] = 3, + ACTIONS(4424), 1, + anon_sym_DOT, 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, + ACTIONS(4492), 4, 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, - [78107] = 5, - ACTIONS(3588), 1, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [95897] = 5, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4498), 1, anon_sym_EQ, - STATE(276), 1, + STATE(2171), 1, sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3511), 7, + ACTIONS(4494), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [95915] = 6, + ACTIONS(147), 1, sym__closing_brace_marker, - anon_sym_LBRACE, - 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(1960), 1, + anon_sym_EQ_GT, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(1765), 1, + sym__closing_brace, + STATE(2434), 1, + aux_sym_map_repeat1, 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, - anon_sym_LPAREN, - anon_sym_LBRACE, + [95935] = 3, + ACTIONS(4344), 1, anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1960), 4, + anon_sym_DOT, + anon_sym_RBRACE, 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, + [95949] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4424), 1, anon_sym_DOT, - ACTIONS(3592), 1, - anon_sym_QMARK, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(1509), 1, + sym__arg_list, + STATE(2957), 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, + [95969] = 6, + ACTIONS(3038), 1, sym_identifier, - ACTIONS(1506), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_RBRACK, + ACTIONS(3736), 1, 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, + STATE(2731), 1, + aux_sym_array_repeat1, 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, + [95989] = 5, + ACTIONS(4500), 1, + anon_sym_DOT, + ACTIONS(4504), 1, + sym__lookback_semicolon, + STATE(622), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1480), 7, - sym__closing_brace_marker, - 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, + ACTIONS(4502), 2, + anon_sym_as, + anon_sym_in, + [96007] = 5, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4510), 1, + sym__lookback_semicolon, + STATE(466), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4508), 2, + anon_sym_as, + anon_sym_in, + [96025] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4362), 1, anon_sym_LPAREN, - ACTIONS(3604), 1, - anon_sym_AT, + ACTIONS(4424), 1, + anon_sym_DOT, + STATE(277), 1, + sym__arg_list, + STATE(2989), 1, + sym_type_params, 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, + [96045] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(1503), 1, + sym__arg_list, + STATE(2913), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3511), 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(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, + [96065] = 3, + ACTIONS(4328), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1506), 1, - sym_escape_sequence, - ACTIONS(3395), 1, sym_comment, - 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, - [78347] = 4, - ACTIONS(3), 1, + ACTIONS(1960), 4, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_EQ_GT, + [96079] = 5, + ACTIONS(4512), 1, + anon_sym_DOT, + ACTIONS(4516), 1, + sym__lookback_semicolon, + STATE(447), 1, + sym__semicolon, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1420), 1, - sym_escape_sequence, - ACTIONS(3395), 1, sym_comment, - ACTIONS(1422), 16, + ACTIONS(4514), 2, + anon_sym_as, + anon_sym_in, + [96097] = 6, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 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, - [78375] = 4, - ACTIONS(3586), 1, - anon_sym_EQ, + ACTIONS(4518), 1, + anon_sym_extends, + STATE(474), 1, + sym_block, + STATE(2479), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1480), 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(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, + [96117] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4346), 1, + anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_RBRACE, + STATE(153), 1, + sym__arg_list, + STATE(2988), 1, + sym_type_params, 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, + [96137] = 2, 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, + ACTIONS(3934), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [96149] = 5, + ACTIONS(4326), 1, + anon_sym_EQ, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + STATE(2174), 1, + sym__assignmentOperator, 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, + ACTIONS(4322), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [96167] = 6, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4522), 1, + anon_sym_extends, + STATE(758), 1, + sym_block, + STATE(2513), 1, + aux_sym_class_declaration_repeat3, 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, + [96187] = 6, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + ACTIONS(4524), 1, + anon_sym_extends, + STATE(510), 1, + sym_block, + STATE(2499), 1, + aux_sym_class_declaration_repeat3, 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, + [96207] = 6, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4488), 1, + anon_sym_LPAREN, + STATE(1959), 1, + sym__arg_list, + STATE(3048), 1, + sym_type_params, 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, + [96227] = 5, + ACTIONS(4528), 1, + sym__camelCaseIdentifier, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(3281), 1, + sym_package_name, 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(4526), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [96245] = 5, + ACTIONS(4226), 1, + anon_sym_EQ_GT, + ACTIONS(4531), 1, + anon_sym_DOT, + ACTIONS(4533), 1, + anon_sym_QMARK, 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, - [78615] = 3, - ACTIONS(3643), 1, - anon_sym_class, + ACTIONS(1046), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [96263] = 5, + ACTIONS(4535), 1, + anon_sym_DOT, + ACTIONS(4539), 1, + sym__lookback_semicolon, + STATE(664), 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, - [78637] = 3, - ACTIONS(3570), 1, - anon_sym_class, + ACTIONS(4537), 2, + anon_sym_as, + anon_sym_in, + [96281] = 4, + ACTIONS(4399), 1, + anon_sym_else, + STATE(491), 1, + sym_else_clause, 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(1974), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [96297] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(683), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, 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, + [96314] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4543), 1, + anon_sym_COLON, + ACTIONS(4545), 1, + sym__lookback_semicolon, + STATE(3150), 1, + sym_block, 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, + [96331] = 3, + ACTIONS(3472), 1, + sym__lookback_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, - [78725] = 3, + ACTIONS(4547), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [96344] = 5, + ACTIONS(3038), 1, + sym_identifier, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_RBRACK, + STATE(2731), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1502), 9, - anon_sym_DOT, + [96361] = 5, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3128), 1, anon_sym_RPAREN, - anon_sym_RBRACE, + STATE(2739), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96378] = 5, + ACTIONS(1046), 1, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(4395), 1, anon_sym_EQ_GT, - sym_identifier, - [78745] = 6, - ACTIONS(3649), 1, + ACTIONS(4549), 1, anon_sym_DOT, - ACTIONS(3653), 1, + ACTIONS(4551), 1, anon_sym_QMARK, 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, + [96395] = 5, + ACTIONS(147), 1, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, + ACTIONS(3778), 1, anon_sym_COMMA, - [78770] = 9, - ACTIONS(3), 1, + STATE(1876), 1, + sym__closing_brace, + STATE(2696), 1, + aux_sym_map_repeat1, + 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, + [96412] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3395), 1, + ACTIONS(3991), 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, + ACTIONS(4234), 1, + aux_sym_string_token3, + ACTIONS(4553), 1, + aux_sym_string_token4, + ACTIONS(4555), 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, + STATE(2438), 1, + aux_sym_string_repeat2, + [96431] = 5, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(1496), 1, + sym__arg_list, + STATE(3070), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, + [96448] = 5, + ACTIONS(3040), 1, anon_sym_COMMA, + ACTIONS(3068), 1, sym_identifier, - ACTIONS(1506), 2, - anon_sym_LPAREN, - 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(3070), 1, + anon_sym_RBRACK, + STATE(2674), 1, + aux_sym_array_repeat1, 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, + [96465] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3395), 1, + ACTIONS(3991), 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, + ACTIONS(4304), 1, + aux_sym_string_token3, + ACTIONS(4557), 1, + aux_sym_string_token4, + ACTIONS(4559), 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, + STATE(2601), 1, + aux_sym_string_repeat2, + [96484] = 5, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3150), 1, + anon_sym_RPAREN, + STATE(2663), 1, + aux_sym__arg_list_repeat1, 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, + [96501] = 5, + ACTIONS(149), 1, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [78934] = 9, - ACTIONS(3), 1, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(1497), 1, + sym__closing_brace, + STATE(2696), 1, + aux_sym_map_repeat1, + 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, + [96518] = 5, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3052), 1, + sym_identifier, + ACTIONS(3054), 1, + anon_sym_RBRACK, + STATE(2686), 1, + aux_sym_array_repeat1, 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, + [96535] = 5, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(4561), 1, anon_sym_RPAREN, + ACTIONS(4564), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [78988] = 7, + STATE(2779), 1, + aux_sym__function_type_args_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96552] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(1506), 1, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4246), 1, + aux_sym_string_token3, + ACTIONS(4566), 1, + aux_sym_string_token4, + ACTIONS(4568), 1, sym_escape_sequence, - ACTIONS(3395), 1, + STATE(2456), 1, + aux_sym_string_repeat2, + [96571] = 5, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(153), 1, + sym__arg_list, + STATE(2988), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, 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, + [96588] = 5, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3136), 1, + anon_sym_RPAREN, + STATE(2692), 1, + aux_sym__arg_list_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, + [96605] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(768), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96622] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(781), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96639] = 5, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4348), 1, + anon_sym_STAR, + STATE(2412), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96656] = 5, + ACTIONS(3040), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3064), 1, sym_identifier, - [79038] = 2, + ACTIONS(3066), 1, + anon_sym_RBRACK, + STATE(2707), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3323), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, + [96673] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(784), 1, + sym_block, + STATE(2548), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96690] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(785), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96707] = 5, + ACTIONS(4426), 1, anon_sym_DASH_GT, + ACTIONS(4570), 1, + anon_sym_COMMA, + ACTIONS(4572), 1, 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, + STATE(2702), 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(1524), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 3, - anon_sym_RPAREN, + [96724] = 5, + ACTIONS(3040), 1, anon_sym_COMMA, + ACTIONS(3060), 1, + sym_identifier, + ACTIONS(3062), 1, anon_sym_RBRACK, - [79078] = 2, + STATE(2819), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3379), 9, - anon_sym_LPAREN, + [96741] = 4, + ACTIONS(4383), 1, + anon_sym_EQ, + STATE(2173), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4381), 2, 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, + [96756] = 4, + ACTIONS(3510), 1, + sym__lookback_semicolon, + ACTIONS(4574), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(617), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [96771] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3395), 1, + ACTIONS(3991), 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, + ACTIONS(4302), 1, + aux_sym_string_token3, + ACTIONS(4557), 1, + aux_sym_string_token4, + ACTIONS(4559), 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, + STATE(2601), 1, + aux_sym_string_repeat2, + [96790] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4578), 1, + sym__lookback_semicolon, + STATE(3256), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1506), 2, + [96807] = 5, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4580), 1, anon_sym_LPAREN, + STATE(2465), 1, + sym__function_arg_list, + STATE(3076), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96824] = 5, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4582), 1, + anon_sym_STAR, + STATE(2391), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96841] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(692), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96858] = 5, + ACTIONS(4324), 1, anon_sym_LT, - ACTIONS(3671), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79150] = 7, - ACTIONS(2589), 1, + ACTIONS(4488), 1, + anon_sym_LPAREN, + STATE(1788), 1, + sym__arg_list, + STATE(2997), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96875] = 5, + ACTIONS(153), 1, + sym__closing_brace_marker, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(179), 1, + sym__closing_brace, + STATE(2696), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96892] = 5, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3044), 1, + sym_identifier, + ACTIONS(3046), 1, anon_sym_RBRACK, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + STATE(2640), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96909] = 5, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(4564), 1, + anon_sym_COMMA, + ACTIONS(4584), 1, + anon_sym_RPAREN, + STATE(2722), 1, + aux_sym__function_type_args_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96926] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(4588), 1, + sym__lookback_semicolon, + STATE(3376), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96943] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96960] = 5, + ACTIONS(4352), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(477), 1, + sym_block, + STATE(2480), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96977] = 5, + ACTIONS(4352), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(478), 1, + sym_block, + STATE(2828), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96994] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4590), 1, + anon_sym_COLON, + ACTIONS(4592), 1, + sym__lookback_semicolon, + STATE(3314), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97011] = 5, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(2609), 1, + sym__function_arg_list, + STATE(3075), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, + [97028] = 5, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3090), 1, 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, + ACTIONS(3170), 1, + anon_sym_RPAREN, + STATE(2856), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1502), 7, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_case, - anon_sym_default, + [97045] = 5, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(4570), 1, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ_GT, - [79194] = 9, - ACTIONS(3), 1, - 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, + ACTIONS(4594), 1, + anon_sym_GT, + STATE(2648), 1, + aux_sym_type_params_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(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, + [97062] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(697), 1, + sym_block, + STATE(2610), 1, + aux_sym_interface_declaration_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(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, + [97079] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(698), 1, + sym_block, + STATE(2828), 1, + aux_sym_interface_declaration_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(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, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_QMARK, + [97096] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, + ACTIONS(3975), 4, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_DASH_GT, 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, + [97107] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(801), 1, + sym_block, + STATE(2559), 1, + aux_sym_class_declaration_repeat3, + 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, + [97124] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(802), 1, + sym_block, + STATE(2818), 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, + [97141] = 4, + ACTIONS(4598), 1, + sym__lookback_semicolon, + STATE(699), 1, + sym__semicolon, + 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, + ACTIONS(4596), 2, + anon_sym_as, + anon_sym_in, + [97156] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_block, + STATE(2818), 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, - [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, + [97173] = 5, + ACTIONS(4352), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(503), 1, + sym_block, + STATE(2828), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [97190] = 5, + ACTIONS(3930), 1, anon_sym_DASH_GT, + ACTIONS(4466), 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, + ACTIONS(4600), 1, + sym__lookback_semicolon, + STATE(1695), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97207] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4602), 1, anon_sym_COLON, + ACTIONS(4604), 1, + sym__lookback_semicolon, + STATE(3185), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [97224] = 5, + ACTIONS(3930), 1, anon_sym_DASH_GT, + ACTIONS(4466), 1, anon_sym_LT, - [79496] = 3, - ACTIONS(3651), 1, - anon_sym_COLON, + ACTIONS(4606), 1, + sym__lookback_semicolon, + STATE(1695), 1, + sym_type_params, 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, + [97241] = 5, + ACTIONS(1046), 1, + sym__lookback_semicolon, + ACTIONS(4356), 1, anon_sym_EQ_GT, - [79513] = 6, - ACTIONS(3525), 1, + ACTIONS(4608), 1, anon_sym_DOT, - ACTIONS(3527), 1, + ACTIONS(4610), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - sym__closing_brace_marker, + [97258] = 5, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(4564), 1, anon_sym_COMMA, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3651), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79536] = 6, - ACTIONS(1502), 1, - sym__lookback_semicolon, - ACTIONS(3529), 1, - anon_sym_DOT, - ACTIONS(3531), 1, - anon_sym_QMARK, + ACTIONS(4612), 1, + anon_sym_RPAREN, + STATE(2779), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3727), 2, + [97275] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(511), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97292] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4615), 1, anon_sym_COLON, - anon_sym_EQ_GT, - [79558] = 6, - ACTIONS(1502), 1, + ACTIONS(4617), 1, sym__lookback_semicolon, - ACTIONS(3729), 1, - anon_sym_DOT, - ACTIONS(3731), 1, - anon_sym_QMARK, + STATE(3277), 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, - [79580] = 3, - ACTIONS(1524), 1, - anon_sym_COLON, + [97309] = 5, + ACTIONS(4352), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(515), 1, + sym_block, + STATE(2505), 1, + aux_sym_interface_declaration_repeat1, 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, + [97326] = 5, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3737), 1, + ACTIONS(4413), 1, anon_sym_extends, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(589), 1, + STATE(516), 1, sym_block, - STATE(2052), 1, - sym_type_params, - STATE(2070), 1, - aux_sym_class_declaration_repeat2, + STATE(2828), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79622] = 6, - ACTIONS(3735), 1, + [97343] = 5, + ACTIONS(4324), 1, anon_sym_LT, - ACTIONS(3741), 1, + ACTIONS(4580), 1, anon_sym_LPAREN, - STATE(195), 1, - sym__arg_list, - STATE(2047), 1, + STATE(2469), 1, + sym__function_arg_list, + STATE(2907), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [97360] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, anon_sym_DASH_GT, - [79644] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + ACTIONS(4619), 1, + sym__lookback_semicolon, + STATE(3140), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97377] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3745), 1, - anon_sym_extends, - STATE(326), 1, + STATE(526), 1, sym_block, - STATE(2044), 1, - sym_type_params, - STATE(2260), 1, - aux_sym_class_declaration_repeat2, + STATE(2508), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79670] = 3, - STATE(2453), 1, - sym__access_identifier, + [97394] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, 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, + [97411] = 5, + ACTIONS(4324), 1, anon_sym_LT, - STATE(2027), 1, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(2487), 1, + sym__function_arg_list, + STATE(3045), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3363), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + [97428] = 5, + ACTIONS(3930), 1, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [79704] = 3, - ACTIONS(3671), 1, - anon_sym_COLON, + ACTIONS(4466), 1, + anon_sym_LT, + ACTIONS(4621), 1, + sym__lookback_semicolon, + STATE(1695), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - sym_identifier, - [79720] = 8, - ACTIONS(3733), 1, + [97445] = 5, + ACTIONS(4541), 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, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4623), 1, + sym__lookback_semicolon, + STATE(3417), 1, sym_block, - STATE(2021), 1, - sym_type_params, - STATE(2283), 1, - aux_sym_class_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79746] = 6, - ACTIONS(3751), 1, - anon_sym_LPAREN, - ACTIONS(3753), 1, - anon_sym_LT, - STATE(241), 1, - sym__arg_list, - STATE(2008), 1, - sym_type_params, + [97462] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 3, + ACTIONS(3950), 4, sym__closing_brace_marker, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - [79768] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [97473] = 4, + ACTIONS(4627), 1, + sym__lookback_semicolon, + STATE(663), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4625), 2, + anon_sym_as, + anon_sym_in, + [97488] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3757), 1, - anon_sym_extends, - STATE(448), 1, + STATE(535), 1, sym_block, - STATE(2030), 1, - sym_type_params, - STATE(2152), 1, - aux_sym_class_declaration_repeat2, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79794] = 6, - ACTIONS(3735), 1, + [97505] = 5, + ACTIONS(3930), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, anon_sym_LT, - ACTIONS(3759), 1, - anon_sym_LPAREN, - STATE(195), 1, - sym__arg_list, - STATE(2039), 1, + ACTIONS(4629), 1, + sym__lookback_semicolon, + STATE(1695), 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, - anon_sym_EQ_GT, - ACTIONS(3761), 1, - anon_sym_DOT, - ACTIONS(3763), 1, - anon_sym_QMARK, + [97522] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, + anon_sym_COLON, + ACTIONS(4633), 1, + sym__lookback_semicolon, + STATE(3145), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - [79836] = 6, - ACTIONS(1502), 1, - anon_sym_RBRACE, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + [97539] = 5, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(2504), 1, + sym__function_arg_list, + STATE(3094), 1, + sym_type_params, 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, + [97556] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(541), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, 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, + [97573] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4635), 1, + anon_sym_COLON, + ACTIONS(4637), 1, + sym__lookback_semicolon, + STATE(3175), 1, + sym_block, 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, - anon_sym_implements, - ACTIONS(3755), 1, + [97590] = 5, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3769), 1, + ACTIONS(4413), 1, anon_sym_extends, - STATE(365), 1, + STATE(543), 1, sym_block, - STATE(2036), 1, - sym_type_params, - STATE(2116), 1, - aux_sym_class_declaration_repeat2, + STATE(2828), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79922] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - STATE(2026), 1, - sym_type_params, + [97607] = 4, + ACTIONS(4516), 1, + sym__lookback_semicolon, + STATE(447), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 5, - anon_sym_RPAREN, + ACTIONS(4514), 2, + anon_sym_as, + anon_sym_in, + [97622] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3878), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [79940] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [97633] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3771), 1, - anon_sym_extends, - STATE(365), 1, + STATE(566), 1, sym_block, - STATE(2038), 1, - sym_type_params, - STATE(2241), 1, - aux_sym_class_declaration_repeat2, + STATE(2818), 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, + [97650] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3773), 1, - anon_sym_extends, - STATE(326), 1, + STATE(567), 1, sym_block, - STATE(2049), 1, - sym_type_params, - STATE(2076), 1, - aux_sym_class_declaration_repeat2, + STATE(2523), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97667] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(568), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79992] = 7, - ACTIONS(3369), 1, + [97684] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 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, + ACTIONS(4639), 1, + sym__lookback_semicolon, + STATE(3224), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3775), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [80016] = 8, - ACTIONS(3733), 1, + [97701] = 4, + ACTIONS(4539), 1, + sym__lookback_semicolon, + STATE(664), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4537), 2, + anon_sym_as, + anon_sym_in, + [97716] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3779), 1, - anon_sym_extends, - STATE(502), 1, + STATE(722), 1, sym_block, - STATE(2051), 1, - sym_type_params, - STATE(2066), 1, - aux_sym_class_declaration_repeat2, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80042] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [97733] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3781), 1, - anon_sym_extends, - STATE(448), 1, + STATE(442), 1, sym_block, - STATE(2048), 1, - sym_type_params, - STATE(2268), 1, - aux_sym_class_declaration_repeat2, + STATE(2526), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80068] = 6, - ACTIONS(1630), 1, + [97750] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3783), 1, - anon_sym_else, - ACTIONS(3785), 1, - anon_sym_elseif, - STATE(2033), 1, + STATE(452), 1, sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1616), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [80090] = 7, - ACTIONS(3369), 1, + [97767] = 5, + ACTIONS(3930), 1, anon_sym_DASH_GT, - ACTIONS(3735), 1, + ACTIONS(4466), 1, anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_EQ, - STATE(1853), 1, - sym__assignmentOperator, - STATE(2026), 1, + ACTIONS(4641), 1, + sym__lookback_semicolon, + STATE(1695), 1, sym_type_params, 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, + [97784] = 5, + ACTIONS(4541), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(329), 1, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4643), 1, + sym__lookback_semicolon, + STATE(3264), 1, sym_block, - STATE(2077), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97801] = 5, + ACTIONS(3930), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, + anon_sym_LT, + ACTIONS(4645), 1, + sym__lookback_semicolon, + STATE(1695), 1, sym_type_params, - STATE(2078), 1, - aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80137] = 7, - ACTIONS(3733), 1, + [97818] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, + STATE(489), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97835] = 5, + ACTIONS(3930), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, anon_sym_LT, - ACTIONS(3739), 1, + ACTIONS(4647), 1, + sym__lookback_semicolon, + STATE(1695), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97852] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + anon_sym_COLON, + ACTIONS(4651), 1, + sym__lookback_semicolon, + STATE(3297), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97869] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4653), 1, + anon_sym_COLON, + ACTIONS(4655), 1, + sym__lookback_semicolon, + STATE(3184), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97886] = 5, + ACTIONS(4336), 1, anon_sym_implements, - STATE(658), 1, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(555), 1, sym_block, - STATE(2261), 1, - aux_sym_class_declaration_repeat2, - STATE(2271), 1, - sym_type_params, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97903] = 3, + ACTIONS(1434), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1086), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [97916] = 4, + ACTIONS(3542), 1, + sym__lookback_semicolon, + ACTIONS(4657), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80160] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + STATE(602), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [97931] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(412), 1, + STATE(387), 1, sym_block, - STATE(2227), 1, - aux_sym_class_declaration_repeat2, - STATE(2228), 1, - sym_type_params, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80183] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [97948] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(424), 1, + STATE(388), 1, sym_block, - STATE(2221), 1, - aux_sym_class_declaration_repeat2, - STATE(2225), 1, - sym_type_params, + STATE(2539), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80206] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [97965] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(419), 1, + STATE(389), 1, sym_block, - STATE(2215), 1, - aux_sym_class_declaration_repeat2, - STATE(2216), 1, - sym_type_params, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80229] = 4, - ACTIONS(3795), 1, - anon_sym_EQ, + [97982] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4659), 1, + sym__lookback_semicolon, + STATE(3394), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3793), 2, - anon_sym_RPAREN, + [97999] = 5, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(4564), 1, 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, - anon_sym_implements, - STATE(641), 1, - sym_block, - STATE(2200), 1, - aux_sym_class_declaration_repeat2, - STATE(2201), 1, - sym_type_params, + ACTIONS(4661), 1, + anon_sym_RPAREN, + STATE(2722), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80269] = 3, - ACTIONS(1520), 1, - anon_sym_EQ, + [98016] = 4, + ACTIONS(4510), 1, + sym__lookback_semicolon, + STATE(466), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1518), 5, - anon_sym_DOT, - anon_sym_RPAREN, - 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(4508), 2, + anon_sym_as, + anon_sym_in, + [98031] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_block, + STATE(2633), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80307] = 5, - ACTIONS(3801), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_QMARK, + [98048] = 5, + ACTIONS(4336), 1, + anon_sym_implements, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(396), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, + [98065] = 5, + ACTIONS(3930), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, anon_sym_LT, - ACTIONS(3803), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [80326] = 5, - ACTIONS(3671), 1, - anon_sym_EQ_GT, - ACTIONS(3807), 1, - anon_sym_DOT, - ACTIONS(3809), 1, - anon_sym_QMARK, + ACTIONS(4664), 1, + sym__lookback_semicolon, + STATE(1695), 1, + sym_type_params, 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, + [98082] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4666), 1, + sym__lookback_semicolon, + STATE(3460), 1, + sym_block, 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, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(526), 1, - sym_block, - STATE(2166), 1, - aux_sym_class_declaration_repeat2, - STATE(2168), 1, - sym_type_params, + [98099] = 3, + ACTIONS(3520), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80387] = 6, - ACTIONS(129), 1, + ACTIONS(4668), 3, sym__closing_brace_marker, - ACTIONS(3815), 1, anon_sym_case, - ACTIONS(3817), 1, anon_sym_default, - STATE(177), 1, - sym__closing_brace, + [98112] = 3, + ACTIONS(4670), 1, + anon_sym_COLON, 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, + ACTIONS(1960), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ_GT, + [98125] = 5, + ACTIONS(1046), 1, + anon_sym_COLON, + ACTIONS(4395), 1, + anon_sym_EQ_GT, + ACTIONS(4672), 1, + anon_sym_DOT, + ACTIONS(4674), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98142] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(424), 1, + STATE(410), 1, sym_block, - STATE(2222), 1, - sym_type_params, - STATE(2284), 1, - aux_sym_class_declaration_repeat2, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80431] = 5, - ACTIONS(3590), 1, - anon_sym_DOT, - ACTIONS(3592), 1, - anon_sym_QMARK, + [98159] = 5, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3076), 1, + sym_identifier, + ACTIONS(3078), 1, + anon_sym_RBRACK, + STATE(2683), 1, + aux_sym_array_repeat1, 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, + [98176] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(324), 1, + STATE(417), 1, sym_block, - STATE(2232), 1, - aux_sym_class_declaration_repeat2, - STATE(2233), 1, - sym_type_params, + STATE(2546), 1, + aux_sym_class_declaration_repeat3, 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, + [98193] = 5, + ACTIONS(4336), 1, anon_sym_implements, - STATE(543), 1, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(418), 1, sym_block, - STATE(2170), 1, - sym_type_params, - STATE(2286), 1, - aux_sym_class_declaration_repeat2, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80496] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + [98210] = 5, + ACTIONS(4541), 1, anon_sym_LBRACE, - STATE(327), 1, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4676), 1, + sym__lookback_semicolon, + STATE(3173), 1, sym_block, - STATE(2128), 1, - sym_type_params, - STATE(2129), 1, - aux_sym_class_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80519] = 2, + [98227] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3422), 6, - anon_sym_RPAREN, + ACTIONS(3975), 4, + sym__closing_brace_marker, anon_sym_COMMA, anon_sym_DASH_GT, 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, + [98238] = 4, + ACTIONS(4504), 1, + sym__lookback_semicolon, + STATE(622), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4502), 2, + anon_sym_as, + anon_sym_in, + [98253] = 5, + ACTIONS(4336), 1, anon_sym_implements, - STATE(618), 1, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(429), 1, sym_block, - STATE(2191), 1, - aux_sym_class_declaration_repeat2, - STATE(2192), 1, - sym_type_params, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, 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, + [98270] = 5, + ACTIONS(1046), 1, + sym__lookback_semicolon, + ACTIONS(4356), 1, + anon_sym_EQ_GT, + ACTIONS(4678), 1, + anon_sym_DOT, + ACTIONS(4680), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98287] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - STATE(327), 1, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(636), 1, sym_block, - STATE(2239), 1, - aux_sym_class_declaration_repeat2, - STATE(2240), 1, - sym_type_params, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80578] = 6, - ACTIONS(139), 1, + [98304] = 5, + ACTIONS(4682), 1, + anon_sym_COMMA, + ACTIONS(4684), 1, sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(280), 1, + STATE(2587), 1, + aux_sym_structure_type_repeat1, + STATE(2788), 1, sym__closing_brace, 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, + [98321] = 4, + ACTIONS(4688), 1, + sym__lookback_semicolon, + STATE(483), 1, + sym__semicolon, 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, + ACTIONS(4686), 2, + anon_sym_as, + anon_sym_in, + [98336] = 4, + ACTIONS(4478), 1, + sym__lookback_semicolon, + STATE(485), 1, + sym__semicolon, 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, - anon_sym_LBRACE, - STATE(487), 1, - sym_block, - STATE(2242), 1, - aux_sym_class_declaration_repeat2, - STATE(2243), 1, - sym_type_params, + ACTIONS(4476), 2, + anon_sym_as, + anon_sym_in, + [98351] = 4, + ACTIONS(4326), 1, + anon_sym_EQ, + STATE(2174), 1, + sym__assignmentOperator, 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, - anon_sym_LBRACE, - STATE(412), 1, - sym_block, - STATE(2207), 1, - sym_type_params, - STATE(2277), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(4322), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [98366] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80685] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(4387), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_as, + anon_sym_in, + [98377] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - STATE(324), 1, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(735), 1, sym_block, - STATE(2139), 1, - sym_type_params, - STATE(2140), 1, - aux_sym_class_declaration_repeat2, + STATE(2447), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80708] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + [98394] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - STATE(419), 1, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(736), 1, sym_block, - STATE(2235), 1, - aux_sym_class_declaration_repeat2, - STATE(2236), 1, - sym_type_params, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, 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, + [98411] = 4, + ACTIONS(4472), 1, + sym__lookback_semicolon, + STATE(716), 1, + sym__semicolon, 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, + ACTIONS(4470), 2, + anon_sym_as, + anon_sym_in, + [98426] = 5, + ACTIONS(1046), 1, + anon_sym_in, + ACTIONS(4328), 1, anon_sym_EQ_GT, - ACTIONS(3823), 1, + ACTIONS(4401), 1, anon_sym_DOT, - ACTIONS(3825), 1, + ACTIONS(4403), 1, anon_sym_QMARK, 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, + [98443] = 5, + ACTIONS(3930), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, + anon_sym_LT, + ACTIONS(4690), 1, + sym__lookback_semicolon, + STATE(1695), 1, + sym_type_params, 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, + [98460] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - STATE(487), 1, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(644), 1, sym_block, - STATE(2107), 1, - sym_type_params, - STATE(2108), 1, - aux_sym_class_declaration_repeat2, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80815] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3755), 1, + [98477] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(449), 1, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(647), 1, sym_block, - STATE(2057), 1, - sym_type_params, - STATE(2059), 1, - aux_sym_interface_declaration_repeat1, + STATE(2603), 1, + aux_sym_class_declaration_repeat3, 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, + [98494] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(649), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80861] = 6, - ACTIONS(137), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(301), 1, - sym__closing_brace, + [98511] = 5, + ACTIONS(1046), 1, + anon_sym_in, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4288), 1, + anon_sym_QMARK, + ACTIONS(4328), 1, + anon_sym_EQ_GT, 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, + [98528] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4692), 1, + sym__lookback_semicolon, + STATE(3387), 1, + sym_block, 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, + [98545] = 5, + ACTIONS(4340), 1, sym__pascalCaseIdentifier, - STATE(1997), 1, - aux_sym_package_statement_repeat1, - STATE(2357), 1, - aux_sym_import_statement_repeat1, - STATE(2418), 1, + ACTIONS(4694), 1, + anon_sym_STAR, + STATE(2426), 1, sym_type_name, - STATE(2652), 1, - sym_package_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80926] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, + [98562] = 5, + ACTIONS(1046), 1, + anon_sym_RBRACE, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4288), 1, + anon_sym_QMARK, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98579] = 5, + ACTIONS(4696), 1, + anon_sym_STAR, + ACTIONS(4698), 1, sym__pascalCaseIdentifier, - STATE(2001), 1, - aux_sym_package_statement_repeat1, - STATE(2358), 1, - aux_sym_import_statement_repeat1, - STATE(2420), 1, + STATE(2566), 1, + aux_sym__type_path_repeat1, + STATE(3187), 1, sym_type_name, - STATE(2652), 1, - sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80949] = 3, + [98596] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(655), 1, + sym_block, + STATE(2818), 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), 4, + [98613] = 4, + ACTIONS(4703), 1, 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, + STATE(517), 1, + sym__semicolon, 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(4701), 2, + anon_sym_as, + anon_sym_in, + [98628] = 5, + ACTIONS(1950), 1, + anon_sym_catch, + ACTIONS(3568), 1, + sym__lookback_semicolon, + ACTIONS(4705), 1, + anon_sym_else, + STATE(791), 1, + sym_else_clause, 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, + [98645] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4707), 1, + sym__lookback_semicolon, + STATE(3254), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 3, - 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, + [98662] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(668), 1, + sym_block, + STATE(2612), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81048] = 7, - ACTIONS(3733), 1, + [98679] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(603), 1, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(674), 1, sym_block, - STATE(2172), 1, - aux_sym_interface_declaration_repeat1, - STATE(2224), 1, - sym_type_params, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81071] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3743), 1, + [98696] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, + ACTIONS(4413), 1, anon_sym_extends, - STATE(329), 1, + STATE(656), 1, sym_block, - STATE(2258), 1, + STATE(2605), 1, aux_sym_interface_declaration_repeat1, - STATE(2259), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98713] = 5, + ACTIONS(3930), 1, + anon_sym_DASH_GT, + ACTIONS(4466), 1, + anon_sym_LT, + ACTIONS(4709), 1, + sym__lookback_semicolon, + STATE(1695), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81094] = 7, - ACTIONS(3733), 1, + [98730] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3791), 1, + ACTIONS(4413), 1, anon_sym_extends, - STATE(581), 1, + STATE(657), 1, sym_block, - STATE(2068), 1, + STATE(2828), 1, aux_sym_interface_declaration_repeat1, - STATE(2069), 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, + [98747] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4711), 1, + sym__lookback_semicolon, + STATE(3452), 1, + sym_block, 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, + [98764] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4252), 1, + aux_sym_string_token3, + ACTIONS(4713), 1, + aux_sym_string_token4, + ACTIONS(4715), 1, + sym_escape_sequence, + STATE(2582), 1, + aux_sym_string_repeat2, + [98783] = 5, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4432), 1, + anon_sym_LPAREN, + STATE(1469), 1, + sym__arg_list, + STATE(2985), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 3, - anon_sym_RPAREN, + [98800] = 5, + ACTIONS(3040), 1, anon_sym_COMMA, + ACTIONS(3072), 1, + sym_identifier, + ACTIONS(3074), 1, 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, + STATE(2785), 1, + aux_sym_array_repeat1, 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, + [98817] = 4, + ACTIONS(3530), 1, + sym__lookback_semicolon, + ACTIONS(4717), 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(2842), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [98832] = 3, + ACTIONS(4719), 1, + anon_sym_COLON, 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, + ACTIONS(1960), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [98845] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4278), 1, + aux_sym_string_token3, + ACTIONS(4557), 1, + aux_sym_string_token4, + ACTIONS(4559), 1, + sym_escape_sequence, + STATE(2601), 1, + aux_sym_string_repeat2, + [98864] = 4, + ACTIONS(4724), 1, + sym__lookback_semicolon, + STATE(546), 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(4722), 2, + anon_sym_as, + anon_sym_in, + [98879] = 5, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(4098), 1, + sym__closing_brace_marker, + STATE(1490), 1, + sym__closing_brace, + STATE(2696), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81270] = 7, - ACTIONS(3733), 1, + [98896] = 5, + ACTIONS(4541), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(568), 1, + ACTIONS(4726), 1, + anon_sym_COLON, + ACTIONS(4728), 1, + sym__lookback_semicolon, + STATE(3462), 1, sym_block, - STATE(2119), 1, - aux_sym_class_declaration_repeat2, - STATE(2175), 1, - sym_type_params, 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, + [98913] = 5, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3080), 1, + sym_identifier, + ACTIONS(3082), 1, + anon_sym_RBRACK, + STATE(2795), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98930] = 5, + ACTIONS(4682), 1, + anon_sym_COMMA, + ACTIONS(4684), 1, + sym__closing_brace_marker, + STATE(2710), 1, + sym__closing_brace, + STATE(2716), 1, + aux_sym_structure_type_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98947] = 5, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3234), 1, + anon_sym_RPAREN, + STATE(2799), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3787), 2, - anon_sym_RPAREN, + [98964] = 5, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(4570), 1, anon_sym_COMMA, - [81311] = 4, - ACTIONS(3), 1, + ACTIONS(4730), 1, + anon_sym_GT, + STATE(2803), 1, + aux_sym_type_params_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, + [98981] = 5, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4350), 1, + anon_sym_STAR, + STATE(2388), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 4, - anon_sym_DOT, + [98998] = 5, + ACTIONS(1046), 1, anon_sym_RBRACE, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4308), 1, anon_sym_QMARK, + ACTIONS(4344), 1, anon_sym_EQ_GT, - [81341] = 4, - ACTIONS(3751), 1, - anon_sym_LPAREN, - STATE(237), 1, - sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 3, - sym__closing_brace_marker, - anon_sym_COMMA, + [99015] = 5, + ACTIONS(4426), 1, anon_sym_DASH_GT, - [81357] = 4, - ACTIONS(3), 1, + ACTIONS(4564), 1, + anon_sym_COMMA, + ACTIONS(4732), 1, + anon_sym_RPAREN, + STATE(2779), 1, + aux_sym__function_type_args_repeat1, + 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, + [99032] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(749), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [81391] = 4, - ACTIONS(3849), 1, + [99049] = 5, + ACTIONS(4324), 1, anon_sym_LT, - STATE(1393), 1, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(2585), 1, + sym__function_arg_list, + STATE(2981), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3363), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, + [99066] = 5, + ACTIONS(3930), 1, anon_sym_DASH_GT, - [81407] = 4, - ACTIONS(3849), 1, + ACTIONS(4466), 1, anon_sym_LT, - STATE(1399), 1, + ACTIONS(4735), 1, + sym__lookback_semicolon, + STATE(1695), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 3, + [99083] = 4, + ACTIONS(3578), 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(4737), 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, - anon_sym_LBRACK, - STATE(2417), 1, - aux_sym_array_repeat1, + STATE(576), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99098] = 4, + ACTIONS(3582), 1, + sym__lookback_semicolon, + ACTIONS(4657), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81463] = 4, - ACTIONS(3), 1, - 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, - ACTIONS(3), 1, + STATE(607), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99113] = 4, + ACTIONS(3586), 1, + sym__lookback_semicolon, + ACTIONS(4737), 1, + anon_sym_catch, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3857), 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(580), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99128] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4739), 1, + anon_sym_COLON, + ACTIONS(4741), 1, sym__lookback_semicolon, - STATE(373), 1, - sym__semicolon, - STATE(2355), 1, - aux_sym_package_statement_repeat1, - STATE(2416), 1, - sym_package_name, + STATE(3239), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81515] = 4, - ACTIONS(3753), 1, + [99145] = 4, + ACTIONS(4324), 1, anon_sym_LT, - STATE(2359), 1, + STATE(3005), 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, - [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, - 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, - anon_sym_LBRACK, - STATE(2399), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [81571] = 6, - ACTIONS(3733), 1, + ACTIONS(4743), 2, anon_sym_LBRACE, - ACTIONS(3739), 1, anon_sym_implements, - ACTIONS(3863), 1, - anon_sym_extends, - STATE(531), 1, - sym_block, - STATE(2055), 1, - aux_sym_class_declaration_repeat2, - ACTIONS(3), 2, + [99160] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(3991), 1, sym_comment, - [81591] = 4, + ACTIONS(4745), 1, + aux_sym_string_token3, + ACTIONS(4747), 1, + aux_sym_string_token4, + ACTIONS(4750), 1, + sym_escape_sequence, + STATE(2601), 1, + aux_sym_string_repeat2, + [99179] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(1506), 1, - sym_escape_sequence, - ACTIONS(3395), 1, + ACTIONS(3991), 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, + ACTIONS(4290), 1, + aux_sym_string_token3, + ACTIONS(4753), 1, + aux_sym_string_token4, + ACTIONS(4755), 1, + sym_escape_sequence, + STATE(2629), 1, + aux_sym_string_repeat2, + [99198] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(715), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3865), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [81625] = 4, - ACTIONS(3753), 1, + [99215] = 4, + ACTIONS(4324), 1, anon_sym_LT, - STATE(2356), 1, + STATE(2861), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3363), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - 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(4757), 2, + anon_sym_LBRACE, + anon_sym_extends, + [99230] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_extends, + STATE(684), 1, + sym_block, + STATE(2828), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81661] = 2, + [99247] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(760), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, 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, + [99264] = 4, + ACTIONS(3590), 1, + sym__lookback_semicolon, + ACTIONS(4415), 1, + anon_sym_catch, 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, + STATE(2327), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99279] = 4, + ACTIONS(3594), 1, + sym__lookback_semicolon, + ACTIONS(4415), 1, + anon_sym_catch, 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, + STATE(2331), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99294] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4759), 1, + anon_sym_COLON, + ACTIONS(4761), 1, + sym__lookback_semicolon, + STATE(3190), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81717] = 6, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + [99311] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, + ACTIONS(4413), 1, anon_sym_extends, - STATE(378), 1, + STATE(763), 1, sym_block, - STATE(2080), 1, - aux_sym_class_declaration_repeat2, + STATE(2828), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81737] = 5, - ACTIONS(3777), 1, - anon_sym_EQ, - ACTIONS(3835), 1, + [99328] = 5, + ACTIONS(3930), 1, anon_sym_DASH_GT, - STATE(1852), 1, - sym__assignmentOperator, + ACTIONS(4466), 1, + anon_sym_LT, + ACTIONS(4763), 1, + sym__lookback_semicolon, + STATE(1695), 1, + sym_type_params, 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, - anon_sym_LBRACK, - STATE(2428), 1, - aux_sym_array_repeat1, + [99345] = 5, + ACTIONS(4332), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(728), 1, + sym_block, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81775] = 4, - ACTIONS(3873), 1, + [99362] = 4, + ACTIONS(2736), 1, anon_sym_else, - ACTIONS(3875), 1, - anon_sym_elseif, + ACTIONS(4765), 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, - ACTIONS(3), 2, + STATE(2613), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99377] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(3991), 1, 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, + ACTIONS(4258), 1, + aux_sym_string_token3, + ACTIONS(4768), 1, + aux_sym_string_token4, + ACTIONS(4770), 1, + sym_escape_sequence, + STATE(2630), 1, + aux_sym_string_repeat2, + [99396] = 5, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(4362), 1, + anon_sym_LPAREN, + STATE(253), 1, + sym__arg_list, + STATE(3113), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 4, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [81819] = 6, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + [99413] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - ACTIONS(3877), 1, - anon_sym_extends, - STATE(375), 1, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(729), 1, sym_block, - STATE(2144), 1, - aux_sym_class_declaration_repeat2, + STATE(2446), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81839] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + [99430] = 4, + ACTIONS(3598), 1, + sym__lookback_semicolon, + ACTIONS(4374), 1, + anon_sym_catch, 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, - anon_sym_implements, - ACTIONS(3743), 1, + STATE(2274), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99445] = 4, + ACTIONS(3602), 1, + sym__lookback_semicolon, + ACTIONS(4374), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2278), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99460] = 5, + ACTIONS(4332), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, - anon_sym_extends, - STATE(375), 1, + ACTIONS(4336), 1, + anon_sym_implements, + STATE(731), 1, sym_block, - STATE(2231), 1, - aux_sym_class_declaration_repeat2, + STATE(2818), 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, + [99477] = 5, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3056), 1, + sym_identifier, + ACTIONS(3058), 1, + anon_sym_RBRACK, + STATE(2853), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [99494] = 5, + ACTIONS(4541), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, anon_sym_DASH_GT, - [81889] = 4, - ACTIONS(3), 1, + ACTIONS(4772), 1, + sym__lookback_semicolon, + STATE(3291), 1, + sym_block, + ACTIONS(3), 2, 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, - anon_sym_LT, - ACTIONS(3759), 1, - anon_sym_LPAREN, - ACTIONS(3885), 1, - anon_sym_RBRACE, - STATE(195), 1, - sym__arg_list, - STATE(2585), 1, - sym_type_params, + [99511] = 4, + ACTIONS(3538), 1, + sym__lookback_semicolon, + ACTIONS(4574), 1, + anon_sym_catch, 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, + STATE(612), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99526] = 4, + ACTIONS(3618), 1, + sym__lookback_semicolon, + ACTIONS(4774), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81945] = 6, - ACTIONS(139), 1, - sym__closing_brace_marker, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(270), 1, - sym__closing_brace, - STATE(2199), 1, - aux_sym_map_repeat1, + STATE(573), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99541] = 4, + ACTIONS(4778), 1, + sym__lookback_semicolon, + STATE(767), 1, + sym__semicolon, 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, + ACTIONS(4776), 2, + anon_sym_as, + anon_sym_in, + [99556] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81985] = 6, - ACTIONS(2571), 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(2722), 2, + anon_sym_catch, + anon_sym_else, + STATE(2613), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99569] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82005] = 2, + ACTIONS(2728), 2, + anon_sym_catch, + anon_sym_else, + STATE(2613), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99582] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3305), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - 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(2230), 2, + anon_sym_catch, + anon_sym_else, + STATE(2613), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99595] = 4, + ACTIONS(3608), 1, + sym__lookback_semicolon, + ACTIONS(4780), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 3, - anon_sym_RPAREN, + STATE(2625), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99610] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4284), 1, + aux_sym_string_token3, + ACTIONS(4557), 1, + aux_sym_string_token4, + ACTIONS(4559), 1, + sym_escape_sequence, + STATE(2601), 1, + aux_sym_string_repeat2, + [99629] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(3991), 1, + sym_comment, + ACTIONS(4300), 1, + aux_sym_string_token3, + ACTIONS(4557), 1, + aux_sym_string_token4, + ACTIONS(4559), 1, + sym_escape_sequence, + STATE(2601), 1, + aux_sym_string_repeat2, + [99648] = 5, + ACTIONS(151), 1, + sym__closing_brace_marker, + ACTIONS(3778), 1, 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, + STATE(266), 1, + sym__closing_brace, + STATE(2696), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [99665] = 4, + ACTIONS(3614), 1, + sym__lookback_semicolon, + ACTIONS(4774), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82053] = 6, - ACTIONS(3739), 1, + STATE(586), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99680] = 5, + ACTIONS(4336), 1, anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_extends, - STATE(490), 1, + STATE(416), 1, sym_block, - STATE(2099), 1, - aux_sym_class_declaration_repeat2, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82073] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + [99697] = 3, + ACTIONS(4574), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3457), 4, - anon_sym_RPAREN, + STATE(615), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99709] = 4, + ACTIONS(3090), 1, 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, + ACTIONS(3170), 1, + anon_sym_RPAREN, + STATE(2856), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82107] = 6, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3895), 1, - anon_sym_extends, - STATE(664), 1, - sym_block, - STATE(2264), 1, - aux_sym_class_declaration_repeat2, + [99723] = 3, + ACTIONS(4657), 1, + anon_sym_catch, 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, + STATE(591), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99735] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4782), 1, + sym__camelCaseIdentifier, + STATE(2929), 1, + sym_type_name, 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, + [99749] = 3, + ACTIONS(4784), 1, sym__camelCaseIdentifier, - ACTIONS(3905), 1, - sym__lookback_semicolon, - STATE(524), 1, - sym__semicolon, - STATE(2331), 1, - aux_sym_package_statement_repeat1, - STATE(2332), 1, - sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82165] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(610), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(4696), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [99761] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4786), 1, + sym__camelCaseIdentifier, + STATE(3082), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82182] = 5, - ACTIONS(3907), 1, + [99775] = 4, + ACTIONS(3040), 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, + ACTIONS(4788), 1, + anon_sym_RBRACK, + STATE(2708), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82199] = 5, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(395), 1, - sym_block, - STATE(2083), 1, - aux_sym_interface_declaration_repeat1, + [99789] = 3, + ACTIONS(4574), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(604), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99801] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82216] = 5, - ACTIONS(3369), 1, + ACTIONS(3956), 3, + sym__closing_brace_marker, + anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(3911), 1, - sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + [99811] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4790), 1, + sym__camelCaseIdentifier, + STATE(3100), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82233] = 5, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(397), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [99825] = 4, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(3123), 1, + sym__parenthesized_expression, 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, + [99839] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3214), 1, + anon_sym_RPAREN, + STATE(2662), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82267] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - STATE(2610), 1, - sym_type_params, + [99853] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4796), 1, + anon_sym_DOT, + ACTIONS(4798), 1, + anon_sym_QMARK, 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, - sym__lookback_semicolon, - STATE(2861), 1, - sym_block, + [99867] = 3, + ACTIONS(4800), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82299] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3921), 1, + ACTIONS(4802), 2, anon_sym_COLON, - ACTIONS(3923), 1, - sym__lookback_semicolon, - STATE(2859), 1, - sym_block, + anon_sym_EQ_GT, + [99879] = 4, + ACTIONS(4570), 1, + anon_sym_COMMA, + ACTIONS(4804), 1, + anon_sym_GT, + STATE(2781), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82316] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - STATE(2540), 1, - sym_type_params, + [99893] = 3, + ACTIONS(4806), 1, + sym__camelCaseIdentifier, 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, + ACTIONS(4696), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [99905] = 4, + ACTIONS(1132), 1, anon_sym_EQ_GT, - ACTIONS(3927), 1, + ACTIONS(4306), 1, anon_sym_DOT, - ACTIONS(3929), 1, + ACTIONS(4308), 1, anon_sym_QMARK, 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, + [99919] = 3, + ACTIONS(2728), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82365] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, + STATE(2802), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [99931] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4547), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [99941] = 4, + ACTIONS(3090), 1, anon_sym_COMMA, - ACTIONS(2745), 1, + ACTIONS(3150), 1, anon_sym_RPAREN, - STATE(2429), 1, + STATE(2663), 1, aux_sym__arg_list_repeat1, 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, + [99955] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4808), 1, + sym__camelCaseIdentifier, + STATE(2979), 1, + sym_type_name, 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, + [99969] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4810), 1, + sym__camelCaseIdentifier, + STATE(2987), 1, + sym_type_name, 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, + [99983] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2387), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82433] = 6, - ACTIONS(3), 1, + [99997] = 3, + ACTIONS(4812), 1, + sym__camelCaseIdentifier, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3695), 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, - [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, + ACTIONS(4696), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [100009] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2356), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, 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, + [100023] = 2, 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, + ACTIONS(3940), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [100033] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82503] = 5, - ACTIONS(2571), 1, + ACTIONS(3944), 3, + sym__closing_brace_marker, anon_sym_COMMA, - ACTIONS(2587), 1, - sym_identifier, - ACTIONS(2589), 1, - anon_sym_RBRACK, - STATE(2426), 1, - aux_sym_array_repeat1, + anon_sym_DASH_GT, + [100043] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3216), 1, + anon_sym_RPAREN, + STATE(2774), 1, + aux_sym__arg_list_repeat1, 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, + [100057] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(4814), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82537] = 5, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(495), 1, - sym_block, - STATE(2101), 1, - aux_sym_interface_declaration_repeat1, + [100071] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3216), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__arg_list_repeat1, 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, + [100085] = 4, + ACTIONS(1978), 1, + anon_sym_catch, + ACTIONS(4705), 1, + anon_sym_else, + STATE(709), 1, + sym_else_clause, 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, + [100099] = 3, + ACTIONS(2230), 1, + anon_sym_catch, 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, + STATE(2802), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [100111] = 4, + ACTIONS(4816), 1, + anon_sym_DOT, + ACTIONS(4818), 1, + sym__lookback_semicolon, + STATE(445), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82605] = 6, - ACTIONS(3), 1, + [100125] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3128), 1, + anon_sym_RPAREN, + STATE(2739), 1, + aux_sym__arg_list_repeat1, + 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, - anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_LPAREN, - STATE(1282), 1, - sym__arg_list, - STATE(2477), 1, - sym_type_params, + [100139] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4820), 1, + sym__camelCaseIdentifier, + STATE(3059), 1, + sym_type_name, 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, + [100153] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4822), 1, + sym__camelCaseIdentifier, + STATE(3073), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82658] = 5, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(3949), 1, + [100167] = 4, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4824), 1, sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + STATE(448), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100181] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82675] = 5, - ACTIONS(137), 1, + ACTIONS(3934), 3, sym__closing_brace_marker, - ACTIONS(3197), 1, anon_sym_COMMA, - STATE(1473), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + anon_sym_DASH_GT, + [100191] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, 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, + ACTIONS(3960), 2, sym__lookback_semicolon, - STATE(2806), 1, - sym_block, + anon_sym_LBRACE, + [100203] = 3, + ACTIONS(4826), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82709] = 5, - ACTIONS(2571), 1, + ACTIONS(4696), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [100215] = 4, + ACTIONS(3040), 1, anon_sym_COMMA, - ACTIONS(2583), 1, - sym_identifier, - ACTIONS(2585), 1, + ACTIONS(3054), 1, anon_sym_RBRACK, - STATE(2399), 1, + STATE(2708), 1, aux_sym_array_repeat1, 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, + [100229] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, 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, + ACTIONS(3971), 2, sym__lookback_semicolon, - STATE(2802), 1, - sym_block, + anon_sym_LBRACE, + [100241] = 4, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(4828), 1, + anon_sym_RBRACK, + STATE(2724), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82760] = 5, - ACTIONS(129), 1, - sym__closing_brace_marker, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(186), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + [100255] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, 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, + ACTIONS(3999), 2, + sym__lookback_semicolon, + anon_sym_LBRACE, + [100267] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4830), 1, + sym__camelCaseIdentifier, + STATE(3114), 1, + sym_type_name, 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, + [100281] = 3, + ACTIONS(4657), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82811] = 6, - ACTIONS(3), 1, + STATE(602), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [100293] = 4, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4832), 1, + sym__lookback_semicolon, + STATE(665), 1, + sym__semicolon, + 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, + [100307] = 4, + ACTIONS(4816), 1, + anon_sym_DOT, + ACTIONS(4834), 1, + sym__lookback_semicolon, + STATE(621), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82847] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3961), 1, + [100321] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3136), 1, anon_sym_RPAREN, - ACTIONS(3964), 1, + STATE(2692), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100335] = 4, + ACTIONS(3040), 1, anon_sym_COMMA, - STATE(2423), 1, - aux_sym__function_type_args_repeat1, + ACTIONS(4836), 1, + anon_sym_RBRACK, + STATE(2708), 1, + aux_sym_array_repeat1, 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, + [100349] = 3, + ACTIONS(4574), 1, + anon_sym_catch, 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, + STATE(600), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [100361] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4838), 1, + sym__camelCaseIdentifier, + STATE(2956), 1, + sym_type_name, 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, + [100375] = 4, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(4840), 1, + anon_sym_RBRACK, + STATE(2708), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82915] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [100389] = 4, + ACTIONS(4816), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + sym__lookback_semicolon, + STATE(465), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82932] = 5, - ACTIONS(3197), 1, + [100403] = 4, + ACTIONS(3090), 1, anon_sym_COMMA, - ACTIONS(3507), 1, - sym__closing_brace_marker, - STATE(1314), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + ACTIONS(3126), 1, + anon_sym_RPAREN, + STATE(2697), 1, + aux_sym__arg_list_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, + [100417] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_DOT, + ACTIONS(4846), 1, + anon_sym_QMARK, 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, + [100431] = 4, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4848), 1, sym__lookback_semicolon, - STATE(2698), 1, - sym_block, + STATE(467), 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, + [100445] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83000] = 5, - ACTIONS(2571), 1, + ACTIONS(4668), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [100455] = 4, + ACTIONS(3090), 1, anon_sym_COMMA, - ACTIONS(2595), 1, - sym_identifier, - ACTIONS(2597), 1, - anon_sym_RBRACK, - STATE(2374), 1, - aux_sym_array_repeat1, + ACTIONS(3126), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__arg_list_repeat1, 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, + [100469] = 4, + ACTIONS(4456), 1, + sym__camelCaseIdentifier, + STATE(2424), 1, + aux_sym_package_statement_repeat1, + STATE(2687), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83034] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, + [100483] = 4, + ACTIONS(4794), 1, anon_sym_LPAREN, - STATE(2126), 1, - sym__function_arg_list, - STATE(2515), 1, - sym_type_params, - 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, + ACTIONS(4850), 1, + sym_identifier, + STATE(2965), 1, + sym__parenthesized_expression, 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, + [100497] = 3, + ACTIONS(1960), 1, + anon_sym_EQ_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(4852), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [100509] = 4, + ACTIONS(4852), 1, + sym__closing_brace_marker, + ACTIONS(4854), 1, + anon_sym_COMMA, + STATE(2696), 1, + aux_sym_map_repeat1, 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, + [100523] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(4857), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__arg_list_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, + [100537] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2396), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_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, + [100551] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2362), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83153] = 5, - ACTIONS(3996), 1, + [100565] = 4, + ACTIONS(4456), 1, sym__camelCaseIdentifier, - ACTIONS(3999), 1, - sym__pascalCaseIdentifier, - STATE(2113), 1, + STATE(2424), 1, aux_sym_package_statement_repeat1, - STATE(2652), 1, + STATE(2713), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83170] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2747), 1, - anon_sym_RPAREN, - STATE(2368), 1, - aux_sym__arg_list_repeat1, + [100579] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2566), 1, + aux_sym__type_path_repeat1, + STATE(2690), 1, + sym_type_name, 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, + [100593] = 4, + ACTIONS(4570), 1, + anon_sym_COMMA, + ACTIONS(4859), 1, + anon_sym_GT, + STATE(2781), 1, + aux_sym_type_params_repeat1, 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, + [100607] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4861), 1, + anon_sym_DOT, + ACTIONS(4863), 1, + anon_sym_QMARK, 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, + [100621] = 2, 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, + ACTIONS(4526), 3, + anon_sym_STAR, + sym__camelCaseIdentifier, + sym__pascalCaseIdentifier, + [100631] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, 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, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [100643] = 4, + ACTIONS(4794), 1, + anon_sym_LPAREN, + ACTIONS(4865), 1, + sym_identifier, + STATE(3086), 1, + sym__parenthesized_expression, 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, + [100657] = 4, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(4867), 1, + anon_sym_RBRACK, + STATE(2708), 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, + [100671] = 4, + ACTIONS(3260), 1, + anon_sym_RBRACK, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4011), 1, - anon_sym_GT, - STATE(2365), 1, - aux_sym_type_params_repeat1, + STATE(2708), 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, - anon_sym_EQ_GT, - ACTIONS(3823), 1, - anon_sym_DOT, - ACTIONS(3825), 1, - anon_sym_QMARK, + [100685] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2390), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, 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, + [100699] = 2, 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, + ACTIONS(4872), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [100709] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2413), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83357] = 3, - ACTIONS(1592), 1, - sym__lookback_semicolon, + [100723] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2400), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1544), 3, + [100737] = 4, + ACTIONS(4816), 1, 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, + ACTIONS(4874), 1, sym__lookback_semicolon, - STATE(2707), 1, - sym_block, + STATE(707), 1, + sym__semicolon, 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, + [100751] = 3, + ACTIONS(4670), 1, + anon_sym_EQ_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(4876), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [100763] = 4, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4878), 1, + sym__lookback_semicolon, + STATE(487), 1, + sym__semicolon, 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, + [100777] = 4, + ACTIONS(4880), 1, + anon_sym_COMMA, + ACTIONS(4883), 1, + sym__closing_brace_marker, + STATE(2716), 1, + aux_sym_structure_type_repeat1, 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, + [100791] = 3, + ACTIONS(4887), 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(4885), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [100803] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(4889), 1, + sym__camelCaseIdentifier, + STATE(2905), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83472] = 2, + [100817] = 3, + ACTIONS(1960), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3422), 4, - sym__lookback_semicolon, - anon_sym_LBRACE, + ACTIONS(4852), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [100829] = 3, + ACTIONS(4887), 1, 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, 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, + ACTIONS(3960), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [100841] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4608), 1, + anon_sym_DOT, + ACTIONS(4610), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83517] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3964), 1, + [100855] = 4, + ACTIONS(4564), 1, anon_sym_COMMA, - ACTIONS(4037), 1, + ACTIONS(4891), 1, anon_sym_RPAREN, - STATE(2423), 1, + STATE(2832), 1, aux_sym__function_type_args_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, + [100869] = 4, + ACTIONS(4794), 1, + anon_sym_LPAREN, + ACTIONS(4893), 1, sym_identifier, - STATE(2678), 1, - sym_integer, + STATE(2931), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83551] = 6, - ACTIONS(3), 1, + [100883] = 4, + ACTIONS(4852), 1, + anon_sym_RBRACK, + ACTIONS(4895), 1, + anon_sym_COMMA, + STATE(2724), 1, + aux_sym_map_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, + [100897] = 3, + ACTIONS(4887), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83587] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_block, - STATE(2280), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(3971), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [100909] = 3, + ACTIONS(4887), 1, + anon_sym_DASH_GT, 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, + ACTIONS(3999), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [100921] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2414), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, 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, + [100935] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2409), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, 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, + [100949] = 3, + ACTIONS(4898), 1, + sym__camelCaseIdentifier, 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, + ACTIONS(4696), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [100961] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2405), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, 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, + [100975] = 4, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3066), 1, + anon_sym_RBRACK, + STATE(2708), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83689] = 2, + [100989] = 3, + ACTIONS(4657), 1, + anon_sym_catch, 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, + STATE(610), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101001] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4900), 1, + anon_sym_DOT, + ACTIONS(4902), 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, + [101015] = 4, + ACTIONS(3088), 1, + anon_sym_RPAREN, + ACTIONS(3090), 1, + anon_sym_COMMA, + STATE(2793), 1, + aux_sym__arg_list_repeat1, 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, + [101029] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4904), 1, + anon_sym_DOT, + ACTIONS(4906), 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, + [101043] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2401), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83768] = 2, + [101057] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4908), 1, + anon_sym_DOT, + ACTIONS(4910), 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, + [101071] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4912), 1, + anon_sym_DOT, + ACTIONS(4914), 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, + [101085] = 4, + ACTIONS(3088), 1, + anon_sym_RPAREN, + ACTIONS(3090), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__arg_list_repeat1, 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, + [101099] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4916), 1, + anon_sym_DOT, + ACTIONS(4918), 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, + [101113] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4920), 1, + anon_sym_DOT, + ACTIONS(4922), 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, + [101127] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4924), 1, + anon_sym_DOT, + ACTIONS(4926), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83864] = 6, - ACTIONS(3), 1, + [101141] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4928), 1, + anon_sym_DOT, + ACTIONS(4930), 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, + [101155] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4932), 1, + anon_sym_DOT, + ACTIONS(4934), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83900] = 6, - ACTIONS(3), 1, + [101169] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 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, + [101183] = 4, + ACTIONS(1132), 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, - [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, + [101197] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4678), 1, + anon_sym_DOT, + ACTIONS(4680), 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, + [101211] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4940), 1, + anon_sym_DOT, + ACTIONS(4942), 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, + [101225] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4286), 1, + anon_sym_DOT, + ACTIONS(4288), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83987] = 5, - ACTIONS(1502), 1, - sym__lookback_semicolon, - ACTIONS(3727), 1, + [101239] = 4, + ACTIONS(1132), 1, anon_sym_EQ_GT, - ACTIONS(4071), 1, + ACTIONS(4531), 1, anon_sym_DOT, - ACTIONS(4073), 1, + ACTIONS(4533), 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, + [101253] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4944), 1, + anon_sym_DOT, + ACTIONS(4946), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84021] = 3, - ACTIONS(2937), 1, - sym__lookback_semicolon, + [101267] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4401), 1, + anon_sym_DOT, + ACTIONS(4403), 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, + [101281] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4948), 1, + anon_sym_DOT, + ACTIONS(4950), 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, + [101295] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4952), 1, + anon_sym_DOT, + ACTIONS(4954), 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, + [101309] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4672), 1, + anon_sym_DOT, + ACTIONS(4674), 1, + anon_sym_QMARK, 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, + [101323] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4296), 1, + anon_sym_DOT, + ACTIONS(4298), 1, + anon_sym_QMARK, 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, + [101337] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_QMARK, 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, + [101351] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(4958), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84136] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(504), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [101365] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84153] = 5, - ACTIONS(3915), 1, + ACTIONS(4960), 3, + sym__lookback_semicolon, anon_sym_LBRACE, - ACTIONS(4083), 1, anon_sym_COLON, - ACTIONS(4085), 1, - sym__lookback_semicolon, - STATE(2790), 1, - sym_block, + [101375] = 4, + ACTIONS(4962), 1, + anon_sym_RPAREN, + ACTIONS(4964), 1, + anon_sym_COMMA, + STATE(2778), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84170] = 5, - ACTIONS(3735), 1, + [101389] = 4, + ACTIONS(4324), 1, anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2133), 1, - sym__function_arg_list, - STATE(2514), 1, + ACTIONS(4966), 1, + anon_sym_EQ, + STATE(3158), 1, sym_type_params, 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, + [101403] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(4968), 1, + anon_sym_DOT, + ACTIONS(4970), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84204] = 2, + [101417] = 4, + ACTIONS(1950), 1, + anon_sym_catch, + ACTIONS(4705), 1, + anon_sym_else, + STATE(791), 1, + sym_else_clause, 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, + [101431] = 3, + ACTIONS(4574), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(617), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101443] = 4, + ACTIONS(4324), 1, anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2134), 1, - sym__function_arg_list, - STATE(2521), 1, + ACTIONS(4972), 1, + anon_sym_EQ, + STATE(3165), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84232] = 6, - ACTIONS(3), 1, + [101457] = 3, + ACTIONS(4670), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, 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, + ACTIONS(4974), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [101469] = 4, + ACTIONS(1974), 1, + anon_sym_catch, + ACTIONS(4705), 1, + anon_sym_else, + STATE(669), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101483] = 4, + ACTIONS(4324), 1, anon_sym_LT, - ACTIONS(3759), 1, - anon_sym_LPAREN, - STATE(195), 1, - sym__arg_list, - STATE(2585), 1, + ACTIONS(4976), 1, + anon_sym_EQ, + STATE(3168), 1, sym_type_params, 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, + [101497] = 4, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(4978), 1, + sym__lookback_semicolon, + STATE(717), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84285] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3751), 1, - anon_sym_LPAREN, - STATE(241), 1, - sym__arg_list, - STATE(2550), 1, - sym_type_params, + [101511] = 4, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(4980), 1, + anon_sym_RBRACK, + STATE(2724), 1, + aux_sym_map_repeat1, 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, + [101525] = 3, + ACTIONS(4670), 1, + anon_sym_EQ_GT, 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, + ACTIONS(4982), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [101537] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, 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, + ACTIONS(3254), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [101549] = 2, 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, + ACTIONS(4984), 3, sym__lookback_semicolon, - STATE(2621), 1, - sym_block, + anon_sym_LBRACE, + anon_sym_COLON, + [101559] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(4986), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84370] = 4, - ACTIONS(3777), 1, - anon_sym_EQ, - STATE(1852), 1, - sym__assignmentOperator, + [101573] = 4, + ACTIONS(3254), 1, + anon_sym_RPAREN, + ACTIONS(4988), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101587] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4991), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [101597] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2566), 1, + aux_sym__type_path_repeat1, + STATE(2680), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3775), 2, + [101611] = 4, + ACTIONS(4993), 1, anon_sym_RPAREN, + ACTIONS(4995), 1, anon_sym_COMMA, - [84385] = 5, - ACTIONS(2571), 1, + STATE(2778), 1, + aux_sym__function_arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101625] = 4, + ACTIONS(4564), 1, anon_sym_COMMA, - ACTIONS(2607), 1, - sym_identifier, - ACTIONS(2609), 1, - anon_sym_RBRACK, - STATE(2318), 1, - aux_sym_array_repeat1, + ACTIONS(4998), 1, + anon_sym_RPAREN, + STATE(2832), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84402] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, + [101639] = 3, + ACTIONS(4426), 1, anon_sym_DASH_GT, - ACTIONS(4097), 1, - sym__lookback_semicolon, - STATE(2622), 1, - sym_block, 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, + ACTIONS(5000), 2, + anon_sym_COMMA, + anon_sym_GT, + [101651] = 4, + ACTIONS(5000), 1, + anon_sym_GT, + ACTIONS(5002), 1, + anon_sym_COMMA, + STATE(2781), 1, + aux_sym_type_params_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, + [101665] = 4, + ACTIONS(1132), 1, + anon_sym_EQ_GT, + ACTIONS(5005), 1, + anon_sym_DOT, + ACTIONS(5007), 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, + [101679] = 3, + ACTIONS(4717), 1, + anon_sym_catch, 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, + STATE(2842), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101691] = 4, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(5009), 1, + anon_sym_EQ, + STATE(3392), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101705] = 4, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3082), 1, + anon_sym_RBRACK, + STATE(2708), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101719] = 4, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(5011), 1, + anon_sym_RBRACK, + STATE(2724), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84487] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4103), 1, - sym__lookback_semicolon, - STATE(2730), 1, - sym_block, + [101733] = 3, + ACTIONS(4717), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84504] = 6, - ACTIONS(3), 1, - 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, + STATE(2651), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101745] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84540] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, + ACTIONS(5013), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2703), 1, + anon_sym_EQ, + [101755] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3234), 1, anon_sym_RPAREN, - STATE(2326), 1, + STATE(2799), 1, aux_sym__arg_list_repeat1, 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, - 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, - sym__lookback_semicolon, - STATE(2729), 1, - sym_block, + [101769] = 3, + ACTIONS(4670), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84591] = 5, - ACTIONS(139), 1, - sym__closing_brace_marker, - ACTIONS(3197), 1, + ACTIONS(5015), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(255), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + [101781] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(5017), 1, + sym__camelCaseIdentifier, + STATE(3087), 1, + sym_type_name, 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, + [101795] = 3, + ACTIONS(5019), 1, + sym__camelCaseIdentifier, 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, + ACTIONS(4696), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [101807] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(5021), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__arg_list_repeat1, 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, + [101821] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84659] = 5, - ACTIONS(2571), 1, + ACTIONS(5023), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2603), 1, - sym_identifier, - ACTIONS(2605), 1, + [101833] = 4, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(5025), 1, anon_sym_RBRACK, - STATE(2290), 1, + STATE(2708), 1, aux_sym_array_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, + [101847] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2566), 1, + aux_sym__type_path_repeat1, + STATE(2715), 1, + sym_type_name, 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, + [101861] = 3, + ACTIONS(4717), 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(2665), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101873] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3196), 1, + anon_sym_RPAREN, + STATE(2804), 1, + aux_sym__arg_list_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, + [101887] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3196), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84744] = 4, - ACTIONS(3789), 1, + [101901] = 4, + ACTIONS(4324), 1, + anon_sym_LT, + ACTIONS(5027), 1, anon_sym_EQ, - STATE(1853), 1, - sym__assignmentOperator, + STATE(3215), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3787), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [84759] = 5, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2599), 1, - sym_identifier, - ACTIONS(2601), 1, - anon_sym_RBRACK, - STATE(2428), 1, - aux_sym_array_repeat1, + [101915] = 3, + ACTIONS(4774), 1, + anon_sym_catch, 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, - anon_sym_RPAREN, - STATE(2313), 1, - aux_sym__function_type_args_repeat1, + STATE(575), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101927] = 3, + ACTIONS(5029), 1, + anon_sym_catch, 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, + STATE(2802), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101939] = 4, + ACTIONS(4570), 1, + anon_sym_COMMA, + ACTIONS(5032), 1, + anon_sym_GT, + STATE(2781), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84810] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, + [101953] = 4, + ACTIONS(3090), 1, anon_sym_COMMA, - ACTIONS(2739), 1, + ACTIONS(5034), 1, anon_sym_RPAREN, - STATE(2292), 1, + STATE(2775), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84827] = 3, - ACTIONS(4125), 1, - anon_sym_COLON, + [101967] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 3, + ACTIONS(1102), 3, 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, + anon_sym_EQ, + [101977] = 3, + ACTIONS(4737), 1, + anon_sym_catch, 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, + STATE(576), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101989] = 3, + ACTIONS(4737), 1, + anon_sym_catch, 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, + STATE(577), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102001] = 3, + ACTIONS(4737), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84891] = 6, - ACTIONS(3), 1, + STATE(579), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102013] = 3, + ACTIONS(4657), 1, + anon_sym_catch, + ACTIONS(3), 2, 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, + STATE(607), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102025] = 3, + ACTIONS(4657), 1, + anon_sym_catch, 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, + STATE(608), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102037] = 3, + ACTIONS(4657), 1, + anon_sym_catch, 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, + STATE(609), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102049] = 3, + ACTIONS(4737), 1, + anon_sym_catch, 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, + STATE(580), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102061] = 3, + ACTIONS(4737), 1, + anon_sym_catch, 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, + STATE(581), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102073] = 3, + ACTIONS(4737), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84995] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4135), 1, - anon_sym_COLON, - ACTIONS(4137), 1, + STATE(582), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102085] = 4, + ACTIONS(4320), 1, + sym__pascalCaseIdentifier, + STATE(2398), 1, + sym_type_name, + STATE(2566), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102099] = 4, + ACTIONS(4424), 1, + anon_sym_DOT, + ACTIONS(5036), 1, sym__lookback_semicolon, - STATE(2687), 1, - sym_block, + STATE(623), 1, + sym__semicolon, 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, + [102113] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + STATE(2566), 1, + aux_sym__type_path_repeat1, + STATE(2769), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85029] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, + [102127] = 4, + ACTIONS(5038), 1, anon_sym_LBRACE, - STATE(432), 1, - sym_block, - STATE(2218), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5040), 1, + anon_sym_implements, + STATE(2818), 1, + aux_sym_class_declaration_repeat3, 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, + [102141] = 4, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3046), 1, + anon_sym_RBRACK, + STATE(2708), 1, + aux_sym_array_repeat1, 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, + [102155] = 4, + ACTIONS(4794), 1, + anon_sym_LPAREN, + ACTIONS(5043), 1, + sym_identifier, + STATE(2958), 1, + sym__parenthesized_expression, 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, + [102169] = 3, + ACTIONS(4415), 1, + anon_sym_catch, 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, + STATE(2327), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102181] = 4, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(5045), 1, + anon_sym_RBRACK, + STATE(2724), 1, + aux_sym_map_repeat1, 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, + [102195] = 3, + ACTIONS(4415), 1, + anon_sym_catch, 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, + STATE(2328), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102207] = 3, + ACTIONS(4415), 1, + anon_sym_catch, 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, + STATE(2330), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102219] = 3, + ACTIONS(4415), 1, + anon_sym_catch, 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, + STATE(2331), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102231] = 3, + ACTIONS(4415), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85182] = 5, - ACTIONS(1502), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_EQ_GT, - ACTIONS(4141), 1, - anon_sym_DOT, - ACTIONS(4143), 1, - anon_sym_QMARK, + STATE(2332), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102243] = 3, + ACTIONS(4415), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85199] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + STATE(2333), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102255] = 4, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(376), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5049), 1, + anon_sym_extends, + STATE(2828), 1, + aux_sym_interface_declaration_repeat1, 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, + [102269] = 3, + ACTIONS(4574), 1, + anon_sym_catch, 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, + STATE(613), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102281] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, 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(5052), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [102293] = 3, + ACTIONS(4374), 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(2274), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102305] = 4, + ACTIONS(5052), 1, + anon_sym_RPAREN, + ACTIONS(5054), 1, + anon_sym_COMMA, + STATE(2832), 1, + aux_sym__function_type_args_repeat1, 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, + [102319] = 3, + ACTIONS(4374), 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(2275), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102331] = 3, + ACTIONS(4374), 1, + anon_sym_catch, 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, + STATE(2277), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102343] = 3, + ACTIONS(4374), 1, + anon_sym_catch, 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, + STATE(2278), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102355] = 3, + ACTIONS(4374), 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(2279), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102367] = 3, + ACTIONS(4374), 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(2280), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102379] = 4, + ACTIONS(4340), 1, + sym__pascalCaseIdentifier, + ACTIONS(5057), 1, + sym__camelCaseIdentifier, + STATE(2891), 1, + sym_type_name, 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, + [102393] = 3, + ACTIONS(4574), 1, + anon_sym_catch, 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, + STATE(612), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102405] = 3, + ACTIONS(4774), 1, + anon_sym_catch, 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, + STATE(573), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102417] = 3, + ACTIONS(4774), 1, + anon_sym_catch, 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, + STATE(574), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102429] = 3, + ACTIONS(2722), 1, + anon_sym_catch, 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, + STATE(2802), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102441] = 4, + ACTIONS(678), 1, + aux_sym_integer_token1, + ACTIONS(680), 1, + aux_sym_integer_token2, + STATE(3356), 1, + sym_integer, 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, + [102455] = 3, + ACTIONS(4780), 1, + anon_sym_catch, 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, + STATE(2625), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102467] = 3, + ACTIONS(4780), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85505] = 6, - ACTIONS(3), 1, + STATE(2626), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102479] = 3, + ACTIONS(4780), 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, + STATE(2627), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102491] = 4, + ACTIONS(4324), 1, anon_sym_LT, - ACTIONS(4159), 1, - anon_sym_LPAREN, - STATE(241), 1, - sym__arg_list, - STATE(2609), 1, + ACTIONS(5059), 1, + anon_sym_EQ, + STATE(3403), 1, sym_type_params, 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, + [102505] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85558] = 3, - ACTIONS(4161), 1, - anon_sym_COLON, + ACTIONS(5061), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [102515] = 2, 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, + ACTIONS(5063), 3, + sym__lookback_semicolon, anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(636), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + anon_sym_COLON, + [102525] = 3, + ACTIONS(4774), 1, + anon_sym_catch, 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, + STATE(586), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102537] = 3, + ACTIONS(4774), 1, + anon_sym_catch, 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, + STATE(587), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102549] = 3, + ACTIONS(4774), 1, + anon_sym_catch, 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, + STATE(441), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102561] = 4, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3078), 1, + anon_sym_RBRACK, + STATE(2708), 1, + aux_sym_array_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, + [102575] = 4, + ACTIONS(4964), 1, + anon_sym_COMMA, + ACTIONS(5065), 1, + anon_sym_RPAREN, + STATE(2760), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85656] = 5, - ACTIONS(2571), 1, + [102589] = 4, + ACTIONS(3798), 1, anon_sym_COMMA, - ACTIONS(2579), 1, - sym_identifier, - ACTIONS(2581), 1, + ACTIONS(5067), 1, anon_sym_RBRACK, - STATE(2299), 1, - aux_sym_array_repeat1, + STATE(2724), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85673] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4164), 1, - anon_sym_COLON, - ACTIONS(4166), 1, - sym__lookback_semicolon, - STATE(2833), 1, - sym_block, + [102603] = 4, + ACTIONS(3090), 1, + anon_sym_COMMA, + ACTIONS(3214), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__arg_list_repeat1, 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, + [102617] = 3, + ACTIONS(4432), 1, + anon_sym_LPAREN, + STATE(1493), 1, + sym__arg_list, 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, + [102628] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3572), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85724] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, + [102639] = 3, + ACTIONS(5069), 1, + sym__lookback_semicolon, + STATE(495), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102650] = 3, + ACTIONS(4576), 1, anon_sym_DASH_GT, - ACTIONS(4168), 1, + ACTIONS(4645), 1, sym__lookback_semicolon, - STATE(2648), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85741] = 5, - ACTIONS(3743), 1, + [102661] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5071), 2, anon_sym_LBRACE, - ACTIONS(3791), 1, anon_sym_extends, - STATE(395), 1, - sym_block, - STATE(2252), 1, - aux_sym_interface_declaration_repeat1, + [102670] = 3, + ACTIONS(3400), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85758] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(392), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [102681] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4647), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85775] = 6, - ACTIONS(3), 1, + [102692] = 3, + ACTIONS(3870), 1, + anon_sym_DOT, + ACTIONS(3872), 1, + anon_sym_QMARK, + 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, + [102703] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(38), 1, + sym__parenthesized_expression, 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, + [102714] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(3383), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85828] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, + [102725] = 3, + ACTIONS(4576), 1, anon_sym_DASH_GT, - ACTIONS(4172), 1, + ACTIONS(4690), 1, sym__lookback_semicolon, - STATE(2645), 1, - sym_block, 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, + [102736] = 3, + ACTIONS(3464), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102747] = 3, + ACTIONS(3318), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85862] = 5, - ACTIONS(135), 1, - sym__closing_brace_marker, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(1242), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + [102758] = 3, + ACTIONS(5073), 1, + anon_sym_DOT, + ACTIONS(5075), 1, + anon_sym_QMARK, 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, + [102769] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(44), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85896] = 3, - ACTIONS(2825), 1, - sym__lookback_semicolon, + [102780] = 2, 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, + ACTIONS(5077), 2, + sym__lookback_semicolon, + anon_sym_DOT, + [102789] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3504), 1, + anon_sym_RBRACK, 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, + [102800] = 3, + ACTIONS(5079), 1, + anon_sym_DOT, + ACTIONS(5081), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85943] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4176), 1, + [102811] = 3, + ACTIONS(4794), 1, anon_sym_LPAREN, - STATE(1258), 1, - sym__arg_list, - STATE(2567), 1, - sym_type_params, + STATE(54), 1, + sym__parenthesized_expression, 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, + [102822] = 3, + ACTIONS(1996), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85977] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(4178), 1, - anon_sym_RPAREN, - STATE(2313), 1, - aux_sym__function_type_args_repeat1, + [102833] = 3, + ACTIONS(5083), 1, + anon_sym_DOT, + ACTIONS(5085), 1, + anon_sym_QMARK, 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, - sym__lookback_semicolon, - STATE(2675), 1, - sym_block, + [102844] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym__parenthesized_expression, 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, + [102855] = 3, + ACTIONS(3402), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [102866] = 3, + ACTIONS(1984), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [102877] = 3, + ACTIONS(5087), 1, + anon_sym_DOT, + ACTIONS(5089), 1, + anon_sym_QMARK, 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, + [102888] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86079] = 5, - ACTIONS(1468), 1, + [102899] = 3, + ACTIONS(3404), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2717), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__arg_list_repeat1, 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, + [102910] = 3, + ACTIONS(5091), 1, + anon_sym_DOT, + ACTIONS(5093), 1, + anon_sym_QMARK, 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, + [102921] = 3, + ACTIONS(1990), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [102932] = 3, + ACTIONS(5095), 1, + anon_sym_DOT, + ACTIONS(5097), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86138] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2737), 1, - anon_sym_RPAREN, - STATE(2293), 1, - aux_sym__arg_list_repeat1, + [102943] = 3, + ACTIONS(2788), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86152] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2737), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [102954] = 3, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86166] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4191), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [102965] = 3, + ACTIONS(5103), 1, + sym__lookback_semicolon, + STATE(625), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86180] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, + [102976] = 3, + ACTIONS(5105), 1, + anon_sym_DOT, + ACTIONS(5107), 1, + anon_sym_QMARK, 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, + [102987] = 3, + ACTIONS(5109), 1, + sym__lookback_semicolon, + STATE(626), 1, + sym__semicolon, 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, + [102998] = 3, + ACTIONS(4128), 1, + anon_sym_DOT, + ACTIONS(5111), 1, + anon_sym_QMARK, 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, + [103009] = 3, + ACTIONS(3406), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86234] = 2, + [103020] = 3, + ACTIONS(5113), 1, + anon_sym_DOT, + ACTIONS(5115), 1, + anon_sym_QMARK, 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, + [103031] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(197), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86258] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4198), 1, + [103042] = 3, + ACTIONS(5117), 1, anon_sym_DOT, - ACTIONS(4200), 1, + ACTIONS(5119), 1, anon_sym_QMARK, 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, + [103053] = 3, + ACTIONS(2769), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [103064] = 3, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_QMARK, 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, + [103075] = 3, + ACTIONS(5121), 1, + anon_sym_DOT, + ACTIONS(5123), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86314] = 4, - ACTIONS(4204), 1, + [103086] = 3, + ACTIONS(4370), 1, anon_sym_DOT, - ACTIONS(4206), 1, + ACTIONS(4372), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103097] = 3, + ACTIONS(4627), 1, sym__lookback_semicolon, - STATE(569), 1, + STATE(663), 1, sym__semicolon, 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, + [103108] = 3, + ACTIONS(5125), 1, + anon_sym_DOT, + ACTIONS(5127), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86342] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(4208), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [103119] = 3, + ACTIONS(2786), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86356] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2707), 1, - anon_sym_RPAREN, - STATE(2309), 1, - aux_sym__arg_list_repeat1, + [103130] = 3, + ACTIONS(4230), 1, + anon_sym_DOT, + ACTIONS(4232), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86370] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2707), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [103141] = 3, + ACTIONS(4539), 1, + sym__lookback_semicolon, + STATE(664), 1, + sym__semicolon, 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, + [103152] = 3, + ACTIONS(4112), 1, + anon_sym_DOT, + ACTIONS(4114), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86398] = 4, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(4212), 1, - anon_sym_GT, - STATE(2434), 1, - aux_sym_type_params_repeat1, + [103163] = 3, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(2482), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86412] = 4, - ACTIONS(4214), 1, - anon_sym_RPAREN, - ACTIONS(4216), 1, - anon_sym_COMMA, - STATE(2311), 1, - aux_sym__function_type_args_repeat1, + [103174] = 3, + ACTIONS(5129), 1, + anon_sym_DOT, + ACTIONS(5131), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86426] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + [103185] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(23), 1, + sym__parenthesized_expression, 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, + [103196] = 3, + ACTIONS(4102), 1, + anon_sym_DOT, + ACTIONS(4104), 1, + anon_sym_QMARK, 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, + [103207] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86466] = 4, - ACTIONS(3231), 1, + ACTIONS(3242), 2, anon_sym_COMMA, - ACTIONS(4225), 1, anon_sym_RBRACK, - STATE(2444), 1, - aux_sym_map_repeat1, + [103216] = 3, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5135), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86480] = 2, + [103227] = 3, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(1508), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1518), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [86490] = 3, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + [103238] = 3, + ACTIONS(5137), 1, + anon_sym_DOT, + ACTIONS(5139), 1, + anon_sym_QMARK, 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, + [103249] = 3, + ACTIONS(3410), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86516] = 4, - ACTIONS(4229), 1, - anon_sym_RPAREN, - ACTIONS(4231), 1, - anon_sym_COMMA, - STATE(2319), 1, - aux_sym__function_arg_list_repeat1, + [103260] = 3, + ACTIONS(4393), 1, + anon_sym_DOT, + ACTIONS(4397), 1, + anon_sym_QMARK, 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, + [103271] = 3, + ACTIONS(3542), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [103282] = 3, + ACTIONS(4224), 1, + anon_sym_DOT, + ACTIONS(4228), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86558] = 3, - ACTIONS(4234), 1, - anon_sym_DASH_GT, + [103293] = 3, + ACTIONS(4076), 1, + anon_sym_DOT, + ACTIONS(4078), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3434), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [86570] = 2, + [103304] = 3, + ACTIONS(5141), 1, + anon_sym_DOT, + ACTIONS(5143), 1, + anon_sym_QMARK, 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, + [103315] = 3, + ACTIONS(4794), 1, anon_sym_LPAREN, - ACTIONS(4238), 1, - sym_identifier, - STATE(2463), 1, + STATE(33), 1, sym__parenthesized_expression, 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, + [103326] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86608] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2693), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [103337] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4664), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86622] = 3, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + [103348] = 3, + ACTIONS(5145), 1, + anon_sym_DOT, + ACTIONS(5147), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4240), 2, - anon_sym_RPAREN, - 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, + [103359] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(24), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86648] = 3, - ACTIONS(4234), 1, - anon_sym_DASH_GT, + [103370] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3449), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [86660] = 3, - ACTIONS(4234), 1, - anon_sym_DASH_GT, + ACTIONS(4696), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [103379] = 3, + ACTIONS(4703), 1, + sym__lookback_semicolon, + STATE(517), 1, + sym__semicolon, 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, + [103390] = 3, + ACTIONS(5149), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(5151), 1, + aux_sym_preprocessor_statement_token2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86686] = 4, - ACTIONS(4244), 1, - anon_sym_DOT, - ACTIONS(4246), 1, + [103401] = 3, + ACTIONS(5153), 1, sym__lookback_semicolon, - STATE(562), 1, + STATE(518), 1, sym__semicolon, 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, + [103412] = 3, + ACTIONS(3382), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86714] = 2, + [103423] = 3, + ACTIONS(5155), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4248), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [86724] = 2, + [103434] = 3, + ACTIONS(3482), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4250), 3, + [103445] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(4885), 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, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86748] = 3, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + [103456] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3496), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4256), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [86760] = 3, - ACTIONS(3835), 1, + [103467] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(3280), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103478] = 3, + ACTIONS(4576), 1, anon_sym_DASH_GT, + ACTIONS(4621), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4258), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [86772] = 2, + [103489] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(15), 1, + sym__parenthesized_expression, 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, + [103500] = 3, + ACTIONS(3416), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [103511] = 3, + ACTIONS(3520), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [103522] = 3, + ACTIONS(3536), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86824] = 2, + [103533] = 3, + ACTIONS(5157), 1, + sym__lookback_semicolon, + STATE(677), 1, + sym__semicolon, 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, - anon_sym_DASH_GT, + [103544] = 3, + ACTIONS(2773), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3434), 2, + [103555] = 3, + ACTIONS(3418), 1, 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, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [103566] = 3, + ACTIONS(5159), 1, + anon_sym_LPAREN, + STATE(3031), 1, + sym__parenthesized_expression, 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, + [103577] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86888] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4268), 1, + ACTIONS(3254), 2, anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + anon_sym_COMMA, + [103586] = 3, + ACTIONS(3330), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [103597] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86916] = 3, - ACTIONS(3978), 1, + ACTIONS(4993), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [103606] = 3, + ACTIONS(4576), 1, anon_sym_DASH_GT, + ACTIONS(4709), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3449), 2, + [103617] = 3, + ACTIONS(5161), 1, sym__lookback_semicolon, - anon_sym_LBRACE, - [86928] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3927), 1, - anon_sym_DOT, - ACTIONS(3929), 1, - anon_sym_QMARK, + STATE(522), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86942] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + [103628] = 3, + ACTIONS(3420), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3457), 2, - sym__lookback_semicolon, - anon_sym_LBRACE, - [86954] = 2, + [103639] = 3, + ACTIONS(5163), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(5165), 1, + aux_sym_preprocessor_statement_token2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3305), 3, - sym__closing_brace_marker, - anon_sym_COMMA, + [103650] = 3, + ACTIONS(4426), 1, anon_sym_DASH_GT, - [86964] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4272), 1, - anon_sym_EQ, - STATE(2722), 1, - sym_type_params, + ACTIONS(5167), 1, + anon_sym_RPAREN, 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, + [103661] = 3, + ACTIONS(3422), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86992] = 2, + [103672] = 3, + ACTIONS(4488), 1, + anon_sym_LPAREN, + STATE(1835), 1, + sym__arg_list, 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, + [103683] = 3, + ACTIONS(5169), 1, + sym__lookback_semicolon, + STATE(701), 1, + sym__semicolon, 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, + [103694] = 3, + ACTIONS(5171), 1, + sym__lookback_semicolon, + STATE(702), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87030] = 2, + [103705] = 3, + ACTIONS(4444), 1, + anon_sym_LPAREN, + STATE(1513), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - 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, + [103716] = 3, + ACTIONS(5173), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87054] = 2, + [103727] = 3, + ACTIONS(3558), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4274), 3, + [103738] = 3, + ACTIONS(5175), 1, anon_sym_RPAREN, + ACTIONS(5177), 1, 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, 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, + [103749] = 3, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(462), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87092] = 3, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + [103760] = 3, + ACTIONS(3346), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [103771] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87118] = 4, - ACTIONS(1524), 1, + ACTIONS(5179), 2, + anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4287), 1, + [103780] = 3, + ACTIONS(4124), 1, anon_sym_DOT, - ACTIONS(4289), 1, + ACTIONS(4126), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87132] = 2, + [103791] = 3, + ACTIONS(5181), 1, + anon_sym_LBRACE, + STATE(220), 1, + sym_switch_block, 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, + [103802] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(65), 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, + [103813] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87170] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4291), 1, - anon_sym_DOT, - ACTIONS(4293), 1, - anon_sym_QMARK, + [103824] = 3, + ACTIONS(4598), 1, + sym__lookback_semicolon, + STATE(699), 1, + sym__semicolon, 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, + [103835] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(29), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103846] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87198] = 2, + [103857] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(30), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4299), 3, + [103868] = 3, + ACTIONS(5183), 1, sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [87208] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4301), 1, - anon_sym_DOT, - ACTIONS(4303), 1, - anon_sym_QMARK, + STATE(544), 1, + sym__semicolon, 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, + [103879] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(69), 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, + [103890] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(73), 1, + sym__parenthesized_expression, 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, + [103901] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(46), 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, + [103912] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87278] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + [103923] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym__parenthesized_expression, 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, + [103934] = 3, + ACTIONS(3424), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103945] = 3, + ACTIONS(5185), 1, sym__lookback_semicolon, - STATE(632), 1, + STATE(545), 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, + [103956] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(3211), 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, + [103967] = 3, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(2429), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87332] = 4, - ACTIONS(4323), 1, + [103978] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(5187), 1, anon_sym_RPAREN, - ACTIONS(4325), 1, - anon_sym_COMMA, - STATE(2319), 1, - aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87346] = 4, - ACTIONS(4327), 1, - anon_sym_DOT, - ACTIONS(4329), 1, + [103989] = 3, + ACTIONS(2780), 1, sym__lookback_semicolon, - STATE(624), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87360] = 4, - ACTIONS(4244), 1, - anon_sym_DOT, - ACTIONS(4331), 1, + [104000] = 3, + ACTIONS(3550), 1, sym__lookback_semicolon, - STATE(668), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104011] = 3, + ACTIONS(4432), 1, + anon_sym_LPAREN, + STATE(1485), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104022] = 3, + ACTIONS(4724), 1, + sym__lookback_semicolon, + STATE(546), 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, + [104033] = 3, + ACTIONS(5189), 1, + sym__lookback_semicolon, + STATE(547), 1, + sym__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, + [104044] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(175), 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, + [104055] = 3, + ACTIONS(4362), 1, + anon_sym_LPAREN, + STATE(281), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87416] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2747), 1, + [104066] = 3, + ACTIONS(5191), 1, anon_sym_RPAREN, - STATE(2368), 1, - aux_sym__arg_list_repeat1, + ACTIONS(5193), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87430] = 4, - ACTIONS(4341), 1, - anon_sym_DOT, - ACTIONS(4343), 1, + [104077] = 3, + ACTIONS(3564), 1, sym__lookback_semicolon, - STATE(681), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104088] = 3, + ACTIONS(5151), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(5195), 1, + aux_sym_preprocessor_statement_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87458] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3823), 1, - anon_sym_DOT, - ACTIONS(3825), 1, - anon_sym_QMARK, + [104099] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym__parenthesized_expression, 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, + [104110] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym__parenthesized_expression, 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, + [104121] = 3, + ACTIONS(3512), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87500] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4347), 1, - anon_sym_DOT, - ACTIONS(4349), 1, - anon_sym_QMARK, + [104132] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(3139), 1, + sym__arg_list, 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, + [104143] = 3, + ACTIONS(4488), 1, + anon_sym_LPAREN, + STATE(1834), 1, + sym__arg_list, 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, + [104154] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(78), 1, + sym__parenthesized_expression, 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, + [104165] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(60), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87556] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4358), 1, + [104176] = 3, + ACTIONS(3554), 1, sym__lookback_semicolon, - STATE(683), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104187] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(3219), 1, + sym__arg_list, 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, + [104198] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(63), 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, + [104209] = 3, + ACTIONS(2242), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87612] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4360), 1, + [104220] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3350), 1, anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, 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, + [104231] = 2, 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, + ACTIONS(5197), 2, + anon_sym_LBRACE, + anon_sym_implements, + [104240] = 3, + ACTIONS(3426), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104251] = 3, + ACTIONS(5199), 1, + sym_identifier, + STATE(3012), 1, + sym_structure_type_pair, 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, + [104262] = 3, + ACTIONS(3530), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104273] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3480), 1, + anon_sym_RBRACK, 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, + [104284] = 3, + ACTIONS(3334), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104295] = 3, + ACTIONS(3568), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104306] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87738] = 2, + ACTIONS(4883), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [104315] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(3167), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4370), 3, - 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, + [104326] = 3, + ACTIONS(4362), 1, + anon_sym_LPAREN, + STATE(276), 1, + sym__arg_list, 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, + [104337] = 3, + ACTIONS(3384), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104348] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4606), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87790] = 3, - ACTIONS(1628), 1, - anon_sym_EQ_GT, + [104359] = 3, + ACTIONS(3320), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104370] = 3, + ACTIONS(3432), 1, sym__lookback_semicolon, - STATE(388), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104381] = 3, + ACTIONS(2775), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87830] = 4, - ACTIONS(4384), 1, - anon_sym_DOT, - ACTIONS(4386), 1, + [104392] = 3, + ACTIONS(2762), 1, sym__lookback_semicolon, - STATE(391), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87844] = 4, - ACTIONS(4380), 1, - sym__closing_brace_marker, - ACTIONS(4388), 1, - anon_sym_COMMA, - STATE(2419), 1, - aux_sym_map_repeat1, + [104403] = 3, + ACTIONS(3524), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87858] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4391), 1, + [104414] = 3, + ACTIONS(2720), 1, sym__lookback_semicolon, - STATE(398), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87872] = 4, - ACTIONS(4187), 1, + [104425] = 3, + ACTIONS(4432), 1, anon_sym_LPAREN, - ACTIONS(4393), 1, - sym_identifier, - STATE(2583), 1, - sym__parenthesized_expression, + STATE(1440), 1, + sym__arg_list, 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, + [104436] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3508), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87900] = 4, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(4397), 1, - anon_sym_RPAREN, - STATE(2311), 1, - aux_sym__function_type_args_repeat1, + [104447] = 3, + ACTIONS(4332), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87914] = 3, - ACTIONS(1468), 1, + [104458] = 3, + ACTIONS(2712), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, anon_sym_LBRACK, 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, + [104469] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(3238), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104480] = 3, + ACTIONS(3436), 1, sym__lookback_semicolon, - STATE(470), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104491] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(3265), 1, + sym__arg_list, 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, + [104502] = 3, + ACTIONS(5159), 1, + anon_sym_LPAREN, + STATE(2941), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87968] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2589), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [104513] = 3, + ACTIONS(5201), 1, + sym__lookback_semicolon, + STATE(727), 1, + sym__semicolon, 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, + [104524] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87996] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2705), 1, - anon_sym_RPAREN, - STATE(2402), 1, - aux_sym__arg_list_repeat1, + ACTIONS(4670), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [104533] = 3, + ACTIONS(3438), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104544] = 3, + ACTIONS(1960), 1, + anon_sym_EQ_GT, + ACTIONS(4802), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88024] = 4, - ACTIONS(4408), 1, - anon_sym_DOT, - ACTIONS(4410), 1, + [104555] = 3, + ACTIONS(3440), 1, sym__lookback_semicolon, - STATE(475), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88038] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4412), 1, + [104566] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(5203), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104577] = 3, + ACTIONS(4432), 1, + anon_sym_LPAREN, + STATE(1457), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104588] = 3, + ACTIONS(3526), 1, sym__lookback_semicolon, - STATE(484), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104599] = 3, + ACTIONS(3556), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88066] = 4, - ACTIONS(4187), 1, - anon_sym_LPAREN, - ACTIONS(4417), 1, - sym_identifier, - STATE(2523), 1, - sym__parenthesized_expression, + [104610] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4629), 1, + sym__lookback_semicolon, 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, + [104621] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88094] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2723), 1, + ACTIONS(3266), 2, anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + anon_sym_COMMA, + [104630] = 3, + ACTIONS(3442), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [104641] = 3, + ACTIONS(4488), 1, + anon_sym_LPAREN, + STATE(1946), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88122] = 4, - ACTIONS(1524), 1, + [104652] = 3, + ACTIONS(1960), 1, anon_sym_EQ_GT, - ACTIONS(3807), 1, - anon_sym_DOT, - ACTIONS(3809), 1, - anon_sym_QMARK, + ACTIONS(5205), 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, + [104663] = 3, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(2501), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88150] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4425), 1, + [104674] = 3, + ACTIONS(3472), 1, sym__lookback_semicolon, - STATE(463), 1, - sym__semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88164] = 3, - ACTIONS(4234), 1, - anon_sym_DASH_GT, + [104685] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4427), 2, - sym__closing_brace_marker, + ACTIONS(3260), 2, anon_sym_COMMA, - [88176] = 3, - ACTIONS(1628), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, + [104694] = 3, + ACTIONS(4488), 1, + anon_sym_LPAREN, + STATE(1739), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4380), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [88188] = 4, - ACTIONS(4380), 1, + [104705] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3522), 1, anon_sym_RBRACK, - ACTIONS(4429), 1, - anon_sym_COMMA, - STATE(2444), 1, - aux_sym_map_repeat1, 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, + [104716] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + anon_sym_while, 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, + [104727] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4735), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104738] = 3, + ACTIONS(3570), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104749] = 3, + ACTIONS(3578), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88230] = 3, - ACTIONS(4442), 1, + [104760] = 3, + ACTIONS(3448), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104771] = 3, + ACTIONS(5207), 1, anon_sym_RPAREN, - ACTIONS(4444), 1, + ACTIONS(5209), 1, anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88241] = 2, + [104782] = 3, + ACTIONS(5159), 1, + anon_sym_LPAREN, + STATE(2949), 1, + sym__parenthesized_expression, 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, + [104793] = 3, + ACTIONS(3582), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88261] = 3, - ACTIONS(4446), 1, + [104804] = 3, + ACTIONS(5211), 1, sym__lookback_semicolon, - STATE(408), 1, + STATE(497), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88272] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4005), 1, + [104815] = 3, + ACTIONS(5213), 1, sym__lookback_semicolon, + STATE(505), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88283] = 3, - ACTIONS(2985), 1, + [104826] = 3, + ACTIONS(3586), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, + ACTIONS(3810), 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, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [88305] = 3, - ACTIONS(1468), 1, + [104837] = 3, + ACTIONS(3336), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(2817), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88316] = 3, - ACTIONS(4452), 1, + [104848] = 3, + ACTIONS(3780), 1, anon_sym_DOT, - ACTIONS(4454), 1, + ACTIONS(3782), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88327] = 3, - ACTIONS(4456), 1, - sym__camelCaseIdentifier, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, + [104859] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(31), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88338] = 3, - ACTIONS(3733), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_block, + [104870] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88349] = 3, - ACTIONS(1468), 1, + [104881] = 3, + ACTIONS(3300), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(2919), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88360] = 3, - ACTIONS(4460), 1, - sym__lookback_semicolon, - STATE(451), 1, - sym__semicolon, + [104892] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(191), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88371] = 2, + [104903] = 3, + ACTIONS(5179), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2781), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [88380] = 3, - ACTIONS(2871), 1, + [104914] = 3, + ACTIONS(3452), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88391] = 3, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [88402] = 3, - ACTIONS(4462), 1, - anon_sym_LBRACE, - STATE(234), 1, - sym_switch_block, + [104925] = 3, + ACTIONS(3538), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88413] = 3, - ACTIONS(3751), 1, + [104936] = 3, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(1948), 1, + STATE(1495), 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, + [104947] = 3, + ACTIONS(3314), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88435] = 3, - ACTIONS(4468), 1, - anon_sym_RPAREN, - ACTIONS(4470), 1, - anon_sym_COMMA, + [104958] = 3, + ACTIONS(1960), 1, + anon_sym_EQ_GT, + ACTIONS(5179), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88446] = 3, - ACTIONS(3017), 1, + [104969] = 3, + ACTIONS(5217), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + STATE(700), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88457] = 3, - ACTIONS(3949), 1, + [104980] = 3, + ACTIONS(3454), 1, sym__lookback_semicolon, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88468] = 3, - ACTIONS(3939), 1, + [104991] = 3, + ACTIONS(4580), 1, anon_sym_LPAREN, - STATE(2086), 1, + STATE(2522), 1, sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88479] = 3, - ACTIONS(3939), 1, + [105002] = 3, + ACTIONS(4580), 1, anon_sym_LPAREN, - STATE(2089), 1, + STATE(2599), 1, sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88490] = 3, - ACTIONS(2887), 1, + [105013] = 3, + ACTIONS(3590), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88501] = 3, - ACTIONS(3759), 1, - anon_sym_LPAREN, - STATE(290), 1, - sym__arg_list, + [105024] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(5219), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88512] = 3, - ACTIONS(2863), 1, + [105035] = 3, + ACTIONS(3510), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88523] = 3, - ACTIONS(2851), 1, + [105046] = 3, + ACTIONS(3594), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88534] = 3, - ACTIONS(3941), 1, + [105057] = 3, + ACTIONS(5221), 1, sym__lookback_semicolon, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + STATE(764), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88545] = 3, - ACTIONS(2831), 1, + [105068] = 3, + ACTIONS(5223), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [88556] = 3, - ACTIONS(3947), 1, - anon_sym_LPAREN, - STATE(1311), 1, - sym__arg_list, + STATE(765), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88567] = 3, - ACTIONS(2889), 1, + [105079] = 3, + ACTIONS(4688), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + STATE(483), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88578] = 3, - ACTIONS(2895), 1, + [105090] = 3, + ACTIONS(2758), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88589] = 3, - ACTIONS(4472), 1, - anon_sym_DOT, - ACTIONS(4474), 1, - anon_sym_QMARK, + [105101] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4763), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88600] = 2, + [105112] = 3, + ACTIONS(5225), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_switch_block, 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, + [105123] = 3, + ACTIONS(4478), 1, + sym__lookback_semicolon, + STATE(485), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88620] = 3, - ACTIONS(3649), 1, - anon_sym_DOT, - ACTIONS(3653), 1, - anon_sym_QMARK, + [105134] = 3, + ACTIONS(3358), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88631] = 3, - ACTIONS(3801), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_QMARK, + [105145] = 3, + ACTIONS(3460), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88642] = 3, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3523), 1, - anon_sym_QMARK, + [105156] = 3, + ACTIONS(3374), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88653] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4476), 1, - sym__camelCaseIdentifier, + [105167] = 3, + ACTIONS(3394), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88664] = 3, - ACTIONS(4478), 1, - anon_sym_RPAREN, - ACTIONS(4480), 1, - anon_sym_COMMA, + [105178] = 3, + ACTIONS(1968), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88675] = 2, + [105189] = 3, + ACTIONS(3312), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, 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, + [105200] = 3, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(2521), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88695] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(4486), 1, - anon_sym_RPAREN, + [105211] = 3, + ACTIONS(5159), 1, + anon_sym_LPAREN, + STATE(2859), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88706] = 3, - ACTIONS(4488), 1, - anon_sym_DOT, - ACTIONS(4490), 1, - anon_sym_QMARK, + [105222] = 3, + ACTIONS(4346), 1, + anon_sym_LPAREN, + STATE(184), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88717] = 3, - ACTIONS(4492), 1, - anon_sym_DOT, - ACTIONS(4494), 1, - anon_sym_QMARK, + [105233] = 3, + ACTIONS(3598), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88728] = 3, - ACTIONS(3525), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_QMARK, + [105244] = 3, + ACTIONS(5227), 1, + anon_sym_RPAREN, + ACTIONS(5229), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88739] = 3, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_QMARK, + [105255] = 3, + ACTIONS(4778), 1, + sym__lookback_semicolon, + STATE(767), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88750] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2120), 1, - sym__function_arg_list, + [105266] = 3, + ACTIONS(5231), 1, + sym__lookback_semicolon, + STATE(769), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88761] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2124), 1, - sym__function_arg_list, + [105277] = 3, + ACTIONS(3602), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88772] = 3, - ACTIONS(3729), 1, - anon_sym_DOT, - ACTIONS(3731), 1, - anon_sym_QMARK, + [105288] = 3, + ACTIONS(1952), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88783] = 3, - ACTIONS(2997), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [105299] = 3, + ACTIONS(5233), 1, + anon_sym_RPAREN, + ACTIONS(5235), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88794] = 3, - ACTIONS(3741), 1, + [105310] = 3, + ACTIONS(4362), 1, anon_sym_LPAREN, - STATE(228), 1, + STATE(271), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88805] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(3988), 1, - sym__lookback_semicolon, + [105321] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3514), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88816] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4496), 1, - sym__camelCaseIdentifier, + [105332] = 3, + ACTIONS(5165), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(5237), 1, + aux_sym_preprocessor_statement_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88827] = 3, - ACTIONS(3590), 1, - anon_sym_DOT, - ACTIONS(3592), 1, - anon_sym_QMARK, + [105343] = 3, + ACTIONS(3502), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88838] = 3, - ACTIONS(4498), 1, + [105354] = 3, + ACTIONS(5239), 1, anon_sym_DOT, - ACTIONS(4500), 1, + ACTIONS(5241), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88849] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(4427), 1, - anon_sym_RPAREN, + [105365] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, + STATE(43), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88860] = 3, - ACTIONS(3562), 1, - anon_sym_DOT, - ACTIONS(4502), 1, - anon_sym_QMARK, + [105376] = 3, + ACTIONS(3398), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88871] = 2, + [105387] = 3, + ACTIONS(5243), 1, + sym__lookback_semicolon, + STATE(401), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3999), 2, - sym__camelCaseIdentifier, - sym__pascalCaseIdentifier, - [88880] = 3, - ACTIONS(2983), 1, + [105398] = 3, + ACTIONS(3608), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88891] = 3, - ACTIONS(4067), 1, + [105409] = 3, + ACTIONS(4362), 1, anon_sym_LPAREN, - STATE(1551), 1, + STATE(265), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88902] = 3, - ACTIONS(4504), 1, - anon_sym_DOT, - ACTIONS(4506), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [88913] = 3, - ACTIONS(4508), 1, - anon_sym_DOT, - ACTIONS(4510), 1, - anon_sym_QMARK, + [105420] = 3, + ACTIONS(5245), 1, + sym__lookback_semicolon, + STATE(402), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88924] = 3, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(4514), 1, - anon_sym_QMARK, + [105431] = 3, + ACTIONS(3308), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88935] = 3, - ACTIONS(1468), 1, + [105442] = 3, + ACTIONS(3356), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(2891), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88946] = 3, - ACTIONS(4516), 1, - anon_sym_DOT, - ACTIONS(4518), 1, - anon_sym_QMARK, + [105453] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4600), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88957] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2244), 1, - sym__function_arg_list, + [105464] = 3, + ACTIONS(4426), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88968] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2197), 1, - sym__function_arg_list, + [105475] = 3, + ACTIONS(4576), 1, + anon_sym_DASH_GT, + ACTIONS(4641), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88979] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2202), 1, - sym__function_arg_list, + [105486] = 3, + ACTIONS(5249), 1, + anon_sym_RPAREN, + ACTIONS(5251), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88990] = 3, - ACTIONS(4520), 1, - anon_sym_DOT, - ACTIONS(4522), 1, - anon_sym_QMARK, + [105497] = 3, + ACTIONS(3614), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89001] = 3, - ACTIONS(4524), 1, - anon_sym_DOT, - ACTIONS(4526), 1, - anon_sym_QMARK, + [105508] = 3, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(3368), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89012] = 3, - ACTIONS(3911), 1, - sym__lookback_semicolon, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + [105519] = 3, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(161), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89023] = 3, - ACTIONS(2917), 1, + [105530] = 3, + ACTIONS(3528), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89034] = 3, - ACTIONS(3939), 1, + [105541] = 3, + ACTIONS(4444), 1, anon_sym_LPAREN, - STATE(2223), 1, - sym__function_arg_list, + STATE(1502), 1, + sym__arg_list, 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, + [105552] = 3, + ACTIONS(3618), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89056] = 3, - ACTIONS(4532), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_switch_block, + [105563] = 3, + ACTIONS(3304), 1, + sym__lookback_semicolon, + ACTIONS(3810), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89067] = 3, - ACTIONS(2961), 1, + [105574] = 2, + ACTIONS(3600), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89078] = 3, - ACTIONS(4534), 1, - sym__lookback_semicolon, - STATE(338), 1, - sym__semicolon, + [105582] = 2, + ACTIONS(5255), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89089] = 3, - ACTIONS(3013), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [105590] = 2, + ACTIONS(5257), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89100] = 3, - ACTIONS(4536), 1, - sym__lookback_semicolon, - STATE(645), 1, - sym__semicolon, + [105598] = 2, + ACTIONS(5259), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89111] = 3, - ACTIONS(4538), 1, + [105606] = 2, + ACTIONS(5261), 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, + [105614] = 2, + ACTIONS(5263), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89133] = 3, - ACTIONS(2921), 1, + [105622] = 2, + ACTIONS(3434), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89144] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4046), 1, - sym__lookback_semicolon, + [105630] = 2, + ACTIONS(3576), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89155] = 3, - ACTIONS(4544), 1, + [105638] = 2, + ACTIONS(5265), 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, + [105646] = 2, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105654] = 2, + ACTIONS(5269), 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, + [105662] = 2, + ACTIONS(5271), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89188] = 3, - ACTIONS(2366), 1, + [105670] = 2, + ACTIONS(5273), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89199] = 3, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(4482), 1, - anon_sym_COLON, + [105678] = 2, + ACTIONS(5275), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89210] = 3, - ACTIONS(2861), 1, + [105686] = 2, + ACTIONS(3436), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89221] = 3, - ACTIONS(2977), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [105694] = 2, + ACTIONS(3322), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89232] = 3, - ACTIONS(2951), 1, + [105702] = 2, + ACTIONS(4641), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89243] = 2, + [105710] = 2, + ACTIONS(5277), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4550), 2, - anon_sym_LBRACE, - anon_sym_implements, - [89252] = 3, - ACTIONS(3751), 1, - anon_sym_LPAREN, - STATE(305), 1, - sym__arg_list, + [105718] = 2, + ACTIONS(4606), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89263] = 3, - ACTIONS(2885), 1, + [105726] = 2, + ACTIONS(3370), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89274] = 3, - ACTIONS(3477), 1, + [105734] = 2, + ACTIONS(5279), 1, anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89285] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4075), 1, + [105742] = 2, + ACTIONS(3536), 1, sym__lookback_semicolon, 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, + [105750] = 2, + ACTIONS(5281), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89307] = 3, - ACTIONS(2937), 1, + [105758] = 2, + ACTIONS(3438), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89318] = 2, + [105766] = 2, + ACTIONS(5283), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2815), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [89327] = 3, - ACTIONS(2855), 1, + [105774] = 2, + ACTIONS(3400), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89338] = 3, - ACTIONS(3001), 1, + [105782] = 2, + ACTIONS(3440), 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, + [105790] = 2, + ACTIONS(5285), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89360] = 3, - ACTIONS(2364), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [105798] = 2, + ACTIONS(5287), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89371] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2879), 1, - anon_sym_RBRACK, + [105806] = 2, + ACTIONS(3526), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89382] = 3, - ACTIONS(3015), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [105814] = 2, + ACTIONS(5289), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89393] = 3, - ACTIONS(3021), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [105822] = 2, + ACTIONS(3488), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89404] = 3, - ACTIONS(3225), 1, - anon_sym_DOT, - ACTIONS(3227), 1, - anon_sym_QMARK, + [105830] = 2, + ACTIONS(5291), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89415] = 3, - ACTIONS(3733), 1, - anon_sym_LBRACE, - STATE(635), 1, - sym_block, + [105838] = 2, + ACTIONS(4645), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89426] = 3, - ACTIONS(2971), 1, + [105846] = 2, + ACTIONS(3442), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89437] = 3, - ACTIONS(2853), 1, + [105854] = 2, + ACTIONS(3552), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89448] = 3, - ACTIONS(3025), 1, + [105862] = 2, + ACTIONS(3490), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89459] = 3, - ACTIONS(3009), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [105870] = 2, + ACTIONS(5293), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89470] = 2, + [105878] = 2, + ACTIONS(3504), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4229), 2, + [105886] = 2, + ACTIONS(5295), 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, + [105894] = 2, + ACTIONS(5297), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89501] = 3, - ACTIONS(2963), 1, + [105902] = 2, + ACTIONS(3298), 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, + [105910] = 2, + ACTIONS(5299), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89523] = 3, - ACTIONS(2955), 1, + [105918] = 2, + ACTIONS(4647), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89534] = 3, - ACTIONS(4176), 1, - anon_sym_LPAREN, - STATE(1243), 1, - sym__arg_list, + [105926] = 2, + ACTIONS(3512), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89545] = 3, - ACTIONS(4556), 1, - sym_identifier, - STATE(2593), 1, - sym_structure_type_pair, + [105934] = 2, + ACTIONS(5301), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89556] = 3, - ACTIONS(2909), 1, + [105942] = 2, + ACTIONS(3444), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89567] = 3, - ACTIONS(2875), 1, + [105950] = 2, + ACTIONS(5303), 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, + [105958] = 2, + ACTIONS(3446), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89589] = 3, - ACTIONS(2859), 1, + [105966] = 2, + ACTIONS(3482), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89600] = 3, - ACTIONS(2869), 1, + [105974] = 2, + ACTIONS(3448), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89611] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4560), 1, - sym__camelCaseIdentifier, + [105982] = 2, + ACTIONS(1952), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89622] = 3, - ACTIONS(2819), 1, + [105990] = 2, + ACTIONS(1996), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89633] = 3, - ACTIONS(2897), 1, + [105998] = 2, + ACTIONS(4709), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89644] = 3, - ACTIONS(2865), 1, + [106006] = 2, + ACTIONS(4621), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89655] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4183), 1, + [106014] = 2, + ACTIONS(3332), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89666] = 2, + [106022] = 2, + ACTIONS(5305), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4562), 2, + [106030] = 2, + ACTIONS(5307), 1, sym__lookback_semicolon, - anon_sym_DOT, - [89675] = 3, - ACTIONS(4564), 1, - sym__lookback_semicolon, - STATE(527), 1, - sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89686] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(4566), 1, - anon_sym_RPAREN, + [106038] = 2, + ACTIONS(3402), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89697] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4568), 1, - sym__camelCaseIdentifier, + [106046] = 2, + ACTIONS(4424), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89708] = 3, - ACTIONS(4570), 1, - anon_sym_LBRACE, - STATE(293), 1, - sym_switch_block, + [106054] = 2, + ACTIONS(3450), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89719] = 3, - ACTIONS(2925), 1, + [106062] = 2, + ACTIONS(2773), 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, + [106070] = 2, + ACTIONS(5309), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89741] = 3, - ACTIONS(3529), 1, - anon_sym_DOT, - ACTIONS(3531), 1, - anon_sym_QMARK, + [106078] = 2, + ACTIONS(4867), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89752] = 2, + [106086] = 2, + ACTIONS(3544), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4572), 2, + [106094] = 2, + ACTIONS(3326), 1, sym__lookback_semicolon, - 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, - anon_sym_RPAREN, - ACTIONS(4576), 1, - anon_sym_COMMA, + [106102] = 2, + ACTIONS(3558), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89783] = 3, - ACTIONS(3835), 1, + [106110] = 2, + ACTIONS(5311), 1, anon_sym_DASH_GT, - ACTIONS(4578), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89794] = 3, - ACTIONS(3011), 1, + [106118] = 2, + ACTIONS(3452), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89805] = 3, - ACTIONS(2915), 1, + [106126] = 2, + ACTIONS(3546), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89816] = 2, + [106134] = 2, + ACTIONS(3560), 1, + sym__lookback_semicolon, 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, + [106142] = 2, + ACTIONS(3358), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89836] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2931), 1, + [106150] = 2, + ACTIONS(3496), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89847] = 2, - 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, + [106158] = 2, + ACTIONS(5313), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89867] = 3, - ACTIONS(2905), 1, + [106166] = 2, + ACTIONS(2769), 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, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89889] = 3, - ACTIONS(2899), 1, + [106174] = 2, + ACTIONS(3548), 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, + [106182] = 2, + ACTIONS(5315), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89911] = 3, - ACTIONS(2849), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [89922] = 3, - ACTIONS(2939), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [89933] = 3, - ACTIONS(2857), 1, + [106190] = 2, + ACTIONS(3538), 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, + [106198] = 2, + ACTIONS(3404), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89955] = 3, - ACTIONS(2825), 1, + [106206] = 2, + ACTIONS(3510), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89966] = 3, - ACTIONS(2841), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [106214] = 2, + ACTIONS(5317), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89977] = 3, - ACTIONS(4586), 1, + [106222] = 2, + ACTIONS(5319), 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, + [106230] = 2, + ACTIONS(5321), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89999] = 2, + [106238] = 2, + ACTIONS(5323), 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, + [106246] = 2, + ACTIONS(3454), 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, + [106254] = 2, + ACTIONS(3550), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90030] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2913), 1, - anon_sym_RBRACE, + [106262] = 2, + ACTIONS(5325), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90041] = 3, - ACTIONS(2839), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [106270] = 2, + ACTIONS(5327), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90052] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2103), 1, - sym__function_arg_list, + [106278] = 2, + ACTIONS(3320), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90063] = 3, - ACTIONS(2883), 1, + [106286] = 2, + ACTIONS(3348), 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, + [106294] = 2, + ACTIONS(5329), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90085] = 2, - ACTIONS(4594), 1, - sym__lookback_semicolon, + [106302] = 2, + ACTIONS(5331), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90093] = 2, - ACTIONS(4596), 1, + [106310] = 2, + ACTIONS(5333), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90101] = 2, - ACTIONS(4598), 1, + [106318] = 2, + ACTIONS(5335), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90109] = 2, - ACTIONS(4600), 1, - sym__lookback_semicolon, + [106326] = 2, + ACTIONS(5337), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90117] = 2, - ACTIONS(4602), 1, + [106334] = 2, + ACTIONS(3540), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90125] = 2, - ACTIONS(2857), 1, + [106342] = 2, + ACTIONS(5339), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90133] = 2, - ACTIONS(4604), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [90141] = 2, - ACTIONS(4606), 1, + [106350] = 2, + ACTIONS(5341), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90149] = 2, - ACTIONS(2841), 1, - sym__lookback_semicolon, + [106358] = 2, + ACTIONS(5343), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90157] = 2, - ACTIONS(4608), 1, + [106366] = 2, + ACTIONS(3456), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90165] = 2, - ACTIONS(2867), 1, + [106374] = 2, + ACTIONS(3384), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90173] = 2, - ACTIONS(2839), 1, + [106382] = 2, + ACTIONS(3356), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90181] = 2, - ACTIONS(4610), 1, + [106390] = 2, + ACTIONS(3458), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90189] = 2, - ACTIONS(2913), 1, - anon_sym_RBRACE, + [106398] = 2, + ACTIONS(5345), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90197] = 2, - ACTIONS(2883), 1, + [106406] = 2, + ACTIONS(3334), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90205] = 2, - ACTIONS(1592), 1, + [106414] = 2, + ACTIONS(3406), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90213] = 2, - ACTIONS(2899), 1, + [106422] = 2, + ACTIONS(3460), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90221] = 2, - ACTIONS(2853), 1, - sym__lookback_semicolon, + [106430] = 2, + ACTIONS(5347), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90229] = 2, - ACTIONS(4183), 1, + [106438] = 2, + ACTIONS(3562), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90237] = 2, - ACTIONS(4612), 1, - anon_sym_DASH_GT, + [106446] = 2, + ACTIONS(5349), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90245] = 2, - ACTIONS(2577), 1, - anon_sym_RBRACK, + [106454] = 2, + ACTIONS(5351), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90253] = 2, - ACTIONS(4614), 1, - anon_sym_DASH_GT, + [106462] = 2, + ACTIONS(5353), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90261] = 2, - ACTIONS(2825), 1, - sym__lookback_semicolon, + [106470] = 2, + ACTIONS(5077), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90269] = 2, - ACTIONS(2907), 1, + [106478] = 2, + ACTIONS(4836), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90277] = 2, - ACTIONS(2905), 1, + [106486] = 2, + ACTIONS(3462), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90285] = 2, - ACTIONS(4189), 1, - anon_sym_RBRACK, + [106494] = 2, + ACTIONS(5355), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90293] = 2, - ACTIONS(2849), 1, + [106502] = 2, + ACTIONS(3408), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90301] = 2, - ACTIONS(4616), 1, - sym__lookback_semicolon, + [106510] = 2, + ACTIONS(4670), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90309] = 2, - ACTIONS(4618), 1, - anon_sym_EQ, + [106518] = 2, + ACTIONS(5357), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90317] = 2, - ACTIONS(2903), 1, + [106526] = 2, + ACTIONS(3500), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90325] = 2, - ACTIONS(4620), 1, - sym__lookback_semicolon, + [106534] = 2, + ACTIONS(3324), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90333] = 2, - ACTIONS(4622), 1, - sym__rangeOperator, + [106542] = 2, + ACTIONS(3564), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90341] = 2, - ACTIONS(2915), 1, - sym__lookback_semicolon, + [106550] = 2, + ACTIONS(5359), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90349] = 2, - ACTIONS(4624), 1, - sym__rangeOperator, + [106558] = 2, + ACTIONS(5361), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90357] = 2, - ACTIONS(4244), 1, + [106566] = 2, + ACTIONS(5363), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90365] = 2, - ACTIONS(2931), 1, - anon_sym_RBRACK, + [106574] = 2, + ACTIONS(3566), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90373] = 2, - ACTIONS(1598), 1, + [106582] = 2, + ACTIONS(5365), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90381] = 2, - ACTIONS(4626), 1, + [106590] = 2, + ACTIONS(3372), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90389] = 2, - ACTIONS(4628), 1, + [106598] = 2, + ACTIONS(5367), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90397] = 2, - ACTIONS(4630), 1, - sym__lookback_semicolon, + [106606] = 2, + ACTIONS(5369), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90405] = 2, - ACTIONS(4632), 1, - sym__lookback_semicolon, + [106614] = 2, + ACTIONS(3082), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90413] = 2, - ACTIONS(2923), 1, - sym__lookback_semicolon, + [106622] = 2, + ACTIONS(5371), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90421] = 2, - ACTIONS(4634), 1, - sym__lookback_semicolon, + [106630] = 2, + ACTIONS(3514), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90429] = 2, - ACTIONS(2605), 1, - anon_sym_RBRACK, + [106638] = 2, + ACTIONS(3304), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90437] = 2, - ACTIONS(4636), 1, - anon_sym_COLON, + [106646] = 2, + ACTIONS(4840), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90445] = 2, - ACTIONS(4638), 1, + [106654] = 2, + ACTIONS(5373), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90453] = 2, - ACTIONS(3035), 1, + [106662] = 2, + ACTIONS(5375), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90461] = 2, - ACTIONS(3011), 1, - sym__lookback_semicolon, + [106670] = 2, + ACTIONS(5377), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90469] = 2, - ACTIONS(4640), 1, + [106678] = 2, + ACTIONS(3554), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90477] = 2, - ACTIONS(4208), 1, - anon_sym_RBRACK, + [106686] = 2, + ACTIONS(5179), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90485] = 2, - ACTIONS(2935), 1, - anon_sym_RBRACK, + [106694] = 2, + ACTIONS(4629), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90493] = 2, - ACTIONS(4642), 1, - sym__rangeOperator, + [106702] = 2, + ACTIONS(3502), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90501] = 2, - ACTIONS(2925), 1, - sym__lookback_semicolon, + [106710] = 2, + ACTIONS(5379), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90509] = 2, - ACTIONS(4644), 1, - anon_sym_RPAREN, + [106718] = 2, + ACTIONS(5381), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90517] = 2, - ACTIONS(2945), 1, + [106726] = 2, + ACTIONS(3410), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90525] = 2, - ACTIONS(2927), 1, - sym__lookback_semicolon, + [106734] = 2, + ACTIONS(4788), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90533] = 2, - ACTIONS(4646), 1, - anon_sym_DOT, + [106742] = 2, + ACTIONS(5383), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90541] = 2, - ACTIONS(4648), 1, + [106750] = 2, + ACTIONS(4600), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90549] = 2, - ACTIONS(2939), 1, + [106758] = 2, + ACTIONS(2242), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90557] = 2, - ACTIONS(4650), 1, + [106766] = 2, + ACTIONS(5385), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90565] = 2, - ACTIONS(4652), 1, - sym__rangeOperator, + [106774] = 2, + ACTIONS(3426), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90573] = 2, - ACTIONS(4654), 1, - anon_sym_DOT, + [106782] = 2, + ACTIONS(5387), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90581] = 2, - ACTIONS(4656), 1, - sym__lookback_semicolon, + [106790] = 2, + ACTIONS(5389), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [106798] = 2, + ACTIONS(4816), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90589] = 2, - ACTIONS(2819), 1, + [106806] = 2, + ACTIONS(3498), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90597] = 2, - ACTIONS(4658), 1, - anon_sym_RBRACE, + [106814] = 2, + ACTIONS(5391), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90605] = 2, - ACTIONS(4660), 1, - sym__lookback_semicolon, + [106822] = 2, + ACTIONS(3506), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90613] = 2, - ACTIONS(2929), 1, - sym__lookback_semicolon, + [106830] = 2, + ACTIONS(5393), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90621] = 2, - ACTIONS(4662), 1, - sym__lookback_semicolon, + [106838] = 2, + ACTIONS(3480), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90629] = 2, - ACTIONS(2897), 1, - sym__lookback_semicolon, + [106846] = 2, + ACTIONS(5395), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90637] = 2, - ACTIONS(4664), 1, + [106854] = 2, + ACTIONS(3470), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90645] = 2, - ACTIONS(4666), 1, + [106862] = 2, + ACTIONS(3572), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90653] = 2, - ACTIONS(4668), 1, - anon_sym_RBRACE, + [106870] = 2, + ACTIONS(3568), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90661] = 2, - ACTIONS(2865), 1, + [106878] = 2, + ACTIONS(5397), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90669] = 2, - ACTIONS(3003), 1, - sym__lookback_semicolon, + [106886] = 2, + ACTIONS(5399), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90677] = 2, - ACTIONS(4670), 1, - anon_sym_RPAREN, + [106894] = 2, + ACTIONS(5401), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90685] = 2, - ACTIONS(3027), 1, - sym__lookback_semicolon, + [106902] = 2, + ACTIONS(5403), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90693] = 2, - ACTIONS(2875), 1, + [106910] = 2, + ACTIONS(3528), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90701] = 2, - ACTIONS(2947), 1, + [106918] = 2, + ACTIONS(4664), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90709] = 2, - ACTIONS(3007), 1, + [106926] = 2, + ACTIONS(5405), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90717] = 2, - ACTIONS(2869), 1, + [106934] = 2, + ACTIONS(3464), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90725] = 2, - ACTIONS(4672), 1, - sym__lookback_semicolon, + [106942] = 2, + ACTIONS(3508), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90733] = 2, - ACTIONS(2955), 1, + [106950] = 2, + ACTIONS(3412), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90741] = 2, - ACTIONS(2879), 1, + [106958] = 2, + ACTIONS(5025), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90749] = 2, - ACTIONS(2893), 1, - anon_sym_RPAREN, + [106966] = 2, + ACTIONS(3520), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90757] = 2, - ACTIONS(2963), 1, + [106974] = 2, + ACTIONS(3354), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90765] = 2, - ACTIONS(4674), 1, - sym__lookback_semicolon, + [106982] = 2, + ACTIONS(5407), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90773] = 2, - ACTIONS(4676), 1, + [106990] = 2, + ACTIONS(2720), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90781] = 2, - ACTIONS(2971), 1, + [106998] = 2, + ACTIONS(3414), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90789] = 2, - ACTIONS(3009), 1, - sym__lookback_semicolon, + [107006] = 2, + ACTIONS(5409), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90797] = 2, - ACTIONS(4678), 1, + [107014] = 2, + ACTIONS(3574), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90805] = 2, - ACTIONS(2877), 1, + [107022] = 2, + ACTIONS(3484), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90813] = 2, - ACTIONS(3025), 1, + [107030] = 2, + ACTIONS(3556), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90821] = 2, - ACTIONS(4680), 1, - sym__lookback_semicolon, + [107038] = 2, + ACTIONS(5411), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90829] = 2, - ACTIONS(4682), 1, - anon_sym_RBRACE, + [107046] = 2, + ACTIONS(5413), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90837] = 2, - ACTIONS(4684), 1, - sym__lookback_semicolon, + [107054] = 2, + ACTIONS(5415), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90845] = 2, - ACTIONS(4686), 1, + [107062] = 2, + ACTIONS(5417), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90853] = 2, - ACTIONS(4688), 1, - sym__lookback_semicolon, + [107070] = 2, + ACTIONS(3486), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90861] = 2, - ACTIONS(2909), 1, + [107078] = 2, + ACTIONS(2712), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90869] = 2, - ACTIONS(3015), 1, + [107086] = 2, + ACTIONS(3416), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90877] = 2, - ACTIONS(4690), 1, + [107094] = 2, + ACTIONS(5419), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90885] = 2, - ACTIONS(2999), 1, + [107102] = 2, + ACTIONS(3390), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90893] = 2, - ACTIONS(4692), 1, - anon_sym_DOT, + [107110] = 2, + ACTIONS(5421), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90901] = 2, - ACTIONS(2993), 1, + [107118] = 2, + ACTIONS(1984), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90909] = 2, - ACTIONS(4694), 1, + [107126] = 2, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107134] = 2, + ACTIONS(5425), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90917] = 2, - ACTIONS(4696), 1, - anon_sym_EQ, + [107142] = 2, + ACTIONS(5427), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90925] = 2, - ACTIONS(4698), 1, + [107150] = 2, + ACTIONS(3534), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90933] = 2, - ACTIONS(4700), 1, - anon_sym_RPAREN, + [107158] = 2, + ACTIONS(5429), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90941] = 2, - ACTIONS(3021), 1, - sym__lookback_semicolon, + [107166] = 2, + ACTIONS(5431), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90949] = 2, - ACTIONS(4702), 1, - anon_sym_RPAREN, + [107174] = 2, + ACTIONS(5433), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90957] = 2, - ACTIONS(4704), 1, - sym__lookback_semicolon, + [107182] = 2, + ACTIONS(5435), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90965] = 2, - ACTIONS(4706), 1, - ts_builtin_sym_end, + [107190] = 2, + ACTIONS(5437), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90973] = 2, - ACTIONS(4708), 1, - sym__lookback_semicolon, + [107198] = 2, + ACTIONS(5439), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90981] = 2, - ACTIONS(4710), 1, - sym__lookback_semicolon, + [107206] = 2, + ACTIONS(5441), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90989] = 2, - ACTIONS(3023), 1, - sym__lookback_semicolon, + [107214] = 2, + ACTIONS(5443), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90997] = 2, - ACTIONS(2957), 1, - sym__lookback_semicolon, + [107222] = 2, + ACTIONS(5445), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91005] = 2, - ACTIONS(3019), 1, - sym__lookback_semicolon, + [107230] = 2, + ACTIONS(5447), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91013] = 2, - ACTIONS(2855), 1, + [107238] = 2, + ACTIONS(3328), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91021] = 2, - ACTIONS(2951), 1, + [107246] = 2, + ACTIONS(3360), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91029] = 2, - ACTIONS(4712), 1, + [107254] = 2, + ACTIONS(3392), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91037] = 2, - ACTIONS(4075), 1, - sym__lookback_semicolon, + [107262] = 2, + ACTIONS(4802), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91045] = 2, - ACTIONS(2843), 1, + [107270] = 2, + ACTIONS(4690), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91053] = 2, - ACTIONS(2861), 1, - sym__lookback_semicolon, + [107278] = 2, + ACTIONS(3066), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91061] = 2, - ACTIONS(4714), 1, - anon_sym_RPAREN, + [107286] = 2, + ACTIONS(3376), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91069] = 2, - ACTIONS(4716), 1, - anon_sym_DOT, + [107294] = 2, + ACTIONS(5449), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91077] = 2, - ACTIONS(2366), 1, + [107302] = 2, + ACTIONS(3418), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91085] = 2, - ACTIONS(4718), 1, - anon_sym_DOT, + [107310] = 2, + ACTIONS(3542), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91093] = 2, - ACTIONS(2885), 1, + [107318] = 2, + ACTIONS(3362), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91101] = 2, - ACTIONS(4720), 1, - anon_sym_COLON, + [107326] = 2, + ACTIONS(3394), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91109] = 2, - ACTIONS(2949), 1, + [107334] = 2, + ACTIONS(3570), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91117] = 2, - ACTIONS(4722), 1, - anon_sym_RBRACE, + [107342] = 2, + ACTIONS(5451), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91125] = 2, - ACTIONS(4724), 1, + [107350] = 2, + ACTIONS(5453), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91133] = 2, - ACTIONS(2917), 1, - sym__lookback_semicolon, + [107358] = 2, + ACTIONS(5455), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91141] = 2, - ACTIONS(2937), 1, + [107366] = 2, + ACTIONS(3420), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91149] = 2, - ACTIONS(4726), 1, - anon_sym_DASH_GT, + [107374] = 2, + ACTIONS(5457), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91157] = 2, - ACTIONS(4728), 1, + [107382] = 2, + ACTIONS(3336), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91165] = 2, - ACTIONS(2973), 1, + [107390] = 2, + ACTIONS(3330), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91173] = 2, - ACTIONS(4730), 1, - sym__lookback_semicolon, + [107398] = 2, + ACTIONS(5459), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91181] = 2, - ACTIONS(2953), 1, - sym__lookback_semicolon, + [107406] = 2, + ACTIONS(3352), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91189] = 2, - ACTIONS(4732), 1, - anon_sym_DOT, + [107414] = 2, + ACTIONS(3474), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91197] = 2, - ACTIONS(4734), 1, - anon_sym_DASH_GT, + [107422] = 2, + ACTIONS(5461), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91205] = 2, - ACTIONS(2911), 1, - anon_sym_RBRACK, + [107430] = 2, + ACTIONS(5463), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91213] = 2, - ACTIONS(2821), 1, - anon_sym_RBRACK, + [107438] = 2, + ACTIONS(5465), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91221] = 2, - ACTIONS(2933), 1, - sym__lookback_semicolon, + [107446] = 2, + ACTIONS(5467), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91229] = 2, - ACTIONS(2921), 1, + [107454] = 2, + ACTIONS(3578), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91237] = 2, - ACTIONS(4736), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [91245] = 2, - ACTIONS(3013), 1, + [107462] = 2, + ACTIONS(4735), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91253] = 2, - ACTIONS(4738), 1, - anon_sym_DOT, + [107470] = 2, + ACTIONS(3612), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91261] = 2, - ACTIONS(4740), 1, - anon_sym_DOT, + [107478] = 2, + ACTIONS(3580), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91269] = 2, - ACTIONS(4742), 1, - anon_sym_DOT, + [107486] = 2, + ACTIONS(3318), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91277] = 2, - ACTIONS(4046), 1, + [107494] = 2, + ACTIONS(3310), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91285] = 2, - ACTIONS(4744), 1, - anon_sym_RPAREN, + [107502] = 2, + ACTIONS(1434), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91293] = 2, - ACTIONS(4746), 1, - anon_sym_RBRACE, + [107510] = 2, + ACTIONS(3582), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91301] = 2, - ACTIONS(2961), 1, - sym__lookback_semicolon, + [107518] = 2, + ACTIONS(5469), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91309] = 2, - ACTIONS(4748), 1, + [107526] = 2, + ACTIONS(5471), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91317] = 2, - ACTIONS(4750), 1, - anon_sym_DOT, + [107534] = 2, + ACTIONS(3584), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91325] = 2, - ACTIONS(4752), 1, + [107542] = 2, + ACTIONS(5473), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91333] = 2, - ACTIONS(2975), 1, + [107550] = 2, + ACTIONS(3422), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91341] = 2, - ACTIONS(2895), 1, + [107558] = 2, + ACTIONS(5475), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91349] = 2, - ACTIONS(4305), 1, - anon_sym_RBRACK, + [107566] = 2, + ACTIONS(3586), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91357] = 2, - ACTIONS(2969), 1, - sym__lookback_semicolon, + [107574] = 2, + ACTIONS(5477), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91365] = 2, - ACTIONS(4754), 1, - anon_sym_DOT, + [107582] = 2, + ACTIONS(2780), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91373] = 2, - ACTIONS(4756), 1, - anon_sym_DOT, + [107590] = 2, + ACTIONS(3588), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91381] = 2, - ACTIONS(3001), 1, + [107598] = 2, + ACTIONS(3516), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91389] = 2, - ACTIONS(4204), 1, - anon_sym_DOT, + [107606] = 2, + ACTIONS(3308), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91397] = 2, - ACTIONS(4758), 1, - sym__lookback_semicolon, + [107614] = 2, + ACTIONS(5479), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91405] = 2, - ACTIONS(4760), 1, + [107622] = 2, + ACTIONS(5481), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91413] = 2, - ACTIONS(4762), 1, - anon_sym_DOT, + [107630] = 2, + ACTIONS(5483), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91421] = 2, - ACTIONS(4764), 1, - anon_sym_DOT, + [107638] = 2, + ACTIONS(5485), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91429] = 2, - ACTIONS(4766), 1, + [107646] = 2, + ACTIONS(5487), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91437] = 2, - ACTIONS(4768), 1, + [107654] = 2, + ACTIONS(5489), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91445] = 2, - ACTIONS(4770), 1, - anon_sym_DOT, + [107662] = 2, + ACTIONS(3316), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91453] = 2, - ACTIONS(2891), 1, + [107670] = 2, + ACTIONS(3046), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91461] = 2, - ACTIONS(4772), 1, + [107678] = 2, + ACTIONS(3300), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91469] = 2, - ACTIONS(4774), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [91477] = 2, - ACTIONS(4776), 1, - anon_sym_DOT, + [107686] = 2, + ACTIONS(5491), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91485] = 2, - ACTIONS(4778), 1, - sym__rangeOperator, + [107694] = 2, + ACTIONS(1990), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91493] = 2, - ACTIONS(4005), 1, + [107702] = 2, + ACTIONS(5493), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91501] = 2, - ACTIONS(4780), 1, + [107710] = 2, + ACTIONS(5495), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91509] = 2, - ACTIONS(4782), 1, + [107718] = 2, + ACTIONS(5497), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91517] = 2, - ACTIONS(4784), 1, - anon_sym_RBRACE, + [107726] = 2, + ACTIONS(3396), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91525] = 2, - ACTIONS(2977), 1, + [107734] = 2, + ACTIONS(3424), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91533] = 2, - ACTIONS(4786), 1, + [107742] = 2, + ACTIONS(5499), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91541] = 2, - ACTIONS(4788), 1, + [107750] = 2, + ACTIONS(5501), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91549] = 2, - ACTIONS(4790), 1, - anon_sym_DASH_GT, + [107758] = 2, + ACTIONS(5503), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91557] = 2, - ACTIONS(4792), 1, + [107766] = 2, + ACTIONS(3346), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91565] = 2, - ACTIONS(4794), 1, - anon_sym_DOT, + [107774] = 2, + ACTIONS(5505), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91573] = 2, - ACTIONS(4796), 1, + [107782] = 2, + ACTIONS(5507), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91581] = 2, - ACTIONS(3005), 1, - sym__lookback_semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [91589] = 2, - ACTIONS(4798), 1, + [107790] = 2, + ACTIONS(3590), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91597] = 2, - ACTIONS(4800), 1, + [107798] = 2, + ACTIONS(5509), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91605] = 2, - ACTIONS(4802), 1, - anon_sym_DOT, + [107806] = 2, + ACTIONS(5511), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91613] = 2, - ACTIONS(2995), 1, - anon_sym_RBRACE, + [107814] = 2, + ACTIONS(3592), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91621] = 2, - ACTIONS(3988), 1, + [107822] = 2, + ACTIONS(2788), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91629] = 2, - ACTIONS(4804), 1, + [107830] = 2, + ACTIONS(5513), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91637] = 2, - ACTIONS(4806), 1, - anon_sym_DOT, + [107838] = 2, + ACTIONS(3522), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91645] = 2, - ACTIONS(4808), 1, + [107846] = 2, + ACTIONS(3594), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91653] = 2, - ACTIONS(4810), 1, + [107854] = 2, + ACTIONS(3302), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91661] = 2, - ACTIONS(4812), 1, + [107862] = 2, + ACTIONS(5515), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91669] = 2, - ACTIONS(4814), 1, - anon_sym_DOT, + [107870] = 2, + ACTIONS(3596), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91677] = 2, - ACTIONS(4816), 1, - anon_sym_COLON, + [107878] = 2, + ACTIONS(3518), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91685] = 2, - ACTIONS(2997), 1, + [107886] = 2, + ACTIONS(5517), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91693] = 2, - ACTIONS(4818), 1, - anon_sym_DOT, + [107894] = 2, + ACTIONS(2758), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91701] = 2, - ACTIONS(4820), 1, - anon_sym_DOT, + [107902] = 2, + ACTIONS(5519), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91709] = 2, - ACTIONS(2597), 1, - anon_sym_RBRACK, + [107910] = 2, + ACTIONS(5521), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91717] = 2, - ACTIONS(4822), 1, - sym__lookback_semicolon, + [107918] = 2, + ACTIONS(5523), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91725] = 2, - ACTIONS(4824), 1, + [107926] = 2, + ACTIONS(5525), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91733] = 2, - ACTIONS(4826), 1, - anon_sym_DOT, + [107934] = 2, + ACTIONS(2270), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91741] = 2, - ACTIONS(4828), 1, + [107942] = 2, + ACTIONS(3350), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91749] = 2, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, + [107950] = 2, + ACTIONS(4763), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91757] = 2, - ACTIONS(4830), 1, - anon_sym_DOT, + [107958] = 2, + ACTIONS(5527), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91765] = 2, - ACTIONS(4832), 1, - anon_sym_DOT, + [107966] = 2, + ACTIONS(1968), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91773] = 2, - ACTIONS(4834), 1, - anon_sym_RPAREN, + [107974] = 2, + ACTIONS(2762), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91781] = 2, - ACTIONS(4836), 1, + [107982] = 2, + ACTIONS(5529), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91789] = 2, - ACTIONS(4838), 1, + [107990] = 2, + ACTIONS(5531), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91797] = 2, - ACTIONS(4840), 1, - anon_sym_DOT, + [107998] = 2, + ACTIONS(3428), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91805] = 2, - ACTIONS(4842), 1, + [108006] = 2, + ACTIONS(3314), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91813] = 2, - ACTIONS(4482), 1, - anon_sym_EQ_GT, + [108014] = 2, + ACTIONS(5533), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91821] = 2, - ACTIONS(4844), 1, + [108022] = 2, + ACTIONS(5535), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91829] = 2, - ACTIONS(4846), 1, + [108030] = 2, + ACTIONS(5537), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91837] = 2, - ACTIONS(4848), 1, - anon_sym_DOT, + [108038] = 2, + ACTIONS(3398), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91845] = 2, - ACTIONS(4850), 1, - anon_sym_DASH_GT, + [108046] = 2, + ACTIONS(5539), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91853] = 2, - ACTIONS(4852), 1, + [108054] = 2, + ACTIONS(5541), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91861] = 2, - ACTIONS(4854), 1, + [108062] = 2, + ACTIONS(3598), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108070] = 2, + ACTIONS(5543), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91869] = 2, - ACTIONS(2991), 1, + [108078] = 2, + ACTIONS(3530), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91877] = 2, - ACTIONS(4856), 1, - anon_sym_DASH_GT, + [108086] = 2, + ACTIONS(3472), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91885] = 2, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + [108094] = 2, + ACTIONS(3374), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91893] = 2, - ACTIONS(4858), 1, - anon_sym_LPAREN, + [108102] = 2, + ACTIONS(5545), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91901] = 2, - ACTIONS(2889), 1, - sym__lookback_semicolon, + [108110] = 2, + ACTIONS(5547), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91909] = 2, - ACTIONS(2959), 1, + [108118] = 2, + ACTIONS(3602), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91917] = 2, - ACTIONS(4860), 1, - sym__lookback_semicolon, + [108126] = 2, + ACTIONS(5549), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91925] = 2, - ACTIONS(4862), 1, - sym__lookback_semicolon, + [108134] = 2, + ACTIONS(5551), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91933] = 2, - ACTIONS(2845), 1, + [108142] = 2, + ACTIONS(3604), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91941] = 2, - ACTIONS(3941), 1, - sym__lookback_semicolon, + [108150] = 2, + ACTIONS(3054), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91949] = 2, - ACTIONS(2823), 1, + [108158] = 2, + ACTIONS(3342), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91957] = 2, - ACTIONS(2831), 1, + [108166] = 2, + ACTIONS(5553), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91965] = 2, - ACTIONS(3033), 1, - anon_sym_RBRACK, + [108174] = 2, + ACTIONS(5555), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91973] = 2, - ACTIONS(4864), 1, - anon_sym_EQ, + [108182] = 2, + ACTIONS(5557), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91981] = 2, - ACTIONS(2983), 1, - sym__lookback_semicolon, + [108190] = 2, + ACTIONS(5559), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91989] = 2, - ACTIONS(2847), 1, - sym__lookback_semicolon, + [108198] = 2, + ACTIONS(5561), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91997] = 2, - ACTIONS(4866), 1, - anon_sym_EQ, + [108206] = 2, + ACTIONS(5563), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92005] = 2, - ACTIONS(2851), 1, + [108214] = 2, + ACTIONS(3606), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92013] = 2, - ACTIONS(4868), 1, + [108222] = 2, + ACTIONS(3478), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92021] = 2, - ACTIONS(2863), 1, + [108230] = 2, + ACTIONS(5565), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92029] = 2, - ACTIONS(4870), 1, + [108238] = 2, + ACTIONS(3312), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92037] = 2, - ACTIONS(2873), 1, + [108246] = 2, + ACTIONS(5567), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92045] = 2, - ACTIONS(3911), 1, - sym__lookback_semicolon, + [108254] = 2, + ACTIONS(5569), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92053] = 2, - ACTIONS(2881), 1, + [108262] = 2, + ACTIONS(3476), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92061] = 2, - ACTIONS(2887), 1, - sym__lookback_semicolon, + [108270] = 2, + ACTIONS(5571), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92069] = 2, - ACTIONS(4872), 1, - anon_sym_RPAREN, + [108278] = 2, + ACTIONS(3382), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92077] = 2, - ACTIONS(2901), 1, + [108286] = 2, + ACTIONS(3430), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92085] = 2, - ACTIONS(3949), 1, + [108294] = 2, + ACTIONS(2786), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92093] = 2, - ACTIONS(4874), 1, + [108302] = 2, + ACTIONS(3608), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92101] = 2, - ACTIONS(2364), 1, - sym__lookback_semicolon, + [108310] = 2, + ACTIONS(5573), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92109] = 2, - ACTIONS(4562), 1, + [108318] = 2, + ACTIONS(5575), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92117] = 2, - ACTIONS(4876), 1, - anon_sym_RPAREN, + [108326] = 2, + ACTIONS(3610), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92125] = 2, - ACTIONS(4878), 1, - anon_sym_DOT, + [108334] = 2, + ACTIONS(2775), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92133] = 2, - ACTIONS(4572), 1, + [108342] = 2, + ACTIONS(5577), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92141] = 2, - ACTIONS(4880), 1, - anon_sym_LPAREN, + [108350] = 2, + ACTIONS(5579), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92149] = 2, - ACTIONS(4882), 1, - anon_sym_RBRACE, + [108358] = 2, + ACTIONS(5581), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92157] = 2, - ACTIONS(2593), 1, + [108366] = 2, + ACTIONS(3368), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92165] = 2, - ACTIONS(4884), 1, + [108374] = 2, + ACTIONS(5583), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92173] = 2, - ACTIONS(4886), 1, - anon_sym_LPAREN, + [108382] = 2, + ACTIONS(3344), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92181] = 2, - ACTIONS(3017), 1, + [108390] = 2, + ACTIONS(3532), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92189] = 2, - ACTIONS(4401), 1, - anon_sym_RBRACK, + [108398] = 2, + ACTIONS(5585), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92197] = 2, - ACTIONS(2919), 1, + [108406] = 2, + ACTIONS(5587), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108414] = 2, + ACTIONS(5589), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92205] = 2, - ACTIONS(4888), 1, - anon_sym_DOT, + [108422] = 2, + ACTIONS(3614), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108430] = 2, + ACTIONS(5591), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92213] = 2, - ACTIONS(2859), 1, + [108438] = 2, + ACTIONS(3432), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92221] = 2, - ACTIONS(4890), 1, - anon_sym_LPAREN, + [108446] = 2, + ACTIONS(3616), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92229] = 2, - ACTIONS(4406), 1, - anon_sym_RBRACK, + [108454] = 2, + ACTIONS(5593), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92237] = 2, - ACTIONS(4892), 1, - anon_sym_LPAREN, + [108462] = 2, + ACTIONS(5595), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92245] = 2, - ACTIONS(2589), 1, + [108470] = 2, + ACTIONS(3078), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92253] = 2, - ACTIONS(2985), 1, + [108478] = 2, + ACTIONS(5597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108486] = 2, + ACTIONS(5599), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108494] = 2, + ACTIONS(3618), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92261] = 2, - ACTIONS(2871), 1, + [108502] = 2, + ACTIONS(3306), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92269] = 2, - ACTIONS(2817), 1, - anon_sym_RBRACK, + [108510] = 2, + ACTIONS(3524), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108518] = 2, + ACTIONS(5601), 1, + anon_sym_LPAREN, 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(846)] = 0, + [SMALL_STATE(847)] = 111, + [SMALL_STATE(848)] = 222, + [SMALL_STATE(849)] = 330, + [SMALL_STATE(850)] = 440, + [SMALL_STATE(851)] = 509, + [SMALL_STATE(852)] = 618, + [SMALL_STATE(853)] = 727, + [SMALL_STATE(854)] = 836, + [SMALL_STATE(855)] = 945, + [SMALL_STATE(856)] = 1054, + [SMALL_STATE(857)] = 1163, + [SMALL_STATE(858)] = 1272, + [SMALL_STATE(859)] = 1381, + [SMALL_STATE(860)] = 1483, + [SMALL_STATE(861)] = 1585, + [SMALL_STATE(862)] = 1659, + [SMALL_STATE(863)] = 1761, + [SMALL_STATE(864)] = 1863, + [SMALL_STATE(865)] = 1965, + [SMALL_STATE(866)] = 2065, + [SMALL_STATE(867)] = 2165, + [SMALL_STATE(868)] = 2265, + [SMALL_STATE(869)] = 2365, + [SMALL_STATE(870)] = 2465, + [SMALL_STATE(871)] = 2565, + [SMALL_STATE(872)] = 2665, + [SMALL_STATE(873)] = 2765, + [SMALL_STATE(874)] = 2865, + [SMALL_STATE(875)] = 2965, + [SMALL_STATE(876)] = 3065, + [SMALL_STATE(877)] = 3165, + [SMALL_STATE(878)] = 3265, + [SMALL_STATE(879)] = 3365, + [SMALL_STATE(880)] = 3465, + [SMALL_STATE(881)] = 3565, + [SMALL_STATE(882)] = 3665, + [SMALL_STATE(883)] = 3765, + [SMALL_STATE(884)] = 3865, + [SMALL_STATE(885)] = 3965, + [SMALL_STATE(886)] = 4064, + [SMALL_STATE(887)] = 4163, + [SMALL_STATE(888)] = 4262, + [SMALL_STATE(889)] = 4361, + [SMALL_STATE(890)] = 4460, + [SMALL_STATE(891)] = 4559, + [SMALL_STATE(892)] = 4658, + [SMALL_STATE(893)] = 4757, + [SMALL_STATE(894)] = 4856, + [SMALL_STATE(895)] = 4955, + [SMALL_STATE(896)] = 5025, + [SMALL_STATE(897)] = 5123, + [SMALL_STATE(898)] = 5221, + [SMALL_STATE(899)] = 5319, + [SMALL_STATE(900)] = 5417, + [SMALL_STATE(901)] = 5495, + [SMALL_STATE(902)] = 5593, + [SMALL_STATE(903)] = 5691, + [SMALL_STATE(904)] = 5789, + [SMALL_STATE(905)] = 5887, + [SMALL_STATE(906)] = 5953, + [SMALL_STATE(907)] = 6051, + [SMALL_STATE(908)] = 6149, + [SMALL_STATE(909)] = 6225, + [SMALL_STATE(910)] = 6288, + [SMALL_STATE(911)] = 6351, + [SMALL_STATE(912)] = 6420, + [SMALL_STATE(913)] = 6484, + [SMALL_STATE(914)] = 6558, + [SMALL_STATE(915)] = 6632, + [SMALL_STATE(916)] = 6704, + [SMALL_STATE(917)] = 6780, + [SMALL_STATE(918)] = 6852, + [SMALL_STATE(919)] = 6919, + [SMALL_STATE(920)] = 6986, + [SMALL_STATE(921)] = 7053, + [SMALL_STATE(922)] = 7120, + [SMALL_STATE(923)] = 7179, + [SMALL_STATE(924)] = 7240, + [SMALL_STATE(925)] = 7318, + [SMALL_STATE(926)] = 7390, + [SMALL_STATE(927)] = 7468, + [SMALL_STATE(928)] = 7546, + [SMALL_STATE(929)] = 7624, + [SMALL_STATE(930)] = 7702, + [SMALL_STATE(931)] = 7774, + [SMALL_STATE(932)] = 7852, + [SMALL_STATE(933)] = 7926, + [SMALL_STATE(934)] = 8000, + [SMALL_STATE(935)] = 8058, + [SMALL_STATE(936)] = 8120, + [SMALL_STATE(937)] = 8193, + [SMALL_STATE(938)] = 8268, + [SMALL_STATE(939)] = 8343, + [SMALL_STATE(940)] = 8416, + [SMALL_STATE(941)] = 8491, + [SMALL_STATE(942)] = 8546, + [SMALL_STATE(943)] = 8601, + [SMALL_STATE(944)] = 8670, + [SMALL_STATE(945)] = 8731, + [SMALL_STATE(946)] = 8800, + [SMALL_STATE(947)] = 8855, + [SMALL_STATE(948)] = 8910, + [SMALL_STATE(949)] = 8985, + [SMALL_STATE(950)] = 9060, + [SMALL_STATE(951)] = 9115, + [SMALL_STATE(952)] = 9170, + [SMALL_STATE(953)] = 9230, + [SMALL_STATE(954)] = 9308, + [SMALL_STATE(955)] = 9364, + [SMALL_STATE(956)] = 9442, + [SMALL_STATE(957)] = 9500, + [SMALL_STATE(958)] = 9578, + [SMALL_STATE(959)] = 9656, + [SMALL_STATE(960)] = 9734, + [SMALL_STATE(961)] = 9788, + [SMALL_STATE(962)] = 9866, + [SMALL_STATE(963)] = 9922, + [SMALL_STATE(964)] = 10000, + [SMALL_STATE(965)] = 10078, + [SMALL_STATE(966)] = 10156, + [SMALL_STATE(967)] = 10234, + [SMALL_STATE(968)] = 10288, + [SMALL_STATE(969)] = 10348, + [SMALL_STATE(970)] = 10402, + [SMALL_STATE(971)] = 10477, + [SMALL_STATE(972)] = 10546, + [SMALL_STATE(973)] = 10615, + [SMALL_STATE(974)] = 10684, + [SMALL_STATE(975)] = 10753, + [SMALL_STATE(976)] = 10822, + [SMALL_STATE(977)] = 10875, + [SMALL_STATE(978)] = 10944, + [SMALL_STATE(979)] = 11017, + [SMALL_STATE(980)] = 11086, + [SMALL_STATE(981)] = 11155, + [SMALL_STATE(982)] = 11208, + [SMALL_STATE(983)] = 11283, + [SMALL_STATE(984)] = 11358, + [SMALL_STATE(985)] = 11431, + [SMALL_STATE(986)] = 11504, + [SMALL_STATE(987)] = 11577, + [SMALL_STATE(988)] = 11646, + [SMALL_STATE(989)] = 11721, + [SMALL_STATE(990)] = 11790, + [SMALL_STATE(991)] = 11857, + [SMALL_STATE(992)] = 11928, + [SMALL_STATE(993)] = 11995, + [SMALL_STATE(994)] = 12068, + [SMALL_STATE(995)] = 12143, + [SMALL_STATE(996)] = 12212, + [SMALL_STATE(997)] = 12279, + [SMALL_STATE(998)] = 12332, + [SMALL_STATE(999)] = 12405, + [SMALL_STATE(1000)] = 12480, + [SMALL_STATE(1001)] = 12553, + [SMALL_STATE(1002)] = 12626, + [SMALL_STATE(1003)] = 12695, + [SMALL_STATE(1004)] = 12766, + [SMALL_STATE(1005)] = 12839, + [SMALL_STATE(1006)] = 12908, + [SMALL_STATE(1007)] = 12977, + [SMALL_STATE(1008)] = 13046, + [SMALL_STATE(1009)] = 13119, + [SMALL_STATE(1010)] = 13190, + [SMALL_STATE(1011)] = 13263, + [SMALL_STATE(1012)] = 13332, + [SMALL_STATE(1013)] = 13405, + [SMALL_STATE(1014)] = 13480, + [SMALL_STATE(1015)] = 13547, + [SMALL_STATE(1016)] = 13616, + [SMALL_STATE(1017)] = 13685, + [SMALL_STATE(1018)] = 13738, + [SMALL_STATE(1019)] = 13807, + [SMALL_STATE(1020)] = 13860, + [SMALL_STATE(1021)] = 13929, + [SMALL_STATE(1022)] = 14004, + [SMALL_STATE(1023)] = 14057, + [SMALL_STATE(1024)] = 14110, + [SMALL_STATE(1025)] = 14185, + [SMALL_STATE(1026)] = 14238, + [SMALL_STATE(1027)] = 14307, + [SMALL_STATE(1028)] = 14360, + [SMALL_STATE(1029)] = 14429, + [SMALL_STATE(1030)] = 14482, + [SMALL_STATE(1031)] = 14535, + [SMALL_STATE(1032)] = 14604, + [SMALL_STATE(1033)] = 14673, + [SMALL_STATE(1034)] = 14748, + [SMALL_STATE(1035)] = 14801, + [SMALL_STATE(1036)] = 14887, + [SMALL_STATE(1037)] = 14957, + [SMALL_STATE(1038)] = 15027, + [SMALL_STATE(1039)] = 15113, + [SMALL_STATE(1040)] = 15179, + [SMALL_STATE(1041)] = 15265, + [SMALL_STATE(1042)] = 15331, + [SMALL_STATE(1043)] = 15401, + [SMALL_STATE(1044)] = 15467, + [SMALL_STATE(1045)] = 15519, + [SMALL_STATE(1046)] = 15585, + [SMALL_STATE(1047)] = 15655, + [SMALL_STATE(1048)] = 15721, + [SMALL_STATE(1049)] = 15787, + [SMALL_STATE(1050)] = 15857, + [SMALL_STATE(1051)] = 15923, + [SMALL_STATE(1052)] = 15989, + [SMALL_STATE(1053)] = 16075, + [SMALL_STATE(1054)] = 16145, + [SMALL_STATE(1055)] = 16211, + [SMALL_STATE(1056)] = 16277, + [SMALL_STATE(1057)] = 16343, + [SMALL_STATE(1058)] = 16413, + [SMALL_STATE(1059)] = 16499, + [SMALL_STATE(1060)] = 16565, + [SMALL_STATE(1061)] = 16631, + [SMALL_STATE(1062)] = 16683, + [SMALL_STATE(1063)] = 16749, + [SMALL_STATE(1064)] = 16815, + [SMALL_STATE(1065)] = 16881, + [SMALL_STATE(1066)] = 16947, + [SMALL_STATE(1067)] = 17017, + [SMALL_STATE(1068)] = 17083, + [SMALL_STATE(1069)] = 17152, + [SMALL_STATE(1070)] = 17221, + [SMALL_STATE(1071)] = 17290, + [SMALL_STATE(1072)] = 17359, + [SMALL_STATE(1073)] = 17428, + [SMALL_STATE(1074)] = 17497, + [SMALL_STATE(1075)] = 17566, + [SMALL_STATE(1076)] = 17635, + [SMALL_STATE(1077)] = 17704, + [SMALL_STATE(1078)] = 17773, + [SMALL_STATE(1079)] = 17842, + [SMALL_STATE(1080)] = 17911, + [SMALL_STATE(1081)] = 17980, + [SMALL_STATE(1082)] = 18049, + [SMALL_STATE(1083)] = 18118, + [SMALL_STATE(1084)] = 18187, + [SMALL_STATE(1085)] = 18256, + [SMALL_STATE(1086)] = 18325, + [SMALL_STATE(1087)] = 18394, + [SMALL_STATE(1088)] = 18463, + [SMALL_STATE(1089)] = 18532, + [SMALL_STATE(1090)] = 18601, + [SMALL_STATE(1091)] = 18670, + [SMALL_STATE(1092)] = 18739, + [SMALL_STATE(1093)] = 18808, + [SMALL_STATE(1094)] = 18877, + [SMALL_STATE(1095)] = 18946, + [SMALL_STATE(1096)] = 19009, + [SMALL_STATE(1097)] = 19078, + [SMALL_STATE(1098)] = 19147, + [SMALL_STATE(1099)] = 19216, + [SMALL_STATE(1100)] = 19285, + [SMALL_STATE(1101)] = 19354, + [SMALL_STATE(1102)] = 19423, + [SMALL_STATE(1103)] = 19492, + [SMALL_STATE(1104)] = 19561, + [SMALL_STATE(1105)] = 19630, + [SMALL_STATE(1106)] = 19699, + [SMALL_STATE(1107)] = 19768, + [SMALL_STATE(1108)] = 19837, + [SMALL_STATE(1109)] = 19906, + [SMALL_STATE(1110)] = 19975, + [SMALL_STATE(1111)] = 20044, + [SMALL_STATE(1112)] = 20113, + [SMALL_STATE(1113)] = 20182, + [SMALL_STATE(1114)] = 20251, + [SMALL_STATE(1115)] = 20320, + [SMALL_STATE(1116)] = 20383, + [SMALL_STATE(1117)] = 20452, + [SMALL_STATE(1118)] = 20521, + [SMALL_STATE(1119)] = 20590, + [SMALL_STATE(1120)] = 20659, + [SMALL_STATE(1121)] = 20728, + [SMALL_STATE(1122)] = 20791, + [SMALL_STATE(1123)] = 20860, + [SMALL_STATE(1124)] = 20929, + [SMALL_STATE(1125)] = 20998, + [SMALL_STATE(1126)] = 21067, + [SMALL_STATE(1127)] = 21136, + [SMALL_STATE(1128)] = 21199, + [SMALL_STATE(1129)] = 21268, + [SMALL_STATE(1130)] = 21337, + [SMALL_STATE(1131)] = 21406, + [SMALL_STATE(1132)] = 21475, + [SMALL_STATE(1133)] = 21544, + [SMALL_STATE(1134)] = 21613, + [SMALL_STATE(1135)] = 21682, + [SMALL_STATE(1136)] = 21751, + [SMALL_STATE(1137)] = 21820, + [SMALL_STATE(1138)] = 21889, + [SMALL_STATE(1139)] = 21958, + [SMALL_STATE(1140)] = 22027, + [SMALL_STATE(1141)] = 22096, + [SMALL_STATE(1142)] = 22165, + [SMALL_STATE(1143)] = 22234, + [SMALL_STATE(1144)] = 22303, + [SMALL_STATE(1145)] = 22372, + [SMALL_STATE(1146)] = 22441, + [SMALL_STATE(1147)] = 22510, + [SMALL_STATE(1148)] = 22579, + [SMALL_STATE(1149)] = 22648, + [SMALL_STATE(1150)] = 22717, + [SMALL_STATE(1151)] = 22786, + [SMALL_STATE(1152)] = 22855, + [SMALL_STATE(1153)] = 22924, + [SMALL_STATE(1154)] = 22993, + [SMALL_STATE(1155)] = 23062, + [SMALL_STATE(1156)] = 23131, + [SMALL_STATE(1157)] = 23200, + [SMALL_STATE(1158)] = 23269, + [SMALL_STATE(1159)] = 23338, + [SMALL_STATE(1160)] = 23407, + [SMALL_STATE(1161)] = 23476, + [SMALL_STATE(1162)] = 23545, + [SMALL_STATE(1163)] = 23614, + [SMALL_STATE(1164)] = 23683, + [SMALL_STATE(1165)] = 23752, + [SMALL_STATE(1166)] = 23821, + [SMALL_STATE(1167)] = 23890, + [SMALL_STATE(1168)] = 23959, + [SMALL_STATE(1169)] = 24028, + [SMALL_STATE(1170)] = 24097, + [SMALL_STATE(1171)] = 24166, + [SMALL_STATE(1172)] = 24235, + [SMALL_STATE(1173)] = 24304, + [SMALL_STATE(1174)] = 24373, + [SMALL_STATE(1175)] = 24442, + [SMALL_STATE(1176)] = 24511, + [SMALL_STATE(1177)] = 24580, + [SMALL_STATE(1178)] = 24649, + [SMALL_STATE(1179)] = 24712, + [SMALL_STATE(1180)] = 24781, + [SMALL_STATE(1181)] = 24850, + [SMALL_STATE(1182)] = 24919, + [SMALL_STATE(1183)] = 24988, + [SMALL_STATE(1184)] = 25057, + [SMALL_STATE(1185)] = 25126, + [SMALL_STATE(1186)] = 25195, + [SMALL_STATE(1187)] = 25264, + [SMALL_STATE(1188)] = 25333, + [SMALL_STATE(1189)] = 25402, + [SMALL_STATE(1190)] = 25471, + [SMALL_STATE(1191)] = 25540, + [SMALL_STATE(1192)] = 25609, + [SMALL_STATE(1193)] = 25672, + [SMALL_STATE(1194)] = 25741, + [SMALL_STATE(1195)] = 25810, + [SMALL_STATE(1196)] = 25879, + [SMALL_STATE(1197)] = 25948, + [SMALL_STATE(1198)] = 26017, + [SMALL_STATE(1199)] = 26086, + [SMALL_STATE(1200)] = 26155, + [SMALL_STATE(1201)] = 26224, + [SMALL_STATE(1202)] = 26293, + [SMALL_STATE(1203)] = 26362, + [SMALL_STATE(1204)] = 26431, + [SMALL_STATE(1205)] = 26500, + [SMALL_STATE(1206)] = 26569, + [SMALL_STATE(1207)] = 26638, + [SMALL_STATE(1208)] = 26707, + [SMALL_STATE(1209)] = 26776, + [SMALL_STATE(1210)] = 26845, + [SMALL_STATE(1211)] = 26914, + [SMALL_STATE(1212)] = 26983, + [SMALL_STATE(1213)] = 27052, + [SMALL_STATE(1214)] = 27121, + [SMALL_STATE(1215)] = 27190, + [SMALL_STATE(1216)] = 27259, + [SMALL_STATE(1217)] = 27328, + [SMALL_STATE(1218)] = 27397, + [SMALL_STATE(1219)] = 27466, + [SMALL_STATE(1220)] = 27535, + [SMALL_STATE(1221)] = 27604, + [SMALL_STATE(1222)] = 27673, + [SMALL_STATE(1223)] = 27742, + [SMALL_STATE(1224)] = 27811, + [SMALL_STATE(1225)] = 27880, + [SMALL_STATE(1226)] = 27949, + [SMALL_STATE(1227)] = 28018, + [SMALL_STATE(1228)] = 28087, + [SMALL_STATE(1229)] = 28156, + [SMALL_STATE(1230)] = 28225, + [SMALL_STATE(1231)] = 28294, + [SMALL_STATE(1232)] = 28363, + [SMALL_STATE(1233)] = 28432, + [SMALL_STATE(1234)] = 28501, + [SMALL_STATE(1235)] = 28570, + [SMALL_STATE(1236)] = 28639, + [SMALL_STATE(1237)] = 28708, + [SMALL_STATE(1238)] = 28777, + [SMALL_STATE(1239)] = 28846, + [SMALL_STATE(1240)] = 28915, + [SMALL_STATE(1241)] = 28984, + [SMALL_STATE(1242)] = 29053, + [SMALL_STATE(1243)] = 29122, + [SMALL_STATE(1244)] = 29191, + [SMALL_STATE(1245)] = 29260, + [SMALL_STATE(1246)] = 29329, + [SMALL_STATE(1247)] = 29398, + [SMALL_STATE(1248)] = 29467, + [SMALL_STATE(1249)] = 29536, + [SMALL_STATE(1250)] = 29605, + [SMALL_STATE(1251)] = 29674, + [SMALL_STATE(1252)] = 29743, + [SMALL_STATE(1253)] = 29812, + [SMALL_STATE(1254)] = 29881, + [SMALL_STATE(1255)] = 29950, + [SMALL_STATE(1256)] = 30019, + [SMALL_STATE(1257)] = 30088, + [SMALL_STATE(1258)] = 30157, + [SMALL_STATE(1259)] = 30226, + [SMALL_STATE(1260)] = 30295, + [SMALL_STATE(1261)] = 30364, + [SMALL_STATE(1262)] = 30433, + [SMALL_STATE(1263)] = 30502, + [SMALL_STATE(1264)] = 30571, + [SMALL_STATE(1265)] = 30640, + [SMALL_STATE(1266)] = 30709, + [SMALL_STATE(1267)] = 30778, + [SMALL_STATE(1268)] = 30847, + [SMALL_STATE(1269)] = 30916, + [SMALL_STATE(1270)] = 30995, + [SMALL_STATE(1271)] = 31074, + [SMALL_STATE(1272)] = 31153, + [SMALL_STATE(1273)] = 31236, + [SMALL_STATE(1274)] = 31319, + [SMALL_STATE(1275)] = 31402, + [SMALL_STATE(1276)] = 31485, + [SMALL_STATE(1277)] = 31568, + [SMALL_STATE(1278)] = 31647, + [SMALL_STATE(1279)] = 31725, + [SMALL_STATE(1280)] = 31813, + [SMALL_STATE(1281)] = 31891, + [SMALL_STATE(1282)] = 31979, + [SMALL_STATE(1283)] = 32061, + [SMALL_STATE(1284)] = 32143, + [SMALL_STATE(1285)] = 32225, + [SMALL_STATE(1286)] = 32307, + [SMALL_STATE(1287)] = 32389, + [SMALL_STATE(1288)] = 32448, + [SMALL_STATE(1289)] = 32507, + [SMALL_STATE(1290)] = 32566, + [SMALL_STATE(1291)] = 32625, + [SMALL_STATE(1292)] = 32681, + [SMALL_STATE(1293)] = 32767, + [SMALL_STATE(1294)] = 32847, + [SMALL_STATE(1295)] = 32903, + [SMALL_STATE(1296)] = 32959, + [SMALL_STATE(1297)] = 33045, + [SMALL_STATE(1298)] = 33125, + [SMALL_STATE(1299)] = 33205, + [SMALL_STATE(1300)] = 33261, + [SMALL_STATE(1301)] = 33341, + [SMALL_STATE(1302)] = 33421, + [SMALL_STATE(1303)] = 33468, + [SMALL_STATE(1304)] = 33555, + [SMALL_STATE(1305)] = 33642, + [SMALL_STATE(1306)] = 33729, + [SMALL_STATE(1307)] = 33816, + [SMALL_STATE(1308)] = 33903, + [SMALL_STATE(1309)] = 33950, + [SMALL_STATE(1310)] = 34034, + [SMALL_STATE(1311)] = 34112, + [SMALL_STATE(1312)] = 34196, + [SMALL_STATE(1313)] = 34280, + [SMALL_STATE(1314)] = 34364, + [SMALL_STATE(1315)] = 34448, + [SMALL_STATE(1316)] = 34532, + [SMALL_STATE(1317)] = 34588, + [SMALL_STATE(1318)] = 34672, + [SMALL_STATE(1319)] = 34756, + [SMALL_STATE(1320)] = 34840, + [SMALL_STATE(1321)] = 34924, + [SMALL_STATE(1322)] = 34980, + [SMALL_STATE(1323)] = 35064, + [SMALL_STATE(1324)] = 35120, + [SMALL_STATE(1325)] = 35204, + [SMALL_STATE(1326)] = 35254, + [SMALL_STATE(1327)] = 35336, + [SMALL_STATE(1328)] = 35420, + [SMALL_STATE(1329)] = 35504, + [SMALL_STATE(1330)] = 35554, + [SMALL_STATE(1331)] = 35638, + [SMALL_STATE(1332)] = 35722, + [SMALL_STATE(1333)] = 35806, + [SMALL_STATE(1334)] = 35890, + [SMALL_STATE(1335)] = 35974, + [SMALL_STATE(1336)] = 36058, + [SMALL_STATE(1337)] = 36142, + [SMALL_STATE(1338)] = 36198, + [SMALL_STATE(1339)] = 36248, + [SMALL_STATE(1340)] = 36332, + [SMALL_STATE(1341)] = 36416, + [SMALL_STATE(1342)] = 36500, + [SMALL_STATE(1343)] = 36584, + [SMALL_STATE(1344)] = 36634, + [SMALL_STATE(1345)] = 36690, + [SMALL_STATE(1346)] = 36774, + [SMALL_STATE(1347)] = 36858, + [SMALL_STATE(1348)] = 36942, + [SMALL_STATE(1349)] = 37026, + [SMALL_STATE(1350)] = 37110, + [SMALL_STATE(1351)] = 37194, + [SMALL_STATE(1352)] = 37278, + [SMALL_STATE(1353)] = 37362, + [SMALL_STATE(1354)] = 37446, + [SMALL_STATE(1355)] = 37530, + [SMALL_STATE(1356)] = 37580, + [SMALL_STATE(1357)] = 37664, + [SMALL_STATE(1358)] = 37748, + [SMALL_STATE(1359)] = 37832, + [SMALL_STATE(1360)] = 37910, + [SMALL_STATE(1361)] = 37988, + [SMALL_STATE(1362)] = 38066, + [SMALL_STATE(1363)] = 38144, + [SMALL_STATE(1364)] = 38228, + [SMALL_STATE(1365)] = 38309, + [SMALL_STATE(1366)] = 38390, + [SMALL_STATE(1367)] = 38471, + [SMALL_STATE(1368)] = 38520, + [SMALL_STATE(1369)] = 38573, + [SMALL_STATE(1370)] = 38654, + [SMALL_STATE(1371)] = 38707, + [SMALL_STATE(1372)] = 38788, + [SMALL_STATE(1373)] = 38869, + [SMALL_STATE(1374)] = 38914, + [SMALL_STATE(1375)] = 38995, + [SMALL_STATE(1376)] = 39076, + [SMALL_STATE(1377)] = 39159, + [SMALL_STATE(1378)] = 39212, + [SMALL_STATE(1379)] = 39259, + [SMALL_STATE(1380)] = 39340, + [SMALL_STATE(1381)] = 39421, + [SMALL_STATE(1382)] = 39502, + [SMALL_STATE(1383)] = 39583, + [SMALL_STATE(1384)] = 39664, + [SMALL_STATE(1385)] = 39707, + [SMALL_STATE(1386)] = 39788, + [SMALL_STATE(1387)] = 39869, + [SMALL_STATE(1388)] = 39950, + [SMALL_STATE(1389)] = 40031, + [SMALL_STATE(1390)] = 40112, + [SMALL_STATE(1391)] = 40193, + [SMALL_STATE(1392)] = 40274, + [SMALL_STATE(1393)] = 40355, + [SMALL_STATE(1394)] = 40436, + [SMALL_STATE(1395)] = 40479, + [SMALL_STATE(1396)] = 40530, + [SMALL_STATE(1397)] = 40611, + [SMALL_STATE(1398)] = 40660, + [SMALL_STATE(1399)] = 40741, + [SMALL_STATE(1400)] = 40822, + [SMALL_STATE(1401)] = 40903, + [SMALL_STATE(1402)] = 40984, + [SMALL_STATE(1403)] = 41065, + [SMALL_STATE(1404)] = 41146, + [SMALL_STATE(1405)] = 41227, + [SMALL_STATE(1406)] = 41308, + [SMALL_STATE(1407)] = 41359, + [SMALL_STATE(1408)] = 41440, + [SMALL_STATE(1409)] = 41521, + [SMALL_STATE(1410)] = 41602, + [SMALL_STATE(1411)] = 41683, + [SMALL_STATE(1412)] = 41764, + [SMALL_STATE(1413)] = 41845, + [SMALL_STATE(1414)] = 41926, + [SMALL_STATE(1415)] = 42007, + [SMALL_STATE(1416)] = 42050, + [SMALL_STATE(1417)] = 42092, + [SMALL_STATE(1418)] = 42134, + [SMALL_STATE(1419)] = 42218, + [SMALL_STATE(1420)] = 42260, + [SMALL_STATE(1421)] = 42314, + [SMALL_STATE(1422)] = 42356, + [SMALL_STATE(1423)] = 42398, + [SMALL_STATE(1424)] = 42482, + [SMALL_STATE(1425)] = 42558, + [SMALL_STATE(1426)] = 42634, + [SMALL_STATE(1427)] = 42710, + [SMALL_STATE(1428)] = 42786, + [SMALL_STATE(1429)] = 42862, + [SMALL_STATE(1430)] = 42946, + [SMALL_STATE(1431)] = 42994, + [SMALL_STATE(1432)] = 43036, + [SMALL_STATE(1433)] = 43120, + [SMALL_STATE(1434)] = 43204, + [SMALL_STATE(1435)] = 43252, + [SMALL_STATE(1436)] = 43294, + [SMALL_STATE(1437)] = 43378, + [SMALL_STATE(1438)] = 43432, + [SMALL_STATE(1439)] = 43474, + [SMALL_STATE(1440)] = 43516, + [SMALL_STATE(1441)] = 43558, + [SMALL_STATE(1442)] = 43600, + [SMALL_STATE(1443)] = 43642, + [SMALL_STATE(1444)] = 43726, + [SMALL_STATE(1445)] = 43810, + [SMALL_STATE(1446)] = 43852, + [SMALL_STATE(1447)] = 43894, + [SMALL_STATE(1448)] = 43940, + [SMALL_STATE(1449)] = 43982, + [SMALL_STATE(1450)] = 44024, + [SMALL_STATE(1451)] = 44104, + [SMALL_STATE(1452)] = 44146, + [SMALL_STATE(1453)] = 44188, + [SMALL_STATE(1454)] = 44242, + [SMALL_STATE(1455)] = 44290, + [SMALL_STATE(1456)] = 44332, + [SMALL_STATE(1457)] = 44388, + [SMALL_STATE(1458)] = 44430, + [SMALL_STATE(1459)] = 44484, + [SMALL_STATE(1460)] = 44538, + [SMALL_STATE(1461)] = 44580, + [SMALL_STATE(1462)] = 44622, + [SMALL_STATE(1463)] = 44664, + [SMALL_STATE(1464)] = 44706, + [SMALL_STATE(1465)] = 44748, + [SMALL_STATE(1466)] = 44790, + [SMALL_STATE(1467)] = 44834, + [SMALL_STATE(1468)] = 44876, + [SMALL_STATE(1469)] = 44918, + [SMALL_STATE(1470)] = 44960, + [SMALL_STATE(1471)] = 45002, + [SMALL_STATE(1472)] = 45044, + [SMALL_STATE(1473)] = 45086, + [SMALL_STATE(1474)] = 45128, + [SMALL_STATE(1475)] = 45170, + [SMALL_STATE(1476)] = 45212, + [SMALL_STATE(1477)] = 45254, + [SMALL_STATE(1478)] = 45308, + [SMALL_STATE(1479)] = 45362, + [SMALL_STATE(1480)] = 45406, + [SMALL_STATE(1481)] = 45448, + [SMALL_STATE(1482)] = 45490, + [SMALL_STATE(1483)] = 45532, + [SMALL_STATE(1484)] = 45574, + [SMALL_STATE(1485)] = 45658, + [SMALL_STATE(1486)] = 45700, + [SMALL_STATE(1487)] = 45744, + [SMALL_STATE(1488)] = 45828, + [SMALL_STATE(1489)] = 45876, + [SMALL_STATE(1490)] = 45924, + [SMALL_STATE(1491)] = 45966, + [SMALL_STATE(1492)] = 46008, + [SMALL_STATE(1493)] = 46050, + [SMALL_STATE(1494)] = 46092, + [SMALL_STATE(1495)] = 46143, + [SMALL_STATE(1496)] = 46184, + [SMALL_STATE(1497)] = 46225, + [SMALL_STATE(1498)] = 46266, + [SMALL_STATE(1499)] = 46307, + [SMALL_STATE(1500)] = 46348, + [SMALL_STATE(1501)] = 46389, + [SMALL_STATE(1502)] = 46430, + [SMALL_STATE(1503)] = 46471, + [SMALL_STATE(1504)] = 46512, + [SMALL_STATE(1505)] = 46553, + [SMALL_STATE(1506)] = 46594, + [SMALL_STATE(1507)] = 46673, + [SMALL_STATE(1508)] = 46714, + [SMALL_STATE(1509)] = 46755, + [SMALL_STATE(1510)] = 46796, + [SMALL_STATE(1511)] = 46837, + [SMALL_STATE(1512)] = 46878, + [SMALL_STATE(1513)] = 46919, + [SMALL_STATE(1514)] = 46960, + [SMALL_STATE(1515)] = 47001, + [SMALL_STATE(1516)] = 47042, + [SMALL_STATE(1517)] = 47083, + [SMALL_STATE(1518)] = 47130, + [SMALL_STATE(1519)] = 47181, + [SMALL_STATE(1520)] = 47222, + [SMALL_STATE(1521)] = 47269, + [SMALL_STATE(1522)] = 47310, + [SMALL_STATE(1523)] = 47357, + [SMALL_STATE(1524)] = 47408, + [SMALL_STATE(1525)] = 47487, + [SMALL_STATE(1526)] = 47568, + [SMALL_STATE(1527)] = 47649, + [SMALL_STATE(1528)] = 47690, + [SMALL_STATE(1529)] = 47731, + [SMALL_STATE(1530)] = 47772, + [SMALL_STATE(1531)] = 47813, + [SMALL_STATE(1532)] = 47854, + [SMALL_STATE(1533)] = 47933, + [SMALL_STATE(1534)] = 47974, + [SMALL_STATE(1535)] = 48047, + [SMALL_STATE(1536)] = 48098, + [SMALL_STATE(1537)] = 48171, + [SMALL_STATE(1538)] = 48244, + [SMALL_STATE(1539)] = 48317, + [SMALL_STATE(1540)] = 48364, + [SMALL_STATE(1541)] = 48437, + [SMALL_STATE(1542)] = 48488, + [SMALL_STATE(1543)] = 48529, + [SMALL_STATE(1544)] = 48602, + [SMALL_STATE(1545)] = 48675, + [SMALL_STATE(1546)] = 48748, + [SMALL_STATE(1547)] = 48821, + [SMALL_STATE(1548)] = 48894, + [SMALL_STATE(1549)] = 48941, + [SMALL_STATE(1550)] = 48982, + [SMALL_STATE(1551)] = 49033, + [SMALL_STATE(1552)] = 49074, + [SMALL_STATE(1553)] = 49153, + [SMALL_STATE(1554)] = 49194, + [SMALL_STATE(1555)] = 49235, + [SMALL_STATE(1556)] = 49276, + [SMALL_STATE(1557)] = 49329, + [SMALL_STATE(1558)] = 49370, + [SMALL_STATE(1559)] = 49411, + [SMALL_STATE(1560)] = 49452, + [SMALL_STATE(1561)] = 49499, + [SMALL_STATE(1562)] = 49577, + [SMALL_STATE(1563)] = 49655, + [SMALL_STATE(1564)] = 49733, + [SMALL_STATE(1565)] = 49811, + [SMALL_STATE(1566)] = 49889, + [SMALL_STATE(1567)] = 49967, + [SMALL_STATE(1568)] = 50045, + [SMALL_STATE(1569)] = 50091, + [SMALL_STATE(1570)] = 50169, + [SMALL_STATE(1571)] = 50247, + [SMALL_STATE(1572)] = 50325, + [SMALL_STATE(1573)] = 50403, + [SMALL_STATE(1574)] = 50481, + [SMALL_STATE(1575)] = 50559, + [SMALL_STATE(1576)] = 50637, + [SMALL_STATE(1577)] = 50677, + [SMALL_STATE(1578)] = 50755, + [SMALL_STATE(1579)] = 50833, + [SMALL_STATE(1580)] = 50911, + [SMALL_STATE(1581)] = 50989, + [SMALL_STATE(1582)] = 51067, + [SMALL_STATE(1583)] = 51107, + [SMALL_STATE(1584)] = 51185, + [SMALL_STATE(1585)] = 51263, + [SMALL_STATE(1586)] = 51305, + [SMALL_STATE(1587)] = 51383, + [SMALL_STATE(1588)] = 51461, + [SMALL_STATE(1589)] = 51539, + [SMALL_STATE(1590)] = 51617, + [SMALL_STATE(1591)] = 51695, + [SMALL_STATE(1592)] = 51773, + [SMALL_STATE(1593)] = 51851, + [SMALL_STATE(1594)] = 51929, + [SMALL_STATE(1595)] = 52007, + [SMALL_STATE(1596)] = 52085, + [SMALL_STATE(1597)] = 52163, + [SMALL_STATE(1598)] = 52241, + [SMALL_STATE(1599)] = 52319, + [SMALL_STATE(1600)] = 52397, + [SMALL_STATE(1601)] = 52475, + [SMALL_STATE(1602)] = 52553, + [SMALL_STATE(1603)] = 52603, + [SMALL_STATE(1604)] = 52681, + [SMALL_STATE(1605)] = 52725, + [SMALL_STATE(1606)] = 52803, + [SMALL_STATE(1607)] = 52845, + [SMALL_STATE(1608)] = 52917, + [SMALL_STATE(1609)] = 52995, + [SMALL_STATE(1610)] = 53073, + [SMALL_STATE(1611)] = 53151, + [SMALL_STATE(1612)] = 53223, + [SMALL_STATE(1613)] = 53295, + [SMALL_STATE(1614)] = 53373, + [SMALL_STATE(1615)] = 53451, + [SMALL_STATE(1616)] = 53523, + [SMALL_STATE(1617)] = 53601, + [SMALL_STATE(1618)] = 53679, + [SMALL_STATE(1619)] = 53757, + [SMALL_STATE(1620)] = 53835, + [SMALL_STATE(1621)] = 53875, + [SMALL_STATE(1622)] = 53921, + [SMALL_STATE(1623)] = 53999, + [SMALL_STATE(1624)] = 54077, + [SMALL_STATE(1625)] = 54155, + [SMALL_STATE(1626)] = 54233, + [SMALL_STATE(1627)] = 54311, + [SMALL_STATE(1628)] = 54389, + [SMALL_STATE(1629)] = 54433, + [SMALL_STATE(1630)] = 54505, + [SMALL_STATE(1631)] = 54583, + [SMALL_STATE(1632)] = 54661, + [SMALL_STATE(1633)] = 54739, + [SMALL_STATE(1634)] = 54817, + [SMALL_STATE(1635)] = 54889, + [SMALL_STATE(1636)] = 54967, + [SMALL_STATE(1637)] = 55039, + [SMALL_STATE(1638)] = 55117, + [SMALL_STATE(1639)] = 55195, + [SMALL_STATE(1640)] = 55273, + [SMALL_STATE(1641)] = 55351, + [SMALL_STATE(1642)] = 55423, + [SMALL_STATE(1643)] = 55501, + [SMALL_STATE(1644)] = 55579, + [SMALL_STATE(1645)] = 55651, + [SMALL_STATE(1646)] = 55729, + [SMALL_STATE(1647)] = 55807, + [SMALL_STATE(1648)] = 55885, + [SMALL_STATE(1649)] = 55963, + [SMALL_STATE(1650)] = 56041, + [SMALL_STATE(1651)] = 56119, + [SMALL_STATE(1652)] = 56197, + [SMALL_STATE(1653)] = 56269, + [SMALL_STATE(1654)] = 56347, + [SMALL_STATE(1655)] = 56389, + [SMALL_STATE(1656)] = 56431, + [SMALL_STATE(1657)] = 56509, + [SMALL_STATE(1658)] = 56587, + [SMALL_STATE(1659)] = 56665, + [SMALL_STATE(1660)] = 56743, + [SMALL_STATE(1661)] = 56821, + [SMALL_STATE(1662)] = 56899, + [SMALL_STATE(1663)] = 56977, + [SMALL_STATE(1664)] = 57055, + [SMALL_STATE(1665)] = 57133, + [SMALL_STATE(1666)] = 57211, + [SMALL_STATE(1667)] = 57289, + [SMALL_STATE(1668)] = 57367, + [SMALL_STATE(1669)] = 57445, + [SMALL_STATE(1670)] = 57523, + [SMALL_STATE(1671)] = 57601, + [SMALL_STATE(1672)] = 57679, + [SMALL_STATE(1673)] = 57757, + [SMALL_STATE(1674)] = 57835, + [SMALL_STATE(1675)] = 57913, + [SMALL_STATE(1676)] = 57957, + [SMALL_STATE(1677)] = 58035, + [SMALL_STATE(1678)] = 58113, + [SMALL_STATE(1679)] = 58191, + [SMALL_STATE(1680)] = 58269, + [SMALL_STATE(1681)] = 58347, + [SMALL_STATE(1682)] = 58387, + [SMALL_STATE(1683)] = 58429, + [SMALL_STATE(1684)] = 58507, + [SMALL_STATE(1685)] = 58585, + [SMALL_STATE(1686)] = 58663, + [SMALL_STATE(1687)] = 58741, + [SMALL_STATE(1688)] = 58819, + [SMALL_STATE(1689)] = 58897, + [SMALL_STATE(1690)] = 58941, + [SMALL_STATE(1691)] = 59019, + [SMALL_STATE(1692)] = 59097, + [SMALL_STATE(1693)] = 59175, + [SMALL_STATE(1694)] = 59253, + [SMALL_STATE(1695)] = 59331, + [SMALL_STATE(1696)] = 59371, + [SMALL_STATE(1697)] = 59411, + [SMALL_STATE(1698)] = 59489, + [SMALL_STATE(1699)] = 59567, + [SMALL_STATE(1700)] = 59607, + [SMALL_STATE(1701)] = 59685, + [SMALL_STATE(1702)] = 59763, + [SMALL_STATE(1703)] = 59841, + [SMALL_STATE(1704)] = 59919, + [SMALL_STATE(1705)] = 59997, + [SMALL_STATE(1706)] = 60075, + [SMALL_STATE(1707)] = 60153, + [SMALL_STATE(1708)] = 60231, + [SMALL_STATE(1709)] = 60309, + [SMALL_STATE(1710)] = 60387, + [SMALL_STATE(1711)] = 60465, + [SMALL_STATE(1712)] = 60543, + [SMALL_STATE(1713)] = 60621, + [SMALL_STATE(1714)] = 60699, + [SMALL_STATE(1715)] = 60777, + [SMALL_STATE(1716)] = 60855, + [SMALL_STATE(1717)] = 60933, + [SMALL_STATE(1718)] = 60973, + [SMALL_STATE(1719)] = 61013, + [SMALL_STATE(1720)] = 61088, + [SMALL_STATE(1721)] = 61163, + [SMALL_STATE(1722)] = 61202, + [SMALL_STATE(1723)] = 61243, + [SMALL_STATE(1724)] = 61318, + [SMALL_STATE(1725)] = 61393, + [SMALL_STATE(1726)] = 61432, + [SMALL_STATE(1727)] = 61507, + [SMALL_STATE(1728)] = 61582, + [SMALL_STATE(1729)] = 61621, + [SMALL_STATE(1730)] = 61696, + [SMALL_STATE(1731)] = 61771, + [SMALL_STATE(1732)] = 61810, + [SMALL_STATE(1733)] = 61885, + [SMALL_STATE(1734)] = 61924, + [SMALL_STATE(1735)] = 61999, + [SMALL_STATE(1736)] = 62074, + [SMALL_STATE(1737)] = 62149, + [SMALL_STATE(1738)] = 62190, + [SMALL_STATE(1739)] = 62265, + [SMALL_STATE(1740)] = 62304, + [SMALL_STATE(1741)] = 62379, + [SMALL_STATE(1742)] = 62454, + [SMALL_STATE(1743)] = 62529, + [SMALL_STATE(1744)] = 62604, + [SMALL_STATE(1745)] = 62679, + [SMALL_STATE(1746)] = 62754, + [SMALL_STATE(1747)] = 62829, + [SMALL_STATE(1748)] = 62904, + [SMALL_STATE(1749)] = 62949, + [SMALL_STATE(1750)] = 62990, + [SMALL_STATE(1751)] = 63065, + [SMALL_STATE(1752)] = 63140, + [SMALL_STATE(1753)] = 63179, + [SMALL_STATE(1754)] = 63254, + [SMALL_STATE(1755)] = 63329, + [SMALL_STATE(1756)] = 63404, + [SMALL_STATE(1757)] = 63479, + [SMALL_STATE(1758)] = 63554, + [SMALL_STATE(1759)] = 63629, + [SMALL_STATE(1760)] = 63700, + [SMALL_STATE(1761)] = 63775, + [SMALL_STATE(1762)] = 63814, + [SMALL_STATE(1763)] = 63853, + [SMALL_STATE(1764)] = 63928, + [SMALL_STATE(1765)] = 64003, + [SMALL_STATE(1766)] = 64042, + [SMALL_STATE(1767)] = 64117, + [SMALL_STATE(1768)] = 64192, + [SMALL_STATE(1769)] = 64267, + [SMALL_STATE(1770)] = 64342, + [SMALL_STATE(1771)] = 64417, + [SMALL_STATE(1772)] = 64492, + [SMALL_STATE(1773)] = 64567, + [SMALL_STATE(1774)] = 64606, + [SMALL_STATE(1775)] = 64681, + [SMALL_STATE(1776)] = 64756, + [SMALL_STATE(1777)] = 64827, + [SMALL_STATE(1778)] = 64902, + [SMALL_STATE(1779)] = 64977, + [SMALL_STATE(1780)] = 65052, + [SMALL_STATE(1781)] = 65127, + [SMALL_STATE(1782)] = 65166, + [SMALL_STATE(1783)] = 65241, + [SMALL_STATE(1784)] = 65316, + [SMALL_STATE(1785)] = 65355, + [SMALL_STATE(1786)] = 65430, + [SMALL_STATE(1787)] = 65505, + [SMALL_STATE(1788)] = 65580, + [SMALL_STATE(1789)] = 65619, + [SMALL_STATE(1790)] = 65658, + [SMALL_STATE(1791)] = 65729, + [SMALL_STATE(1792)] = 65804, + [SMALL_STATE(1793)] = 65879, + [SMALL_STATE(1794)] = 65954, + [SMALL_STATE(1795)] = 65993, + [SMALL_STATE(1796)] = 66068, + [SMALL_STATE(1797)] = 66143, + [SMALL_STATE(1798)] = 66218, + [SMALL_STATE(1799)] = 66293, + [SMALL_STATE(1800)] = 66368, + [SMALL_STATE(1801)] = 66443, + [SMALL_STATE(1802)] = 66518, + [SMALL_STATE(1803)] = 66593, + [SMALL_STATE(1804)] = 66664, + [SMALL_STATE(1805)] = 66739, + [SMALL_STATE(1806)] = 66814, + [SMALL_STATE(1807)] = 66853, + [SMALL_STATE(1808)] = 66928, + [SMALL_STATE(1809)] = 67003, + [SMALL_STATE(1810)] = 67078, + [SMALL_STATE(1811)] = 67119, + [SMALL_STATE(1812)] = 67194, + [SMALL_STATE(1813)] = 67269, + [SMALL_STATE(1814)] = 67344, + [SMALL_STATE(1815)] = 67419, + [SMALL_STATE(1816)] = 67458, + [SMALL_STATE(1817)] = 67533, + [SMALL_STATE(1818)] = 67608, + [SMALL_STATE(1819)] = 67683, + [SMALL_STATE(1820)] = 67758, + [SMALL_STATE(1821)] = 67833, + [SMALL_STATE(1822)] = 67908, + [SMALL_STATE(1823)] = 67983, + [SMALL_STATE(1824)] = 68028, + [SMALL_STATE(1825)] = 68103, + [SMALL_STATE(1826)] = 68178, + [SMALL_STATE(1827)] = 68253, + [SMALL_STATE(1828)] = 68324, + [SMALL_STATE(1829)] = 68399, + [SMALL_STATE(1830)] = 68470, + [SMALL_STATE(1831)] = 68545, + [SMALL_STATE(1832)] = 68620, + [SMALL_STATE(1833)] = 68695, + [SMALL_STATE(1834)] = 68770, + [SMALL_STATE(1835)] = 68809, + [SMALL_STATE(1836)] = 68848, + [SMALL_STATE(1837)] = 68923, + [SMALL_STATE(1838)] = 68962, + [SMALL_STATE(1839)] = 69037, + [SMALL_STATE(1840)] = 69076, + [SMALL_STATE(1841)] = 69151, + [SMALL_STATE(1842)] = 69226, + [SMALL_STATE(1843)] = 69301, + [SMALL_STATE(1844)] = 69376, + [SMALL_STATE(1845)] = 69451, + [SMALL_STATE(1846)] = 69526, + [SMALL_STATE(1847)] = 69571, + [SMALL_STATE(1848)] = 69646, + [SMALL_STATE(1849)] = 69721, + [SMALL_STATE(1850)] = 69796, + [SMALL_STATE(1851)] = 69871, + [SMALL_STATE(1852)] = 69946, + [SMALL_STATE(1853)] = 70021, + [SMALL_STATE(1854)] = 70096, + [SMALL_STATE(1855)] = 70171, + [SMALL_STATE(1856)] = 70216, + [SMALL_STATE(1857)] = 70255, + [SMALL_STATE(1858)] = 70330, + [SMALL_STATE(1859)] = 70405, + [SMALL_STATE(1860)] = 70444, + [SMALL_STATE(1861)] = 70519, + [SMALL_STATE(1862)] = 70558, + [SMALL_STATE(1863)] = 70597, + [SMALL_STATE(1864)] = 70672, + [SMALL_STATE(1865)] = 70747, + [SMALL_STATE(1866)] = 70822, + [SMALL_STATE(1867)] = 70897, + [SMALL_STATE(1868)] = 70972, + [SMALL_STATE(1869)] = 71047, + [SMALL_STATE(1870)] = 71122, + [SMALL_STATE(1871)] = 71197, + [SMALL_STATE(1872)] = 71272, + [SMALL_STATE(1873)] = 71347, + [SMALL_STATE(1874)] = 71422, + [SMALL_STATE(1875)] = 71497, + [SMALL_STATE(1876)] = 71572, + [SMALL_STATE(1877)] = 71611, + [SMALL_STATE(1878)] = 71650, + [SMALL_STATE(1879)] = 71695, + [SMALL_STATE(1880)] = 71770, + [SMALL_STATE(1881)] = 71845, + [SMALL_STATE(1882)] = 71884, + [SMALL_STATE(1883)] = 71959, + [SMALL_STATE(1884)] = 72034, + [SMALL_STATE(1885)] = 72109, + [SMALL_STATE(1886)] = 72184, + [SMALL_STATE(1887)] = 72259, + [SMALL_STATE(1888)] = 72334, + [SMALL_STATE(1889)] = 72373, + [SMALL_STATE(1890)] = 72412, + [SMALL_STATE(1891)] = 72487, + [SMALL_STATE(1892)] = 72562, + [SMALL_STATE(1893)] = 72633, + [SMALL_STATE(1894)] = 72708, + [SMALL_STATE(1895)] = 72783, + [SMALL_STATE(1896)] = 72858, + [SMALL_STATE(1897)] = 72903, + [SMALL_STATE(1898)] = 72978, + [SMALL_STATE(1899)] = 73053, + [SMALL_STATE(1900)] = 73098, + [SMALL_STATE(1901)] = 73173, + [SMALL_STATE(1902)] = 73218, + [SMALL_STATE(1903)] = 73257, + [SMALL_STATE(1904)] = 73332, + [SMALL_STATE(1905)] = 73407, + [SMALL_STATE(1906)] = 73482, + [SMALL_STATE(1907)] = 73557, + [SMALL_STATE(1908)] = 73628, + [SMALL_STATE(1909)] = 73703, + [SMALL_STATE(1910)] = 73778, + [SMALL_STATE(1911)] = 73853, + [SMALL_STATE(1912)] = 73892, + [SMALL_STATE(1913)] = 73967, + [SMALL_STATE(1914)] = 74042, + [SMALL_STATE(1915)] = 74081, + [SMALL_STATE(1916)] = 74156, + [SMALL_STATE(1917)] = 74231, + [SMALL_STATE(1918)] = 74306, + [SMALL_STATE(1919)] = 74381, + [SMALL_STATE(1920)] = 74456, + [SMALL_STATE(1921)] = 74531, + [SMALL_STATE(1922)] = 74570, + [SMALL_STATE(1923)] = 74645, + [SMALL_STATE(1924)] = 74720, + [SMALL_STATE(1925)] = 74795, + [SMALL_STATE(1926)] = 74870, + [SMALL_STATE(1927)] = 74945, + [SMALL_STATE(1928)] = 75020, + [SMALL_STATE(1929)] = 75095, + [SMALL_STATE(1930)] = 75170, + [SMALL_STATE(1931)] = 75209, + [SMALL_STATE(1932)] = 75284, + [SMALL_STATE(1933)] = 75359, + [SMALL_STATE(1934)] = 75398, + [SMALL_STATE(1935)] = 75473, + [SMALL_STATE(1936)] = 75548, + [SMALL_STATE(1937)] = 75623, + [SMALL_STATE(1938)] = 75698, + [SMALL_STATE(1939)] = 75773, + [SMALL_STATE(1940)] = 75848, + [SMALL_STATE(1941)] = 75923, + [SMALL_STATE(1942)] = 75998, + [SMALL_STATE(1943)] = 76073, + [SMALL_STATE(1944)] = 76148, + [SMALL_STATE(1945)] = 76223, + [SMALL_STATE(1946)] = 76298, + [SMALL_STATE(1947)] = 76337, + [SMALL_STATE(1948)] = 76408, + [SMALL_STATE(1949)] = 76483, + [SMALL_STATE(1950)] = 76558, + [SMALL_STATE(1951)] = 76633, + [SMALL_STATE(1952)] = 76672, + [SMALL_STATE(1953)] = 76715, + [SMALL_STATE(1954)] = 76790, + [SMALL_STATE(1955)] = 76865, + [SMALL_STATE(1956)] = 76940, + [SMALL_STATE(1957)] = 77015, + [SMALL_STATE(1958)] = 77090, + [SMALL_STATE(1959)] = 77165, + [SMALL_STATE(1960)] = 77204, + [SMALL_STATE(1961)] = 77279, + [SMALL_STATE(1962)] = 77354, + [SMALL_STATE(1963)] = 77429, + [SMALL_STATE(1964)] = 77504, + [SMALL_STATE(1965)] = 77579, + [SMALL_STATE(1966)] = 77654, + [SMALL_STATE(1967)] = 77725, + [SMALL_STATE(1968)] = 77800, + [SMALL_STATE(1969)] = 77875, + [SMALL_STATE(1970)] = 77950, + [SMALL_STATE(1971)] = 78025, + [SMALL_STATE(1972)] = 78100, + [SMALL_STATE(1973)] = 78175, + [SMALL_STATE(1974)] = 78250, + [SMALL_STATE(1975)] = 78320, + [SMALL_STATE(1976)] = 78358, + [SMALL_STATE(1977)] = 78402, + [SMALL_STATE(1978)] = 78472, + [SMALL_STATE(1979)] = 78542, + [SMALL_STATE(1980)] = 78580, + [SMALL_STATE(1981)] = 78650, + [SMALL_STATE(1982)] = 78720, + [SMALL_STATE(1983)] = 78758, + [SMALL_STATE(1984)] = 78796, + [SMALL_STATE(1985)] = 78832, + [SMALL_STATE(1986)] = 78870, + [SMALL_STATE(1987)] = 78938, + [SMALL_STATE(1988)] = 78974, + [SMALL_STATE(1989)] = 79014, + [SMALL_STATE(1990)] = 79079, + [SMALL_STATE(1991)] = 79144, + [SMALL_STATE(1992)] = 79209, + [SMALL_STATE(1993)] = 79274, + [SMALL_STATE(1994)] = 79339, + [SMALL_STATE(1995)] = 79404, + [SMALL_STATE(1996)] = 79469, + [SMALL_STATE(1997)] = 79534, + [SMALL_STATE(1998)] = 79599, + [SMALL_STATE(1999)] = 79664, + [SMALL_STATE(2000)] = 79729, + [SMALL_STATE(2001)] = 79794, + [SMALL_STATE(2002)] = 79859, + [SMALL_STATE(2003)] = 79924, + [SMALL_STATE(2004)] = 79989, + [SMALL_STATE(2005)] = 80054, + [SMALL_STATE(2006)] = 80119, + [SMALL_STATE(2007)] = 80184, + [SMALL_STATE(2008)] = 80249, + [SMALL_STATE(2009)] = 80314, + [SMALL_STATE(2010)] = 80379, + [SMALL_STATE(2011)] = 80444, + [SMALL_STATE(2012)] = 80509, + [SMALL_STATE(2013)] = 80574, + [SMALL_STATE(2014)] = 80639, + [SMALL_STATE(2015)] = 80680, + [SMALL_STATE(2016)] = 80745, + [SMALL_STATE(2017)] = 80810, + [SMALL_STATE(2018)] = 80875, + [SMALL_STATE(2019)] = 80940, + [SMALL_STATE(2020)] = 81005, + [SMALL_STATE(2021)] = 81070, + [SMALL_STATE(2022)] = 81135, + [SMALL_STATE(2023)] = 81200, + [SMALL_STATE(2024)] = 81265, + [SMALL_STATE(2025)] = 81330, + [SMALL_STATE(2026)] = 81395, + [SMALL_STATE(2027)] = 81460, + [SMALL_STATE(2028)] = 81525, + [SMALL_STATE(2029)] = 81590, + [SMALL_STATE(2030)] = 81655, + [SMALL_STATE(2031)] = 81720, + [SMALL_STATE(2032)] = 81785, + [SMALL_STATE(2033)] = 81850, + [SMALL_STATE(2034)] = 81915, + [SMALL_STATE(2035)] = 81980, + [SMALL_STATE(2036)] = 82045, + [SMALL_STATE(2037)] = 82110, + [SMALL_STATE(2038)] = 82175, + [SMALL_STATE(2039)] = 82240, + [SMALL_STATE(2040)] = 82305, + [SMALL_STATE(2041)] = 82370, + [SMALL_STATE(2042)] = 82435, + [SMALL_STATE(2043)] = 82500, + [SMALL_STATE(2044)] = 82565, + [SMALL_STATE(2045)] = 82630, + [SMALL_STATE(2046)] = 82695, + [SMALL_STATE(2047)] = 82760, + [SMALL_STATE(2048)] = 82825, + [SMALL_STATE(2049)] = 82890, + [SMALL_STATE(2050)] = 82955, + [SMALL_STATE(2051)] = 83020, + [SMALL_STATE(2052)] = 83085, + [SMALL_STATE(2053)] = 83150, + [SMALL_STATE(2054)] = 83215, + [SMALL_STATE(2055)] = 83280, + [SMALL_STATE(2056)] = 83345, + [SMALL_STATE(2057)] = 83410, + [SMALL_STATE(2058)] = 83475, + [SMALL_STATE(2059)] = 83540, + [SMALL_STATE(2060)] = 83605, + [SMALL_STATE(2061)] = 83670, + [SMALL_STATE(2062)] = 83735, + [SMALL_STATE(2063)] = 83800, + [SMALL_STATE(2064)] = 83865, + [SMALL_STATE(2065)] = 83930, + [SMALL_STATE(2066)] = 83995, + [SMALL_STATE(2067)] = 84060, + [SMALL_STATE(2068)] = 84125, + [SMALL_STATE(2069)] = 84190, + [SMALL_STATE(2070)] = 84255, + [SMALL_STATE(2071)] = 84320, + [SMALL_STATE(2072)] = 84385, + [SMALL_STATE(2073)] = 84450, + [SMALL_STATE(2074)] = 84515, + [SMALL_STATE(2075)] = 84580, + [SMALL_STATE(2076)] = 84645, + [SMALL_STATE(2077)] = 84710, + [SMALL_STATE(2078)] = 84775, + [SMALL_STATE(2079)] = 84840, + [SMALL_STATE(2080)] = 84905, + [SMALL_STATE(2081)] = 84970, + [SMALL_STATE(2082)] = 85035, + [SMALL_STATE(2083)] = 85100, + [SMALL_STATE(2084)] = 85165, + [SMALL_STATE(2085)] = 85230, + [SMALL_STATE(2086)] = 85295, + [SMALL_STATE(2087)] = 85360, + [SMALL_STATE(2088)] = 85425, + [SMALL_STATE(2089)] = 85490, + [SMALL_STATE(2090)] = 85555, + [SMALL_STATE(2091)] = 85620, + [SMALL_STATE(2092)] = 85685, + [SMALL_STATE(2093)] = 85750, + [SMALL_STATE(2094)] = 85815, + [SMALL_STATE(2095)] = 85880, + [SMALL_STATE(2096)] = 85945, + [SMALL_STATE(2097)] = 86010, + [SMALL_STATE(2098)] = 86075, + [SMALL_STATE(2099)] = 86140, + [SMALL_STATE(2100)] = 86205, + [SMALL_STATE(2101)] = 86270, + [SMALL_STATE(2102)] = 86335, + [SMALL_STATE(2103)] = 86400, + [SMALL_STATE(2104)] = 86465, + [SMALL_STATE(2105)] = 86530, + [SMALL_STATE(2106)] = 86595, + [SMALL_STATE(2107)] = 86660, + [SMALL_STATE(2108)] = 86725, + [SMALL_STATE(2109)] = 86790, + [SMALL_STATE(2110)] = 86855, + [SMALL_STATE(2111)] = 86920, + [SMALL_STATE(2112)] = 86985, + [SMALL_STATE(2113)] = 87050, + [SMALL_STATE(2114)] = 87115, + [SMALL_STATE(2115)] = 87180, + [SMALL_STATE(2116)] = 87245, + [SMALL_STATE(2117)] = 87310, + [SMALL_STATE(2118)] = 87372, + [SMALL_STATE(2119)] = 87434, + [SMALL_STATE(2120)] = 87496, + [SMALL_STATE(2121)] = 87530, + [SMALL_STATE(2122)] = 87564, + [SMALL_STATE(2123)] = 87626, + [SMALL_STATE(2124)] = 87688, + [SMALL_STATE(2125)] = 87750, + [SMALL_STATE(2126)] = 87812, + [SMALL_STATE(2127)] = 87874, + [SMALL_STATE(2128)] = 87936, + [SMALL_STATE(2129)] = 87998, + [SMALL_STATE(2130)] = 88060, + [SMALL_STATE(2131)] = 88098, + [SMALL_STATE(2132)] = 88160, + [SMALL_STATE(2133)] = 88222, + [SMALL_STATE(2134)] = 88284, + [SMALL_STATE(2135)] = 88346, + [SMALL_STATE(2136)] = 88382, + [SMALL_STATE(2137)] = 88444, + [SMALL_STATE(2138)] = 88506, + [SMALL_STATE(2139)] = 88568, + [SMALL_STATE(2140)] = 88630, + [SMALL_STATE(2141)] = 88692, + [SMALL_STATE(2142)] = 88754, + [SMALL_STATE(2143)] = 88818, + [SMALL_STATE(2144)] = 88880, + [SMALL_STATE(2145)] = 88942, + [SMALL_STATE(2146)] = 89004, + [SMALL_STATE(2147)] = 89066, + [SMALL_STATE(2148)] = 89128, + [SMALL_STATE(2149)] = 89189, + [SMALL_STATE(2150)] = 89250, + [SMALL_STATE(2151)] = 89285, + [SMALL_STATE(2152)] = 89346, + [SMALL_STATE(2153)] = 89407, + [SMALL_STATE(2154)] = 89468, + [SMALL_STATE(2155)] = 89526, + [SMALL_STATE(2156)] = 89584, + [SMALL_STATE(2157)] = 89622, + [SMALL_STATE(2158)] = 89680, + [SMALL_STATE(2159)] = 89738, + [SMALL_STATE(2160)] = 89796, + [SMALL_STATE(2161)] = 89854, + [SMALL_STATE(2162)] = 89912, + [SMALL_STATE(2163)] = 89970, + [SMALL_STATE(2164)] = 90028, + [SMALL_STATE(2165)] = 90086, + [SMALL_STATE(2166)] = 90144, + [SMALL_STATE(2167)] = 90202, + [SMALL_STATE(2168)] = 90260, + [SMALL_STATE(2169)] = 90318, + [SMALL_STATE(2170)] = 90354, + [SMALL_STATE(2171)] = 90407, + [SMALL_STATE(2172)] = 90460, + [SMALL_STATE(2173)] = 90493, + [SMALL_STATE(2174)] = 90546, + [SMALL_STATE(2175)] = 90599, + [SMALL_STATE(2176)] = 90654, + [SMALL_STATE(2177)] = 90709, + [SMALL_STATE(2178)] = 90745, + [SMALL_STATE(2179)] = 90779, + [SMALL_STATE(2180)] = 90817, + [SMALL_STATE(2181)] = 90853, + [SMALL_STATE(2182)] = 90882, + [SMALL_STATE(2183)] = 90913, + [SMALL_STATE(2184)] = 90946, + [SMALL_STATE(2185)] = 90991, + [SMALL_STATE(2186)] = 91020, + [SMALL_STATE(2187)] = 91053, + [SMALL_STATE(2188)] = 91086, + [SMALL_STATE(2189)] = 91117, + [SMALL_STATE(2190)] = 91162, + [SMALL_STATE(2191)] = 91195, + [SMALL_STATE(2192)] = 91223, + [SMALL_STATE(2193)] = 91257, + [SMALL_STATE(2194)] = 91287, + [SMALL_STATE(2195)] = 91318, + [SMALL_STATE(2196)] = 91356, + [SMALL_STATE(2197)] = 91384, + [SMALL_STATE(2198)] = 91412, + [SMALL_STATE(2199)] = 91440, + [SMALL_STATE(2200)] = 91470, + [SMALL_STATE(2201)] = 91498, + [SMALL_STATE(2202)] = 91536, + [SMALL_STATE(2203)] = 91561, + [SMALL_STATE(2204)] = 91588, + [SMALL_STATE(2205)] = 91613, + [SMALL_STATE(2206)] = 91648, + [SMALL_STATE(2207)] = 91683, + [SMALL_STATE(2208)] = 91709, + [SMALL_STATE(2209)] = 91736, + [SMALL_STATE(2210)] = 91763, + [SMALL_STATE(2211)] = 91790, + [SMALL_STATE(2212)] = 91810, + [SMALL_STATE(2213)] = 91836, + [SMALL_STATE(2214)] = 91855, + [SMALL_STATE(2215)] = 91874, + [SMALL_STATE(2216)] = 91904, + [SMALL_STATE(2217)] = 91928, + [SMALL_STATE(2218)] = 91958, + [SMALL_STATE(2219)] = 91988, + [SMALL_STATE(2220)] = 92018, + [SMALL_STATE(2221)] = 92048, + [SMALL_STATE(2222)] = 92078, + [SMALL_STATE(2223)] = 92108, + [SMALL_STATE(2224)] = 92130, + [SMALL_STATE(2225)] = 92154, + [SMALL_STATE(2226)] = 92180, + [SMALL_STATE(2227)] = 92210, + [SMALL_STATE(2228)] = 92232, + [SMALL_STATE(2229)] = 92262, + [SMALL_STATE(2230)] = 92288, + [SMALL_STATE(2231)] = 92318, + [SMALL_STATE(2232)] = 92334, + [SMALL_STATE(2233)] = 92360, + [SMALL_STATE(2234)] = 92384, + [SMALL_STATE(2235)] = 92414, + [SMALL_STATE(2236)] = 92440, + [SMALL_STATE(2237)] = 92466, + [SMALL_STATE(2238)] = 92482, + [SMALL_STATE(2239)] = 92508, + [SMALL_STATE(2240)] = 92530, + [SMALL_STATE(2241)] = 92553, + [SMALL_STATE(2242)] = 92576, + [SMALL_STATE(2243)] = 92597, + [SMALL_STATE(2244)] = 92620, + [SMALL_STATE(2245)] = 92646, + [SMALL_STATE(2246)] = 92672, + [SMALL_STATE(2247)] = 92696, + [SMALL_STATE(2248)] = 92718, + [SMALL_STATE(2249)] = 92734, + [SMALL_STATE(2250)] = 92756, + [SMALL_STATE(2251)] = 92782, + [SMALL_STATE(2252)] = 92808, + [SMALL_STATE(2253)] = 92834, + [SMALL_STATE(2254)] = 92860, + [SMALL_STATE(2255)] = 92878, + [SMALL_STATE(2256)] = 92900, + [SMALL_STATE(2257)] = 92922, + [SMALL_STATE(2258)] = 92948, + [SMALL_STATE(2259)] = 92974, + [SMALL_STATE(2260)] = 93000, + [SMALL_STATE(2261)] = 93026, + [SMALL_STATE(2262)] = 93044, + [SMALL_STATE(2263)] = 93060, + [SMALL_STATE(2264)] = 93086, + [SMALL_STATE(2265)] = 93112, + [SMALL_STATE(2266)] = 93134, + [SMALL_STATE(2267)] = 93160, + [SMALL_STATE(2268)] = 93186, + [SMALL_STATE(2269)] = 93212, + [SMALL_STATE(2270)] = 93234, + [SMALL_STATE(2271)] = 93254, + [SMALL_STATE(2272)] = 93280, + [SMALL_STATE(2273)] = 93306, + [SMALL_STATE(2274)] = 93328, + [SMALL_STATE(2275)] = 93346, + [SMALL_STATE(2276)] = 93364, + [SMALL_STATE(2277)] = 93382, + [SMALL_STATE(2278)] = 93400, + [SMALL_STATE(2279)] = 93416, + [SMALL_STATE(2280)] = 93432, + [SMALL_STATE(2281)] = 93448, + [SMALL_STATE(2282)] = 93474, + [SMALL_STATE(2283)] = 93490, + [SMALL_STATE(2284)] = 93516, + [SMALL_STATE(2285)] = 93542, + [SMALL_STATE(2286)] = 93566, + [SMALL_STATE(2287)] = 93588, + [SMALL_STATE(2288)] = 93614, + [SMALL_STATE(2289)] = 93640, + [SMALL_STATE(2290)] = 93666, + [SMALL_STATE(2291)] = 93692, + [SMALL_STATE(2292)] = 93705, + [SMALL_STATE(2293)] = 93722, + [SMALL_STATE(2294)] = 93739, + [SMALL_STATE(2295)] = 93756, + [SMALL_STATE(2296)] = 93779, + [SMALL_STATE(2297)] = 93802, + [SMALL_STATE(2298)] = 93823, + [SMALL_STATE(2299)] = 93844, + [SMALL_STATE(2300)] = 93867, + [SMALL_STATE(2301)] = 93890, + [SMALL_STATE(2302)] = 93913, + [SMALL_STATE(2303)] = 93932, + [SMALL_STATE(2304)] = 93955, + [SMALL_STATE(2305)] = 93978, + [SMALL_STATE(2306)] = 93997, + [SMALL_STATE(2307)] = 94018, + [SMALL_STATE(2308)] = 94041, + [SMALL_STATE(2309)] = 94060, + [SMALL_STATE(2310)] = 94081, + [SMALL_STATE(2311)] = 94104, + [SMALL_STATE(2312)] = 94127, + [SMALL_STATE(2313)] = 94142, + [SMALL_STATE(2314)] = 94165, + [SMALL_STATE(2315)] = 94188, + [SMALL_STATE(2316)] = 94211, + [SMALL_STATE(2317)] = 94234, + [SMALL_STATE(2318)] = 94255, + [SMALL_STATE(2319)] = 94278, + [SMALL_STATE(2320)] = 94301, + [SMALL_STATE(2321)] = 94322, + [SMALL_STATE(2322)] = 94335, + [SMALL_STATE(2323)] = 94358, + [SMALL_STATE(2324)] = 94381, + [SMALL_STATE(2325)] = 94404, + [SMALL_STATE(2326)] = 94427, + [SMALL_STATE(2327)] = 94450, + [SMALL_STATE(2328)] = 94467, + [SMALL_STATE(2329)] = 94484, + [SMALL_STATE(2330)] = 94501, + [SMALL_STATE(2331)] = 94518, + [SMALL_STATE(2332)] = 94533, + [SMALL_STATE(2333)] = 94548, + [SMALL_STATE(2334)] = 94563, + [SMALL_STATE(2335)] = 94584, + [SMALL_STATE(2336)] = 94607, + [SMALL_STATE(2337)] = 94630, + [SMALL_STATE(2338)] = 94653, + [SMALL_STATE(2339)] = 94676, + [SMALL_STATE(2340)] = 94697, + [SMALL_STATE(2341)] = 94714, + [SMALL_STATE(2342)] = 94737, + [SMALL_STATE(2343)] = 94756, + [SMALL_STATE(2344)] = 94777, + [SMALL_STATE(2345)] = 94792, + [SMALL_STATE(2346)] = 94815, + [SMALL_STATE(2347)] = 94838, + [SMALL_STATE(2348)] = 94857, + [SMALL_STATE(2349)] = 94876, + [SMALL_STATE(2350)] = 94899, + [SMALL_STATE(2351)] = 94920, + [SMALL_STATE(2352)] = 94943, + [SMALL_STATE(2353)] = 94964, + [SMALL_STATE(2354)] = 94987, + [SMALL_STATE(2355)] = 95007, + [SMALL_STATE(2356)] = 95019, + [SMALL_STATE(2357)] = 95039, + [SMALL_STATE(2358)] = 95057, + [SMALL_STATE(2359)] = 95077, + [SMALL_STATE(2360)] = 95093, + [SMALL_STATE(2361)] = 95109, + [SMALL_STATE(2362)] = 95125, + [SMALL_STATE(2363)] = 95145, + [SMALL_STATE(2364)] = 95161, + [SMALL_STATE(2365)] = 95177, + [SMALL_STATE(2366)] = 95197, + [SMALL_STATE(2367)] = 95213, + [SMALL_STATE(2368)] = 95233, + [SMALL_STATE(2369)] = 95247, + [SMALL_STATE(2370)] = 95261, + [SMALL_STATE(2371)] = 95277, + [SMALL_STATE(2372)] = 95297, + [SMALL_STATE(2373)] = 95317, + [SMALL_STATE(2374)] = 95337, + [SMALL_STATE(2375)] = 95355, + [SMALL_STATE(2376)] = 95375, + [SMALL_STATE(2377)] = 95391, + [SMALL_STATE(2378)] = 95411, + [SMALL_STATE(2379)] = 95425, + [SMALL_STATE(2380)] = 95445, + [SMALL_STATE(2381)] = 95461, + [SMALL_STATE(2382)] = 95477, + [SMALL_STATE(2383)] = 95497, + [SMALL_STATE(2384)] = 95517, + [SMALL_STATE(2385)] = 95537, + [SMALL_STATE(2386)] = 95557, + [SMALL_STATE(2387)] = 95573, + [SMALL_STATE(2388)] = 95593, + [SMALL_STATE(2389)] = 95611, + [SMALL_STATE(2390)] = 95623, + [SMALL_STATE(2391)] = 95643, + [SMALL_STATE(2392)] = 95661, + [SMALL_STATE(2393)] = 95677, + [SMALL_STATE(2394)] = 95689, + [SMALL_STATE(2395)] = 95709, + [SMALL_STATE(2396)] = 95723, + [SMALL_STATE(2397)] = 95743, + [SMALL_STATE(2398)] = 95759, + [SMALL_STATE(2399)] = 95773, + [SMALL_STATE(2400)] = 95789, + [SMALL_STATE(2401)] = 95809, + [SMALL_STATE(2402)] = 95829, + [SMALL_STATE(2403)] = 95849, + [SMALL_STATE(2404)] = 95869, + [SMALL_STATE(2405)] = 95883, + [SMALL_STATE(2406)] = 95897, + [SMALL_STATE(2407)] = 95915, + [SMALL_STATE(2408)] = 95935, + [SMALL_STATE(2409)] = 95949, + [SMALL_STATE(2410)] = 95969, + [SMALL_STATE(2411)] = 95989, + [SMALL_STATE(2412)] = 96007, + [SMALL_STATE(2413)] = 96025, + [SMALL_STATE(2414)] = 96045, + [SMALL_STATE(2415)] = 96065, + [SMALL_STATE(2416)] = 96079, + [SMALL_STATE(2417)] = 96097, + [SMALL_STATE(2418)] = 96117, + [SMALL_STATE(2419)] = 96137, + [SMALL_STATE(2420)] = 96149, + [SMALL_STATE(2421)] = 96167, + [SMALL_STATE(2422)] = 96187, + [SMALL_STATE(2423)] = 96207, + [SMALL_STATE(2424)] = 96227, + [SMALL_STATE(2425)] = 96245, + [SMALL_STATE(2426)] = 96263, + [SMALL_STATE(2427)] = 96281, + [SMALL_STATE(2428)] = 96297, + [SMALL_STATE(2429)] = 96314, + [SMALL_STATE(2430)] = 96331, + [SMALL_STATE(2431)] = 96344, + [SMALL_STATE(2432)] = 96361, + [SMALL_STATE(2433)] = 96378, + [SMALL_STATE(2434)] = 96395, + [SMALL_STATE(2435)] = 96412, + [SMALL_STATE(2436)] = 96431, + [SMALL_STATE(2437)] = 96448, + [SMALL_STATE(2438)] = 96465, + [SMALL_STATE(2439)] = 96484, + [SMALL_STATE(2440)] = 96501, + [SMALL_STATE(2441)] = 96518, + [SMALL_STATE(2442)] = 96535, + [SMALL_STATE(2443)] = 96552, + [SMALL_STATE(2444)] = 96571, + [SMALL_STATE(2445)] = 96588, + [SMALL_STATE(2446)] = 96605, + [SMALL_STATE(2447)] = 96622, + [SMALL_STATE(2448)] = 96639, + [SMALL_STATE(2449)] = 96656, + [SMALL_STATE(2450)] = 96673, + [SMALL_STATE(2451)] = 96690, + [SMALL_STATE(2452)] = 96707, + [SMALL_STATE(2453)] = 96724, + [SMALL_STATE(2454)] = 96741, + [SMALL_STATE(2455)] = 96756, + [SMALL_STATE(2456)] = 96771, + [SMALL_STATE(2457)] = 96790, + [SMALL_STATE(2458)] = 96807, + [SMALL_STATE(2459)] = 96824, + [SMALL_STATE(2460)] = 96841, + [SMALL_STATE(2461)] = 96858, + [SMALL_STATE(2462)] = 96875, + [SMALL_STATE(2463)] = 96892, + [SMALL_STATE(2464)] = 96909, + [SMALL_STATE(2465)] = 96926, + [SMALL_STATE(2466)] = 96943, + [SMALL_STATE(2467)] = 96960, + [SMALL_STATE(2468)] = 96977, + [SMALL_STATE(2469)] = 96994, + [SMALL_STATE(2470)] = 97011, + [SMALL_STATE(2471)] = 97028, + [SMALL_STATE(2472)] = 97045, + [SMALL_STATE(2473)] = 97062, + [SMALL_STATE(2474)] = 97079, + [SMALL_STATE(2475)] = 97096, + [SMALL_STATE(2476)] = 97107, + [SMALL_STATE(2477)] = 97124, + [SMALL_STATE(2478)] = 97141, + [SMALL_STATE(2479)] = 97156, + [SMALL_STATE(2480)] = 97173, + [SMALL_STATE(2481)] = 97190, + [SMALL_STATE(2482)] = 97207, + [SMALL_STATE(2483)] = 97224, + [SMALL_STATE(2484)] = 97241, + [SMALL_STATE(2485)] = 97258, + [SMALL_STATE(2486)] = 97275, + [SMALL_STATE(2487)] = 97292, + [SMALL_STATE(2488)] = 97309, + [SMALL_STATE(2489)] = 97326, + [SMALL_STATE(2490)] = 97343, + [SMALL_STATE(2491)] = 97360, + [SMALL_STATE(2492)] = 97377, + [SMALL_STATE(2493)] = 97394, + [SMALL_STATE(2494)] = 97411, + [SMALL_STATE(2495)] = 97428, + [SMALL_STATE(2496)] = 97445, + [SMALL_STATE(2497)] = 97462, + [SMALL_STATE(2498)] = 97473, + [SMALL_STATE(2499)] = 97488, + [SMALL_STATE(2500)] = 97505, + [SMALL_STATE(2501)] = 97522, + [SMALL_STATE(2502)] = 97539, + [SMALL_STATE(2503)] = 97556, + [SMALL_STATE(2504)] = 97573, + [SMALL_STATE(2505)] = 97590, + [SMALL_STATE(2506)] = 97607, + [SMALL_STATE(2507)] = 97622, + [SMALL_STATE(2508)] = 97633, + [SMALL_STATE(2509)] = 97650, + [SMALL_STATE(2510)] = 97667, + [SMALL_STATE(2511)] = 97684, + [SMALL_STATE(2512)] = 97701, + [SMALL_STATE(2513)] = 97716, + [SMALL_STATE(2514)] = 97733, + [SMALL_STATE(2515)] = 97750, + [SMALL_STATE(2516)] = 97767, + [SMALL_STATE(2517)] = 97784, + [SMALL_STATE(2518)] = 97801, + [SMALL_STATE(2519)] = 97818, + [SMALL_STATE(2520)] = 97835, + [SMALL_STATE(2521)] = 97852, + [SMALL_STATE(2522)] = 97869, + [SMALL_STATE(2523)] = 97886, + [SMALL_STATE(2524)] = 97903, + [SMALL_STATE(2525)] = 97916, + [SMALL_STATE(2526)] = 97931, + [SMALL_STATE(2527)] = 97948, + [SMALL_STATE(2528)] = 97965, + [SMALL_STATE(2529)] = 97982, + [SMALL_STATE(2530)] = 97999, + [SMALL_STATE(2531)] = 98016, + [SMALL_STATE(2532)] = 98031, + [SMALL_STATE(2533)] = 98048, + [SMALL_STATE(2534)] = 98065, + [SMALL_STATE(2535)] = 98082, + [SMALL_STATE(2536)] = 98099, + [SMALL_STATE(2537)] = 98112, + [SMALL_STATE(2538)] = 98125, + [SMALL_STATE(2539)] = 98142, + [SMALL_STATE(2540)] = 98159, + [SMALL_STATE(2541)] = 98176, + [SMALL_STATE(2542)] = 98193, + [SMALL_STATE(2543)] = 98210, + [SMALL_STATE(2544)] = 98227, + [SMALL_STATE(2545)] = 98238, + [SMALL_STATE(2546)] = 98253, + [SMALL_STATE(2547)] = 98270, + [SMALL_STATE(2548)] = 98287, + [SMALL_STATE(2549)] = 98304, + [SMALL_STATE(2550)] = 98321, + [SMALL_STATE(2551)] = 98336, + [SMALL_STATE(2552)] = 98351, + [SMALL_STATE(2553)] = 98366, + [SMALL_STATE(2554)] = 98377, + [SMALL_STATE(2555)] = 98394, + [SMALL_STATE(2556)] = 98411, + [SMALL_STATE(2557)] = 98426, + [SMALL_STATE(2558)] = 98443, + [SMALL_STATE(2559)] = 98460, + [SMALL_STATE(2560)] = 98477, + [SMALL_STATE(2561)] = 98494, + [SMALL_STATE(2562)] = 98511, + [SMALL_STATE(2563)] = 98528, + [SMALL_STATE(2564)] = 98545, + [SMALL_STATE(2565)] = 98562, + [SMALL_STATE(2566)] = 98579, + [SMALL_STATE(2567)] = 98596, + [SMALL_STATE(2568)] = 98613, + [SMALL_STATE(2569)] = 98628, + [SMALL_STATE(2570)] = 98645, + [SMALL_STATE(2571)] = 98662, + [SMALL_STATE(2572)] = 98679, + [SMALL_STATE(2573)] = 98696, + [SMALL_STATE(2574)] = 98713, + [SMALL_STATE(2575)] = 98730, + [SMALL_STATE(2576)] = 98747, + [SMALL_STATE(2577)] = 98764, + [SMALL_STATE(2578)] = 98783, + [SMALL_STATE(2579)] = 98800, + [SMALL_STATE(2580)] = 98817, + [SMALL_STATE(2581)] = 98832, + [SMALL_STATE(2582)] = 98845, + [SMALL_STATE(2583)] = 98864, + [SMALL_STATE(2584)] = 98879, + [SMALL_STATE(2585)] = 98896, + [SMALL_STATE(2586)] = 98913, + [SMALL_STATE(2587)] = 98930, + [SMALL_STATE(2588)] = 98947, + [SMALL_STATE(2589)] = 98964, + [SMALL_STATE(2590)] = 98981, + [SMALL_STATE(2591)] = 98998, + [SMALL_STATE(2592)] = 99015, + [SMALL_STATE(2593)] = 99032, + [SMALL_STATE(2594)] = 99049, + [SMALL_STATE(2595)] = 99066, + [SMALL_STATE(2596)] = 99083, + [SMALL_STATE(2597)] = 99098, + [SMALL_STATE(2598)] = 99113, + [SMALL_STATE(2599)] = 99128, + [SMALL_STATE(2600)] = 99145, + [SMALL_STATE(2601)] = 99160, + [SMALL_STATE(2602)] = 99179, + [SMALL_STATE(2603)] = 99198, + [SMALL_STATE(2604)] = 99215, + [SMALL_STATE(2605)] = 99230, + [SMALL_STATE(2606)] = 99247, + [SMALL_STATE(2607)] = 99264, + [SMALL_STATE(2608)] = 99279, + [SMALL_STATE(2609)] = 99294, + [SMALL_STATE(2610)] = 99311, + [SMALL_STATE(2611)] = 99328, + [SMALL_STATE(2612)] = 99345, + [SMALL_STATE(2613)] = 99362, + [SMALL_STATE(2614)] = 99377, + [SMALL_STATE(2615)] = 99396, + [SMALL_STATE(2616)] = 99413, + [SMALL_STATE(2617)] = 99430, + [SMALL_STATE(2618)] = 99445, + [SMALL_STATE(2619)] = 99460, + [SMALL_STATE(2620)] = 99477, + [SMALL_STATE(2621)] = 99494, + [SMALL_STATE(2622)] = 99511, + [SMALL_STATE(2623)] = 99526, + [SMALL_STATE(2624)] = 99541, + [SMALL_STATE(2625)] = 99556, + [SMALL_STATE(2626)] = 99569, + [SMALL_STATE(2627)] = 99582, + [SMALL_STATE(2628)] = 99595, + [SMALL_STATE(2629)] = 99610, + [SMALL_STATE(2630)] = 99629, + [SMALL_STATE(2631)] = 99648, + [SMALL_STATE(2632)] = 99665, + [SMALL_STATE(2633)] = 99680, + [SMALL_STATE(2634)] = 99697, + [SMALL_STATE(2635)] = 99709, + [SMALL_STATE(2636)] = 99723, + [SMALL_STATE(2637)] = 99735, + [SMALL_STATE(2638)] = 99749, + [SMALL_STATE(2639)] = 99761, + [SMALL_STATE(2640)] = 99775, + [SMALL_STATE(2641)] = 99789, + [SMALL_STATE(2642)] = 99801, + [SMALL_STATE(2643)] = 99811, + [SMALL_STATE(2644)] = 99825, + [SMALL_STATE(2645)] = 99839, + [SMALL_STATE(2646)] = 99853, + [SMALL_STATE(2647)] = 99867, + [SMALL_STATE(2648)] = 99879, + [SMALL_STATE(2649)] = 99893, + [SMALL_STATE(2650)] = 99905, + [SMALL_STATE(2651)] = 99919, + [SMALL_STATE(2652)] = 99931, + [SMALL_STATE(2653)] = 99941, + [SMALL_STATE(2654)] = 99955, + [SMALL_STATE(2655)] = 99969, + [SMALL_STATE(2656)] = 99983, + [SMALL_STATE(2657)] = 99997, + [SMALL_STATE(2658)] = 100009, + [SMALL_STATE(2659)] = 100023, + [SMALL_STATE(2660)] = 100033, + [SMALL_STATE(2661)] = 100043, + [SMALL_STATE(2662)] = 100057, + [SMALL_STATE(2663)] = 100071, + [SMALL_STATE(2664)] = 100085, + [SMALL_STATE(2665)] = 100099, + [SMALL_STATE(2666)] = 100111, + [SMALL_STATE(2667)] = 100125, + [SMALL_STATE(2668)] = 100139, + [SMALL_STATE(2669)] = 100153, + [SMALL_STATE(2670)] = 100167, + [SMALL_STATE(2671)] = 100181, + [SMALL_STATE(2672)] = 100191, + [SMALL_STATE(2673)] = 100203, + [SMALL_STATE(2674)] = 100215, + [SMALL_STATE(2675)] = 100229, + [SMALL_STATE(2676)] = 100241, + [SMALL_STATE(2677)] = 100255, + [SMALL_STATE(2678)] = 100267, + [SMALL_STATE(2679)] = 100281, + [SMALL_STATE(2680)] = 100293, + [SMALL_STATE(2681)] = 100307, + [SMALL_STATE(2682)] = 100321, + [SMALL_STATE(2683)] = 100335, + [SMALL_STATE(2684)] = 100349, + [SMALL_STATE(2685)] = 100361, + [SMALL_STATE(2686)] = 100375, + [SMALL_STATE(2687)] = 100389, + [SMALL_STATE(2688)] = 100403, + [SMALL_STATE(2689)] = 100417, + [SMALL_STATE(2690)] = 100431, + [SMALL_STATE(2691)] = 100445, + [SMALL_STATE(2692)] = 100455, + [SMALL_STATE(2693)] = 100469, + [SMALL_STATE(2694)] = 100483, + [SMALL_STATE(2695)] = 100497, + [SMALL_STATE(2696)] = 100509, + [SMALL_STATE(2697)] = 100523, + [SMALL_STATE(2698)] = 100537, + [SMALL_STATE(2699)] = 100551, + [SMALL_STATE(2700)] = 100565, + [SMALL_STATE(2701)] = 100579, + [SMALL_STATE(2702)] = 100593, + [SMALL_STATE(2703)] = 100607, + [SMALL_STATE(2704)] = 100621, + [SMALL_STATE(2705)] = 100631, + [SMALL_STATE(2706)] = 100643, + [SMALL_STATE(2707)] = 100657, + [SMALL_STATE(2708)] = 100671, + [SMALL_STATE(2709)] = 100685, + [SMALL_STATE(2710)] = 100699, + [SMALL_STATE(2711)] = 100709, + [SMALL_STATE(2712)] = 100723, + [SMALL_STATE(2713)] = 100737, + [SMALL_STATE(2714)] = 100751, + [SMALL_STATE(2715)] = 100763, + [SMALL_STATE(2716)] = 100777, + [SMALL_STATE(2717)] = 100791, + [SMALL_STATE(2718)] = 100803, + [SMALL_STATE(2719)] = 100817, + [SMALL_STATE(2720)] = 100829, + [SMALL_STATE(2721)] = 100841, + [SMALL_STATE(2722)] = 100855, + [SMALL_STATE(2723)] = 100869, + [SMALL_STATE(2724)] = 100883, + [SMALL_STATE(2725)] = 100897, + [SMALL_STATE(2726)] = 100909, + [SMALL_STATE(2727)] = 100921, + [SMALL_STATE(2728)] = 100935, + [SMALL_STATE(2729)] = 100949, + [SMALL_STATE(2730)] = 100961, + [SMALL_STATE(2731)] = 100975, + [SMALL_STATE(2732)] = 100989, + [SMALL_STATE(2733)] = 101001, + [SMALL_STATE(2734)] = 101015, + [SMALL_STATE(2735)] = 101029, + [SMALL_STATE(2736)] = 101043, + [SMALL_STATE(2737)] = 101057, + [SMALL_STATE(2738)] = 101071, + [SMALL_STATE(2739)] = 101085, + [SMALL_STATE(2740)] = 101099, + [SMALL_STATE(2741)] = 101113, + [SMALL_STATE(2742)] = 101127, + [SMALL_STATE(2743)] = 101141, + [SMALL_STATE(2744)] = 101155, + [SMALL_STATE(2745)] = 101169, + [SMALL_STATE(2746)] = 101183, + [SMALL_STATE(2747)] = 101197, + [SMALL_STATE(2748)] = 101211, + [SMALL_STATE(2749)] = 101225, + [SMALL_STATE(2750)] = 101239, + [SMALL_STATE(2751)] = 101253, + [SMALL_STATE(2752)] = 101267, + [SMALL_STATE(2753)] = 101281, + [SMALL_STATE(2754)] = 101295, + [SMALL_STATE(2755)] = 101309, + [SMALL_STATE(2756)] = 101323, + [SMALL_STATE(2757)] = 101337, + [SMALL_STATE(2758)] = 101351, + [SMALL_STATE(2759)] = 101365, + [SMALL_STATE(2760)] = 101375, + [SMALL_STATE(2761)] = 101389, + [SMALL_STATE(2762)] = 101403, + [SMALL_STATE(2763)] = 101417, + [SMALL_STATE(2764)] = 101431, + [SMALL_STATE(2765)] = 101443, + [SMALL_STATE(2766)] = 101457, + [SMALL_STATE(2767)] = 101469, + [SMALL_STATE(2768)] = 101483, + [SMALL_STATE(2769)] = 101497, + [SMALL_STATE(2770)] = 101511, + [SMALL_STATE(2771)] = 101525, + [SMALL_STATE(2772)] = 101537, + [SMALL_STATE(2773)] = 101549, + [SMALL_STATE(2774)] = 101559, + [SMALL_STATE(2775)] = 101573, + [SMALL_STATE(2776)] = 101587, + [SMALL_STATE(2777)] = 101597, + [SMALL_STATE(2778)] = 101611, + [SMALL_STATE(2779)] = 101625, + [SMALL_STATE(2780)] = 101639, + [SMALL_STATE(2781)] = 101651, + [SMALL_STATE(2782)] = 101665, + [SMALL_STATE(2783)] = 101679, + [SMALL_STATE(2784)] = 101691, + [SMALL_STATE(2785)] = 101705, + [SMALL_STATE(2786)] = 101719, + [SMALL_STATE(2787)] = 101733, + [SMALL_STATE(2788)] = 101745, + [SMALL_STATE(2789)] = 101755, + [SMALL_STATE(2790)] = 101769, + [SMALL_STATE(2791)] = 101781, + [SMALL_STATE(2792)] = 101795, + [SMALL_STATE(2793)] = 101807, + [SMALL_STATE(2794)] = 101821, + [SMALL_STATE(2795)] = 101833, + [SMALL_STATE(2796)] = 101847, + [SMALL_STATE(2797)] = 101861, + [SMALL_STATE(2798)] = 101873, + [SMALL_STATE(2799)] = 101887, + [SMALL_STATE(2800)] = 101901, + [SMALL_STATE(2801)] = 101915, + [SMALL_STATE(2802)] = 101927, + [SMALL_STATE(2803)] = 101939, + [SMALL_STATE(2804)] = 101953, + [SMALL_STATE(2805)] = 101967, + [SMALL_STATE(2806)] = 101977, + [SMALL_STATE(2807)] = 101989, + [SMALL_STATE(2808)] = 102001, + [SMALL_STATE(2809)] = 102013, + [SMALL_STATE(2810)] = 102025, + [SMALL_STATE(2811)] = 102037, + [SMALL_STATE(2812)] = 102049, + [SMALL_STATE(2813)] = 102061, + [SMALL_STATE(2814)] = 102073, + [SMALL_STATE(2815)] = 102085, + [SMALL_STATE(2816)] = 102099, + [SMALL_STATE(2817)] = 102113, + [SMALL_STATE(2818)] = 102127, + [SMALL_STATE(2819)] = 102141, + [SMALL_STATE(2820)] = 102155, + [SMALL_STATE(2821)] = 102169, + [SMALL_STATE(2822)] = 102181, + [SMALL_STATE(2823)] = 102195, + [SMALL_STATE(2824)] = 102207, + [SMALL_STATE(2825)] = 102219, + [SMALL_STATE(2826)] = 102231, + [SMALL_STATE(2827)] = 102243, + [SMALL_STATE(2828)] = 102255, + [SMALL_STATE(2829)] = 102269, + [SMALL_STATE(2830)] = 102281, + [SMALL_STATE(2831)] = 102293, + [SMALL_STATE(2832)] = 102305, + [SMALL_STATE(2833)] = 102319, + [SMALL_STATE(2834)] = 102331, + [SMALL_STATE(2835)] = 102343, + [SMALL_STATE(2836)] = 102355, + [SMALL_STATE(2837)] = 102367, + [SMALL_STATE(2838)] = 102379, + [SMALL_STATE(2839)] = 102393, + [SMALL_STATE(2840)] = 102405, + [SMALL_STATE(2841)] = 102417, + [SMALL_STATE(2842)] = 102429, + [SMALL_STATE(2843)] = 102441, + [SMALL_STATE(2844)] = 102455, + [SMALL_STATE(2845)] = 102467, + [SMALL_STATE(2846)] = 102479, + [SMALL_STATE(2847)] = 102491, + [SMALL_STATE(2848)] = 102505, + [SMALL_STATE(2849)] = 102515, + [SMALL_STATE(2850)] = 102525, + [SMALL_STATE(2851)] = 102537, + [SMALL_STATE(2852)] = 102549, + [SMALL_STATE(2853)] = 102561, + [SMALL_STATE(2854)] = 102575, + [SMALL_STATE(2855)] = 102589, + [SMALL_STATE(2856)] = 102603, + [SMALL_STATE(2857)] = 102617, + [SMALL_STATE(2858)] = 102628, + [SMALL_STATE(2859)] = 102639, + [SMALL_STATE(2860)] = 102650, + [SMALL_STATE(2861)] = 102661, + [SMALL_STATE(2862)] = 102670, + [SMALL_STATE(2863)] = 102681, + [SMALL_STATE(2864)] = 102692, + [SMALL_STATE(2865)] = 102703, + [SMALL_STATE(2866)] = 102714, + [SMALL_STATE(2867)] = 102725, + [SMALL_STATE(2868)] = 102736, + [SMALL_STATE(2869)] = 102747, + [SMALL_STATE(2870)] = 102758, + [SMALL_STATE(2871)] = 102769, + [SMALL_STATE(2872)] = 102780, + [SMALL_STATE(2873)] = 102789, + [SMALL_STATE(2874)] = 102800, + [SMALL_STATE(2875)] = 102811, + [SMALL_STATE(2876)] = 102822, + [SMALL_STATE(2877)] = 102833, + [SMALL_STATE(2878)] = 102844, + [SMALL_STATE(2879)] = 102855, + [SMALL_STATE(2880)] = 102866, + [SMALL_STATE(2881)] = 102877, + [SMALL_STATE(2882)] = 102888, + [SMALL_STATE(2883)] = 102899, + [SMALL_STATE(2884)] = 102910, + [SMALL_STATE(2885)] = 102921, + [SMALL_STATE(2886)] = 102932, + [SMALL_STATE(2887)] = 102943, + [SMALL_STATE(2888)] = 102954, + [SMALL_STATE(2889)] = 102965, + [SMALL_STATE(2890)] = 102976, + [SMALL_STATE(2891)] = 102987, + [SMALL_STATE(2892)] = 102998, + [SMALL_STATE(2893)] = 103009, + [SMALL_STATE(2894)] = 103020, + [SMALL_STATE(2895)] = 103031, + [SMALL_STATE(2896)] = 103042, + [SMALL_STATE(2897)] = 103053, + [SMALL_STATE(2898)] = 103064, + [SMALL_STATE(2899)] = 103075, + [SMALL_STATE(2900)] = 103086, + [SMALL_STATE(2901)] = 103097, + [SMALL_STATE(2902)] = 103108, + [SMALL_STATE(2903)] = 103119, + [SMALL_STATE(2904)] = 103130, + [SMALL_STATE(2905)] = 103141, + [SMALL_STATE(2906)] = 103152, + [SMALL_STATE(2907)] = 103163, + [SMALL_STATE(2908)] = 103174, + [SMALL_STATE(2909)] = 103185, + [SMALL_STATE(2910)] = 103196, + [SMALL_STATE(2911)] = 103207, + [SMALL_STATE(2912)] = 103216, + [SMALL_STATE(2913)] = 103227, + [SMALL_STATE(2914)] = 103238, + [SMALL_STATE(2915)] = 103249, + [SMALL_STATE(2916)] = 103260, + [SMALL_STATE(2917)] = 103271, + [SMALL_STATE(2918)] = 103282, + [SMALL_STATE(2919)] = 103293, + [SMALL_STATE(2920)] = 103304, + [SMALL_STATE(2921)] = 103315, + [SMALL_STATE(2922)] = 103326, + [SMALL_STATE(2923)] = 103337, + [SMALL_STATE(2924)] = 103348, + [SMALL_STATE(2925)] = 103359, + [SMALL_STATE(2926)] = 103370, + [SMALL_STATE(2927)] = 103379, + [SMALL_STATE(2928)] = 103390, + [SMALL_STATE(2929)] = 103401, + [SMALL_STATE(2930)] = 103412, + [SMALL_STATE(2931)] = 103423, + [SMALL_STATE(2932)] = 103434, + [SMALL_STATE(2933)] = 103445, + [SMALL_STATE(2934)] = 103456, + [SMALL_STATE(2935)] = 103467, + [SMALL_STATE(2936)] = 103478, + [SMALL_STATE(2937)] = 103489, + [SMALL_STATE(2938)] = 103500, + [SMALL_STATE(2939)] = 103511, + [SMALL_STATE(2940)] = 103522, + [SMALL_STATE(2941)] = 103533, + [SMALL_STATE(2942)] = 103544, + [SMALL_STATE(2943)] = 103555, + [SMALL_STATE(2944)] = 103566, + [SMALL_STATE(2945)] = 103577, + [SMALL_STATE(2946)] = 103586, + [SMALL_STATE(2947)] = 103597, + [SMALL_STATE(2948)] = 103606, + [SMALL_STATE(2949)] = 103617, + [SMALL_STATE(2950)] = 103628, + [SMALL_STATE(2951)] = 103639, + [SMALL_STATE(2952)] = 103650, + [SMALL_STATE(2953)] = 103661, + [SMALL_STATE(2954)] = 103672, + [SMALL_STATE(2955)] = 103683, + [SMALL_STATE(2956)] = 103694, + [SMALL_STATE(2957)] = 103705, + [SMALL_STATE(2958)] = 103716, + [SMALL_STATE(2959)] = 103727, + [SMALL_STATE(2960)] = 103738, + [SMALL_STATE(2961)] = 103749, + [SMALL_STATE(2962)] = 103760, + [SMALL_STATE(2963)] = 103771, + [SMALL_STATE(2964)] = 103780, + [SMALL_STATE(2965)] = 103791, + [SMALL_STATE(2966)] = 103802, + [SMALL_STATE(2967)] = 103813, + [SMALL_STATE(2968)] = 103824, + [SMALL_STATE(2969)] = 103835, + [SMALL_STATE(2970)] = 103846, + [SMALL_STATE(2971)] = 103857, + [SMALL_STATE(2972)] = 103868, + [SMALL_STATE(2973)] = 103879, + [SMALL_STATE(2974)] = 103890, + [SMALL_STATE(2975)] = 103901, + [SMALL_STATE(2976)] = 103912, + [SMALL_STATE(2977)] = 103923, + [SMALL_STATE(2978)] = 103934, + [SMALL_STATE(2979)] = 103945, + [SMALL_STATE(2980)] = 103956, + [SMALL_STATE(2981)] = 103967, + [SMALL_STATE(2982)] = 103978, + [SMALL_STATE(2983)] = 103989, + [SMALL_STATE(2984)] = 104000, + [SMALL_STATE(2985)] = 104011, + [SMALL_STATE(2986)] = 104022, + [SMALL_STATE(2987)] = 104033, + [SMALL_STATE(2988)] = 104044, + [SMALL_STATE(2989)] = 104055, + [SMALL_STATE(2990)] = 104066, + [SMALL_STATE(2991)] = 104077, + [SMALL_STATE(2992)] = 104088, + [SMALL_STATE(2993)] = 104099, + [SMALL_STATE(2994)] = 104110, + [SMALL_STATE(2995)] = 104121, + [SMALL_STATE(2996)] = 104132, + [SMALL_STATE(2997)] = 104143, + [SMALL_STATE(2998)] = 104154, + [SMALL_STATE(2999)] = 104165, + [SMALL_STATE(3000)] = 104176, + [SMALL_STATE(3001)] = 104187, + [SMALL_STATE(3002)] = 104198, + [SMALL_STATE(3003)] = 104209, + [SMALL_STATE(3004)] = 104220, + [SMALL_STATE(3005)] = 104231, + [SMALL_STATE(3006)] = 104240, + [SMALL_STATE(3007)] = 104251, + [SMALL_STATE(3008)] = 104262, + [SMALL_STATE(3009)] = 104273, + [SMALL_STATE(3010)] = 104284, + [SMALL_STATE(3011)] = 104295, + [SMALL_STATE(3012)] = 104306, + [SMALL_STATE(3013)] = 104315, + [SMALL_STATE(3014)] = 104326, + [SMALL_STATE(3015)] = 104337, + [SMALL_STATE(3016)] = 104348, + [SMALL_STATE(3017)] = 104359, + [SMALL_STATE(3018)] = 104370, + [SMALL_STATE(3019)] = 104381, + [SMALL_STATE(3020)] = 104392, + [SMALL_STATE(3021)] = 104403, + [SMALL_STATE(3022)] = 104414, + [SMALL_STATE(3023)] = 104425, + [SMALL_STATE(3024)] = 104436, + [SMALL_STATE(3025)] = 104447, + [SMALL_STATE(3026)] = 104458, + [SMALL_STATE(3027)] = 104469, + [SMALL_STATE(3028)] = 104480, + [SMALL_STATE(3029)] = 104491, + [SMALL_STATE(3030)] = 104502, + [SMALL_STATE(3031)] = 104513, + [SMALL_STATE(3032)] = 104524, + [SMALL_STATE(3033)] = 104533, + [SMALL_STATE(3034)] = 104544, + [SMALL_STATE(3035)] = 104555, + [SMALL_STATE(3036)] = 104566, + [SMALL_STATE(3037)] = 104577, + [SMALL_STATE(3038)] = 104588, + [SMALL_STATE(3039)] = 104599, + [SMALL_STATE(3040)] = 104610, + [SMALL_STATE(3041)] = 104621, + [SMALL_STATE(3042)] = 104630, + [SMALL_STATE(3043)] = 104641, + [SMALL_STATE(3044)] = 104652, + [SMALL_STATE(3045)] = 104663, + [SMALL_STATE(3046)] = 104674, + [SMALL_STATE(3047)] = 104685, + [SMALL_STATE(3048)] = 104694, + [SMALL_STATE(3049)] = 104705, + [SMALL_STATE(3050)] = 104716, + [SMALL_STATE(3051)] = 104727, + [SMALL_STATE(3052)] = 104738, + [SMALL_STATE(3053)] = 104749, + [SMALL_STATE(3054)] = 104760, + [SMALL_STATE(3055)] = 104771, + [SMALL_STATE(3056)] = 104782, + [SMALL_STATE(3057)] = 104793, + [SMALL_STATE(3058)] = 104804, + [SMALL_STATE(3059)] = 104815, + [SMALL_STATE(3060)] = 104826, + [SMALL_STATE(3061)] = 104837, + [SMALL_STATE(3062)] = 104848, + [SMALL_STATE(3063)] = 104859, + [SMALL_STATE(3064)] = 104870, + [SMALL_STATE(3065)] = 104881, + [SMALL_STATE(3066)] = 104892, + [SMALL_STATE(3067)] = 104903, + [SMALL_STATE(3068)] = 104914, + [SMALL_STATE(3069)] = 104925, + [SMALL_STATE(3070)] = 104936, + [SMALL_STATE(3071)] = 104947, + [SMALL_STATE(3072)] = 104958, + [SMALL_STATE(3073)] = 104969, + [SMALL_STATE(3074)] = 104980, + [SMALL_STATE(3075)] = 104991, + [SMALL_STATE(3076)] = 105002, + [SMALL_STATE(3077)] = 105013, + [SMALL_STATE(3078)] = 105024, + [SMALL_STATE(3079)] = 105035, + [SMALL_STATE(3080)] = 105046, + [SMALL_STATE(3081)] = 105057, + [SMALL_STATE(3082)] = 105068, + [SMALL_STATE(3083)] = 105079, + [SMALL_STATE(3084)] = 105090, + [SMALL_STATE(3085)] = 105101, + [SMALL_STATE(3086)] = 105112, + [SMALL_STATE(3087)] = 105123, + [SMALL_STATE(3088)] = 105134, + [SMALL_STATE(3089)] = 105145, + [SMALL_STATE(3090)] = 105156, + [SMALL_STATE(3091)] = 105167, + [SMALL_STATE(3092)] = 105178, + [SMALL_STATE(3093)] = 105189, + [SMALL_STATE(3094)] = 105200, + [SMALL_STATE(3095)] = 105211, + [SMALL_STATE(3096)] = 105222, + [SMALL_STATE(3097)] = 105233, + [SMALL_STATE(3098)] = 105244, + [SMALL_STATE(3099)] = 105255, + [SMALL_STATE(3100)] = 105266, + [SMALL_STATE(3101)] = 105277, + [SMALL_STATE(3102)] = 105288, + [SMALL_STATE(3103)] = 105299, + [SMALL_STATE(3104)] = 105310, + [SMALL_STATE(3105)] = 105321, + [SMALL_STATE(3106)] = 105332, + [SMALL_STATE(3107)] = 105343, + [SMALL_STATE(3108)] = 105354, + [SMALL_STATE(3109)] = 105365, + [SMALL_STATE(3110)] = 105376, + [SMALL_STATE(3111)] = 105387, + [SMALL_STATE(3112)] = 105398, + [SMALL_STATE(3113)] = 105409, + [SMALL_STATE(3114)] = 105420, + [SMALL_STATE(3115)] = 105431, + [SMALL_STATE(3116)] = 105442, + [SMALL_STATE(3117)] = 105453, + [SMALL_STATE(3118)] = 105464, + [SMALL_STATE(3119)] = 105475, + [SMALL_STATE(3120)] = 105486, + [SMALL_STATE(3121)] = 105497, + [SMALL_STATE(3122)] = 105508, + [SMALL_STATE(3123)] = 105519, + [SMALL_STATE(3124)] = 105530, + [SMALL_STATE(3125)] = 105541, + [SMALL_STATE(3126)] = 105552, + [SMALL_STATE(3127)] = 105563, + [SMALL_STATE(3128)] = 105574, + [SMALL_STATE(3129)] = 105582, + [SMALL_STATE(3130)] = 105590, + [SMALL_STATE(3131)] = 105598, + [SMALL_STATE(3132)] = 105606, + [SMALL_STATE(3133)] = 105614, + [SMALL_STATE(3134)] = 105622, + [SMALL_STATE(3135)] = 105630, + [SMALL_STATE(3136)] = 105638, + [SMALL_STATE(3137)] = 105646, + [SMALL_STATE(3138)] = 105654, + [SMALL_STATE(3139)] = 105662, + [SMALL_STATE(3140)] = 105670, + [SMALL_STATE(3141)] = 105678, + [SMALL_STATE(3142)] = 105686, + [SMALL_STATE(3143)] = 105694, + [SMALL_STATE(3144)] = 105702, + [SMALL_STATE(3145)] = 105710, + [SMALL_STATE(3146)] = 105718, + [SMALL_STATE(3147)] = 105726, + [SMALL_STATE(3148)] = 105734, + [SMALL_STATE(3149)] = 105742, + [SMALL_STATE(3150)] = 105750, + [SMALL_STATE(3151)] = 105758, + [SMALL_STATE(3152)] = 105766, + [SMALL_STATE(3153)] = 105774, + [SMALL_STATE(3154)] = 105782, + [SMALL_STATE(3155)] = 105790, + [SMALL_STATE(3156)] = 105798, + [SMALL_STATE(3157)] = 105806, + [SMALL_STATE(3158)] = 105814, + [SMALL_STATE(3159)] = 105822, + [SMALL_STATE(3160)] = 105830, + [SMALL_STATE(3161)] = 105838, + [SMALL_STATE(3162)] = 105846, + [SMALL_STATE(3163)] = 105854, + [SMALL_STATE(3164)] = 105862, + [SMALL_STATE(3165)] = 105870, + [SMALL_STATE(3166)] = 105878, + [SMALL_STATE(3167)] = 105886, + [SMALL_STATE(3168)] = 105894, + [SMALL_STATE(3169)] = 105902, + [SMALL_STATE(3170)] = 105910, + [SMALL_STATE(3171)] = 105918, + [SMALL_STATE(3172)] = 105926, + [SMALL_STATE(3173)] = 105934, + [SMALL_STATE(3174)] = 105942, + [SMALL_STATE(3175)] = 105950, + [SMALL_STATE(3176)] = 105958, + [SMALL_STATE(3177)] = 105966, + [SMALL_STATE(3178)] = 105974, + [SMALL_STATE(3179)] = 105982, + [SMALL_STATE(3180)] = 105990, + [SMALL_STATE(3181)] = 105998, + [SMALL_STATE(3182)] = 106006, + [SMALL_STATE(3183)] = 106014, + [SMALL_STATE(3184)] = 106022, + [SMALL_STATE(3185)] = 106030, + [SMALL_STATE(3186)] = 106038, + [SMALL_STATE(3187)] = 106046, + [SMALL_STATE(3188)] = 106054, + [SMALL_STATE(3189)] = 106062, + [SMALL_STATE(3190)] = 106070, + [SMALL_STATE(3191)] = 106078, + [SMALL_STATE(3192)] = 106086, + [SMALL_STATE(3193)] = 106094, + [SMALL_STATE(3194)] = 106102, + [SMALL_STATE(3195)] = 106110, + [SMALL_STATE(3196)] = 106118, + [SMALL_STATE(3197)] = 106126, + [SMALL_STATE(3198)] = 106134, + [SMALL_STATE(3199)] = 106142, + [SMALL_STATE(3200)] = 106150, + [SMALL_STATE(3201)] = 106158, + [SMALL_STATE(3202)] = 106166, + [SMALL_STATE(3203)] = 106174, + [SMALL_STATE(3204)] = 106182, + [SMALL_STATE(3205)] = 106190, + [SMALL_STATE(3206)] = 106198, + [SMALL_STATE(3207)] = 106206, + [SMALL_STATE(3208)] = 106214, + [SMALL_STATE(3209)] = 106222, + [SMALL_STATE(3210)] = 106230, + [SMALL_STATE(3211)] = 106238, + [SMALL_STATE(3212)] = 106246, + [SMALL_STATE(3213)] = 106254, + [SMALL_STATE(3214)] = 106262, + [SMALL_STATE(3215)] = 106270, + [SMALL_STATE(3216)] = 106278, + [SMALL_STATE(3217)] = 106286, + [SMALL_STATE(3218)] = 106294, + [SMALL_STATE(3219)] = 106302, + [SMALL_STATE(3220)] = 106310, + [SMALL_STATE(3221)] = 106318, + [SMALL_STATE(3222)] = 106326, + [SMALL_STATE(3223)] = 106334, + [SMALL_STATE(3224)] = 106342, + [SMALL_STATE(3225)] = 106350, + [SMALL_STATE(3226)] = 106358, + [SMALL_STATE(3227)] = 106366, + [SMALL_STATE(3228)] = 106374, + [SMALL_STATE(3229)] = 106382, + [SMALL_STATE(3230)] = 106390, + [SMALL_STATE(3231)] = 106398, + [SMALL_STATE(3232)] = 106406, + [SMALL_STATE(3233)] = 106414, + [SMALL_STATE(3234)] = 106422, + [SMALL_STATE(3235)] = 106430, + [SMALL_STATE(3236)] = 106438, + [SMALL_STATE(3237)] = 106446, + [SMALL_STATE(3238)] = 106454, + [SMALL_STATE(3239)] = 106462, + [SMALL_STATE(3240)] = 106470, + [SMALL_STATE(3241)] = 106478, + [SMALL_STATE(3242)] = 106486, + [SMALL_STATE(3243)] = 106494, + [SMALL_STATE(3244)] = 106502, + [SMALL_STATE(3245)] = 106510, + [SMALL_STATE(3246)] = 106518, + [SMALL_STATE(3247)] = 106526, + [SMALL_STATE(3248)] = 106534, + [SMALL_STATE(3249)] = 106542, + [SMALL_STATE(3250)] = 106550, + [SMALL_STATE(3251)] = 106558, + [SMALL_STATE(3252)] = 106566, + [SMALL_STATE(3253)] = 106574, + [SMALL_STATE(3254)] = 106582, + [SMALL_STATE(3255)] = 106590, + [SMALL_STATE(3256)] = 106598, + [SMALL_STATE(3257)] = 106606, + [SMALL_STATE(3258)] = 106614, + [SMALL_STATE(3259)] = 106622, + [SMALL_STATE(3260)] = 106630, + [SMALL_STATE(3261)] = 106638, + [SMALL_STATE(3262)] = 106646, + [SMALL_STATE(3263)] = 106654, + [SMALL_STATE(3264)] = 106662, + [SMALL_STATE(3265)] = 106670, + [SMALL_STATE(3266)] = 106678, + [SMALL_STATE(3267)] = 106686, + [SMALL_STATE(3268)] = 106694, + [SMALL_STATE(3269)] = 106702, + [SMALL_STATE(3270)] = 106710, + [SMALL_STATE(3271)] = 106718, + [SMALL_STATE(3272)] = 106726, + [SMALL_STATE(3273)] = 106734, + [SMALL_STATE(3274)] = 106742, + [SMALL_STATE(3275)] = 106750, + [SMALL_STATE(3276)] = 106758, + [SMALL_STATE(3277)] = 106766, + [SMALL_STATE(3278)] = 106774, + [SMALL_STATE(3279)] = 106782, + [SMALL_STATE(3280)] = 106790, + [SMALL_STATE(3281)] = 106798, + [SMALL_STATE(3282)] = 106806, + [SMALL_STATE(3283)] = 106814, + [SMALL_STATE(3284)] = 106822, + [SMALL_STATE(3285)] = 106830, + [SMALL_STATE(3286)] = 106838, + [SMALL_STATE(3287)] = 106846, + [SMALL_STATE(3288)] = 106854, + [SMALL_STATE(3289)] = 106862, + [SMALL_STATE(3290)] = 106870, + [SMALL_STATE(3291)] = 106878, + [SMALL_STATE(3292)] = 106886, + [SMALL_STATE(3293)] = 106894, + [SMALL_STATE(3294)] = 106902, + [SMALL_STATE(3295)] = 106910, + [SMALL_STATE(3296)] = 106918, + [SMALL_STATE(3297)] = 106926, + [SMALL_STATE(3298)] = 106934, + [SMALL_STATE(3299)] = 106942, + [SMALL_STATE(3300)] = 106950, + [SMALL_STATE(3301)] = 106958, + [SMALL_STATE(3302)] = 106966, + [SMALL_STATE(3303)] = 106974, + [SMALL_STATE(3304)] = 106982, + [SMALL_STATE(3305)] = 106990, + [SMALL_STATE(3306)] = 106998, + [SMALL_STATE(3307)] = 107006, + [SMALL_STATE(3308)] = 107014, + [SMALL_STATE(3309)] = 107022, + [SMALL_STATE(3310)] = 107030, + [SMALL_STATE(3311)] = 107038, + [SMALL_STATE(3312)] = 107046, + [SMALL_STATE(3313)] = 107054, + [SMALL_STATE(3314)] = 107062, + [SMALL_STATE(3315)] = 107070, + [SMALL_STATE(3316)] = 107078, + [SMALL_STATE(3317)] = 107086, + [SMALL_STATE(3318)] = 107094, + [SMALL_STATE(3319)] = 107102, + [SMALL_STATE(3320)] = 107110, + [SMALL_STATE(3321)] = 107118, + [SMALL_STATE(3322)] = 107126, + [SMALL_STATE(3323)] = 107134, + [SMALL_STATE(3324)] = 107142, + [SMALL_STATE(3325)] = 107150, + [SMALL_STATE(3326)] = 107158, + [SMALL_STATE(3327)] = 107166, + [SMALL_STATE(3328)] = 107174, + [SMALL_STATE(3329)] = 107182, + [SMALL_STATE(3330)] = 107190, + [SMALL_STATE(3331)] = 107198, + [SMALL_STATE(3332)] = 107206, + [SMALL_STATE(3333)] = 107214, + [SMALL_STATE(3334)] = 107222, + [SMALL_STATE(3335)] = 107230, + [SMALL_STATE(3336)] = 107238, + [SMALL_STATE(3337)] = 107246, + [SMALL_STATE(3338)] = 107254, + [SMALL_STATE(3339)] = 107262, + [SMALL_STATE(3340)] = 107270, + [SMALL_STATE(3341)] = 107278, + [SMALL_STATE(3342)] = 107286, + [SMALL_STATE(3343)] = 107294, + [SMALL_STATE(3344)] = 107302, + [SMALL_STATE(3345)] = 107310, + [SMALL_STATE(3346)] = 107318, + [SMALL_STATE(3347)] = 107326, + [SMALL_STATE(3348)] = 107334, + [SMALL_STATE(3349)] = 107342, + [SMALL_STATE(3350)] = 107350, + [SMALL_STATE(3351)] = 107358, + [SMALL_STATE(3352)] = 107366, + [SMALL_STATE(3353)] = 107374, + [SMALL_STATE(3354)] = 107382, + [SMALL_STATE(3355)] = 107390, + [SMALL_STATE(3356)] = 107398, + [SMALL_STATE(3357)] = 107406, + [SMALL_STATE(3358)] = 107414, + [SMALL_STATE(3359)] = 107422, + [SMALL_STATE(3360)] = 107430, + [SMALL_STATE(3361)] = 107438, + [SMALL_STATE(3362)] = 107446, + [SMALL_STATE(3363)] = 107454, + [SMALL_STATE(3364)] = 107462, + [SMALL_STATE(3365)] = 107470, + [SMALL_STATE(3366)] = 107478, + [SMALL_STATE(3367)] = 107486, + [SMALL_STATE(3368)] = 107494, + [SMALL_STATE(3369)] = 107502, + [SMALL_STATE(3370)] = 107510, + [SMALL_STATE(3371)] = 107518, + [SMALL_STATE(3372)] = 107526, + [SMALL_STATE(3373)] = 107534, + [SMALL_STATE(3374)] = 107542, + [SMALL_STATE(3375)] = 107550, + [SMALL_STATE(3376)] = 107558, + [SMALL_STATE(3377)] = 107566, + [SMALL_STATE(3378)] = 107574, + [SMALL_STATE(3379)] = 107582, + [SMALL_STATE(3380)] = 107590, + [SMALL_STATE(3381)] = 107598, + [SMALL_STATE(3382)] = 107606, + [SMALL_STATE(3383)] = 107614, + [SMALL_STATE(3384)] = 107622, + [SMALL_STATE(3385)] = 107630, + [SMALL_STATE(3386)] = 107638, + [SMALL_STATE(3387)] = 107646, + [SMALL_STATE(3388)] = 107654, + [SMALL_STATE(3389)] = 107662, + [SMALL_STATE(3390)] = 107670, + [SMALL_STATE(3391)] = 107678, + [SMALL_STATE(3392)] = 107686, + [SMALL_STATE(3393)] = 107694, + [SMALL_STATE(3394)] = 107702, + [SMALL_STATE(3395)] = 107710, + [SMALL_STATE(3396)] = 107718, + [SMALL_STATE(3397)] = 107726, + [SMALL_STATE(3398)] = 107734, + [SMALL_STATE(3399)] = 107742, + [SMALL_STATE(3400)] = 107750, + [SMALL_STATE(3401)] = 107758, + [SMALL_STATE(3402)] = 107766, + [SMALL_STATE(3403)] = 107774, + [SMALL_STATE(3404)] = 107782, + [SMALL_STATE(3405)] = 107790, + [SMALL_STATE(3406)] = 107798, + [SMALL_STATE(3407)] = 107806, + [SMALL_STATE(3408)] = 107814, + [SMALL_STATE(3409)] = 107822, + [SMALL_STATE(3410)] = 107830, + [SMALL_STATE(3411)] = 107838, + [SMALL_STATE(3412)] = 107846, + [SMALL_STATE(3413)] = 107854, + [SMALL_STATE(3414)] = 107862, + [SMALL_STATE(3415)] = 107870, + [SMALL_STATE(3416)] = 107878, + [SMALL_STATE(3417)] = 107886, + [SMALL_STATE(3418)] = 107894, + [SMALL_STATE(3419)] = 107902, + [SMALL_STATE(3420)] = 107910, + [SMALL_STATE(3421)] = 107918, + [SMALL_STATE(3422)] = 107926, + [SMALL_STATE(3423)] = 107934, + [SMALL_STATE(3424)] = 107942, + [SMALL_STATE(3425)] = 107950, + [SMALL_STATE(3426)] = 107958, + [SMALL_STATE(3427)] = 107966, + [SMALL_STATE(3428)] = 107974, + [SMALL_STATE(3429)] = 107982, + [SMALL_STATE(3430)] = 107990, + [SMALL_STATE(3431)] = 107998, + [SMALL_STATE(3432)] = 108006, + [SMALL_STATE(3433)] = 108014, + [SMALL_STATE(3434)] = 108022, + [SMALL_STATE(3435)] = 108030, + [SMALL_STATE(3436)] = 108038, + [SMALL_STATE(3437)] = 108046, + [SMALL_STATE(3438)] = 108054, + [SMALL_STATE(3439)] = 108062, + [SMALL_STATE(3440)] = 108070, + [SMALL_STATE(3441)] = 108078, + [SMALL_STATE(3442)] = 108086, + [SMALL_STATE(3443)] = 108094, + [SMALL_STATE(3444)] = 108102, + [SMALL_STATE(3445)] = 108110, + [SMALL_STATE(3446)] = 108118, + [SMALL_STATE(3447)] = 108126, + [SMALL_STATE(3448)] = 108134, + [SMALL_STATE(3449)] = 108142, + [SMALL_STATE(3450)] = 108150, + [SMALL_STATE(3451)] = 108158, + [SMALL_STATE(3452)] = 108166, + [SMALL_STATE(3453)] = 108174, + [SMALL_STATE(3454)] = 108182, + [SMALL_STATE(3455)] = 108190, + [SMALL_STATE(3456)] = 108198, + [SMALL_STATE(3457)] = 108206, + [SMALL_STATE(3458)] = 108214, + [SMALL_STATE(3459)] = 108222, + [SMALL_STATE(3460)] = 108230, + [SMALL_STATE(3461)] = 108238, + [SMALL_STATE(3462)] = 108246, + [SMALL_STATE(3463)] = 108254, + [SMALL_STATE(3464)] = 108262, + [SMALL_STATE(3465)] = 108270, + [SMALL_STATE(3466)] = 108278, + [SMALL_STATE(3467)] = 108286, + [SMALL_STATE(3468)] = 108294, + [SMALL_STATE(3469)] = 108302, + [SMALL_STATE(3470)] = 108310, + [SMALL_STATE(3471)] = 108318, + [SMALL_STATE(3472)] = 108326, + [SMALL_STATE(3473)] = 108334, + [SMALL_STATE(3474)] = 108342, + [SMALL_STATE(3475)] = 108350, + [SMALL_STATE(3476)] = 108358, + [SMALL_STATE(3477)] = 108366, + [SMALL_STATE(3478)] = 108374, + [SMALL_STATE(3479)] = 108382, + [SMALL_STATE(3480)] = 108390, + [SMALL_STATE(3481)] = 108398, + [SMALL_STATE(3482)] = 108406, + [SMALL_STATE(3483)] = 108414, + [SMALL_STATE(3484)] = 108422, + [SMALL_STATE(3485)] = 108430, + [SMALL_STATE(3486)] = 108438, + [SMALL_STATE(3487)] = 108446, + [SMALL_STATE(3488)] = 108454, + [SMALL_STATE(3489)] = 108462, + [SMALL_STATE(3490)] = 108470, + [SMALL_STATE(3491)] = 108478, + [SMALL_STATE(3492)] = 108486, + [SMALL_STATE(3493)] = 108494, + [SMALL_STATE(3494)] = 108502, + [SMALL_STATE(3495)] = 108510, + [SMALL_STATE(3496)] = 108518, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -141767,2338 +175516,2681 @@ 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(1478), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2379), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3283), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2924), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2909), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2925), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), + [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2951), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2394), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 18), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 18), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 0), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 0), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 0), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, 0, 0), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(218), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2152), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(201), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2908), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(141), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(142), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(142), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(143), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(143), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(145), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2217), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2443), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 7), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 7), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 15), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 15), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 30), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 30), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(216), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2886), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 4, 0, 0), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 4, 0, 0), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(174), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2894), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(379), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2870), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2152), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3141), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2443), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rhs_expression, 1, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rhs_expression, 1, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs_expression, 1, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lhs_expression, 1, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 1), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 1), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 2), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 2), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 0), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 2, 0, 4), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 2, 0, 4), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 5), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 5), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_brace, 2, 0, 0), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_brace, 2, 0, 0), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 6), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 6), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 3, 0, 10), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 3, 0, 10), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 2, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 2, 0, 0), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 3, 0, 14), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 3, 0, 14), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_trace_expression, 4, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_trace_expression, 4, 0, 0), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 22), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 22), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 23), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 23), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 29), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 29), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 3, 0, 0), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 3, 0, 0), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 39), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 39), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 40), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 40), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 44), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 44), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 4, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 4, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 6, 0, 52), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 6, 0, 52), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 6, 0, 56), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 6, 0, 56), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 5, 0, 0), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 5, 0, 0), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3, 0, 9), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3, 0, 9), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 9), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 9), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 20), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 20), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 37), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 37), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 34), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 34), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 72), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 72), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 42), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 42), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 31), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 31), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 94), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 94), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 95), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 95), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 96), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 96), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 97), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 97), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 98), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 98), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 86), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 86), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 99), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 99), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 49), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 49), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 100), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 100), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 101), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 101), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 102), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 102), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 8, 0, 49), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 8, 0, 49), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 103), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 103), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 104), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 104), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 105), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 105), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 70), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 70), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, 0, 106), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, 0, 106), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 41), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 41), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 57), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 57), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 73), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 73), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 64), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 64), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 80), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 80), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 93), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 93), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 107), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 107), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 108), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 108), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 86), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 86), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 99), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 99), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 109), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 109), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 49), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 49), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 110), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 110), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 111), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 111), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 112), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 112), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 113), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 113), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 114), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 114), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 57), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 57), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 73), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 73), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 64), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 64), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 80), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 80), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 93), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 93), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 86), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 86), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 99), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 99), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 109), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 109), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 115), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 115), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 116), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 116), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 73), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 73), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 80), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 80), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 93), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 93), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 86), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 86), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 99), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 99), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 109), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 109), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 93), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 93), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 99), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 99), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 109), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 109), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 13, 0, 109), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 13, 0, 109), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 35), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 35), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 81), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 81), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 3, 0, 3), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 3, 0, 3), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 2, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 2, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 82), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 82), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 83), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 83), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 3), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 3), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 11), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 11), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 11), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 11), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 31), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 31), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 84), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 84), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 11), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 11), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 85), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 85), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 4, 0, 16), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 4, 0, 16), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 4, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 4, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 4, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 4, 0, 0), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 86), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 86), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 21), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 21), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 20), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 20), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 3), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 3), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 25), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 25), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 49), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 49), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 26), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 26), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 25), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 25), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 26), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 26), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 3), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 3), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 31), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 31), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 32), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 32), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 32), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 32), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 33), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 33), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 87), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 87), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 0), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 88), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 88), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 49), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 49), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 36), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 36), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 49), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 49), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 37), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 37), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 38), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 38), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 67), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 67), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 89), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 89), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 31), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 31), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 3), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 3), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 80), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 80), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 43), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 43), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 43), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 43), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 3), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 3), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 51), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 51), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 3), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 3), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 25), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 25), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 6, 0, 90), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, 0, 90), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 31), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 31), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 47), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 47), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 48), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 48), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 31), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 31), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 49), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 49), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 50), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 50), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 47), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 47), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 48), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 48), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 51), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 51), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 53), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 53), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 6, 0, 54), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 6, 0, 54), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 55), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 55), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 41), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 41), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 57), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 57), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 3), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 3), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 58), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 58), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 59), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 59), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 60), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 60), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 3), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 3), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 62), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 62), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 63), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 63), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 64), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 64), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 31), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 31), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 65), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 65), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 66), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 66), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 31), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 31), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 31), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 31), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 49), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 49), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 67), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 67), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 68), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 68), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 49), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 49), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 66), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 66), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 69), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 69), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 33), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 33), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 70), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 70), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 41), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 41), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 57), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 57), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 71), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 71), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 73), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 73), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 72), REDUCE(sym_catch_statement, 5, 0, 72), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 72), REDUCE(sym_catch_statement, 5, 0, 72), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 91), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 91), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 92), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 92), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 41), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 41), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 64), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 64), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 57), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 57), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 73), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 73), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 80), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 80), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 3), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 3), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 74), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 74), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 75), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 75), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 76), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 76), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 78), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 78), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 93), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 93), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 8), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 8), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 19), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 19), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 79), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 79), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 64), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 64), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3386), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 41), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 41), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2884), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(861), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2899), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(905), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2881), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(917), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2152), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(201), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2899), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2341), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(141), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(142), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(142), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(143), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(143), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(145), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2217), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2443), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(895), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2896), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(934), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2888), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(1030), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2912), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(935), + [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2920), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(962), + [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2877), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(954), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2914), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(956), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(3108), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(944), + [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2890), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(968), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2902), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(952), + [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2924), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(1397), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(3062), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 3, 0, 0), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 3, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 4, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1, 0, 0), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(1568), + [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2864), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(1983), + [3645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2904), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2135), + [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2918), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2241), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1304), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2152), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(201), + [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2864), + [3687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2321), + [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(141), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(142), + [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(142), + [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(143), + [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(143), + [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(145), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2217), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2443), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2014), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2919), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2156), + [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2910), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2188), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2900), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2191), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2916), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 4, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 4, 0, 0), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2183), + [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2892), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 13), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 13), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2177), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2906), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 12), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 12), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 45), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 45), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 12), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 12), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 13), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 13), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 3, 0, 0), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 3, 0, 0), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 46), + [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 46), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(306), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 0), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2180), + [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2964), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2179), + [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2152), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(201), + [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2874), + [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2217), + [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2443), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(1952), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 3, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 3, 0, 0), + [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2192), + [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2898), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 5, 0, 0), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 5, 0, 0), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binaryOperator, 1, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binaryOperator, 1, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2186), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 2, 0, 3), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 2, 0, 3), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2198), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 5, 0, 3), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 5, 0, 3), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 6, 0, 3), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 6, 0, 3), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), + [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 77), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3326), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 61), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 1, 0, 28), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3322), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 2, 0, 0), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_type, 2, 0, 0), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 1, 0, 0), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 1, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 3, 0, 0), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 3, 0, 0), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 1, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3359), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 4, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 4, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 2, 0, 0), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 3, 0, 0), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 2, 0, 28), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), + [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3240), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2419), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(1681), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), REDUCE(sym_structure_type_pair, 3, 0, 0), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), + [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(305), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2671), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 24), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2601), + [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2601), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 24), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), + [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 4, 0, 0), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 28), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3007), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type_pair, 3, 0, 0), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 4, 0, 0), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 3, 0, 0), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 6, 0, 77), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 28), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 4, 0, 0), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), + [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2114), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 2, 0, 0), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), + [5002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 3, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 5, 0, 61), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 4, 0, 0), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 27), + [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 27), SHIFT_REPEAT(2257), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 27), + [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 27), SHIFT_REPEAT(2245), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), SHIFT_REPEAT(1369), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 2, 0, 0), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 3, 0, 24), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_name, 1, 0, 0), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 3, 0, 24), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 5, 0, 0), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5591] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), }; 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 { From 85d1ad4ac31c9acbd4f68e215962254bb0169792 Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Sat, 21 Dec 2024 20:14:49 -0800 Subject: [PATCH 2/7] fix: add tree-sitter.json --- tree-sitter.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 tree-sitter.json 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 + } +} From ba90ccd2d7f654530cf8d42a74d2bdeed8de189f Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Sat, 21 Dec 2024 20:20:28 -0800 Subject: [PATCH 3/7] update --- grammar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index 702962f..05fad92 100644 --- a/grammar.js +++ b/grammar.js @@ -332,7 +332,7 @@ const haxe_grammar = { comment: ($) => token(choice(seq('//', /.*/), seq('/*', /[^*]*\*+([^/*][^*]*\*+)*/, '/'))), // TODO: implement the structures that use these - keyword: ($) => choice('catch', 'do', 'enum', 'for', 'try', 'while'), + // keyword: ($) => choice('catch', 'do', 'enum', 'for', 'try', 'while'), // keywords reserved by the haxe compiler that are not currently used reserved_keyword: ($) => choice('operator'), identifier: ($) => /[a-zA-Z_]+[a-zA-Z0-9]*/, From 58e39049cc8256870219cf7280033b1946aab1db Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Sat, 21 Dec 2024 20:21:09 -0800 Subject: [PATCH 4/7] regenerate --- src/grammar.json | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 722759e..92173b0 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3597,35 +3597,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": [ From 27535ec17a41b04e01bfcdd69335bdc2f1f93ccf Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Sat, 21 Dec 2024 20:57:15 -0800 Subject: [PATCH 5/7] update --- grammar.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/grammar.js b/grammar.js index 05fad92..e005c64 100644 --- a/grammar.js +++ b/grammar.js @@ -330,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]*/, From d3e3774df83a75e8476b4b7d4facc3b109ea98e9 Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Sun, 22 Dec 2024 23:12:08 -0800 Subject: [PATCH 6/7] add array comprehension, fix range bugs --- grammar-literals.js | 3 +- grammar.js | 20 +- src/grammar.json | 223 +- src/node-types.json | 210 +- src/parser.c | 241135 +++++++++++++++++--------------- test/corpus/declarations.txt | 27 +- test/corpus/expressions.txt | 6 +- 7 files changed, 125459 insertions(+), 116165 deletions(-) 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 e005c64..ca56368 100644 --- a/grammar.js +++ b/grammar.js @@ -161,17 +161,17 @@ const haxe_grammar = { seq( 'for', '(', - field('range', $.range_expression), + seq(choice($.pair, $.identifier), 'in', choice($._parenthesized_expression, $.identifier, $.range_expression)), ')', - field('body', $.statement), + optional(field('body', $.statement)), ), range_expression: ($) => - prec( - 1, - choice( - seq($.identifier, 'in', choice(seq($.integer, $._rangeOperator, $.integer), $.identifier, $.expression)), - seq($.pair, 'in', choice($.identifier, $.expression)), + prec(2, + seq( + choice($._parenthesized_expression, $.integer), + $._rangeOperator, + choice($._parenthesized_expression, $.integer), ) ), @@ -184,6 +184,7 @@ const haxe_grammar = { $.type_trace_expression, $._parenthesized_expression, $.switch_expression, + $.range_expression, // simple expression, or chained. seq($._rhs_expression, repeat(seq($.operator, $._rhs_expression))), seq('return', optional($._rhs_expression)), @@ -286,12 +287,11 @@ const haxe_grammar = { ), ), - while_statement: ($) => prec.right(seq( + while_statement: ($) => seq( 'while', field('condition', $._parenthesized_expression), - field('body', $.statement), + optional(field('body', $.statement)), ), - ), do_while_statement: ($) => prec.right(seq( 'do', diff --git a/src/grammar.json b/src/grammar.json index 92173b0..b93a524 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -801,99 +801,99 @@ "value": "(" }, { - "type": "FIELD", - "name": "range", - "content": { - "type": "SYMBOL", - "name": "range_expression" - } + "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": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "statement" - } + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "BLANK" + } + ] } ] }, "range_expression": { "type": "PREC", - "value": 1, + "value": 2, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "in" + "name": "_parenthesized_expression" }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "SYMBOL", - "name": "_rangeOperator" - }, - { - "type": "SYMBOL", - "name": "integer" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] + "type": "SYMBOL", + "name": "integer" } ] }, { - "type": "SEQ", + "type": "SYMBOL", + "name": "_rangeOperator" + }, + { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "pair" - }, - { - "type": "STRING", - "value": "in" + "name": "_parenthesized_expression" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] + "type": "SYMBOL", + "name": "integer" } ] } @@ -931,6 +931,10 @@ "type": "SYMBOL", "name": "switch_expression" }, + { + "type": "SYMBOL", + "name": "range_expression" + }, { "type": "SEQ", "members": [ @@ -1651,33 +1655,37 @@ } }, "while_statement": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "while" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_parenthesized_expression" - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "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", @@ -3179,11 +3187,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", diff --git a/src/node-types.json b/src/node-types.json index ae4184d..676a694 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -62,6 +62,10 @@ "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "identifier", "named": true @@ -94,6 +98,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -113,6 +121,10 @@ { "type": "type_trace_expression", "named": true + }, + { + "type": "while_statement", + "named": true } ] } @@ -213,6 +225,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -337,6 +353,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -507,6 +527,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -696,6 +720,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -830,6 +858,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -1066,6 +1098,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -1184,6 +1220,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -1306,6 +1346,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -1408,6 +1452,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -1532,6 +1580,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -1612,7 +1664,7 @@ "fields": { "body": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "(", @@ -1714,6 +1766,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -1759,17 +1815,89 @@ "named": true } ] - }, - "range": { - "multiple": false, - "required": true, - "types": [ - { - "type": "range_expression", - "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 + } + ] } }, { @@ -2081,6 +2209,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -2280,6 +2412,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -2396,6 +2532,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -2545,6 +2685,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -2632,6 +2776,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -2661,7 +2809,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "array", @@ -2715,6 +2863,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -2838,6 +2990,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -2925,6 +3081,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -3012,6 +3172,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -3095,6 +3259,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -3226,6 +3394,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -3600,6 +3772,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "runtime_type_check_expression", "named": true @@ -3629,7 +3805,7 @@ "fields": { "body": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "(", @@ -3731,6 +3907,10 @@ "type": "preprocessor_statement", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false @@ -3849,6 +4029,10 @@ "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, { "type": "return", "named": false diff --git a/src/parser.c b/src/parser.c index b4d9a8b..61c181f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3497 -#define LARGE_STATE_COUNT 846 +#define STATE_COUNT 3704 +#define LARGE_STATE_COUNT 878 #define SYMBOL_COUNT 222 #define ALIAS_COUNT 2 #define TOKEN_COUNT 117 #define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 17 +#define FIELD_COUNT 16 #define MAX_ALIAS_SEQUENCE_LENGTH 13 -#define PRODUCTION_ID_COUNT 117 +#define PRODUCTION_ID_COUNT 118 enum ts_symbol_identifiers { sym_identifier = 1, @@ -1608,11 +1608,10 @@ enum ts_field_identifiers { field_member = 10, field_name = 11, field_object = 12, - field_range = 13, - field_return_type = 14, - field_super_class_name = 15, - field_type = 16, - field_type_name = 17, + field_return_type = 13, + field_super_class_name = 14, + field_type = 15, + field_type_name = 16, }; static const char * const ts_field_names[] = { @@ -1629,7 +1628,6 @@ static const char * const ts_field_names[] = { [field_member] = "member", [field_name] = "name", [field_object] = "object", - [field_range] = "range", [field_return_type] = "return_type", [field_super_class_name] = "super_class_name", [field_type] = "type", @@ -1640,111 +1638,112 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 2}, [2] = {.index = 2, .length = 2}, [3] = {.index = 4, .length = 1}, - [4] = {.index = 5, .length = 2}, - [6] = {.index = 7, .length = 1}, - [7] = {.index = 8, .length = 2}, - [8] = {.index = 10, .length = 1}, - [9] = {.index = 11, .length = 2}, - [10] = {.index = 13, .length = 2}, - [11] = {.index = 15, .length = 2}, - [12] = {.index = 17, .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 = 1}, - [14] = {.index = 19, .length = 2}, - [15] = {.index = 21, .length = 2}, - [16] = {.index = 23, .length = 2}, - [17] = {.index = 25, .length = 2}, - [18] = {.index = 27, .length = 2}, - [19] = {.index = 29, .length = 2}, - [20] = {.index = 31, .length = 3}, - [21] = {.index = 34, .length = 3}, - [22] = {.index = 37, .length = 2}, - [23] = {.index = 39, .length = 2}, - [24] = {.index = 41, .length = 1}, - [25] = {.index = 42, .length = 2}, - [26] = {.index = 44, .length = 3}, - [27] = {.index = 47, .length = 2}, - [28] = {.index = 49, .length = 1}, + [14] = {.index = 19, .length = 1}, + [15] = {.index = 20, .length = 2}, + [16] = {.index = 22, .length = 2}, + [17] = {.index = 24, .length = 2}, + [18] = {.index = 26, .length = 2}, + [19] = {.index = 28, .length = 2}, + [20] = {.index = 30, .length = 2}, + [21] = {.index = 32, .length = 3}, + [22] = {.index = 35, .length = 3}, + [23] = {.index = 38, .length = 2}, + [24] = {.index = 40, .length = 2}, + [25] = {.index = 42, .length = 1}, + [26] = {.index = 43, .length = 2}, + [27] = {.index = 45, .length = 3}, + [28] = {.index = 48, .length = 2}, [29] = {.index = 50, .length = 1}, - [30] = {.index = 51, .length = 2}, - [31] = {.index = 53, .length = 1}, - [32] = {.index = 54, .length = 2}, - [34] = {.index = 56, .length = 2}, - [35] = {.index = 58, .length = 3}, - [36] = {.index = 61, .length = 4}, - [37] = {.index = 65, .length = 4}, - [38] = {.index = 69, .length = 2}, - [39] = {.index = 71, .length = 2}, - [40] = {.index = 73, .length = 2}, - [41] = {.index = 75, .length = 2}, - [42] = {.index = 77, .length = 3}, - [43] = {.index = 80, .length = 3}, - [44] = {.index = 83, .length = 2}, - [46] = {.index = 85, .length = 1}, - [47] = {.index = 86, .length = 2}, - [48] = {.index = 88, .length = 3}, - [49] = {.index = 91, .length = 1}, - [50] = {.index = 92, .length = 2}, - [52] = {.index = 94, .length = 1}, - [53] = {.index = 95, .length = 3}, - [54] = {.index = 98, .length = 5}, - [55] = {.index = 103, .length = 3}, - [56] = {.index = 106, .length = 2}, - [57] = {.index = 108, .length = 2}, - [58] = {.index = 110, .length = 3}, - [59] = {.index = 113, .length = 4}, - [60] = {.index = 117, .length = 3}, - [61] = {.index = 49, .length = 1}, - [62] = {.index = 120, .length = 2}, - [63] = {.index = 122, .length = 2}, - [64] = {.index = 124, .length = 2}, - [65] = {.index = 126, .length = 3}, - [66] = {.index = 129, .length = 3}, - [67] = {.index = 132, .length = 2}, - [68] = {.index = 134, .length = 3}, - [71] = {.index = 137, .length = 4}, - [72] = {.index = 141, .length = 2}, - [73] = {.index = 143, .length = 2}, - [74] = {.index = 145, .length = 4}, - [75] = {.index = 149, .length = 3}, - [76] = {.index = 152, .length = 4}, - [77] = {.index = 49, .length = 1}, - [78] = {.index = 156, .length = 2}, - [79] = {.index = 158, .length = 3}, - [80] = {.index = 161, .length = 2}, - [81] = {.index = 163, .length = 3}, - [82] = {.index = 166, .length = 4}, - [83] = {.index = 170, .length = 3}, - [84] = {.index = 173, .length = 2}, - [85] = {.index = 175, .length = 2}, - [86] = {.index = 177, .length = 2}, - [87] = {.index = 179, .length = 3}, - [88] = {.index = 182, .length = 3}, - [90] = {.index = 185, .length = 3}, - [91] = {.index = 188, .length = 4}, - [92] = {.index = 192, .length = 3}, - [93] = {.index = 195, .length = 2}, - [94] = {.index = 197, .length = 4}, - [95] = {.index = 201, .length = 3}, - [96] = {.index = 204, .length = 4}, - [97] = {.index = 208, .length = 2}, - [98] = {.index = 210, .length = 3}, - [99] = {.index = 213, .length = 2}, - [100] = {.index = 215, .length = 3}, - [101] = {.index = 218, .length = 4}, - [102] = {.index = 222, .length = 3}, - [103] = {.index = 225, .length = 2}, - [104] = {.index = 227, .length = 2}, - [106] = {.index = 229, .length = 4}, - [107] = {.index = 233, .length = 4}, - [108] = {.index = 237, .length = 3}, - [109] = {.index = 240, .length = 2}, - [110] = {.index = 242, .length = 4}, - [111] = {.index = 246, .length = 3}, - [112] = {.index = 249, .length = 4}, - [113] = {.index = 253, .length = 2}, - [114] = {.index = 255, .length = 3}, - [115] = {.index = 258, .length = 4}, - [116] = {.index = 262, .length = 3}, + [30] = {.index = 51, .length = 1}, + [31] = {.index = 52, .length = 2}, + [32] = {.index = 54, .length = 1}, + [33] = {.index = 55, .length = 2}, + [35] = {.index = 57, .length = 3}, + [36] = {.index = 60, .length = 4}, + [37] = {.index = 64, .length = 4}, + [38] = {.index = 68, .length = 2}, + [39] = {.index = 70, .length = 2}, + [40] = {.index = 72, .length = 2}, + [41] = {.index = 74, .length = 2}, + [42] = {.index = 76, .length = 3}, + [43] = {.index = 79, .length = 3}, + [44] = {.index = 82, .length = 2}, + [46] = {.index = 84, .length = 1}, + [47] = {.index = 85, .length = 2}, + [48] = {.index = 87, .length = 3}, + [49] = {.index = 90, .length = 1}, + [50] = {.index = 91, .length = 2}, + [52] = {.index = 93, .length = 1}, + [53] = {.index = 94, .length = 5}, + [54] = {.index = 99, .length = 3}, + [55] = {.index = 102, .length = 2}, + [56] = {.index = 104, .length = 2}, + [57] = {.index = 106, .length = 3}, + [58] = {.index = 109, .length = 4}, + [59] = {.index = 113, .length = 3}, + [60] = {.index = 50, .length = 1}, + [61] = {.index = 116, .length = 2}, + [62] = {.index = 118, .length = 2}, + [63] = {.index = 120, .length = 2}, + [64] = {.index = 122, .length = 3}, + [65] = {.index = 125, .length = 3}, + [66] = {.index = 128, .length = 2}, + [67] = {.index = 130, .length = 3}, + [70] = {.index = 133, .length = 1}, + [71] = {.index = 134, .length = 2}, + [72] = {.index = 136, .length = 2}, + [73] = {.index = 138, .length = 4}, + [74] = {.index = 142, .length = 3}, + [75] = {.index = 145, .length = 4}, + [76] = {.index = 50, .length = 1}, + [77] = {.index = 149, .length = 2}, + [78] = {.index = 151, .length = 3}, + [79] = {.index = 154, .length = 2}, + [80] = {.index = 156, .length = 3}, + [81] = {.index = 159, .length = 4}, + [82] = {.index = 163, .length = 3}, + [83] = {.index = 166, .length = 2}, + [84] = {.index = 168, .length = 2}, + [85] = {.index = 170, .length = 2}, + [86] = {.index = 172, .length = 3}, + [87] = {.index = 175, .length = 3}, + [89] = {.index = 178, .length = 2}, + [90] = {.index = 180, .length = 3}, + [91] = {.index = 183, .length = 4}, + [92] = {.index = 187, .length = 3}, + [93] = {.index = 190, .length = 2}, + [94] = {.index = 192, .length = 4}, + [95] = {.index = 196, .length = 3}, + [96] = {.index = 199, .length = 4}, + [97] = {.index = 203, .length = 2}, + [98] = {.index = 205, .length = 3}, + [99] = {.index = 208, .length = 2}, + [100] = {.index = 210, .length = 3}, + [101] = {.index = 213, .length = 4}, + [102] = {.index = 217, .length = 3}, + [103] = {.index = 220, .length = 2}, + [104] = {.index = 222, .length = 2}, + [106] = {.index = 224, .length = 3}, + [107] = {.index = 227, .length = 4}, + [108] = {.index = 231, .length = 4}, + [109] = {.index = 235, .length = 3}, + [110] = {.index = 238, .length = 2}, + [111] = {.index = 240, .length = 4}, + [112] = {.index = 244, .length = 3}, + [113] = {.index = 247, .length = 4}, + [114] = {.index = 251, .length = 2}, + [115] = {.index = 253, .length = 3}, + [116] = {.index = 256, .length = 4}, + [117] = {.index = 260, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1757,365 +1756,364 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [4] = {field_name, 1}, [5] = + {field_condition, 1}, + [6] = {field_arguments_list, 1}, {field_object, 0}, - [7] = - {field_member, 0}, [8] = + {field_member, 0}, + [9] = {field_member, 2, .inherited = true}, {field_object, 0}, - [10] = - {field_body, 1}, [11] = + {field_body, 1}, + [12] = {field_body, 2}, {field_condition, 1}, - [13] = + [14] = {field_arguments_list, 2}, {field_constructor, 1}, - [15] = + [16] = {field_body, 2}, {field_name, 1}, - [17] = - {field_type_name, 0}, [18] = - {field_built_in, 0}, + {field_type_name, 0}, [19] = + {field_built_in, 0}, + [20] = {field_arguments_list, 2}, {field_object, 0}, - [21] = + [22] = {field_literal, 0}, {field_member, 2, .inherited = true}, - [23] = + [24] = {field_name, 1}, {field_name, 2}, - [25] = + [26] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, - [27] = + [28] = {field_member, 3, .inherited = true}, {field_object, 0}, - [29] = + [30] = {field_body, 1}, {field_body, 2}, - [31] = + [32] = {field_body, 2}, {field_body, 3}, {field_condition, 1}, - [34] = + [35] = {field_body, 2}, {field_condition, 1}, {field_else, 3}, - [37] = + [38] = {field_arguments_list, 3}, {field_constructor, 1}, - [39] = + [40] = {field_arguments_list, 3}, {field_constructor, 2}, - [41] = - {field_interface_name, 1}, [42] = + {field_interface_name, 1}, + [43] = {field_body, 3}, {field_name, 1}, - [44] = + [45] = {field_body, 3}, {field_interface_name, 2, .inherited = true}, {field_name, 1}, - [47] = + [48] = {field_interface_name, 0, .inherited = true}, {field_interface_name, 1, .inherited = true}, - [49] = - {field_name, 0}, [50] = - {field_index, 2}, + {field_name, 0}, [51] = + {field_index, 2}, + [52] = {field_literal, 0}, {field_member, 3, .inherited = true}, - [53] = - {field_name, 2}, [54] = + {field_name, 2}, + [55] = {field_body, 3}, {field_name, 2}, - [56] = - {field_body, 4}, - {field_range, 2}, - [58] = + [57] = {field_body, 1}, {field_body, 2}, {field_body, 3}, - [61] = + [60] = {field_body, 2}, {field_body, 3}, {field_condition, 1}, {field_else, 4}, - [65] = + [64] = {field_body, 2}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [69] = + [68] = {field_body, 1}, {field_condition, 3}, - [71] = + [70] = {field_arguments_list, 4}, {field_constructor, 2}, - [73] = + [72] = {field_arguments_list, 4}, {field_constructor, 3}, - [75] = + [74] = {field_name, 1}, {field_type, 3}, - [77] = + [76] = {field_body, 4}, {field_name, 1}, {field_super_class_name, 3}, - [80] = + [79] = {field_body, 4}, {field_interface_name, 3, .inherited = true}, {field_name, 1}, - [83] = + [82] = {field_index, 2}, {field_index, 3}, - [85] = + [84] = {field_return_type, 2}, - [86] = + [85] = {field_body, 4}, {field_name, 2}, - [88] = + [87] = {field_body, 4}, {field_interface_name, 3, .inherited = true}, {field_name, 2}, - [91] = + [90] = {field_name, 3}, - [92] = + [91] = {field_body, 4}, {field_name, 3}, - [94] = + [93] = {field_type, 4}, - [95] = - {field_body, 4}, - {field_body, 5}, - {field_range, 2}, - [98] = + [94] = {field_body, 2}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, {field_else, 5}, - [103] = + [99] = {field_body, 1}, {field_body, 2}, {field_condition, 4}, - [106] = + [102] = {field_arguments_list, 5}, {field_constructor, 3}, - [108] = + [104] = {field_name, 1}, {field_type, 4}, - [110] = + [106] = {field_body, 5}, {field_name, 1}, {field_super_class_name, 3}, - [113] = + [109] = {field_body, 5}, {field_interface_name, 4, .inherited = true}, {field_name, 1}, {field_super_class_name, 3}, - [117] = + [113] = {field_body, 5}, {field_name, 1}, {field_super_class_name, 4}, - [120] = + [116] = {field_body, 4}, {field_name, 1}, - [122] = + [118] = {field_name, 1}, {field_return_type, 4}, - [124] = + [120] = {field_name, 2}, {field_type, 4}, - [126] = + [122] = {field_body, 5}, {field_name, 2}, {field_super_class_name, 4}, - [129] = + [125] = {field_body, 5}, {field_interface_name, 4, .inherited = true}, {field_name, 2}, - [132] = + [128] = {field_body, 5}, {field_name, 3}, - [134] = + [130] = {field_body, 5}, {field_interface_name, 4, .inherited = true}, {field_name, 3}, - [137] = - {field_body, 4}, - {field_body, 5}, + [133] = {field_body, 6}, - {field_range, 2}, - [141] = + [134] = {field_arguments_list, 2}, {field_body, 4}, - [143] = + [136] = {field_name, 1}, {field_type, 5}, - [145] = + [138] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 1}, {field_super_class_name, 3}, - [149] = + [142] = {field_body, 6}, {field_name, 1}, {field_super_class_name, 4}, - [152] = + [145] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 1}, {field_super_class_name, 4}, - [156] = + [149] = {field_name, 1}, {field_return_type, 5}, - [158] = + [151] = {field_body, 5}, {field_name, 1}, {field_return_type, 4}, - [161] = + [154] = {field_name, 2}, {field_type, 5}, - [163] = + [156] = {field_body, 6}, {field_name, 2}, {field_super_class_name, 4}, - [166] = + [159] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 2}, {field_super_class_name, 4}, - [170] = + [163] = {field_body, 6}, {field_name, 2}, {field_super_class_name, 5}, - [173] = + [166] = {field_body, 5}, {field_name, 2}, - [175] = + [168] = {field_name, 2}, {field_return_type, 5}, - [177] = + [170] = {field_name, 3}, {field_type, 5}, - [179] = + [172] = {field_body, 6}, {field_name, 3}, {field_super_class_name, 5}, - [182] = + [175] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 3}, - [185] = + [178] = + {field_body, 6}, + {field_body, 7}, + [180] = {field_arguments_list, 2}, {field_body, 4}, {field_body, 5}, - [188] = + [183] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 1}, {field_super_class_name, 4}, - [192] = + [187] = {field_body, 6}, {field_name, 1}, {field_return_type, 5}, - [195] = + [190] = {field_name, 2}, {field_type, 6}, - [197] = + [192] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 2}, {field_super_class_name, 4}, - [201] = + [196] = {field_body, 7}, {field_name, 2}, {field_super_class_name, 5}, - [204] = + [199] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 2}, {field_super_class_name, 5}, - [208] = + [203] = {field_name, 2}, {field_return_type, 6}, - [210] = + [205] = {field_body, 6}, {field_name, 2}, {field_return_type, 5}, - [213] = + [208] = {field_name, 3}, {field_type, 6}, - [215] = + [210] = {field_body, 7}, {field_name, 3}, {field_super_class_name, 5}, - [218] = + [213] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 3}, {field_super_class_name, 5}, - [222] = + [217] = {field_body, 7}, {field_name, 3}, {field_super_class_name, 6}, - [225] = + [220] = {field_body, 6}, {field_name, 3}, - [227] = + [222] = {field_name, 3}, {field_return_type, 6}, - [229] = + [224] = + {field_body, 6}, + {field_body, 7}, + {field_body, 8}, + [227] = {field_arguments_list, 2}, {field_body, 4}, {field_body, 5}, {field_body, 6}, - [233] = + [231] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 2}, {field_super_class_name, 5}, - [237] = + [235] = {field_body, 7}, {field_name, 2}, {field_return_type, 6}, - [240] = + [238] = {field_name, 3}, {field_type, 7}, - [242] = + [240] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 3}, {field_super_class_name, 5}, - [246] = + [244] = {field_body, 8}, {field_name, 3}, {field_super_class_name, 6}, - [249] = + [247] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 3}, {field_super_class_name, 6}, - [253] = + [251] = {field_name, 3}, {field_return_type, 7}, - [255] = + [253] = {field_body, 7}, {field_name, 3}, {field_return_type, 6}, - [258] = + [256] = {field_body, 9}, {field_interface_name, 8, .inherited = true}, {field_name, 3}, {field_super_class_name, 6}, - [262] = + [260] = {field_body, 8}, {field_name, 3}, {field_return_type, 7}, @@ -2123,16 +2121,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [5] = { + [6] = { [1] = anon_alias_sym_type_check, }, - [18] = { + [19] = { [1] = sym_operator, }, - [30] = { + [31] = { [1] = sym_operator, }, - [33] = { + [34] = { [3] = sym_identifier, }, [45] = { @@ -2141,20 +2139,20 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [51] = { [4] = sym_identifier, }, - [61] = { + [60] = { [2] = sym_type, }, - [69] = { + [68] = { [3] = sym_identifier, [5] = sym_identifier, }, - [70] = { + [69] = { [5] = sym_identifier, }, - [77] = { + [76] = { [3] = sym_type, }, - [89] = { + [88] = { [4] = sym_identifier, [6] = sym_identifier, }, @@ -2182,230 +2180,230 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, + [3] = 3, + [4] = 2, [5] = 2, - [6] = 4, - [7] = 7, - [8] = 7, - [9] = 2, - [10] = 7, - [11] = 4, + [6] = 3, + [7] = 3, + [8] = 3, + [9] = 3, + [10] = 10, + [11] = 11, [12] = 12, - [13] = 13, - [14] = 13, - [15] = 15, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 20, - [21] = 21, - [22] = 21, - [23] = 15, - [24] = 24, - [25] = 21, - [26] = 16, - [27] = 17, - [28] = 20, - [29] = 24, - [30] = 15, - [31] = 15, - [32] = 21, - [33] = 15, - [34] = 24, - [35] = 16, - [36] = 17, - [37] = 20, - [38] = 15, - [39] = 24, - [40] = 16, - [41] = 17, - [42] = 20, - [43] = 15, - [44] = 15, - [45] = 21, - [46] = 15, - [47] = 24, - [48] = 16, - [49] = 20, - [50] = 15, - [51] = 24, - [52] = 16, - [53] = 17, - [54] = 15, - [55] = 21, - [56] = 21, - [57] = 24, - [58] = 16, - [59] = 20, - [60] = 24, - [61] = 16, - [62] = 17, - [63] = 24, - [64] = 16, - [65] = 15, - [66] = 24, - [67] = 16, - [68] = 20, - [69] = 15, - [70] = 24, - [71] = 16, - [72] = 20, - [73] = 24, - [74] = 16, - [75] = 24, - [76] = 16, - [77] = 17, - [78] = 24, - [79] = 16, - [80] = 21, - [81] = 21, - [82] = 21, - [83] = 21, - [84] = 21, - [85] = 21, - [86] = 21, - [87] = 15, - [88] = 88, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 89, - [96] = 90, - [97] = 97, - [98] = 97, - [99] = 99, - [100] = 100, - [101] = 92, - [102] = 93, - [103] = 91, - [104] = 88, - [105] = 94, - [106] = 89, - [107] = 99, + [13] = 12, + [14] = 10, + [15] = 11, + [16] = 11, + [17] = 2, + [18] = 2, + [19] = 12, + [20] = 11, + [21] = 2, + [22] = 3, + [23] = 10, + [24] = 2, + [25] = 3, + [26] = 3, + [27] = 2, + [28] = 28, + [29] = 3, + [30] = 30, + [31] = 2, + [32] = 3, + [33] = 2, + [34] = 2, + [35] = 3, + [36] = 3, + [37] = 2, + [38] = 30, + [39] = 3, + [40] = 3, + [41] = 2, + [42] = 3, + [43] = 2, + [44] = 2, + [45] = 3, + [46] = 3, + [47] = 2, + [48] = 2, + [49] = 49, + [50] = 50, + [51] = 50, + [52] = 50, + [53] = 53, + [54] = 50, + [55] = 3, + [56] = 2, + [57] = 49, + [58] = 50, + [59] = 59, + [60] = 50, + [61] = 59, + [62] = 50, + [63] = 50, + [64] = 53, + [65] = 49, + [66] = 59, + [67] = 50, + [68] = 53, + [69] = 59, + [70] = 70, + [71] = 59, + [72] = 49, + [73] = 50, + [74] = 74, + [75] = 59, + [76] = 49, + [77] = 50, + [78] = 53, + [79] = 49, + [80] = 49, + [81] = 49, + [82] = 49, + [83] = 50, + [84] = 50, + [85] = 50, + [86] = 59, + [87] = 59, + [88] = 49, + [89] = 50, + [90] = 50, + [91] = 50, + [92] = 53, + [93] = 53, + [94] = 53, + [95] = 53, + [96] = 53, + [97] = 53, + [98] = 53, + [99] = 53, + [100] = 59, + [101] = 53, + [102] = 53, + [103] = 53, + [104] = 53, + [105] = 53, + [106] = 53, + [107] = 50, [108] = 108, - [109] = 100, - [110] = 110, - [111] = 108, - [112] = 110, - [113] = 89, - [114] = 92, - [115] = 91, - [116] = 88, - [117] = 93, - [118] = 94, + [109] = 109, + [110] = 109, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 108, + [115] = 115, + [116] = 111, + [117] = 117, + [118] = 118, [119] = 119, - [120] = 120, - [121] = 110, - [122] = 120, - [123] = 119, - [124] = 110, - [125] = 92, - [126] = 93, - [127] = 91, - [128] = 88, - [129] = 94, - [130] = 130, - [131] = 130, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 137, + [120] = 108, + [121] = 121, + [122] = 112, + [123] = 113, + [124] = 115, + [125] = 117, + [126] = 118, + [127] = 127, + [128] = 128, + [129] = 119, + [130] = 108, + [131] = 128, + [132] = 121, + [133] = 127, + [134] = 112, + [135] = 113, + [136] = 117, + [137] = 115, + [138] = 118, + [139] = 128, [140] = 140, [141] = 141, - [142] = 142, + [142] = 141, [143] = 143, - [144] = 137, + [144] = 128, [145] = 145, - [146] = 146, + [146] = 145, [147] = 147, - [148] = 148, + [148] = 147, [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 140, - [156] = 137, - [157] = 140, - [158] = 158, - [159] = 159, + [150] = 113, + [151] = 112, + [152] = 118, + [153] = 117, + [154] = 115, + [155] = 155, + [156] = 155, + [157] = 155, + [158] = 155, + [159] = 155, [160] = 160, - [161] = 161, + [161] = 160, [162] = 162, - [163] = 163, - [164] = 164, - [165] = 140, + [163] = 162, + [164] = 162, + [165] = 160, [166] = 166, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 140, + [167] = 160, + [168] = 162, + [169] = 160, + [170] = 170, [171] = 171, - [172] = 172, + [172] = 162, [173] = 173, [174] = 174, [175] = 175, [176] = 176, - [177] = 137, + [177] = 176, [178] = 178, [179] = 179, - [180] = 180, + [180] = 179, [181] = 181, [182] = 182, - [183] = 183, + [183] = 176, [184] = 184, [185] = 185, [186] = 186, [187] = 187, [188] = 188, - [189] = 189, + [189] = 176, [190] = 190, [191] = 191, - [192] = 192, + [192] = 179, [193] = 193, [194] = 194, - [195] = 195, + [195] = 194, [196] = 196, [197] = 197, [198] = 198, [199] = 199, [200] = 200, [201] = 201, - [202] = 201, - [203] = 201, + [202] = 202, + [203] = 179, [204] = 204, [205] = 205, - [206] = 135, - [207] = 152, - [208] = 168, - [209] = 204, - [210] = 204, - [211] = 204, - [212] = 200, - [213] = 201, - [214] = 201, - [215] = 204, - [216] = 174, - [217] = 178, - [218] = 174, - [219] = 205, - [220] = 161, - [221] = 162, - [222] = 143, - [223] = 223, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 176, [224] = 224, [225] = 225, - [226] = 226, + [226] = 179, [227] = 227, [228] = 228, [229] = 229, @@ -2420,178 +2418,178 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [238] = 238, [239] = 239, [240] = 240, - [241] = 241, - [242] = 186, - [243] = 235, - [244] = 193, - [245] = 141, - [246] = 142, - [247] = 145, - [248] = 147, - [249] = 148, - [250] = 149, - [251] = 151, - [252] = 235, - [253] = 153, - [254] = 154, - [255] = 158, - [256] = 159, - [257] = 160, - [258] = 163, - [259] = 164, - [260] = 199, - [261] = 167, + [241] = 208, + [242] = 242, + [243] = 238, + [244] = 244, + [245] = 242, + [246] = 246, + [247] = 247, + [248] = 217, + [249] = 249, + [250] = 240, + [251] = 240, + [252] = 252, + [253] = 242, + [254] = 254, + [255] = 227, + [256] = 240, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, [262] = 262, - [263] = 172, - [264] = 173, - [265] = 175, - [266] = 179, - [267] = 180, - [268] = 181, - [269] = 182, - [270] = 183, - [271] = 184, - [272] = 185, - [273] = 188, - [274] = 189, - [275] = 190, - [276] = 191, - [277] = 192, - [278] = 194, - [279] = 195, - [280] = 196, - [281] = 197, - [282] = 198, - [283] = 136, - [284] = 146, - [285] = 235, - [286] = 161, - [287] = 162, - [288] = 169, - [289] = 171, - [290] = 178, - [291] = 187, - [292] = 135, - [293] = 150, - [294] = 235, + [263] = 263, + [264] = 264, + [265] = 221, + [266] = 257, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 244, + [272] = 247, + [273] = 249, + [274] = 252, + [275] = 254, + [276] = 276, + [277] = 277, + [278] = 258, + [279] = 259, + [280] = 260, + [281] = 261, + [282] = 262, + [283] = 263, + [284] = 239, + [285] = 267, + [286] = 270, + [287] = 276, + [288] = 277, + [289] = 289, + [290] = 290, + [291] = 240, + [292] = 292, + [293] = 293, + [294] = 294, [295] = 295, - [296] = 166, - [297] = 297, - [298] = 298, - [299] = 238, - [300] = 235, - [301] = 301, - [302] = 235, - [303] = 235, - [304] = 235, - [305] = 235, - [306] = 235, - [307] = 307, - [308] = 238, - [309] = 235, - [310] = 235, - [311] = 235, - [312] = 238, - [313] = 235, - [314] = 314, - [315] = 235, - [316] = 235, - [317] = 317, - [318] = 229, - [319] = 319, - [320] = 319, - [321] = 239, - [322] = 262, - [323] = 298, - [324] = 307, - [325] = 314, - [326] = 317, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, + [296] = 240, + [297] = 289, + [298] = 290, + [299] = 240, + [300] = 300, + [301] = 240, + [302] = 240, + [303] = 240, + [304] = 292, + [305] = 293, + [306] = 294, + [307] = 295, + [308] = 257, + [309] = 268, + [310] = 264, + [311] = 240, + [312] = 240, + [313] = 257, + [314] = 268, + [315] = 257, + [316] = 268, + [317] = 242, + [318] = 171, + [319] = 240, + [320] = 240, + [321] = 321, + [322] = 240, + [323] = 240, + [324] = 166, + [325] = 214, + [326] = 214, + [327] = 242, + [328] = 268, + [329] = 200, + [330] = 240, + [331] = 240, [332] = 332, [333] = 333, - [334] = 334, - [335] = 223, - [336] = 224, - [337] = 225, - [338] = 226, - [339] = 227, - [340] = 228, - [341] = 230, - [342] = 231, - [343] = 232, - [344] = 233, - [345] = 235, - [346] = 327, - [347] = 328, - [348] = 319, - [349] = 329, - [350] = 319, - [351] = 330, - [352] = 319, - [353] = 235, - [354] = 235, - [355] = 235, - [356] = 331, - [357] = 332, - [358] = 333, - [359] = 334, - [360] = 176, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 363, - [367] = 234, - [368] = 368, - [369] = 369, - [370] = 362, - [371] = 371, - [372] = 178, - [373] = 373, - [374] = 374, - [375] = 161, - [376] = 135, - [377] = 162, - [378] = 374, - [379] = 174, - [380] = 380, - [381] = 362, - [382] = 374, - [383] = 362, - [384] = 374, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, + [334] = 269, + [335] = 240, + [336] = 300, + [337] = 190, + [338] = 207, + [339] = 222, + [340] = 175, + [341] = 173, + [342] = 181, + [343] = 213, + [344] = 188, + [345] = 224, + [346] = 178, + [347] = 209, + [348] = 225, + [349] = 208, + [350] = 193, + [351] = 238, + [352] = 218, + [353] = 228, + [354] = 229, + [355] = 230, + [356] = 356, + [357] = 227, + [358] = 235, + [359] = 221, + [360] = 174, + [361] = 187, + [362] = 197, + [363] = 182, + [364] = 231, + [365] = 184, + [366] = 212, + [367] = 367, + [368] = 215, + [369] = 185, + [370] = 186, + [371] = 191, + [372] = 199, + [373] = 219, + [374] = 232, + [375] = 233, + [376] = 196, + [377] = 198, + [378] = 234, + [379] = 220, + [380] = 201, + [381] = 236, + [382] = 237, + [383] = 216, + [384] = 211, + [385] = 202, + [386] = 204, + [387] = 205, + [388] = 206, + [389] = 210, [390] = 390, [391] = 391, [392] = 392, [393] = 393, [394] = 394, - [395] = 395, + [395] = 356, [396] = 396, [397] = 397, - [398] = 398, - [399] = 399, + [398] = 393, + [399] = 392, [400] = 400, - [401] = 401, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, + [401] = 221, + [402] = 208, + [403] = 214, + [404] = 394, + [405] = 394, + [406] = 227, + [407] = 238, + [408] = 392, + [409] = 394, [410] = 410, [411] = 411, - [412] = 412, + [412] = 392, [413] = 413, [414] = 414, [415] = 415, @@ -2625,7 +2623,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [443] = 443, [444] = 444, [445] = 445, - [446] = 361, + [446] = 446, [447] = 447, [448] = 448, [449] = 449, @@ -2679,7 +2677,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [497] = 497, [498] = 498, [499] = 499, - [500] = 295, + [500] = 500, [501] = 501, [502] = 502, [503] = 503, @@ -2727,7 +2725,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [545] = 545, [546] = 546, [547] = 547, - [548] = 486, + [548] = 548, [549] = 549, [550] = 550, [551] = 551, @@ -2739,572 +2737,572 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [557] = 557, [558] = 558, [559] = 559, - [560] = 486, + [560] = 560, [561] = 561, [562] = 562, [563] = 563, - [564] = 486, + [564] = 564, [565] = 565, [566] = 566, [567] = 567, - [568] = 568, + [568] = 390, [569] = 569, - [570] = 361, + [570] = 367, [571] = 571, - [572] = 361, + [572] = 569, [573] = 573, [574] = 574, - [575] = 441, - [576] = 573, - [577] = 574, - [578] = 578, - [579] = 441, - [580] = 573, - [581] = 574, - [582] = 441, - [583] = 583, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 569, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 569, + [583] = 390, [584] = 584, - [585] = 578, - [586] = 573, - [587] = 574, + [585] = 585, + [586] = 586, + [587] = 587, [588] = 588, - [589] = 361, - [590] = 369, - [591] = 574, - [592] = 365, - [593] = 364, - [594] = 368, - [595] = 365, - [596] = 365, - [597] = 578, - [598] = 368, - [599] = 369, - [600] = 441, - [601] = 369, - [602] = 573, - [603] = 368, - [604] = 441, - [605] = 371, - [606] = 361, - [607] = 573, - [608] = 574, - [609] = 441, - [610] = 441, - [611] = 373, - [612] = 573, - [613] = 574, - [614] = 578, - [615] = 574, - [616] = 380, - [617] = 573, - [618] = 409, - [619] = 451, - [620] = 444, - [621] = 445, - [622] = 447, - [623] = 448, - [624] = 496, - [625] = 497, - [626] = 505, - [627] = 508, - [628] = 473, - [629] = 450, - [630] = 460, - [631] = 549, - [632] = 550, - [633] = 553, - [634] = 463, - [635] = 453, - [636] = 555, - [637] = 556, - [638] = 559, - [639] = 563, - [640] = 469, - [641] = 571, - [642] = 461, - [643] = 386, - [644] = 387, - [645] = 474, - [646] = 365, - [647] = 388, - [648] = 454, - [649] = 389, - [650] = 365, - [651] = 390, - [652] = 391, - [653] = 392, - [654] = 393, - [655] = 476, - [656] = 477, - [657] = 478, - [658] = 479, - [659] = 480, - [660] = 394, - [661] = 481, - [662] = 482, - [663] = 483, - [664] = 485, - [665] = 487, - [666] = 457, - [667] = 488, - [668] = 395, - [669] = 491, - [670] = 369, - [671] = 492, - [672] = 458, - [673] = 459, - [674] = 396, - [675] = 462, - [676] = 494, - [677] = 495, - [678] = 588, - [679] = 397, - [680] = 499, - [681] = 398, - [682] = 385, - [683] = 502, - [684] = 503, - [685] = 504, - [686] = 506, - [687] = 399, - [688] = 400, - [689] = 507, - [690] = 509, - [691] = 510, - [692] = 511, - [693] = 512, - [694] = 513, - [695] = 464, - [696] = 514, - [697] = 515, - [698] = 516, - [699] = 517, - [700] = 518, - [701] = 401, - [702] = 402, - [703] = 368, - [704] = 519, - [705] = 403, - [706] = 404, - [707] = 465, - [708] = 405, - [709] = 520, - [710] = 406, - [711] = 407, - [712] = 472, - [713] = 475, - [714] = 484, - [715] = 410, - [716] = 466, - [717] = 467, - [718] = 468, - [719] = 411, - [720] = 412, - [721] = 413, - [722] = 489, - [723] = 414, - [724] = 490, - [725] = 415, - [726] = 521, - [727] = 522, - [728] = 416, - [729] = 417, - [730] = 523, - [731] = 418, - [732] = 524, - [733] = 369, - [734] = 525, - [735] = 526, - [736] = 527, - [737] = 528, - [738] = 529, - [739] = 530, - [740] = 531, - [741] = 419, - [742] = 420, - [743] = 532, - [744] = 421, - [745] = 422, - [746] = 423, - [747] = 533, - [748] = 534, - [749] = 535, - [750] = 536, - [751] = 537, - [752] = 538, - [753] = 456, - [754] = 539, - [755] = 424, - [756] = 425, - [757] = 426, - [758] = 540, - [759] = 427, - [760] = 541, - [761] = 542, - [762] = 428, - [763] = 543, - [764] = 544, - [765] = 545, - [766] = 493, - [767] = 546, - [768] = 429, - [769] = 547, - [770] = 551, - [771] = 552, - [772] = 430, - [773] = 554, - [774] = 557, - [775] = 558, - [776] = 431, - [777] = 561, - [778] = 562, - [779] = 432, - [780] = 565, - [781] = 566, - [782] = 368, - [783] = 449, - [784] = 567, - [785] = 568, - [786] = 569, - [787] = 583, - [788] = 433, - [789] = 434, - [790] = 584, - [791] = 470, - [792] = 435, - [793] = 471, - [794] = 436, - [795] = 437, - [796] = 438, - [797] = 439, - [798] = 440, - [799] = 501, - [800] = 498, - [801] = 442, - [802] = 452, - [803] = 443, - [804] = 455, - [805] = 408, - [806] = 806, - [807] = 806, - [808] = 808, - [809] = 808, - [810] = 810, - [811] = 810, - [812] = 91, - [813] = 92, - [814] = 93, - [815] = 88, - [816] = 94, - [817] = 92, - [818] = 93, - [819] = 94, - [820] = 88, - [821] = 91, - [822] = 89, - [823] = 90, - [824] = 91, - [825] = 94, - [826] = 88, - [827] = 92, - [828] = 93, - [829] = 108, - [830] = 110, - [831] = 89, - [832] = 99, - [833] = 833, - [834] = 93, - [835] = 91, - [836] = 88, - [837] = 94, - [838] = 89, - [839] = 90, - [840] = 92, - [841] = 90, - [842] = 89, - [843] = 843, - [844] = 110, - [845] = 845, - [846] = 90, - [847] = 89, - [848] = 89, - [849] = 90, - [850] = 295, - [851] = 90, - [852] = 89, - [853] = 90, - [854] = 90, - [855] = 89, - [856] = 89, - [857] = 90, - [858] = 89, - [859] = 88, - [860] = 91, - [861] = 174, - [862] = 93, - [863] = 94, - [864] = 92, - [865] = 92, - [866] = 93, - [867] = 91, - [868] = 92, - [869] = 88, - [870] = 94, - [871] = 92, - [872] = 93, - [873] = 91, - [874] = 88, - [875] = 94, - [876] = 88, - [877] = 94, - [878] = 91, - [879] = 92, - [880] = 93, - [881] = 91, - [882] = 93, - [883] = 88, - [884] = 94, - [885] = 93, - [886] = 94, - [887] = 92, - [888] = 91, - [889] = 88, - [890] = 94, - [891] = 92, - [892] = 93, - [893] = 91, - [894] = 88, - [895] = 174, - [896] = 92, - [897] = 93, - [898] = 91, - [899] = 93, - [900] = 900, - [901] = 91, - [902] = 88, - [903] = 94, - [904] = 94, - [905] = 174, - [906] = 88, - [907] = 92, - [908] = 362, - [909] = 166, - [910] = 295, - [911] = 146, - [912] = 363, - [913] = 362, - [914] = 362, - [915] = 374, - [916] = 916, - [917] = 374, - [918] = 486, - [919] = 486, - [920] = 486, - [921] = 486, - [922] = 922, - [923] = 923, - [924] = 108, - [925] = 99, - [926] = 99, - [927] = 108, - [928] = 110, - [929] = 99, - [930] = 99, - [931] = 110, - [932] = 110, - [933] = 110, - [934] = 174, - [935] = 174, - [936] = 120, - [937] = 110, - [938] = 110, - [939] = 119, - [940] = 108, - [941] = 136, - [942] = 193, - [943] = 99, - [944] = 174, - [945] = 99, - [946] = 166, - [947] = 176, - [948] = 99, - [949] = 108, - [950] = 186, - [951] = 295, - [952] = 174, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 390, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 595, + [600] = 596, + [601] = 597, + [602] = 598, + [603] = 595, + [604] = 596, + [605] = 598, + [606] = 606, + [607] = 607, + [608] = 595, + [609] = 596, + [610] = 598, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 411, + [619] = 413, + [620] = 410, + [621] = 391, + [622] = 396, + [623] = 595, + [624] = 596, + [625] = 598, + [626] = 595, + [627] = 390, + [628] = 414, + [629] = 410, + [630] = 598, + [631] = 596, + [632] = 597, + [633] = 595, + [634] = 400, + [635] = 413, + [636] = 390, + [637] = 397, + [638] = 598, + [639] = 400, + [640] = 596, + [641] = 413, + [642] = 410, + [643] = 595, + [644] = 596, + [645] = 598, + [646] = 597, + [647] = 400, + [648] = 530, + [649] = 470, + [650] = 471, + [651] = 472, + [652] = 431, + [653] = 473, + [654] = 452, + [655] = 474, + [656] = 475, + [657] = 453, + [658] = 476, + [659] = 477, + [660] = 478, + [661] = 454, + [662] = 479, + [663] = 480, + [664] = 455, + [665] = 481, + [666] = 482, + [667] = 483, + [668] = 484, + [669] = 485, + [670] = 400, + [671] = 486, + [672] = 456, + [673] = 487, + [674] = 488, + [675] = 489, + [676] = 490, + [677] = 491, + [678] = 492, + [679] = 493, + [680] = 494, + [681] = 584, + [682] = 495, + [683] = 496, + [684] = 497, + [685] = 498, + [686] = 499, + [687] = 500, + [688] = 501, + [689] = 502, + [690] = 503, + [691] = 504, + [692] = 505, + [693] = 506, + [694] = 507, + [695] = 508, + [696] = 509, + [697] = 510, + [698] = 511, + [699] = 585, + [700] = 512, + [701] = 571, + [702] = 513, + [703] = 514, + [704] = 515, + [705] = 516, + [706] = 517, + [707] = 518, + [708] = 519, + [709] = 573, + [710] = 520, + [711] = 586, + [712] = 521, + [713] = 522, + [714] = 523, + [715] = 524, + [716] = 525, + [717] = 526, + [718] = 527, + [719] = 528, + [720] = 529, + [721] = 531, + [722] = 532, + [723] = 533, + [724] = 534, + [725] = 535, + [726] = 536, + [727] = 537, + [728] = 587, + [729] = 538, + [730] = 539, + [731] = 540, + [732] = 541, + [733] = 588, + [734] = 542, + [735] = 543, + [736] = 544, + [737] = 545, + [738] = 546, + [739] = 415, + [740] = 547, + [741] = 548, + [742] = 549, + [743] = 450, + [744] = 551, + [745] = 552, + [746] = 553, + [747] = 554, + [748] = 555, + [749] = 556, + [750] = 557, + [751] = 558, + [752] = 559, + [753] = 560, + [754] = 561, + [755] = 562, + [756] = 563, + [757] = 564, + [758] = 565, + [759] = 566, + [760] = 567, + [761] = 589, + [762] = 574, + [763] = 590, + [764] = 591, + [765] = 580, + [766] = 426, + [767] = 592, + [768] = 593, + [769] = 457, + [770] = 458, + [771] = 413, + [772] = 575, + [773] = 606, + [774] = 607, + [775] = 427, + [776] = 428, + [777] = 429, + [778] = 430, + [779] = 611, + [780] = 612, + [781] = 613, + [782] = 614, + [783] = 615, + [784] = 432, + [785] = 616, + [786] = 416, + [787] = 424, + [788] = 451, + [789] = 459, + [790] = 410, + [791] = 460, + [792] = 400, + [793] = 425, + [794] = 461, + [795] = 434, + [796] = 435, + [797] = 417, + [798] = 576, + [799] = 418, + [800] = 617, + [801] = 419, + [802] = 436, + [803] = 420, + [804] = 437, + [805] = 438, + [806] = 421, + [807] = 577, + [808] = 579, + [809] = 462, + [810] = 463, + [811] = 464, + [812] = 465, + [813] = 466, + [814] = 467, + [815] = 413, + [816] = 439, + [817] = 440, + [818] = 441, + [819] = 442, + [820] = 443, + [821] = 581, + [822] = 444, + [823] = 445, + [824] = 422, + [825] = 446, + [826] = 447, + [827] = 410, + [828] = 448, + [829] = 449, + [830] = 468, + [831] = 433, + [832] = 423, + [833] = 469, + [834] = 550, + [835] = 835, + [836] = 835, + [837] = 837, + [838] = 837, + [839] = 839, + [840] = 839, + [841] = 117, + [842] = 112, + [843] = 118, + [844] = 113, + [845] = 115, + [846] = 108, + [847] = 111, + [848] = 118, + [849] = 112, + [850] = 115, + [851] = 117, + [852] = 113, + [853] = 108, + [854] = 119, + [855] = 128, + [856] = 127, + [857] = 112, + [858] = 113, + [859] = 115, + [860] = 121, + [861] = 117, + [862] = 118, + [863] = 863, + [864] = 128, + [865] = 108, + [866] = 108, + [867] = 145, + [868] = 111, + [869] = 111, + [870] = 113, + [871] = 112, + [872] = 147, + [873] = 117, + [874] = 118, + [875] = 115, + [876] = 876, + [877] = 877, + [878] = 108, + [879] = 111, + [880] = 111, + [881] = 108, + [882] = 108, + [883] = 108, + [884] = 367, + [885] = 111, + [886] = 111, + [887] = 108, + [888] = 111, + [889] = 214, + [890] = 112, + [891] = 115, + [892] = 117, + [893] = 113, + [894] = 118, + [895] = 113, + [896] = 118, + [897] = 113, + [898] = 117, + [899] = 115, + [900] = 112, + [901] = 113, + [902] = 117, + [903] = 118, + [904] = 118, + [905] = 112, + [906] = 115, + [907] = 117, + [908] = 115, + [909] = 112, + [910] = 113, + [911] = 115, + [912] = 117, + [913] = 118, + [914] = 112, + [915] = 112, + [916] = 113, + [917] = 115, + [918] = 112, + [919] = 117, + [920] = 118, + [921] = 118, + [922] = 117, + [923] = 115, + [924] = 113, + [925] = 392, + [926] = 394, + [927] = 214, + [928] = 393, + [929] = 117, + [930] = 113, + [931] = 115, + [932] = 394, + [933] = 392, + [934] = 115, + [935] = 113, + [936] = 117, + [937] = 118, + [938] = 214, + [939] = 112, + [940] = 112, + [941] = 118, + [942] = 392, + [943] = 943, + [944] = 569, + [945] = 569, + [946] = 367, + [947] = 215, + [948] = 188, + [949] = 596, + [950] = 598, + [951] = 390, + [952] = 595, [953] = 953, - [954] = 174, - [955] = 955, - [956] = 174, - [957] = 955, - [958] = 953, - [959] = 953, - [960] = 295, - [961] = 955, - [962] = 174, - [963] = 953, - [964] = 953, - [965] = 955, - [966] = 955, - [967] = 166, - [968] = 174, - [969] = 295, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 971, + [954] = 596, + [955] = 598, + [956] = 595, + [957] = 597, + [958] = 390, + [959] = 413, + [960] = 595, + [961] = 598, + [962] = 596, + [963] = 400, + [964] = 569, + [965] = 410, + [966] = 596, + [967] = 597, + [968] = 569, + [969] = 595, + [970] = 598, + [971] = 400, + [972] = 413, + [973] = 410, [974] = 974, - [975] = 974, - [976] = 166, - [977] = 977, - [978] = 110, - [979] = 979, - [980] = 980, - [981] = 193, - [982] = 970, - [983] = 983, - [984] = 99, - [985] = 110, - [986] = 110, - [987] = 987, - [988] = 983, - [989] = 980, - [990] = 99, - [991] = 108, - [992] = 99, - [993] = 110, - [994] = 983, - [995] = 995, - [996] = 99, - [997] = 193, - [998] = 99, - [999] = 983, - [1000] = 108, - [1001] = 108, - [1002] = 972, - [1003] = 99, - [1004] = 108, - [1005] = 979, - [1006] = 1006, - [1007] = 1007, - [1008] = 108, - [1009] = 110, - [1010] = 99, - [1011] = 1007, - [1012] = 99, - [1013] = 970, - [1014] = 99, - [1015] = 1015, - [1016] = 987, - [1017] = 136, + [975] = 975, + [976] = 127, + [977] = 127, + [978] = 119, + [979] = 128, + [980] = 127, + [981] = 128, + [982] = 119, + [983] = 127, + [984] = 214, + [985] = 128, + [986] = 214, + [987] = 128, + [988] = 174, + [989] = 367, + [990] = 119, + [991] = 204, + [992] = 145, + [993] = 199, + [994] = 128, + [995] = 187, + [996] = 147, + [997] = 214, + [998] = 215, + [999] = 127, + [1000] = 214, + [1001] = 214, + [1002] = 214, + [1003] = 367, + [1004] = 214, + [1005] = 215, + [1006] = 214, + [1007] = 367, + [1008] = 1008, + [1009] = 128, + [1010] = 1010, + [1011] = 1011, + [1012] = 1011, + [1013] = 1013, + [1014] = 1014, + [1015] = 128, + [1016] = 1016, + [1017] = 1014, [1018] = 1018, - [1019] = 176, - [1020] = 1018, - [1021] = 970, - [1022] = 166, - [1023] = 136, - [1024] = 970, - [1025] = 176, - [1026] = 995, - [1027] = 186, - [1028] = 977, - [1029] = 295, - [1030] = 174, - [1031] = 1015, - [1032] = 1006, - [1033] = 983, - [1034] = 186, - [1035] = 91, + [1019] = 1018, + [1020] = 1020, + [1021] = 215, + [1022] = 127, + [1023] = 128, + [1024] = 119, + [1025] = 174, + [1026] = 199, + [1027] = 1008, + [1028] = 128, + [1029] = 127, + [1030] = 187, + [1031] = 1013, + [1032] = 174, + [1033] = 204, + [1034] = 1034, + [1035] = 1035, [1036] = 1036, - [1037] = 99, - [1038] = 92, - [1039] = 1039, - [1040] = 94, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 166, - [1045] = 1045, + [1037] = 1037, + [1038] = 367, + [1039] = 119, + [1040] = 215, + [1041] = 199, + [1042] = 1035, + [1043] = 1035, + [1044] = 1034, + [1045] = 1014, [1046] = 1046, [1047] = 1047, - [1048] = 1045, + [1048] = 127, [1049] = 1049, - [1050] = 1043, - [1051] = 1051, - [1052] = 88, - [1053] = 120, - [1054] = 1051, - [1055] = 1055, - [1056] = 1055, - [1057] = 108, - [1058] = 93, - [1059] = 1059, - [1060] = 1039, - [1061] = 295, - [1062] = 1062, - [1063] = 1047, - [1064] = 1062, - [1065] = 1059, - [1066] = 119, - [1067] = 1041, - [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, + [1050] = 119, + [1051] = 214, + [1052] = 127, + [1053] = 1014, + [1054] = 1035, + [1055] = 1008, + [1056] = 127, + [1057] = 1046, + [1058] = 119, + [1059] = 1047, + [1060] = 1008, + [1061] = 1037, + [1062] = 127, + [1063] = 187, + [1064] = 119, + [1065] = 1035, + [1066] = 1034, + [1067] = 127, + [1068] = 1034, + [1069] = 127, + [1070] = 1036, + [1071] = 1010, + [1072] = 204, + [1073] = 1049, + [1074] = 127, + [1075] = 1008, + [1076] = 1016, + [1077] = 1014, [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, + [1079] = 1034, + [1080] = 1020, + [1081] = 1078, [1082] = 1082, - [1083] = 1083, + [1083] = 215, [1084] = 1084, [1085] = 1085, [1086] = 1086, - [1087] = 1087, - [1088] = 1088, + [1087] = 115, + [1088] = 145, [1089] = 1089, [1090] = 1090, - [1091] = 1091, - [1092] = 1092, + [1091] = 1089, + [1092] = 1085, [1093] = 1093, - [1094] = 1094, - [1095] = 1095, + [1094] = 367, + [1095] = 1093, [1096] = 1096, - [1097] = 99, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, + [1097] = 117, + [1098] = 1090, + [1099] = 127, + [1100] = 1084, [1101] = 1101, [1102] = 1102, - [1103] = 1103, - [1104] = 1104, + [1103] = 1101, + [1104] = 112, [1105] = 1105, - [1106] = 1106, - [1107] = 1073, + [1106] = 1105, + [1107] = 118, [1108] = 1108, [1109] = 1109, - [1110] = 1110, - [1111] = 1081, - [1112] = 1106, - [1113] = 1113, - [1114] = 1068, + [1110] = 147, + [1111] = 1109, + [1112] = 1086, + [1113] = 113, + [1114] = 119, [1115] = 1115, [1116] = 1116, [1117] = 1117, - [1118] = 1069, - [1119] = 1072, - [1120] = 1086, - [1121] = 1095, - [1122] = 1103, - [1123] = 1105, - [1124] = 1108, - [1125] = 1110, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1115, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, [1126] = 1126, [1127] = 1127, [1128] = 1128, @@ -3320,9 +3318,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, + [1141] = 1120, + [1142] = 1130, + [1143] = 1138, [1144] = 1144, [1145] = 1145, [1146] = 1146, @@ -3330,2352 +3328,2559 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1148] = 1148, [1149] = 1149, [1150] = 1150, - [1151] = 1070, - [1152] = 1126, - [1153] = 1071, - [1154] = 1074, - [1155] = 1075, - [1156] = 1076, - [1157] = 1077, - [1158] = 1078, - [1159] = 1079, - [1160] = 1080, - [1161] = 1082, - [1162] = 1083, - [1163] = 1084, - [1164] = 1087, - [1165] = 1088, - [1166] = 1089, - [1167] = 1090, - [1168] = 1091, - [1169] = 1092, - [1170] = 1093, - [1171] = 1094, - [1172] = 1096, - [1173] = 1098, - [1174] = 1099, - [1175] = 1100, - [1176] = 1101, - [1177] = 1109, - [1178] = 1127, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1128, - [1183] = 1113, - [1184] = 1129, - [1185] = 1113, - [1186] = 1116, - [1187] = 1130, - [1188] = 1117, - [1189] = 1086, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1117, + [1155] = 1155, + [1156] = 1137, + [1157] = 1157, + [1158] = 1149, + [1159] = 1157, + [1160] = 1144, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1116, + [1177] = 1177, + [1178] = 1118, + [1179] = 1119, + [1180] = 1123, + [1181] = 1124, + [1182] = 1125, + [1183] = 1126, + [1184] = 1127, + [1185] = 1128, + [1186] = 1132, + [1187] = 1133, + [1188] = 1134, + [1189] = 1147, [1190] = 1190, - [1191] = 1131, - [1192] = 1115, - [1193] = 1113, - [1194] = 1116, - [1195] = 1117, - [1196] = 1086, - [1197] = 1132, - [1198] = 1133, - [1199] = 1116, - [1200] = 1086, + [1191] = 1155, + [1192] = 1177, + [1193] = 1190, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, [1201] = 1201, [1202] = 1202, - [1203] = 1134, + [1203] = 1203, [1204] = 1204, - [1205] = 1179, - [1206] = 1190, + [1205] = 1205, + [1206] = 1206, [1207] = 1207, [1208] = 1208, - [1209] = 1116, - [1210] = 1135, - [1211] = 110, - [1212] = 1136, - [1213] = 1137, - [1214] = 1138, - [1215] = 1139, - [1216] = 1202, - [1217] = 1179, - [1218] = 1140, - [1219] = 110, - [1220] = 110, - [1221] = 1141, - [1222] = 1202, - [1223] = 1179, - [1224] = 1142, - [1225] = 1202, - [1226] = 1226, - [1227] = 1143, - [1228] = 1144, - [1229] = 1145, - [1230] = 1146, - [1231] = 1117, - [1232] = 1147, - [1233] = 108, - [1234] = 1148, - [1235] = 1113, - [1236] = 1117, - [1237] = 1149, - [1238] = 1117, - [1239] = 1113, - [1240] = 1117, - [1241] = 1113, - [1242] = 1150, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1194, + [1216] = 1195, + [1217] = 1196, + [1218] = 128, + [1219] = 1197, + [1220] = 1198, + [1221] = 1199, + [1222] = 1200, + [1223] = 1201, + [1224] = 1161, + [1225] = 1225, + [1226] = 1202, + [1227] = 1162, + [1228] = 1120, + [1229] = 1203, + [1230] = 1130, + [1231] = 1146, + [1232] = 1204, + [1233] = 1148, + [1234] = 1205, + [1235] = 1150, + [1236] = 1153, + [1237] = 1206, + [1238] = 1207, + [1239] = 1208, + [1240] = 1209, + [1241] = 1146, + [1242] = 128, [1243] = 1243, - [1244] = 1113, - [1245] = 1117, - [1246] = 1113, - [1247] = 1204, - [1248] = 1202, - [1249] = 1179, - [1250] = 1202, - [1251] = 1179, - [1252] = 1202, - [1253] = 1179, - [1254] = 1202, - [1255] = 1179, - [1256] = 1202, - [1257] = 1179, - [1258] = 1202, - [1259] = 1179, - [1260] = 1202, - [1261] = 1179, - [1262] = 1179, - [1263] = 1202, - [1264] = 1179, - [1265] = 1117, - [1266] = 1202, - [1267] = 1179, - [1268] = 1202, - [1269] = 1269, - [1270] = 1270, - [1271] = 1269, - [1272] = 92, - [1273] = 93, - [1274] = 91, - [1275] = 88, - [1276] = 94, - [1277] = 1270, - [1278] = 1278, - [1279] = 90, - [1280] = 1278, - [1281] = 90, - [1282] = 92, - [1283] = 93, - [1284] = 91, - [1285] = 88, - [1286] = 94, - [1287] = 362, - [1288] = 362, - [1289] = 362, - [1290] = 362, - [1291] = 374, - [1292] = 89, - [1293] = 92, - [1294] = 374, - [1295] = 374, - [1296] = 89, - [1297] = 93, - [1298] = 91, - [1299] = 374, - [1300] = 88, - [1301] = 94, - [1302] = 363, - [1303] = 1303, - [1304] = 1303, - [1305] = 1303, - [1306] = 1303, - [1307] = 1307, - [1308] = 363, - [1309] = 1309, - [1310] = 94, - [1311] = 1311, - [1312] = 1312, - [1313] = 1313, - [1314] = 1314, - [1315] = 1315, - [1316] = 362, - [1317] = 1317, - [1318] = 1318, - [1319] = 1319, - [1320] = 1320, - [1321] = 362, - [1322] = 1322, - [1323] = 362, - [1324] = 1317, - [1325] = 486, - [1326] = 90, - [1327] = 1327, - [1328] = 1328, - [1329] = 486, - [1330] = 100, - [1331] = 1312, - [1332] = 1313, - [1333] = 1322, - [1334] = 1318, - [1335] = 1335, - [1336] = 1314, - [1337] = 362, - [1338] = 486, - [1339] = 1315, - [1340] = 1340, - [1341] = 1311, - [1342] = 1328, - [1343] = 146, - [1344] = 362, - [1345] = 1320, - [1346] = 1346, - [1347] = 1327, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1348, - [1352] = 1352, - [1353] = 1346, - [1354] = 1350, - [1355] = 486, - [1356] = 1335, - [1357] = 1349, - [1358] = 1340, - [1359] = 92, - [1360] = 93, - [1361] = 91, - [1362] = 88, - [1363] = 1319, - [1364] = 1364, - [1365] = 1365, - [1366] = 1366, - [1367] = 146, - [1368] = 374, - [1369] = 1369, - [1370] = 374, - [1371] = 90, - [1372] = 1366, - [1373] = 171, - [1374] = 90, - [1375] = 1375, - [1376] = 90, - [1377] = 374, - [1378] = 150, + [1244] = 1210, + [1245] = 1211, + [1246] = 1212, + [1247] = 1120, + [1248] = 1130, + [1249] = 1146, + [1250] = 1153, + [1251] = 1148, + [1252] = 1213, + [1253] = 1150, + [1254] = 1153, + [1255] = 1164, + [1256] = 1214, + [1257] = 1165, + [1258] = 1120, + [1259] = 1146, + [1260] = 1148, + [1261] = 1153, + [1262] = 1166, + [1263] = 1136, + [1264] = 1167, + [1265] = 1131, + [1266] = 1163, + [1267] = 1115, + [1268] = 1145, + [1269] = 1168, + [1270] = 1150, + [1271] = 1148, + [1272] = 1135, + [1273] = 1169, + [1274] = 1274, + [1275] = 1150, + [1276] = 1276, + [1277] = 1277, + [1278] = 1140, + [1279] = 1170, + [1280] = 1130, + [1281] = 1150, + [1282] = 1151, + [1283] = 1131, + [1284] = 1115, + [1285] = 1171, + [1286] = 1150, + [1287] = 1131, + [1288] = 1115, + [1289] = 1150, + [1290] = 1172, + [1291] = 1173, + [1292] = 1130, + [1293] = 1150, + [1294] = 1174, + [1295] = 1152, + [1296] = 1130, + [1297] = 1150, + [1298] = 1130, + [1299] = 1130, + [1300] = 1175, + [1301] = 1130, + [1302] = 1302, + [1303] = 1130, + [1304] = 1150, + [1305] = 1131, + [1306] = 1115, + [1307] = 1115, + [1308] = 127, + [1309] = 128, + [1310] = 1131, + [1311] = 1115, + [1312] = 1131, + [1313] = 1115, + [1314] = 1131, + [1315] = 1115, + [1316] = 1131, + [1317] = 1115, + [1318] = 1115, + [1319] = 1131, + [1320] = 1115, + [1321] = 1131, + [1322] = 1115, + [1323] = 1131, + [1324] = 119, + [1325] = 1131, + [1326] = 1115, + [1327] = 1131, + [1328] = 1115, + [1329] = 1131, + [1330] = 1115, + [1331] = 1131, + [1332] = 1115, + [1333] = 1131, + [1334] = 1131, + [1335] = 1139, + [1336] = 1336, + [1337] = 115, + [1338] = 112, + [1339] = 113, + [1340] = 117, + [1341] = 118, + [1342] = 1342, + [1343] = 1336, + [1344] = 1342, + [1345] = 1345, + [1346] = 111, + [1347] = 113, + [1348] = 111, + [1349] = 115, + [1350] = 117, + [1351] = 1345, + [1352] = 112, + [1353] = 118, + [1354] = 392, + [1355] = 392, + [1356] = 392, + [1357] = 392, + [1358] = 394, + [1359] = 394, + [1360] = 108, + [1361] = 394, + [1362] = 394, + [1363] = 113, + [1364] = 115, + [1365] = 112, + [1366] = 117, + [1367] = 108, + [1368] = 118, + [1369] = 393, + [1370] = 1370, + [1371] = 1370, + [1372] = 1370, + [1373] = 1373, + [1374] = 1370, + [1375] = 393, + [1376] = 569, + [1377] = 1377, + [1378] = 1378, [1379] = 1379, - [1380] = 1380, - [1381] = 1375, - [1382] = 1366, - [1383] = 1364, - [1384] = 152, - [1385] = 1385, - [1386] = 90, - [1387] = 1387, - [1388] = 1364, - [1389] = 1389, - [1390] = 1375, - [1391] = 1391, - [1392] = 90, + [1380] = 392, + [1381] = 112, + [1382] = 1382, + [1383] = 1382, + [1384] = 1384, + [1385] = 569, + [1386] = 113, + [1387] = 569, + [1388] = 115, + [1389] = 117, + [1390] = 118, + [1391] = 569, + [1392] = 121, [1393] = 1393, - [1394] = 168, - [1395] = 1395, - [1396] = 1396, - [1397] = 174, - [1398] = 1391, + [1394] = 1394, + [1395] = 1384, + [1396] = 1379, + [1397] = 1377, + [1398] = 1398, [1399] = 1399, - [1400] = 1393, - [1401] = 1365, - [1402] = 1396, - [1403] = 1389, - [1404] = 1393, - [1405] = 1364, - [1406] = 1395, - [1407] = 1375, - [1408] = 1387, - [1409] = 1365, - [1410] = 1364, - [1411] = 1380, - [1412] = 1379, - [1413] = 1365, - [1414] = 1393, - [1415] = 160, - [1416] = 143, - [1417] = 182, + [1400] = 1400, + [1401] = 1401, + [1402] = 392, + [1403] = 1403, + [1404] = 1401, + [1405] = 1405, + [1406] = 1406, + [1407] = 1394, + [1408] = 1408, + [1409] = 1408, + [1410] = 392, + [1411] = 1398, + [1412] = 1412, + [1413] = 1413, + [1414] = 1412, + [1415] = 1415, + [1416] = 1400, + [1417] = 1417, [1418] = 1418, - [1419] = 189, - [1420] = 362, - [1421] = 152, - [1422] = 169, - [1423] = 1418, - [1424] = 92, - [1425] = 93, - [1426] = 91, - [1427] = 88, - [1428] = 94, + [1419] = 1417, + [1420] = 1415, + [1421] = 1378, + [1422] = 1403, + [1423] = 1413, + [1424] = 1399, + [1425] = 1406, + [1426] = 1393, + [1427] = 1427, + [1428] = 1428, [1429] = 1429, [1430] = 1430, - [1431] = 160, - [1432] = 1418, - [1433] = 1429, - [1434] = 1430, - [1435] = 168, - [1436] = 1418, - [1437] = 362, - [1438] = 178, - [1439] = 190, - [1440] = 191, - [1441] = 192, - [1442] = 194, - [1443] = 1418, - [1444] = 1429, - [1445] = 187, - [1446] = 195, - [1447] = 150, - [1448] = 135, - [1449] = 185, - [1450] = 90, - [1451] = 161, - [1452] = 162, - [1453] = 362, - [1454] = 1430, - [1455] = 196, - [1456] = 1456, - [1457] = 197, - [1458] = 362, - [1459] = 362, - [1460] = 141, - [1461] = 142, - [1462] = 183, - [1463] = 145, - [1464] = 147, - [1465] = 148, - [1466] = 363, - [1467] = 149, - [1468] = 151, - [1469] = 153, - [1470] = 154, - [1471] = 158, - [1472] = 159, - [1473] = 163, - [1474] = 164, - [1475] = 199, - [1476] = 167, - [1477] = 362, - [1478] = 362, - [1479] = 171, - [1480] = 198, - [1481] = 172, - [1482] = 173, - [1483] = 188, - [1484] = 1429, - [1485] = 175, - [1486] = 363, - [1487] = 1429, - [1488] = 1430, - [1489] = 1430, - [1490] = 179, - [1491] = 180, - [1492] = 181, - [1493] = 184, - [1494] = 374, - [1495] = 175, - [1496] = 153, - [1497] = 179, - [1498] = 180, - [1499] = 181, - [1500] = 182, - [1501] = 183, - [1502] = 184, - [1503] = 185, - [1504] = 188, - [1505] = 189, - [1506] = 1506, + [1431] = 1431, + [1432] = 1427, + [1433] = 188, + [1434] = 1434, + [1435] = 111, + [1436] = 111, + [1437] = 1437, + [1438] = 171, + [1439] = 1439, + [1440] = 1440, + [1441] = 1429, + [1442] = 1442, + [1443] = 1443, + [1444] = 1434, + [1445] = 1445, + [1446] = 1428, + [1447] = 1447, + [1448] = 1428, + [1449] = 214, + [1450] = 1442, + [1451] = 394, + [1452] = 1445, + [1453] = 1439, + [1454] = 1437, + [1455] = 1455, + [1456] = 1434, + [1457] = 1430, + [1458] = 111, + [1459] = 1440, + [1460] = 1440, + [1461] = 1442, + [1462] = 1428, + [1463] = 111, + [1464] = 1442, + [1465] = 1465, + [1466] = 111, + [1467] = 1439, + [1468] = 1431, + [1469] = 1434, + [1470] = 1443, + [1471] = 1440, + [1472] = 1442, + [1473] = 1473, + [1474] = 392, + [1475] = 392, + [1476] = 392, + [1477] = 197, + [1478] = 392, + [1479] = 1479, + [1480] = 1479, + [1481] = 392, + [1482] = 166, + [1483] = 393, + [1484] = 1473, + [1485] = 200, + [1486] = 207, + [1487] = 217, + [1488] = 112, + [1489] = 113, + [1490] = 115, + [1491] = 117, + [1492] = 118, + [1493] = 1473, + [1494] = 1479, + [1495] = 1479, + [1496] = 1473, + [1497] = 392, + [1498] = 1479, + [1499] = 1473, + [1500] = 111, + [1501] = 392, + [1502] = 216, + [1503] = 182, + [1504] = 184, + [1505] = 185, + [1506] = 186, [1507] = 190, [1508] = 191, - [1509] = 192, - [1510] = 194, - [1511] = 195, + [1509] = 118, + [1510] = 1510, + [1511] = 394, [1512] = 196, - [1513] = 197, + [1513] = 394, [1514] = 198, - [1515] = 154, - [1516] = 187, - [1517] = 486, - [1518] = 374, - [1519] = 158, - [1520] = 486, - [1521] = 159, - [1522] = 146, - [1523] = 374, - [1524] = 100, - [1525] = 89, - [1526] = 90, - [1527] = 163, - [1528] = 164, - [1529] = 148, - [1530] = 173, - [1531] = 141, - [1532] = 1532, - [1533] = 199, - [1534] = 92, - [1535] = 374, - [1536] = 93, - [1537] = 91, - [1538] = 88, - [1539] = 146, - [1540] = 94, - [1541] = 374, - [1542] = 142, - [1543] = 92, - [1544] = 93, - [1545] = 91, - [1546] = 88, - [1547] = 94, - [1548] = 486, - [1549] = 167, - [1550] = 374, - [1551] = 151, - [1552] = 89, - [1553] = 143, - [1554] = 145, - [1555] = 149, - [1556] = 362, - [1557] = 169, - [1558] = 172, - [1559] = 147, - [1560] = 146, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1561, - [1567] = 1567, - [1568] = 174, - [1569] = 1569, - [1570] = 1561, - [1571] = 1561, - [1572] = 1561, - [1573] = 1561, - [1574] = 1574, + [1515] = 1515, + [1516] = 201, + [1517] = 202, + [1518] = 205, + [1519] = 206, + [1520] = 188, + [1521] = 210, + [1522] = 211, + [1523] = 213, + [1524] = 394, + [1525] = 394, + [1526] = 218, + [1527] = 112, + [1528] = 1528, + [1529] = 113, + [1530] = 220, + [1531] = 392, + [1532] = 108, + [1533] = 173, + [1534] = 224, + [1535] = 225, + [1536] = 1515, + [1537] = 228, + [1538] = 229, + [1539] = 230, + [1540] = 231, + [1541] = 188, + [1542] = 394, + [1543] = 233, + [1544] = 234, + [1545] = 235, + [1546] = 236, + [1547] = 237, + [1548] = 1515, + [1549] = 178, + [1550] = 188, + [1551] = 209, + [1552] = 193, + [1553] = 212, + [1554] = 219, + [1555] = 222, + [1556] = 175, + [1557] = 181, + [1558] = 188, + [1559] = 115, + [1560] = 569, + [1561] = 1515, + [1562] = 111, + [1563] = 112, + [1564] = 113, + [1565] = 171, + [1566] = 115, + [1567] = 117, + [1568] = 118, + [1569] = 394, + [1570] = 1515, + [1571] = 121, + [1572] = 171, + [1573] = 117, + [1574] = 232, [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 1578, - [1579] = 1577, - [1580] = 1580, - [1581] = 1562, - [1582] = 152, + [1578] = 112, + [1579] = 1579, + [1580] = 197, + [1581] = 1581, + [1582] = 1575, [1583] = 1583, [1584] = 1584, - [1585] = 363, - [1586] = 1586, - [1587] = 1561, + [1585] = 1585, + [1586] = 113, + [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1575, - [1591] = 1561, - [1592] = 1561, - [1593] = 1575, + [1590] = 393, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, [1594] = 1594, - [1595] = 1575, - [1596] = 1596, - [1597] = 1564, + [1595] = 1595, + [1596] = 1594, + [1597] = 1594, [1598] = 1598, - [1599] = 1569, - [1600] = 1600, + [1599] = 1599, + [1600] = 393, [1601] = 1601, - [1602] = 374, + [1602] = 1602, [1603] = 1603, - [1604] = 1604, - [1605] = 1580, - [1606] = 171, - [1607] = 92, - [1608] = 1561, - [1609] = 1609, + [1604] = 1579, + [1605] = 115, + [1606] = 1606, + [1607] = 1603, + [1608] = 1608, + [1609] = 117, [1610] = 1610, - [1611] = 93, - [1612] = 91, - [1613] = 1562, - [1614] = 1614, - [1615] = 88, - [1616] = 1561, + [1611] = 118, + [1612] = 1612, + [1613] = 1613, + [1614] = 166, + [1615] = 1606, + [1616] = 1594, [1617] = 1617, - [1618] = 1600, - [1619] = 1619, - [1620] = 168, - [1621] = 486, - [1622] = 1561, - [1623] = 1603, + [1618] = 1618, + [1619] = 1602, + [1620] = 1601, + [1621] = 1621, + [1622] = 1622, + [1623] = 1594, [1624] = 1624, - [1625] = 1625, + [1625] = 394, [1626] = 1626, - [1627] = 1594, - [1628] = 1628, - [1629] = 94, - [1630] = 1625, - [1631] = 89, - [1632] = 1574, - [1633] = 1577, - [1634] = 92, - [1635] = 1619, - [1636] = 93, - [1637] = 1567, - [1638] = 1638, - [1639] = 1639, - [1640] = 1563, - [1641] = 91, - [1642] = 1598, - [1643] = 1561, - [1644] = 88, - [1645] = 1561, + [1627] = 569, + [1628] = 1594, + [1629] = 1629, + [1630] = 217, + [1631] = 1631, + [1632] = 1612, + [1633] = 1633, + [1634] = 1594, + [1635] = 1633, + [1636] = 1584, + [1637] = 108, + [1638] = 1591, + [1639] = 393, + [1640] = 1575, + [1641] = 1613, + [1642] = 1594, + [1643] = 1595, + [1644] = 1644, + [1645] = 1645, [1646] = 1646, - [1647] = 1601, - [1648] = 1565, - [1649] = 1561, - [1650] = 1624, - [1651] = 1577, - [1652] = 94, - [1653] = 1653, - [1654] = 363, - [1655] = 363, - [1656] = 1577, - [1657] = 1586, - [1658] = 1609, + [1647] = 1577, + [1648] = 1594, + [1649] = 1649, + [1650] = 1622, + [1651] = 1594, + [1652] = 1621, + [1653] = 1594, + [1654] = 1594, + [1655] = 1594, + [1656] = 1631, + [1657] = 1588, + [1658] = 207, [1659] = 1659, - [1660] = 1617, - [1661] = 1661, - [1662] = 1626, - [1663] = 1562, - [1664] = 1664, - [1665] = 1577, - [1666] = 1577, - [1667] = 1667, - [1668] = 1561, - [1669] = 1577, - [1670] = 1561, - [1671] = 1578, - [1672] = 1639, - [1673] = 1583, - [1674] = 1653, - [1675] = 1675, - [1676] = 1676, - [1677] = 1638, - [1678] = 1678, - [1679] = 1588, - [1680] = 1575, - [1681] = 1681, - [1682] = 363, - [1683] = 1561, - [1684] = 1575, - [1685] = 89, - [1686] = 1610, + [1660] = 1644, + [1661] = 1644, + [1662] = 1662, + [1663] = 1663, + [1664] = 214, + [1665] = 1665, + [1666] = 1602, + [1667] = 1594, + [1668] = 1594, + [1669] = 1575, + [1670] = 1575, + [1671] = 1644, + [1672] = 1672, + [1673] = 1575, + [1674] = 1591, + [1675] = 1581, + [1676] = 112, + [1677] = 1575, + [1678] = 1587, + [1679] = 113, + [1680] = 115, + [1681] = 1618, + [1682] = 1575, + [1683] = 1645, + [1684] = 1593, + [1685] = 166, + [1686] = 1594, [1687] = 1575, - [1688] = 1676, - [1689] = 150, - [1690] = 1561, - [1691] = 1575, - [1692] = 1646, - [1693] = 1584, - [1694] = 1575, - [1695] = 1695, - [1696] = 1696, - [1697] = 1575, - [1698] = 1561, - [1699] = 1699, - [1700] = 1561, - [1701] = 1575, - [1702] = 1561, - [1703] = 1561, - [1704] = 1561, - [1705] = 1575, - [1706] = 1561, - [1707] = 1561, - [1708] = 1664, - [1709] = 1561, - [1710] = 1562, - [1711] = 1561, - [1712] = 1575, - [1713] = 1659, - [1714] = 1577, - [1715] = 1561, - [1716] = 1575, - [1717] = 160, - [1718] = 1718, - [1719] = 1719, - [1720] = 1720, - [1721] = 194, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, - [1725] = 148, - [1726] = 1726, - [1727] = 1727, - [1728] = 195, - [1729] = 1729, - [1730] = 1730, - [1731] = 198, - [1732] = 1732, - [1733] = 149, - [1734] = 1729, - [1735] = 1719, - [1736] = 1729, - [1737] = 363, + [1688] = 393, + [1689] = 117, + [1690] = 200, + [1691] = 1583, + [1692] = 207, + [1693] = 1575, + [1694] = 108, + [1695] = 1626, + [1696] = 1602, + [1697] = 118, + [1698] = 1698, + [1699] = 200, + [1700] = 217, + [1701] = 1624, + [1702] = 1592, + [1703] = 1703, + [1704] = 1594, + [1705] = 1602, + [1706] = 1576, + [1707] = 1594, + [1708] = 1602, + [1709] = 1594, + [1710] = 1594, + [1711] = 1602, + [1712] = 1608, + [1713] = 1594, + [1714] = 1602, + [1715] = 197, + [1716] = 1644, + [1717] = 1610, + [1718] = 1602, + [1719] = 1591, + [1720] = 1703, + [1721] = 1602, + [1722] = 1594, + [1723] = 1665, + [1724] = 1602, + [1725] = 1725, + [1726] = 1672, + [1727] = 1602, + [1728] = 1659, + [1729] = 1698, + [1730] = 1602, + [1731] = 1731, + [1732] = 1602, + [1733] = 1602, + [1734] = 1594, + [1735] = 1591, + [1736] = 1602, + [1737] = 1594, [1738] = 1738, - [1739] = 184, - [1740] = 1740, - [1741] = 1741, - [1742] = 1742, - [1743] = 1743, - [1744] = 1729, - [1745] = 1719, + [1739] = 1602, + [1740] = 1594, + [1741] = 1602, + [1742] = 1594, + [1743] = 1575, + [1744] = 229, + [1745] = 1745, [1746] = 1746, - [1747] = 1729, - [1748] = 486, - [1749] = 1749, - [1750] = 1729, - [1751] = 1732, + [1747] = 1747, + [1748] = 233, + [1749] = 569, + [1750] = 1750, + [1751] = 1751, [1752] = 1752, - [1753] = 1753, - [1754] = 1754, + [1753] = 1745, + [1754] = 1745, [1755] = 1755, - [1756] = 1756, - [1757] = 1743, + [1756] = 569, + [1757] = 181, [1758] = 1758, - [1759] = 92, - [1760] = 1719, - [1761] = 187, - [1762] = 185, + [1759] = 1759, + [1760] = 1760, + [1761] = 228, + [1762] = 1746, [1763] = 1763, - [1764] = 1719, - [1765] = 163, - [1766] = 1766, + [1764] = 1764, + [1765] = 1765, + [1766] = 1747, [1767] = 1767, - [1768] = 1768, - [1769] = 1732, - [1770] = 1770, - [1771] = 1771, - [1772] = 1729, - [1773] = 188, - [1774] = 1730, - [1775] = 1775, - [1776] = 91, - [1777] = 1724, - [1778] = 1719, - [1779] = 1775, - [1780] = 1780, - [1781] = 169, - [1782] = 1782, + [1768] = 234, + [1769] = 1769, + [1770] = 229, + [1771] = 184, + [1772] = 1772, + [1773] = 1747, + [1774] = 230, + [1775] = 220, + [1776] = 1776, + [1777] = 569, + [1778] = 1747, + [1779] = 1750, + [1780] = 1745, + [1781] = 1751, + [1782] = 1752, [1783] = 1783, - [1784] = 189, - [1785] = 1732, - [1786] = 1786, - [1787] = 1783, - [1788] = 153, - [1789] = 154, - [1790] = 93, - [1791] = 1791, - [1792] = 1792, - [1793] = 1742, - [1794] = 190, - [1795] = 1754, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1768, + [1784] = 1745, + [1785] = 1764, + [1786] = 1750, + [1787] = 1751, + [1788] = 1752, + [1789] = 1789, + [1790] = 1790, + [1791] = 1764, + [1792] = 211, + [1793] = 1758, + [1794] = 1794, + [1795] = 1759, + [1796] = 112, + [1797] = 1745, + [1798] = 1746, + [1799] = 1763, [1800] = 1800, - [1801] = 1796, - [1802] = 1802, - [1803] = 94, - [1804] = 1804, - [1805] = 1805, - [1806] = 172, - [1807] = 1807, + [1801] = 569, + [1802] = 216, + [1803] = 1758, + [1804] = 1764, + [1805] = 1759, + [1806] = 1806, + [1807] = 1747, [1808] = 1808, - [1809] = 1732, - [1810] = 1810, - [1811] = 1723, - [1812] = 1741, - [1813] = 1813, - [1814] = 1814, - [1815] = 173, - [1816] = 1727, - [1817] = 1738, - [1818] = 1818, - [1819] = 1771, - [1820] = 1786, - [1821] = 1797, - [1822] = 1740, - [1823] = 486, - [1824] = 1798, - [1825] = 1719, - [1826] = 1732, - [1827] = 91, - [1828] = 1770, - [1829] = 88, - [1830] = 1780, - [1831] = 1732, - [1832] = 1719, - [1833] = 1732, - [1834] = 175, - [1835] = 191, - [1836] = 1719, - [1837] = 192, - [1838] = 1758, - [1839] = 151, - [1840] = 1729, - [1841] = 1719, - [1842] = 1729, - [1843] = 1800, - [1844] = 1729, - [1845] = 1719, - [1846] = 486, - [1847] = 1756, - [1848] = 1743, - [1849] = 1758, - [1850] = 1766, - [1851] = 1768, - [1852] = 1770, - [1853] = 1719, - [1854] = 1732, - [1855] = 486, - [1856] = 142, - [1857] = 1732, - [1858] = 1755, - [1859] = 164, - [1860] = 1732, - [1861] = 158, - [1862] = 143, - [1863] = 1729, - [1864] = 1729, - [1865] = 1719, - [1866] = 1756, - [1867] = 1743, - [1868] = 1758, - [1869] = 1802, - [1870] = 1813, - [1871] = 1766, - [1872] = 1768, - [1873] = 1770, - [1874] = 1729, - [1875] = 1732, - [1876] = 179, - [1877] = 180, - [1878] = 486, - [1879] = 1732, - [1880] = 1729, - [1881] = 181, - [1882] = 1756, - [1883] = 1743, - [1884] = 1758, - [1885] = 1720, - [1886] = 1768, - [1887] = 1770, - [1888] = 199, - [1889] = 145, - [1890] = 1719, - [1891] = 1732, - [1892] = 94, - [1893] = 1729, - [1894] = 1894, - [1895] = 1719, - [1896] = 486, - [1897] = 1732, - [1898] = 1804, - [1899] = 486, - [1900] = 1900, - [1901] = 486, - [1902] = 141, - [1903] = 1732, - [1904] = 1729, - [1905] = 1720, - [1906] = 1906, - [1907] = 88, - [1908] = 1729, - [1909] = 1805, - [1910] = 1719, - [1911] = 182, - [1912] = 1729, - [1913] = 1732, - [1914] = 183, - [1915] = 1915, - [1916] = 1814, - [1917] = 1719, - [1918] = 1906, - [1919] = 1729, - [1920] = 1782, - [1921] = 196, - [1922] = 1729, - [1923] = 1807, - [1924] = 1729, - [1925] = 1766, - [1926] = 1732, - [1927] = 1729, - [1928] = 1766, - [1929] = 1720, - [1930] = 234, - [1931] = 1729, - [1932] = 1729, - [1933] = 159, - [1934] = 1766, - [1935] = 1720, - [1936] = 1729, - [1937] = 1808, - [1938] = 1729, - [1939] = 1766, - [1940] = 1724, + [1809] = 1809, + [1810] = 1764, + [1811] = 1811, + [1812] = 1750, + [1813] = 1751, + [1814] = 1752, + [1815] = 1764, + [1816] = 1746, + [1817] = 1758, + [1818] = 1759, + [1819] = 1746, + [1820] = 1763, + [1821] = 1747, + [1822] = 1822, + [1823] = 1763, + [1824] = 1824, + [1825] = 1747, + [1826] = 1826, + [1827] = 1827, + [1828] = 222, + [1829] = 1747, + [1830] = 173, + [1831] = 1745, + [1832] = 212, + [1833] = 569, + [1834] = 1834, + [1835] = 569, + [1836] = 1745, + [1837] = 231, + [1838] = 1838, + [1839] = 1839, + [1840] = 224, + [1841] = 1755, + [1842] = 1764, + [1843] = 1755, + [1844] = 1759, + [1845] = 1845, + [1846] = 1764, + [1847] = 1847, + [1848] = 1848, + [1849] = 1847, + [1850] = 237, + [1851] = 1851, + [1852] = 1745, + [1853] = 1853, + [1854] = 1759, + [1855] = 198, + [1856] = 1827, + [1857] = 1857, + [1858] = 1764, + [1859] = 1747, + [1860] = 1834, + [1861] = 1861, + [1862] = 1853, + [1863] = 1745, + [1864] = 178, + [1865] = 1865, + [1866] = 1747, + [1867] = 1750, + [1868] = 185, + [1869] = 1747, + [1870] = 232, + [1871] = 1871, + [1872] = 569, + [1873] = 1763, + [1874] = 1745, + [1875] = 196, + [1876] = 1745, + [1877] = 1764, + [1878] = 206, + [1879] = 1747, + [1880] = 213, + [1881] = 1800, + [1882] = 1751, + [1883] = 1764, + [1884] = 1745, + [1885] = 1764, + [1886] = 1886, + [1887] = 218, + [1888] = 1764, + [1889] = 113, + [1890] = 1747, + [1891] = 175, + [1892] = 1892, + [1893] = 1893, + [1894] = 1824, + [1895] = 1772, + [1896] = 1845, + [1897] = 1886, + [1898] = 569, + [1899] = 1899, + [1900] = 1871, + [1901] = 1901, + [1902] = 1839, + [1903] = 1806, + [1904] = 1759, + [1905] = 1838, + [1906] = 1826, + [1907] = 1745, + [1908] = 219, + [1909] = 182, + [1910] = 1745, + [1911] = 184, + [1912] = 185, + [1913] = 1764, + [1914] = 186, + [1915] = 1901, + [1916] = 1745, + [1917] = 1747, + [1918] = 1918, + [1919] = 190, + [1920] = 191, + [1921] = 1745, + [1922] = 1922, + [1923] = 1838, + [1924] = 1765, + [1925] = 1759, + [1926] = 1790, + [1927] = 1745, + [1928] = 115, + [1929] = 117, + [1930] = 1747, + [1931] = 196, + [1932] = 1899, + [1933] = 198, + [1934] = 1745, + [1935] = 1794, + [1936] = 1758, + [1937] = 1759, + [1938] = 210, + [1939] = 1809, + [1940] = 1940, [1941] = 1941, - [1942] = 1766, - [1943] = 1719, - [1944] = 1724, - [1945] = 1766, - [1946] = 197, - [1947] = 92, - [1948] = 1791, - [1949] = 1719, - [1950] = 1767, - [1951] = 147, - [1952] = 1952, - [1953] = 1732, - [1954] = 1729, - [1955] = 1720, - [1956] = 1720, - [1957] = 1720, - [1958] = 1719, - [1959] = 167, - [1960] = 1720, - [1961] = 1720, - [1962] = 1732, - [1963] = 1720, - [1964] = 1720, - [1965] = 1729, - [1966] = 93, - [1967] = 1756, - [1968] = 1719, - [1969] = 1720, - [1970] = 1818, - [1971] = 1753, - [1972] = 1720, - [1973] = 1729, - [1974] = 94, - [1975] = 1975, - [1976] = 486, - [1977] = 92, - [1978] = 88, - [1979] = 166, - [1980] = 91, - [1981] = 93, - [1982] = 1982, - [1983] = 174, - [1984] = 295, - [1985] = 136, - [1986] = 1986, - [1987] = 166, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, - [1992] = 1989, - [1993] = 1993, - [1994] = 1993, - [1995] = 1995, - [1996] = 1989, - [1997] = 1990, - [1998] = 1991, - [1999] = 1989, - [2000] = 1993, - [2001] = 1990, - [2002] = 1991, - [2003] = 1989, - [2004] = 1993, - [2005] = 1990, - [2006] = 1993, - [2007] = 1991, - [2008] = 1989, - [2009] = 1990, - [2010] = 1993, - [2011] = 1990, - [2012] = 1990, - [2013] = 2013, - [2014] = 174, - [2015] = 1989, - [2016] = 1993, - [2017] = 1990, - [2018] = 1990, - [2019] = 1993, - [2020] = 1990, - [2021] = 1991, - [2022] = 1989, - [2023] = 1993, - [2024] = 1991, - [2025] = 1991, - [2026] = 1993, - [2027] = 1990, - [2028] = 1990, - [2029] = 1991, - [2030] = 1989, - [2031] = 1993, - [2032] = 1993, - [2033] = 1991, - [2034] = 1990, - [2035] = 1991, - [2036] = 1989, - [2037] = 1989, - [2038] = 1993, - [2039] = 1990, - [2040] = 2040, - [2041] = 1991, - [2042] = 1993, - [2043] = 2013, - [2044] = 1995, - [2045] = 1990, - [2046] = 1991, - [2047] = 1989, - [2048] = 1993, - [2049] = 1989, - [2050] = 1990, - [2051] = 1991, - [2052] = 1989, - [2053] = 1991, - [2054] = 1991, - [2055] = 1990, - [2056] = 1989, - [2057] = 1990, - [2058] = 1991, - [2059] = 1989, - [2060] = 1993, - [2061] = 1990, - [2062] = 1989, - [2063] = 1991, - [2064] = 1993, - [2065] = 1990, - [2066] = 1991, - [2067] = 1989, - [2068] = 1991, - [2069] = 1993, - [2070] = 1989, - [2071] = 1990, - [2072] = 1991, - [2073] = 1989, - [2074] = 1993, - [2075] = 1990, - [2076] = 1990, - [2077] = 1991, - [2078] = 1991, - [2079] = 1989, - [2080] = 1991, - [2081] = 1989, - [2082] = 1993, - [2083] = 1990, - [2084] = 1991, - [2085] = 1993, - [2086] = 1989, - [2087] = 1993, - [2088] = 1990, - [2089] = 1993, - [2090] = 1991, - [2091] = 1989, - [2092] = 1989, - [2093] = 1993, - [2094] = 1989, - [2095] = 1990, - [2096] = 1991, - [2097] = 1989, - [2098] = 1993, - [2099] = 1990, - [2100] = 1993, - [2101] = 1991, - [2102] = 1989, - [2103] = 2040, - [2104] = 1991, - [2105] = 1993, - [2106] = 1990, - [2107] = 1991, - [2108] = 1989, - [2109] = 1993, - [2110] = 1990, - [2111] = 1991, - [2112] = 1989, - [2113] = 1993, - [2114] = 2114, - [2115] = 1990, - [2116] = 1993, - [2117] = 2117, - [2118] = 2118, - [2119] = 2119, - [2120] = 295, - [2121] = 166, - [2122] = 2122, - [2123] = 2123, - [2124] = 2124, - [2125] = 2125, - [2126] = 2126, - [2127] = 2119, - [2128] = 2128, - [2129] = 2124, - [2130] = 1988, - [2131] = 2131, - [2132] = 2117, - [2133] = 2126, - [2134] = 2134, - [2135] = 174, - [2136] = 2134, - [2137] = 2137, - [2138] = 2137, - [2139] = 2123, - [2140] = 2140, - [2141] = 2122, - [2142] = 2142, - [2143] = 2118, - [2144] = 2140, - [2145] = 2125, - [2146] = 2128, - [2147] = 2147, - [2148] = 2148, - [2149] = 2148, - [2150] = 136, - [2151] = 2148, - [2152] = 2148, - [2153] = 2148, - [2154] = 2154, - [2155] = 2154, - [2156] = 174, - [2157] = 2154, - [2158] = 2154, - [2159] = 2154, - [2160] = 2154, - [2161] = 2154, - [2162] = 2154, - [2163] = 2154, - [2164] = 2154, - [2165] = 2154, - [2166] = 2154, - [2167] = 2154, - [2168] = 2154, - [2169] = 1988, - [2170] = 2170, - [2171] = 2171, - [2172] = 136, - [2173] = 2173, - [2174] = 2174, - [2175] = 2175, - [2176] = 2175, - [2177] = 174, - [2178] = 1988, - [2179] = 174, - [2180] = 174, - [2181] = 166, - [2182] = 136, - [2183] = 174, - [2184] = 2184, - [2185] = 295, - [2186] = 2186, - [2187] = 1988, - [2188] = 174, - [2189] = 2184, - [2190] = 1988, - [2191] = 174, - [2192] = 174, - [2193] = 136, + [1942] = 235, + [1943] = 201, + [1944] = 202, + [1945] = 1752, + [1946] = 205, + [1947] = 206, + [1948] = 1755, + [1949] = 208, + [1950] = 210, + [1951] = 1808, + [1952] = 1811, + [1953] = 1764, + [1954] = 1759, + [1955] = 211, + [1956] = 1918, + [1957] = 1957, + [1958] = 1760, + [1959] = 1838, + [1960] = 213, + [1961] = 112, + [1962] = 1767, + [1963] = 216, + [1964] = 190, + [1965] = 1861, + [1966] = 1764, + [1967] = 218, + [1968] = 191, + [1969] = 1745, + [1970] = 220, + [1971] = 1747, + [1972] = 225, + [1973] = 173, + [1974] = 118, + [1975] = 205, + [1976] = 1976, + [1977] = 224, + [1978] = 1747, + [1979] = 1747, + [1980] = 209, + [1981] = 225, + [1982] = 238, + [1983] = 1983, + [1984] = 1776, + [1985] = 1838, + [1986] = 1838, + [1987] = 1838, + [1988] = 113, + [1989] = 227, + [1990] = 228, + [1991] = 181, + [1992] = 230, + [1993] = 231, + [1994] = 232, + [1995] = 115, + [1996] = 1745, + [1997] = 1940, + [1998] = 1755, + [1999] = 1838, + [2000] = 1892, + [2001] = 117, + [2002] = 393, + [2003] = 1764, + [2004] = 233, + [2005] = 1941, + [2006] = 1745, + [2007] = 193, + [2008] = 234, + [2009] = 1745, + [2010] = 235, + [2011] = 1838, + [2012] = 1838, + [2013] = 1838, + [2014] = 1838, + [2015] = 1957, + [2016] = 201, + [2017] = 1764, + [2018] = 236, + [2019] = 1745, + [2020] = 356, + [2021] = 1745, + [2022] = 237, + [2023] = 202, + [2024] = 1764, + [2025] = 1838, + [2026] = 1838, + [2027] = 1838, + [2028] = 118, + [2029] = 221, + [2030] = 186, + [2031] = 1838, + [2032] = 1893, + [2033] = 182, + [2034] = 178, + [2035] = 1745, + [2036] = 1838, + [2037] = 209, + [2038] = 193, + [2039] = 212, + [2040] = 219, + [2041] = 222, + [2042] = 236, + [2043] = 175, + [2044] = 1838, + [2045] = 2045, + [2046] = 1759, + [2047] = 2047, + [2048] = 117, + [2049] = 2049, + [2050] = 115, + [2051] = 112, + [2052] = 215, + [2053] = 113, + [2054] = 569, + [2055] = 118, + [2056] = 2056, + [2057] = 2057, + [2058] = 215, + [2059] = 367, + [2060] = 187, + [2061] = 214, + [2062] = 2062, + [2063] = 2063, + [2064] = 2064, + [2065] = 2062, + [2066] = 2066, + [2067] = 2064, + [2068] = 2063, + [2069] = 2064, + [2070] = 2066, + [2071] = 2071, + [2072] = 2062, + [2073] = 2063, + [2074] = 2064, + [2075] = 2066, + [2076] = 2062, + [2077] = 2063, + [2078] = 2064, + [2079] = 2079, + [2080] = 2066, + [2081] = 2062, + [2082] = 2063, + [2083] = 2064, + [2084] = 2066, + [2085] = 2062, + [2086] = 2063, + [2087] = 2064, + [2088] = 2066, + [2089] = 2062, + [2090] = 2063, + [2091] = 2064, + [2092] = 2066, + [2093] = 2062, + [2094] = 2063, + [2095] = 2064, + [2096] = 2066, + [2097] = 2062, + [2098] = 2063, + [2099] = 2064, + [2100] = 2066, + [2101] = 2062, + [2102] = 2063, + [2103] = 2064, + [2104] = 2066, + [2105] = 2062, + [2106] = 2063, + [2107] = 2064, + [2108] = 2066, + [2109] = 2062, + [2110] = 2063, + [2111] = 2064, + [2112] = 2066, + [2113] = 2062, + [2114] = 2063, + [2115] = 2064, + [2116] = 2066, + [2117] = 2062, + [2118] = 2063, + [2119] = 2064, + [2120] = 2066, + [2121] = 2062, + [2122] = 2063, + [2123] = 2064, + [2124] = 2066, + [2125] = 2062, + [2126] = 2066, + [2127] = 2064, + [2128] = 2066, + [2129] = 2062, + [2130] = 2063, + [2131] = 2064, + [2132] = 2066, + [2133] = 2062, + [2134] = 2063, + [2135] = 2064, + [2136] = 2066, + [2137] = 2062, + [2138] = 2063, + [2139] = 2064, + [2140] = 2066, + [2141] = 2062, + [2142] = 2063, + [2143] = 2064, + [2144] = 2066, + [2145] = 2062, + [2146] = 2063, + [2147] = 2064, + [2148] = 2066, + [2149] = 2062, + [2150] = 2063, + [2151] = 2064, + [2152] = 2066, + [2153] = 2062, + [2154] = 2063, + [2155] = 2064, + [2156] = 2066, + [2157] = 2062, + [2158] = 2063, + [2159] = 2064, + [2160] = 2066, + [2161] = 2062, + [2162] = 2063, + [2163] = 2064, + [2164] = 2066, + [2165] = 2062, + [2166] = 2063, + [2167] = 2064, + [2168] = 2066, + [2169] = 2062, + [2170] = 2063, + [2171] = 2064, + [2172] = 2066, + [2173] = 2062, + [2174] = 2062, + [2175] = 2063, + [2176] = 2063, + [2177] = 2066, + [2178] = 2178, + [2179] = 2064, + [2180] = 2180, + [2181] = 2066, + [2182] = 214, + [2183] = 2062, + [2184] = 2071, + [2185] = 2178, + [2186] = 2180, + [2187] = 2063, + [2188] = 2064, + [2189] = 2063, + [2190] = 2190, + [2191] = 2191, + [2192] = 2190, + [2193] = 2193, [2194] = 2194, - [2195] = 2195, - [2196] = 166, + [2195] = 2191, + [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 1988, - [2200] = 295, - [2201] = 2195, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, [2202] = 2202, - [2203] = 136, - [2204] = 2204, + [2203] = 2196, + [2204] = 2198, [2205] = 2205, - [2206] = 2205, - [2207] = 150, - [2208] = 374, - [2209] = 374, - [2210] = 374, - [2211] = 150, - [2212] = 374, - [2213] = 363, - [2214] = 363, - [2215] = 2215, - [2216] = 374, - [2217] = 2215, - [2218] = 2215, - [2219] = 2215, - [2220] = 2220, + [2206] = 2201, + [2207] = 2207, + [2208] = 2194, + [2209] = 2202, + [2210] = 2199, + [2211] = 2200, + [2212] = 2212, + [2213] = 2056, + [2214] = 367, + [2215] = 215, + [2216] = 2216, + [2217] = 214, + [2218] = 2205, + [2219] = 2207, + [2220] = 2193, [2221] = 2221, [2222] = 2221, - [2223] = 486, - [2224] = 374, - [2225] = 2225, - [2226] = 2215, - [2227] = 486, - [2228] = 2221, - [2229] = 2225, - [2230] = 2221, - [2231] = 1576, - [2232] = 174, - [2233] = 374, - [2234] = 2221, - [2235] = 2225, - [2236] = 2225, - [2237] = 1699, - [2238] = 2225, - [2239] = 486, - [2240] = 374, - [2241] = 2241, - [2242] = 486, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, - [2246] = 2246, - [2247] = 374, - [2248] = 2248, - [2249] = 374, - [2250] = 2250, - [2251] = 2251, - [2252] = 2252, - [2253] = 2251, - [2254] = 1675, - [2255] = 374, - [2256] = 2256, - [2257] = 2257, - [2258] = 2252, - [2259] = 2259, - [2260] = 2259, - [2261] = 1628, - [2262] = 363, + [2223] = 2221, + [2224] = 2221, + [2225] = 187, + [2226] = 2221, + [2227] = 2221, + [2228] = 2056, + [2229] = 214, + [2230] = 2230, + [2231] = 2231, + [2232] = 2232, + [2233] = 2233, + [2234] = 2231, + [2235] = 2235, + [2236] = 2231, + [2237] = 2231, + [2238] = 2231, + [2239] = 2231, + [2240] = 2231, + [2241] = 2231, + [2242] = 2231, + [2243] = 2231, + [2244] = 2231, + [2245] = 2231, + [2246] = 2231, + [2247] = 2231, + [2248] = 2231, + [2249] = 2231, + [2250] = 2231, + [2251] = 2231, + [2252] = 187, + [2253] = 2235, + [2254] = 2254, + [2255] = 214, + [2256] = 214, + [2257] = 214, + [2258] = 2056, + [2259] = 2056, + [2260] = 367, + [2261] = 214, + [2262] = 2262, [2263] = 2263, - [2264] = 2264, - [2265] = 374, - [2266] = 2264, - [2267] = 2244, - [2268] = 2268, - [2269] = 2256, - [2270] = 361, - [2271] = 2268, + [2264] = 2056, + [2265] = 187, + [2266] = 214, + [2267] = 215, + [2268] = 2262, + [2269] = 214, + [2270] = 187, + [2271] = 214, [2272] = 2272, - [2273] = 374, - [2274] = 573, - [2275] = 574, - [2276] = 578, - [2277] = 441, - [2278] = 573, - [2279] = 574, - [2280] = 441, - [2281] = 2272, + [2273] = 2273, + [2274] = 2273, + [2275] = 2056, + [2276] = 215, + [2277] = 367, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, + [2281] = 2281, [2282] = 2282, - [2283] = 2283, - [2284] = 2284, - [2285] = 2285, - [2286] = 374, - [2287] = 2250, - [2288] = 2284, - [2289] = 2263, - [2290] = 2283, - [2291] = 2291, - [2292] = 365, - [2293] = 368, - [2294] = 369, + [2283] = 2282, + [2284] = 187, + [2285] = 197, + [2286] = 394, + [2287] = 394, + [2288] = 394, + [2289] = 197, + [2290] = 394, + [2291] = 393, + [2292] = 393, + [2293] = 2293, + [2294] = 1662, [2295] = 2295, - [2296] = 2296, + [2296] = 394, [2297] = 2297, - [2298] = 2298, - [2299] = 2299, - [2300] = 2299, - [2301] = 2301, - [2302] = 374, - [2303] = 2296, - [2304] = 2304, - [2305] = 361, - [2306] = 2298, - [2307] = 2296, - [2308] = 486, - [2309] = 2309, - [2310] = 2310, - [2311] = 2311, - [2312] = 150, + [2298] = 2295, + [2299] = 2295, + [2300] = 569, + [2301] = 2295, + [2302] = 569, + [2303] = 2293, + [2304] = 1731, + [2305] = 2293, + [2306] = 2293, + [2307] = 569, + [2308] = 2295, + [2309] = 2293, + [2310] = 214, + [2311] = 394, + [2312] = 2312, [2313] = 2313, - [2314] = 2314, - [2315] = 2310, - [2316] = 2296, - [2317] = 2298, - [2318] = 2310, - [2319] = 2319, - [2320] = 2297, - [2321] = 1752, - [2322] = 2322, - [2323] = 2310, - [2324] = 2322, + [2314] = 569, + [2315] = 2315, + [2316] = 2316, + [2317] = 2315, + [2318] = 2318, + [2319] = 2316, + [2320] = 2320, + [2321] = 1589, + [2322] = 1598, + [2323] = 2323, + [2324] = 2324, [2325] = 2325, - [2326] = 2310, - [2327] = 573, - [2328] = 574, - [2329] = 578, - [2330] = 441, - [2331] = 573, - [2332] = 574, - [2333] = 441, - [2334] = 2297, - [2335] = 2319, - [2336] = 2301, - [2337] = 2313, - [2338] = 2314, - [2339] = 2297, - [2340] = 2340, - [2341] = 2296, - [2342] = 486, - [2343] = 2298, - [2344] = 162, + [2326] = 2326, + [2327] = 394, + [2328] = 394, + [2329] = 2329, + [2330] = 2330, + [2331] = 2330, + [2332] = 2332, + [2333] = 2332, + [2334] = 394, + [2335] = 2335, + [2336] = 2336, + [2337] = 2332, + [2338] = 2338, + [2339] = 2336, + [2340] = 2338, + [2341] = 2332, + [2342] = 2320, + [2343] = 2332, + [2344] = 2344, [2345] = 2345, - [2346] = 2345, - [2347] = 374, - [2348] = 486, - [2349] = 2295, - [2350] = 2297, - [2351] = 2311, - [2352] = 2298, - [2353] = 2304, - [2354] = 2354, - [2355] = 1695, - [2356] = 2356, - [2357] = 2357, - [2358] = 1395, - [2359] = 2359, - [2360] = 2360, - [2361] = 1675, - [2362] = 2356, - [2363] = 1628, - [2364] = 2364, - [2365] = 2354, + [2346] = 2324, + [2347] = 2347, + [2348] = 394, + [2349] = 2332, + [2350] = 390, + [2351] = 2351, + [2352] = 2332, + [2353] = 2332, + [2354] = 2332, + [2355] = 2325, + [2356] = 2332, + [2357] = 2332, + [2358] = 2332, + [2359] = 2332, + [2360] = 2332, + [2361] = 2347, + [2362] = 2332, + [2363] = 2332, + [2364] = 394, + [2365] = 2318, [2366] = 2366, - [2367] = 1395, - [2368] = 2368, - [2369] = 1749, - [2370] = 295, - [2371] = 2371, - [2372] = 2371, - [2373] = 2373, - [2374] = 2374, - [2375] = 2354, - [2376] = 365, - [2377] = 2354, - [2378] = 1810, - [2379] = 2379, + [2367] = 394, + [2368] = 2332, + [2369] = 238, + [2370] = 595, + [2371] = 596, + [2372] = 597, + [2373] = 598, + [2374] = 595, + [2375] = 596, + [2376] = 598, + [2377] = 2366, + [2378] = 2335, + [2379] = 2332, [2380] = 2380, - [2381] = 2359, - [2382] = 1395, - [2383] = 2383, - [2384] = 2371, - [2385] = 1395, - [2386] = 1675, - [2387] = 2387, + [2381] = 2381, + [2382] = 2382, + [2383] = 2380, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 2382, [2388] = 2388, - [2389] = 1696, - [2390] = 2387, + [2389] = 2382, + [2390] = 2390, [2391] = 2391, - [2392] = 2392, - [2393] = 1718, - [2394] = 2379, - [2395] = 363, - [2396] = 2387, - [2397] = 369, - [2398] = 2398, - [2399] = 1628, - [2400] = 2356, - [2401] = 2387, - [2402] = 2402, - [2403] = 2371, - [2404] = 1722, + [2392] = 2384, + [2393] = 2393, + [2394] = 2394, + [2395] = 2395, + [2396] = 2390, + [2397] = 2397, + [2398] = 2384, + [2399] = 2399, + [2400] = 2400, + [2401] = 2399, + [2402] = 2399, + [2403] = 569, + [2404] = 2390, [2405] = 2405, [2406] = 2406, - [2407] = 1395, - [2408] = 363, - [2409] = 2356, - [2410] = 2354, - [2411] = 2411, - [2412] = 2388, - [2413] = 2356, - [2414] = 2387, - [2415] = 363, - [2416] = 2411, - [2417] = 2402, - [2418] = 2418, - [2419] = 1681, - [2420] = 2420, - [2421] = 2373, - [2422] = 2383, - [2423] = 2371, - [2424] = 2424, - [2425] = 486, - [2426] = 2391, - [2427] = 368, + [2407] = 2406, + [2408] = 2399, + [2409] = 2405, + [2410] = 2405, + [2411] = 400, + [2412] = 2412, + [2413] = 413, + [2414] = 410, + [2415] = 2399, + [2416] = 2380, + [2417] = 2384, + [2418] = 2412, + [2419] = 2382, + [2420] = 390, + [2421] = 2381, + [2422] = 2380, + [2423] = 2384, + [2424] = 394, + [2425] = 2380, + [2426] = 2382, + [2427] = 2382, [2428] = 2428, - [2429] = 2429, - [2430] = 2430, + [2429] = 2397, + [2430] = 2385, [2431] = 2431, - [2432] = 2432, - [2433] = 486, - [2434] = 2434, - [2435] = 2435, - [2436] = 2436, - [2437] = 2431, - [2438] = 2438, - [2439] = 2432, - [2440] = 2434, - [2441] = 2441, - [2442] = 2442, - [2443] = 2435, - [2444] = 2436, - [2445] = 2432, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2441, - [2450] = 2450, - [2451] = 2451, + [2432] = 2394, + [2433] = 2393, + [2434] = 197, + [2435] = 2428, + [2436] = 2390, + [2437] = 595, + [2438] = 596, + [2439] = 597, + [2440] = 598, + [2441] = 595, + [2442] = 596, + [2443] = 598, + [2444] = 2405, + [2445] = 2405, + [2446] = 1769, + [2447] = 2388, + [2448] = 394, + [2449] = 2405, + [2450] = 2400, + [2451] = 2390, [2452] = 2452, - [2453] = 2431, + [2453] = 1430, [2454] = 2454, [2455] = 2455, - [2456] = 2438, + [2456] = 1598, [2457] = 2457, [2458] = 2458, [2459] = 2459, [2460] = 2460, - [2461] = 2436, - [2462] = 2434, - [2463] = 2441, - [2464] = 2464, + [2461] = 2461, + [2462] = 2462, + [2463] = 400, + [2464] = 1430, [2465] = 2465, - [2466] = 2466, - [2467] = 2467, + [2466] = 2452, + [2467] = 413, [2468] = 2468, [2469] = 2469, - [2470] = 2470, - [2471] = 2432, - [2472] = 2452, + [2470] = 410, + [2471] = 2471, + [2472] = 2460, [2473] = 2473, - [2474] = 2474, - [2475] = 1752, + [2474] = 367, + [2475] = 2454, [2476] = 2476, [2477] = 2477, [2478] = 2478, - [2479] = 2428, + [2479] = 2479, [2480] = 2480, - [2481] = 2481, - [2482] = 2429, - [2483] = 2483, - [2484] = 486, - [2485] = 2442, - [2486] = 2460, - [2487] = 2465, - [2488] = 2473, - [2489] = 2474, - [2490] = 2490, - [2491] = 2491, + [2481] = 2469, + [2482] = 569, + [2483] = 1430, + [2484] = 1589, + [2485] = 2468, + [2486] = 1598, + [2487] = 1646, + [2488] = 393, + [2489] = 2489, + [2490] = 2469, + [2491] = 1589, [2492] = 2492, - [2493] = 2493, - [2494] = 2458, - [2495] = 2495, - [2496] = 2496, - [2497] = 1699, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2470, - [2503] = 2503, - [2504] = 2504, + [2493] = 2469, + [2494] = 2457, + [2495] = 2468, + [2496] = 1430, + [2497] = 1851, + [2498] = 1585, + [2499] = 1599, + [2500] = 1783, + [2501] = 2471, + [2502] = 2477, + [2503] = 2457, + [2504] = 2457, [2505] = 2505, - [2506] = 2506, - [2507] = 1576, - [2508] = 2447, - [2509] = 2450, - [2510] = 2451, - [2511] = 2457, - [2512] = 2512, - [2513] = 2513, - [2514] = 2476, - [2515] = 2477, - [2516] = 2483, - [2517] = 2491, - [2518] = 2518, - [2519] = 2513, - [2520] = 2518, - [2521] = 2521, - [2522] = 2521, + [2506] = 2458, + [2507] = 2460, + [2508] = 2508, + [2509] = 2457, + [2510] = 2510, + [2511] = 2468, + [2512] = 1430, + [2513] = 393, + [2514] = 1430, + [2515] = 2515, + [2516] = 2460, + [2517] = 2480, + [2518] = 393, + [2519] = 1663, + [2520] = 2469, + [2521] = 1865, + [2522] = 2522, [2523] = 2523, - [2524] = 234, - [2525] = 2455, - [2526] = 2526, - [2527] = 2527, - [2528] = 2528, + [2524] = 2524, + [2525] = 2460, + [2526] = 2459, + [2527] = 2462, + [2528] = 2468, [2529] = 2529, [2530] = 2530, [2531] = 2531, [2532] = 2532, [2533] = 2533, - [2534] = 2534, + [2534] = 1769, [2535] = 2535, [2536] = 2536, - [2537] = 363, - [2538] = 486, + [2537] = 2537, + [2538] = 2538, [2539] = 2539, - [2540] = 2441, + [2540] = 2540, [2541] = 2541, [2542] = 2542, - [2543] = 2543, - [2544] = 1752, - [2545] = 2506, - [2546] = 2446, - [2547] = 486, - [2548] = 2523, - [2549] = 2549, - [2550] = 2498, - [2551] = 2512, + [2543] = 2530, + [2544] = 2544, + [2545] = 2541, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2536, + [2550] = 2550, + [2551] = 2551, [2552] = 2552, - [2553] = 2291, - [2554] = 2492, - [2555] = 2493, - [2556] = 2531, - [2557] = 486, - [2558] = 2495, - [2559] = 2526, - [2560] = 2527, - [2561] = 2528, - [2562] = 486, - [2563] = 2529, - [2564] = 2459, - [2565] = 486, + [2553] = 2553, + [2554] = 2531, + [2555] = 2555, + [2556] = 2556, + [2557] = 2557, + [2558] = 2552, + [2559] = 2559, + [2560] = 2560, + [2561] = 2561, + [2562] = 2562, + [2563] = 2563, + [2564] = 2564, + [2565] = 2565, [2566] = 2566, - [2567] = 2466, - [2568] = 2478, - [2569] = 361, - [2570] = 2496, - [2571] = 2532, - [2572] = 2533, - [2573] = 2467, - [2574] = 2534, - [2575] = 2468, - [2576] = 2535, - [2577] = 2435, - [2578] = 2436, - [2579] = 2431, - [2580] = 2455, - [2581] = 363, - [2582] = 2438, + [2567] = 2567, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2542, + [2574] = 2544, + [2575] = 2547, + [2576] = 2576, + [2577] = 2577, + [2578] = 2578, + [2579] = 2579, + [2580] = 2580, + [2581] = 2551, + [2582] = 2582, [2583] = 2583, - [2584] = 2434, - [2585] = 2469, - [2586] = 2441, - [2587] = 2587, - [2588] = 2432, - [2589] = 2452, - [2590] = 2448, - [2591] = 486, - [2592] = 2442, - [2593] = 2499, - [2594] = 2490, - [2595] = 2500, - [2596] = 2455, - [2597] = 2455, - [2598] = 2455, - [2599] = 2501, + [2584] = 2584, + [2585] = 2585, + [2586] = 2556, + [2587] = 569, + [2588] = 2588, + [2589] = 2550, + [2590] = 2590, + [2591] = 2591, + [2592] = 2546, + [2593] = 2593, + [2594] = 2557, + [2595] = 2595, + [2596] = 393, + [2597] = 390, + [2598] = 2598, + [2599] = 2599, [2600] = 2600, [2601] = 2601, - [2602] = 2435, - [2603] = 2539, - [2604] = 2604, - [2605] = 2480, - [2606] = 2503, - [2607] = 2455, - [2608] = 2455, - [2609] = 2504, - [2610] = 2505, - [2611] = 2481, + [2602] = 2602, + [2603] = 2603, + [2604] = 2593, + [2605] = 2605, + [2606] = 2533, + [2607] = 2530, + [2608] = 2576, + [2609] = 2609, + [2610] = 2610, + [2611] = 2531, [2612] = 2612, - [2613] = 578, - [2614] = 2435, - [2615] = 2436, - [2616] = 2541, - [2617] = 2455, - [2618] = 2455, - [2619] = 2542, - [2620] = 2431, - [2621] = 2543, - [2622] = 2455, - [2623] = 2455, - [2624] = 2583, - [2625] = 573, - [2626] = 574, - [2627] = 441, - [2628] = 2455, - [2629] = 2438, - [2630] = 2438, - [2631] = 2434, - [2632] = 2455, - [2633] = 2612, - [2634] = 2634, + [2613] = 2613, + [2614] = 2561, + [2615] = 2615, + [2616] = 1769, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2620, + [2621] = 2621, + [2622] = 2622, + [2623] = 2567, + [2624] = 569, + [2625] = 2625, + [2626] = 2618, + [2627] = 2533, + [2628] = 2599, + [2629] = 2602, + [2630] = 2625, + [2631] = 2568, + [2632] = 2632, + [2633] = 2633, + [2634] = 2550, [2635] = 2635, - [2636] = 2634, + [2636] = 2636, [2637] = 2637, [2638] = 2638, [2639] = 2639, - [2640] = 2640, + [2640] = 2559, [2641] = 2641, - [2642] = 1718, + [2642] = 2642, [2643] = 2643, - [2644] = 2644, + [2644] = 569, [2645] = 2645, - [2646] = 2646, + [2646] = 2618, [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2646, - [2651] = 574, - [2652] = 2652, - [2653] = 2635, - [2654] = 2639, - [2655] = 2643, + [2648] = 2637, + [2649] = 2645, + [2650] = 2650, + [2651] = 2651, + [2652] = 1731, + [2653] = 2550, + [2654] = 2610, + [2655] = 2655, [2656] = 2656, - [2657] = 2649, - [2658] = 2658, - [2659] = 1695, - [2660] = 1696, - [2661] = 2645, - [2662] = 2662, + [2657] = 2584, + [2658] = 393, + [2659] = 2659, + [2660] = 2660, + [2661] = 2661, + [2662] = 1662, [2663] = 2663, - [2664] = 369, - [2665] = 441, - [2666] = 2666, - [2667] = 2635, + [2664] = 2577, + [2665] = 2665, + [2666] = 569, + [2667] = 2584, [2668] = 2668, - [2669] = 2637, - [2670] = 2670, - [2671] = 1681, - [2672] = 1722, - [2673] = 2638, - [2674] = 2674, - [2675] = 1749, + [2669] = 2550, + [2670] = 2585, + [2671] = 2582, + [2672] = 2584, + [2673] = 2673, + [2674] = 2585, + [2675] = 569, [2676] = 2676, - [2677] = 1810, - [2678] = 2678, - [2679] = 2679, - [2680] = 2680, - [2681] = 2666, - [2682] = 2635, - [2683] = 2640, - [2684] = 2641, - [2685] = 2678, - [2686] = 2640, + [2677] = 2595, + [2678] = 2580, + [2679] = 2617, + [2680] = 2599, + [2681] = 2620, + [2682] = 2391, + [2683] = 2583, + [2684] = 2593, + [2685] = 2685, + [2686] = 569, [2687] = 2687, - [2688] = 2645, - [2689] = 2646, - [2690] = 2690, + [2688] = 2530, + [2689] = 569, + [2690] = 2599, [2691] = 2691, - [2692] = 2663, - [2693] = 2693, - [2694] = 2644, - [2695] = 2695, + [2692] = 2591, + [2693] = 2600, + [2694] = 2531, + [2695] = 2593, [2696] = 2696, - [2697] = 2662, - [2698] = 2656, - [2699] = 2658, - [2700] = 2693, + [2697] = 2618, + [2698] = 2698, + [2699] = 2563, + [2700] = 2687, [2701] = 2701, - [2702] = 2648, - [2703] = 2646, - [2704] = 2704, - [2705] = 2705, - [2706] = 2644, - [2707] = 2640, + [2702] = 2530, + [2703] = 2703, + [2704] = 2531, + [2705] = 2618, + [2706] = 2706, + [2707] = 2651, [2708] = 2708, - [2709] = 2656, + [2709] = 2618, [2710] = 2710, - [2711] = 2658, - [2712] = 2658, - [2713] = 2687, - [2714] = 2714, - [2715] = 2680, - [2716] = 2716, - [2717] = 2717, - [2718] = 2718, - [2719] = 2695, - [2720] = 1722, - [2721] = 2646, - [2722] = 2722, - [2723] = 2644, - [2724] = 2696, - [2725] = 1749, - [2726] = 1810, - [2727] = 2656, - [2728] = 2658, + [2711] = 2711, + [2712] = 2712, + [2713] = 2539, + [2714] = 356, + [2715] = 2533, + [2716] = 2618, + [2717] = 2533, + [2718] = 2633, + [2719] = 2625, + [2720] = 2615, + [2721] = 2635, + [2722] = 2618, + [2723] = 2636, + [2724] = 2724, + [2725] = 2725, + [2726] = 2726, + [2727] = 2673, + [2728] = 2618, [2729] = 2729, - [2730] = 2730, - [2731] = 2674, - [2732] = 2641, - [2733] = 2646, - [2734] = 2645, - [2735] = 2646, - [2736] = 2656, - [2737] = 2646, - [2738] = 2646, - [2739] = 2663, - [2740] = 2646, - [2741] = 2646, - [2742] = 2646, - [2743] = 2646, - [2744] = 2646, - [2745] = 2646, - [2746] = 2646, - [2747] = 2646, - [2748] = 2646, - [2749] = 2646, - [2750] = 2646, - [2751] = 2646, - [2752] = 2646, - [2753] = 2646, - [2754] = 2646, - [2755] = 2646, - [2756] = 2646, - [2757] = 2646, - [2758] = 2646, - [2759] = 2759, + [2730] = 2642, + [2731] = 2572, + [2732] = 2621, + [2733] = 2647, + [2734] = 2618, + [2735] = 2735, + [2736] = 2529, + [2737] = 2559, + [2738] = 2585, + [2739] = 2564, + [2740] = 2569, + [2741] = 2571, + [2742] = 2618, + [2743] = 2599, + [2744] = 2578, + [2745] = 2579, + [2746] = 2550, + [2747] = 569, + [2748] = 2565, + [2749] = 2735, + [2750] = 2566, + [2751] = 2710, + [2752] = 2752, + [2753] = 2599, + [2754] = 2656, + [2755] = 2665, + [2756] = 2548, + [2757] = 2599, + [2758] = 2599, + [2759] = 2599, [2760] = 2760, - [2761] = 2761, - [2762] = 2646, - [2763] = 365, - [2764] = 2679, - [2765] = 2765, + [2761] = 2752, + [2762] = 2550, + [2763] = 2760, + [2764] = 2764, + [2765] = 2532, [2766] = 2766, - [2767] = 368, - [2768] = 2768, - [2769] = 2690, - [2770] = 2676, - [2771] = 2771, - [2772] = 2772, - [2773] = 2773, - [2774] = 2662, - [2775] = 2775, - [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, - [2780] = 2780, - [2781] = 2781, - [2782] = 2646, - [2783] = 2679, - [2784] = 2765, - [2785] = 2674, - [2786] = 2676, - [2787] = 2634, - [2788] = 2788, - [2789] = 2635, - [2790] = 2790, - [2791] = 2718, - [2792] = 2729, - [2793] = 2662, - [2794] = 2794, - [2795] = 2640, - [2796] = 2777, - [2797] = 2641, - [2798] = 2645, - [2799] = 2663, - [2800] = 2761, + [2767] = 2550, + [2768] = 2538, + [2769] = 2550, + [2770] = 2764, + [2771] = 2590, + [2772] = 2598, + [2773] = 2601, + [2774] = 2599, + [2775] = 2603, + [2776] = 2550, + [2777] = 2535, + [2778] = 2599, + [2779] = 2609, + [2780] = 2711, + [2781] = 2599, + [2782] = 2599, + [2783] = 2599, + [2784] = 2612, + [2785] = 2613, + [2786] = 2550, + [2787] = 2584, + [2788] = 2585, + [2789] = 2708, + [2790] = 2550, + [2791] = 2632, + [2792] = 2550, + [2793] = 2638, + [2794] = 597, + [2795] = 2712, + [2796] = 2766, + [2797] = 2599, + [2798] = 2599, + [2799] = 2599, + [2800] = 2639, [2801] = 2641, - [2802] = 578, - [2803] = 2648, - [2804] = 2662, - [2805] = 162, - [2806] = 2679, - [2807] = 2634, - [2808] = 2641, - [2809] = 2679, - [2810] = 2634, - [2811] = 2641, - [2812] = 2679, - [2813] = 2634, - [2814] = 2641, - [2815] = 2815, - [2816] = 2670, - [2817] = 2701, - [2818] = 2818, - [2819] = 2674, - [2820] = 2644, - [2821] = 2679, + [2802] = 2650, + [2803] = 2550, + [2804] = 2729, + [2805] = 2550, + [2806] = 2540, + [2807] = 2659, + [2808] = 2550, + [2809] = 2660, + [2810] = 2661, + [2811] = 2537, + [2812] = 2663, + [2813] = 2701, + [2814] = 2668, + [2815] = 2530, + [2816] = 2599, + [2817] = 2550, + [2818] = 595, + [2819] = 596, + [2820] = 598, + [2821] = 2821, [2822] = 2676, - [2823] = 2634, - [2824] = 2641, - [2825] = 2679, - [2826] = 2634, - [2827] = 2641, - [2828] = 2828, - [2829] = 2634, + [2823] = 2593, + [2824] = 2550, + [2825] = 2685, + [2826] = 2691, + [2827] = 2698, + [2828] = 2726, + [2829] = 2553, [2830] = 2830, - [2831] = 2679, - [2832] = 2832, - [2833] = 2634, - [2834] = 2641, - [2835] = 2679, - [2836] = 2634, - [2837] = 2641, - [2838] = 2668, - [2839] = 2679, - [2840] = 2679, - [2841] = 2634, - [2842] = 573, - [2843] = 2843, - [2844] = 2679, - [2845] = 2634, - [2846] = 2641, - [2847] = 2768, + [2831] = 2831, + [2832] = 2831, + [2833] = 2831, + [2834] = 2831, + [2835] = 2831, + [2836] = 2831, + [2837] = 2831, + [2838] = 2831, + [2839] = 2831, + [2840] = 2831, + [2841] = 2831, + [2842] = 2831, + [2843] = 2831, + [2844] = 2831, + [2845] = 2831, + [2846] = 2846, + [2847] = 2847, [2848] = 2848, - [2849] = 2849, - [2850] = 2679, - [2851] = 2634, - [2852] = 2641, - [2853] = 2674, + [2849] = 1599, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, + [2853] = 2853, [2854] = 2854, - [2855] = 2676, - [2856] = 2663, - [2857] = 2857, - [2858] = 2858, + [2855] = 2855, + [2856] = 2856, + [2857] = 1851, + [2858] = 238, [2859] = 2859, - [2860] = 2860, + [2860] = 2831, [2861] = 2861, [2862] = 2862, - [2863] = 2860, - [2864] = 2864, + [2863] = 2861, + [2864] = 2847, [2865] = 2865, [2866] = 2866, [2867] = 2867, [2868] = 2868, [2869] = 2869, - [2870] = 2864, - [2871] = 2865, + [2870] = 2870, + [2871] = 2869, [2872] = 2872, - [2873] = 2873, - [2874] = 2864, - [2875] = 2865, + [2873] = 2848, + [2874] = 2847, + [2875] = 2850, [2876] = 2876, - [2877] = 2864, - [2878] = 2865, - [2879] = 2879, - [2880] = 2880, - [2881] = 2864, - [2882] = 2865, - [2883] = 2883, - [2884] = 2864, - [2885] = 2885, - [2886] = 2864, + [2877] = 2877, + [2878] = 2830, + [2879] = 2862, + [2880] = 2869, + [2881] = 2870, + [2882] = 2882, + [2883] = 2851, + [2884] = 2884, + [2885] = 2846, + [2886] = 2882, [2887] = 2887, - [2888] = 2864, + [2888] = 2866, [2889] = 2889, - [2890] = 2864, + [2890] = 2866, [2891] = 2891, - [2892] = 2864, - [2893] = 2893, - [2894] = 2864, - [2895] = 2895, - [2896] = 2864, - [2897] = 2880, - [2898] = 2864, - [2899] = 2864, - [2900] = 2864, - [2901] = 2901, - [2902] = 2864, - [2903] = 2887, - [2904] = 2864, - [2905] = 2905, - [2906] = 2864, + [2892] = 2866, + [2893] = 2850, + [2894] = 2894, + [2895] = 2866, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, + [2899] = 596, + [2900] = 2900, + [2901] = 2859, + [2902] = 2866, + [2903] = 2903, + [2904] = 2859, + [2905] = 2887, + [2906] = 2906, [2907] = 2907, - [2908] = 2864, - [2909] = 2865, - [2910] = 2864, + [2908] = 2856, + [2909] = 2909, + [2910] = 2831, [2911] = 2911, - [2912] = 2864, - [2913] = 2913, - [2914] = 2864, - [2915] = 2915, - [2916] = 2864, - [2917] = 2917, - [2918] = 2864, - [2919] = 2864, - [2920] = 2864, - [2921] = 2865, - [2922] = 2922, - [2923] = 2923, - [2924] = 2864, - [2925] = 2922, - [2926] = 2926, - [2927] = 2927, + [2912] = 2866, + [2913] = 2846, + [2914] = 2866, + [2915] = 2830, + [2916] = 2894, + [2917] = 2909, + [2918] = 2830, + [2919] = 400, + [2920] = 2920, + [2921] = 2882, + [2922] = 2866, + [2923] = 2866, + [2924] = 2848, + [2925] = 2882, + [2926] = 2856, + [2927] = 2831, [2928] = 2928, - [2929] = 2929, + [2929] = 2866, [2930] = 2930, - [2931] = 2931, - [2932] = 2932, - [2933] = 2717, - [2934] = 2873, - [2935] = 2866, - [2936] = 2867, - [2937] = 2865, - [2938] = 2938, - [2939] = 2939, - [2940] = 2915, - [2941] = 2859, - [2942] = 2942, - [2943] = 2943, - [2944] = 2944, - [2945] = 2945, + [2931] = 2866, + [2932] = 2866, + [2933] = 2933, + [2934] = 2856, + [2935] = 2935, + [2936] = 2856, + [2937] = 2856, + [2938] = 2856, + [2939] = 2856, + [2940] = 2856, + [2941] = 2856, + [2942] = 2856, + [2943] = 2856, + [2944] = 2856, + [2945] = 2856, [2946] = 2946, - [2947] = 2947, - [2948] = 2923, - [2949] = 2949, - [2950] = 2950, - [2951] = 2928, - [2952] = 2952, - [2953] = 2953, - [2954] = 2913, - [2955] = 2955, - [2956] = 2956, - [2957] = 2895, - [2958] = 2931, - [2959] = 2942, - [2960] = 2960, - [2961] = 2961, - [2962] = 2962, + [2947] = 2898, + [2948] = 2866, + [2949] = 2896, + [2950] = 2898, + [2951] = 2951, + [2952] = 2882, + [2953] = 597, + [2954] = 2896, + [2955] = 2898, + [2956] = 2859, + [2957] = 2957, + [2958] = 2907, + [2959] = 2959, + [2960] = 1585, + [2961] = 1663, + [2962] = 2847, [2963] = 2963, - [2964] = 2864, - [2965] = 2931, - [2966] = 2865, - [2967] = 2922, - [2968] = 2927, - [2969] = 2922, - [2970] = 2922, - [2971] = 2865, + [2964] = 2846, + [2965] = 2862, + [2966] = 2869, + [2967] = 2882, + [2968] = 2968, + [2969] = 2853, + [2970] = 2970, + [2971] = 2971, [2972] = 2972, - [2973] = 2865, - [2974] = 2922, - [2975] = 2865, - [2976] = 2922, - [2977] = 2922, + [2973] = 2973, + [2974] = 2866, + [2975] = 2848, + [2976] = 2976, + [2977] = 598, [2978] = 2978, - [2979] = 2979, - [2980] = 2866, - [2981] = 2907, - [2982] = 2952, - [2983] = 2876, - [2984] = 2938, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 2985, - [2989] = 2895, + [2979] = 2963, + [2980] = 2865, + [2981] = 1865, + [2982] = 2831, + [2983] = 2887, + [2984] = 2856, + [2985] = 2869, + [2986] = 2866, + [2987] = 410, + [2988] = 2882, + [2989] = 2850, [2990] = 2990, - [2991] = 2942, - [2992] = 2928, - [2993] = 2922, - [2994] = 2922, - [2995] = 2862, - [2996] = 2866, - [2997] = 2985, - [2998] = 2922, - [2999] = 2922, - [3000] = 2943, - [3001] = 2866, - [3002] = 2922, - [3003] = 2942, - [3004] = 3004, - [3005] = 3005, - [3006] = 3006, - [3007] = 3007, - [3008] = 2917, - [3009] = 2873, - [3010] = 3010, - [3011] = 2942, - [3012] = 3012, - [3013] = 2866, - [3014] = 2913, - [3015] = 3006, - [3016] = 3016, - [3017] = 3017, - [3018] = 3018, - [3019] = 2885, - [3020] = 3020, - [3021] = 2879, - [3022] = 2942, - [3023] = 2913, - [3024] = 3024, - [3025] = 2961, - [3026] = 2942, - [3027] = 2866, - [3028] = 3028, + [2991] = 2991, + [2992] = 2846, + [2993] = 2993, + [2994] = 2869, + [2995] = 2882, + [2996] = 2846, + [2997] = 413, + [2998] = 2869, + [2999] = 2882, + [3000] = 2846, + [3001] = 2935, + [3002] = 2869, + [3003] = 2882, + [3004] = 1646, + [3005] = 2976, + [3006] = 2978, + [3007] = 2831, + [3008] = 3008, + [3009] = 3009, + [3010] = 2847, + [3011] = 2850, + [3012] = 1783, + [3013] = 3013, + [3014] = 2848, + [3015] = 3015, + [3016] = 2882, + [3017] = 2896, + [3018] = 2831, + [3019] = 2930, + [3020] = 2846, + [3021] = 3021, + [3022] = 2869, + [3023] = 2882, + [3024] = 1865, + [3025] = 2853, + [3026] = 3026, + [3027] = 1851, + [3028] = 2846, [3029] = 2866, - [3030] = 3030, - [3031] = 2949, - [3032] = 2963, - [3033] = 3033, - [3034] = 363, - [3035] = 2869, - [3036] = 2952, - [3037] = 2895, - [3038] = 2883, - [3039] = 2950, - [3040] = 3040, - [3041] = 3041, - [3042] = 3017, - [3043] = 2895, - [3044] = 3044, - [3045] = 3045, - [3046] = 3046, - [3047] = 3047, - [3048] = 2857, - [3049] = 2873, - [3050] = 3050, - [3051] = 3040, - [3052] = 2953, - [3053] = 2917, - [3054] = 2946, - [3055] = 2990, - [3056] = 2944, - [3057] = 2917, - [3058] = 2889, - [3059] = 2891, - [3060] = 2917, - [3061] = 3061, - [3062] = 2864, - [3063] = 2865, - [3064] = 2922, - [3065] = 2978, - [3066] = 2913, - [3067] = 3067, - [3068] = 3010, - [3069] = 2917, - [3070] = 2985, - [3071] = 3033, - [3072] = 363, - [3073] = 2929, - [3074] = 3061, - [3075] = 3075, - [3076] = 3045, - [3077] = 2917, - [3078] = 2952, - [3079] = 2917, - [3080] = 2917, - [3081] = 2972, - [3082] = 2979, - [3083] = 2901, - [3084] = 2942, - [3085] = 3085, - [3086] = 2931, - [3087] = 2905, - [3088] = 2868, - [3089] = 2962, - [3090] = 3090, - [3091] = 2932, - [3092] = 3020, - [3093] = 3028, - [3094] = 3075, - [3095] = 3030, - [3096] = 2857, - [3097] = 2917, - [3098] = 2990, - [3099] = 2986, - [3100] = 2987, - [3101] = 2917, - [3102] = 2942, - [3103] = 2990, - [3104] = 2857, - [3105] = 3050, - [3106] = 2928, - [3107] = 3107, - [3108] = 2864, - [3109] = 2865, - [3110] = 3107, - [3111] = 2955, - [3112] = 2917, - [3113] = 2985, - [3114] = 2956, - [3115] = 3018, - [3116] = 2930, - [3117] = 3085, - [3118] = 2952, - [3119] = 3016, - [3120] = 2990, - [3121] = 2917, - [3122] = 2873, - [3123] = 2931, - [3124] = 2893, - [3125] = 2857, - [3126] = 2917, - [3127] = 3090, - [3128] = 3128, - [3129] = 3129, - [3130] = 3130, - [3131] = 3131, - [3132] = 3132, - [3133] = 3129, - [3134] = 3134, - [3135] = 3135, - [3136] = 3132, - [3137] = 3129, + [3030] = 2856, + [3031] = 2869, + [3032] = 3032, + [3033] = 2877, + [3034] = 2933, + [3035] = 2846, + [3036] = 2970, + [3037] = 2869, + [3038] = 2882, + [3039] = 2846, + [3040] = 2898, + [3041] = 2869, + [3042] = 2882, + [3043] = 2846, + [3044] = 2862, + [3045] = 2869, + [3046] = 2882, + [3047] = 2887, + [3048] = 3048, + [3049] = 3049, + [3050] = 2972, + [3051] = 2867, + [3052] = 2935, + [3053] = 3053, + [3054] = 2859, + [3055] = 2935, + [3056] = 2877, + [3057] = 3049, + [3058] = 2973, + [3059] = 2856, + [3060] = 2868, + [3061] = 2830, + [3062] = 2877, + [3063] = 2846, + [3064] = 2862, + [3065] = 2869, + [3066] = 2882, + [3067] = 2846, + [3068] = 2869, + [3069] = 2869, + [3070] = 2882, + [3071] = 2846, + [3072] = 2831, + [3073] = 2869, + [3074] = 2882, + [3075] = 2957, + [3076] = 2853, + [3077] = 1783, + [3078] = 2968, + [3079] = 3079, + [3080] = 2887, + [3081] = 2846, + [3082] = 3082, + [3083] = 2935, + [3084] = 2856, + [3085] = 2853, + [3086] = 3086, + [3087] = 3015, + [3088] = 3088, + [3089] = 2831, + [3090] = 2846, + [3091] = 2853, + [3092] = 595, + [3093] = 2877, + [3094] = 2869, + [3095] = 2831, + [3096] = 2907, + [3097] = 2831, + [3098] = 2866, + [3099] = 2831, + [3100] = 2831, + [3101] = 2876, + [3102] = 2831, + [3103] = 2831, + [3104] = 2896, + [3105] = 2884, + [3106] = 2831, + [3107] = 2846, + [3108] = 3108, + [3109] = 3109, + [3110] = 3110, + [3111] = 3111, + [3112] = 3112, + [3113] = 3109, + [3114] = 3110, + [3115] = 3115, + [3116] = 3109, + [3117] = 3109, + [3118] = 3109, + [3119] = 3109, + [3120] = 3109, + [3121] = 3111, + [3122] = 3109, + [3123] = 3109, + [3124] = 3124, + [3125] = 3109, + [3126] = 3126, + [3127] = 3109, + [3128] = 3109, + [3129] = 3109, + [3130] = 3109, + [3131] = 3109, + [3132] = 3109, + [3133] = 3109, + [3134] = 3109, + [3135] = 3109, + [3136] = 3110, + [3137] = 3137, [3138] = 3138, [3139] = 3139, [3140] = 3140, - [3141] = 3131, + [3141] = 3140, [3142] = 3142, - [3143] = 3143, - [3144] = 3144, - [3145] = 3145, - [3146] = 3144, + [3143] = 3109, + [3144] = 3110, + [3145] = 3137, + [3146] = 3146, [3147] = 3147, - [3148] = 3132, + [3148] = 3148, [3149] = 3149, [3150] = 3150, [3151] = 3151, [3152] = 3152, [3153] = 3153, - [3154] = 3154, - [3155] = 3130, + [3154] = 3138, + [3155] = 3155, [3156] = 3156, [3157] = 3157, - [3158] = 3158, - [3159] = 3159, + [3158] = 393, + [3159] = 3149, [3160] = 3160, - [3161] = 3161, + [3161] = 3112, [3162] = 3162, - [3163] = 3147, - [3164] = 3164, + [3163] = 3146, + [3164] = 3137, [3165] = 3165, - [3166] = 3166, - [3167] = 3139, - [3168] = 3168, - [3169] = 3169, - [3170] = 3132, - [3171] = 3161, - [3172] = 3153, - [3173] = 3173, - [3174] = 3174, - [3175] = 3175, + [3166] = 3137, + [3167] = 3137, + [3168] = 3115, + [3169] = 3137, + [3170] = 3170, + [3171] = 3139, + [3172] = 3172, + [3173] = 3152, + [3174] = 3110, + [3175] = 3112, [3176] = 3176, - [3177] = 3177, + [3177] = 3137, [3178] = 3178, - [3179] = 3179, - [3180] = 3180, - [3181] = 3181, - [3182] = 3182, - [3183] = 3183, + [3179] = 3110, + [3180] = 393, + [3181] = 3110, + [3182] = 3110, + [3183] = 3137, [3184] = 3184, - [3185] = 3150, - [3186] = 3186, - [3187] = 3187, - [3188] = 3183, - [3189] = 3179, - [3190] = 3175, - [3191] = 3191, + [3185] = 3139, + [3186] = 3140, + [3187] = 3150, + [3188] = 3153, + [3189] = 3137, + [3190] = 3146, + [3191] = 3157, [3192] = 3192, - [3193] = 3174, - [3194] = 3179, - [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 3147, - [3199] = 3199, - [3200] = 3166, - [3201] = 3132, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 3205, - [3206] = 3157, - [3207] = 3205, - [3208] = 3195, - [3209] = 3130, - [3210] = 3160, - [3211] = 3139, - [3212] = 3212, - [3213] = 3213, - [3214] = 3214, - [3215] = 3158, - [3216] = 3162, - [3217] = 3217, - [3218] = 3130, - [3219] = 3139, - [3220] = 3129, - [3221] = 3130, - [3222] = 3132, - [3223] = 3128, - [3224] = 3224, - [3225] = 3130, - [3226] = 3131, - [3227] = 3227, - [3228] = 3228, - [3229] = 3229, + [3193] = 3112, + [3194] = 3137, + [3195] = 3149, + [3196] = 3137, + [3197] = 3138, + [3198] = 3137, + [3199] = 3140, + [3200] = 3200, + [3201] = 3151, + [3202] = 3146, + [3203] = 3160, + [3204] = 3110, + [3205] = 3137, + [3206] = 3109, + [3207] = 3137, + [3208] = 3208, + [3209] = 3110, + [3210] = 3151, + [3211] = 3140, + [3212] = 3146, + [3213] = 3140, + [3214] = 3146, + [3215] = 3140, + [3216] = 3146, + [3217] = 3140, + [3218] = 3146, + [3219] = 3140, + [3220] = 3147, + [3221] = 3221, + [3222] = 3140, + [3223] = 3140, + [3224] = 3170, + [3225] = 3140, + [3226] = 3140, + [3227] = 3140, + [3228] = 3140, + [3229] = 3139, [3230] = 3230, - [3231] = 3130, - [3232] = 3196, - [3233] = 3233, - [3234] = 3234, - [3235] = 3235, - [3236] = 3147, - [3237] = 3138, - [3238] = 3139, - [3239] = 3145, - [3240] = 2872, - [3241] = 3191, - [3242] = 3217, - [3243] = 3129, + [3231] = 3146, + [3232] = 3232, + [3233] = 3232, + [3234] = 2971, + [3235] = 3109, + [3236] = 3112, + [3237] = 3192, + [3238] = 3151, + [3239] = 3239, + [3240] = 3162, + [3241] = 3162, + [3242] = 3115, + [3243] = 3243, [3244] = 3244, - [3245] = 3245, - [3246] = 3204, - [3247] = 3247, - [3248] = 3247, - [3249] = 3179, - [3250] = 3235, - [3251] = 3138, - [3252] = 3129, - [3253] = 3147, - [3254] = 3254, - [3255] = 3169, - [3256] = 3224, - [3257] = 3130, - [3258] = 3258, - [3259] = 3131, - [3260] = 3135, - [3261] = 3261, - [3262] = 3191, - [3263] = 3130, - [3264] = 3140, - [3265] = 3139, - [3266] = 3266, - [3267] = 3245, - [3268] = 3268, - [3269] = 3269, - [3270] = 3130, - [3271] = 3131, - [3272] = 3149, - [3273] = 3191, - [3274] = 3130, - [3275] = 3275, - [3276] = 3179, - [3277] = 3277, - [3278] = 3228, - [3279] = 3130, - [3280] = 3139, + [3245] = 3147, + [3246] = 3140, + [3247] = 3138, + [3248] = 3200, + [3249] = 3137, + [3250] = 3115, + [3251] = 3109, + [3252] = 3151, + [3253] = 3253, + [3254] = 3110, + [3255] = 3162, + [3256] = 3137, + [3257] = 3230, + [3258] = 3124, + [3259] = 3259, + [3260] = 3126, + [3261] = 3138, + [3262] = 3139, + [3263] = 3263, + [3264] = 3147, + [3265] = 3265, + [3266] = 3239, + [3267] = 3267, + [3268] = 3137, + [3269] = 3149, + [3270] = 3270, + [3271] = 3271, + [3272] = 3140, + [3273] = 3273, + [3274] = 3274, + [3275] = 3137, + [3276] = 3109, + [3277] = 3110, + [3278] = 3278, + [3279] = 3115, + [3280] = 3265, [3281] = 3281, - [3282] = 3147, - [3283] = 3283, - [3284] = 3247, - [3285] = 3132, - [3286] = 3166, - [3287] = 3156, - [3288] = 3128, - [3289] = 3289, - [3290] = 3179, - [3291] = 3173, - [3292] = 3160, - [3293] = 3129, - [3294] = 3204, - [3295] = 3233, - [3296] = 3181, - [3297] = 3184, - [3298] = 3199, - [3299] = 3299, - [3300] = 3197, - [3301] = 3191, - [3302] = 3302, - [3303] = 3303, - [3304] = 3214, - [3305] = 3179, - [3306] = 3203, - [3307] = 3160, - [3308] = 3147, - [3309] = 3147, - [3310] = 3310, - [3311] = 3283, - [3312] = 3312, - [3313] = 3156, + [3282] = 3282, + [3283] = 3281, + [3284] = 3155, + [3285] = 3285, + [3286] = 3140, + [3287] = 3243, + [3288] = 3149, + [3289] = 3165, + [3290] = 3149, + [3291] = 3263, + [3292] = 3172, + [3293] = 3142, + [3294] = 3109, + [3295] = 3110, + [3296] = 3176, + [3297] = 3147, + [3298] = 3178, + [3299] = 3156, + [3300] = 3109, + [3301] = 3110, + [3302] = 3162, + [3303] = 3109, + [3304] = 3110, + [3305] = 3244, + [3306] = 3109, + [3307] = 3110, + [3308] = 3109, + [3309] = 3110, + [3310] = 3108, + [3311] = 3109, + [3312] = 3110, + [3313] = 3146, [3314] = 3314, - [3315] = 3247, - [3316] = 3179, - [3317] = 3213, - [3318] = 3129, + [3315] = 3315, + [3316] = 3314, + [3317] = 3315, + [3318] = 3318, [3319] = 3319, - [3320] = 3283, - [3321] = 3202, - [3322] = 3156, - [3323] = 3132, - [3324] = 3283, - [3325] = 3244, - [3326] = 3156, - [3327] = 3283, - [3328] = 3129, - [3329] = 3283, - [3330] = 3283, - [3331] = 3283, - [3332] = 3132, - [3333] = 3156, - [3334] = 3214, - [3335] = 3138, - [3336] = 3176, + [3320] = 3320, + [3321] = 3321, + [3322] = 3322, + [3323] = 3314, + [3324] = 3324, + [3325] = 3325, + [3326] = 3326, + [3327] = 3327, + [3328] = 3327, + [3329] = 3329, + [3330] = 3330, + [3331] = 3331, + [3332] = 3332, + [3333] = 3333, + [3334] = 3332, + [3335] = 3335, + [3336] = 3322, [3337] = 3337, [3338] = 3338, - [3339] = 3245, - [3340] = 3182, - [3341] = 3258, - [3342] = 3247, - [3343] = 3195, - [3344] = 3266, - [3345] = 3205, - [3346] = 3303, - [3347] = 3177, + [3339] = 3339, + [3340] = 3314, + [3341] = 3339, + [3342] = 3327, + [3343] = 3318, + [3344] = 3344, + [3345] = 3345, + [3346] = 3327, + [3347] = 3335, [3348] = 3348, - [3349] = 3132, - [3350] = 3195, - [3351] = 3129, - [3352] = 3310, - [3353] = 3132, - [3354] = 3212, - [3355] = 3178, + [3349] = 3318, + [3350] = 3315, + [3351] = 3351, + [3352] = 3352, + [3353] = 3353, + [3354] = 3354, + [3355] = 3332, [3356] = 3356, - [3357] = 3357, + [3357] = 3322, [3358] = 3358, [3359] = 3359, - [3360] = 3132, - [3361] = 3129, - [3362] = 3160, - [3363] = 3205, - [3364] = 3268, - [3365] = 3147, - [3366] = 3128, - [3367] = 3154, - [3368] = 3134, - [3369] = 473, - [3370] = 3205, - [3371] = 3130, - [3372] = 3132, - [3373] = 3128, - [3374] = 3129, - [3375] = 3348, - [3376] = 3277, - [3377] = 3205, - [3378] = 3235, - [3379] = 3180, - [3380] = 3128, - [3381] = 3128, + [3360] = 3360, + [3361] = 3327, + [3362] = 3318, + [3363] = 3339, + [3364] = 3364, + [3365] = 3365, + [3366] = 3366, + [3367] = 3367, + [3368] = 3368, + [3369] = 3369, + [3370] = 3322, + [3371] = 3327, + [3372] = 3314, + [3373] = 3373, + [3374] = 3327, + [3375] = 3332, + [3376] = 3376, + [3377] = 3319, + [3378] = 3315, + [3379] = 3379, + [3380] = 3380, + [3381] = 3318, [3382] = 3382, - [3383] = 3139, - [3384] = 3132, - [3385] = 3283, - [3386] = 3156, - [3387] = 3387, - [3388] = 3129, - [3389] = 3337, - [3390] = 3258, + [3383] = 3314, + [3384] = 3331, + [3385] = 3314, + [3386] = 3386, + [3387] = 3314, + [3388] = 3339, + [3389] = 3389, + [3390] = 3339, [3391] = 3391, - [3392] = 3165, - [3393] = 3393, - [3394] = 3387, - [3395] = 3132, - [3396] = 3129, - [3397] = 3164, - [3398] = 3391, - [3399] = 3132, - [3400] = 3129, - [3401] = 3204, - [3402] = 3234, - [3403] = 3168, - [3404] = 3132, - [3405] = 3205, - [3406] = 3129, - [3407] = 3235, - [3408] = 3128, - [3409] = 3409, - [3410] = 3132, - [3411] = 3166, - [3412] = 3205, + [3392] = 3392, + [3393] = 3356, + [3394] = 3327, + [3395] = 3395, + [3396] = 3396, + [3397] = 3314, + [3398] = 3398, + [3399] = 3318, + [3400] = 3318, + [3401] = 3401, + [3402] = 3318, + [3403] = 3403, + [3404] = 3404, + [3405] = 3405, + [3406] = 3406, + [3407] = 3314, + [3408] = 3320, + [3409] = 3344, + [3410] = 3410, + [3411] = 3411, + [3412] = 3410, [3413] = 3413, - [3414] = 3129, - [3415] = 3128, - [3416] = 3159, - [3417] = 3254, - [3418] = 3179, - [3419] = 3283, - [3420] = 3156, - [3421] = 3132, - [3422] = 3129, - [3423] = 453, + [3414] = 3414, + [3415] = 3322, + [3416] = 3416, + [3417] = 3395, + [3418] = 3379, + [3419] = 3314, + [3420] = 3318, + [3421] = 3421, + [3422] = 3318, + [3423] = 3389, [3424] = 3424, - [3425] = 3275, - [3426] = 3204, + [3425] = 3344, + [3426] = 3352, [3427] = 3427, - [3428] = 3427, - [3429] = 3132, - [3430] = 3129, - [3431] = 3413, - [3432] = 3151, - [3433] = 3132, - [3434] = 3129, - [3435] = 3132, - [3436] = 3269, - [3437] = 3160, - [3438] = 3132, - [3439] = 3205, - [3440] = 3129, - [3441] = 3205, + [3428] = 3354, + [3429] = 3429, + [3430] = 3430, + [3431] = 3324, + [3432] = 3354, + [3433] = 3345, + [3434] = 3365, + [3435] = 3435, + [3436] = 3436, + [3437] = 3322, + [3438] = 3438, + [3439] = 3439, + [3440] = 3339, + [3441] = 3360, [3442] = 3442, - [3443] = 3261, - [3444] = 3129, - [3445] = 3132, - [3446] = 3205, - [3447] = 3129, - [3448] = 3448, - [3449] = 3128, - [3450] = 3258, - [3451] = 3227, - [3452] = 3452, - [3453] = 3283, - [3454] = 3283, - [3455] = 3132, - [3456] = 3283, - [3457] = 3129, - [3458] = 3128, - [3459] = 3338, - [3460] = 3452, - [3461] = 3142, - [3462] = 3314, - [3463] = 3132, - [3464] = 3319, - [3465] = 3129, - [3466] = 3229, - [3467] = 3467, - [3468] = 3409, - [3469] = 3205, - [3470] = 3132, - [3471] = 3129, - [3472] = 3128, - [3473] = 3393, - [3474] = 3129, - [3475] = 3132, - [3476] = 3129, - [3477] = 3166, - [3478] = 3130, - [3479] = 3230, - [3480] = 3128, - [3481] = 3132, - [3482] = 3129, - [3483] = 3235, - [3484] = 3205, - [3485] = 3485, - [3486] = 3382, - [3487] = 3128, - [3488] = 3160, - [3489] = 3132, - [3490] = 3258, - [3491] = 3129, - [3492] = 3214, - [3493] = 3205, - [3494] = 3467, - [3495] = 3186, - [3496] = 3283, + [3443] = 3339, + [3444] = 3444, + [3445] = 3353, + [3446] = 3430, + [3447] = 3447, + [3448] = 3396, + [3449] = 3401, + [3450] = 3430, + [3451] = 3451, + [3452] = 3389, + [3453] = 3344, + [3454] = 3314, + [3455] = 3326, + [3456] = 3411, + [3457] = 3327, + [3458] = 3401, + [3459] = 3329, + [3460] = 3411, + [3461] = 3461, + [3462] = 3462, + [3463] = 3411, + [3464] = 3464, + [3465] = 3411, + [3466] = 3421, + [3467] = 3411, + [3468] = 3468, + [3469] = 3411, + [3470] = 3470, + [3471] = 3411, + [3472] = 3344, + [3473] = 3473, + [3474] = 3389, + [3475] = 3475, + [3476] = 3405, + [3477] = 3429, + [3478] = 3478, + [3479] = 3403, + [3480] = 3447, + [3481] = 3354, + [3482] = 3314, + [3483] = 3483, + [3484] = 3389, + [3485] = 3411, + [3486] = 3327, + [3487] = 3348, + [3488] = 3464, + [3489] = 3489, + [3490] = 3451, + [3491] = 3359, + [3492] = 3318, + [3493] = 3339, + [3494] = 3322, + [3495] = 3495, + [3496] = 3496, + [3497] = 3369, + [3498] = 3430, + [3499] = 3322, + [3500] = 3318, + [3501] = 3501, + [3502] = 3318, + [3503] = 3503, + [3504] = 3504, + [3505] = 3505, + [3506] = 3461, + [3507] = 3345, + [3508] = 3314, + [3509] = 3427, + [3510] = 3401, + [3511] = 3314, + [3512] = 3335, + [3513] = 3401, + [3514] = 3501, + [3515] = 3318, + [3516] = 3389, + [3517] = 3429, + [3518] = 3447, + [3519] = 3519, + [3520] = 3401, + [3521] = 3318, + [3522] = 3326, + [3523] = 3389, + [3524] = 3314, + [3525] = 3525, + [3526] = 3358, + [3527] = 3401, + [3528] = 3389, + [3529] = 3404, + [3530] = 3368, + [3531] = 3451, + [3532] = 3464, + [3533] = 3411, + [3534] = 3534, + [3535] = 3535, + [3536] = 3536, + [3537] = 3391, + [3538] = 3318, + [3539] = 3367, + [3540] = 3333, + [3541] = 3541, + [3542] = 3327, + [3543] = 3327, + [3544] = 3338, + [3545] = 3314, + [3546] = 3335, + [3547] = 3462, + [3548] = 3339, + [3549] = 3401, + [3550] = 3495, + [3551] = 3327, + [3552] = 3389, + [3553] = 3447, + [3554] = 3396, + [3555] = 3478, + [3556] = 3396, + [3557] = 3327, + [3558] = 3314, + [3559] = 3496, + [3560] = 3208, + [3561] = 3389, + [3562] = 3335, + [3563] = 3314, + [3564] = 3564, + [3565] = 3565, + [3566] = 3327, + [3567] = 3567, + [3568] = 3534, + [3569] = 3478, + [3570] = 3325, + [3571] = 3571, + [3572] = 3354, + [3573] = 3519, + [3574] = 3398, + [3575] = 3318, + [3576] = 581, + [3577] = 3536, + [3578] = 3416, + [3579] = 3314, + [3580] = 3327, + [3581] = 3464, + [3582] = 3314, + [3583] = 3314, + [3584] = 3401, + [3585] = 3318, + [3586] = 3541, + [3587] = 3389, + [3588] = 3318, + [3589] = 3321, + [3590] = 3590, + [3591] = 3401, + [3592] = 3567, + [3593] = 3326, + [3594] = 3389, + [3595] = 3351, + [3596] = 3366, + [3597] = 3332, + [3598] = 3401, + [3599] = 3473, + [3600] = 3600, + [3601] = 3389, + [3602] = 3590, + [3603] = 3406, + [3604] = 3318, + [3605] = 3451, + [3606] = 3314, + [3607] = 3478, + [3608] = 3396, + [3609] = 3396, + [3610] = 3451, + [3611] = 3600, + [3612] = 3396, + [3613] = 3335, + [3614] = 3429, + [3615] = 3401, + [3616] = 3429, + [3617] = 3335, + [3618] = 3618, + [3619] = 3392, + [3620] = 3414, + [3621] = 3318, + [3622] = 3535, + [3623] = 3322, + [3624] = 3318, + [3625] = 3314, + [3626] = 3318, + [3627] = 3322, + [3628] = 3628, + [3629] = 3565, + [3630] = 3326, + [3631] = 3401, + [3632] = 3339, + [3633] = 3413, + [3634] = 3389, + [3635] = 3386, + [3636] = 3636, + [3637] = 3327, + [3638] = 3401, + [3639] = 3442, + [3640] = 3636, + [3641] = 3389, + [3642] = 3314, + [3643] = 3424, + [3644] = 3628, + [3645] = 3401, + [3646] = 3318, + [3647] = 3571, + [3648] = 3389, + [3649] = 3505, + [3650] = 3339, + [3651] = 3396, + [3652] = 3503, + [3653] = 3653, + [3654] = 3478, + [3655] = 3478, + [3656] = 3478, + [3657] = 3478, + [3658] = 3478, + [3659] = 3478, + [3660] = 3478, + [3661] = 3478, + [3662] = 3478, + [3663] = 3478, + [3664] = 3478, + [3665] = 3483, + [3666] = 3475, + [3667] = 3504, + [3668] = 3318, + [3669] = 3401, + [3670] = 3670, + [3671] = 3327, + [3672] = 3396, + [3673] = 3314, + [3674] = 3314, + [3675] = 3389, + [3676] = 3525, + [3677] = 3318, + [3678] = 3315, + [3679] = 3322, + [3680] = 3564, + [3681] = 612, + [3682] = 3653, + [3683] = 3318, + [3684] = 3401, + [3685] = 3314, + [3686] = 3318, + [3687] = 3470, + [3688] = 3376, + [3689] = 3396, + [3690] = 3690, + [3691] = 3373, + [3692] = 3692, + [3693] = 3435, + [3694] = 3478, + [3695] = 3318, + [3696] = 3314, + [3697] = 3364, + [3698] = 3401, + [3699] = 3314, + [3700] = 3318, + [3701] = 3478, + [3702] = 3478, + [3703] = 3389, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5686,12 +5891,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(38); ADVANCE_MAP( '!', 62, - '"', 112, + '"', 114, '#', 39, - '$', 118, + '$', 120, '%', 67, '&', 73, - '\'', 102, + '\'', 104, '(', 47, ')', 48, '*', 46, @@ -5712,7 +5917,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ']', 55, '^', 75, '_', 92, - 'e', 126, + 'e', 128, '{', 50, '|', 74, '}', 49, @@ -5725,17 +5930,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(36); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(128); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(130); END_STATE(); case 1: ADVANCE_MAP( '!', 62, - '"', 112, + '"', 114, '$', 28, '%', 67, '&', 73, - '\'', 102, + '\'', 104, '(', 47, ')', 48, '*', 46, @@ -5765,7 +5970,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(1); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 2: ADVANCE_MAP( @@ -5801,18 +6006,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(2); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 3: ADVANCE_MAP( - '"', 112, - '\'', 102, + '"', 114, + '\'', 104, '(', 47, ')', 48, ',', 52, - '-', 19, + '-', 20, '.', 44, - '/', 13, + '/', 16, '0', 94, ':', 51, '<', 80, @@ -5834,18 +6039,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(3); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 4: ADVANCE_MAP( - '"', 112, - '\'', 102, + '"', 114, + '\'', 104, '(', 47, ')', 48, ',', 52, - '-', 19, + '-', 20, '.', 44, - '/', 13, + '/', 16, '0', 94, ':', 51, '<', 80, @@ -5866,33 +6071,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(112); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '\\') ADVANCE(116); + 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) ADVANCE(115); - if (lookahead != 0) ADVANCE(113); + lookahead == 0xfeff) ADVANCE(117); + if (lookahead != 0) ADVANCE(115); END_STATE(); case 6: ADVANCE_MAP( - '"', 103, - '$', 118, - '\'', 102, + '"', 105, + '$', 120, + '\'', 104, '.', 44, - '/', 108, + '/', 110, '0', 94, ':', 51, - '=', 109, + '=', 111, '?', 56, '[', 54, - '\\', 111, + '\\', 113, '_', 92, '{', 50, ); @@ -5902,20 +6107,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(104); + lookahead == 0xfeff) ADVANCE(106); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - if (lookahead != 0) ADVANCE(103); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 7: ADVANCE_MAP( - '"', 103, - '$', 118, - '\'', 102, - '/', 108, + '"', 105, + '$', 120, + '\'', 104, + '/', 110, '0', 94, '[', 54, - '\\', 111, + '\\', 113, '_', 92, '{', 50, ); @@ -5925,50 +6130,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(105); + lookahead == 0xfeff) ADVANCE(107); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); - if (lookahead != 0) ADVANCE(103); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 8: ADVANCE_MAP( - '$', 118, - '\'', 102, + '$', 120, + '\'', 104, '.', 44, - '/', 108, + '/', 110, ':', 51, - '=', 109, + '=', 111, '?', 56, - '\\', 111, + '\\', 113, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(106); - if (lookahead != 0) ADVANCE(103); + lookahead == 0xfeff) ADVANCE(108); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 9: - if (lookahead == '$') ADVANCE(118); - if (lookahead == '\'') ADVANCE(102); - if (lookahead == '/') ADVANCE(108); - if (lookahead == '\\') ADVANCE(111); + 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(107); - if (lookahead != 0) ADVANCE(103); + lookahead == 0xfeff) ADVANCE(109); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 10: ADVANCE_MAP( '(', 47, ')', 48, ',', 52, - '-', 19, - '/', 13, + '-', 20, + '/', 16, '=', 88, '>', 83, '{', 50, @@ -5981,7 +6186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(10); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 11: ADVANCE_MAP( @@ -5989,10 +6194,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ')', 48, ',', 52, '.', 44, - '/', 13, + '/', 16, ':', 51, '<', 80, - '=', 20, + '=', 90, '?', 56, ']', 55, '{', 50, @@ -6006,40 +6211,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(11); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 12: - if (lookahead == '*') ADVANCE(46); - if (lookahead == '/') ADVANCE(13); + 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 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(12); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(133); - if (lookahead == '_' || + if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 13: - if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(123); - END_STATE(); - case 14: - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(122); - 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(91); - END_STATE(); - case 17: - if (lookahead == '/') ADVANCE(13); - if (lookahead == '0') ADVANCE(96); + 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') || @@ -6047,27 +6239,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(18); + lookahead == 0xfeff) SKIP(14); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(97); + lookahead == '_') ADVANCE(99); END_STATE(); - case 18: - if (lookahead == '/') ADVANCE(13); - if (lookahead == '0') ADVANCE(96); + 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(18); + lookahead == 0xfeff) SKIP(14); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(97); + lookahead == '_') ADVANCE(99); + END_STATE(); + 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(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(58); + if (lookahead == '.') ADVANCE(91); END_STATE(); case 20: - if (lookahead == '>') ADVANCE(86); + if (lookahead == '>') ADVANCE(58); END_STATE(); case 21: if (lookahead == 'd') ADVANCE(41); @@ -6097,8 +6316,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 29: if (lookahead == 'u') ADVANCE(34); if (lookahead == 'x') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); - if (lookahead != 0) ADVANCE(119); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 30: if (lookahead == 'y') ADVANCE(26); @@ -6106,7 +6325,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 31: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); case 32: if (('0' <= lookahead && lookahead <= '9') || @@ -6127,18 +6346,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(98); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); END_STATE(); case 36: if (eof) ADVANCE(38); ADVANCE_MAP( '!', 62, - '"', 112, + '"', 114, '#', 39, - '$', 118, + '$', 120, '%', 67, '&', 73, - '\'', 102, + '\'', 104, '(', 47, ')', 48, '*', 46, @@ -6170,19 +6389,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(36); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(128); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(130); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 37: if (eof) ADVANCE(38); ADVANCE_MAP( '!', 62, - '"', 112, + '"', 114, '#', 39, '$', 28, '%', 67, '&', 73, - '\'', 102, + '\'', 104, '(', 47, ')', 48, '*', 46, @@ -6215,7 +6434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(37); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 38: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -6231,10 +6450,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 42: ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); - if (lookahead == '_') ADVANCE(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 43: ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); @@ -6245,7 +6464,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 45: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(16); + if (lookahead == '.') ADVANCE(19); END_STATE(); case 46: ACCEPT_TOKEN(anon_sym_STAR); @@ -6321,8 +6540,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 68: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(123); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(125); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_PLUS); @@ -6406,85 +6625,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 92: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(99); + 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(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 93: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(99); + 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(130); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); case 94: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(99); + if (lookahead == '.') ADVANCE(101); if (lookahead == 'x') ADVANCE(35); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(95); END_STATE(); case 95: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(99); + if (lookahead == '.') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(95); END_STATE(); case 96: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == '_') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); + END_STATE(); + case 97: + ACCEPT_TOKEN(aux_sym_integer_token1); + if (lookahead == '_') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); + END_STATE(); + case 98: ACCEPT_TOKEN(aux_sym_integer_token1); if (lookahead == 'x') ADVANCE(35); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(97); + lookahead == '_') ADVANCE(99); END_STATE(); - case 97: + case 99: ACCEPT_TOKEN(aux_sym_integer_token1); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(97); + lookahead == '_') ADVANCE(99); END_STATE(); - case 98: + case 100: ACCEPT_TOKEN(aux_sym_integer_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(98); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); END_STATE(); - case 99: + case 101: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == '.') ADVANCE(99); - if (lookahead == 'e') ADVANCE(101); + if (lookahead == '.') ADVANCE(101); + if (lookahead == 'e') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(100); + lookahead == '_') ADVANCE(102); END_STATE(); - case 100: + case 102: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(100); + lookahead == '_') ADVANCE(102); END_STATE(); - case 101: + case 103: ACCEPT_TOKEN(aux_sym_float_token2); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(101); + lookahead == '_') ADVANCE(103); END_STATE(); - case 102: + case 104: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 103: + case 105: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 104: + case 106: ACCEPT_TOKEN(aux_sym_string_token2); ADVANCE_MAP( - '"', 103, - '$', 118, + '"', 105, + '$', 120, '.', 44, - '/', 108, + '/', 110, '0', 94, ':', 51, - '=', 109, + '=', 111, '?', 56, '[', 54, '_', 92, @@ -6496,17 +6729,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(104); + lookahead == 0xfeff) ADVANCE(106); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); if (lookahead != 0 && - lookahead != '\'') ADVANCE(103); + lookahead != '\'') ADVANCE(105); END_STATE(); - case 105: + case 107: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '"') ADVANCE(103); - if (lookahead == '$') ADVANCE(118); - if (lookahead == '/') ADVANCE(108); + 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); @@ -6517,198 +6750,198 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(105); + lookahead == 0xfeff) ADVANCE(107); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); if (lookahead != 0 && - lookahead != '\'') ADVANCE(103); + lookahead != '\'') ADVANCE(105); END_STATE(); - case 106: + case 108: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(120); if (lookahead == '.') ADVANCE(44); - if (lookahead == '/') ADVANCE(108); + if (lookahead == '/') ADVANCE(110); if (lookahead == ':') ADVANCE(51); - if (lookahead == '=') ADVANCE(109); + if (lookahead == '=') ADVANCE(111); if (lookahead == '?') ADVANCE(56); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(106); + lookahead == 0xfeff) ADVANCE(108); if (lookahead != 0 && - lookahead != '\'') ADVANCE(103); + lookahead != '\'') ADVANCE(105); END_STATE(); - case 107: + case 109: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '$') ADVANCE(118); - if (lookahead == '/') ADVANCE(108); + if (lookahead == '$') ADVANCE(120); + if (lookahead == '/') ADVANCE(110); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(107); + lookahead == 0xfeff) ADVANCE(109); if (lookahead != 0 && - lookahead != '\'') ADVANCE(103); + lookahead != '\'') ADVANCE(105); END_STATE(); - case 108: + case 110: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(123); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(125); END_STATE(); - case 109: + case 111: ACCEPT_TOKEN(aux_sym_string_token2); if (lookahead == '>') ADVANCE(86); END_STATE(); - case 110: + case 112: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '_') ADVANCE(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 111: + case 113: ACCEPT_TOKEN(aux_sym_string_token2); if (lookahead == 'u') ADVANCE(34); if (lookahead == 'x') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); - if (lookahead != 0) ADVANCE(119); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); - case 112: + case 114: ACCEPT_TOKEN(aux_sym_string_token3); END_STATE(); - case 113: + case 115: ACCEPT_TOKEN(aux_sym_string_token4); END_STATE(); - case 114: + case 116: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(123); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(125); END_STATE(); - case 115: + case 117: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == '/') ADVANCE(114); + if (lookahead == '/') ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(115); + lookahead == 0xfeff) ADVANCE(117); if (lookahead != 0 && - lookahead != '"') ADVANCE(113); + lookahead != '"') ADVANCE(115); END_STATE(); - case 116: + case 118: ACCEPT_TOKEN(aux_sym_string_token4); if (lookahead == 'u') ADVANCE(34); if (lookahead == 'x') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); - if (lookahead != 0) ADVANCE(119); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); - case 117: + case 119: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 118: + case 120: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(117); + if (lookahead == '{') ADVANCE(119); END_STATE(); - case 119: + case 121: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 120: + case 122: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); END_STATE(); - case 121: + case 123: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); END_STATE(); - case 122: + case 124: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 123: + case 125: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(123); + lookahead != '\n') ADVANCE(125); END_STATE(); - case 124: + case 126: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(129); + if (lookahead == '_') ADVANCE(131); if (lookahead == 'd') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 125: + case 127: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(129); + if (lookahead == '_') ADVANCE(131); if (lookahead == 'e') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 126: + case 128: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(129); - if (lookahead == 'l') ADVANCE(127); - if (lookahead == 'n') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + 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(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 127: + case 129: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(129); - if (lookahead == 's') ADVANCE(125); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + 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(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 128: + case 130: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(128); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + 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 129: + case 131: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 130: + case 132: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(130); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); - case 131: + case 133: ACCEPT_TOKEN(sym__camelCaseIdentifier); - if (lookahead == '_') ADVANCE(131); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); + if (lookahead == '_') ADVANCE(133); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(132); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(134); END_STATE(); - case 132: + case 134: ACCEPT_TOKEN(sym__camelCaseIdentifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); - case 133: + case 135: ACCEPT_TOKEN(sym__pascalCaseIdentifier); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(133); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); - case 134: + case 136: ACCEPT_TOKEN(sym__pascalCaseIdentifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); default: return false; @@ -7484,40 +7717,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [8] = {.lex_state = 37, .external_lex_state = 2}, [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 = 2}, + [12] = {.lex_state = 37, .external_lex_state = 3}, [13] = {.lex_state = 37, .external_lex_state = 3}, - [14] = {.lex_state = 37, .external_lex_state = 2}, - [15] = {.lex_state = 37, .external_lex_state = 2}, - [16] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, - [18] = {.lex_state = 37, .external_lex_state = 2}, - [19] = {.lex_state = 37, .external_lex_state = 2}, - [20] = {.lex_state = 37, .external_lex_state = 2}, - [21] = {.lex_state = 37, .external_lex_state = 2}, - [22] = {.lex_state = 37, .external_lex_state = 2}, - [23] = {.lex_state = 37, .external_lex_state = 2}, + [18] = {.lex_state = 37, .external_lex_state = 3}, + [19] = {.lex_state = 37, .external_lex_state = 3}, + [20] = {.lex_state = 37, .external_lex_state = 3}, + [21] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 2}, [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}, + [29] = {.lex_state = 37, .external_lex_state = 3}, [30] = {.lex_state = 37, .external_lex_state = 2}, [31] = {.lex_state = 37, .external_lex_state = 2}, - [32] = {.lex_state = 37, .external_lex_state = 2}, - [33] = {.lex_state = 37, .external_lex_state = 2}, + [32] = {.lex_state = 37, .external_lex_state = 3}, + [33] = {.lex_state = 37, .external_lex_state = 3}, [34] = {.lex_state = 37, .external_lex_state = 2}, [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 = 2}, + [37] = {.lex_state = 37, .external_lex_state = 3}, + [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}, + [40] = {.lex_state = 37, .external_lex_state = 3}, + [41] = {.lex_state = 37, .external_lex_state = 3}, [42] = {.lex_state = 37, .external_lex_state = 2}, [43] = {.lex_state = 37, .external_lex_state = 2}, [44] = {.lex_state = 37, .external_lex_state = 2}, @@ -7564,51 +7797,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [88] = {.lex_state = 37, .external_lex_state = 2}, [89] = {.lex_state = 37, .external_lex_state = 2}, - [90] = {.lex_state = 37, .external_lex_state = 3}, - [91] = {.lex_state = 37, .external_lex_state = 3}, - [92] = {.lex_state = 37, .external_lex_state = 3}, - [93] = {.lex_state = 37, .external_lex_state = 3}, - [94] = {.lex_state = 37, .external_lex_state = 3}, - [95] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, - [102] = {.lex_state = 37, .external_lex_state = 3}, - [103] = {.lex_state = 37, .external_lex_state = 3}, - [104] = {.lex_state = 37, .external_lex_state = 3}, - [105] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, + [107] = {.lex_state = 37, .external_lex_state = 2}, [108] = {.lex_state = 37, .external_lex_state = 3}, - [109] = {.lex_state = 37, .external_lex_state = 3}, + [109] = {.lex_state = 37, .external_lex_state = 2}, [110] = {.lex_state = 37, .external_lex_state = 2}, - [111] = {.lex_state = 37, .external_lex_state = 2}, + [111] = {.lex_state = 37, .external_lex_state = 3}, [112] = {.lex_state = 37, .external_lex_state = 3}, [113] = {.lex_state = 37, .external_lex_state = 3}, [114] = {.lex_state = 37, .external_lex_state = 2}, - [115] = {.lex_state = 37, .external_lex_state = 2}, + [115] = {.lex_state = 37, .external_lex_state = 3}, [116] = {.lex_state = 37, .external_lex_state = 2}, - [117] = {.lex_state = 37, .external_lex_state = 2}, - [118] = {.lex_state = 37, .external_lex_state = 2}, - [119] = {.lex_state = 37, .external_lex_state = 2}, - [120] = {.lex_state = 37, .external_lex_state = 2}, + [117] = {.lex_state = 37, .external_lex_state = 3}, + [118] = {.lex_state = 37, .external_lex_state = 3}, + [119] = {.lex_state = 37, .external_lex_state = 3}, + [120] = {.lex_state = 37, .external_lex_state = 3}, [121] = {.lex_state = 37, .external_lex_state = 2}, [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 = 2}, - [127] = {.lex_state = 37, .external_lex_state = 2}, + [125] = {.lex_state = 37, .external_lex_state = 3}, + [126] = {.lex_state = 37, .external_lex_state = 3}, + [127] = {.lex_state = 37, .external_lex_state = 3}, [128] = {.lex_state = 37, .external_lex_state = 2}, [129] = {.lex_state = 37, .external_lex_state = 2}, [130] = {.lex_state = 37, .external_lex_state = 2}, - [131] = {.lex_state = 37, .external_lex_state = 2}, - [132] = {.lex_state = 37, .external_lex_state = 2}, + [131] = {.lex_state = 37, .external_lex_state = 3}, + [132] = {.lex_state = 37, .external_lex_state = 3}, [133] = {.lex_state = 37, .external_lex_state = 2}, [134] = {.lex_state = 37, .external_lex_state = 2}, [135] = {.lex_state = 37, .external_lex_state = 2}, @@ -7620,11 +7853,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 37, .external_lex_state = 2}, [142] = {.lex_state = 37, .external_lex_state = 2}, [143] = {.lex_state = 37, .external_lex_state = 2}, - [144] = {.lex_state = 37, .external_lex_state = 2}, - [145] = {.lex_state = 37, .external_lex_state = 2}, + [144] = {.lex_state = 37, .external_lex_state = 3}, + [145] = {.lex_state = 37, .external_lex_state = 3}, [146] = {.lex_state = 37, .external_lex_state = 2}, [147] = {.lex_state = 37, .external_lex_state = 2}, - [148] = {.lex_state = 37, .external_lex_state = 2}, + [148] = {.lex_state = 37, .external_lex_state = 3}, [149] = {.lex_state = 37, .external_lex_state = 2}, [150] = {.lex_state = 37, .external_lex_state = 2}, [151] = {.lex_state = 37, .external_lex_state = 2}, @@ -7682,9 +7915,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1}, - [207] = {.lex_state = 37, .external_lex_state = 3}, - [208] = {.lex_state = 37, .external_lex_state = 3}, + [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}, @@ -7692,13 +7925,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, - [217] = {.lex_state = 37, .external_lex_state = 1}, - [218] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 1}, - [221] = {.lex_state = 37, .external_lex_state = 1}, - [222] = {.lex_state = 37, .external_lex_state = 3}, + [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}, @@ -7710,69 +7943,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1}, + [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 = 3}, - [243] = {.lex_state = 37, .external_lex_state = 2}, - [244] = {.lex_state = 37, .external_lex_state = 3}, - [245] = {.lex_state = 37, .external_lex_state = 3}, - [246] = {.lex_state = 37, .external_lex_state = 3}, - [247] = {.lex_state = 37, .external_lex_state = 3}, + [241] = {.lex_state = 37, .external_lex_state = 1}, + [242] = {.lex_state = 37, .external_lex_state = 2}, + [243] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 3}, - [249] = {.lex_state = 37, .external_lex_state = 3}, - [250] = {.lex_state = 37, .external_lex_state = 3}, - [251] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, - [254] = {.lex_state = 37, .external_lex_state = 3}, - [255] = {.lex_state = 37, .external_lex_state = 3}, - [256] = {.lex_state = 37, .external_lex_state = 3}, - [257] = {.lex_state = 37, .external_lex_state = 3}, - [258] = {.lex_state = 37, .external_lex_state = 3}, - [259] = {.lex_state = 37, .external_lex_state = 3}, - [260] = {.lex_state = 37, .external_lex_state = 3}, - [261] = {.lex_state = 37, .external_lex_state = 3}, + [253] = {.lex_state = 37, .external_lex_state = 2}, + [254] = {.lex_state = 37, .external_lex_state = 2}, + [255] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 2}, + [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 = 3}, - [264] = {.lex_state = 37, .external_lex_state = 3}, - [265] = {.lex_state = 37, .external_lex_state = 3}, - [266] = {.lex_state = 37, .external_lex_state = 3}, - [267] = {.lex_state = 37, .external_lex_state = 3}, - [268] = {.lex_state = 37, .external_lex_state = 3}, - [269] = {.lex_state = 37, .external_lex_state = 3}, - [270] = {.lex_state = 37, .external_lex_state = 3}, - [271] = {.lex_state = 37, .external_lex_state = 3}, - [272] = {.lex_state = 37, .external_lex_state = 3}, - [273] = {.lex_state = 37, .external_lex_state = 3}, - [274] = {.lex_state = 37, .external_lex_state = 3}, - [275] = {.lex_state = 37, .external_lex_state = 3}, - [276] = {.lex_state = 37, .external_lex_state = 3}, - [277] = {.lex_state = 37, .external_lex_state = 3}, - [278] = {.lex_state = 37, .external_lex_state = 3}, - [279] = {.lex_state = 37, .external_lex_state = 3}, - [280] = {.lex_state = 37, .external_lex_state = 3}, - [281] = {.lex_state = 37, .external_lex_state = 3}, - [282] = {.lex_state = 37, .external_lex_state = 3}, - [283] = {.lex_state = 37, .external_lex_state = 3}, - [284] = {.lex_state = 37, .external_lex_state = 3}, + [263] = {.lex_state = 37, .external_lex_state = 2}, + [264] = {.lex_state = 37, .external_lex_state = 2}, + [265] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 3}, - [287] = {.lex_state = 37, .external_lex_state = 3}, - [288] = {.lex_state = 37, .external_lex_state = 3}, - [289] = {.lex_state = 37, .external_lex_state = 3}, - [290] = {.lex_state = 37, .external_lex_state = 3}, - [291] = {.lex_state = 37, .external_lex_state = 3}, - [292] = {.lex_state = 37, .external_lex_state = 3}, - [293] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, - [296] = {.lex_state = 37, .external_lex_state = 3}, + [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}, @@ -7794,18 +8027,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [318] = {.lex_state = 37, .external_lex_state = 3}, [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}, + [324] = {.lex_state = 37, .external_lex_state = 3}, + [325] = {.lex_state = 37, .external_lex_state = 3}, + [326] = {.lex_state = 37, .external_lex_state = 3}, [327] = {.lex_state = 37, .external_lex_state = 2}, [328] = {.lex_state = 37, .external_lex_state = 2}, - [329] = {.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 = 2}, [332] = {.lex_state = 37, .external_lex_state = 2}, @@ -7813,84 +8046,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [334] = {.lex_state = 37, .external_lex_state = 2}, [335] = {.lex_state = 37, .external_lex_state = 2}, [336] = {.lex_state = 37, .external_lex_state = 2}, - [337] = {.lex_state = 37, .external_lex_state = 2}, - [338] = {.lex_state = 37, .external_lex_state = 2}, - [339] = {.lex_state = 37, .external_lex_state = 2}, - [340] = {.lex_state = 37, .external_lex_state = 2}, - [341] = {.lex_state = 37, .external_lex_state = 2}, - [342] = {.lex_state = 37, .external_lex_state = 2}, - [343] = {.lex_state = 37, .external_lex_state = 2}, - [344] = {.lex_state = 37, .external_lex_state = 2}, - [345] = {.lex_state = 37, .external_lex_state = 2}, - [346] = {.lex_state = 37, .external_lex_state = 2}, - [347] = {.lex_state = 37, .external_lex_state = 2}, - [348] = {.lex_state = 37, .external_lex_state = 2}, - [349] = {.lex_state = 37, .external_lex_state = 2}, - [350] = {.lex_state = 37, .external_lex_state = 2}, - [351] = {.lex_state = 37, .external_lex_state = 2}, - [352] = {.lex_state = 37, .external_lex_state = 2}, - [353] = {.lex_state = 37, .external_lex_state = 2}, - [354] = {.lex_state = 37, .external_lex_state = 2}, - [355] = {.lex_state = 37, .external_lex_state = 2}, - [356] = {.lex_state = 37, .external_lex_state = 2}, - [357] = {.lex_state = 37, .external_lex_state = 2}, - [358] = {.lex_state = 37, .external_lex_state = 2}, - [359] = {.lex_state = 37, .external_lex_state = 2}, + [337] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, + [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 = 1}, + [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 = 1}, - [362] = {.lex_state = 37, .external_lex_state = 2}, - [363] = {.lex_state = 37, .external_lex_state = 2}, - [364] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 4}, + [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 = 1}, - [372] = {.lex_state = 37, .external_lex_state = 4}, - [373] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 4}, - [376] = {.lex_state = 37, .external_lex_state = 4}, - [377] = {.lex_state = 37, .external_lex_state = 4}, - [378] = {.lex_state = 37, .external_lex_state = 2}, - [379] = {.lex_state = 37, .external_lex_state = 2}, - [380] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 2}, - [384] = {.lex_state = 37, .external_lex_state = 2}, + [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}, + [390] = {.lex_state = 37, .external_lex_state = 1}, + [391] = {.lex_state = 37, .external_lex_state = 1}, [392] = {.lex_state = 37, .external_lex_state = 3}, [393] = {.lex_state = 37, .external_lex_state = 3}, - [394] = {.lex_state = 37, .external_lex_state = 3}, - [395] = {.lex_state = 37, .external_lex_state = 3}, - [396] = {.lex_state = 37, .external_lex_state = 3}, + [394] = {.lex_state = 37, .external_lex_state = 2}, + [395] = {.lex_state = 37, .external_lex_state = 4}, + [396] = {.lex_state = 37, .external_lex_state = 1}, [397] = {.lex_state = 37, .external_lex_state = 3}, - [398] = {.lex_state = 37, .external_lex_state = 3}, + [398] = {.lex_state = 37, .external_lex_state = 2}, [399] = {.lex_state = 37, .external_lex_state = 3}, [400] = {.lex_state = 37, .external_lex_state = 3}, - [401] = {.lex_state = 37, .external_lex_state = 3}, - [402] = {.lex_state = 37, .external_lex_state = 3}, - [403] = {.lex_state = 37, .external_lex_state = 3}, + [401] = {.lex_state = 37, .external_lex_state = 4}, + [402] = {.lex_state = 37, .external_lex_state = 4}, + [403] = {.lex_state = 37, .external_lex_state = 2}, [404] = {.lex_state = 37, .external_lex_state = 3}, [405] = {.lex_state = 37, .external_lex_state = 3}, - [406] = {.lex_state = 37, .external_lex_state = 3}, - [407] = {.lex_state = 37, .external_lex_state = 3}, - [408] = {.lex_state = 37, .external_lex_state = 3}, - [409] = {.lex_state = 37, .external_lex_state = 3}, + [406] = {.lex_state = 37, .external_lex_state = 4}, + [407] = {.lex_state = 37, .external_lex_state = 4}, + [408] = {.lex_state = 37, .external_lex_state = 2}, + [409] = {.lex_state = 37, .external_lex_state = 2}, [410] = {.lex_state = 37, .external_lex_state = 3}, - [411] = {.lex_state = 37, .external_lex_state = 3}, - [412] = {.lex_state = 37, .external_lex_state = 3}, + [411] = {.lex_state = 37, .external_lex_state = 1}, + [412] = {.lex_state = 37, .external_lex_state = 2}, [413] = {.lex_state = 37, .external_lex_state = 3}, - [414] = {.lex_state = 37, .external_lex_state = 3}, + [414] = {.lex_state = 37, .external_lex_state = 1}, [415] = {.lex_state = 37, .external_lex_state = 3}, [416] = {.lex_state = 37, .external_lex_state = 3}, [417] = {.lex_state = 37, .external_lex_state = 3}, @@ -7917,12 +8150,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [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 = 4}, + [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}, @@ -7976,7 +8209,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [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}, @@ -8024,7 +8257,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [545] = {.lex_state = 37, .external_lex_state = 3}, [546] = {.lex_state = 37, .external_lex_state = 3}, [547] = {.lex_state = 37, .external_lex_state = 3}, - [548] = {.lex_state = 37, .external_lex_state = 2}, + [548] = {.lex_state = 37, .external_lex_state = 3}, [549] = {.lex_state = 37, .external_lex_state = 3}, [550] = {.lex_state = 37, .external_lex_state = 3}, [551] = {.lex_state = 37, .external_lex_state = 3}, @@ -8040,93 +8273,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [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}, + [568] = {.lex_state = 37, .external_lex_state = 4}, [569] = {.lex_state = 37, .external_lex_state = 3}, - [570] = {.lex_state = 37, .external_lex_state = 4}, + [570] = {.lex_state = 37, .external_lex_state = 2}, [571] = {.lex_state = 37, .external_lex_state = 3}, - [572] = {.lex_state = 37, .external_lex_state = 1}, - [573] = {.lex_state = 37, .external_lex_state = 2}, - [574] = {.lex_state = 37, .external_lex_state = 2}, - [575] = {.lex_state = 37, .external_lex_state = 2}, + [572] = {.lex_state = 37, .external_lex_state = 2}, + [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}, + [582] = {.lex_state = 37, .external_lex_state = 2}, + [583] = {.lex_state = 37, .external_lex_state = 4}, [584] = {.lex_state = 37, .external_lex_state = 3}, - [585] = {.lex_state = 37, .external_lex_state = 2}, - [586] = {.lex_state = 37, .external_lex_state = 2}, - [587] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 1}, - [590] = {.lex_state = 37, .external_lex_state = 2}, - [591] = {.lex_state = 37, .external_lex_state = 2}, - [592] = {.lex_state = 37, .external_lex_state = 2}, - [593] = {.lex_state = 37, .external_lex_state = 4}, - [594] = {.lex_state = 37, .external_lex_state = 2}, + [589] = {.lex_state = 37, .external_lex_state = 3}, + [590] = {.lex_state = 37, .external_lex_state = 3}, + [591] = {.lex_state = 37, .external_lex_state = 3}, + [592] = {.lex_state = 37, .external_lex_state = 3}, + [593] = {.lex_state = 37, .external_lex_state = 3}, + [594] = {.lex_state = 37, .external_lex_state = 1}, [595] = {.lex_state = 37, .external_lex_state = 2}, - [596] = {.lex_state = 37, .external_lex_state = 3}, + [596] = {.lex_state = 37, .external_lex_state = 2}, [597] = {.lex_state = 37, .external_lex_state = 2}, - [598] = {.lex_state = 37, .external_lex_state = 3}, + [598] = {.lex_state = 37, .external_lex_state = 2}, [599] = {.lex_state = 37, .external_lex_state = 3}, [600] = {.lex_state = 37, .external_lex_state = 3}, - [601] = {.lex_state = 37, .external_lex_state = 2}, - [602] = {.lex_state = 37, .external_lex_state = 2}, - [603] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 4}, - [606] = {.lex_state = 37, .external_lex_state = 4}, - [607] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, [609] = {.lex_state = 37, .external_lex_state = 2}, [610] = {.lex_state = 37, .external_lex_state = 2}, - [611] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [616] = {.lex_state = 37, .external_lex_state = 3}, [617] = {.lex_state = 37, .external_lex_state = 3}, - [618] = {.lex_state = 37, .external_lex_state = 2}, + [618] = {.lex_state = 37, .external_lex_state = 4}, [619] = {.lex_state = 37, .external_lex_state = 2}, [620] = {.lex_state = 37, .external_lex_state = 2}, - [621] = {.lex_state = 37, .external_lex_state = 2}, - [622] = {.lex_state = 37, .external_lex_state = 2}, - [623] = {.lex_state = 37, .external_lex_state = 2}, - [624] = {.lex_state = 37, .external_lex_state = 2}, - [625] = {.lex_state = 37, .external_lex_state = 2}, + [621] = {.lex_state = 37, .external_lex_state = 4}, + [622] = {.lex_state = 37, .external_lex_state = 4}, + [623] = {.lex_state = 37, .external_lex_state = 3}, + [624] = {.lex_state = 37, .external_lex_state = 3}, + [625] = {.lex_state = 37, .external_lex_state = 3}, [626] = {.lex_state = 37, .external_lex_state = 2}, - [627] = {.lex_state = 37, .external_lex_state = 2}, - [628] = {.lex_state = 37, .external_lex_state = 2}, + [627] = {.lex_state = 37, .external_lex_state = 4}, + [628] = {.lex_state = 37, .external_lex_state = 4}, [629] = {.lex_state = 37, .external_lex_state = 2}, - [630] = {.lex_state = 37, .external_lex_state = 2}, + [630] = {.lex_state = 37, .external_lex_state = 3}, [631] = {.lex_state = 37, .external_lex_state = 2}, [632] = {.lex_state = 37, .external_lex_state = 2}, - [633] = {.lex_state = 37, .external_lex_state = 2}, + [633] = {.lex_state = 37, .external_lex_state = 3}, [634] = {.lex_state = 37, .external_lex_state = 2}, [635] = {.lex_state = 37, .external_lex_state = 2}, - [636] = {.lex_state = 37, .external_lex_state = 2}, + [636] = {.lex_state = 37, .external_lex_state = 1}, [637] = {.lex_state = 37, .external_lex_state = 2}, [638] = {.lex_state = 37, .external_lex_state = 2}, - [639] = {.lex_state = 37, .external_lex_state = 2}, - [640] = {.lex_state = 37, .external_lex_state = 2}, - [641] = {.lex_state = 37, .external_lex_state = 2}, - [642] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 3}, [643] = {.lex_state = 37, .external_lex_state = 2}, [644] = {.lex_state = 37, .external_lex_state = 2}, [645] = {.lex_state = 37, .external_lex_state = 2}, - [646] = {.lex_state = 37, .external_lex_state = 2}, + [646] = {.lex_state = 37, .external_lex_state = 3}, [647] = {.lex_state = 37, .external_lex_state = 2}, [648] = {.lex_state = 37, .external_lex_state = 2}, [649] = {.lex_state = 37, .external_lex_state = 2}, - [650] = {.lex_state = 37, .external_lex_state = 3}, + [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}, @@ -8179,7 +8412,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [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}, @@ -8209,7 +8442,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [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}, @@ -8266,9 +8499,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [790] = {.lex_state = 37, .external_lex_state = 3}, [791] = {.lex_state = 37, .external_lex_state = 2}, - [792] = {.lex_state = 37, .external_lex_state = 2}, + [792] = {.lex_state = 37, .external_lex_state = 3}, [793] = {.lex_state = 37, .external_lex_state = 2}, [794] = {.lex_state = 37, .external_lex_state = 2}, [795] = {.lex_state = 37, .external_lex_state = 2}, @@ -8282,16 +8515,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4}, - [807] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 3}, + [809] = {.lex_state = 37, .external_lex_state = 2}, [810] = {.lex_state = 37, .external_lex_state = 2}, - [811] = {.lex_state = 37, .external_lex_state = 3}, + [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}, + [815] = {.lex_state = 37, .external_lex_state = 3}, [816] = {.lex_state = 37, .external_lex_state = 2}, [817] = {.lex_state = 37, .external_lex_state = 2}, [818] = {.lex_state = 37, .external_lex_state = 2}, @@ -8300,282 +8533,282 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1, .external_lex_state = 2}, - [825] = {.lex_state = 1, .external_lex_state = 2}, - [826] = {.lex_state = 1, .external_lex_state = 2}, - [827] = {.lex_state = 1, .external_lex_state = 2}, - [828] = {.lex_state = 1, .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 = 1, .external_lex_state = 2}, - [835] = {.lex_state = 1, .external_lex_state = 2}, - [836] = {.lex_state = 1, .external_lex_state = 2}, - [837] = {.lex_state = 1, .external_lex_state = 2}, - [838] = {.lex_state = 37, .external_lex_state = 3}, - [839] = {.lex_state = 37, .external_lex_state = 2}, - [840] = {.lex_state = 1, .external_lex_state = 2}, - [841] = {.lex_state = 37, .external_lex_state = 3}, + [834] = {.lex_state = 37, .external_lex_state = 2}, + [835] = {.lex_state = 37, .external_lex_state = 1}, + [836] = {.lex_state = 37, .external_lex_state = 4}, + [837] = {.lex_state = 37, .external_lex_state = 3}, + [838] = {.lex_state = 37, .external_lex_state = 2}, + [839] = {.lex_state = 37, .external_lex_state = 3}, + [840] = {.lex_state = 37, .external_lex_state = 2}, + [841] = {.lex_state = 37, .external_lex_state = 2}, [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 = 1}, - [847] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 4}, + [854] = {.lex_state = 37, .external_lex_state = 2}, [855] = {.lex_state = 37, .external_lex_state = 2}, - [856] = {.lex_state = 37, .external_lex_state = 4}, - [857] = {.lex_state = 37, .external_lex_state = 2}, - [858] = {.lex_state = 37, .external_lex_state = 2}, - [859] = {.lex_state = 37, .external_lex_state = 1}, - [860] = {.lex_state = 37, .external_lex_state = 1}, - [861] = {.lex_state = 37, .external_lex_state = 2}, - [862] = {.lex_state = 37, .external_lex_state = 1}, - [863] = {.lex_state = 37, .external_lex_state = 1}, - [864] = {.lex_state = 37, .external_lex_state = 1}, - [865] = {.lex_state = 37, .external_lex_state = 4}, + [856] = {.lex_state = 37, .external_lex_state = 2}, + [857] = {.lex_state = 1, .external_lex_state = 2}, + [858] = {.lex_state = 1, .external_lex_state = 2}, + [859] = {.lex_state = 1, .external_lex_state = 2}, + [860] = {.lex_state = 37, .external_lex_state = 2}, + [861] = {.lex_state = 1, .external_lex_state = 2}, + [862] = {.lex_state = 1, .external_lex_state = 2}, + [863] = {.lex_state = 37, .external_lex_state = 2}, + [864] = {.lex_state = 37, .external_lex_state = 2}, + [865] = {.lex_state = 37, .external_lex_state = 3}, [866] = {.lex_state = 37, .external_lex_state = 2}, [867] = {.lex_state = 37, .external_lex_state = 2}, [868] = {.lex_state = 37, .external_lex_state = 2}, - [869] = {.lex_state = 37, .external_lex_state = 2}, - [870] = {.lex_state = 37, .external_lex_state = 2}, - [871] = {.lex_state = 1, .external_lex_state = 3}, - [872] = {.lex_state = 1, .external_lex_state = 3}, - [873] = {.lex_state = 1, .external_lex_state = 3}, - [874] = {.lex_state = 1, .external_lex_state = 3}, - [875] = {.lex_state = 1, .external_lex_state = 3}, - [876] = {.lex_state = 37, .external_lex_state = 4}, - [877] = {.lex_state = 37, .external_lex_state = 4}, - [878] = {.lex_state = 37, .external_lex_state = 4}, - [879] = {.lex_state = 37, .external_lex_state = 2}, - [880] = {.lex_state = 37, .external_lex_state = 2}, - [881] = {.lex_state = 37, .external_lex_state = 2}, - [882] = {.lex_state = 37, .external_lex_state = 4}, + [869] = {.lex_state = 37, .external_lex_state = 3}, + [870] = {.lex_state = 1, .external_lex_state = 2}, + [871] = {.lex_state = 1, .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 = 2}, + [877] = {.lex_state = 37, .external_lex_state = 2}, + [878] = {.lex_state = 37, .external_lex_state = 1}, + [879] = {.lex_state = 37, .external_lex_state = 1}, + [880] = {.lex_state = 37, .external_lex_state = 4}, + [881] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, - [886] = {.lex_state = 1, .external_lex_state = 4}, - [887] = {.lex_state = 37, .external_lex_state = 4}, - [888] = {.lex_state = 37, .external_lex_state = 4}, - [889] = {.lex_state = 37, .external_lex_state = 4}, - [890] = {.lex_state = 37, .external_lex_state = 4}, - [891] = {.lex_state = 1, .external_lex_state = 4}, - [892] = {.lex_state = 1, .external_lex_state = 4}, - [893] = {.lex_state = 1, .external_lex_state = 4}, - [894] = {.lex_state = 1, .external_lex_state = 4}, - [895] = {.lex_state = 1, .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 = 2}, + [889] = {.lex_state = 37, .external_lex_state = 2}, + [890] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 2}, [896] = {.lex_state = 37, .external_lex_state = 2}, - [897] = {.lex_state = 37, .external_lex_state = 4}, - [898] = {.lex_state = 37, .external_lex_state = 2}, - [899] = {.lex_state = 37, .external_lex_state = 2}, - [900] = {.lex_state = 1, .external_lex_state = 2}, - [901] = {.lex_state = 37, .external_lex_state = 4}, - [902] = {.lex_state = 37, .external_lex_state = 2}, - [903] = {.lex_state = 37, .external_lex_state = 2}, - [904] = {.lex_state = 37, .external_lex_state = 4}, - [905] = {.lex_state = 1, .external_lex_state = 2}, - [906] = {.lex_state = 37, .external_lex_state = 4}, - [907] = {.lex_state = 37, .external_lex_state = 4}, - [908] = {.lex_state = 1, .external_lex_state = 2}, - [909] = {.lex_state = 1, .external_lex_state = 2}, - [910] = {.lex_state = 1, .external_lex_state = 2}, - [911] = {.lex_state = 1, .external_lex_state = 2}, + [897] = {.lex_state = 1, .external_lex_state = 3}, + [898] = {.lex_state = 37, .external_lex_state = 4}, + [899] = {.lex_state = 1, .external_lex_state = 3}, + [900] = {.lex_state = 37, .external_lex_state = 2}, + [901] = {.lex_state = 37, .external_lex_state = 2}, + [902] = {.lex_state = 1, .external_lex_state = 3}, + [903] = {.lex_state = 37, .external_lex_state = 4}, + [904] = {.lex_state = 1, .external_lex_state = 3}, + [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 = 4}, + [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 = 37, .external_lex_state = 2}, [913] = {.lex_state = 37, .external_lex_state = 2}, - [914] = {.lex_state = 37, .external_lex_state = 2}, - [915] = {.lex_state = 37, .external_lex_state = 2}, - [916] = {.lex_state = 37, .external_lex_state = 2}, - [917] = {.lex_state = 37, .external_lex_state = 2}, - [918] = {.lex_state = 37, .external_lex_state = 2}, - [919] = {.lex_state = 37, .external_lex_state = 2}, - [920] = {.lex_state = 37, .external_lex_state = 2}, - [921] = {.lex_state = 37, .external_lex_state = 2}, - [922] = {.lex_state = 37, .external_lex_state = 2}, - [923] = {.lex_state = 37, .external_lex_state = 2}, - [924] = {.lex_state = 2, .external_lex_state = 3}, - [925] = {.lex_state = 2, .external_lex_state = 2}, - [926] = {.lex_state = 2, .external_lex_state = 2}, - [927] = {.lex_state = 2, .external_lex_state = 2}, - [928] = {.lex_state = 2, .external_lex_state = 3}, - [929] = {.lex_state = 2, .external_lex_state = 3}, - [930] = {.lex_state = 2, .external_lex_state = 3}, - [931] = {.lex_state = 2, .external_lex_state = 2}, - [932] = {.lex_state = 2, .external_lex_state = 2}, - [933] = {.lex_state = 2, .external_lex_state = 3}, - [934] = {.lex_state = 37, .external_lex_state = 1}, - [935] = {.lex_state = 1, .external_lex_state = 3}, - [936] = {.lex_state = 2, .external_lex_state = 3}, - [937] = {.lex_state = 2, .external_lex_state = 2}, - [938] = {.lex_state = 37, .external_lex_state = 1}, - [939] = {.lex_state = 2, .external_lex_state = 3}, - [940] = {.lex_state = 2, .external_lex_state = 2}, - [941] = {.lex_state = 37, .external_lex_state = 1}, - [942] = {.lex_state = 37, .external_lex_state = 1}, - [943] = {.lex_state = 2, .external_lex_state = 2}, - [944] = {.lex_state = 1, .external_lex_state = 4}, - [945] = {.lex_state = 37, .external_lex_state = 1}, - [946] = {.lex_state = 37, .external_lex_state = 1}, - [947] = {.lex_state = 37, .external_lex_state = 1}, - [948] = {.lex_state = 2, .external_lex_state = 2}, - [949] = {.lex_state = 37, .external_lex_state = 1}, - [950] = {.lex_state = 37, .external_lex_state = 1}, - [951] = {.lex_state = 37, .external_lex_state = 1}, - [952] = {.lex_state = 37, .external_lex_state = 4}, - [953] = {.lex_state = 2, .external_lex_state = 2}, + [914] = {.lex_state = 1, .external_lex_state = 3}, + [915] = {.lex_state = 1, .external_lex_state = 4}, + [916] = {.lex_state = 1, .external_lex_state = 4}, + [917] = {.lex_state = 1, .external_lex_state = 4}, + [918] = {.lex_state = 37, .external_lex_state = 4}, + [919] = {.lex_state = 1, .external_lex_state = 4}, + [920] = {.lex_state = 1, .external_lex_state = 4}, + [921] = {.lex_state = 37, .external_lex_state = 4}, + [922] = {.lex_state = 37, .external_lex_state = 4}, + [923] = {.lex_state = 37, .external_lex_state = 4}, + [924] = {.lex_state = 37, .external_lex_state = 4}, + [925] = {.lex_state = 37, .external_lex_state = 2}, + [926] = {.lex_state = 37, .external_lex_state = 2}, + [927] = {.lex_state = 1, .external_lex_state = 2}, + [928] = {.lex_state = 37, .external_lex_state = 2}, + [929] = {.lex_state = 37, .external_lex_state = 2}, + [930] = {.lex_state = 37, .external_lex_state = 2}, + [931] = {.lex_state = 37, .external_lex_state = 2}, + [932] = {.lex_state = 37, .external_lex_state = 2}, + [933] = {.lex_state = 1, .external_lex_state = 2}, + [934] = {.lex_state = 37, .external_lex_state = 4}, + [935] = {.lex_state = 37, .external_lex_state = 4}, + [936] = {.lex_state = 37, .external_lex_state = 4}, + [937] = {.lex_state = 37, .external_lex_state = 2}, + [938] = {.lex_state = 1, .external_lex_state = 2}, + [939] = {.lex_state = 37, .external_lex_state = 4}, + [940] = {.lex_state = 37, .external_lex_state = 2}, + [941] = {.lex_state = 37, .external_lex_state = 4}, + [942] = {.lex_state = 37, .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 = 2}, + [946] = {.lex_state = 1, .external_lex_state = 2}, + [947] = {.lex_state = 1, .external_lex_state = 2}, + [948] = {.lex_state = 1, .external_lex_state = 2}, + [949] = {.lex_state = 37, .external_lex_state = 2}, + [950] = {.lex_state = 37, .external_lex_state = 2}, + [951] = {.lex_state = 37, .external_lex_state = 4}, + [952] = {.lex_state = 37, .external_lex_state = 2}, + [953] = {.lex_state = 37, .external_lex_state = 2}, [954] = {.lex_state = 37, .external_lex_state = 2}, - [955] = {.lex_state = 2, .external_lex_state = 2}, - [956] = {.lex_state = 37, .external_lex_state = 4}, - [957] = {.lex_state = 2, .external_lex_state = 2}, - [958] = {.lex_state = 2, .external_lex_state = 2}, - [959] = {.lex_state = 2, .external_lex_state = 2}, - [960] = {.lex_state = 37, .external_lex_state = 4}, - [961] = {.lex_state = 2, .external_lex_state = 2}, - [962] = {.lex_state = 37, .external_lex_state = 4}, - [963] = {.lex_state = 2, .external_lex_state = 2}, - [964] = {.lex_state = 2, .external_lex_state = 2}, - [965] = {.lex_state = 2, .external_lex_state = 2}, - [966] = {.lex_state = 2, .external_lex_state = 2}, - [967] = {.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 = 4}, + [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 = 2}, [968] = {.lex_state = 37, .external_lex_state = 2}, - [969] = {.lex_state = 3, .external_lex_state = 2}, + [969] = {.lex_state = 37, .external_lex_state = 2}, [970] = {.lex_state = 37, .external_lex_state = 2}, - [971] = {.lex_state = 0, .external_lex_state = 4}, - [972] = {.lex_state = 0, .external_lex_state = 4}, - [973] = {.lex_state = 0, .external_lex_state = 4}, - [974] = {.lex_state = 0, .external_lex_state = 4}, - [975] = {.lex_state = 0, .external_lex_state = 4}, - [976] = {.lex_state = 37, .external_lex_state = 2}, - [977] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, + [977] = {.lex_state = 2, .external_lex_state = 3}, [978] = {.lex_state = 2, .external_lex_state = 2}, - [979] = {.lex_state = 0, .external_lex_state = 4}, - [980] = {.lex_state = 0, .external_lex_state = 4}, - [981] = {.lex_state = 37, .external_lex_state = 2}, - [982] = {.lex_state = 37, .external_lex_state = 2}, - [983] = {.lex_state = 37, .external_lex_state = 2}, - [984] = {.lex_state = 37, .external_lex_state = 2}, - [985] = {.lex_state = 37, .external_lex_state = 2}, - [986] = {.lex_state = 37, .external_lex_state = 4}, - [987] = {.lex_state = 37, .external_lex_state = 4}, - [988] = {.lex_state = 37, .external_lex_state = 2}, - [989] = {.lex_state = 0, .external_lex_state = 4}, - [990] = {.lex_state = 37, .external_lex_state = 4}, - [991] = {.lex_state = 37, .external_lex_state = 2}, - [992] = {.lex_state = 37, .external_lex_state = 2}, - [993] = {.lex_state = 37, .external_lex_state = 2}, - [994] = {.lex_state = 37, .external_lex_state = 2}, - [995] = {.lex_state = 37, .external_lex_state = 4}, - [996] = {.lex_state = 2, .external_lex_state = 2}, - [997] = {.lex_state = 37, .external_lex_state = 4}, - [998] = {.lex_state = 37, .external_lex_state = 4}, - [999] = {.lex_state = 37, .external_lex_state = 2}, + [979] = {.lex_state = 2, .external_lex_state = 2}, + [980] = {.lex_state = 2, .external_lex_state = 3}, + [981] = {.lex_state = 2, .external_lex_state = 3}, + [982] = {.lex_state = 2, .external_lex_state = 3}, + [983] = {.lex_state = 2, .external_lex_state = 2}, + [984] = {.lex_state = 37, .external_lex_state = 1}, + [985] = {.lex_state = 2, .external_lex_state = 2}, + [986] = {.lex_state = 1, .external_lex_state = 3}, + [987] = {.lex_state = 2, .external_lex_state = 3}, + [988] = {.lex_state = 37, .external_lex_state = 1}, + [989] = {.lex_state = 37, .external_lex_state = 1}, + [990] = {.lex_state = 37, .external_lex_state = 1}, + [991] = {.lex_state = 37, .external_lex_state = 1}, + [992] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 2, .external_lex_state = 3}, + [997] = {.lex_state = 1, .external_lex_state = 4}, + [998] = {.lex_state = 37, .external_lex_state = 1}, + [999] = {.lex_state = 37, .external_lex_state = 1}, [1000] = {.lex_state = 37, .external_lex_state = 2}, - [1001] = {.lex_state = 2, .external_lex_state = 2}, - [1002] = {.lex_state = 0, .external_lex_state = 4}, - [1003] = {.lex_state = 37, .external_lex_state = 2}, - [1004] = {.lex_state = 37, .external_lex_state = 2}, - [1005] = {.lex_state = 0, .external_lex_state = 4}, - [1006] = {.lex_state = 0, .external_lex_state = 4}, + [1001] = {.lex_state = 37, .external_lex_state = 4}, + [1002] = {.lex_state = 37, .external_lex_state = 2}, + [1003] = {.lex_state = 3, .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 = 4}, - [1009] = {.lex_state = 2, .external_lex_state = 2}, - [1010] = {.lex_state = 37, .external_lex_state = 2}, - [1011] = {.lex_state = 37, .external_lex_state = 4}, - [1012] = {.lex_state = 2, .external_lex_state = 2}, - [1013] = {.lex_state = 37, .external_lex_state = 2}, + [1008] = {.lex_state = 37, .external_lex_state = 2}, + [1009] = {.lex_state = 37, .external_lex_state = 2}, + [1010] = {.lex_state = 0, .external_lex_state = 4}, + [1011] = {.lex_state = 0, .external_lex_state = 4}, + [1012] = {.lex_state = 0, .external_lex_state = 4}, + [1013] = {.lex_state = 37, .external_lex_state = 4}, [1014] = {.lex_state = 37, .external_lex_state = 2}, - [1015] = {.lex_state = 0, .external_lex_state = 4}, - [1016] = {.lex_state = 37, .external_lex_state = 4}, - [1017] = {.lex_state = 37, .external_lex_state = 4}, + [1015] = {.lex_state = 37, .external_lex_state = 4}, + [1016] = {.lex_state = 0, .external_lex_state = 4}, + [1017] = {.lex_state = 37, .external_lex_state = 2}, [1018] = {.lex_state = 0, .external_lex_state = 4}, - [1019] = {.lex_state = 37, .external_lex_state = 2}, + [1019] = {.lex_state = 0, .external_lex_state = 4}, [1020] = {.lex_state = 0, .external_lex_state = 4}, - [1021] = {.lex_state = 37, .external_lex_state = 2}, - [1022] = {.lex_state = 1, .external_lex_state = 3}, - [1023] = {.lex_state = 37, .external_lex_state = 2}, - [1024] = {.lex_state = 37, .external_lex_state = 2}, - [1025] = {.lex_state = 37, .external_lex_state = 4}, - [1026] = {.lex_state = 37, .external_lex_state = 4}, + [1021] = {.lex_state = 1, .external_lex_state = 3}, + [1022] = {.lex_state = 2, .external_lex_state = 2}, + [1023] = {.lex_state = 2, .external_lex_state = 2}, + [1024] = {.lex_state = 2, .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 = 1, .external_lex_state = 3}, - [1030] = {.lex_state = 37, .external_lex_state = 2}, - [1031] = {.lex_state = 0, .external_lex_state = 4}, - [1032] = {.lex_state = 0, .external_lex_state = 4}, + [1028] = {.lex_state = 37, .external_lex_state = 2}, + [1029] = {.lex_state = 37, .external_lex_state = 4}, + [1030] = {.lex_state = 37, .external_lex_state = 4}, + [1031] = {.lex_state = 37, .external_lex_state = 4}, + [1032] = {.lex_state = 37, .external_lex_state = 4}, [1033] = {.lex_state = 37, .external_lex_state = 2}, - [1034] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 3}, - [1038] = {.lex_state = 37, .external_lex_state = 2}, - [1039] = {.lex_state = 37, .external_lex_state = 4}, + [1036] = {.lex_state = 37, .external_lex_state = 4}, + [1037] = {.lex_state = 37, .external_lex_state = 4}, + [1038] = {.lex_state = 1, .external_lex_state = 3}, + [1039] = {.lex_state = 37, .external_lex_state = 2}, [1040] = {.lex_state = 37, .external_lex_state = 2}, [1041] = {.lex_state = 37, .external_lex_state = 4}, [1042] = {.lex_state = 37, .external_lex_state = 2}, - [1043] = {.lex_state = 37, .external_lex_state = 4}, - [1044] = {.lex_state = 1, .external_lex_state = 4}, - [1045] = {.lex_state = 37, .external_lex_state = 4}, - [1046] = {.lex_state = 37, .external_lex_state = 2}, - [1047] = {.lex_state = 37, .external_lex_state = 4}, - [1048] = {.lex_state = 37, .external_lex_state = 4}, - [1049] = {.lex_state = 37, .external_lex_state = 2}, - [1050] = {.lex_state = 37, .external_lex_state = 4}, - [1051] = {.lex_state = 37, .external_lex_state = 4}, - [1052] = {.lex_state = 37, .external_lex_state = 2}, - [1053] = {.lex_state = 2, .external_lex_state = 2}, - [1054] = {.lex_state = 37, .external_lex_state = 4}, - [1055] = {.lex_state = 37, .external_lex_state = 4}, - [1056] = {.lex_state = 37, .external_lex_state = 4}, - [1057] = {.lex_state = 37, .external_lex_state = 3}, - [1058] = {.lex_state = 37, .external_lex_state = 2}, - [1059] = {.lex_state = 37, .external_lex_state = 4}, - [1060] = {.lex_state = 37, .external_lex_state = 4}, - [1061] = {.lex_state = 1, .external_lex_state = 4}, - [1062] = {.lex_state = 37, .external_lex_state = 4}, - [1063] = {.lex_state = 37, .external_lex_state = 4}, - [1064] = {.lex_state = 37, .external_lex_state = 4}, - [1065] = {.lex_state = 37, .external_lex_state = 4}, - [1066] = {.lex_state = 2, .external_lex_state = 2}, - [1067] = {.lex_state = 37, .external_lex_state = 4}, - [1068] = {.lex_state = 37, .external_lex_state = 4}, - [1069] = {.lex_state = 37, .external_lex_state = 4}, + [1043] = {.lex_state = 37, .external_lex_state = 2}, + [1044] = {.lex_state = 37, .external_lex_state = 2}, + [1045] = {.lex_state = 37, .external_lex_state = 2}, + [1046] = {.lex_state = 0, .external_lex_state = 4}, + [1047] = {.lex_state = 0, .external_lex_state = 4}, + [1048] = {.lex_state = 2, .external_lex_state = 2}, + [1049] = {.lex_state = 0, .external_lex_state = 4}, + [1050] = {.lex_state = 37, .external_lex_state = 2}, + [1051] = {.lex_state = 37, .external_lex_state = 2}, + [1052] = {.lex_state = 37, .external_lex_state = 4}, + [1053] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 0, .external_lex_state = 4}, + [1058] = {.lex_state = 37, .external_lex_state = 4}, + [1059] = {.lex_state = 0, .external_lex_state = 4}, + [1060] = {.lex_state = 37, .external_lex_state = 2}, + [1061] = {.lex_state = 37, .external_lex_state = 4}, + [1062] = {.lex_state = 37, .external_lex_state = 2}, + [1063] = {.lex_state = 37, .external_lex_state = 2}, + [1064] = {.lex_state = 37, .external_lex_state = 2}, + [1065] = {.lex_state = 37, .external_lex_state = 2}, + [1066] = {.lex_state = 37, .external_lex_state = 2}, + [1067] = {.lex_state = 37, .external_lex_state = 2}, + [1068] = {.lex_state = 37, .external_lex_state = 2}, + [1069] = {.lex_state = 37, .external_lex_state = 2}, [1070] = {.lex_state = 37, .external_lex_state = 4}, - [1071] = {.lex_state = 37, .external_lex_state = 4}, + [1071] = {.lex_state = 0, .external_lex_state = 4}, [1072] = {.lex_state = 37, .external_lex_state = 4}, - [1073] = {.lex_state = 37, .external_lex_state = 4}, - [1074] = {.lex_state = 37, .external_lex_state = 4}, - [1075] = {.lex_state = 37, .external_lex_state = 4}, - [1076] = {.lex_state = 37, .external_lex_state = 4}, - [1077] = {.lex_state = 37, .external_lex_state = 4}, - [1078] = {.lex_state = 37, .external_lex_state = 4}, - [1079] = {.lex_state = 37, .external_lex_state = 4}, - [1080] = {.lex_state = 37, .external_lex_state = 4}, - [1081] = {.lex_state = 37, .external_lex_state = 4}, - [1082] = {.lex_state = 37, .external_lex_state = 4}, - [1083] = {.lex_state = 37, .external_lex_state = 4}, + [1073] = {.lex_state = 0, .external_lex_state = 4}, + [1074] = {.lex_state = 37, .external_lex_state = 2}, + [1075] = {.lex_state = 37, .external_lex_state = 2}, + [1076] = {.lex_state = 0, .external_lex_state = 4}, + [1077] = {.lex_state = 37, .external_lex_state = 2}, + [1078] = {.lex_state = 0, .external_lex_state = 4}, + [1079] = {.lex_state = 37, .external_lex_state = 2}, + [1080] = {.lex_state = 0, .external_lex_state = 4}, + [1081] = {.lex_state = 0, .external_lex_state = 4}, + [1082] = {.lex_state = 37, .external_lex_state = 2}, + [1083] = {.lex_state = 1, .external_lex_state = 4}, [1084] = {.lex_state = 37, .external_lex_state = 4}, - [1085] = {.lex_state = 37, .external_lex_state = 2}, - [1086] = {.lex_state = 37, .external_lex_state = 2}, - [1087] = {.lex_state = 37, .external_lex_state = 4}, - [1088] = {.lex_state = 37, .external_lex_state = 4}, + [1085] = {.lex_state = 37, .external_lex_state = 4}, + [1086] = {.lex_state = 37, .external_lex_state = 4}, + [1087] = {.lex_state = 37, .external_lex_state = 2}, + [1088] = {.lex_state = 2, .external_lex_state = 2}, [1089] = {.lex_state = 37, .external_lex_state = 4}, [1090] = {.lex_state = 37, .external_lex_state = 4}, [1091] = {.lex_state = 37, .external_lex_state = 4}, [1092] = {.lex_state = 37, .external_lex_state = 4}, [1093] = {.lex_state = 37, .external_lex_state = 4}, - [1094] = {.lex_state = 37, .external_lex_state = 4}, + [1094] = {.lex_state = 1, .external_lex_state = 4}, [1095] = {.lex_state = 37, .external_lex_state = 4}, - [1096] = {.lex_state = 37, .external_lex_state = 4}, - [1097] = {.lex_state = 2, .external_lex_state = 2}, + [1096] = {.lex_state = 37, .external_lex_state = 2}, + [1097] = {.lex_state = 37, .external_lex_state = 2}, [1098] = {.lex_state = 37, .external_lex_state = 4}, - [1099] = {.lex_state = 37, .external_lex_state = 4}, + [1099] = {.lex_state = 37, .external_lex_state = 3}, [1100] = {.lex_state = 37, .external_lex_state = 4}, [1101] = {.lex_state = 37, .external_lex_state = 4}, [1102] = {.lex_state = 37, .external_lex_state = 2}, @@ -8583,16 +8816,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1104] = {.lex_state = 37, .external_lex_state = 2}, [1105] = {.lex_state = 37, .external_lex_state = 4}, [1106] = {.lex_state = 37, .external_lex_state = 4}, - [1107] = {.lex_state = 37, .external_lex_state = 4}, - [1108] = {.lex_state = 37, .external_lex_state = 4}, + [1107] = {.lex_state = 37, .external_lex_state = 2}, + [1108] = {.lex_state = 37, .external_lex_state = 2}, [1109] = {.lex_state = 37, .external_lex_state = 4}, - [1110] = {.lex_state = 37, .external_lex_state = 4}, + [1110] = {.lex_state = 2, .external_lex_state = 2}, [1111] = {.lex_state = 37, .external_lex_state = 4}, [1112] = {.lex_state = 37, .external_lex_state = 4}, - [1113] = {.lex_state = 37, .external_lex_state = 4}, - [1114] = {.lex_state = 37, .external_lex_state = 4}, + [1113] = {.lex_state = 37, .external_lex_state = 2}, + [1114] = {.lex_state = 37, .external_lex_state = 3}, [1115] = {.lex_state = 37, .external_lex_state = 4}, - [1116] = {.lex_state = 37, .external_lex_state = 2}, + [1116] = {.lex_state = 37, .external_lex_state = 4}, [1117] = {.lex_state = 37, .external_lex_state = 4}, [1118] = {.lex_state = 37, .external_lex_state = 4}, [1119] = {.lex_state = 37, .external_lex_state = 4}, @@ -8605,7 +8838,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1126] = {.lex_state = 37, .external_lex_state = 4}, [1127] = {.lex_state = 37, .external_lex_state = 4}, [1128] = {.lex_state = 37, .external_lex_state = 4}, - [1129] = {.lex_state = 37, .external_lex_state = 4}, + [1129] = {.lex_state = 37, .external_lex_state = 2}, [1130] = {.lex_state = 37, .external_lex_state = 4}, [1131] = {.lex_state = 37, .external_lex_state = 4}, [1132] = {.lex_state = 37, .external_lex_state = 4}, @@ -8617,19 +8850,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1138] = {.lex_state = 37, .external_lex_state = 4}, [1139] = {.lex_state = 37, .external_lex_state = 4}, [1140] = {.lex_state = 37, .external_lex_state = 4}, - [1141] = {.lex_state = 37, .external_lex_state = 4}, + [1141] = {.lex_state = 37, .external_lex_state = 2}, [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}, + [1145] = {.lex_state = 2, .external_lex_state = 2}, + [1146] = {.lex_state = 37, .external_lex_state = 2}, [1147] = {.lex_state = 37, .external_lex_state = 4}, - [1148] = {.lex_state = 37, .external_lex_state = 4}, + [1148] = {.lex_state = 37, .external_lex_state = 2}, [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}, + [1153] = {.lex_state = 37, .external_lex_state = 2}, [1154] = {.lex_state = 37, .external_lex_state = 4}, [1155] = {.lex_state = 37, .external_lex_state = 4}, [1156] = {.lex_state = 37, .external_lex_state = 4}, @@ -8639,7 +8872,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1163] = {.lex_state = 2, .external_lex_state = 2}, [1164] = {.lex_state = 37, .external_lex_state = 4}, [1165] = {.lex_state = 37, .external_lex_state = 4}, [1166] = {.lex_state = 37, .external_lex_state = 4}, @@ -8657,35 +8890,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [1181] = {.lex_state = 37, .external_lex_state = 4}, [1182] = {.lex_state = 37, .external_lex_state = 4}, [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 = 2}, + [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 = 2}, - [1190] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 37, .external_lex_state = 4}, [1193] = {.lex_state = 37, .external_lex_state = 4}, - [1194] = {.lex_state = 37, .external_lex_state = 2}, + [1194] = {.lex_state = 37, .external_lex_state = 4}, [1195] = {.lex_state = 37, .external_lex_state = 4}, - [1196] = {.lex_state = 37, .external_lex_state = 2}, + [1196] = {.lex_state = 37, .external_lex_state = 4}, [1197] = {.lex_state = 37, .external_lex_state = 4}, [1198] = {.lex_state = 37, .external_lex_state = 4}, - [1199] = {.lex_state = 37, .external_lex_state = 2}, - [1200] = {.lex_state = 37, .external_lex_state = 2}, - [1201] = {.lex_state = 37, .external_lex_state = 2}, + [1199] = {.lex_state = 37, .external_lex_state = 4}, + [1200] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, + [1204] = {.lex_state = 37, .external_lex_state = 4}, [1205] = {.lex_state = 37, .external_lex_state = 4}, - [1206] = {.lex_state = 2, .external_lex_state = 2}, + [1206] = {.lex_state = 37, .external_lex_state = 4}, [1207] = {.lex_state = 37, .external_lex_state = 4}, [1208] = {.lex_state = 37, .external_lex_state = 4}, - [1209] = {.lex_state = 37, .external_lex_state = 2}, + [1209] = {.lex_state = 37, .external_lex_state = 4}, [1210] = {.lex_state = 37, .external_lex_state = 4}, [1211] = {.lex_state = 37, .external_lex_state = 4}, [1212] = {.lex_state = 37, .external_lex_state = 4}, @@ -8694,604 +8927,604 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 2}, + [1218] = {.lex_state = 37, .external_lex_state = 2}, + [1219] = {.lex_state = 37, .external_lex_state = 4}, + [1220] = {.lex_state = 37, .external_lex_state = 4}, [1221] = {.lex_state = 37, .external_lex_state = 4}, [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}, + [1225] = {.lex_state = 37, .external_lex_state = 2}, [1226] = {.lex_state = 37, .external_lex_state = 4}, [1227] = {.lex_state = 37, .external_lex_state = 4}, - [1228] = {.lex_state = 37, .external_lex_state = 4}, + [1228] = {.lex_state = 37, .external_lex_state = 2}, [1229] = {.lex_state = 37, .external_lex_state = 4}, [1230] = {.lex_state = 37, .external_lex_state = 4}, - [1231] = {.lex_state = 37, .external_lex_state = 4}, + [1231] = {.lex_state = 37, .external_lex_state = 2}, [1232] = {.lex_state = 37, .external_lex_state = 4}, - [1233] = {.lex_state = 2, .external_lex_state = 2}, + [1233] = {.lex_state = 37, .external_lex_state = 2}, [1234] = {.lex_state = 37, .external_lex_state = 4}, [1235] = {.lex_state = 37, .external_lex_state = 4}, - [1236] = {.lex_state = 37, .external_lex_state = 4}, + [1236] = {.lex_state = 37, .external_lex_state = 2}, [1237] = {.lex_state = 37, .external_lex_state = 4}, [1238] = {.lex_state = 37, .external_lex_state = 4}, [1239] = {.lex_state = 37, .external_lex_state = 4}, [1240] = {.lex_state = 37, .external_lex_state = 4}, - [1241] = {.lex_state = 37, .external_lex_state = 4}, + [1241] = {.lex_state = 37, .external_lex_state = 2}, [1242] = {.lex_state = 37, .external_lex_state = 4}, - [1243] = {.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 = 2, .external_lex_state = 2}, + [1247] = {.lex_state = 37, .external_lex_state = 2}, [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}, + [1249] = {.lex_state = 37, .external_lex_state = 2}, + [1250] = {.lex_state = 37, .external_lex_state = 2}, + [1251] = {.lex_state = 37, .external_lex_state = 2}, [1252] = {.lex_state = 37, .external_lex_state = 4}, [1253] = {.lex_state = 37, .external_lex_state = 4}, - [1254] = {.lex_state = 37, .external_lex_state = 4}, + [1254] = {.lex_state = 37, .external_lex_state = 2}, [1255] = {.lex_state = 37, .external_lex_state = 4}, [1256] = {.lex_state = 37, .external_lex_state = 4}, [1257] = {.lex_state = 37, .external_lex_state = 4}, - [1258] = {.lex_state = 37, .external_lex_state = 4}, - [1259] = {.lex_state = 37, .external_lex_state = 4}, - [1260] = {.lex_state = 37, .external_lex_state = 4}, - [1261] = {.lex_state = 37, .external_lex_state = 4}, + [1258] = {.lex_state = 37, .external_lex_state = 2}, + [1259] = {.lex_state = 37, .external_lex_state = 2}, + [1260] = {.lex_state = 37, .external_lex_state = 2}, + [1261] = {.lex_state = 37, .external_lex_state = 2}, [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}, + [1266] = {.lex_state = 2, .external_lex_state = 2}, [1267] = {.lex_state = 37, .external_lex_state = 4}, - [1268] = {.lex_state = 37, .external_lex_state = 4}, - [1269] = {.lex_state = 37, .external_lex_state = 2}, - [1270] = {.lex_state = 37, .external_lex_state = 2}, + [1268] = {.lex_state = 2, .external_lex_state = 2}, + [1269] = {.lex_state = 37, .external_lex_state = 4}, + [1270] = {.lex_state = 37, .external_lex_state = 4}, [1271] = {.lex_state = 37, .external_lex_state = 2}, - [1272] = {.lex_state = 3, .external_lex_state = 2}, - [1273] = {.lex_state = 3, .external_lex_state = 2}, - [1274] = {.lex_state = 3, .external_lex_state = 2}, - [1275] = {.lex_state = 3, .external_lex_state = 2}, - [1276] = {.lex_state = 3, .external_lex_state = 2}, - [1277] = {.lex_state = 37, .external_lex_state = 2}, - [1278] = {.lex_state = 37, .external_lex_state = 2}, - [1279] = {.lex_state = 37, .external_lex_state = 2}, - [1280] = {.lex_state = 37, .external_lex_state = 2}, - [1281] = {.lex_state = 37, .external_lex_state = 3}, - [1282] = {.lex_state = 4, .external_lex_state = 2}, - [1283] = {.lex_state = 4, .external_lex_state = 2}, - [1284] = {.lex_state = 4, .external_lex_state = 2}, - [1285] = {.lex_state = 4, .external_lex_state = 2}, - [1286] = {.lex_state = 4, .external_lex_state = 2}, - [1287] = {.lex_state = 2, .external_lex_state = 3}, - [1288] = {.lex_state = 2, .external_lex_state = 2}, - [1289] = {.lex_state = 2, .external_lex_state = 2}, - [1290] = {.lex_state = 2, .external_lex_state = 3}, - [1291] = {.lex_state = 2, .external_lex_state = 3}, - [1292] = {.lex_state = 37, .external_lex_state = 3}, - [1293] = {.lex_state = 4, .external_lex_state = 3}, - [1294] = {.lex_state = 2, .external_lex_state = 3}, - [1295] = {.lex_state = 2, .external_lex_state = 2}, - [1296] = {.lex_state = 37, .external_lex_state = 2}, - [1297] = {.lex_state = 4, .external_lex_state = 3}, - [1298] = {.lex_state = 4, .external_lex_state = 3}, - [1299] = {.lex_state = 2, .external_lex_state = 2}, - [1300] = {.lex_state = 4, .external_lex_state = 3}, - [1301] = {.lex_state = 4, .external_lex_state = 3}, - [1302] = {.lex_state = 2, .external_lex_state = 3}, - [1303] = {.lex_state = 37, .external_lex_state = 2}, - [1304] = {.lex_state = 37, .external_lex_state = 2}, - [1305] = {.lex_state = 37, .external_lex_state = 2}, - [1306] = {.lex_state = 37, .external_lex_state = 2}, - [1307] = {.lex_state = 37, .external_lex_state = 2}, + [1272] = {.lex_state = 37, .external_lex_state = 4}, + [1273] = {.lex_state = 37, .external_lex_state = 4}, + [1274] = {.lex_state = 37, .external_lex_state = 2}, + [1275] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [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 = 2}, + [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 = 2, .external_lex_state = 2}, - [1309] = {.lex_state = 37, .external_lex_state = 2}, - [1310] = {.lex_state = 3, .external_lex_state = 3}, - [1311] = {.lex_state = 37, .external_lex_state = 2}, - [1312] = {.lex_state = 37, .external_lex_state = 2}, - [1313] = {.lex_state = 37, .external_lex_state = 2}, - [1314] = {.lex_state = 37, .external_lex_state = 2}, - [1315] = {.lex_state = 37, .external_lex_state = 2}, - [1316] = {.lex_state = 0, .external_lex_state = 3}, - [1317] = {.lex_state = 37, .external_lex_state = 2}, - [1318] = {.lex_state = 37, .external_lex_state = 2}, - [1319] = {.lex_state = 37, .external_lex_state = 2}, - [1320] = {.lex_state = 37, .external_lex_state = 2}, - [1321] = {.lex_state = 2, .external_lex_state = 2}, - [1322] = {.lex_state = 37, .external_lex_state = 2}, - [1323] = {.lex_state = 2, .external_lex_state = 2}, - [1324] = {.lex_state = 37, .external_lex_state = 2}, - [1325] = {.lex_state = 2, .external_lex_state = 3}, - [1326] = {.lex_state = 37, .external_lex_state = 2}, - [1327] = {.lex_state = 37, .external_lex_state = 2}, - [1328] = {.lex_state = 37, .external_lex_state = 2}, - [1329] = {.lex_state = 2, .external_lex_state = 2}, - [1330] = {.lex_state = 37, .external_lex_state = 3}, - [1331] = {.lex_state = 37, .external_lex_state = 2}, - [1332] = {.lex_state = 37, .external_lex_state = 2}, - [1333] = {.lex_state = 37, .external_lex_state = 2}, - [1334] = {.lex_state = 37, .external_lex_state = 2}, - [1335] = {.lex_state = 37, .external_lex_state = 2}, + [1309] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 4}, + [1314] = {.lex_state = 37, .external_lex_state = 4}, + [1315] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, + [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 = 2}, - [1337] = {.lex_state = 0, .external_lex_state = 2}, - [1338] = {.lex_state = 2, .external_lex_state = 3}, - [1339] = {.lex_state = 37, .external_lex_state = 2}, - [1340] = {.lex_state = 37, .external_lex_state = 2}, - [1341] = {.lex_state = 37, .external_lex_state = 2}, + [1337] = {.lex_state = 3, .external_lex_state = 2}, + [1338] = {.lex_state = 3, .external_lex_state = 2}, + [1339] = {.lex_state = 3, .external_lex_state = 2}, + [1340] = {.lex_state = 3, .external_lex_state = 2}, + [1341] = {.lex_state = 3, .external_lex_state = 2}, [1342] = {.lex_state = 37, .external_lex_state = 2}, - [1343] = {.lex_state = 2, .external_lex_state = 2}, - [1344] = {.lex_state = 37, .external_lex_state = 1}, + [1343] = {.lex_state = 37, .external_lex_state = 2}, + [1344] = {.lex_state = 37, .external_lex_state = 2}, [1345] = {.lex_state = 37, .external_lex_state = 2}, - [1346] = {.lex_state = 37, .external_lex_state = 2}, - [1347] = {.lex_state = 37, .external_lex_state = 2}, + [1346] = {.lex_state = 37, .external_lex_state = 3}, + [1347] = {.lex_state = 4, .external_lex_state = 2}, [1348] = {.lex_state = 37, .external_lex_state = 2}, - [1349] = {.lex_state = 37, .external_lex_state = 2}, - [1350] = {.lex_state = 37, .external_lex_state = 2}, + [1349] = {.lex_state = 4, .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 = 37, .external_lex_state = 2}, - [1354] = {.lex_state = 37, .external_lex_state = 2}, - [1355] = {.lex_state = 2, .external_lex_state = 2}, - [1356] = {.lex_state = 37, .external_lex_state = 2}, - [1357] = {.lex_state = 37, .external_lex_state = 2}, - [1358] = {.lex_state = 37, .external_lex_state = 2}, - [1359] = {.lex_state = 3, .external_lex_state = 3}, - [1360] = {.lex_state = 3, .external_lex_state = 3}, - [1361] = {.lex_state = 3, .external_lex_state = 3}, - [1362] = {.lex_state = 3, .external_lex_state = 3}, - [1363] = {.lex_state = 37, .external_lex_state = 2}, - [1364] = {.lex_state = 37, .external_lex_state = 2}, - [1365] = {.lex_state = 37, .external_lex_state = 2}, - [1366] = {.lex_state = 37, .external_lex_state = 2}, - [1367] = {.lex_state = 37, .external_lex_state = 1}, - [1368] = {.lex_state = 2, .external_lex_state = 2}, - [1369] = {.lex_state = 37, .external_lex_state = 2}, - [1370] = {.lex_state = 2, .external_lex_state = 2}, + [1352] = {.lex_state = 4, .external_lex_state = 2}, + [1353] = {.lex_state = 4, .external_lex_state = 2}, + [1354] = {.lex_state = 2, .external_lex_state = 2}, + [1355] = {.lex_state = 2, .external_lex_state = 3}, + [1356] = {.lex_state = 2, .external_lex_state = 3}, + [1357] = {.lex_state = 2, .external_lex_state = 2}, + [1358] = {.lex_state = 2, .external_lex_state = 3}, + [1359] = {.lex_state = 2, .external_lex_state = 3}, + [1360] = {.lex_state = 37, .external_lex_state = 3}, + [1361] = {.lex_state = 2, .external_lex_state = 2}, + [1362] = {.lex_state = 2, .external_lex_state = 2}, + [1363] = {.lex_state = 4, .external_lex_state = 3}, + [1364] = {.lex_state = 4, .external_lex_state = 3}, + [1365] = {.lex_state = 4, .external_lex_state = 3}, + [1366] = {.lex_state = 4, .external_lex_state = 3}, + [1367] = {.lex_state = 37, .external_lex_state = 2}, + [1368] = {.lex_state = 4, .external_lex_state = 3}, + [1369] = {.lex_state = 2, .external_lex_state = 3}, + [1370] = {.lex_state = 37, .external_lex_state = 2}, [1371] = {.lex_state = 37, .external_lex_state = 2}, [1372] = {.lex_state = 37, .external_lex_state = 2}, - [1373] = {.lex_state = 2, .external_lex_state = 2}, + [1373] = {.lex_state = 37, .external_lex_state = 2}, [1374] = {.lex_state = 37, .external_lex_state = 2}, - [1375] = {.lex_state = 37, .external_lex_state = 2}, - [1376] = {.lex_state = 37, .external_lex_state = 2}, - [1377] = {.lex_state = 37, .external_lex_state = 1}, - [1378] = {.lex_state = 2, .external_lex_state = 2}, + [1375] = {.lex_state = 2, .external_lex_state = 2}, + [1376] = {.lex_state = 2, .external_lex_state = 3}, + [1377] = {.lex_state = 37, .external_lex_state = 2}, + [1378] = {.lex_state = 37, .external_lex_state = 2}, [1379] = {.lex_state = 37, .external_lex_state = 2}, - [1380] = {.lex_state = 37, .external_lex_state = 2}, - [1381] = {.lex_state = 37, .external_lex_state = 2}, + [1380] = {.lex_state = 0, .external_lex_state = 2}, + [1381] = {.lex_state = 3, .external_lex_state = 3}, [1382] = {.lex_state = 37, .external_lex_state = 2}, [1383] = {.lex_state = 37, .external_lex_state = 2}, - [1384] = {.lex_state = 2, .external_lex_state = 2}, - [1385] = {.lex_state = 37, .external_lex_state = 2}, - [1386] = {.lex_state = 37, .external_lex_state = 4}, - [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 = 2}, - [1391] = {.lex_state = 37, .external_lex_state = 2}, - [1392] = {.lex_state = 37, .external_lex_state = 2}, + [1384] = {.lex_state = 37, .external_lex_state = 2}, + [1385] = {.lex_state = 2, .external_lex_state = 3}, + [1386] = {.lex_state = 3, .external_lex_state = 3}, + [1387] = {.lex_state = 2, .external_lex_state = 2}, + [1388] = {.lex_state = 3, .external_lex_state = 3}, + [1389] = {.lex_state = 3, .external_lex_state = 3}, + [1390] = {.lex_state = 3, .external_lex_state = 3}, + [1391] = {.lex_state = 2, .external_lex_state = 2}, + [1392] = {.lex_state = 37, .external_lex_state = 3}, [1393] = {.lex_state = 37, .external_lex_state = 2}, - [1394] = {.lex_state = 2, .external_lex_state = 2}, - [1395] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 37, .external_lex_state = 2}, [1401] = {.lex_state = 37, .external_lex_state = 2}, - [1402] = {.lex_state = 37, .external_lex_state = 2}, + [1402] = {.lex_state = 37, .external_lex_state = 1}, [1403] = {.lex_state = 37, .external_lex_state = 2}, [1404] = {.lex_state = 37, .external_lex_state = 2}, [1405] = {.lex_state = 37, .external_lex_state = 2}, - [1406] = {.lex_state = 37, .external_lex_state = 1}, + [1406] = {.lex_state = 37, .external_lex_state = 2}, [1407] = {.lex_state = 37, .external_lex_state = 2}, [1408] = {.lex_state = 37, .external_lex_state = 2}, [1409] = {.lex_state = 37, .external_lex_state = 2}, - [1410] = {.lex_state = 37, .external_lex_state = 2}, + [1410] = {.lex_state = 0, .external_lex_state = 3}, [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 = 2, .external_lex_state = 2}, - [1416] = {.lex_state = 2, .external_lex_state = 2}, - [1417] = {.lex_state = 2, .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 = 2, .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 = 1}, - [1422] = {.lex_state = 2, .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 = 4, .external_lex_state = 2}, - [1425] = {.lex_state = 4, .external_lex_state = 2}, - [1426] = {.lex_state = 4, .external_lex_state = 2}, - [1427] = {.lex_state = 4, .external_lex_state = 2}, - [1428] = {.lex_state = 4, .external_lex_state = 2}, + [1424] = {.lex_state = 37, .external_lex_state = 2}, + [1425] = {.lex_state = 37, .external_lex_state = 2}, + [1426] = {.lex_state = 37, .external_lex_state = 2}, + [1427] = {.lex_state = 37, .external_lex_state = 2}, + [1428] = {.lex_state = 37, .external_lex_state = 2}, [1429] = {.lex_state = 37, .external_lex_state = 2}, - [1430] = {.lex_state = 2, .external_lex_state = 2}, - [1431] = {.lex_state = 37, .external_lex_state = 1}, + [1430] = {.lex_state = 37, .external_lex_state = 1}, + [1431] = {.lex_state = 37, .external_lex_state = 2}, [1432] = {.lex_state = 37, .external_lex_state = 2}, - [1433] = {.lex_state = 37, .external_lex_state = 2}, - [1434] = {.lex_state = 2, .external_lex_state = 2}, - [1435] = {.lex_state = 37, .external_lex_state = 1}, - [1436] = {.lex_state = 37, .external_lex_state = 2}, - [1437] = {.lex_state = 37, .external_lex_state = 4}, - [1438] = {.lex_state = 2, .external_lex_state = 2}, - [1439] = {.lex_state = 2, .external_lex_state = 2}, - [1440] = {.lex_state = 2, .external_lex_state = 2}, - [1441] = {.lex_state = 2, .external_lex_state = 2}, - [1442] = {.lex_state = 2, .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 = 4}, + [1437] = {.lex_state = 37, .external_lex_state = 2}, + [1438] = {.lex_state = 37, .external_lex_state = 1}, + [1439] = {.lex_state = 37, .external_lex_state = 2}, + [1440] = {.lex_state = 37, .external_lex_state = 2}, + [1441] = {.lex_state = 37, .external_lex_state = 2}, + [1442] = {.lex_state = 37, .external_lex_state = 2}, [1443] = {.lex_state = 37, .external_lex_state = 2}, [1444] = {.lex_state = 37, .external_lex_state = 2}, - [1445] = {.lex_state = 2, .external_lex_state = 2}, - [1446] = {.lex_state = 2, .external_lex_state = 2}, - [1447] = {.lex_state = 37, .external_lex_state = 1}, - [1448] = {.lex_state = 2, .external_lex_state = 2}, - [1449] = {.lex_state = 2, .external_lex_state = 2}, - [1450] = {.lex_state = 37, .external_lex_state = 3}, - [1451] = {.lex_state = 2, .external_lex_state = 2}, - [1452] = {.lex_state = 2, .external_lex_state = 2}, - [1453] = {.lex_state = 2, .external_lex_state = 2}, - [1454] = {.lex_state = 2, .external_lex_state = 2}, - [1455] = {.lex_state = 2, .external_lex_state = 2}, + [1445] = {.lex_state = 37, .external_lex_state = 2}, + [1446] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 1}, + [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 = 2, .external_lex_state = 2}, - [1458] = {.lex_state = 2, .external_lex_state = 2}, + [1457] = {.lex_state = 37, .external_lex_state = 1}, + [1458] = {.lex_state = 37, .external_lex_state = 2}, [1459] = {.lex_state = 37, .external_lex_state = 2}, - [1460] = {.lex_state = 2, .external_lex_state = 2}, - [1461] = {.lex_state = 2, .external_lex_state = 2}, - [1462] = {.lex_state = 2, .external_lex_state = 2}, - [1463] = {.lex_state = 2, .external_lex_state = 2}, - [1464] = {.lex_state = 2, .external_lex_state = 2}, - [1465] = {.lex_state = 2, .external_lex_state = 2}, - [1466] = {.lex_state = 2, .external_lex_state = 2}, - [1467] = {.lex_state = 2, .external_lex_state = 2}, - [1468] = {.lex_state = 2, .external_lex_state = 2}, - [1469] = {.lex_state = 2, .external_lex_state = 2}, - [1470] = {.lex_state = 2, .external_lex_state = 2}, - [1471] = {.lex_state = 2, .external_lex_state = 2}, - [1472] = {.lex_state = 2, .external_lex_state = 2}, - [1473] = {.lex_state = 2, .external_lex_state = 2}, - [1474] = {.lex_state = 2, .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 = 4}, [1475] = {.lex_state = 2, .external_lex_state = 2}, - [1476] = {.lex_state = 2, .external_lex_state = 2}, - [1477] = {.lex_state = 37, .external_lex_state = 4}, + [1476] = {.lex_state = 37, .external_lex_state = 4}, + [1477] = {.lex_state = 37, .external_lex_state = 1}, [1478] = {.lex_state = 37, .external_lex_state = 4}, - [1479] = {.lex_state = 37, .external_lex_state = 1}, - [1480] = {.lex_state = 2, .external_lex_state = 2}, + [1479] = {.lex_state = 37, .external_lex_state = 2}, + [1480] = {.lex_state = 37, .external_lex_state = 2}, [1481] = {.lex_state = 2, .external_lex_state = 2}, - [1482] = {.lex_state = 2, .external_lex_state = 2}, - [1483] = {.lex_state = 2, .external_lex_state = 2}, + [1482] = {.lex_state = 37, .external_lex_state = 1}, + [1483] = {.lex_state = 37, .external_lex_state = 1}, [1484] = {.lex_state = 37, .external_lex_state = 2}, - [1485] = {.lex_state = 2, .external_lex_state = 2}, + [1485] = {.lex_state = 37, .external_lex_state = 1}, [1486] = {.lex_state = 37, .external_lex_state = 1}, - [1487] = {.lex_state = 37, .external_lex_state = 2}, - [1488] = {.lex_state = 2, .external_lex_state = 2}, - [1489] = {.lex_state = 2, .external_lex_state = 2}, - [1490] = {.lex_state = 2, .external_lex_state = 2}, - [1491] = {.lex_state = 2, .external_lex_state = 2}, - [1492] = {.lex_state = 2, .external_lex_state = 2}, - [1493] = {.lex_state = 2, .external_lex_state = 2}, + [1487] = {.lex_state = 37, .external_lex_state = 1}, + [1488] = {.lex_state = 4, .external_lex_state = 2}, + [1489] = {.lex_state = 4, .external_lex_state = 2}, + [1490] = {.lex_state = 4, .external_lex_state = 2}, + [1491] = {.lex_state = 4, .external_lex_state = 2}, + [1492] = {.lex_state = 4, .external_lex_state = 2}, + [1493] = {.lex_state = 37, .external_lex_state = 2}, [1494] = {.lex_state = 37, .external_lex_state = 2}, - [1495] = {.lex_state = 37, .external_lex_state = 1}, - [1496] = {.lex_state = 37, .external_lex_state = 1}, - [1497] = {.lex_state = 37, .external_lex_state = 1}, - [1498] = {.lex_state = 37, .external_lex_state = 1}, - [1499] = {.lex_state = 37, .external_lex_state = 1}, - [1500] = {.lex_state = 37, .external_lex_state = 1}, - [1501] = {.lex_state = 37, .external_lex_state = 1}, + [1495] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 37, .external_lex_state = 2}, + [1500] = {.lex_state = 37, .external_lex_state = 3}, + [1501] = {.lex_state = 37, .external_lex_state = 2}, [1502] = {.lex_state = 37, .external_lex_state = 1}, [1503] = {.lex_state = 37, .external_lex_state = 1}, [1504] = {.lex_state = 37, .external_lex_state = 1}, [1505] = {.lex_state = 37, .external_lex_state = 1}, - [1506] = {.lex_state = 37, .external_lex_state = 2}, + [1506] = {.lex_state = 37, .external_lex_state = 1}, [1507] = {.lex_state = 37, .external_lex_state = 1}, [1508] = {.lex_state = 37, .external_lex_state = 1}, - [1509] = {.lex_state = 37, .external_lex_state = 1}, - [1510] = {.lex_state = 37, .external_lex_state = 1}, - [1511] = {.lex_state = 37, .external_lex_state = 1}, + [1509] = {.lex_state = 4, .external_lex_state = 4}, + [1510] = {.lex_state = 37, .external_lex_state = 2}, + [1511] = {.lex_state = 37, .external_lex_state = 4}, [1512] = {.lex_state = 37, .external_lex_state = 1}, - [1513] = {.lex_state = 37, .external_lex_state = 1}, + [1513] = {.lex_state = 37, .external_lex_state = 4}, [1514] = {.lex_state = 37, .external_lex_state = 1}, - [1515] = {.lex_state = 37, .external_lex_state = 1}, + [1515] = {.lex_state = 37, .external_lex_state = 2}, [1516] = {.lex_state = 37, .external_lex_state = 1}, [1517] = {.lex_state = 37, .external_lex_state = 1}, - [1518] = {.lex_state = 37, .external_lex_state = 4}, + [1518] = {.lex_state = 37, .external_lex_state = 1}, [1519] = {.lex_state = 37, .external_lex_state = 1}, [1520] = {.lex_state = 2, .external_lex_state = 2}, [1521] = {.lex_state = 37, .external_lex_state = 1}, - [1522] = {.lex_state = 0, .external_lex_state = 3}, - [1523] = {.lex_state = 2, .external_lex_state = 2}, + [1522] = {.lex_state = 37, .external_lex_state = 1}, + [1523] = {.lex_state = 37, .external_lex_state = 1}, [1524] = {.lex_state = 37, .external_lex_state = 2}, [1525] = {.lex_state = 37, .external_lex_state = 2}, - [1526] = {.lex_state = 37, .external_lex_state = 2}, - [1527] = {.lex_state = 37, .external_lex_state = 1}, - [1528] = {.lex_state = 37, .external_lex_state = 1}, - [1529] = {.lex_state = 37, .external_lex_state = 1}, + [1526] = {.lex_state = 37, .external_lex_state = 1}, + [1527] = {.lex_state = 4, .external_lex_state = 4}, + [1528] = {.lex_state = 37, .external_lex_state = 2}, + [1529] = {.lex_state = 4, .external_lex_state = 4}, [1530] = {.lex_state = 37, .external_lex_state = 1}, - [1531] = {.lex_state = 37, .external_lex_state = 1}, + [1531] = {.lex_state = 37, .external_lex_state = 2}, [1532] = {.lex_state = 37, .external_lex_state = 2}, [1533] = {.lex_state = 37, .external_lex_state = 1}, - [1534] = {.lex_state = 4, .external_lex_state = 4}, - [1535] = {.lex_state = 37, .external_lex_state = 2}, - [1536] = {.lex_state = 4, .external_lex_state = 4}, - [1537] = {.lex_state = 4, .external_lex_state = 4}, - [1538] = {.lex_state = 4, .external_lex_state = 4}, - [1539] = {.lex_state = 37, .external_lex_state = 2}, - [1540] = {.lex_state = 4, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 1}, [1541] = {.lex_state = 37, .external_lex_state = 4}, - [1542] = {.lex_state = 37, .external_lex_state = 1}, - [1543] = {.lex_state = 4, .external_lex_state = 2}, - [1544] = {.lex_state = 4, .external_lex_state = 2}, - [1545] = {.lex_state = 4, .external_lex_state = 2}, - [1546] = {.lex_state = 4, .external_lex_state = 2}, - [1547] = {.lex_state = 4, .external_lex_state = 2}, - [1548] = {.lex_state = 2, .external_lex_state = 2}, + [1542] = {.lex_state = 2, .external_lex_state = 2}, + [1543] = {.lex_state = 37, .external_lex_state = 1}, + [1544] = {.lex_state = 37, .external_lex_state = 1}, + [1545] = {.lex_state = 37, .external_lex_state = 1}, + [1546] = {.lex_state = 37, .external_lex_state = 1}, + [1547] = {.lex_state = 37, .external_lex_state = 1}, + [1548] = {.lex_state = 37, .external_lex_state = 2}, [1549] = {.lex_state = 37, .external_lex_state = 1}, - [1550] = {.lex_state = 2, .external_lex_state = 2}, + [1550] = {.lex_state = 37, .external_lex_state = 2}, [1551] = {.lex_state = 37, .external_lex_state = 1}, - [1552] = {.lex_state = 37, .external_lex_state = 2}, + [1552] = {.lex_state = 37, .external_lex_state = 1}, [1553] = {.lex_state = 37, .external_lex_state = 1}, [1554] = {.lex_state = 37, .external_lex_state = 1}, [1555] = {.lex_state = 37, .external_lex_state = 1}, - [1556] = {.lex_state = 37, .external_lex_state = 2}, + [1556] = {.lex_state = 37, .external_lex_state = 1}, [1557] = {.lex_state = 37, .external_lex_state = 1}, - [1558] = {.lex_state = 37, .external_lex_state = 1}, - [1559] = {.lex_state = 37, .external_lex_state = 1}, - [1560] = {.lex_state = 37, .external_lex_state = 4}, + [1558] = {.lex_state = 0, .external_lex_state = 3}, + [1559] = {.lex_state = 4, .external_lex_state = 4}, + [1560] = {.lex_state = 37, .external_lex_state = 1}, [1561] = {.lex_state = 37, .external_lex_state = 2}, [1562] = {.lex_state = 37, .external_lex_state = 2}, - [1563] = {.lex_state = 37, .external_lex_state = 4}, - [1564] = {.lex_state = 37, .external_lex_state = 4}, - [1565] = {.lex_state = 37, .external_lex_state = 4}, - [1566] = {.lex_state = 37, .external_lex_state = 2}, - [1567] = {.lex_state = 37, .external_lex_state = 4}, + [1563] = {.lex_state = 4, .external_lex_state = 2}, + [1564] = {.lex_state = 4, .external_lex_state = 2}, + [1565] = {.lex_state = 2, .external_lex_state = 2}, + [1566] = {.lex_state = 4, .external_lex_state = 2}, + [1567] = {.lex_state = 4, .external_lex_state = 2}, [1568] = {.lex_state = 4, .external_lex_state = 2}, - [1569] = {.lex_state = 37, .external_lex_state = 4}, + [1569] = {.lex_state = 2, .external_lex_state = 2}, [1570] = {.lex_state = 37, .external_lex_state = 2}, [1571] = {.lex_state = 37, .external_lex_state = 2}, - [1572] = {.lex_state = 37, .external_lex_state = 2}, - [1573] = {.lex_state = 37, .external_lex_state = 2}, - [1574] = {.lex_state = 37, .external_lex_state = 4}, + [1572] = {.lex_state = 37, .external_lex_state = 4}, + [1573] = {.lex_state = 4, .external_lex_state = 4}, + [1574] = {.lex_state = 37, .external_lex_state = 1}, [1575] = {.lex_state = 37, .external_lex_state = 4}, - [1576] = {.lex_state = 0, .external_lex_state = 4}, + [1576] = {.lex_state = 37, .external_lex_state = 4}, [1577] = {.lex_state = 37, .external_lex_state = 4}, - [1578] = {.lex_state = 37, .external_lex_state = 4}, + [1578] = {.lex_state = 3, .external_lex_state = 2}, [1579] = {.lex_state = 37, .external_lex_state = 4}, [1580] = {.lex_state = 37, .external_lex_state = 4}, - [1581] = {.lex_state = 37, .external_lex_state = 2}, + [1581] = {.lex_state = 37, .external_lex_state = 4}, [1582] = {.lex_state = 37, .external_lex_state = 4}, [1583] = {.lex_state = 37, .external_lex_state = 4}, [1584] = {.lex_state = 37, .external_lex_state = 4}, - [1585] = {.lex_state = 2, .external_lex_state = 2}, - [1586] = {.lex_state = 37, .external_lex_state = 4}, - [1587] = {.lex_state = 37, .external_lex_state = 2}, + [1585] = {.lex_state = 0, .external_lex_state = 4}, + [1586] = {.lex_state = 3, .external_lex_state = 2}, + [1587] = {.lex_state = 37, .external_lex_state = 4}, [1588] = {.lex_state = 37, .external_lex_state = 4}, - [1589] = {.lex_state = 37, .external_lex_state = 2}, + [1589] = {.lex_state = 0, .external_lex_state = 4}, [1590] = {.lex_state = 37, .external_lex_state = 4}, [1591] = {.lex_state = 37, .external_lex_state = 2}, - [1592] = {.lex_state = 37, .external_lex_state = 2}, + [1592] = {.lex_state = 37, .external_lex_state = 4}, [1593] = {.lex_state = 37, .external_lex_state = 4}, - [1594] = {.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 = 2}, - [1597] = {.lex_state = 37, .external_lex_state = 4}, - [1598] = {.lex_state = 37, .external_lex_state = 4}, - [1599] = {.lex_state = 37, .external_lex_state = 4}, - [1600] = {.lex_state = 37, .external_lex_state = 4}, + [1597] = {.lex_state = 37, .external_lex_state = 2}, + [1598] = {.lex_state = 0, .external_lex_state = 4}, + [1599] = {.lex_state = 0, .external_lex_state = 4}, + [1600] = {.lex_state = 2, .external_lex_state = 2}, [1601] = {.lex_state = 37, .external_lex_state = 4}, - [1602] = {.lex_state = 37, .external_lex_state = 2}, + [1602] = {.lex_state = 37, .external_lex_state = 4}, [1603] = {.lex_state = 37, .external_lex_state = 4}, - [1604] = {.lex_state = 37, .external_lex_state = 2}, - [1605] = {.lex_state = 37, .external_lex_state = 4}, + [1604] = {.lex_state = 37, .external_lex_state = 4}, + [1605] = {.lex_state = 3, .external_lex_state = 2}, [1606] = {.lex_state = 37, .external_lex_state = 4}, - [1607] = {.lex_state = 3, .external_lex_state = 2}, - [1608] = {.lex_state = 37, .external_lex_state = 2}, - [1609] = {.lex_state = 37, .external_lex_state = 4}, + [1607] = {.lex_state = 37, .external_lex_state = 4}, + [1608] = {.lex_state = 37, .external_lex_state = 4}, + [1609] = {.lex_state = 3, .external_lex_state = 2}, [1610] = {.lex_state = 37, .external_lex_state = 4}, [1611] = {.lex_state = 3, .external_lex_state = 2}, - [1612] = {.lex_state = 3, .external_lex_state = 2}, - [1613] = {.lex_state = 37, .external_lex_state = 2}, + [1612] = {.lex_state = 37, .external_lex_state = 4}, + [1613] = {.lex_state = 37, .external_lex_state = 4}, [1614] = {.lex_state = 37, .external_lex_state = 4}, - [1615] = {.lex_state = 3, .external_lex_state = 2}, + [1615] = {.lex_state = 37, .external_lex_state = 4}, [1616] = {.lex_state = 37, .external_lex_state = 2}, [1617] = {.lex_state = 37, .external_lex_state = 4}, [1618] = {.lex_state = 37, .external_lex_state = 4}, [1619] = {.lex_state = 37, .external_lex_state = 4}, [1620] = {.lex_state = 37, .external_lex_state = 4}, - [1621] = {.lex_state = 37, .external_lex_state = 3}, - [1622] = {.lex_state = 37, .external_lex_state = 2}, - [1623] = {.lex_state = 37, .external_lex_state = 4}, + [1621] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, [1626] = {.lex_state = 37, .external_lex_state = 4}, - [1627] = {.lex_state = 37, .external_lex_state = 4}, - [1628] = {.lex_state = 0, .external_lex_state = 4}, - [1629] = {.lex_state = 3, .external_lex_state = 2}, - [1630] = {.lex_state = 37, .external_lex_state = 2}, - [1631] = {.lex_state = 37, .external_lex_state = 2}, + [1627] = {.lex_state = 37, .external_lex_state = 3}, + [1628] = {.lex_state = 37, .external_lex_state = 2}, + [1629] = {.lex_state = 37, .external_lex_state = 2}, + [1630] = {.lex_state = 37, .external_lex_state = 4}, + [1631] = {.lex_state = 37, .external_lex_state = 4}, [1632] = {.lex_state = 37, .external_lex_state = 4}, [1633] = {.lex_state = 37, .external_lex_state = 4}, - [1634] = {.lex_state = 4, .external_lex_state = 3}, + [1634] = {.lex_state = 37, .external_lex_state = 2}, [1635] = {.lex_state = 37, .external_lex_state = 4}, - [1636] = {.lex_state = 4, .external_lex_state = 3}, - [1637] = {.lex_state = 37, .external_lex_state = 4}, - [1638] = {.lex_state = 37, .external_lex_state = 4}, + [1636] = {.lex_state = 37, .external_lex_state = 4}, + [1637] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 4, .external_lex_state = 3}, - [1642] = {.lex_state = 37, .external_lex_state = 4}, - [1643] = {.lex_state = 37, .external_lex_state = 2}, - [1644] = {.lex_state = 4, .external_lex_state = 3}, - [1645] = {.lex_state = 37, .external_lex_state = 2}, - [1646] = {.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 = 4}, + [1644] = {.lex_state = 37, .external_lex_state = 2}, + [1645] = {.lex_state = 37, .external_lex_state = 4}, + [1646] = {.lex_state = 0, .external_lex_state = 4}, [1647] = {.lex_state = 37, .external_lex_state = 4}, - [1648] = {.lex_state = 37, .external_lex_state = 4}, - [1649] = {.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 = 4}, - [1651] = {.lex_state = 37, .external_lex_state = 4}, - [1652] = {.lex_state = 4, .external_lex_state = 3}, - [1653] = {.lex_state = 37, .external_lex_state = 4}, - [1654] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 4}, [1658] = {.lex_state = 37, .external_lex_state = 4}, [1659] = {.lex_state = 37, .external_lex_state = 4}, - [1660] = {.lex_state = 37, .external_lex_state = 4}, + [1660] = {.lex_state = 37, .external_lex_state = 2}, [1661] = {.lex_state = 37, .external_lex_state = 2}, - [1662] = {.lex_state = 37, .external_lex_state = 4}, - [1663] = {.lex_state = 37, .external_lex_state = 2}, - [1664] = {.lex_state = 37, .external_lex_state = 4}, + [1662] = {.lex_state = 0, .external_lex_state = 4}, + [1663] = {.lex_state = 0, .external_lex_state = 4}, + [1664] = {.lex_state = 4, .external_lex_state = 2}, [1665] = {.lex_state = 37, .external_lex_state = 4}, [1666] = {.lex_state = 37, .external_lex_state = 4}, - [1667] = {.lex_state = 37, .external_lex_state = 4}, + [1667] = {.lex_state = 37, .external_lex_state = 2}, [1668] = {.lex_state = 37, .external_lex_state = 2}, [1669] = {.lex_state = 37, .external_lex_state = 4}, - [1670] = {.lex_state = 37, .external_lex_state = 2}, - [1671] = {.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 = 0, .external_lex_state = 4}, - [1676] = {.lex_state = 37, .external_lex_state = 4}, + [1674] = {.lex_state = 37, .external_lex_state = 2}, + [1675] = {.lex_state = 37, .external_lex_state = 4}, + [1676] = {.lex_state = 4, .external_lex_state = 3}, [1677] = {.lex_state = 37, .external_lex_state = 4}, - [1678] = {.lex_state = 37, .external_lex_state = 2}, - [1679] = {.lex_state = 37, .external_lex_state = 4}, - [1680] = {.lex_state = 37, .external_lex_state = 4}, - [1681] = {.lex_state = 0, .external_lex_state = 4}, + [1678] = {.lex_state = 37, .external_lex_state = 4}, + [1679] = {.lex_state = 4, .external_lex_state = 3}, + [1680] = {.lex_state = 4, .external_lex_state = 3}, + [1681] = {.lex_state = 37, .external_lex_state = 4}, [1682] = {.lex_state = 37, .external_lex_state = 4}, - [1683] = {.lex_state = 37, .external_lex_state = 2}, + [1683] = {.lex_state = 37, .external_lex_state = 4}, [1684] = {.lex_state = 37, .external_lex_state = 4}, - [1685] = {.lex_state = 37, .external_lex_state = 4}, - [1686] = {.lex_state = 37, .external_lex_state = 4}, + [1685] = {.lex_state = 2, .external_lex_state = 2}, + [1686] = {.lex_state = 37, .external_lex_state = 2}, [1687] = {.lex_state = 37, .external_lex_state = 4}, - [1688] = {.lex_state = 37, .external_lex_state = 4}, - [1689] = {.lex_state = 37, .external_lex_state = 4}, - [1690] = {.lex_state = 37, .external_lex_state = 2}, + [1688] = {.lex_state = 37, .external_lex_state = 2}, + [1689] = {.lex_state = 4, .external_lex_state = 3}, + [1690] = {.lex_state = 2, .external_lex_state = 2}, [1691] = {.lex_state = 37, .external_lex_state = 4}, - [1692] = {.lex_state = 37, .external_lex_state = 4}, + [1692] = {.lex_state = 2, .external_lex_state = 2}, [1693] = {.lex_state = 37, .external_lex_state = 4}, [1694] = {.lex_state = 37, .external_lex_state = 4}, - [1695] = {.lex_state = 0, .external_lex_state = 4}, - [1696] = {.lex_state = 0, .external_lex_state = 4}, - [1697] = {.lex_state = 37, .external_lex_state = 4}, - [1698] = {.lex_state = 37, .external_lex_state = 2}, - [1699] = {.lex_state = 0, .external_lex_state = 4}, - [1700] = {.lex_state = 37, .external_lex_state = 2}, + [1695] = {.lex_state = 37, .external_lex_state = 4}, + [1696] = {.lex_state = 37, .external_lex_state = 4}, + [1697] = {.lex_state = 4, .external_lex_state = 3}, + [1698] = {.lex_state = 37, .external_lex_state = 4}, + [1699] = {.lex_state = 37, .external_lex_state = 4}, + [1700] = {.lex_state = 2, .external_lex_state = 2}, [1701] = {.lex_state = 37, .external_lex_state = 4}, - [1702] = {.lex_state = 37, .external_lex_state = 2}, - [1703] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 2}, - [1711] = {.lex_state = 37, .external_lex_state = 2}, + [1711] = {.lex_state = 37, .external_lex_state = 4}, [1712] = {.lex_state = 37, .external_lex_state = 4}, - [1713] = {.lex_state = 37, .external_lex_state = 4}, + [1713] = {.lex_state = 37, .external_lex_state = 2}, [1714] = {.lex_state = 37, .external_lex_state = 4}, - [1715] = {.lex_state = 37, .external_lex_state = 2}, - [1716] = {.lex_state = 37, .external_lex_state = 4}, + [1715] = {.lex_state = 2, .external_lex_state = 2}, + [1716] = {.lex_state = 37, .external_lex_state = 2}, [1717] = {.lex_state = 37, .external_lex_state = 4}, - [1718] = {.lex_state = 0, .external_lex_state = 4}, + [1718] = {.lex_state = 37, .external_lex_state = 4}, [1719] = {.lex_state = 37, .external_lex_state = 2}, - [1720] = {.lex_state = 37, .external_lex_state = 2}, + [1720] = {.lex_state = 37, .external_lex_state = 4}, [1721] = {.lex_state = 37, .external_lex_state = 4}, - [1722] = {.lex_state = 0, .external_lex_state = 4}, - [1723] = {.lex_state = 37, .external_lex_state = 2}, - [1724] = {.lex_state = 37, .external_lex_state = 2}, - [1725] = {.lex_state = 37, .external_lex_state = 4}, - [1726] = {.lex_state = 37, .external_lex_state = 2}, - [1727] = {.lex_state = 37, .external_lex_state = 2}, + [1722] = {.lex_state = 37, .external_lex_state = 2}, + [1723] = {.lex_state = 37, .external_lex_state = 4}, + [1724] = {.lex_state = 37, .external_lex_state = 4}, + [1725] = {.lex_state = 37, .external_lex_state = 2}, + [1726] = {.lex_state = 37, .external_lex_state = 4}, + [1727] = {.lex_state = 37, .external_lex_state = 4}, [1728] = {.lex_state = 37, .external_lex_state = 4}, - [1729] = {.lex_state = 37, .external_lex_state = 2}, - [1730] = {.lex_state = 37, .external_lex_state = 2}, - [1731] = {.lex_state = 37, .external_lex_state = 4}, - [1732] = {.lex_state = 37, .external_lex_state = 2}, + [1729] = {.lex_state = 37, .external_lex_state = 4}, + [1730] = {.lex_state = 37, .external_lex_state = 4}, + [1731] = {.lex_state = 0, .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 = 2}, [1735] = {.lex_state = 37, .external_lex_state = 2}, - [1736] = {.lex_state = 37, .external_lex_state = 2}, + [1736] = {.lex_state = 37, .external_lex_state = 4}, [1737] = {.lex_state = 37, .external_lex_state = 2}, [1738] = {.lex_state = 37, .external_lex_state = 2}, [1739] = {.lex_state = 37, .external_lex_state = 4}, [1740] = {.lex_state = 37, .external_lex_state = 2}, - [1741] = {.lex_state = 37, .external_lex_state = 2}, + [1741] = {.lex_state = 37, .external_lex_state = 4}, [1742] = {.lex_state = 37, .external_lex_state = 2}, - [1743] = {.lex_state = 37, .external_lex_state = 2}, - [1744] = {.lex_state = 37, .external_lex_state = 2}, + [1743] = {.lex_state = 37, .external_lex_state = 4}, + [1744] = {.lex_state = 2, .external_lex_state = 2}, [1745] = {.lex_state = 37, .external_lex_state = 2}, [1746] = {.lex_state = 37, .external_lex_state = 2}, [1747] = {.lex_state = 37, .external_lex_state = 2}, - [1748] = {.lex_state = 37, .external_lex_state = 2}, - [1749] = {.lex_state = 0, .external_lex_state = 4}, + [1748] = {.lex_state = 37, .external_lex_state = 4}, + [1749] = {.lex_state = 37, .external_lex_state = 4}, [1750] = {.lex_state = 37, .external_lex_state = 2}, [1751] = {.lex_state = 37, .external_lex_state = 2}, - [1752] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 2}, - [1757] = {.lex_state = 37, .external_lex_state = 2}, + [1757] = {.lex_state = 37, .external_lex_state = 4}, [1758] = {.lex_state = 37, .external_lex_state = 2}, - [1759] = {.lex_state = 7, .external_lex_state = 2}, + [1759] = {.lex_state = 37, .external_lex_state = 2}, [1760] = {.lex_state = 37, .external_lex_state = 2}, [1761] = {.lex_state = 37, .external_lex_state = 4}, - [1762] = {.lex_state = 37, .external_lex_state = 4}, + [1762] = {.lex_state = 37, .external_lex_state = 2}, [1763] = {.lex_state = 37, .external_lex_state = 2}, [1764] = {.lex_state = 37, .external_lex_state = 2}, - [1765] = {.lex_state = 37, .external_lex_state = 4}, + [1765] = {.lex_state = 37, .external_lex_state = 2}, [1766] = {.lex_state = 37, .external_lex_state = 2}, [1767] = {.lex_state = 37, .external_lex_state = 2}, - [1768] = {.lex_state = 37, .external_lex_state = 2}, - [1769] = {.lex_state = 37, .external_lex_state = 2}, - [1770] = {.lex_state = 37, .external_lex_state = 2}, - [1771] = {.lex_state = 37, .external_lex_state = 2}, + [1768] = {.lex_state = 37, .external_lex_state = 4}, + [1769] = {.lex_state = 0, .external_lex_state = 4}, + [1770] = {.lex_state = 37, .external_lex_state = 4}, + [1771] = {.lex_state = 37, .external_lex_state = 4}, [1772] = {.lex_state = 37, .external_lex_state = 2}, - [1773] = {.lex_state = 37, .external_lex_state = 4}, - [1774] = {.lex_state = 37, .external_lex_state = 2}, - [1775] = {.lex_state = 37, .external_lex_state = 2}, - [1776] = {.lex_state = 3, .external_lex_state = 4}, - [1777] = {.lex_state = 37, .external_lex_state = 2}, + [1773] = {.lex_state = 37, .external_lex_state = 2}, + [1774] = {.lex_state = 37, .external_lex_state = 4}, + [1775] = {.lex_state = 37, .external_lex_state = 4}, + [1776] = {.lex_state = 37, .external_lex_state = 2}, + [1777] = {.lex_state = 2, .external_lex_state = 2}, [1778] = {.lex_state = 37, .external_lex_state = 2}, [1779] = {.lex_state = 37, .external_lex_state = 2}, [1780] = {.lex_state = 37, .external_lex_state = 2}, - [1781] = {.lex_state = 37, .external_lex_state = 4}, + [1781] = {.lex_state = 37, .external_lex_state = 2}, [1782] = {.lex_state = 37, .external_lex_state = 2}, - [1783] = {.lex_state = 37, .external_lex_state = 2}, - [1784] = {.lex_state = 37, .external_lex_state = 4}, + [1783] = {.lex_state = 0, .external_lex_state = 4}, + [1784] = {.lex_state = 37, .external_lex_state = 2}, [1785] = {.lex_state = 37, .external_lex_state = 2}, [1786] = {.lex_state = 37, .external_lex_state = 2}, [1787] = {.lex_state = 37, .external_lex_state = 2}, - [1788] = {.lex_state = 37, .external_lex_state = 4}, - [1789] = {.lex_state = 37, .external_lex_state = 4}, - [1790] = {.lex_state = 7, .external_lex_state = 2}, + [1788] = {.lex_state = 37, .external_lex_state = 2}, + [1789] = {.lex_state = 37, .external_lex_state = 2}, + [1790] = {.lex_state = 37, .external_lex_state = 2}, [1791] = {.lex_state = 37, .external_lex_state = 2}, - [1792] = {.lex_state = 37, .external_lex_state = 2}, + [1792] = {.lex_state = 37, .external_lex_state = 4}, [1793] = {.lex_state = 37, .external_lex_state = 2}, - [1794] = {.lex_state = 37, .external_lex_state = 4}, + [1794] = {.lex_state = 37, .external_lex_state = 2}, [1795] = {.lex_state = 37, .external_lex_state = 2}, - [1796] = {.lex_state = 37, .external_lex_state = 2}, + [1796] = {.lex_state = 3, .external_lex_state = 4}, [1797] = {.lex_state = 37, .external_lex_state = 2}, [1798] = {.lex_state = 37, .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 = 37, .external_lex_state = 2}, - [1803] = {.lex_state = 3, .external_lex_state = 4}, + [1801] = {.lex_state = 37, .external_lex_state = 4}, + [1802] = {.lex_state = 37, .external_lex_state = 4}, + [1803] = {.lex_state = 37, .external_lex_state = 2}, [1804] = {.lex_state = 37, .external_lex_state = 2}, [1805] = {.lex_state = 37, .external_lex_state = 2}, - [1806] = {.lex_state = 37, .external_lex_state = 4}, + [1806] = {.lex_state = 37, .external_lex_state = 2}, [1807] = {.lex_state = 37, .external_lex_state = 2}, [1808] = {.lex_state = 37, .external_lex_state = 2}, [1809] = {.lex_state = 37, .external_lex_state = 2}, - [1810] = {.lex_state = 0, .external_lex_state = 4}, + [1810] = {.lex_state = 37, .external_lex_state = 2}, [1811] = {.lex_state = 37, .external_lex_state = 2}, [1812] = {.lex_state = 37, .external_lex_state = 2}, [1813] = {.lex_state = 37, .external_lex_state = 2}, [1814] = {.lex_state = 37, .external_lex_state = 2}, - [1815] = {.lex_state = 37, .external_lex_state = 4}, + [1815] = {.lex_state = 37, .external_lex_state = 2}, [1816] = {.lex_state = 37, .external_lex_state = 2}, [1817] = {.lex_state = 37, .external_lex_state = 2}, [1818] = {.lex_state = 37, .external_lex_state = 2}, @@ -9299,245 +9532,245 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1820] = {.lex_state = 37, .external_lex_state = 2}, [1821] = {.lex_state = 37, .external_lex_state = 2}, [1822] = {.lex_state = 37, .external_lex_state = 2}, - [1823] = {.lex_state = 37, .external_lex_state = 4}, + [1823] = {.lex_state = 37, .external_lex_state = 2}, [1824] = {.lex_state = 37, .external_lex_state = 2}, [1825] = {.lex_state = 37, .external_lex_state = 2}, [1826] = {.lex_state = 37, .external_lex_state = 2}, - [1827] = {.lex_state = 7, .external_lex_state = 2}, - [1828] = {.lex_state = 37, .external_lex_state = 2}, - [1829] = {.lex_state = 7, .external_lex_state = 2}, - [1830] = {.lex_state = 37, .external_lex_state = 2}, + [1827] = {.lex_state = 37, .external_lex_state = 2}, + [1828] = {.lex_state = 37, .external_lex_state = 4}, + [1829] = {.lex_state = 37, .external_lex_state = 2}, + [1830] = {.lex_state = 37, .external_lex_state = 4}, [1831] = {.lex_state = 37, .external_lex_state = 2}, - [1832] = {.lex_state = 37, .external_lex_state = 2}, + [1832] = {.lex_state = 37, .external_lex_state = 4}, [1833] = {.lex_state = 37, .external_lex_state = 2}, - [1834] = {.lex_state = 37, .external_lex_state = 4}, + [1834] = {.lex_state = 37, .external_lex_state = 2}, [1835] = {.lex_state = 37, .external_lex_state = 4}, [1836] = {.lex_state = 37, .external_lex_state = 2}, [1837] = {.lex_state = 37, .external_lex_state = 4}, [1838] = {.lex_state = 37, .external_lex_state = 2}, - [1839] = {.lex_state = 37, .external_lex_state = 4}, - [1840] = {.lex_state = 37, .external_lex_state = 2}, + [1839] = {.lex_state = 37, .external_lex_state = 2}, + [1840] = {.lex_state = 37, .external_lex_state = 4}, [1841] = {.lex_state = 37, .external_lex_state = 2}, [1842] = {.lex_state = 37, .external_lex_state = 2}, [1843] = {.lex_state = 37, .external_lex_state = 2}, [1844] = {.lex_state = 37, .external_lex_state = 2}, [1845] = {.lex_state = 37, .external_lex_state = 2}, - [1846] = {.lex_state = 37, .external_lex_state = 4}, + [1846] = {.lex_state = 37, .external_lex_state = 2}, [1847] = {.lex_state = 37, .external_lex_state = 2}, [1848] = {.lex_state = 37, .external_lex_state = 2}, [1849] = {.lex_state = 37, .external_lex_state = 2}, - [1850] = {.lex_state = 37, .external_lex_state = 2}, - [1851] = {.lex_state = 37, .external_lex_state = 2}, + [1850] = {.lex_state = 37, .external_lex_state = 4}, + [1851] = {.lex_state = 0, .external_lex_state = 4}, [1852] = {.lex_state = 37, .external_lex_state = 2}, [1853] = {.lex_state = 37, .external_lex_state = 2}, [1854] = {.lex_state = 37, .external_lex_state = 2}, - [1855] = {.lex_state = 37, .external_lex_state = 2}, - [1856] = {.lex_state = 37, .external_lex_state = 4}, + [1855] = {.lex_state = 37, .external_lex_state = 4}, + [1856] = {.lex_state = 37, .external_lex_state = 2}, [1857] = {.lex_state = 37, .external_lex_state = 2}, [1858] = {.lex_state = 37, .external_lex_state = 2}, - [1859] = {.lex_state = 37, .external_lex_state = 4}, + [1859] = {.lex_state = 37, .external_lex_state = 2}, [1860] = {.lex_state = 37, .external_lex_state = 2}, - [1861] = {.lex_state = 37, .external_lex_state = 4}, - [1862] = {.lex_state = 37, .external_lex_state = 4}, + [1861] = {.lex_state = 37, .external_lex_state = 2}, + [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}, + [1864] = {.lex_state = 37, .external_lex_state = 4}, + [1865] = {.lex_state = 0, .external_lex_state = 4}, [1866] = {.lex_state = 37, .external_lex_state = 2}, [1867] = {.lex_state = 37, .external_lex_state = 2}, - [1868] = {.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 = 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}, + [1872] = {.lex_state = 2, .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 = 4}, - [1877] = {.lex_state = 37, .external_lex_state = 4}, - [1878] = {.lex_state = 2, .external_lex_state = 2}, + [1875] = {.lex_state = 37, .external_lex_state = 4}, + [1876] = {.lex_state = 37, .external_lex_state = 2}, + [1877] = {.lex_state = 37, .external_lex_state = 2}, + [1878] = {.lex_state = 37, .external_lex_state = 4}, [1879] = {.lex_state = 37, .external_lex_state = 2}, - [1880] = {.lex_state = 37, .external_lex_state = 2}, - [1881] = {.lex_state = 37, .external_lex_state = 4}, + [1880] = {.lex_state = 37, .external_lex_state = 4}, + [1881] = {.lex_state = 37, .external_lex_state = 2}, [1882] = {.lex_state = 37, .external_lex_state = 2}, [1883] = {.lex_state = 37, .external_lex_state = 2}, [1884] = {.lex_state = 37, .external_lex_state = 2}, [1885] = {.lex_state = 37, .external_lex_state = 2}, [1886] = {.lex_state = 37, .external_lex_state = 2}, - [1887] = {.lex_state = 37, .external_lex_state = 2}, - [1888] = {.lex_state = 37, .external_lex_state = 4}, - [1889] = {.lex_state = 37, .external_lex_state = 4}, + [1887] = {.lex_state = 37, .external_lex_state = 4}, + [1888] = {.lex_state = 37, .external_lex_state = 2}, + [1889] = {.lex_state = 3, .external_lex_state = 4}, [1890] = {.lex_state = 37, .external_lex_state = 2}, - [1891] = {.lex_state = 37, .external_lex_state = 2}, - [1892] = {.lex_state = 7, .external_lex_state = 2}, + [1891] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [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 = 2, .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}, + [1902] = {.lex_state = 37, .external_lex_state = 2}, [1903] = {.lex_state = 37, .external_lex_state = 2}, [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 = 3, .external_lex_state = 4}, - [1908] = {.lex_state = 37, .external_lex_state = 2}, - [1909] = {.lex_state = 37, .external_lex_state = 2}, + [1907] = {.lex_state = 37, .external_lex_state = 2}, + [1908] = {.lex_state = 37, .external_lex_state = 4}, + [1909] = {.lex_state = 2, .external_lex_state = 2}, [1910] = {.lex_state = 37, .external_lex_state = 2}, - [1911] = {.lex_state = 37, .external_lex_state = 4}, - [1912] = {.lex_state = 37, .external_lex_state = 2}, + [1911] = {.lex_state = 2, .external_lex_state = 2}, + [1912] = {.lex_state = 2, .external_lex_state = 2}, [1913] = {.lex_state = 37, .external_lex_state = 2}, - [1914] = {.lex_state = 37, .external_lex_state = 4}, + [1914] = {.lex_state = 2, .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 = 4}, + [1919] = {.lex_state = 2, .external_lex_state = 2}, + [1920] = {.lex_state = 2, .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 = 2}, [1927] = {.lex_state = 37, .external_lex_state = 2}, - [1928] = {.lex_state = 37, .external_lex_state = 2}, - [1929] = {.lex_state = 37, .external_lex_state = 2}, - [1930] = {.lex_state = 2, .external_lex_state = 2}, - [1931] = {.lex_state = 37, .external_lex_state = 2}, + [1928] = {.lex_state = 3, .external_lex_state = 4}, + [1929] = {.lex_state = 3, .external_lex_state = 4}, + [1930] = {.lex_state = 37, .external_lex_state = 2}, + [1931] = {.lex_state = 2, .external_lex_state = 2}, [1932] = {.lex_state = 37, .external_lex_state = 2}, - [1933] = {.lex_state = 37, .external_lex_state = 4}, + [1933] = {.lex_state = 2, .external_lex_state = 2}, [1934] = {.lex_state = 37, .external_lex_state = 2}, [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}, + [1938] = {.lex_state = 37, .external_lex_state = 4}, [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 = 2}, - [1943] = {.lex_state = 37, .external_lex_state = 2}, - [1944] = {.lex_state = 37, .external_lex_state = 2}, + [1942] = {.lex_state = 37, .external_lex_state = 4}, + [1943] = {.lex_state = 2, .external_lex_state = 2}, + [1944] = {.lex_state = 2, .external_lex_state = 2}, [1945] = {.lex_state = 37, .external_lex_state = 2}, - [1946] = {.lex_state = 37, .external_lex_state = 4}, - [1947] = {.lex_state = 3, .external_lex_state = 4}, + [1946] = {.lex_state = 2, .external_lex_state = 2}, + [1947] = {.lex_state = 2, .external_lex_state = 2}, [1948] = {.lex_state = 37, .external_lex_state = 2}, - [1949] = {.lex_state = 37, .external_lex_state = 2}, - [1950] = {.lex_state = 37, .external_lex_state = 2}, - [1951] = {.lex_state = 37, .external_lex_state = 4}, - [1952] = {.lex_state = 37, .external_lex_state = 4}, + [1949] = {.lex_state = 2, .external_lex_state = 2}, + [1950] = {.lex_state = 2, .external_lex_state = 2}, + [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}, + [1955] = {.lex_state = 2, .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 = 4}, - [1960] = {.lex_state = 37, .external_lex_state = 2}, - [1961] = {.lex_state = 37, .external_lex_state = 2}, + [1959] = {.lex_state = 37, .external_lex_state = 2}, + [1960] = {.lex_state = 2, .external_lex_state = 2}, + [1961] = {.lex_state = 7, .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}, + [1963] = {.lex_state = 2, .external_lex_state = 2}, + [1964] = {.lex_state = 37, .external_lex_state = 4}, [1965] = {.lex_state = 37, .external_lex_state = 2}, - [1966] = {.lex_state = 3, .external_lex_state = 4}, - [1967] = {.lex_state = 37, .external_lex_state = 2}, - [1968] = {.lex_state = 37, .external_lex_state = 2}, + [1966] = {.lex_state = 37, .external_lex_state = 2}, + [1967] = {.lex_state = 2, .external_lex_state = 2}, + [1968] = {.lex_state = 37, .external_lex_state = 4}, [1969] = {.lex_state = 37, .external_lex_state = 2}, - [1970] = {.lex_state = 37, .external_lex_state = 2}, + [1970] = {.lex_state = 2, .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 = 2}, - [1974] = {.lex_state = 3, .external_lex_state = 2}, + [1972] = {.lex_state = 37, .external_lex_state = 4}, + [1973] = {.lex_state = 2, .external_lex_state = 2}, + [1974] = {.lex_state = 3, .external_lex_state = 4}, [1975] = {.lex_state = 37, .external_lex_state = 4}, - [1976] = {.lex_state = 37, .external_lex_state = 2}, - [1977] = {.lex_state = 3, .external_lex_state = 2}, - [1978] = {.lex_state = 3, .external_lex_state = 2}, - [1979] = {.lex_state = 3, .external_lex_state = 2}, - [1980] = {.lex_state = 3, .external_lex_state = 2}, - [1981] = {.lex_state = 3, .external_lex_state = 2}, - [1982] = {.lex_state = 37, .external_lex_state = 4}, - [1983] = {.lex_state = 4, .external_lex_state = 2}, - [1984] = {.lex_state = 4, .external_lex_state = 2}, - [1985] = {.lex_state = 4, .external_lex_state = 2}, + [1976] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [1981] = {.lex_state = 2, .external_lex_state = 2}, + [1982] = {.lex_state = 2, .external_lex_state = 2}, + [1983] = {.lex_state = 37, .external_lex_state = 2}, + [1984] = {.lex_state = 37, .external_lex_state = 2}, + [1985] = {.lex_state = 37, .external_lex_state = 2}, [1986] = {.lex_state = 37, .external_lex_state = 2}, - [1987] = {.lex_state = 4, .external_lex_state = 2}, - [1988] = {.lex_state = 4, .external_lex_state = 2}, - [1989] = {.lex_state = 37, .external_lex_state = 2}, - [1990] = {.lex_state = 37, .external_lex_state = 2}, - [1991] = {.lex_state = 37, .external_lex_state = 2}, - [1992] = {.lex_state = 37, .external_lex_state = 2}, - [1993] = {.lex_state = 37, .external_lex_state = 2}, - [1994] = {.lex_state = 37, .external_lex_state = 2}, - [1995] = {.lex_state = 37, .external_lex_state = 2}, + [1987] = {.lex_state = 37, .external_lex_state = 2}, + [1988] = {.lex_state = 7, .external_lex_state = 2}, + [1989] = {.lex_state = 2, .external_lex_state = 2}, + [1990] = {.lex_state = 2, .external_lex_state = 2}, + [1991] = {.lex_state = 2, .external_lex_state = 2}, + [1992] = {.lex_state = 2, .external_lex_state = 2}, + [1993] = {.lex_state = 2, .external_lex_state = 2}, + [1994] = {.lex_state = 2, .external_lex_state = 2}, + [1995] = {.lex_state = 7, .external_lex_state = 2}, [1996] = {.lex_state = 37, .external_lex_state = 2}, [1997] = {.lex_state = 37, .external_lex_state = 2}, [1998] = {.lex_state = 37, .external_lex_state = 2}, [1999] = {.lex_state = 37, .external_lex_state = 2}, [2000] = {.lex_state = 37, .external_lex_state = 2}, - [2001] = {.lex_state = 37, .external_lex_state = 2}, + [2001] = {.lex_state = 7, .external_lex_state = 2}, [2002] = {.lex_state = 37, .external_lex_state = 2}, [2003] = {.lex_state = 37, .external_lex_state = 2}, - [2004] = {.lex_state = 37, .external_lex_state = 2}, + [2004] = {.lex_state = 2, .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 = 2}, + [2007] = {.lex_state = 37, .external_lex_state = 4}, + [2008] = {.lex_state = 2, .external_lex_state = 2}, [2009] = {.lex_state = 37, .external_lex_state = 2}, - [2010] = {.lex_state = 37, .external_lex_state = 2}, + [2010] = {.lex_state = 2, .external_lex_state = 2}, [2011] = {.lex_state = 37, .external_lex_state = 2}, [2012] = {.lex_state = 37, .external_lex_state = 2}, [2013] = {.lex_state = 37, .external_lex_state = 2}, - [2014] = {.lex_state = 4, .external_lex_state = 3}, + [2014] = {.lex_state = 37, .external_lex_state = 2}, [2015] = {.lex_state = 37, .external_lex_state = 2}, - [2016] = {.lex_state = 37, .external_lex_state = 2}, + [2016] = {.lex_state = 37, .external_lex_state = 4}, [2017] = {.lex_state = 37, .external_lex_state = 2}, - [2018] = {.lex_state = 37, .external_lex_state = 2}, + [2018] = {.lex_state = 2, .external_lex_state = 2}, [2019] = {.lex_state = 37, .external_lex_state = 2}, - [2020] = {.lex_state = 37, .external_lex_state = 2}, + [2020] = {.lex_state = 2, .external_lex_state = 2}, [2021] = {.lex_state = 37, .external_lex_state = 2}, - [2022] = {.lex_state = 37, .external_lex_state = 2}, - [2023] = {.lex_state = 37, .external_lex_state = 2}, + [2022] = {.lex_state = 2, .external_lex_state = 2}, + [2023] = {.lex_state = 37, .external_lex_state = 4}, [2024] = {.lex_state = 37, .external_lex_state = 2}, [2025] = {.lex_state = 37, .external_lex_state = 2}, [2026] = {.lex_state = 37, .external_lex_state = 2}, [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}, + [2028] = {.lex_state = 7, .external_lex_state = 2}, + [2029] = {.lex_state = 2, .external_lex_state = 2}, + [2030] = {.lex_state = 37, .external_lex_state = 4}, [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}, + [2033] = {.lex_state = 37, .external_lex_state = 4}, + [2034] = {.lex_state = 2, .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 = 37, .external_lex_state = 2}, - [2042] = {.lex_state = 37, .external_lex_state = 2}, - [2043] = {.lex_state = 37, .external_lex_state = 2}, + [2037] = {.lex_state = 2, .external_lex_state = 2}, + [2038] = {.lex_state = 2, .external_lex_state = 2}, + [2039] = {.lex_state = 2, .external_lex_state = 2}, + [2040] = {.lex_state = 2, .external_lex_state = 2}, + [2041] = {.lex_state = 2, .external_lex_state = 2}, + [2042] = {.lex_state = 37, .external_lex_state = 4}, + [2043] = {.lex_state = 2, .external_lex_state = 2}, [2044] = {.lex_state = 37, .external_lex_state = 2}, [2045] = {.lex_state = 37, .external_lex_state = 2}, [2046] = {.lex_state = 37, .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 = 2}, - [2052] = {.lex_state = 37, .external_lex_state = 2}, - [2053] = {.lex_state = 37, .external_lex_state = 2}, + [2047] = {.lex_state = 37, .external_lex_state = 4}, + [2048] = {.lex_state = 3, .external_lex_state = 2}, + [2049] = {.lex_state = 37, .external_lex_state = 4}, + [2050] = {.lex_state = 3, .external_lex_state = 2}, + [2051] = {.lex_state = 3, .external_lex_state = 2}, + [2052] = {.lex_state = 3, .external_lex_state = 2}, + [2053] = {.lex_state = 3, .external_lex_state = 2}, [2054] = {.lex_state = 37, .external_lex_state = 2}, - [2055] = {.lex_state = 37, .external_lex_state = 2}, - [2056] = {.lex_state = 37, .external_lex_state = 2}, + [2055] = {.lex_state = 3, .external_lex_state = 2}, + [2056] = {.lex_state = 4, .external_lex_state = 2}, [2057] = {.lex_state = 37, .external_lex_state = 2}, - [2058] = {.lex_state = 37, .external_lex_state = 2}, - [2059] = {.lex_state = 37, .external_lex_state = 2}, - [2060] = {.lex_state = 37, .external_lex_state = 2}, - [2061] = {.lex_state = 37, .external_lex_state = 2}, + [2058] = {.lex_state = 4, .external_lex_state = 2}, + [2059] = {.lex_state = 4, .external_lex_state = 2}, + [2060] = {.lex_state = 4, .external_lex_state = 2}, + [2061] = {.lex_state = 4, .external_lex_state = 2}, [2062] = {.lex_state = 37, .external_lex_state = 2}, [2063] = {.lex_state = 37, .external_lex_state = 2}, [2064] = {.lex_state = 37, .external_lex_state = 2}, @@ -9596,8 +9829,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4, .external_lex_state = 3}, - [2121] = {.lex_state = 4, .external_lex_state = 3}, + [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}, @@ -9606,33 +9839,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4, .external_lex_state = 3}, + [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 = 4, .external_lex_state = 3}, + [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 = 37, .external_lex_state = 2}, [2140] = {.lex_state = 37, .external_lex_state = 2}, [2141] = {.lex_state = 37, .external_lex_state = 2}, - [2142] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 3}, - [2149] = {.lex_state = 37, .external_lex_state = 3}, - [2150] = {.lex_state = 4, .external_lex_state = 3}, - [2151] = {.lex_state = 37, .external_lex_state = 3}, - [2152] = {.lex_state = 37, .external_lex_state = 3}, - [2153] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 4, .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}, @@ -9645,957 +9878,957 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3, .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 = 3, .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 = 4, .external_lex_state = 3}, - [2178] = {.lex_state = 3, .external_lex_state = 3}, - [2179] = {.lex_state = 6, .external_lex_state = 2}, - [2180] = {.lex_state = 4, .external_lex_state = 4}, - [2181] = {.lex_state = 4, .external_lex_state = 4}, - [2182] = {.lex_state = 3, .external_lex_state = 3}, - [2183] = {.lex_state = 4, .external_lex_state = 2}, - [2184] = {.lex_state = 2, .external_lex_state = 2}, - [2185] = {.lex_state = 4, .external_lex_state = 4}, + [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 = 4, .external_lex_state = 3}, + [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 = 4, .external_lex_state = 2}, - [2188] = {.lex_state = 4, .external_lex_state = 4}, - [2189] = {.lex_state = 2, .external_lex_state = 2}, - [2190] = {.lex_state = 4, .external_lex_state = 4}, - [2191] = {.lex_state = 4, .external_lex_state = 2}, - [2192] = {.lex_state = 4, .external_lex_state = 2}, - [2193] = {.lex_state = 4, .external_lex_state = 4}, - [2194] = {.lex_state = 2, .external_lex_state = 2}, - [2195] = {.lex_state = 2, .external_lex_state = 2}, - [2196] = {.lex_state = 7, .external_lex_state = 2}, - [2197] = {.lex_state = 2, .external_lex_state = 2}, - [2198] = {.lex_state = 2, .external_lex_state = 2}, - [2199] = {.lex_state = 3, .external_lex_state = 4}, - [2200] = {.lex_state = 7, .external_lex_state = 2}, - [2201] = {.lex_state = 2, .external_lex_state = 2}, - [2202] = {.lex_state = 2, .external_lex_state = 2}, - [2203] = {.lex_state = 3, .external_lex_state = 4}, - [2204] = {.lex_state = 2, .external_lex_state = 2}, - [2205] = {.lex_state = 2, .external_lex_state = 2}, - [2206] = {.lex_state = 2, .external_lex_state = 2}, - [2207] = {.lex_state = 11, .external_lex_state = 2}, - [2208] = {.lex_state = 11, .external_lex_state = 2}, - [2209] = {.lex_state = 11, .external_lex_state = 3}, - [2210] = {.lex_state = 11, .external_lex_state = 2}, - [2211] = {.lex_state = 11, .external_lex_state = 3}, - [2212] = {.lex_state = 11, .external_lex_state = 3}, - [2213] = {.lex_state = 2, .external_lex_state = 2}, - [2214] = {.lex_state = 2, .external_lex_state = 3}, - [2215] = {.lex_state = 9, .external_lex_state = 2}, - [2216] = {.lex_state = 11, .external_lex_state = 2}, - [2217] = {.lex_state = 9, .external_lex_state = 2}, - [2218] = {.lex_state = 9, .external_lex_state = 2}, - [2219] = {.lex_state = 9, .external_lex_state = 2}, - [2220] = {.lex_state = 9, .external_lex_state = 2}, - [2221] = {.lex_state = 9, .external_lex_state = 2}, - [2222] = {.lex_state = 9, .external_lex_state = 2}, - [2223] = {.lex_state = 2, .external_lex_state = 2}, - [2224] = {.lex_state = 4, .external_lex_state = 2}, - [2225] = {.lex_state = 11, .external_lex_state = 2}, - [2226] = {.lex_state = 9, .external_lex_state = 2}, - [2227] = {.lex_state = 2, .external_lex_state = 3}, - [2228] = {.lex_state = 9, .external_lex_state = 2}, - [2229] = {.lex_state = 11, .external_lex_state = 2}, - [2230] = {.lex_state = 9, .external_lex_state = 2}, - [2231] = {.lex_state = 10, .external_lex_state = 2}, - [2232] = {.lex_state = 8, .external_lex_state = 2}, - [2233] = {.lex_state = 11, .external_lex_state = 2}, - [2234] = {.lex_state = 9, .external_lex_state = 2}, - [2235] = {.lex_state = 11, .external_lex_state = 2}, - [2236] = {.lex_state = 11, .external_lex_state = 2}, - [2237] = {.lex_state = 10, .external_lex_state = 2}, - [2238] = {.lex_state = 11, .external_lex_state = 2}, - [2239] = {.lex_state = 2, .external_lex_state = 2}, - [2240] = {.lex_state = 4, .external_lex_state = 3}, - [2241] = {.lex_state = 4, .external_lex_state = 2}, - [2242] = {.lex_state = 2, .external_lex_state = 3}, - [2243] = {.lex_state = 4, .external_lex_state = 2}, - [2244] = {.lex_state = 12, .external_lex_state = 2}, - [2245] = {.lex_state = 12, .external_lex_state = 2}, - [2246] = {.lex_state = 3, .external_lex_state = 2}, - [2247] = {.lex_state = 11, .external_lex_state = 2}, - [2248] = {.lex_state = 2, .external_lex_state = 2}, - [2249] = {.lex_state = 11, .external_lex_state = 2}, - [2250] = {.lex_state = 11, .external_lex_state = 2}, - [2251] = {.lex_state = 12, .external_lex_state = 2}, - [2252] = {.lex_state = 12, .external_lex_state = 2}, - [2253] = {.lex_state = 12, .external_lex_state = 2}, - [2254] = {.lex_state = 3, .external_lex_state = 2}, - [2255] = {.lex_state = 4, .external_lex_state = 2}, - [2256] = {.lex_state = 3, .external_lex_state = 2}, - [2257] = {.lex_state = 12, .external_lex_state = 2}, - [2258] = {.lex_state = 12, .external_lex_state = 2}, - [2259] = {.lex_state = 12, .external_lex_state = 2}, - [2260] = {.lex_state = 12, .external_lex_state = 2}, - [2261] = {.lex_state = 3, .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 = 37, .external_lex_state = 2}, + [2209] = {.lex_state = 37, .external_lex_state = 2}, + [2210] = {.lex_state = 37, .external_lex_state = 2}, + [2211] = {.lex_state = 37, .external_lex_state = 2}, + [2212] = {.lex_state = 37, .external_lex_state = 3}, + [2213] = {.lex_state = 4, .external_lex_state = 3}, + [2214] = {.lex_state = 4, .external_lex_state = 3}, + [2215] = {.lex_state = 4, .external_lex_state = 3}, + [2216] = {.lex_state = 37, .external_lex_state = 2}, + [2217] = {.lex_state = 4, .external_lex_state = 3}, + [2218] = {.lex_state = 37, .external_lex_state = 2}, + [2219] = {.lex_state = 37, .external_lex_state = 2}, + [2220] = {.lex_state = 37, .external_lex_state = 2}, + [2221] = {.lex_state = 37, .external_lex_state = 3}, + [2222] = {.lex_state = 37, .external_lex_state = 3}, + [2223] = {.lex_state = 37, .external_lex_state = 3}, + [2224] = {.lex_state = 37, .external_lex_state = 3}, + [2225] = {.lex_state = 4, .external_lex_state = 3}, + [2226] = {.lex_state = 37, .external_lex_state = 3}, + [2227] = {.lex_state = 37, .external_lex_state = 3}, + [2228] = {.lex_state = 3, .external_lex_state = 2}, + [2229] = {.lex_state = 4, .external_lex_state = 2}, + [2230] = {.lex_state = 37, .external_lex_state = 2}, + [2231] = {.lex_state = 37, .external_lex_state = 2}, + [2232] = {.lex_state = 37, .external_lex_state = 2}, + [2233] = {.lex_state = 37, .external_lex_state = 2}, + [2234] = {.lex_state = 37, .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 = 3, .external_lex_state = 2}, + [2253] = {.lex_state = 37, .external_lex_state = 2}, + [2254] = {.lex_state = 37, .external_lex_state = 2}, + [2255] = {.lex_state = 4, .external_lex_state = 3}, + [2256] = {.lex_state = 4, .external_lex_state = 4}, + [2257] = {.lex_state = 6, .external_lex_state = 2}, + [2258] = {.lex_state = 3, .external_lex_state = 3}, + [2259] = {.lex_state = 4, .external_lex_state = 4}, + [2260] = {.lex_state = 4, .external_lex_state = 4}, + [2261] = {.lex_state = 4, .external_lex_state = 2}, [2262] = {.lex_state = 2, .external_lex_state = 2}, - [2263] = {.lex_state = 12, .external_lex_state = 2}, - [2264] = {.lex_state = 11, .external_lex_state = 2}, - [2265] = {.lex_state = 4, .external_lex_state = 4}, - [2266] = {.lex_state = 11, .external_lex_state = 2}, - [2267] = {.lex_state = 12, .external_lex_state = 2}, - [2268] = {.lex_state = 11, .external_lex_state = 2}, - [2269] = {.lex_state = 3, .external_lex_state = 3}, - [2270] = {.lex_state = 2, .external_lex_state = 1}, - [2271] = {.lex_state = 11, .external_lex_state = 2}, - [2272] = {.lex_state = 12, .external_lex_state = 2}, - [2273] = {.lex_state = 4, .external_lex_state = 4}, - [2274] = {.lex_state = 2, .external_lex_state = 3}, - [2275] = {.lex_state = 2, .external_lex_state = 3}, - [2276] = {.lex_state = 2, .external_lex_state = 3}, - [2277] = {.lex_state = 2, .external_lex_state = 3}, - [2278] = {.lex_state = 2, .external_lex_state = 3}, - [2279] = {.lex_state = 2, .external_lex_state = 3}, - [2280] = {.lex_state = 2, .external_lex_state = 3}, - [2281] = {.lex_state = 12, .external_lex_state = 2}, + [2263] = {.lex_state = 37, .external_lex_state = 2}, + [2264] = {.lex_state = 4, .external_lex_state = 2}, + [2265] = {.lex_state = 3, .external_lex_state = 3}, + [2266] = {.lex_state = 4, .external_lex_state = 4}, + [2267] = {.lex_state = 4, .external_lex_state = 4}, + [2268] = {.lex_state = 2, .external_lex_state = 2}, + [2269] = {.lex_state = 4, .external_lex_state = 2}, + [2270] = {.lex_state = 4, .external_lex_state = 4}, + [2271] = {.lex_state = 4, .external_lex_state = 2}, + [2272] = {.lex_state = 2, .external_lex_state = 2}, + [2273] = {.lex_state = 2, .external_lex_state = 2}, + [2274] = {.lex_state = 2, .external_lex_state = 2}, + [2275] = {.lex_state = 3, .external_lex_state = 4}, + [2276] = {.lex_state = 7, .external_lex_state = 2}, + [2277] = {.lex_state = 7, .external_lex_state = 2}, + [2278] = {.lex_state = 2, .external_lex_state = 2}, + [2279] = {.lex_state = 2, .external_lex_state = 2}, + [2280] = {.lex_state = 2, .external_lex_state = 2}, + [2281] = {.lex_state = 2, .external_lex_state = 2}, [2282] = {.lex_state = 2, .external_lex_state = 2}, - [2283] = {.lex_state = 12, .external_lex_state = 2}, - [2284] = {.lex_state = 12, .external_lex_state = 2}, - [2285] = {.lex_state = 3, .external_lex_state = 2}, - [2286] = {.lex_state = 4, .external_lex_state = 2}, + [2283] = {.lex_state = 2, .external_lex_state = 2}, + [2284] = {.lex_state = 3, .external_lex_state = 4}, + [2285] = {.lex_state = 11, .external_lex_state = 2}, + [2286] = {.lex_state = 11, .external_lex_state = 3}, [2287] = {.lex_state = 11, .external_lex_state = 2}, - [2288] = {.lex_state = 12, .external_lex_state = 2}, - [2289] = {.lex_state = 12, .external_lex_state = 2}, - [2290] = {.lex_state = 12, .external_lex_state = 2}, - [2291] = {.lex_state = 11, .external_lex_state = 2}, + [2288] = {.lex_state = 11, .external_lex_state = 2}, + [2289] = {.lex_state = 11, .external_lex_state = 3}, + [2290] = {.lex_state = 11, .external_lex_state = 3}, + [2291] = {.lex_state = 2, .external_lex_state = 2}, [2292] = {.lex_state = 2, .external_lex_state = 3}, - [2293] = {.lex_state = 2, .external_lex_state = 3}, - [2294] = {.lex_state = 2, .external_lex_state = 3}, - [2295] = {.lex_state = 11, .external_lex_state = 2}, - [2296] = {.lex_state = 12, .external_lex_state = 2}, - [2297] = {.lex_state = 2, .external_lex_state = 3}, - [2298] = {.lex_state = 2, .external_lex_state = 3}, - [2299] = {.lex_state = 12, .external_lex_state = 2}, - [2300] = {.lex_state = 12, .external_lex_state = 2}, - [2301] = {.lex_state = 11, .external_lex_state = 2}, - [2302] = {.lex_state = 4, .external_lex_state = 2}, - [2303] = {.lex_state = 12, .external_lex_state = 2}, - [2304] = {.lex_state = 11, .external_lex_state = 2}, - [2305] = {.lex_state = 2, .external_lex_state = 1}, - [2306] = {.lex_state = 2, .external_lex_state = 3}, - [2307] = {.lex_state = 12, .external_lex_state = 2}, - [2308] = {.lex_state = 0, .external_lex_state = 2}, - [2309] = {.lex_state = 3, .external_lex_state = 2}, - [2310] = {.lex_state = 12, .external_lex_state = 2}, - [2311] = {.lex_state = 12, .external_lex_state = 2}, - [2312] = {.lex_state = 4, .external_lex_state = 4}, - [2313] = {.lex_state = 11, .external_lex_state = 2}, - [2314] = {.lex_state = 11, .external_lex_state = 2}, - [2315] = {.lex_state = 12, .external_lex_state = 2}, - [2316] = {.lex_state = 12, .external_lex_state = 2}, - [2317] = {.lex_state = 2, .external_lex_state = 3}, - [2318] = {.lex_state = 12, .external_lex_state = 2}, - [2319] = {.lex_state = 11, .external_lex_state = 2}, - [2320] = {.lex_state = 2, .external_lex_state = 3}, + [2293] = {.lex_state = 9, .external_lex_state = 2}, + [2294] = {.lex_state = 10, .external_lex_state = 2}, + [2295] = {.lex_state = 9, .external_lex_state = 2}, + [2296] = {.lex_state = 4, .external_lex_state = 2}, + [2297] = {.lex_state = 9, .external_lex_state = 2}, + [2298] = {.lex_state = 9, .external_lex_state = 2}, + [2299] = {.lex_state = 9, .external_lex_state = 2}, + [2300] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 10, .external_lex_state = 2}, + [2305] = {.lex_state = 9, .external_lex_state = 2}, + [2306] = {.lex_state = 9, .external_lex_state = 2}, + [2307] = {.lex_state = 2, .external_lex_state = 2}, + [2308] = {.lex_state = 9, .external_lex_state = 2}, + [2309] = {.lex_state = 9, .external_lex_state = 2}, + [2310] = {.lex_state = 8, .external_lex_state = 2}, + [2311] = {.lex_state = 4, .external_lex_state = 3}, + [2312] = {.lex_state = 4, .external_lex_state = 2}, + [2313] = {.lex_state = 4, .external_lex_state = 2}, + [2314] = {.lex_state = 2, .external_lex_state = 3}, + [2315] = {.lex_state = 15, .external_lex_state = 2}, + [2316] = {.lex_state = 15, .external_lex_state = 2}, + [2317] = {.lex_state = 15, .external_lex_state = 2}, + [2318] = {.lex_state = 15, .external_lex_state = 2}, + [2319] = {.lex_state = 15, .external_lex_state = 2}, + [2320] = {.lex_state = 15, .external_lex_state = 2}, [2321] = {.lex_state = 3, .external_lex_state = 2}, - [2322] = {.lex_state = 11, .external_lex_state = 2}, - [2323] = {.lex_state = 12, .external_lex_state = 2}, + [2322] = {.lex_state = 3, .external_lex_state = 2}, + [2323] = {.lex_state = 15, .external_lex_state = 2}, [2324] = {.lex_state = 11, .external_lex_state = 2}, - [2325] = {.lex_state = 12, .external_lex_state = 2}, - [2326] = {.lex_state = 12, .external_lex_state = 2}, - [2327] = {.lex_state = 2, .external_lex_state = 3}, - [2328] = {.lex_state = 2, .external_lex_state = 3}, - [2329] = {.lex_state = 2, .external_lex_state = 3}, - [2330] = {.lex_state = 2, .external_lex_state = 3}, - [2331] = {.lex_state = 2, .external_lex_state = 3}, - [2332] = {.lex_state = 2, .external_lex_state = 3}, - [2333] = {.lex_state = 2, .external_lex_state = 3}, - [2334] = {.lex_state = 2, .external_lex_state = 3}, - [2335] = {.lex_state = 11, .external_lex_state = 2}, - [2336] = {.lex_state = 11, .external_lex_state = 2}, - [2337] = {.lex_state = 11, .external_lex_state = 2}, - [2338] = {.lex_state = 11, .external_lex_state = 2}, - [2339] = {.lex_state = 2, .external_lex_state = 3}, - [2340] = {.lex_state = 4, .external_lex_state = 2}, + [2325] = {.lex_state = 11, .external_lex_state = 2}, + [2326] = {.lex_state = 3, .external_lex_state = 2}, + [2327] = {.lex_state = 11, .external_lex_state = 2}, + [2328] = {.lex_state = 11, .external_lex_state = 2}, + [2329] = {.lex_state = 3, .external_lex_state = 2}, + [2330] = {.lex_state = 3, .external_lex_state = 3}, + [2331] = {.lex_state = 3, .external_lex_state = 2}, + [2332] = {.lex_state = 12, .external_lex_state = 2}, + [2333] = {.lex_state = 12, .external_lex_state = 2}, + [2334] = {.lex_state = 4, .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 = 15, .external_lex_state = 2}, + [2339] = {.lex_state = 15, .external_lex_state = 2}, + [2340] = {.lex_state = 15, .external_lex_state = 2}, [2341] = {.lex_state = 12, .external_lex_state = 2}, - [2342] = {.lex_state = 2, .external_lex_state = 2}, - [2343] = {.lex_state = 2, .external_lex_state = 3}, - [2344] = {.lex_state = 4, .external_lex_state = 2}, - [2345] = {.lex_state = 11, .external_lex_state = 2}, + [2342] = {.lex_state = 15, .external_lex_state = 2}, + [2343] = {.lex_state = 12, .external_lex_state = 2}, + [2344] = {.lex_state = 2, .external_lex_state = 2}, + [2345] = {.lex_state = 2, .external_lex_state = 2}, [2346] = {.lex_state = 11, .external_lex_state = 2}, - [2347] = {.lex_state = 4, .external_lex_state = 2}, - [2348] = {.lex_state = 2, .external_lex_state = 2}, - [2349] = {.lex_state = 11, .external_lex_state = 2}, - [2350] = {.lex_state = 2, .external_lex_state = 3}, - [2351] = {.lex_state = 12, .external_lex_state = 2}, - [2352] = {.lex_state = 2, .external_lex_state = 3}, - [2353] = {.lex_state = 11, .external_lex_state = 2}, - [2354] = {.lex_state = 2, .external_lex_state = 2}, - [2355] = {.lex_state = 3, .external_lex_state = 2}, - [2356] = {.lex_state = 3, .external_lex_state = 2}, - [2357] = {.lex_state = 3, .external_lex_state = 2}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 0, .external_lex_state = 2}, - [2360] = {.lex_state = 9, .external_lex_state = 2}, - [2361] = {.lex_state = 3, .external_lex_state = 3}, - [2362] = {.lex_state = 3, .external_lex_state = 2}, - [2363] = {.lex_state = 3, .external_lex_state = 3}, - [2364] = {.lex_state = 9, .external_lex_state = 2}, - [2365] = {.lex_state = 2, .external_lex_state = 2}, - [2366] = {.lex_state = 9, .external_lex_state = 2}, - [2367] = {.lex_state = 0, .external_lex_state = 3}, - [2368] = {.lex_state = 11, .external_lex_state = 2}, - [2369] = {.lex_state = 3, .external_lex_state = 2}, - [2370] = {.lex_state = 9, .external_lex_state = 2}, - [2371] = {.lex_state = 3, .external_lex_state = 2}, - [2372] = {.lex_state = 3, .external_lex_state = 2}, - [2373] = {.lex_state = 2, .external_lex_state = 2}, + [2347] = {.lex_state = 11, .external_lex_state = 2}, + [2348] = {.lex_state = 4, .external_lex_state = 4}, + [2349] = {.lex_state = 12, .external_lex_state = 2}, + [2350] = {.lex_state = 2, .external_lex_state = 1}, + [2351] = {.lex_state = 15, .external_lex_state = 2}, + [2352] = {.lex_state = 12, .external_lex_state = 2}, + [2353] = {.lex_state = 12, .external_lex_state = 2}, + [2354] = {.lex_state = 12, .external_lex_state = 2}, + [2355] = {.lex_state = 11, .external_lex_state = 2}, + [2356] = {.lex_state = 12, .external_lex_state = 2}, + [2357] = {.lex_state = 12, .external_lex_state = 2}, + [2358] = {.lex_state = 12, .external_lex_state = 2}, + [2359] = {.lex_state = 12, .external_lex_state = 2}, + [2360] = {.lex_state = 12, .external_lex_state = 2}, + [2361] = {.lex_state = 11, .external_lex_state = 2}, + [2362] = {.lex_state = 12, .external_lex_state = 2}, + [2363] = {.lex_state = 12, .external_lex_state = 2}, + [2364] = {.lex_state = 4, .external_lex_state = 2}, + [2365] = {.lex_state = 15, .external_lex_state = 2}, + [2366] = {.lex_state = 15, .external_lex_state = 2}, + [2367] = {.lex_state = 4, .external_lex_state = 4}, + [2368] = {.lex_state = 12, .external_lex_state = 2}, + [2369] = {.lex_state = 11, .external_lex_state = 2}, + [2370] = {.lex_state = 2, .external_lex_state = 3}, + [2371] = {.lex_state = 2, .external_lex_state = 3}, + [2372] = {.lex_state = 2, .external_lex_state = 3}, + [2373] = {.lex_state = 2, .external_lex_state = 3}, [2374] = {.lex_state = 2, .external_lex_state = 3}, - [2375] = {.lex_state = 2, .external_lex_state = 2}, + [2375] = {.lex_state = 2, .external_lex_state = 3}, [2376] = {.lex_state = 2, .external_lex_state = 3}, - [2377] = {.lex_state = 2, .external_lex_state = 2}, - [2378] = {.lex_state = 3, .external_lex_state = 2}, - [2379] = {.lex_state = 12, .external_lex_state = 4}, - [2380] = {.lex_state = 9, .external_lex_state = 2}, - [2381] = {.lex_state = 0, .external_lex_state = 3}, - [2382] = {.lex_state = 0, .external_lex_state = 3}, - [2383] = {.lex_state = 2, .external_lex_state = 2}, - [2384] = {.lex_state = 3, .external_lex_state = 2}, - [2385] = {.lex_state = 0, .external_lex_state = 3}, - [2386] = {.lex_state = 3, .external_lex_state = 4}, - [2387] = {.lex_state = 3, .external_lex_state = 2}, - [2388] = {.lex_state = 2, .external_lex_state = 4}, - [2389] = {.lex_state = 3, .external_lex_state = 2}, - [2390] = {.lex_state = 3, .external_lex_state = 2}, - [2391] = {.lex_state = 2, .external_lex_state = 4}, - [2392] = {.lex_state = 9, .external_lex_state = 2}, - [2393] = {.lex_state = 3, .external_lex_state = 2}, - [2394] = {.lex_state = 12, .external_lex_state = 4}, - [2395] = {.lex_state = 0, .external_lex_state = 4}, - [2396] = {.lex_state = 3, .external_lex_state = 2}, - [2397] = {.lex_state = 2, .external_lex_state = 3}, - [2398] = {.lex_state = 11, .external_lex_state = 2}, - [2399] = {.lex_state = 3, .external_lex_state = 4}, - [2400] = {.lex_state = 3, .external_lex_state = 2}, - [2401] = {.lex_state = 3, .external_lex_state = 2}, - [2402] = {.lex_state = 2, .external_lex_state = 2}, - [2403] = {.lex_state = 3, .external_lex_state = 2}, - [2404] = {.lex_state = 3, .external_lex_state = 2}, - [2405] = {.lex_state = 11, .external_lex_state = 2}, - [2406] = {.lex_state = 3, .external_lex_state = 2}, - [2407] = {.lex_state = 0, .external_lex_state = 3}, + [2377] = {.lex_state = 15, .external_lex_state = 2}, + [2378] = {.lex_state = 15, .external_lex_state = 2}, + [2379] = {.lex_state = 12, .external_lex_state = 2}, + [2380] = {.lex_state = 0, .external_lex_state = 2}, + [2381] = {.lex_state = 11, .external_lex_state = 2}, + [2382] = {.lex_state = 2, .external_lex_state = 3}, + [2383] = {.lex_state = 0, .external_lex_state = 2}, + [2384] = {.lex_state = 15, .external_lex_state = 2}, + [2385] = {.lex_state = 11, .external_lex_state = 2}, + [2386] = {.lex_state = 15, .external_lex_state = 2}, + [2387] = {.lex_state = 2, .external_lex_state = 3}, + [2388] = {.lex_state = 11, .external_lex_state = 2}, + [2389] = {.lex_state = 2, .external_lex_state = 3}, + [2390] = {.lex_state = 15, .external_lex_state = 2}, + [2391] = {.lex_state = 11, .external_lex_state = 2}, + [2392] = {.lex_state = 15, .external_lex_state = 2}, + [2393] = {.lex_state = 15, .external_lex_state = 2}, + [2394] = {.lex_state = 11, .external_lex_state = 2}, + [2395] = {.lex_state = 3, .external_lex_state = 2}, + [2396] = {.lex_state = 15, .external_lex_state = 2}, + [2397] = {.lex_state = 15, .external_lex_state = 2}, + [2398] = {.lex_state = 15, .external_lex_state = 2}, + [2399] = {.lex_state = 0, .external_lex_state = 2}, + [2400] = {.lex_state = 11, .external_lex_state = 2}, + [2401] = {.lex_state = 0, .external_lex_state = 2}, + [2402] = {.lex_state = 0, .external_lex_state = 2}, + [2403] = {.lex_state = 0, .external_lex_state = 2}, + [2404] = {.lex_state = 15, .external_lex_state = 2}, + [2405] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 3, .external_lex_state = 2}, - [2410] = {.lex_state = 2, .external_lex_state = 2}, - [2411] = {.lex_state = 2, .external_lex_state = 4}, - [2412] = {.lex_state = 2, .external_lex_state = 4}, - [2413] = {.lex_state = 3, .external_lex_state = 2}, - [2414] = {.lex_state = 3, .external_lex_state = 2}, - [2415] = {.lex_state = 2, .external_lex_state = 2}, - [2416] = {.lex_state = 2, .external_lex_state = 4}, - [2417] = {.lex_state = 2, .external_lex_state = 2}, - [2418] = {.lex_state = 3, .external_lex_state = 2}, - [2419] = {.lex_state = 3, .external_lex_state = 2}, - [2420] = {.lex_state = 3, .external_lex_state = 2}, - [2421] = {.lex_state = 2, .external_lex_state = 2}, - [2422] = {.lex_state = 2, .external_lex_state = 2}, - [2423] = {.lex_state = 3, .external_lex_state = 2}, - [2424] = {.lex_state = 12, .external_lex_state = 2}, - [2425] = {.lex_state = 0, .external_lex_state = 3}, - [2426] = {.lex_state = 2, .external_lex_state = 4}, + [2409] = {.lex_state = 2, .external_lex_state = 3}, + [2410] = {.lex_state = 2, .external_lex_state = 3}, + [2411] = {.lex_state = 2, .external_lex_state = 3}, + [2412] = {.lex_state = 11, .external_lex_state = 2}, + [2413] = {.lex_state = 2, .external_lex_state = 3}, + [2414] = {.lex_state = 2, .external_lex_state = 3}, + [2415] = {.lex_state = 0, .external_lex_state = 2}, + [2416] = {.lex_state = 0, .external_lex_state = 2}, + [2417] = {.lex_state = 15, .external_lex_state = 2}, + [2418] = {.lex_state = 11, .external_lex_state = 2}, + [2419] = {.lex_state = 2, .external_lex_state = 3}, + [2420] = {.lex_state = 2, .external_lex_state = 1}, + [2421] = {.lex_state = 11, .external_lex_state = 2}, + [2422] = {.lex_state = 0, .external_lex_state = 2}, + [2423] = {.lex_state = 15, .external_lex_state = 2}, + [2424] = {.lex_state = 4, .external_lex_state = 2}, + [2425] = {.lex_state = 0, .external_lex_state = 2}, + [2426] = {.lex_state = 2, .external_lex_state = 3}, [2427] = {.lex_state = 2, .external_lex_state = 3}, - [2428] = {.lex_state = 2, .external_lex_state = 2}, - [2429] = {.lex_state = 0, .external_lex_state = 4}, - [2430] = {.lex_state = 2, .external_lex_state = 1}, - [2431] = {.lex_state = 2, .external_lex_state = 2}, - [2432] = {.lex_state = 0, .external_lex_state = 2}, - [2433] = {.lex_state = 0, .external_lex_state = 2}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, - [2435] = {.lex_state = 5, .external_lex_state = 2}, - [2436] = {.lex_state = 3, .external_lex_state = 2}, - [2437] = {.lex_state = 2, .external_lex_state = 2}, - [2438] = {.lex_state = 5, .external_lex_state = 2}, - [2439] = {.lex_state = 0, .external_lex_state = 2}, - [2440] = {.lex_state = 0, .external_lex_state = 3}, - [2441] = {.lex_state = 2, .external_lex_state = 2}, - [2442] = {.lex_state = 0, .external_lex_state = 2}, - [2443] = {.lex_state = 5, .external_lex_state = 2}, - [2444] = {.lex_state = 3, .external_lex_state = 2}, - [2445] = {.lex_state = 0, .external_lex_state = 2}, - [2446] = {.lex_state = 2, .external_lex_state = 2}, - [2447] = {.lex_state = 2, .external_lex_state = 2}, - [2448] = {.lex_state = 12, .external_lex_state = 2}, - [2449] = {.lex_state = 2, .external_lex_state = 2}, - [2450] = {.lex_state = 2, .external_lex_state = 2}, - [2451] = {.lex_state = 2, .external_lex_state = 2}, - [2452] = {.lex_state = 3, .external_lex_state = 2}, - [2453] = {.lex_state = 2, .external_lex_state = 2}, - [2454] = {.lex_state = 3, .external_lex_state = 2}, - [2455] = {.lex_state = 2, .external_lex_state = 4}, - [2456] = {.lex_state = 5, .external_lex_state = 2}, - [2457] = {.lex_state = 0, .external_lex_state = 4}, - [2458] = {.lex_state = 3, .external_lex_state = 2}, - [2459] = {.lex_state = 12, .external_lex_state = 2}, - [2460] = {.lex_state = 2, .external_lex_state = 2}, - [2461] = {.lex_state = 3, .external_lex_state = 2}, - [2462] = {.lex_state = 0, .external_lex_state = 3}, - [2463] = {.lex_state = 2, .external_lex_state = 2}, - [2464] = {.lex_state = 0, .external_lex_state = 2}, - [2465] = {.lex_state = 0, .external_lex_state = 4}, - [2466] = {.lex_state = 2, .external_lex_state = 2}, - [2467] = {.lex_state = 2, .external_lex_state = 2}, - [2468] = {.lex_state = 2, .external_lex_state = 2}, - [2469] = {.lex_state = 0, .external_lex_state = 4}, - [2470] = {.lex_state = 3, .external_lex_state = 2}, - [2471] = {.lex_state = 0, .external_lex_state = 2}, + [2428] = {.lex_state = 11, .external_lex_state = 2}, + [2429] = {.lex_state = 15, .external_lex_state = 2}, + [2430] = {.lex_state = 11, .external_lex_state = 2}, + [2431] = {.lex_state = 4, .external_lex_state = 2}, + [2432] = {.lex_state = 11, .external_lex_state = 2}, + [2433] = {.lex_state = 15, .external_lex_state = 2}, + [2434] = {.lex_state = 4, .external_lex_state = 4}, + [2435] = {.lex_state = 11, .external_lex_state = 2}, + [2436] = {.lex_state = 15, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 3}, + [2443] = {.lex_state = 2, .external_lex_state = 3}, + [2444] = {.lex_state = 2, .external_lex_state = 3}, + [2445] = {.lex_state = 2, .external_lex_state = 3}, + [2446] = {.lex_state = 3, .external_lex_state = 2}, + [2447] = {.lex_state = 11, .external_lex_state = 2}, + [2448] = {.lex_state = 4, .external_lex_state = 2}, + [2449] = {.lex_state = 2, .external_lex_state = 3}, + [2450] = {.lex_state = 11, .external_lex_state = 2}, + [2451] = {.lex_state = 15, .external_lex_state = 2}, + [2452] = {.lex_state = 2, .external_lex_state = 4}, + [2453] = {.lex_state = 0, .external_lex_state = 3}, + [2454] = {.lex_state = 15, .external_lex_state = 4}, + [2455] = {.lex_state = 11, .external_lex_state = 2}, + [2456] = {.lex_state = 3, .external_lex_state = 4}, + [2457] = {.lex_state = 3, .external_lex_state = 2}, + [2458] = {.lex_state = 0, .external_lex_state = 3}, + [2459] = {.lex_state = 2, .external_lex_state = 4}, + [2460] = {.lex_state = 3, .external_lex_state = 2}, + [2461] = {.lex_state = 2, .external_lex_state = 3}, + [2462] = {.lex_state = 2, .external_lex_state = 2}, + [2463] = {.lex_state = 2, .external_lex_state = 3}, + [2464] = {.lex_state = 0, .external_lex_state = 3}, + [2465] = {.lex_state = 0, .external_lex_state = 2}, + [2466] = {.lex_state = 2, .external_lex_state = 4}, + [2467] = {.lex_state = 2, .external_lex_state = 3}, + [2468] = {.lex_state = 3, .external_lex_state = 2}, + [2469] = {.lex_state = 13, .external_lex_state = 2}, + [2470] = {.lex_state = 2, .external_lex_state = 3}, + [2471] = {.lex_state = 2, .external_lex_state = 2}, [2472] = {.lex_state = 3, .external_lex_state = 2}, - [2473] = {.lex_state = 2, .external_lex_state = 2}, - [2474] = {.lex_state = 2, .external_lex_state = 2}, - [2475] = {.lex_state = 3, .external_lex_state = 4}, - [2476] = {.lex_state = 2, .external_lex_state = 2}, + [2473] = {.lex_state = 9, .external_lex_state = 2}, + [2474] = {.lex_state = 9, .external_lex_state = 2}, + [2475] = {.lex_state = 15, .external_lex_state = 4}, + [2476] = {.lex_state = 11, .external_lex_state = 2}, [2477] = {.lex_state = 2, .external_lex_state = 2}, - [2478] = {.lex_state = 2, .external_lex_state = 4}, - [2479] = {.lex_state = 2, .external_lex_state = 2}, - [2480] = {.lex_state = 2, .external_lex_state = 2}, - [2481] = {.lex_state = 3, .external_lex_state = 4}, - [2482] = {.lex_state = 0, .external_lex_state = 4}, - [2483] = {.lex_state = 3, .external_lex_state = 4}, - [2484] = {.lex_state = 0, .external_lex_state = 4}, - [2485] = {.lex_state = 0, .external_lex_state = 2}, - [2486] = {.lex_state = 2, .external_lex_state = 2}, - [2487] = {.lex_state = 0, .external_lex_state = 4}, + [2478] = {.lex_state = 0, .external_lex_state = 2}, + [2479] = {.lex_state = 9, .external_lex_state = 2}, + [2480] = {.lex_state = 2, .external_lex_state = 4}, + [2481] = {.lex_state = 13, .external_lex_state = 2}, + [2482] = {.lex_state = 0, .external_lex_state = 3}, + [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2484] = {.lex_state = 3, .external_lex_state = 3}, + [2485] = {.lex_state = 3, .external_lex_state = 2}, + [2486] = {.lex_state = 3, .external_lex_state = 3}, + [2487] = {.lex_state = 3, .external_lex_state = 2}, [2488] = {.lex_state = 2, .external_lex_state = 2}, - [2489] = {.lex_state = 2, .external_lex_state = 2}, - [2490] = {.lex_state = 3, .external_lex_state = 2}, - [2491] = {.lex_state = 0, .external_lex_state = 4}, - [2492] = {.lex_state = 2, .external_lex_state = 2}, - [2493] = {.lex_state = 2, .external_lex_state = 2}, + [2489] = {.lex_state = 9, .external_lex_state = 2}, + [2490] = {.lex_state = 13, .external_lex_state = 2}, + [2491] = {.lex_state = 3, .external_lex_state = 4}, + [2492] = {.lex_state = 3, .external_lex_state = 2}, + [2493] = {.lex_state = 13, .external_lex_state = 2}, [2494] = {.lex_state = 3, .external_lex_state = 2}, - [2495] = {.lex_state = 3, .external_lex_state = 4}, - [2496] = {.lex_state = 0, .external_lex_state = 4}, - [2497] = {.lex_state = 0, .external_lex_state = 3}, - [2498] = {.lex_state = 2, .external_lex_state = 4}, - [2499] = {.lex_state = 2, .external_lex_state = 2}, - [2500] = {.lex_state = 3, .external_lex_state = 4}, - [2501] = {.lex_state = 0, .external_lex_state = 4}, - [2502] = {.lex_state = 3, .external_lex_state = 2}, - [2503] = {.lex_state = 2, .external_lex_state = 2}, - [2504] = {.lex_state = 0, .external_lex_state = 4}, - [2505] = {.lex_state = 2, .external_lex_state = 2}, - [2506] = {.lex_state = 2, .external_lex_state = 4}, - [2507] = {.lex_state = 0, .external_lex_state = 3}, - [2508] = {.lex_state = 2, .external_lex_state = 2}, - [2509] = {.lex_state = 2, .external_lex_state = 2}, - [2510] = {.lex_state = 2, .external_lex_state = 2}, - [2511] = {.lex_state = 0, .external_lex_state = 4}, - [2512] = {.lex_state = 2, .external_lex_state = 4}, - [2513] = {.lex_state = 2, .external_lex_state = 2}, - [2514] = {.lex_state = 2, .external_lex_state = 2}, - [2515] = {.lex_state = 2, .external_lex_state = 2}, - [2516] = {.lex_state = 3, .external_lex_state = 4}, - [2517] = {.lex_state = 0, .external_lex_state = 4}, - [2518] = {.lex_state = 3, .external_lex_state = 4}, - [2519] = {.lex_state = 2, .external_lex_state = 2}, - [2520] = {.lex_state = 3, .external_lex_state = 4}, - [2521] = {.lex_state = 0, .external_lex_state = 4}, - [2522] = {.lex_state = 0, .external_lex_state = 4}, - [2523] = {.lex_state = 2, .external_lex_state = 2}, - [2524] = {.lex_state = 0, .external_lex_state = 4}, - [2525] = {.lex_state = 2, .external_lex_state = 4}, - [2526] = {.lex_state = 2, .external_lex_state = 2}, + [2495] = {.lex_state = 3, .external_lex_state = 2}, + [2496] = {.lex_state = 0, .external_lex_state = 3}, + [2497] = {.lex_state = 3, .external_lex_state = 2}, + [2498] = {.lex_state = 3, .external_lex_state = 2}, + [2499] = {.lex_state = 3, .external_lex_state = 2}, + [2500] = {.lex_state = 3, .external_lex_state = 2}, + [2501] = {.lex_state = 2, .external_lex_state = 2}, + [2502] = {.lex_state = 2, .external_lex_state = 2}, + [2503] = {.lex_state = 3, .external_lex_state = 2}, + [2504] = {.lex_state = 3, .external_lex_state = 2}, + [2505] = {.lex_state = 15, .external_lex_state = 2}, + [2506] = {.lex_state = 0, .external_lex_state = 2}, + [2507] = {.lex_state = 3, .external_lex_state = 2}, + [2508] = {.lex_state = 3, .external_lex_state = 2}, + [2509] = {.lex_state = 3, .external_lex_state = 2}, + [2510] = {.lex_state = 3, .external_lex_state = 2}, + [2511] = {.lex_state = 3, .external_lex_state = 2}, + [2512] = {.lex_state = 0, .external_lex_state = 3}, + [2513] = {.lex_state = 0, .external_lex_state = 2}, + [2514] = {.lex_state = 0, .external_lex_state = 3}, + [2515] = {.lex_state = 9, .external_lex_state = 2}, + [2516] = {.lex_state = 3, .external_lex_state = 2}, + [2517] = {.lex_state = 2, .external_lex_state = 4}, + [2518] = {.lex_state = 0, .external_lex_state = 4}, + [2519] = {.lex_state = 3, .external_lex_state = 2}, + [2520] = {.lex_state = 13, .external_lex_state = 2}, + [2521] = {.lex_state = 3, .external_lex_state = 2}, + [2522] = {.lex_state = 9, .external_lex_state = 2}, + [2523] = {.lex_state = 3, .external_lex_state = 2}, + [2524] = {.lex_state = 11, .external_lex_state = 2}, + [2525] = {.lex_state = 3, .external_lex_state = 2}, + [2526] = {.lex_state = 2, .external_lex_state = 4}, [2527] = {.lex_state = 2, .external_lex_state = 2}, - [2528] = {.lex_state = 2, .external_lex_state = 2}, + [2528] = {.lex_state = 3, .external_lex_state = 2}, [2529] = {.lex_state = 0, .external_lex_state = 4}, - [2530] = {.lex_state = 0, .external_lex_state = 2}, - [2531] = {.lex_state = 2, .external_lex_state = 4}, - [2532] = {.lex_state = 2, .external_lex_state = 2}, - [2533] = {.lex_state = 2, .external_lex_state = 2}, - [2534] = {.lex_state = 3, .external_lex_state = 4}, + [2530] = {.lex_state = 0, .external_lex_state = 3}, + [2531] = {.lex_state = 0, .external_lex_state = 2}, + [2532] = {.lex_state = 0, .external_lex_state = 4}, + [2533] = {.lex_state = 0, .external_lex_state = 2}, + [2534] = {.lex_state = 3, .external_lex_state = 3}, [2535] = {.lex_state = 0, .external_lex_state = 4}, - [2536] = {.lex_state = 2, .external_lex_state = 1}, - [2537] = {.lex_state = 0, .external_lex_state = 2}, - [2538] = {.lex_state = 0, .external_lex_state = 2}, - [2539] = {.lex_state = 2, .external_lex_state = 2}, - [2540] = {.lex_state = 2, .external_lex_state = 2}, - [2541] = {.lex_state = 2, .external_lex_state = 2}, - [2542] = {.lex_state = 2, .external_lex_state = 2}, - [2543] = {.lex_state = 0, .external_lex_state = 4}, - [2544] = {.lex_state = 3, .external_lex_state = 3}, - [2545] = {.lex_state = 2, .external_lex_state = 4}, - [2546] = {.lex_state = 2, .external_lex_state = 2}, - [2547] = {.lex_state = 0, .external_lex_state = 4}, - [2548] = {.lex_state = 2, .external_lex_state = 2}, - [2549] = {.lex_state = 0, .external_lex_state = 3}, - [2550] = {.lex_state = 2, .external_lex_state = 4}, - [2551] = {.lex_state = 2, .external_lex_state = 4}, - [2552] = {.lex_state = 3, .external_lex_state = 2}, - [2553] = {.lex_state = 2, .external_lex_state = 4}, - [2554] = {.lex_state = 2, .external_lex_state = 2}, - [2555] = {.lex_state = 2, .external_lex_state = 2}, - [2556] = {.lex_state = 2, .external_lex_state = 4}, - [2557] = {.lex_state = 2, .external_lex_state = 2}, - [2558] = {.lex_state = 3, .external_lex_state = 4}, - [2559] = {.lex_state = 2, .external_lex_state = 2}, - [2560] = {.lex_state = 2, .external_lex_state = 2}, - [2561] = {.lex_state = 2, .external_lex_state = 2}, - [2562] = {.lex_state = 2, .external_lex_state = 2}, - [2563] = {.lex_state = 0, .external_lex_state = 4}, - [2564] = {.lex_state = 12, .external_lex_state = 2}, - [2565] = {.lex_state = 0, .external_lex_state = 2}, - [2566] = {.lex_state = 12, .external_lex_state = 2}, - [2567] = {.lex_state = 2, .external_lex_state = 2}, - [2568] = {.lex_state = 2, .external_lex_state = 4}, - [2569] = {.lex_state = 2, .external_lex_state = 4}, - [2570] = {.lex_state = 0, .external_lex_state = 4}, - [2571] = {.lex_state = 2, .external_lex_state = 2}, + [2536] = {.lex_state = 2, .external_lex_state = 2}, + [2537] = {.lex_state = 2, .external_lex_state = 2}, + [2538] = {.lex_state = 0, .external_lex_state = 4}, + [2539] = {.lex_state = 0, .external_lex_state = 4}, + [2540] = {.lex_state = 0, .external_lex_state = 4}, + [2541] = {.lex_state = 0, .external_lex_state = 4}, + [2542] = {.lex_state = 0, .external_lex_state = 4}, + [2543] = {.lex_state = 0, .external_lex_state = 3}, + [2544] = {.lex_state = 2, .external_lex_state = 2}, + [2545] = {.lex_state = 0, .external_lex_state = 4}, + [2546] = {.lex_state = 3, .external_lex_state = 2}, + [2547] = {.lex_state = 2, .external_lex_state = 2}, + [2548] = {.lex_state = 0, .external_lex_state = 4}, + [2549] = {.lex_state = 2, .external_lex_state = 2}, + [2550] = {.lex_state = 0, .external_lex_state = 4}, + [2551] = {.lex_state = 3, .external_lex_state = 4}, + [2552] = {.lex_state = 0, .external_lex_state = 4}, + [2553] = {.lex_state = 0, .external_lex_state = 4}, + [2554] = {.lex_state = 0, .external_lex_state = 2}, + [2555] = {.lex_state = 0, .external_lex_state = 2}, + [2556] = {.lex_state = 0, .external_lex_state = 4}, + [2557] = {.lex_state = 0, .external_lex_state = 4}, + [2558] = {.lex_state = 0, .external_lex_state = 4}, + [2559] = {.lex_state = 0, .external_lex_state = 2}, + [2560] = {.lex_state = 3, .external_lex_state = 2}, + [2561] = {.lex_state = 0, .external_lex_state = 4}, + [2562] = {.lex_state = 11, .external_lex_state = 2}, + [2563] = {.lex_state = 2, .external_lex_state = 2}, + [2564] = {.lex_state = 2, .external_lex_state = 2}, + [2565] = {.lex_state = 2, .external_lex_state = 2}, + [2566] = {.lex_state = 0, .external_lex_state = 4}, + [2567] = {.lex_state = 0, .external_lex_state = 4}, + [2568] = {.lex_state = 0, .external_lex_state = 4}, + [2569] = {.lex_state = 2, .external_lex_state = 2}, + [2570] = {.lex_state = 0, .external_lex_state = 3}, + [2571] = {.lex_state = 0, .external_lex_state = 4}, [2572] = {.lex_state = 2, .external_lex_state = 2}, - [2573] = {.lex_state = 2, .external_lex_state = 2}, - [2574] = {.lex_state = 3, .external_lex_state = 4}, + [2573] = {.lex_state = 0, .external_lex_state = 4}, + [2574] = {.lex_state = 2, .external_lex_state = 2}, [2575] = {.lex_state = 2, .external_lex_state = 2}, - [2576] = {.lex_state = 0, .external_lex_state = 4}, - [2577] = {.lex_state = 5, .external_lex_state = 2}, - [2578] = {.lex_state = 3, .external_lex_state = 2}, + [2576] = {.lex_state = 3, .external_lex_state = 2}, + [2577] = {.lex_state = 0, .external_lex_state = 4}, + [2578] = {.lex_state = 2, .external_lex_state = 2}, [2579] = {.lex_state = 2, .external_lex_state = 2}, - [2580] = {.lex_state = 2, .external_lex_state = 4}, - [2581] = {.lex_state = 0, .external_lex_state = 2}, - [2582] = {.lex_state = 5, .external_lex_state = 2}, - [2583] = {.lex_state = 2, .external_lex_state = 4}, - [2584] = {.lex_state = 0, .external_lex_state = 3}, - [2585] = {.lex_state = 0, .external_lex_state = 4}, - [2586] = {.lex_state = 2, .external_lex_state = 2}, - [2587] = {.lex_state = 0, .external_lex_state = 3}, - [2588] = {.lex_state = 0, .external_lex_state = 2}, - [2589] = {.lex_state = 3, .external_lex_state = 2}, - [2590] = {.lex_state = 12, .external_lex_state = 2}, - [2591] = {.lex_state = 0, .external_lex_state = 2}, - [2592] = {.lex_state = 0, .external_lex_state = 2}, - [2593] = {.lex_state = 2, .external_lex_state = 2}, - [2594] = {.lex_state = 3, .external_lex_state = 2}, - [2595] = {.lex_state = 3, .external_lex_state = 4}, - [2596] = {.lex_state = 2, .external_lex_state = 4}, + [2580] = {.lex_state = 0, .external_lex_state = 4}, + [2581] = {.lex_state = 3, .external_lex_state = 4}, + [2582] = {.lex_state = 2, .external_lex_state = 4}, + [2583] = {.lex_state = 2, .external_lex_state = 2}, + [2584] = {.lex_state = 5, .external_lex_state = 2}, + [2585] = {.lex_state = 3, .external_lex_state = 2}, + [2586] = {.lex_state = 0, .external_lex_state = 4}, + [2587] = {.lex_state = 0, .external_lex_state = 4}, + [2588] = {.lex_state = 5, .external_lex_state = 2}, + [2589] = {.lex_state = 0, .external_lex_state = 4}, + [2590] = {.lex_state = 0, .external_lex_state = 4}, + [2591] = {.lex_state = 2, .external_lex_state = 2}, + [2592] = {.lex_state = 3, .external_lex_state = 2}, + [2593] = {.lex_state = 5, .external_lex_state = 2}, + [2594] = {.lex_state = 0, .external_lex_state = 4}, + [2595] = {.lex_state = 15, .external_lex_state = 2}, + [2596] = {.lex_state = 0, .external_lex_state = 2}, [2597] = {.lex_state = 2, .external_lex_state = 4}, - [2598] = {.lex_state = 2, .external_lex_state = 4}, - [2599] = {.lex_state = 0, .external_lex_state = 4}, - [2600] = {.lex_state = 11, .external_lex_state = 2}, - [2601] = {.lex_state = 5, .external_lex_state = 2}, - [2602] = {.lex_state = 5, .external_lex_state = 2}, - [2603] = {.lex_state = 2, .external_lex_state = 2}, - [2604] = {.lex_state = 11, .external_lex_state = 2}, - [2605] = {.lex_state = 2, .external_lex_state = 2}, - [2606] = {.lex_state = 2, .external_lex_state = 2}, - [2607] = {.lex_state = 2, .external_lex_state = 4}, - [2608] = {.lex_state = 2, .external_lex_state = 4}, - [2609] = {.lex_state = 0, .external_lex_state = 4}, - [2610] = {.lex_state = 2, .external_lex_state = 2}, - [2611] = {.lex_state = 3, .external_lex_state = 4}, - [2612] = {.lex_state = 2, .external_lex_state = 2}, + [2598] = {.lex_state = 2, .external_lex_state = 2}, + [2599] = {.lex_state = 2, .external_lex_state = 4}, + [2600] = {.lex_state = 0, .external_lex_state = 4}, + [2601] = {.lex_state = 3, .external_lex_state = 4}, + [2602] = {.lex_state = 3, .external_lex_state = 2}, + [2603] = {.lex_state = 0, .external_lex_state = 4}, + [2604] = {.lex_state = 5, .external_lex_state = 2}, + [2605] = {.lex_state = 11, .external_lex_state = 2}, + [2606] = {.lex_state = 0, .external_lex_state = 2}, + [2607] = {.lex_state = 0, .external_lex_state = 3}, + [2608] = {.lex_state = 3, .external_lex_state = 2}, + [2609] = {.lex_state = 2, .external_lex_state = 2}, + [2610] = {.lex_state = 2, .external_lex_state = 4}, + [2611] = {.lex_state = 0, .external_lex_state = 2}, + [2612] = {.lex_state = 0, .external_lex_state = 4}, [2613] = {.lex_state = 2, .external_lex_state = 2}, - [2614] = {.lex_state = 5, .external_lex_state = 2}, - [2615] = {.lex_state = 3, .external_lex_state = 2}, - [2616] = {.lex_state = 2, .external_lex_state = 2}, - [2617] = {.lex_state = 2, .external_lex_state = 4}, - [2618] = {.lex_state = 2, .external_lex_state = 4}, - [2619] = {.lex_state = 2, .external_lex_state = 2}, - [2620] = {.lex_state = 2, .external_lex_state = 2}, - [2621] = {.lex_state = 0, .external_lex_state = 4}, - [2622] = {.lex_state = 2, .external_lex_state = 4}, - [2623] = {.lex_state = 2, .external_lex_state = 4}, - [2624] = {.lex_state = 2, .external_lex_state = 4}, - [2625] = {.lex_state = 2, .external_lex_state = 2}, - [2626] = {.lex_state = 2, .external_lex_state = 2}, - [2627] = {.lex_state = 2, .external_lex_state = 2}, + [2614] = {.lex_state = 0, .external_lex_state = 4}, + [2615] = {.lex_state = 2, .external_lex_state = 4}, + [2616] = {.lex_state = 3, .external_lex_state = 4}, + [2617] = {.lex_state = 0, .external_lex_state = 4}, + [2618] = {.lex_state = 0, .external_lex_state = 4}, + [2619] = {.lex_state = 2, .external_lex_state = 1}, + [2620] = {.lex_state = 2, .external_lex_state = 4}, + [2621] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 3, .external_lex_state = 2}, + [2626] = {.lex_state = 0, .external_lex_state = 4}, + [2627] = {.lex_state = 0, .external_lex_state = 2}, [2628] = {.lex_state = 2, .external_lex_state = 4}, - [2629] = {.lex_state = 5, .external_lex_state = 2}, - [2630] = {.lex_state = 5, .external_lex_state = 2}, - [2631] = {.lex_state = 0, .external_lex_state = 3}, - [2632] = {.lex_state = 2, .external_lex_state = 4}, + [2629] = {.lex_state = 3, .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 = 2, .external_lex_state = 2}, - [2634] = {.lex_state = 2, .external_lex_state = 2}, - [2635] = {.lex_state = 0, .external_lex_state = 2}, + [2634] = {.lex_state = 0, .external_lex_state = 4}, + [2635] = {.lex_state = 2, .external_lex_state = 2}, [2636] = {.lex_state = 2, .external_lex_state = 2}, - [2637] = {.lex_state = 12, .external_lex_state = 2}, - [2638] = {.lex_state = 12, .external_lex_state = 2}, - [2639] = {.lex_state = 12, .external_lex_state = 2}, + [2637] = {.lex_state = 2, .external_lex_state = 4}, + [2638] = {.lex_state = 2, .external_lex_state = 2}, + [2639] = {.lex_state = 2, .external_lex_state = 2}, [2640] = {.lex_state = 0, .external_lex_state = 2}, [2641] = {.lex_state = 2, .external_lex_state = 2}, - [2642] = {.lex_state = 0, .external_lex_state = 3}, - [2643] = {.lex_state = 12, .external_lex_state = 2}, + [2642] = {.lex_state = 0, .external_lex_state = 4}, + [2643] = {.lex_state = 3, .external_lex_state = 2}, [2644] = {.lex_state = 2, .external_lex_state = 2}, - [2645] = {.lex_state = 0, .external_lex_state = 2}, - [2646] = {.lex_state = 0, .external_lex_state = 2}, - [2647] = {.lex_state = 2, .external_lex_state = 2}, - [2648] = {.lex_state = 3, .external_lex_state = 2}, - [2649] = {.lex_state = 12, .external_lex_state = 2}, - [2650] = {.lex_state = 0, .external_lex_state = 2}, - [2651] = {.lex_state = 2, .external_lex_state = 2}, - [2652] = {.lex_state = 2, .external_lex_state = 3}, - [2653] = {.lex_state = 0, .external_lex_state = 2}, - [2654] = {.lex_state = 12, .external_lex_state = 2}, - [2655] = {.lex_state = 12, .external_lex_state = 2}, - [2656] = {.lex_state = 12, .external_lex_state = 2}, - [2657] = {.lex_state = 12, .external_lex_state = 2}, - [2658] = {.lex_state = 12, .external_lex_state = 2}, - [2659] = {.lex_state = 0, .external_lex_state = 3}, - [2660] = {.lex_state = 0, .external_lex_state = 3}, - [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 = 2, .external_lex_state = 2}, - [2665] = {.lex_state = 2, .external_lex_state = 2}, + [2645] = {.lex_state = 2, .external_lex_state = 4}, + [2646] = {.lex_state = 0, .external_lex_state = 4}, + [2647] = {.lex_state = 3, .external_lex_state = 4}, + [2648] = {.lex_state = 2, .external_lex_state = 4}, + [2649] = {.lex_state = 2, .external_lex_state = 4}, + [2650] = {.lex_state = 0, .external_lex_state = 4}, + [2651] = {.lex_state = 0, .external_lex_state = 4}, + [2652] = {.lex_state = 0, .external_lex_state = 3}, + [2653] = {.lex_state = 0, .external_lex_state = 4}, + [2654] = {.lex_state = 2, .external_lex_state = 4}, + [2655] = {.lex_state = 0, .external_lex_state = 2}, + [2656] = {.lex_state = 0, .external_lex_state = 4}, + [2657] = {.lex_state = 5, .external_lex_state = 2}, + [2658] = {.lex_state = 0, .external_lex_state = 2}, + [2659] = {.lex_state = 0, .external_lex_state = 4}, + [2660] = {.lex_state = 2, .external_lex_state = 2}, + [2661] = {.lex_state = 2, .external_lex_state = 2}, + [2662] = {.lex_state = 0, .external_lex_state = 3}, + [2663] = {.lex_state = 3, .external_lex_state = 4}, + [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 = 12, .external_lex_state = 2}, - [2669] = {.lex_state = 12, .external_lex_state = 2}, - [2670] = {.lex_state = 0, .external_lex_state = 4}, - [2671] = {.lex_state = 0, .external_lex_state = 3}, - [2672] = {.lex_state = 0, .external_lex_state = 4}, - [2673] = {.lex_state = 12, .external_lex_state = 2}, - [2674] = {.lex_state = 0, .external_lex_state = 2}, - [2675] = {.lex_state = 0, .external_lex_state = 4}, - [2676] = {.lex_state = 0, .external_lex_state = 2}, - [2677] = {.lex_state = 0, .external_lex_state = 4}, - [2678] = {.lex_state = 12, .external_lex_state = 2}, - [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 = 2}, - [2684] = {.lex_state = 2, .external_lex_state = 2}, - [2685] = {.lex_state = 12, .external_lex_state = 2}, + [2667] = {.lex_state = 5, .external_lex_state = 2}, + [2668] = {.lex_state = 0, .external_lex_state = 4}, + [2669] = {.lex_state = 0, .external_lex_state = 4}, + [2670] = {.lex_state = 3, .external_lex_state = 2}, + [2671] = {.lex_state = 2, .external_lex_state = 4}, + [2672] = {.lex_state = 5, .external_lex_state = 2}, + [2673] = {.lex_state = 0, .external_lex_state = 4}, + [2674] = {.lex_state = 3, .external_lex_state = 2}, + [2675] = {.lex_state = 2, .external_lex_state = 2}, + [2676] = {.lex_state = 0, .external_lex_state = 4}, + [2677] = {.lex_state = 15, .external_lex_state = 2}, + [2678] = {.lex_state = 0, .external_lex_state = 4}, + [2679] = {.lex_state = 0, .external_lex_state = 4}, + [2680] = {.lex_state = 2, .external_lex_state = 4}, + [2681] = {.lex_state = 2, .external_lex_state = 4}, + [2682] = {.lex_state = 2, .external_lex_state = 4}, + [2683] = {.lex_state = 2, .external_lex_state = 2}, + [2684] = {.lex_state = 5, .external_lex_state = 2}, + [2685] = {.lex_state = 2, .external_lex_state = 2}, [2686] = {.lex_state = 0, .external_lex_state = 2}, - [2687] = {.lex_state = 0, .external_lex_state = 4}, - [2688] = {.lex_state = 0, .external_lex_state = 2}, + [2687] = {.lex_state = 15, .external_lex_state = 2}, + [2688] = {.lex_state = 0, .external_lex_state = 3}, [2689] = {.lex_state = 0, .external_lex_state = 2}, - [2690] = {.lex_state = 0, .external_lex_state = 4}, - [2691] = {.lex_state = 2, .external_lex_state = 3}, - [2692] = {.lex_state = 0, .external_lex_state = 2}, - [2693] = {.lex_state = 12, .external_lex_state = 2}, - [2694] = {.lex_state = 2, .external_lex_state = 2}, - [2695] = {.lex_state = 0, .external_lex_state = 3}, - [2696] = {.lex_state = 0, .external_lex_state = 3}, - [2697] = {.lex_state = 0, .external_lex_state = 2}, - [2698] = {.lex_state = 12, .external_lex_state = 2}, - [2699] = {.lex_state = 12, .external_lex_state = 2}, - [2700] = {.lex_state = 12, .external_lex_state = 2}, - [2701] = {.lex_state = 12, .external_lex_state = 2}, - [2702] = {.lex_state = 3, .external_lex_state = 2}, + [2690] = {.lex_state = 2, .external_lex_state = 4}, + [2691] = {.lex_state = 3, .external_lex_state = 4}, + [2692] = {.lex_state = 2, .external_lex_state = 2}, + [2693] = {.lex_state = 0, .external_lex_state = 4}, + [2694] = {.lex_state = 0, .external_lex_state = 2}, + [2695] = {.lex_state = 5, .external_lex_state = 2}, + [2696] = {.lex_state = 15, .external_lex_state = 2}, + [2697] = {.lex_state = 0, .external_lex_state = 4}, + [2698] = {.lex_state = 0, .external_lex_state = 4}, + [2699] = {.lex_state = 2, .external_lex_state = 2}, + [2700] = {.lex_state = 15, .external_lex_state = 2}, + [2701] = {.lex_state = 0, .external_lex_state = 4}, + [2702] = {.lex_state = 0, .external_lex_state = 3}, [2703] = {.lex_state = 0, .external_lex_state = 2}, - [2704] = {.lex_state = 12, .external_lex_state = 2}, - [2705] = {.lex_state = 0, .external_lex_state = 2}, - [2706] = {.lex_state = 2, .external_lex_state = 2}, - [2707] = {.lex_state = 0, .external_lex_state = 2}, - [2708] = {.lex_state = 0, .external_lex_state = 2}, - [2709] = {.lex_state = 12, .external_lex_state = 2}, - [2710] = {.lex_state = 3, .external_lex_state = 2}, - [2711] = {.lex_state = 12, .external_lex_state = 2}, - [2712] = {.lex_state = 12, .external_lex_state = 2}, + [2704] = {.lex_state = 0, .external_lex_state = 2}, + [2705] = {.lex_state = 0, .external_lex_state = 4}, + [2706] = {.lex_state = 0, .external_lex_state = 2}, + [2707] = {.lex_state = 0, .external_lex_state = 4}, + [2708] = {.lex_state = 0, .external_lex_state = 4}, + [2709] = {.lex_state = 0, .external_lex_state = 4}, + [2710] = {.lex_state = 2, .external_lex_state = 2}, + [2711] = {.lex_state = 2, .external_lex_state = 2}, + [2712] = {.lex_state = 2, .external_lex_state = 2}, [2713] = {.lex_state = 0, .external_lex_state = 4}, - [2714] = {.lex_state = 0, .external_lex_state = 2}, - [2715] = {.lex_state = 0, .external_lex_state = 4}, - [2716] = {.lex_state = 0, .external_lex_state = 3}, - [2717] = {.lex_state = 0, .external_lex_state = 3}, - [2718] = {.lex_state = 12, .external_lex_state = 2}, - [2719] = {.lex_state = 0, .external_lex_state = 2}, - [2720] = {.lex_state = 0, .external_lex_state = 3}, - [2721] = {.lex_state = 0, .external_lex_state = 2}, - [2722] = {.lex_state = 0, .external_lex_state = 2}, + [2714] = {.lex_state = 0, .external_lex_state = 4}, + [2715] = {.lex_state = 0, .external_lex_state = 2}, + [2716] = {.lex_state = 0, .external_lex_state = 4}, + [2717] = {.lex_state = 0, .external_lex_state = 2}, + [2718] = {.lex_state = 2, .external_lex_state = 2}, + [2719] = {.lex_state = 3, .external_lex_state = 2}, + [2720] = {.lex_state = 2, .external_lex_state = 4}, + [2721] = {.lex_state = 2, .external_lex_state = 2}, + [2722] = {.lex_state = 0, .external_lex_state = 4}, [2723] = {.lex_state = 2, .external_lex_state = 2}, - [2724] = {.lex_state = 0, .external_lex_state = 2}, - [2725] = {.lex_state = 0, .external_lex_state = 3}, - [2726] = {.lex_state = 0, .external_lex_state = 3}, - [2727] = {.lex_state = 12, .external_lex_state = 2}, - [2728] = {.lex_state = 12, .external_lex_state = 2}, - [2729] = {.lex_state = 12, .external_lex_state = 2}, - [2730] = {.lex_state = 12, .external_lex_state = 2}, - [2731] = {.lex_state = 0, .external_lex_state = 2}, + [2724] = {.lex_state = 2, .external_lex_state = 1}, + [2725] = {.lex_state = 0, .external_lex_state = 4}, + [2726] = {.lex_state = 0, .external_lex_state = 4}, + [2727] = {.lex_state = 0, .external_lex_state = 4}, + [2728] = {.lex_state = 0, .external_lex_state = 4}, + [2729] = {.lex_state = 0, .external_lex_state = 4}, + [2730] = {.lex_state = 0, .external_lex_state = 4}, + [2731] = {.lex_state = 2, .external_lex_state = 2}, [2732] = {.lex_state = 2, .external_lex_state = 2}, - [2733] = {.lex_state = 0, .external_lex_state = 2}, - [2734] = {.lex_state = 0, .external_lex_state = 2}, - [2735] = {.lex_state = 0, .external_lex_state = 2}, - [2736] = {.lex_state = 12, .external_lex_state = 2}, + [2733] = {.lex_state = 3, .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 = 2}, - [2738] = {.lex_state = 0, .external_lex_state = 2}, - [2739] = {.lex_state = 0, .external_lex_state = 2}, - [2740] = {.lex_state = 0, .external_lex_state = 2}, - [2741] = {.lex_state = 0, .external_lex_state = 2}, - [2742] = {.lex_state = 0, .external_lex_state = 2}, - [2743] = {.lex_state = 0, .external_lex_state = 2}, - [2744] = {.lex_state = 0, .external_lex_state = 2}, - [2745] = {.lex_state = 0, .external_lex_state = 2}, - [2746] = {.lex_state = 0, .external_lex_state = 2}, + [2738] = {.lex_state = 3, .external_lex_state = 2}, + [2739] = {.lex_state = 2, .external_lex_state = 2}, + [2740] = {.lex_state = 2, .external_lex_state = 2}, + [2741] = {.lex_state = 0, .external_lex_state = 4}, + [2742] = {.lex_state = 0, .external_lex_state = 4}, + [2743] = {.lex_state = 2, .external_lex_state = 4}, + [2744] = {.lex_state = 2, .external_lex_state = 2}, + [2745] = {.lex_state = 2, .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 = 2}, - [2750] = {.lex_state = 0, .external_lex_state = 2}, - [2751] = {.lex_state = 0, .external_lex_state = 2}, - [2752] = {.lex_state = 0, .external_lex_state = 2}, - [2753] = {.lex_state = 0, .external_lex_state = 2}, - [2754] = {.lex_state = 0, .external_lex_state = 2}, - [2755] = {.lex_state = 0, .external_lex_state = 2}, - [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 = 4}, - [2760] = {.lex_state = 0, .external_lex_state = 2}, - [2761] = {.lex_state = 3, .external_lex_state = 2}, - [2762] = {.lex_state = 0, .external_lex_state = 2}, + [2748] = {.lex_state = 2, .external_lex_state = 2}, + [2749] = {.lex_state = 0, .external_lex_state = 4}, + [2750] = {.lex_state = 0, .external_lex_state = 4}, + [2751] = {.lex_state = 2, .external_lex_state = 2}, + [2752] = {.lex_state = 0, .external_lex_state = 4}, + [2753] = {.lex_state = 2, .external_lex_state = 4}, + [2754] = {.lex_state = 0, .external_lex_state = 4}, + [2755] = {.lex_state = 0, .external_lex_state = 4}, + [2756] = {.lex_state = 0, .external_lex_state = 4}, + [2757] = {.lex_state = 2, .external_lex_state = 4}, + [2758] = {.lex_state = 2, .external_lex_state = 4}, + [2759] = {.lex_state = 2, .external_lex_state = 4}, + [2760] = {.lex_state = 2, .external_lex_state = 2}, + [2761] = {.lex_state = 0, .external_lex_state = 4}, + [2762] = {.lex_state = 0, .external_lex_state = 4}, [2763] = {.lex_state = 2, .external_lex_state = 2}, [2764] = {.lex_state = 2, .external_lex_state = 2}, - [2765] = {.lex_state = 3, .external_lex_state = 2}, - [2766] = {.lex_state = 0, .external_lex_state = 2}, - [2767] = {.lex_state = 2, .external_lex_state = 2}, - [2768] = {.lex_state = 3, .external_lex_state = 2}, + [2765] = {.lex_state = 0, .external_lex_state = 4}, + [2766] = {.lex_state = 3, .external_lex_state = 4}, + [2767] = {.lex_state = 0, .external_lex_state = 4}, + [2768] = {.lex_state = 0, .external_lex_state = 4}, [2769] = {.lex_state = 0, .external_lex_state = 4}, - [2770] = {.lex_state = 0, .external_lex_state = 2}, - [2771] = {.lex_state = 0, .external_lex_state = 2}, - [2772] = {.lex_state = 0, .external_lex_state = 2}, - [2773] = {.lex_state = 0, .external_lex_state = 4}, - [2774] = {.lex_state = 0, .external_lex_state = 2}, - [2775] = {.lex_state = 0, .external_lex_state = 2}, - [2776] = {.lex_state = 2, .external_lex_state = 3}, - [2777] = {.lex_state = 12, .external_lex_state = 2}, - [2778] = {.lex_state = 0, .external_lex_state = 2}, - [2779] = {.lex_state = 0, .external_lex_state = 2}, - [2780] = {.lex_state = 3, .external_lex_state = 2}, - [2781] = {.lex_state = 3, .external_lex_state = 2}, - [2782] = {.lex_state = 0, .external_lex_state = 2}, - [2783] = {.lex_state = 2, .external_lex_state = 2}, - [2784] = {.lex_state = 3, .external_lex_state = 2}, - [2785] = {.lex_state = 0, .external_lex_state = 2}, - [2786] = {.lex_state = 0, .external_lex_state = 2}, - [2787] = {.lex_state = 2, .external_lex_state = 2}, + [2770] = {.lex_state = 2, .external_lex_state = 2}, + [2771] = {.lex_state = 0, .external_lex_state = 4}, + [2772] = {.lex_state = 2, .external_lex_state = 2}, + [2773] = {.lex_state = 3, .external_lex_state = 4}, + [2774] = {.lex_state = 2, .external_lex_state = 4}, + [2775] = {.lex_state = 0, .external_lex_state = 4}, + [2776] = {.lex_state = 0, .external_lex_state = 4}, + [2777] = {.lex_state = 0, .external_lex_state = 4}, + [2778] = {.lex_state = 2, .external_lex_state = 4}, + [2779] = {.lex_state = 2, .external_lex_state = 2}, + [2780] = {.lex_state = 2, .external_lex_state = 2}, + [2781] = {.lex_state = 2, .external_lex_state = 4}, + [2782] = {.lex_state = 2, .external_lex_state = 4}, + [2783] = {.lex_state = 2, .external_lex_state = 4}, + [2784] = {.lex_state = 0, .external_lex_state = 4}, + [2785] = {.lex_state = 2, .external_lex_state = 2}, + [2786] = {.lex_state = 0, .external_lex_state = 4}, + [2787] = {.lex_state = 5, .external_lex_state = 2}, [2788] = {.lex_state = 3, .external_lex_state = 2}, - [2789] = {.lex_state = 0, .external_lex_state = 2}, - [2790] = {.lex_state = 0, .external_lex_state = 2}, - [2791] = {.lex_state = 12, .external_lex_state = 2}, - [2792] = {.lex_state = 12, .external_lex_state = 2}, - [2793] = {.lex_state = 0, .external_lex_state = 2}, - [2794] = {.lex_state = 0, .external_lex_state = 2}, - [2795] = {.lex_state = 0, .external_lex_state = 2}, - [2796] = {.lex_state = 12, .external_lex_state = 2}, - [2797] = {.lex_state = 2, .external_lex_state = 2}, - [2798] = {.lex_state = 0, .external_lex_state = 2}, - [2799] = {.lex_state = 0, .external_lex_state = 2}, - [2800] = {.lex_state = 3, .external_lex_state = 2}, + [2789] = {.lex_state = 0, .external_lex_state = 4}, + [2790] = {.lex_state = 0, .external_lex_state = 4}, + [2791] = {.lex_state = 0, .external_lex_state = 4}, + [2792] = {.lex_state = 0, .external_lex_state = 4}, + [2793] = {.lex_state = 2, .external_lex_state = 2}, + [2794] = {.lex_state = 2, .external_lex_state = 2}, + [2795] = {.lex_state = 2, .external_lex_state = 2}, + [2796] = {.lex_state = 3, .external_lex_state = 4}, + [2797] = {.lex_state = 2, .external_lex_state = 4}, + [2798] = {.lex_state = 2, .external_lex_state = 4}, + [2799] = {.lex_state = 2, .external_lex_state = 4}, + [2800] = {.lex_state = 2, .external_lex_state = 2}, [2801] = {.lex_state = 2, .external_lex_state = 2}, - [2802] = {.lex_state = 2, .external_lex_state = 2}, - [2803] = {.lex_state = 3, .external_lex_state = 2}, - [2804] = {.lex_state = 0, .external_lex_state = 2}, - [2805] = {.lex_state = 3, .external_lex_state = 2}, - [2806] = {.lex_state = 2, .external_lex_state = 2}, - [2807] = {.lex_state = 2, .external_lex_state = 2}, - [2808] = {.lex_state = 2, .external_lex_state = 2}, + [2802] = {.lex_state = 0, .external_lex_state = 4}, + [2803] = {.lex_state = 0, .external_lex_state = 4}, + [2804] = {.lex_state = 0, .external_lex_state = 4}, + [2805] = {.lex_state = 0, .external_lex_state = 4}, + [2806] = {.lex_state = 0, .external_lex_state = 4}, + [2807] = {.lex_state = 0, .external_lex_state = 4}, + [2808] = {.lex_state = 0, .external_lex_state = 4}, [2809] = {.lex_state = 2, .external_lex_state = 2}, [2810] = {.lex_state = 2, .external_lex_state = 2}, [2811] = {.lex_state = 2, .external_lex_state = 2}, - [2812] = {.lex_state = 2, .external_lex_state = 2}, - [2813] = {.lex_state = 2, .external_lex_state = 2}, - [2814] = {.lex_state = 2, .external_lex_state = 2}, - [2815] = {.lex_state = 12, .external_lex_state = 2}, - [2816] = {.lex_state = 0, .external_lex_state = 4}, - [2817] = {.lex_state = 12, .external_lex_state = 2}, + [2812] = {.lex_state = 3, .external_lex_state = 4}, + [2813] = {.lex_state = 0, .external_lex_state = 4}, + [2814] = {.lex_state = 0, .external_lex_state = 4}, + [2815] = {.lex_state = 0, .external_lex_state = 3}, + [2816] = {.lex_state = 2, .external_lex_state = 4}, + [2817] = {.lex_state = 0, .external_lex_state = 4}, [2818] = {.lex_state = 2, .external_lex_state = 2}, - [2819] = {.lex_state = 0, .external_lex_state = 2}, + [2819] = {.lex_state = 2, .external_lex_state = 2}, [2820] = {.lex_state = 2, .external_lex_state = 2}, - [2821] = {.lex_state = 2, .external_lex_state = 2}, - [2822] = {.lex_state = 0, .external_lex_state = 2}, - [2823] = {.lex_state = 2, .external_lex_state = 2}, - [2824] = {.lex_state = 2, .external_lex_state = 2}, + [2821] = {.lex_state = 0, .external_lex_state = 3}, + [2822] = {.lex_state = 0, .external_lex_state = 4}, + [2823] = {.lex_state = 5, .external_lex_state = 2}, + [2824] = {.lex_state = 0, .external_lex_state = 4}, [2825] = {.lex_state = 2, .external_lex_state = 2}, - [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 = 2, .external_lex_state = 2}, + [2826] = {.lex_state = 3, .external_lex_state = 4}, + [2827] = {.lex_state = 0, .external_lex_state = 4}, + [2828] = {.lex_state = 0, .external_lex_state = 4}, + [2829] = {.lex_state = 0, .external_lex_state = 4}, [2830] = {.lex_state = 0, .external_lex_state = 2}, - [2831] = {.lex_state = 2, .external_lex_state = 2}, + [2831] = {.lex_state = 0, .external_lex_state = 2}, [2832] = {.lex_state = 0, .external_lex_state = 2}, - [2833] = {.lex_state = 2, .external_lex_state = 2}, - [2834] = {.lex_state = 2, .external_lex_state = 2}, - [2835] = {.lex_state = 2, .external_lex_state = 2}, - [2836] = {.lex_state = 2, .external_lex_state = 2}, - [2837] = {.lex_state = 2, .external_lex_state = 2}, - [2838] = {.lex_state = 12, .external_lex_state = 2}, - [2839] = {.lex_state = 2, .external_lex_state = 2}, - [2840] = {.lex_state = 2, .external_lex_state = 2}, - [2841] = {.lex_state = 2, .external_lex_state = 2}, - [2842] = {.lex_state = 2, .external_lex_state = 2}, - [2843] = {.lex_state = 17, .external_lex_state = 2}, - [2844] = {.lex_state = 2, .external_lex_state = 2}, - [2845] = {.lex_state = 2, .external_lex_state = 2}, + [2833] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [2842] = {.lex_state = 0, .external_lex_state = 2}, + [2843] = {.lex_state = 0, .external_lex_state = 2}, + [2844] = {.lex_state = 0, .external_lex_state = 2}, + [2845] = {.lex_state = 0, .external_lex_state = 2}, [2846] = {.lex_state = 2, .external_lex_state = 2}, - [2847] = {.lex_state = 3, .external_lex_state = 2}, - [2848] = {.lex_state = 2, .external_lex_state = 3}, - [2849] = {.lex_state = 0, .external_lex_state = 4}, - [2850] = {.lex_state = 2, .external_lex_state = 2}, - [2851] = {.lex_state = 2, .external_lex_state = 2}, - [2852] = {.lex_state = 2, .external_lex_state = 2}, - [2853] = {.lex_state = 0, .external_lex_state = 2}, - [2854] = {.lex_state = 0, .external_lex_state = 2}, - [2855] = {.lex_state = 0, .external_lex_state = 2}, - [2856] = {.lex_state = 0, .external_lex_state = 2}, - [2857] = {.lex_state = 0, .external_lex_state = 2}, - [2858] = {.lex_state = 0, .external_lex_state = 2}, - [2859] = {.lex_state = 0, .external_lex_state = 4}, - [2860] = {.lex_state = 0, .external_lex_state = 4}, - [2861] = {.lex_state = 2, .external_lex_state = 2}, - [2862] = {.lex_state = 0, .external_lex_state = 4}, - [2863] = {.lex_state = 0, .external_lex_state = 4}, + [2847] = {.lex_state = 0, .external_lex_state = 2}, + [2848] = {.lex_state = 0, .external_lex_state = 2}, + [2849] = {.lex_state = 0, .external_lex_state = 3}, + [2850] = {.lex_state = 0, .external_lex_state = 2}, + [2851] = {.lex_state = 3, .external_lex_state = 2}, + [2852] = {.lex_state = 0, .external_lex_state = 4}, + [2853] = {.lex_state = 2, .external_lex_state = 2}, + [2854] = {.lex_state = 15, .external_lex_state = 2}, + [2855] = {.lex_state = 3, .external_lex_state = 2}, + [2856] = {.lex_state = 2, .external_lex_state = 2}, + [2857] = {.lex_state = 0, .external_lex_state = 3}, + [2858] = {.lex_state = 3, .external_lex_state = 2}, + [2859] = {.lex_state = 0, .external_lex_state = 2}, + [2860] = {.lex_state = 0, .external_lex_state = 2}, + [2861] = {.lex_state = 3, .external_lex_state = 2}, + [2862] = {.lex_state = 0, .external_lex_state = 2}, + [2863] = {.lex_state = 3, .external_lex_state = 2}, [2864] = {.lex_state = 0, .external_lex_state = 2}, - [2865] = {.lex_state = 0, .external_lex_state = 2}, + [2865] = {.lex_state = 3, .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 = 2}, - [2871] = {.lex_state = 0, .external_lex_state = 2}, - [2872] = {.lex_state = 0, .external_lex_state = 4}, + [2867] = {.lex_state = 15, .external_lex_state = 2}, + [2868] = {.lex_state = 15, .external_lex_state = 2}, + [2869] = {.lex_state = 2, .external_lex_state = 2}, + [2870] = {.lex_state = 15, .external_lex_state = 2}, + [2871] = {.lex_state = 2, .external_lex_state = 2}, + [2872] = {.lex_state = 2, .external_lex_state = 2}, [2873] = {.lex_state = 0, .external_lex_state = 2}, [2874] = {.lex_state = 0, .external_lex_state = 2}, [2875] = {.lex_state = 0, .external_lex_state = 2}, [2876] = {.lex_state = 0, .external_lex_state = 4}, [2877] = {.lex_state = 0, .external_lex_state = 2}, [2878] = {.lex_state = 0, .external_lex_state = 2}, - [2879] = {.lex_state = 0, .external_lex_state = 4}, - [2880] = {.lex_state = 0, .external_lex_state = 4}, - [2881] = {.lex_state = 0, .external_lex_state = 2}, - [2882] = {.lex_state = 0, .external_lex_state = 2}, - [2883] = {.lex_state = 0, .external_lex_state = 4}, - [2884] = {.lex_state = 0, .external_lex_state = 2}, - [2885] = {.lex_state = 0, .external_lex_state = 4}, - [2886] = {.lex_state = 0, .external_lex_state = 2}, - [2887] = {.lex_state = 0, .external_lex_state = 4}, + [2879] = {.lex_state = 0, .external_lex_state = 2}, + [2880] = {.lex_state = 2, .external_lex_state = 2}, + [2881] = {.lex_state = 15, .external_lex_state = 2}, + [2882] = {.lex_state = 2, .external_lex_state = 2}, + [2883] = {.lex_state = 3, .external_lex_state = 2}, + [2884] = {.lex_state = 15, .external_lex_state = 2}, + [2885] = {.lex_state = 2, .external_lex_state = 2}, + [2886] = {.lex_state = 2, .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}, + [2889] = {.lex_state = 0, .external_lex_state = 2}, [2890] = {.lex_state = 0, .external_lex_state = 2}, - [2891] = {.lex_state = 0, .external_lex_state = 4}, + [2891] = {.lex_state = 3, .external_lex_state = 2}, [2892] = {.lex_state = 0, .external_lex_state = 2}, - [2893] = {.lex_state = 0, .external_lex_state = 4}, - [2894] = {.lex_state = 0, .external_lex_state = 2}, + [2893] = {.lex_state = 0, .external_lex_state = 2}, + [2894] = {.lex_state = 15, .external_lex_state = 2}, [2895] = {.lex_state = 0, .external_lex_state = 2}, [2896] = {.lex_state = 0, .external_lex_state = 2}, - [2897] = {.lex_state = 0, .external_lex_state = 4}, + [2897] = {.lex_state = 0, .external_lex_state = 2}, [2898] = {.lex_state = 0, .external_lex_state = 2}, - [2899] = {.lex_state = 0, .external_lex_state = 2}, + [2899] = {.lex_state = 2, .external_lex_state = 2}, [2900] = {.lex_state = 0, .external_lex_state = 2}, - [2901] = {.lex_state = 0, .external_lex_state = 4}, + [2901] = {.lex_state = 0, .external_lex_state = 2}, [2902] = {.lex_state = 0, .external_lex_state = 2}, - [2903] = {.lex_state = 0, .external_lex_state = 4}, + [2903] = {.lex_state = 0, .external_lex_state = 2}, [2904] = {.lex_state = 0, .external_lex_state = 2}, - [2905] = {.lex_state = 0, .external_lex_state = 4}, - [2906] = {.lex_state = 0, .external_lex_state = 2}, - [2907] = {.lex_state = 0, .external_lex_state = 2}, - [2908] = {.lex_state = 0, .external_lex_state = 2}, - [2909] = {.lex_state = 0, .external_lex_state = 2}, + [2905] = {.lex_state = 15, .external_lex_state = 2}, + [2906] = {.lex_state = 2, .external_lex_state = 2}, + [2907] = {.lex_state = 3, .external_lex_state = 2}, + [2908] = {.lex_state = 2, .external_lex_state = 2}, + [2909] = {.lex_state = 15, .external_lex_state = 2}, [2910] = {.lex_state = 0, .external_lex_state = 2}, - [2911] = {.lex_state = 0, .external_lex_state = 2}, + [2911] = {.lex_state = 2, .external_lex_state = 3}, [2912] = {.lex_state = 0, .external_lex_state = 2}, - [2913] = {.lex_state = 0, .external_lex_state = 2}, + [2913] = {.lex_state = 2, .external_lex_state = 2}, [2914] = {.lex_state = 0, .external_lex_state = 2}, - [2915] = {.lex_state = 0, .external_lex_state = 4}, - [2916] = {.lex_state = 0, .external_lex_state = 2}, - [2917] = {.lex_state = 0, .external_lex_state = 4}, + [2915] = {.lex_state = 0, .external_lex_state = 2}, + [2916] = {.lex_state = 15, .external_lex_state = 2}, + [2917] = {.lex_state = 15, .external_lex_state = 2}, [2918] = {.lex_state = 0, .external_lex_state = 2}, - [2919] = {.lex_state = 0, .external_lex_state = 2}, + [2919] = {.lex_state = 2, .external_lex_state = 2}, [2920] = {.lex_state = 0, .external_lex_state = 2}, - [2921] = {.lex_state = 0, .external_lex_state = 2}, + [2921] = {.lex_state = 2, .external_lex_state = 2}, [2922] = {.lex_state = 0, .external_lex_state = 2}, - [2923] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 12, .external_lex_state = 2}, - [2927] = {.lex_state = 0, .external_lex_state = 4}, - [2928] = {.lex_state = 17, .external_lex_state = 2}, - [2929] = {.lex_state = 0, .external_lex_state = 4}, + [2925] = {.lex_state = 2, .external_lex_state = 2}, + [2926] = {.lex_state = 2, .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 = 4}, [2931] = {.lex_state = 0, .external_lex_state = 2}, - [2932] = {.lex_state = 0, .external_lex_state = 4}, - [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 = 4}, - [2937] = {.lex_state = 0, .external_lex_state = 2}, - [2938] = {.lex_state = 0, .external_lex_state = 4}, - [2939] = {.lex_state = 0, .external_lex_state = 4}, - [2940] = {.lex_state = 0, .external_lex_state = 4}, - [2941] = {.lex_state = 0, .external_lex_state = 4}, - [2942] = {.lex_state = 0, .external_lex_state = 4}, - [2943] = {.lex_state = 0, .external_lex_state = 4}, - [2944] = {.lex_state = 0, .external_lex_state = 2}, - [2945] = {.lex_state = 0, .external_lex_state = 2}, + [2932] = {.lex_state = 0, .external_lex_state = 2}, + [2933] = {.lex_state = 0, .external_lex_state = 4}, + [2934] = {.lex_state = 2, .external_lex_state = 2}, + [2935] = {.lex_state = 15, .external_lex_state = 2}, + [2936] = {.lex_state = 2, .external_lex_state = 2}, + [2937] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, + [2942] = {.lex_state = 2, .external_lex_state = 2}, + [2943] = {.lex_state = 2, .external_lex_state = 2}, + [2944] = {.lex_state = 2, .external_lex_state = 2}, + [2945] = {.lex_state = 2, .external_lex_state = 2}, [2946] = {.lex_state = 0, .external_lex_state = 4}, [2947] = {.lex_state = 0, .external_lex_state = 2}, - [2948] = {.lex_state = 0, .external_lex_state = 4}, - [2949] = {.lex_state = 0, .external_lex_state = 4}, - [2950] = {.lex_state = 0, .external_lex_state = 4}, - [2951] = {.lex_state = 17, .external_lex_state = 2}, - [2952] = {.lex_state = 0, .external_lex_state = 2}, - [2953] = {.lex_state = 0, .external_lex_state = 4}, + [2948] = {.lex_state = 0, .external_lex_state = 2}, + [2949] = {.lex_state = 0, .external_lex_state = 2}, + [2950] = {.lex_state = 0, .external_lex_state = 2}, + [2951] = {.lex_state = 0, .external_lex_state = 2}, + [2952] = {.lex_state = 2, .external_lex_state = 2}, + [2953] = {.lex_state = 2, .external_lex_state = 2}, [2954] = {.lex_state = 0, .external_lex_state = 2}, - [2955] = {.lex_state = 0, .external_lex_state = 4}, - [2956] = {.lex_state = 0, .external_lex_state = 4}, - [2957] = {.lex_state = 0, .external_lex_state = 2}, - [2958] = {.lex_state = 0, .external_lex_state = 2}, - [2959] = {.lex_state = 0, .external_lex_state = 4}, - [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 = 0, .external_lex_state = 2}, + [2955] = {.lex_state = 0, .external_lex_state = 2}, + [2956] = {.lex_state = 0, .external_lex_state = 2}, + [2957] = {.lex_state = 15, .external_lex_state = 2}, + [2958] = {.lex_state = 3, .external_lex_state = 2}, + [2959] = {.lex_state = 2, .external_lex_state = 3}, + [2960] = {.lex_state = 0, .external_lex_state = 3}, + [2961] = {.lex_state = 0, .external_lex_state = 3}, + [2962] = {.lex_state = 0, .external_lex_state = 2}, + [2963] = {.lex_state = 0, .external_lex_state = 4}, + [2964] = {.lex_state = 2, .external_lex_state = 2}, [2965] = {.lex_state = 0, .external_lex_state = 2}, - [2966] = {.lex_state = 0, .external_lex_state = 2}, - [2967] = {.lex_state = 0, .external_lex_state = 2}, - [2968] = {.lex_state = 0, .external_lex_state = 4}, - [2969] = {.lex_state = 0, .external_lex_state = 2}, - [2970] = {.lex_state = 0, .external_lex_state = 2}, - [2971] = {.lex_state = 0, .external_lex_state = 2}, - [2972] = {.lex_state = 0, .external_lex_state = 4}, - [2973] = {.lex_state = 0, .external_lex_state = 2}, + [2966] = {.lex_state = 2, .external_lex_state = 2}, + [2967] = {.lex_state = 2, .external_lex_state = 2}, + [2968] = {.lex_state = 15, .external_lex_state = 2}, + [2969] = {.lex_state = 2, .external_lex_state = 2}, + [2970] = {.lex_state = 15, .external_lex_state = 2}, + [2971] = {.lex_state = 0, .external_lex_state = 3}, + [2972] = {.lex_state = 15, .external_lex_state = 2}, + [2973] = {.lex_state = 15, .external_lex_state = 2}, [2974] = {.lex_state = 0, .external_lex_state = 2}, [2975] = {.lex_state = 0, .external_lex_state = 2}, [2976] = {.lex_state = 0, .external_lex_state = 2}, - [2977] = {.lex_state = 0, .external_lex_state = 2}, - [2978] = {.lex_state = 0, .external_lex_state = 4}, + [2977] = {.lex_state = 2, .external_lex_state = 2}, + [2978] = {.lex_state = 0, .external_lex_state = 2}, [2979] = {.lex_state = 0, .external_lex_state = 4}, - [2980] = {.lex_state = 0, .external_lex_state = 2}, - [2981] = {.lex_state = 0, .external_lex_state = 2}, + [2980] = {.lex_state = 3, .external_lex_state = 2}, + [2981] = {.lex_state = 0, .external_lex_state = 3}, [2982] = {.lex_state = 0, .external_lex_state = 2}, - [2983] = {.lex_state = 0, .external_lex_state = 4}, - [2984] = {.lex_state = 0, .external_lex_state = 4}, - [2985] = {.lex_state = 0, .external_lex_state = 2}, - [2986] = {.lex_state = 0, .external_lex_state = 4}, - [2987] = {.lex_state = 0, .external_lex_state = 4}, - [2988] = {.lex_state = 0, .external_lex_state = 2}, + [2983] = {.lex_state = 15, .external_lex_state = 2}, + [2984] = {.lex_state = 2, .external_lex_state = 2}, + [2985] = {.lex_state = 2, .external_lex_state = 2}, + [2986] = {.lex_state = 0, .external_lex_state = 2}, + [2987] = {.lex_state = 2, .external_lex_state = 2}, + [2988] = {.lex_state = 2, .external_lex_state = 2}, [2989] = {.lex_state = 0, .external_lex_state = 2}, - [2990] = {.lex_state = 0, .external_lex_state = 2}, - [2991] = {.lex_state = 0, .external_lex_state = 4}, - [2992] = {.lex_state = 17, .external_lex_state = 2}, + [2990] = {.lex_state = 2, .external_lex_state = 3}, + [2991] = {.lex_state = 0, .external_lex_state = 2}, + [2992] = {.lex_state = 2, .external_lex_state = 2}, [2993] = {.lex_state = 0, .external_lex_state = 2}, - [2994] = {.lex_state = 0, .external_lex_state = 2}, - [2995] = {.lex_state = 0, .external_lex_state = 4}, - [2996] = {.lex_state = 0, .external_lex_state = 2}, - [2997] = {.lex_state = 0, .external_lex_state = 2}, - [2998] = {.lex_state = 0, .external_lex_state = 2}, - [2999] = {.lex_state = 0, .external_lex_state = 2}, - [3000] = {.lex_state = 0, .external_lex_state = 4}, - [3001] = {.lex_state = 0, .external_lex_state = 2}, - [3002] = {.lex_state = 0, .external_lex_state = 2}, - [3003] = {.lex_state = 0, .external_lex_state = 4}, - [3004] = {.lex_state = 0, .external_lex_state = 2}, - [3005] = {.lex_state = 2, .external_lex_state = 2}, - [3006] = {.lex_state = 0, .external_lex_state = 4}, - [3007] = {.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 = 15, .external_lex_state = 2}, + [3002] = {.lex_state = 2, .external_lex_state = 2}, + [3003] = {.lex_state = 2, .external_lex_state = 2}, + [3004] = {.lex_state = 0, .external_lex_state = 3}, + [3005] = {.lex_state = 0, .external_lex_state = 3}, + [3006] = {.lex_state = 0, .external_lex_state = 3}, + [3007] = {.lex_state = 0, .external_lex_state = 2}, [3008] = {.lex_state = 0, .external_lex_state = 4}, - [3009] = {.lex_state = 0, .external_lex_state = 2}, - [3010] = {.lex_state = 0, .external_lex_state = 4}, - [3011] = {.lex_state = 0, .external_lex_state = 4}, - [3012] = {.lex_state = 0, .external_lex_state = 3}, + [3009] = {.lex_state = 15, .external_lex_state = 2}, + [3010] = {.lex_state = 0, .external_lex_state = 2}, + [3011] = {.lex_state = 0, .external_lex_state = 2}, + [3012] = {.lex_state = 0, .external_lex_state = 4}, [3013] = {.lex_state = 0, .external_lex_state = 2}, [3014] = {.lex_state = 0, .external_lex_state = 2}, [3015] = {.lex_state = 0, .external_lex_state = 4}, - [3016] = {.lex_state = 0, .external_lex_state = 4}, - [3017] = {.lex_state = 0, .external_lex_state = 4}, - [3018] = {.lex_state = 0, .external_lex_state = 4}, + [3016] = {.lex_state = 2, .external_lex_state = 2}, + [3017] = {.lex_state = 0, .external_lex_state = 2}, + [3018] = {.lex_state = 0, .external_lex_state = 2}, [3019] = {.lex_state = 0, .external_lex_state = 4}, - [3020] = {.lex_state = 0, .external_lex_state = 4}, - [3021] = {.lex_state = 0, .external_lex_state = 4}, - [3022] = {.lex_state = 0, .external_lex_state = 4}, - [3023] = {.lex_state = 0, .external_lex_state = 2}, - [3024] = {.lex_state = 0, .external_lex_state = 2}, - [3025] = {.lex_state = 0, .external_lex_state = 2}, - [3026] = {.lex_state = 0, .external_lex_state = 4}, - [3027] = {.lex_state = 0, .external_lex_state = 2}, - [3028] = {.lex_state = 0, .external_lex_state = 4}, + [3020] = {.lex_state = 2, .external_lex_state = 2}, + [3021] = {.lex_state = 0, .external_lex_state = 2}, + [3022] = {.lex_state = 2, .external_lex_state = 2}, + [3023] = {.lex_state = 2, .external_lex_state = 2}, + [3024] = {.lex_state = 0, .external_lex_state = 4}, + [3025] = {.lex_state = 2, .external_lex_state = 2}, + [3026] = {.lex_state = 15, .external_lex_state = 2}, + [3027] = {.lex_state = 0, .external_lex_state = 4}, + [3028] = {.lex_state = 2, .external_lex_state = 2}, [3029] = {.lex_state = 0, .external_lex_state = 2}, - [3030] = {.lex_state = 0, .external_lex_state = 2}, - [3031] = {.lex_state = 0, .external_lex_state = 4}, - [3032] = {.lex_state = 0, .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 = 4}, - [3036] = {.lex_state = 0, .external_lex_state = 2}, - [3037] = {.lex_state = 0, .external_lex_state = 2}, - [3038] = {.lex_state = 0, .external_lex_state = 4}, - [3039] = {.lex_state = 0, .external_lex_state = 4}, - [3040] = {.lex_state = 0, .external_lex_state = 4}, - [3041] = {.lex_state = 0, .external_lex_state = 2}, - [3042] = {.lex_state = 0, .external_lex_state = 4}, - [3043] = {.lex_state = 0, .external_lex_state = 2}, - [3044] = {.lex_state = 2, .external_lex_state = 2}, - [3045] = {.lex_state = 0, .external_lex_state = 2}, - [3046] = {.lex_state = 0, .external_lex_state = 4}, - [3047] = {.lex_state = 0, .external_lex_state = 2}, - [3048] = {.lex_state = 0, .external_lex_state = 2}, - [3049] = {.lex_state = 0, .external_lex_state = 2}, - [3050] = {.lex_state = 2, .external_lex_state = 2}, - [3051] = {.lex_state = 0, .external_lex_state = 4}, - [3052] = {.lex_state = 0, .external_lex_state = 4}, - [3053] = {.lex_state = 0, .external_lex_state = 4}, - [3054] = {.lex_state = 0, .external_lex_state = 4}, - [3055] = {.lex_state = 0, .external_lex_state = 2}, + [3030] = {.lex_state = 2, .external_lex_state = 2}, + [3031] = {.lex_state = 2, .external_lex_state = 2}, + [3032] = {.lex_state = 3, .external_lex_state = 2}, + [3033] = {.lex_state = 0, .external_lex_state = 2}, + [3034] = {.lex_state = 0, .external_lex_state = 4}, + [3035] = {.lex_state = 2, .external_lex_state = 2}, + [3036] = {.lex_state = 15, .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 = 0, .external_lex_state = 2}, + [3045] = {.lex_state = 2, .external_lex_state = 2}, + [3046] = {.lex_state = 2, .external_lex_state = 2}, + [3047] = {.lex_state = 15, .external_lex_state = 2}, + [3048] = {.lex_state = 0, .external_lex_state = 3}, + [3049] = {.lex_state = 15, .external_lex_state = 2}, + [3050] = {.lex_state = 15, .external_lex_state = 2}, + [3051] = {.lex_state = 15, .external_lex_state = 2}, + [3052] = {.lex_state = 15, .external_lex_state = 2}, + [3053] = {.lex_state = 0, .external_lex_state = 2}, + [3054] = {.lex_state = 0, .external_lex_state = 2}, + [3055] = {.lex_state = 15, .external_lex_state = 2}, [3056] = {.lex_state = 0, .external_lex_state = 2}, - [3057] = {.lex_state = 0, .external_lex_state = 4}, - [3058] = {.lex_state = 0, .external_lex_state = 4}, - [3059] = {.lex_state = 0, .external_lex_state = 4}, - [3060] = {.lex_state = 0, .external_lex_state = 4}, - [3061] = {.lex_state = 0, .external_lex_state = 4}, + [3057] = {.lex_state = 15, .external_lex_state = 2}, + [3058] = {.lex_state = 15, .external_lex_state = 2}, + [3059] = {.lex_state = 2, .external_lex_state = 2}, + [3060] = {.lex_state = 15, .external_lex_state = 2}, + [3061] = {.lex_state = 0, .external_lex_state = 2}, [3062] = {.lex_state = 0, .external_lex_state = 2}, - [3063] = {.lex_state = 0, .external_lex_state = 2}, + [3063] = {.lex_state = 2, .external_lex_state = 2}, [3064] = {.lex_state = 0, .external_lex_state = 2}, - [3065] = {.lex_state = 0, .external_lex_state = 4}, - [3066] = {.lex_state = 0, .external_lex_state = 2}, - [3067] = {.lex_state = 0, .external_lex_state = 2}, - [3068] = {.lex_state = 0, .external_lex_state = 4}, - [3069] = {.lex_state = 0, .external_lex_state = 4}, - [3070] = {.lex_state = 0, .external_lex_state = 2}, - [3071] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 2}, - [3073] = {.lex_state = 0, .external_lex_state = 4}, - [3074] = {.lex_state = 0, .external_lex_state = 4}, - [3075] = {.lex_state = 0, .external_lex_state = 2}, - [3076] = {.lex_state = 0, .external_lex_state = 2}, - [3077] = {.lex_state = 0, .external_lex_state = 4}, - [3078] = {.lex_state = 0, .external_lex_state = 2}, - [3079] = {.lex_state = 0, .external_lex_state = 4}, - [3080] = {.lex_state = 0, .external_lex_state = 4}, - [3081] = {.lex_state = 0, .external_lex_state = 4}, - [3082] = {.lex_state = 0, .external_lex_state = 4}, - [3083] = {.lex_state = 0, .external_lex_state = 4}, - [3084] = {.lex_state = 0, .external_lex_state = 4}, - [3085] = {.lex_state = 0, .external_lex_state = 4}, - [3086] = {.lex_state = 0, .external_lex_state = 2}, + [3073] = {.lex_state = 2, .external_lex_state = 2}, + [3074] = {.lex_state = 2, .external_lex_state = 2}, + [3075] = {.lex_state = 15, .external_lex_state = 2}, + [3076] = {.lex_state = 2, .external_lex_state = 2}, + [3077] = {.lex_state = 0, .external_lex_state = 3}, + [3078] = {.lex_state = 15, .external_lex_state = 2}, + [3079] = {.lex_state = 0, .external_lex_state = 2}, + [3080] = {.lex_state = 15, .external_lex_state = 2}, + [3081] = {.lex_state = 2, .external_lex_state = 2}, + [3082] = {.lex_state = 0, .external_lex_state = 2}, + [3083] = {.lex_state = 15, .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 = 3}, [3087] = {.lex_state = 0, .external_lex_state = 4}, - [3088] = {.lex_state = 0, .external_lex_state = 4}, - [3089] = {.lex_state = 0, .external_lex_state = 4}, - [3090] = {.lex_state = 0, .external_lex_state = 4}, - [3091] = {.lex_state = 0, .external_lex_state = 4}, - [3092] = {.lex_state = 0, .external_lex_state = 4}, - [3093] = {.lex_state = 0, .external_lex_state = 4}, - [3094] = {.lex_state = 0, .external_lex_state = 2}, + [3088] = {.lex_state = 3, .external_lex_state = 2}, + [3089] = {.lex_state = 0, .external_lex_state = 2}, + [3090] = {.lex_state = 2, .external_lex_state = 2}, + [3091] = {.lex_state = 2, .external_lex_state = 2}, + [3092] = {.lex_state = 2, .external_lex_state = 2}, + [3093] = {.lex_state = 0, .external_lex_state = 2}, + [3094] = {.lex_state = 2, .external_lex_state = 2}, [3095] = {.lex_state = 0, .external_lex_state = 2}, - [3096] = {.lex_state = 0, .external_lex_state = 2}, - [3097] = {.lex_state = 0, .external_lex_state = 4}, + [3096] = {.lex_state = 3, .external_lex_state = 2}, + [3097] = {.lex_state = 0, .external_lex_state = 2}, [3098] = {.lex_state = 0, .external_lex_state = 2}, - [3099] = {.lex_state = 0, .external_lex_state = 4}, - [3100] = {.lex_state = 0, .external_lex_state = 4}, + [3099] = {.lex_state = 0, .external_lex_state = 2}, + [3100] = {.lex_state = 0, .external_lex_state = 2}, [3101] = {.lex_state = 0, .external_lex_state = 4}, - [3102] = {.lex_state = 0, .external_lex_state = 4}, + [3102] = {.lex_state = 0, .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 = 17, .external_lex_state = 2}, - [3107] = {.lex_state = 0, .external_lex_state = 4}, - [3108] = {.lex_state = 0, .external_lex_state = 2}, + [3105] = {.lex_state = 15, .external_lex_state = 2}, + [3106] = {.lex_state = 0, .external_lex_state = 2}, + [3107] = {.lex_state = 2, .external_lex_state = 2}, + [3108] = {.lex_state = 0, .external_lex_state = 4}, [3109] = {.lex_state = 0, .external_lex_state = 2}, - [3110] = {.lex_state = 0, .external_lex_state = 4}, + [3110] = {.lex_state = 0, .external_lex_state = 2}, [3111] = {.lex_state = 0, .external_lex_state = 4}, - [3112] = {.lex_state = 0, .external_lex_state = 4}, + [3112] = {.lex_state = 0, .external_lex_state = 2}, [3113] = {.lex_state = 0, .external_lex_state = 2}, - [3114] = {.lex_state = 0, .external_lex_state = 4}, - [3115] = {.lex_state = 0, .external_lex_state = 4}, - [3116] = {.lex_state = 0, .external_lex_state = 4}, - [3117] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 2}, - [3119] = {.lex_state = 0, .external_lex_state = 4}, + [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}, @@ -10603,240 +10836,240 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3124] = {.lex_state = 0, .external_lex_state = 4}, [3125] = {.lex_state = 0, .external_lex_state = 2}, [3126] = {.lex_state = 0, .external_lex_state = 4}, - [3127] = {.lex_state = 0, .external_lex_state = 4}, - [3128] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, - [3135] = {.lex_state = 2, .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 = 2}, [3138] = {.lex_state = 0, .external_lex_state = 2}, - [3139] = {.lex_state = 0, .external_lex_state = 2}, - [3140] = {.lex_state = 0, .external_lex_state = 4}, - [3141] = {.lex_state = 0, .external_lex_state = 2}, - [3142] = {.lex_state = 0, .external_lex_state = 4}, + [3139] = {.lex_state = 13, .external_lex_state = 2}, + [3140] = {.lex_state = 2, .external_lex_state = 2}, + [3141] = {.lex_state = 2, .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 = 4}, - [3145] = {.lex_state = 0, .external_lex_state = 4}, - [3146] = {.lex_state = 0, .external_lex_state = 4}, - [3147] = {.lex_state = 0, .external_lex_state = 4}, - [3148] = {.lex_state = 0, .external_lex_state = 2}, - [3149] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 15, .external_lex_state = 2}, + [3149] = {.lex_state = 0, .external_lex_state = 2}, [3150] = {.lex_state = 0, .external_lex_state = 4}, - [3151] = {.lex_state = 0, .external_lex_state = 4}, + [3151] = {.lex_state = 0, .external_lex_state = 2}, [3152] = {.lex_state = 0, .external_lex_state = 2}, [3153] = {.lex_state = 0, .external_lex_state = 4}, - [3154] = {.lex_state = 0, .external_lex_state = 4}, - [3155] = {.lex_state = 0, .external_lex_state = 2}, - [3156] = {.lex_state = 0, .external_lex_state = 2}, + [3154] = {.lex_state = 0, .external_lex_state = 2}, + [3155] = {.lex_state = 0, .external_lex_state = 4}, + [3156] = {.lex_state = 0, .external_lex_state = 4}, [3157] = {.lex_state = 0, .external_lex_state = 4}, - [3158] = {.lex_state = 3, .external_lex_state = 2}, - [3159] = {.lex_state = 2, .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 = 2}, - [3161] = {.lex_state = 0, .external_lex_state = 4}, - [3162] = {.lex_state = 0, .external_lex_state = 4}, - [3163] = {.lex_state = 0, .external_lex_state = 4}, - [3164] = {.lex_state = 0, .external_lex_state = 4}, - [3165] = {.lex_state = 3, .external_lex_state = 2}, + [3161] = {.lex_state = 0, .external_lex_state = 2}, + [3162] = {.lex_state = 0, .external_lex_state = 2}, + [3163] = {.lex_state = 0, .external_lex_state = 2}, + [3164] = {.lex_state = 0, .external_lex_state = 2}, + [3165] = {.lex_state = 0, .external_lex_state = 4}, [3166] = {.lex_state = 0, .external_lex_state = 2}, [3167] = {.lex_state = 0, .external_lex_state = 2}, - [3168] = {.lex_state = 3, .external_lex_state = 2}, - [3169] = {.lex_state = 0, .external_lex_state = 4}, - [3170] = {.lex_state = 0, .external_lex_state = 2}, - [3171] = {.lex_state = 0, .external_lex_state = 4}, + [3168] = {.lex_state = 0, .external_lex_state = 2}, + [3169] = {.lex_state = 0, .external_lex_state = 2}, + [3170] = {.lex_state = 0, .external_lex_state = 4}, + [3171] = {.lex_state = 13, .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 = 4}, - [3175] = {.lex_state = 0, .external_lex_state = 4}, + [3173] = {.lex_state = 0, .external_lex_state = 2}, + [3174] = {.lex_state = 0, .external_lex_state = 2}, + [3175] = {.lex_state = 0, .external_lex_state = 2}, [3176] = {.lex_state = 0, .external_lex_state = 4}, - [3177] = {.lex_state = 0, .external_lex_state = 4}, + [3177] = {.lex_state = 0, .external_lex_state = 2}, [3178] = {.lex_state = 0, .external_lex_state = 4}, - [3179] = {.lex_state = 0, .external_lex_state = 4}, - [3180] = {.lex_state = 0, .external_lex_state = 4}, - [3181] = {.lex_state = 0, .external_lex_state = 4}, - [3182] = {.lex_state = 0, .external_lex_state = 4}, - [3183] = {.lex_state = 0, .external_lex_state = 4}, - [3184] = {.lex_state = 0, .external_lex_state = 4}, - [3185] = {.lex_state = 0, .external_lex_state = 4}, - [3186] = {.lex_state = 0, .external_lex_state = 4}, - [3187] = {.lex_state = 0, .external_lex_state = 2}, + [3179] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 13, .external_lex_state = 2}, + [3186] = {.lex_state = 2, .external_lex_state = 2}, + [3187] = {.lex_state = 0, .external_lex_state = 4}, [3188] = {.lex_state = 0, .external_lex_state = 4}, - [3189] = {.lex_state = 0, .external_lex_state = 4}, - [3190] = {.lex_state = 0, .external_lex_state = 4}, - [3191] = {.lex_state = 0, .external_lex_state = 2}, - [3192] = {.lex_state = 0, .external_lex_state = 4}, - [3193] = {.lex_state = 0, .external_lex_state = 4}, - [3194] = {.lex_state = 0, .external_lex_state = 4}, + [3189] = {.lex_state = 0, .external_lex_state = 2}, + [3190] = {.lex_state = 0, .external_lex_state = 2}, + [3191] = {.lex_state = 0, .external_lex_state = 4}, + [3192] = {.lex_state = 0, .external_lex_state = 2}, + [3193] = {.lex_state = 0, .external_lex_state = 2}, + [3194] = {.lex_state = 0, .external_lex_state = 2}, [3195] = {.lex_state = 0, .external_lex_state = 2}, - [3196] = {.lex_state = 0, .external_lex_state = 4}, - [3197] = {.lex_state = 0, .external_lex_state = 4}, - [3198] = {.lex_state = 0, .external_lex_state = 4}, - [3199] = {.lex_state = 0, .external_lex_state = 4}, + [3196] = {.lex_state = 0, .external_lex_state = 2}, + [3197] = {.lex_state = 0, .external_lex_state = 2}, + [3198] = {.lex_state = 0, .external_lex_state = 2}, + [3199] = {.lex_state = 2, .external_lex_state = 2}, [3200] = {.lex_state = 0, .external_lex_state = 2}, [3201] = {.lex_state = 0, .external_lex_state = 2}, - [3202] = {.lex_state = 0, .external_lex_state = 4}, - [3203] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 4}, - [3206] = {.lex_state = 0, .external_lex_state = 4}, - [3207] = {.lex_state = 0, .external_lex_state = 4}, - [3208] = {.lex_state = 0, .external_lex_state = 2}, + [3205] = {.lex_state = 0, .external_lex_state = 2}, + [3206] = {.lex_state = 0, .external_lex_state = 2}, + [3207] = {.lex_state = 0, .external_lex_state = 2}, + [3208] = {.lex_state = 0, .external_lex_state = 4}, [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 = 4}, - [3213] = {.lex_state = 0, .external_lex_state = 4}, + [3211] = {.lex_state = 2, .external_lex_state = 2}, + [3212] = {.lex_state = 0, .external_lex_state = 2}, + [3213] = {.lex_state = 2, .external_lex_state = 2}, [3214] = {.lex_state = 0, .external_lex_state = 2}, - [3215] = {.lex_state = 3, .external_lex_state = 2}, - [3216] = {.lex_state = 0, .external_lex_state = 4}, - [3217] = {.lex_state = 0, .external_lex_state = 4}, + [3215] = {.lex_state = 2, .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 = 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 = 0, .external_lex_state = 2}, - [3223] = {.lex_state = 0, .external_lex_state = 4}, + [3222] = {.lex_state = 2, .external_lex_state = 2}, + [3223] = {.lex_state = 2, .external_lex_state = 2}, [3224] = {.lex_state = 0, .external_lex_state = 4}, - [3225] = {.lex_state = 0, .external_lex_state = 2}, - [3226] = {.lex_state = 0, .external_lex_state = 2}, - [3227] = {.lex_state = 0, .external_lex_state = 4}, - [3228] = {.lex_state = 0, .external_lex_state = 4}, - [3229] = {.lex_state = 0, .external_lex_state = 4}, + [3225] = {.lex_state = 2, .external_lex_state = 2}, + [3226] = {.lex_state = 2, .external_lex_state = 2}, + [3227] = {.lex_state = 2, .external_lex_state = 2}, + [3228] = {.lex_state = 2, .external_lex_state = 2}, + [3229] = {.lex_state = 13, .external_lex_state = 2}, [3230] = {.lex_state = 0, .external_lex_state = 4}, [3231] = {.lex_state = 0, .external_lex_state = 2}, [3232] = {.lex_state = 0, .external_lex_state = 4}, [3233] = {.lex_state = 0, .external_lex_state = 4}, - [3234] = {.lex_state = 0, .external_lex_state = 4}, + [3234] = {.lex_state = 0, .external_lex_state = 2}, [3235] = {.lex_state = 0, .external_lex_state = 2}, - [3236] = {.lex_state = 0, .external_lex_state = 4}, + [3236] = {.lex_state = 0, .external_lex_state = 2}, [3237] = {.lex_state = 0, .external_lex_state = 2}, [3238] = {.lex_state = 0, .external_lex_state = 2}, [3239] = {.lex_state = 0, .external_lex_state = 4}, [3240] = {.lex_state = 0, .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}, + [3242] = {.lex_state = 0, .external_lex_state = 2}, + [3243] = {.lex_state = 0, .external_lex_state = 4}, [3244] = {.lex_state = 0, .external_lex_state = 4}, [3245] = {.lex_state = 0, .external_lex_state = 2}, - [3246] = {.lex_state = 0, .external_lex_state = 2}, + [3246] = {.lex_state = 2, .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}, + [3249] = {.lex_state = 0, .external_lex_state = 2}, [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 = 4}, - [3255] = {.lex_state = 0, .external_lex_state = 4}, - [3256] = {.lex_state = 0, .external_lex_state = 4}, - [3257] = {.lex_state = 0, .external_lex_state = 2}, - [3258] = {.lex_state = 0, .external_lex_state = 2}, + [3253] = {.lex_state = 0, .external_lex_state = 3}, + [3254] = {.lex_state = 0, .external_lex_state = 2}, + [3255] = {.lex_state = 0, .external_lex_state = 2}, + [3256] = {.lex_state = 0, .external_lex_state = 2}, + [3257] = {.lex_state = 0, .external_lex_state = 4}, + [3258] = {.lex_state = 0, .external_lex_state = 4}, [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 = 4}, + [3260] = {.lex_state = 0, .external_lex_state = 4}, + [3261] = {.lex_state = 0, .external_lex_state = 2}, + [3262] = {.lex_state = 13, .external_lex_state = 2}, + [3263] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, - [3269] = {.lex_state = 0, .external_lex_state = 4}, - [3270] = {.lex_state = 0, .external_lex_state = 2}, + [3268] = {.lex_state = 0, .external_lex_state = 2}, + [3269] = {.lex_state = 0, .external_lex_state = 2}, + [3270] = {.lex_state = 2, .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 = 2}, - [3275] = {.lex_state = 0, .external_lex_state = 4}, - [3276] = {.lex_state = 0, .external_lex_state = 4}, - [3277] = {.lex_state = 0, .external_lex_state = 4}, - [3278] = {.lex_state = 0, .external_lex_state = 4}, + [3272] = {.lex_state = 2, .external_lex_state = 2}, + [3273] = {.lex_state = 2, .external_lex_state = 2}, + [3274] = {.lex_state = 2, .external_lex_state = 2}, + [3275] = {.lex_state = 0, .external_lex_state = 2}, + [3276] = {.lex_state = 0, .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 = 0, .external_lex_state = 2}, - [3282] = {.lex_state = 0, .external_lex_state = 4}, + [3282] = {.lex_state = 0, .external_lex_state = 2}, [3283] = {.lex_state = 0, .external_lex_state = 2}, - [3284] = {.lex_state = 0, .external_lex_state = 2}, + [3284] = {.lex_state = 0, .external_lex_state = 4}, [3285] = {.lex_state = 0, .external_lex_state = 2}, - [3286] = {.lex_state = 0, .external_lex_state = 2}, - [3287] = {.lex_state = 0, .external_lex_state = 2}, - [3288] = {.lex_state = 0, .external_lex_state = 4}, - [3289] = {.lex_state = 0, .external_lex_state = 2}, - [3290] = {.lex_state = 0, .external_lex_state = 4}, + [3286] = {.lex_state = 2, .external_lex_state = 2}, + [3287] = {.lex_state = 0, .external_lex_state = 4}, + [3288] = {.lex_state = 0, .external_lex_state = 2}, + [3289] = {.lex_state = 0, .external_lex_state = 4}, + [3290] = {.lex_state = 0, .external_lex_state = 2}, [3291] = {.lex_state = 0, .external_lex_state = 4}, - [3292] = {.lex_state = 0, .external_lex_state = 2}, + [3292] = {.lex_state = 0, .external_lex_state = 4}, [3293] = {.lex_state = 0, .external_lex_state = 2}, [3294] = {.lex_state = 0, .external_lex_state = 2}, - [3295] = {.lex_state = 0, .external_lex_state = 4}, + [3295] = {.lex_state = 0, .external_lex_state = 2}, [3296] = {.lex_state = 0, .external_lex_state = 4}, - [3297] = {.lex_state = 0, .external_lex_state = 4}, + [3297] = {.lex_state = 0, .external_lex_state = 2}, [3298] = {.lex_state = 0, .external_lex_state = 4}, - [3299] = {.lex_state = 0, .external_lex_state = 2}, - [3300] = {.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 = 4}, - [3303] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3306] = {.lex_state = 0, .external_lex_state = 2}, [3307] = {.lex_state = 0, .external_lex_state = 2}, - [3308] = {.lex_state = 0, .external_lex_state = 4}, - [3309] = {.lex_state = 0, .external_lex_state = 4}, + [3308] = {.lex_state = 0, .external_lex_state = 2}, + [3309] = {.lex_state = 0, .external_lex_state = 2}, [3310] = {.lex_state = 0, .external_lex_state = 4}, [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 = 4}, + [3314] = {.lex_state = 0, .external_lex_state = 2}, [3315] = {.lex_state = 0, .external_lex_state = 2}, - [3316] = {.lex_state = 0, .external_lex_state = 4}, - [3317] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, - [3320] = {.lex_state = 0, .external_lex_state = 2}, + [3319] = {.lex_state = 3, .external_lex_state = 2}, + [3320] = {.lex_state = 0, .external_lex_state = 4}, [3321] = {.lex_state = 0, .external_lex_state = 4}, - [3322] = {.lex_state = 0, .external_lex_state = 2}, + [3322] = {.lex_state = 0, .external_lex_state = 4}, [3323] = {.lex_state = 0, .external_lex_state = 2}, - [3324] = {.lex_state = 0, .external_lex_state = 2}, + [3324] = {.lex_state = 2, .external_lex_state = 2}, [3325] = {.lex_state = 0, .external_lex_state = 4}, [3326] = {.lex_state = 0, .external_lex_state = 2}, [3327] = {.lex_state = 0, .external_lex_state = 2}, [3328] = {.lex_state = 0, .external_lex_state = 2}, - [3329] = {.lex_state = 0, .external_lex_state = 2}, - [3330] = {.lex_state = 0, .external_lex_state = 2}, - [3331] = {.lex_state = 0, .external_lex_state = 2}, + [3329] = {.lex_state = 0, .external_lex_state = 4}, + [3330] = {.lex_state = 0, .external_lex_state = 4}, + [3331] = {.lex_state = 0, .external_lex_state = 4}, [3332] = {.lex_state = 0, .external_lex_state = 2}, - [3333] = {.lex_state = 0, .external_lex_state = 2}, + [3333] = {.lex_state = 0, .external_lex_state = 4}, [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 = 4}, + [3337] = {.lex_state = 0, .external_lex_state = 2}, [3338] = {.lex_state = 0, .external_lex_state = 4}, - [3339] = {.lex_state = 0, .external_lex_state = 2}, - [3340] = {.lex_state = 0, .external_lex_state = 4}, - [3341] = {.lex_state = 0, .external_lex_state = 2}, + [3339] = {.lex_state = 0, .external_lex_state = 4}, + [3340] = {.lex_state = 0, .external_lex_state = 2}, + [3341] = {.lex_state = 0, .external_lex_state = 4}, [3342] = {.lex_state = 0, .external_lex_state = 2}, [3343] = {.lex_state = 0, .external_lex_state = 2}, - [3344] = {.lex_state = 0, .external_lex_state = 4}, - [3345] = {.lex_state = 0, .external_lex_state = 4}, - [3346] = {.lex_state = 0, .external_lex_state = 4}, - [3347] = {.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 = 4}, [3349] = {.lex_state = 0, .external_lex_state = 2}, [3350] = {.lex_state = 0, .external_lex_state = 2}, - [3351] = {.lex_state = 0, .external_lex_state = 2}, + [3351] = {.lex_state = 0, .external_lex_state = 4}, [3352] = {.lex_state = 0, .external_lex_state = 4}, - [3353] = {.lex_state = 0, .external_lex_state = 2}, - [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 = 2}, - [3359] = {.lex_state = 0, .external_lex_state = 2}, - [3360] = {.lex_state = 0, .external_lex_state = 2}, + [3353] = {.lex_state = 0, .external_lex_state = 4}, + [3354] = {.lex_state = 0, .external_lex_state = 2}, + [3355] = {.lex_state = 0, .external_lex_state = 2}, + [3356] = {.lex_state = 0, .external_lex_state = 4}, + [3357] = {.lex_state = 0, .external_lex_state = 4}, + [3358] = {.lex_state = 0, .external_lex_state = 4}, + [3359] = {.lex_state = 0, .external_lex_state = 4}, + [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}, @@ -10851,83 +11084,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3372] = {.lex_state = 0, .external_lex_state = 2}, [3373] = {.lex_state = 0, .external_lex_state = 4}, [3374] = {.lex_state = 0, .external_lex_state = 2}, - [3375] = {.lex_state = 0, .external_lex_state = 4}, + [3375] = {.lex_state = 0, .external_lex_state = 2}, [3376] = {.lex_state = 0, .external_lex_state = 4}, - [3377] = {.lex_state = 0, .external_lex_state = 4}, + [3377] = {.lex_state = 3, .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 = 4}, - [3381] = {.lex_state = 0, .external_lex_state = 4}, - [3382] = {.lex_state = 0, .external_lex_state = 4}, + [3379] = {.lex_state = 2, .external_lex_state = 2}, + [3380] = {.lex_state = 0, .external_lex_state = 2}, + [3381] = {.lex_state = 0, .external_lex_state = 2}, + [3382] = {.lex_state = 0, .external_lex_state = 2}, [3383] = {.lex_state = 0, .external_lex_state = 2}, - [3384] = {.lex_state = 0, .external_lex_state = 2}, + [3384] = {.lex_state = 0, .external_lex_state = 4}, [3385] = {.lex_state = 0, .external_lex_state = 2}, - [3386] = {.lex_state = 0, .external_lex_state = 2}, - [3387] = {.lex_state = 0, .external_lex_state = 4}, - [3388] = {.lex_state = 0, .external_lex_state = 2}, + [3386] = {.lex_state = 0, .external_lex_state = 4}, + [3387] = {.lex_state = 0, .external_lex_state = 2}, + [3388] = {.lex_state = 0, .external_lex_state = 4}, [3389] = {.lex_state = 0, .external_lex_state = 4}, - [3390] = {.lex_state = 0, .external_lex_state = 2}, - [3391] = {.lex_state = 0, .external_lex_state = 4}, - [3392] = {.lex_state = 3, .external_lex_state = 2}, + [3390] = {.lex_state = 0, .external_lex_state = 4}, + [3391] = {.lex_state = 3, .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}, + [3394] = {.lex_state = 0, .external_lex_state = 2}, + [3395] = {.lex_state = 0, .external_lex_state = 4}, [3396] = {.lex_state = 0, .external_lex_state = 2}, - [3397] = {.lex_state = 0, .external_lex_state = 4}, - [3398] = {.lex_state = 0, .external_lex_state = 4}, + [3397] = {.lex_state = 0, .external_lex_state = 2}, + [3398] = {.lex_state = 3, .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 = 2}, - [3402] = {.lex_state = 0, .external_lex_state = 4}, - [3403] = {.lex_state = 3, .external_lex_state = 2}, - [3404] = {.lex_state = 0, .external_lex_state = 2}, + [3401] = {.lex_state = 0, .external_lex_state = 4}, + [3402] = {.lex_state = 0, .external_lex_state = 2}, + [3403] = {.lex_state = 0, .external_lex_state = 4}, + [3404] = {.lex_state = 0, .external_lex_state = 4}, [3405] = {.lex_state = 0, .external_lex_state = 4}, - [3406] = {.lex_state = 0, .external_lex_state = 2}, + [3406] = {.lex_state = 0, .external_lex_state = 4}, [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}, + [3409] = {.lex_state = 0, .external_lex_state = 2}, + [3410] = {.lex_state = 0, .external_lex_state = 4}, [3411] = {.lex_state = 0, .external_lex_state = 2}, [3412] = {.lex_state = 0, .external_lex_state = 4}, [3413] = {.lex_state = 0, .external_lex_state = 4}, - [3414] = {.lex_state = 0, .external_lex_state = 2}, + [3414] = {.lex_state = 0, .external_lex_state = 4}, [3415] = {.lex_state = 0, .external_lex_state = 4}, - [3416] = {.lex_state = 2, .external_lex_state = 2}, + [3416] = {.lex_state = 0, .external_lex_state = 4}, [3417] = {.lex_state = 0, .external_lex_state = 4}, - [3418] = {.lex_state = 0, .external_lex_state = 4}, + [3418] = {.lex_state = 2, .external_lex_state = 2}, [3419] = {.lex_state = 0, .external_lex_state = 2}, [3420] = {.lex_state = 0, .external_lex_state = 2}, - [3421] = {.lex_state = 0, .external_lex_state = 2}, + [3421] = {.lex_state = 0, .external_lex_state = 4}, [3422] = {.lex_state = 0, .external_lex_state = 2}, [3423] = {.lex_state = 0, .external_lex_state = 4}, - [3424] = {.lex_state = 0, .external_lex_state = 2}, - [3425] = {.lex_state = 0, .external_lex_state = 4}, - [3426] = {.lex_state = 0, .external_lex_state = 2}, + [3424] = {.lex_state = 0, .external_lex_state = 4}, + [3425] = {.lex_state = 0, .external_lex_state = 2}, + [3426] = {.lex_state = 0, .external_lex_state = 4}, [3427] = {.lex_state = 0, .external_lex_state = 4}, - [3428] = {.lex_state = 0, .external_lex_state = 4}, + [3428] = {.lex_state = 0, .external_lex_state = 2}, [3429] = {.lex_state = 0, .external_lex_state = 2}, [3430] = {.lex_state = 0, .external_lex_state = 2}, - [3431] = {.lex_state = 0, .external_lex_state = 4}, - [3432] = {.lex_state = 0, .external_lex_state = 4}, + [3431] = {.lex_state = 2, .external_lex_state = 2}, + [3432] = {.lex_state = 0, .external_lex_state = 2}, [3433] = {.lex_state = 0, .external_lex_state = 2}, - [3434] = {.lex_state = 0, .external_lex_state = 2}, - [3435] = {.lex_state = 0, .external_lex_state = 2}, - [3436] = {.lex_state = 0, .external_lex_state = 4}, - [3437] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 0, .external_lex_state = 4}, [3438] = {.lex_state = 0, .external_lex_state = 2}, [3439] = {.lex_state = 0, .external_lex_state = 4}, - [3440] = {.lex_state = 0, .external_lex_state = 2}, + [3440] = {.lex_state = 0, .external_lex_state = 4}, [3441] = {.lex_state = 0, .external_lex_state = 4}, [3442] = {.lex_state = 0, .external_lex_state = 4}, [3443] = {.lex_state = 0, .external_lex_state = 4}, [3444] = {.lex_state = 0, .external_lex_state = 2}, - [3445] = {.lex_state = 0, .external_lex_state = 2}, - [3446] = {.lex_state = 0, .external_lex_state = 4}, + [3445] = {.lex_state = 0, .external_lex_state = 4}, + [3446] = {.lex_state = 0, .external_lex_state = 2}, [3447] = {.lex_state = 0, .external_lex_state = 2}, [3448] = {.lex_state = 0, .external_lex_state = 2}, [3449] = {.lex_state = 0, .external_lex_state = 4}, [3450] = {.lex_state = 0, .external_lex_state = 2}, - [3451] = {.lex_state = 0, .external_lex_state = 4}, + [3451] = {.lex_state = 0, .external_lex_state = 2}, [3452] = {.lex_state = 0, .external_lex_state = 4}, [3453] = {.lex_state = 0, .external_lex_state = 2}, [3454] = {.lex_state = 0, .external_lex_state = 2}, @@ -10936,43 +11169,250 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 0, .external_lex_state = 4}, + [3460] = {.lex_state = 0, .external_lex_state = 2}, [3461] = {.lex_state = 0, .external_lex_state = 4}, [3462] = {.lex_state = 0, .external_lex_state = 4}, [3463] = {.lex_state = 0, .external_lex_state = 2}, - [3464] = {.lex_state = 0, .external_lex_state = 4}, + [3464] = {.lex_state = 0, .external_lex_state = 2}, [3465] = {.lex_state = 0, .external_lex_state = 2}, [3466] = {.lex_state = 0, .external_lex_state = 4}, - [3467] = {.lex_state = 0, .external_lex_state = 4}, - [3468] = {.lex_state = 0, .external_lex_state = 4}, - [3469] = {.lex_state = 0, .external_lex_state = 4}, - [3470] = {.lex_state = 0, .external_lex_state = 2}, + [3467] = {.lex_state = 0, .external_lex_state = 2}, + [3468] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3472] = {.lex_state = 0, .external_lex_state = 2}, [3473] = {.lex_state = 0, .external_lex_state = 4}, - [3474] = {.lex_state = 0, .external_lex_state = 2}, - [3475] = {.lex_state = 0, .external_lex_state = 2}, - [3476] = {.lex_state = 0, .external_lex_state = 2}, + [3474] = {.lex_state = 0, .external_lex_state = 4}, + [3475] = {.lex_state = 0, .external_lex_state = 4}, + [3476] = {.lex_state = 0, .external_lex_state = 4}, [3477] = {.lex_state = 0, .external_lex_state = 2}, [3478] = {.lex_state = 0, .external_lex_state = 2}, [3479] = {.lex_state = 0, .external_lex_state = 4}, - [3480] = {.lex_state = 0, .external_lex_state = 4}, + [3480] = {.lex_state = 0, .external_lex_state = 2}, [3481] = {.lex_state = 0, .external_lex_state = 2}, [3482] = {.lex_state = 0, .external_lex_state = 2}, - [3483] = {.lex_state = 0, .external_lex_state = 2}, + [3483] = {.lex_state = 0, .external_lex_state = 4}, [3484] = {.lex_state = 0, .external_lex_state = 4}, [3485] = {.lex_state = 0, .external_lex_state = 2}, - [3486] = {.lex_state = 0, .external_lex_state = 4}, + [3486] = {.lex_state = 0, .external_lex_state = 2}, [3487] = {.lex_state = 0, .external_lex_state = 4}, [3488] = {.lex_state = 0, .external_lex_state = 2}, [3489] = {.lex_state = 0, .external_lex_state = 2}, [3490] = {.lex_state = 0, .external_lex_state = 2}, - [3491] = {.lex_state = 0, .external_lex_state = 2}, + [3491] = {.lex_state = 0, .external_lex_state = 4}, [3492] = {.lex_state = 0, .external_lex_state = 2}, [3493] = {.lex_state = 0, .external_lex_state = 4}, [3494] = {.lex_state = 0, .external_lex_state = 4}, [3495] = {.lex_state = 0, .external_lex_state = 4}, - [3496] = {.lex_state = 0, .external_lex_state = 2}, + [3496] = {.lex_state = 0, .external_lex_state = 4}, + [3497] = {.lex_state = 0, .external_lex_state = 4}, + [3498] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [3503] = {.lex_state = 0, .external_lex_state = 4}, + [3504] = {.lex_state = 0, .external_lex_state = 4}, + [3505] = {.lex_state = 0, .external_lex_state = 4}, + [3506] = {.lex_state = 0, .external_lex_state = 4}, + [3507] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [3512] = {.lex_state = 0, .external_lex_state = 2}, + [3513] = {.lex_state = 0, .external_lex_state = 4}, + [3514] = {.lex_state = 0, .external_lex_state = 4}, + [3515] = {.lex_state = 0, .external_lex_state = 2}, + [3516] = {.lex_state = 0, .external_lex_state = 4}, + [3517] = {.lex_state = 0, .external_lex_state = 2}, + [3518] = {.lex_state = 0, .external_lex_state = 2}, + [3519] = {.lex_state = 0, .external_lex_state = 4}, + [3520] = {.lex_state = 0, .external_lex_state = 4}, + [3521] = {.lex_state = 0, .external_lex_state = 2}, + [3522] = {.lex_state = 0, .external_lex_state = 2}, + [3523] = {.lex_state = 0, .external_lex_state = 4}, + [3524] = {.lex_state = 0, .external_lex_state = 2}, + [3525] = {.lex_state = 0, .external_lex_state = 4}, + [3526] = {.lex_state = 0, .external_lex_state = 4}, + [3527] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, + [3532] = {.lex_state = 0, .external_lex_state = 2}, + [3533] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 3, .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 = 4}, + [3541] = {.lex_state = 0, .external_lex_state = 4}, + [3542] = {.lex_state = 0, .external_lex_state = 2}, + [3543] = {.lex_state = 0, .external_lex_state = 2}, + [3544] = {.lex_state = 0, .external_lex_state = 4}, + [3545] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 0, .external_lex_state = 4}, + [3553] = {.lex_state = 0, .external_lex_state = 2}, + [3554] = {.lex_state = 0, .external_lex_state = 2}, + [3555] = {.lex_state = 0, .external_lex_state = 2}, + [3556] = {.lex_state = 0, .external_lex_state = 2}, + [3557] = {.lex_state = 0, .external_lex_state = 2}, + [3558] = {.lex_state = 0, .external_lex_state = 2}, + [3559] = {.lex_state = 0, .external_lex_state = 4}, + [3560] = {.lex_state = 0, .external_lex_state = 2}, + [3561] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3569] = {.lex_state = 0, .external_lex_state = 2}, + [3570] = {.lex_state = 0, .external_lex_state = 4}, + [3571] = {.lex_state = 0, .external_lex_state = 4}, + [3572] = {.lex_state = 0, .external_lex_state = 2}, + [3573] = {.lex_state = 0, .external_lex_state = 4}, + [3574] = {.lex_state = 3, .external_lex_state = 2}, + [3575] = {.lex_state = 0, .external_lex_state = 2}, + [3576] = {.lex_state = 0, .external_lex_state = 4}, + [3577] = {.lex_state = 0, .external_lex_state = 4}, + [3578] = {.lex_state = 0, .external_lex_state = 4}, + [3579] = {.lex_state = 0, .external_lex_state = 2}, + [3580] = {.lex_state = 0, .external_lex_state = 2}, + [3581] = {.lex_state = 0, .external_lex_state = 2}, + [3582] = {.lex_state = 0, .external_lex_state = 2}, + [3583] = {.lex_state = 0, .external_lex_state = 2}, + [3584] = {.lex_state = 0, .external_lex_state = 4}, + [3585] = {.lex_state = 0, .external_lex_state = 2}, + [3586] = {.lex_state = 0, .external_lex_state = 4}, + [3587] = {.lex_state = 0, .external_lex_state = 4}, + [3588] = {.lex_state = 0, .external_lex_state = 2}, + [3589] = {.lex_state = 0, .external_lex_state = 4}, + [3590] = {.lex_state = 0, .external_lex_state = 4}, + [3591] = {.lex_state = 0, .external_lex_state = 4}, + [3592] = {.lex_state = 0, .external_lex_state = 4}, + [3593] = {.lex_state = 0, .external_lex_state = 2}, + [3594] = {.lex_state = 0, .external_lex_state = 4}, + [3595] = {.lex_state = 0, .external_lex_state = 4}, + [3596] = {.lex_state = 0, .external_lex_state = 4}, + [3597] = {.lex_state = 0, .external_lex_state = 2}, + [3598] = {.lex_state = 0, .external_lex_state = 4}, + [3599] = {.lex_state = 0, .external_lex_state = 4}, + [3600] = {.lex_state = 0, .external_lex_state = 4}, + [3601] = {.lex_state = 0, .external_lex_state = 4}, + [3602] = {.lex_state = 0, .external_lex_state = 4}, + [3603] = {.lex_state = 0, .external_lex_state = 4}, + [3604] = {.lex_state = 0, .external_lex_state = 2}, + [3605] = {.lex_state = 0, .external_lex_state = 2}, + [3606] = {.lex_state = 0, .external_lex_state = 2}, + [3607] = {.lex_state = 0, .external_lex_state = 2}, + [3608] = {.lex_state = 0, .external_lex_state = 2}, + [3609] = {.lex_state = 0, .external_lex_state = 2}, + [3610] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [3615] = {.lex_state = 0, .external_lex_state = 4}, + [3616] = {.lex_state = 0, .external_lex_state = 2}, + [3617] = {.lex_state = 0, .external_lex_state = 2}, + [3618] = {.lex_state = 0, .external_lex_state = 4}, + [3619] = {.lex_state = 0, .external_lex_state = 4}, + [3620] = {.lex_state = 0, .external_lex_state = 4}, + [3621] = {.lex_state = 0, .external_lex_state = 2}, + [3622] = {.lex_state = 0, .external_lex_state = 4}, + [3623] = {.lex_state = 0, .external_lex_state = 4}, + [3624] = {.lex_state = 0, .external_lex_state = 2}, + [3625] = {.lex_state = 0, .external_lex_state = 2}, + [3626] = {.lex_state = 0, .external_lex_state = 2}, + [3627] = {.lex_state = 0, .external_lex_state = 4}, + [3628] = {.lex_state = 0, .external_lex_state = 4}, + [3629] = {.lex_state = 0, .external_lex_state = 4}, + [3630] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3636] = {.lex_state = 0, .external_lex_state = 4}, + [3637] = {.lex_state = 0, .external_lex_state = 2}, + [3638] = {.lex_state = 0, .external_lex_state = 4}, + [3639] = {.lex_state = 0, .external_lex_state = 4}, + [3640] = {.lex_state = 0, .external_lex_state = 4}, + [3641] = {.lex_state = 0, .external_lex_state = 4}, + [3642] = {.lex_state = 0, .external_lex_state = 2}, + [3643] = {.lex_state = 0, .external_lex_state = 4}, + [3644] = {.lex_state = 0, .external_lex_state = 4}, + [3645] = {.lex_state = 0, .external_lex_state = 4}, + [3646] = {.lex_state = 0, .external_lex_state = 2}, + [3647] = {.lex_state = 0, .external_lex_state = 4}, + [3648] = {.lex_state = 0, .external_lex_state = 4}, + [3649] = {.lex_state = 0, .external_lex_state = 4}, + [3650] = {.lex_state = 0, .external_lex_state = 4}, + [3651] = {.lex_state = 0, .external_lex_state = 2}, + [3652] = {.lex_state = 0, .external_lex_state = 4}, + [3653] = {.lex_state = 0, .external_lex_state = 4}, + [3654] = {.lex_state = 0, .external_lex_state = 2}, + [3655] = {.lex_state = 0, .external_lex_state = 2}, + [3656] = {.lex_state = 0, .external_lex_state = 2}, + [3657] = {.lex_state = 0, .external_lex_state = 2}, + [3658] = {.lex_state = 0, .external_lex_state = 2}, + [3659] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3666] = {.lex_state = 0, .external_lex_state = 4}, + [3667] = {.lex_state = 0, .external_lex_state = 4}, + [3668] = {.lex_state = 0, .external_lex_state = 2}, + [3669] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3677] = {.lex_state = 0, .external_lex_state = 2}, + [3678] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [3684] = {.lex_state = 0, .external_lex_state = 4}, + [3685] = {.lex_state = 0, .external_lex_state = 2}, + [3686] = {.lex_state = 0, .external_lex_state = 2}, + [3687] = {.lex_state = 0, .external_lex_state = 4}, + [3688] = {.lex_state = 0, .external_lex_state = 4}, + [3689] = {.lex_state = 0, .external_lex_state = 2}, + [3690] = {.lex_state = 0, .external_lex_state = 2}, + [3691] = {.lex_state = 0, .external_lex_state = 4}, + [3692] = {.lex_state = 0, .external_lex_state = 2}, + [3693] = {.lex_state = 0, .external_lex_state = 4}, + [3694] = {.lex_state = 0, .external_lex_state = 2}, + [3695] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [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 = 4}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -11091,66 +11531,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_unmarker] = ACTIONS(3), }, [1] = { - [sym_module] = STATE(3485), - [sym_preprocessor_statement] = STATE(12), - [sym_package_statement] = STATE(12), - [sym_import_statement] = STATE(12), - [sym_using_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym__rhs_expression] = STATE(1073), - [sym__unaryExpression] = STATE(3468), - [sym_runtime_type_check_expression] = STATE(3468), - [sym_switch_expression] = STATE(806), - [sym_cast_expression] = STATE(3468), - [sym_type_trace_expression] = STATE(3468), - [sym__parenthesized_expression] = STATE(2903), - [sym_for_statement] = STATE(12), - [sym_subscript_expression] = STATE(3468), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(12), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(12), - [sym_conditional_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_while_statement] = STATE(12), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1073), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(12), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_module_repeat1] = STATE(12), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_module] = STATE(3444), + [sym_preprocessor_statement] = STATE(28), + [sym_package_statement] = STATE(28), + [sym_import_statement] = STATE(28), + [sym_using_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym__rhs_expression] = STATE(1272), + [sym__unaryExpression] = STATE(3586), + [sym_runtime_type_check_expression] = STATE(3586), + [sym_switch_expression] = STATE(836), + [sym_cast_expression] = STATE(3586), + [sym_type_trace_expression] = STATE(3586), + [sym__parenthesized_expression] = STATE(2727), + [sym_for_statement] = STATE(28), + [sym_range_expression] = STATE(3586), + [sym_subscript_expression] = STATE(3586), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(28), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(28), + [sym_conditional_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_while_statement] = STATE(28), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1272), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(28), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(28), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), @@ -11233,76 +11674,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_unmarker] = ACTIONS(3), }, [2] = { - [sym_preprocessor_statement] = STATE(7), - [sym_package_statement] = STATE(7), - [sym_import_statement] = STATE(7), - [sym_using_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym__rhs_expression] = STATE(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(367), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(7), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(7), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(7), - [sym_conditional_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_while_statement] = STATE(7), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(7), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1896), - [sym_integer] = STATE(1896), - [sym_float] = STATE(1896), - [sym_bool] = STATE(1896), - [sym_string] = STATE(1682), - [sym_null] = STATE(1896), - [sym_array] = STATE(1896), - [sym_map] = STATE(1896), - [sym_object] = STATE(1896), - [sym_pair] = STATE(1406), - [aux_sym_module_repeat1] = STATE(7), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(99), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [sym_preprocessor_statement] = STATE(472), + [sym_package_statement] = STATE(472), + [sym_import_statement] = STATE(472), + [sym_using_statement] = STATE(472), + [sym_throw_statement] = STATE(472), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(391), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2529), + [sym_for_statement] = STATE(472), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(472), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(472), + [sym_conditional_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_do_while_statement] = STATE(472), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(472), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_case] = ACTIONS(113), + [anon_sym_default] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), [anon_sym_for] = ACTIONS(115), @@ -11315,6 +11757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(43), [anon_sym_AT_COLON] = ACTIONS(45), [anon_sym_try] = ACTIONS(123), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(127), [anon_sym_do] = ACTIONS(129), @@ -11375,88 +11819,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_unmarker] = ACTIONS(3), }, [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(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(234), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(8), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(8), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(8), - [sym_conditional_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_while_statement] = STATE(8), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(8), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1896), - [sym_integer] = STATE(1896), - [sym_float] = STATE(1896), - [sym_bool] = STATE(1896), - [sym_string] = STATE(1682), - [sym_null] = STATE(1896), - [sym_array] = STATE(1896), - [sym_map] = STATE(1896), - [sym_object] = STATE(1896), - [sym_pair] = STATE(1406), - [aux_sym_module_repeat1] = STATE(8), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(99), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [sym_preprocessor_statement] = STATE(584), + [sym_package_statement] = STATE(584), + [sym_import_statement] = STATE(584), + [sym_using_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3506), + [sym_runtime_type_check_expression] = STATE(3506), + [sym_switch_expression] = STATE(414), + [sym_cast_expression] = STATE(3506), + [sym_type_trace_expression] = STATE(3506), + [sym__parenthesized_expression] = STATE(2707), + [sym_for_statement] = STATE(584), + [sym_range_expression] = STATE(3506), + [sym_subscript_expression] = STATE(3506), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(584), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(584), + [sym_conditional_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_while_statement] = STATE(584), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(584), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_case] = ACTIONS(149), + [anon_sym_default] = ACTIONS(149), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [anon_sym_return] = ACTIONS(151), + [anon_sym_untyped] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(155), [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(123), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_else] = ACTIONS(149), [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(127), [anon_sym_do] = ACTIONS(129), @@ -11513,83 +11960,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(149), + [sym__closing_brace_marker] = ACTIONS(157), [sym__closing_brace_unmarker] = ACTIONS(3), }, [4] = { - [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(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(473), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(8), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(8), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(8), - [sym_conditional_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_while_statement] = STATE(8), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(8), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_module_repeat1] = STATE(8), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_preprocessor_statement] = STATE(472), + [sym_package_statement] = STATE(472), + [sym_import_statement] = STATE(472), + [sym_using_statement] = STATE(472), + [sym_throw_statement] = STATE(472), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(391), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2529), + [sym_for_statement] = STATE(472), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(472), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(472), + [sym_conditional_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_do_while_statement] = STATE(472), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(472), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_case] = ACTIONS(113), + [anon_sym_default] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), + [anon_sym_for] = ACTIONS(159), [anon_sym_return] = ACTIONS(117), [anon_sym_untyped] = ACTIONS(119), [anon_sym_break] = ACTIONS(121), @@ -11598,9 +12046,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(41), [anon_sym_AT] = ACTIONS(43), [anon_sym_AT_COLON] = ACTIONS(45), - [anon_sym_try] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(161), + [anon_sym_else] = ACTIONS(113), + [anon_sym_if] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -11655,83 +12104,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(151), + [sym__closing_brace_marker] = ACTIONS(147), [sym__closing_brace_unmarker] = ACTIONS(3), }, [5] = { - [sym_preprocessor_statement] = STATE(10), - [sym_package_statement] = STATE(10), - [sym_import_statement] = STATE(10), - [sym_using_statement] = STATE(10), - [sym_throw_statement] = STATE(10), - [sym__rhs_expression] = STATE(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(2524), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(10), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(10), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(10), - [sym_conditional_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_while_statement] = STATE(10), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(10), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1896), - [sym_integer] = STATE(1896), - [sym_float] = STATE(1896), - [sym_bool] = STATE(1896), - [sym_string] = STATE(1682), - [sym_null] = STATE(1896), - [sym_array] = STATE(1896), - [sym_map] = STATE(1896), - [sym_object] = STATE(1896), - [sym_pair] = STATE(1395), - [aux_sym_module_repeat1] = STATE(10), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(99), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [sym_preprocessor_statement] = STATE(472), + [sym_package_statement] = STATE(472), + [sym_import_statement] = STATE(472), + [sym_using_statement] = STATE(472), + [sym_throw_statement] = STATE(472), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(391), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2529), + [sym_for_statement] = STATE(472), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(472), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(472), + [sym_conditional_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_do_while_statement] = STATE(472), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(472), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_case] = ACTIONS(113), + [anon_sym_default] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), + [anon_sym_for] = ACTIONS(167), [anon_sym_return] = ACTIONS(117), [anon_sym_untyped] = ACTIONS(119), [anon_sym_break] = ACTIONS(121), @@ -11740,9 +12190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(41), [anon_sym_AT] = ACTIONS(43), [anon_sym_AT_COLON] = ACTIONS(45), - [anon_sym_try] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(169), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(173), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -11801,90 +12252,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_unmarker] = ACTIONS(3), }, [6] = { - [sym_preprocessor_statement] = STATE(7), - [sym_package_statement] = STATE(7), - [sym_import_statement] = STATE(7), - [sym_using_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym__rhs_expression] = STATE(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(628), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(7), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(7), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(7), - [sym_conditional_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_while_statement] = STATE(7), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(7), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_module_repeat1] = STATE(7), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [sym_preprocessor_statement] = STATE(584), + [sym_package_statement] = STATE(584), + [sym_import_statement] = STATE(584), + [sym_using_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3506), + [sym_runtime_type_check_expression] = STATE(3506), + [sym_switch_expression] = STATE(414), + [sym_cast_expression] = STATE(3506), + [sym_type_trace_expression] = STATE(3506), + [sym__parenthesized_expression] = STATE(2707), + [sym_for_statement] = STATE(584), + [sym_range_expression] = STATE(3506), + [sym_subscript_expression] = STATE(3506), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(584), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(584), + [sym_conditional_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_while_statement] = STATE(584), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(584), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_case] = ACTIONS(149), + [anon_sym_default] = ACTIONS(149), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [anon_sym_for] = ACTIONS(159), + [anon_sym_return] = ACTIONS(151), + [anon_sym_untyped] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(155), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(161), + [anon_sym_else] = ACTIONS(149), + [anon_sym_if] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -11939,94 +12392,668 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(153), + [sym__closing_brace_marker] = ACTIONS(157), [sym__closing_brace_unmarker] = ACTIONS(3), }, [7] = { + [sym_preprocessor_statement] = STATE(584), + [sym_package_statement] = STATE(584), + [sym_import_statement] = STATE(584), + [sym_using_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3506), + [sym_runtime_type_check_expression] = STATE(3506), + [sym_switch_expression] = STATE(414), + [sym_cast_expression] = STATE(3506), + [sym_type_trace_expression] = STATE(3506), + [sym__parenthesized_expression] = STATE(2707), + [sym_for_statement] = STATE(584), + [sym_range_expression] = STATE(3506), + [sym_subscript_expression] = STATE(3506), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(584), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(584), + [sym_conditional_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_while_statement] = STATE(584), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(584), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_case] = ACTIONS(149), + [anon_sym_default] = ACTIONS(149), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(167), + [anon_sym_return] = ACTIONS(151), + [anon_sym_untyped] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(155), + [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(169), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(173), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(157), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [8] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(157), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(178), + [anon_sym_package] = ACTIONS(181), + [anon_sym_import] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(190), + [anon_sym_throw] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(211), + [anon_sym_return] = ACTIONS(214), + [anon_sym_untyped] = ACTIONS(217), + [anon_sym_break] = ACTIONS(220), + [anon_sym_continue] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(229), + [anon_sym_AT_COLON] = ACTIONS(232), + [anon_sym_try] = ACTIONS(235), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_else] = ACTIONS(149), + [anon_sym_if] = ACTIONS(238), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(244), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(268), + [anon_sym_abstract] = ACTIONS(268), + [anon_sym_static] = ACTIONS(268), + [anon_sym_public] = ACTIONS(268), + [anon_sym_private] = ACTIONS(268), + [anon_sym_extern] = ACTIONS(268), + [anon_sym_inline] = ACTIONS(268), + [anon_sym_overload] = ACTIONS(268), + [anon_sym_override] = ACTIONS(268), + [anon_sym_final] = ACTIONS(271), + [anon_sym_class] = ACTIONS(274), + [anon_sym_interface] = ACTIONS(277), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_typedef] = ACTIONS(283), + [anon_sym_function] = ACTIONS(286), + [anon_sym_var] = ACTIONS(289), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [9] = { + [sym_preprocessor_statement] = STATE(584), + [sym_package_statement] = STATE(584), + [sym_import_statement] = STATE(584), + [sym_using_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3506), + [sym_runtime_type_check_expression] = STATE(3506), + [sym_switch_expression] = STATE(414), + [sym_cast_expression] = STATE(3506), + [sym_type_trace_expression] = STATE(3506), + [sym__parenthesized_expression] = STATE(2707), + [sym_for_statement] = STATE(584), + [sym_range_expression] = STATE(3506), + [sym_subscript_expression] = STATE(3506), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(584), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(584), + [sym_conditional_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_while_statement] = STATE(584), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(584), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_case] = ACTIONS(149), + [anon_sym_default] = ACTIONS(149), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(151), + [anon_sym_untyped] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(155), + [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(315), + [anon_sym_if] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(157), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [10] = { + [sym_preprocessor_statement] = STATE(19), + [sym_package_statement] = STATE(19), + [sym_import_statement] = STATE(19), + [sym_using_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(612), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(19), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(19), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(19), + [sym_conditional_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_while_statement] = STATE(19), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(19), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(19), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), + [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(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(337), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [11] = { [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(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(635), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(2020), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), [sym_for_statement] = STATE(13), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), [sym_block] = STATE(13), - [sym_metadata] = STATE(2184), + [sym_metadata] = STATE(2262), [sym_try_statement] = STATE(13), [sym_conditional_statement] = STATE(13), [sym_while_statement] = STATE(13), [sym_do_while_statement] = STATE(13), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), [sym_declaration] = STATE(13), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1835), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1835), + [sym_bool] = STATE(1835), + [sym_string] = STATE(1590), + [sym_null] = STATE(1835), + [sym_array] = STATE(1835), + [sym_map] = STATE(1835), + [sym_object] = STATE(1835), + [sym_pair] = STATE(1457), [aux_sym_module_repeat1] = STATE(13), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(339), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -12081,94 +13108,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(153), + [sym__closing_brace_marker] = ACTIONS(341), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [8] = { - [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(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(453), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(13), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(13), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(13), - [sym_conditional_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_while_statement] = STATE(13), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(13), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_module_repeat1] = STATE(13), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [12] = { + [sym_preprocessor_statement] = STATE(38), + [sym_package_statement] = STATE(38), + [sym_import_statement] = STATE(38), + [sym_using_statement] = STATE(38), + [sym_throw_statement] = STATE(38), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(3576), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(38), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(38), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(38), + [sym_conditional_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_while_statement] = STATE(38), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(38), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -12223,94 +13251,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(151), + [sym__closing_brace_marker] = ACTIONS(343), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [9] = { - [sym_preprocessor_statement] = STATE(7), - [sym_package_statement] = STATE(7), - [sym_import_statement] = STATE(7), - [sym_using_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym__rhs_expression] = STATE(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(1930), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(7), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(7), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(7), - [sym_conditional_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_while_statement] = STATE(7), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(7), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1896), - [sym_integer] = STATE(1896), - [sym_float] = STATE(1896), - [sym_bool] = STATE(1896), - [sym_string] = STATE(1682), - [sym_null] = STATE(1896), - [sym_array] = STATE(1896), - [sym_map] = STATE(1896), - [sym_object] = STATE(1896), - [sym_pair] = STATE(1395), - [aux_sym_module_repeat1] = STATE(7), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(99), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [13] = { + [sym_preprocessor_statement] = STATE(38), + [sym_package_statement] = STATE(38), + [sym_import_statement] = STATE(38), + [sym_using_statement] = STATE(38), + [sym_throw_statement] = STATE(38), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(821), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(38), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(38), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(38), + [sym_conditional_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_while_statement] = STATE(38), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(38), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -12365,94 +13394,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(153), + [sym__closing_brace_marker] = ACTIONS(341), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [10] = { - [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(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(3423), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(13), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(13), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(13), - [sym_conditional_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_while_statement] = STATE(13), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(13), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_module_repeat1] = STATE(13), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [14] = { + [sym_preprocessor_statement] = STATE(12), + [sym_package_statement] = STATE(12), + [sym_import_statement] = STATE(12), + [sym_using_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(3681), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(12), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(12), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(12), + [sym_conditional_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_while_statement] = STATE(12), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(12), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(12), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -12507,94 +13537,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), + [sym__closing_brace_marker] = ACTIONS(343), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [11] = { - [sym_preprocessor_statement] = STATE(10), - [sym_package_statement] = STATE(10), - [sym_import_statement] = STATE(10), - [sym_using_statement] = STATE(10), - [sym_throw_statement] = STATE(10), - [sym__rhs_expression] = STATE(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym__closing_brace] = STATE(3369), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), - [sym_for_statement] = STATE(10), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(10), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(10), - [sym_conditional_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_while_statement] = STATE(10), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(10), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_module_repeat1] = STATE(10), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [15] = { + [sym_preprocessor_statement] = STATE(12), + [sym_package_statement] = STATE(12), + [sym_import_statement] = STATE(12), + [sym_using_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(2714), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(12), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(12), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(12), + [sym_conditional_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_while_statement] = STATE(12), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(12), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1835), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1835), + [sym_bool] = STATE(1835), + [sym_string] = STATE(1590), + [sym_null] = STATE(1835), + [sym_array] = STATE(1835), + [sym_map] = STATE(1835), + [sym_object] = STATE(1835), + [sym_pair] = STATE(1457), + [aux_sym_module_repeat1] = STATE(12), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(339), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -12649,516 +13680,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [12] = { - [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(1073), - [sym__unaryExpression] = STATE(3468), - [sym_runtime_type_check_expression] = STATE(3468), - [sym_switch_expression] = STATE(806), - [sym_cast_expression] = STATE(3468), - [sym_type_trace_expression] = STATE(3468), - [sym__parenthesized_expression] = STATE(2903), - [sym_for_statement] = STATE(14), - [sym_subscript_expression] = STATE(3468), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(14), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(14), - [sym_conditional_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_while_statement] = STATE(14), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1073), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(14), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_module_repeat1] = STATE(14), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [ts_builtin_sym_end] = ACTIONS(155), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(343), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [13] = { + [16] = { [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(1107), - [sym__unaryExpression] = STATE(3409), - [sym_runtime_type_check_expression] = STATE(3409), - [sym_switch_expression] = STATE(807), - [sym_cast_expression] = STATE(3409), - [sym_type_trace_expression] = STATE(3409), - [sym__parenthesized_expression] = STATE(2887), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(395), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), [sym_for_statement] = STATE(13), - [sym_subscript_expression] = STATE(3409), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), [sym_block] = STATE(13), - [sym_metadata] = STATE(2184), + [sym_metadata] = STATE(2262), [sym_try_statement] = STATE(13), [sym_conditional_statement] = STATE(13), [sym_while_statement] = STATE(13), [sym_do_while_statement] = STATE(13), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1107), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), [sym_declaration] = STATE(13), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1835), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1835), + [sym_bool] = STATE(1835), + [sym_string] = STATE(1590), + [sym_null] = STATE(1835), + [sym_array] = STATE(1835), + [sym_map] = STATE(1835), + [sym_object] = STATE(1835), + [sym_pair] = STATE(1430), [aux_sym_module_repeat1] = STATE(13), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(157), - [anon_sym_POUND] = ACTIONS(160), - [anon_sym_package] = ACTIONS(163), - [anon_sym_import] = ACTIONS(166), - [anon_sym_STAR] = ACTIONS(169), - [anon_sym_using] = ACTIONS(172), - [anon_sym_throw] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(184), - [anon_sym_cast] = ACTIONS(187), - [anon_sym_DOLLARtype] = ACTIONS(190), - [anon_sym_for] = ACTIONS(193), - [anon_sym_return] = ACTIONS(196), - [anon_sym_untyped] = ACTIONS(199), - [anon_sym_break] = ACTIONS(202), - [anon_sym_continue] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_this] = ACTIONS(208), - [anon_sym_AT] = ACTIONS(211), - [anon_sym_AT_COLON] = ACTIONS(214), - [anon_sym_try] = ACTIONS(217), - [anon_sym_if] = ACTIONS(220), - [anon_sym_while] = ACTIONS(223), - [anon_sym_do] = ACTIONS(226), - [anon_sym_new] = ACTIONS(229), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(238), - [anon_sym_PLUS_PLUS] = ACTIONS(241), - [anon_sym_DASH_DASH] = ACTIONS(241), - [anon_sym_PERCENT] = ACTIONS(169), - [anon_sym_SLASH] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(169), - [anon_sym_GT_GT] = ACTIONS(244), - [anon_sym_GT_GT_GT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(244), - [anon_sym_CARET] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(232), - [anon_sym_PIPE_PIPE] = ACTIONS(232), - [anon_sym_EQ_EQ] = ACTIONS(232), - [anon_sym_BANG_EQ] = ACTIONS(232), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(232), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_GT_EQ] = ACTIONS(232), - [anon_sym_EQ_GT] = ACTIONS(232), - [anon_sym_QMARK_QMARK] = ACTIONS(232), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(232), - [anon_sym_null] = ACTIONS(247), - [anon_sym_macro] = ACTIONS(250), - [anon_sym_abstract] = ACTIONS(250), - [anon_sym_static] = ACTIONS(250), - [anon_sym_public] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_inline] = ACTIONS(250), - [anon_sym_overload] = ACTIONS(250), - [anon_sym_override] = ACTIONS(250), - [anon_sym_final] = ACTIONS(253), - [anon_sym_class] = ACTIONS(256), - [anon_sym_interface] = ACTIONS(259), - [anon_sym_enum] = ACTIONS(262), - [anon_sym_typedef] = ACTIONS(265), - [anon_sym_function] = ACTIONS(268), - [anon_sym_var] = ACTIONS(271), - [aux_sym_integer_token1] = ACTIONS(274), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token1] = ACTIONS(280), - [aux_sym_float_token2] = ACTIONS(283), - [anon_sym_true] = ACTIONS(286), - [anon_sym_false] = ACTIONS(286), - [aux_sym_string_token1] = ACTIONS(289), - [aux_sym_string_token3] = ACTIONS(292), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(295), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [14] = { - [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(1073), - [sym__unaryExpression] = STATE(3468), - [sym_runtime_type_check_expression] = STATE(3468), - [sym_switch_expression] = STATE(806), - [sym_cast_expression] = STATE(3468), - [sym_type_trace_expression] = STATE(3468), - [sym__parenthesized_expression] = STATE(2903), - [sym_for_statement] = STATE(14), - [sym_subscript_expression] = STATE(3468), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(14), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(14), - [sym_conditional_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_while_statement] = STATE(14), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1073), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(14), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_module_repeat1] = STATE(14), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [ts_builtin_sym_end] = ACTIONS(295), - [sym_identifier] = ACTIONS(157), - [anon_sym_POUND] = ACTIONS(297), - [anon_sym_package] = ACTIONS(300), - [anon_sym_import] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(169), - [anon_sym_using] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_switch] = ACTIONS(312), - [anon_sym_LBRACE] = ACTIONS(315), - [anon_sym_cast] = ACTIONS(187), - [anon_sym_DOLLARtype] = ACTIONS(190), - [anon_sym_for] = ACTIONS(318), - [anon_sym_return] = ACTIONS(321), - [anon_sym_untyped] = ACTIONS(324), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_this] = ACTIONS(208), - [anon_sym_AT] = ACTIONS(211), - [anon_sym_AT_COLON] = ACTIONS(214), - [anon_sym_try] = ACTIONS(330), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(339), - [anon_sym_new] = ACTIONS(229), - [anon_sym_TILDE] = ACTIONS(232), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(238), - [anon_sym_PLUS_PLUS] = ACTIONS(241), - [anon_sym_DASH_DASH] = ACTIONS(241), - [anon_sym_PERCENT] = ACTIONS(169), - [anon_sym_SLASH] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(169), - [anon_sym_GT_GT] = ACTIONS(244), - [anon_sym_GT_GT_GT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(244), - [anon_sym_CARET] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(232), - [anon_sym_PIPE_PIPE] = ACTIONS(232), - [anon_sym_EQ_EQ] = ACTIONS(232), - [anon_sym_BANG_EQ] = ACTIONS(232), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_LT_EQ] = ACTIONS(232), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_GT_EQ] = ACTIONS(232), - [anon_sym_EQ_GT] = ACTIONS(232), - [anon_sym_QMARK_QMARK] = ACTIONS(232), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(232), - [anon_sym_null] = ACTIONS(247), - [anon_sym_macro] = ACTIONS(342), - [anon_sym_abstract] = ACTIONS(342), - [anon_sym_static] = ACTIONS(342), - [anon_sym_public] = ACTIONS(342), - [anon_sym_private] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_inline] = ACTIONS(342), - [anon_sym_overload] = ACTIONS(342), - [anon_sym_override] = ACTIONS(342), - [anon_sym_final] = ACTIONS(345), - [anon_sym_class] = ACTIONS(348), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(354), - [anon_sym_typedef] = ACTIONS(357), - [anon_sym_function] = ACTIONS(360), - [anon_sym_var] = ACTIONS(363), - [aux_sym_integer_token1] = ACTIONS(274), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token1] = ACTIONS(280), - [aux_sym_float_token2] = ACTIONS(283), - [anon_sym_true] = ACTIONS(286), - [anon_sym_false] = ACTIONS(286), - [aux_sym_string_token1] = ACTIONS(289), - [aux_sym_string_token3] = ACTIONS(292), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [15] = { - [sym_preprocessor_statement] = STATE(646), - [sym_package_statement] = STATE(646), - [sym_import_statement] = STATE(646), - [sym_using_statement] = STATE(646), - [sym_throw_statement] = STATE(646), - [sym__rhs_expression] = STATE(1183), - [sym__unaryExpression] = STATE(3189), - [sym_runtime_type_check_expression] = STATE(3189), - [sym_switch_expression] = STATE(606), - [sym_cast_expression] = STATE(3189), - [sym_type_trace_expression] = STATE(3189), - [sym__parenthesized_expression] = STATE(2942), - [sym_for_statement] = STATE(646), - [sym_subscript_expression] = STATE(3189), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(646), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(646), - [sym_conditional_statement] = STATE(646), - [sym_while_statement] = STATE(646), - [sym_do_while_statement] = STATE(646), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1183), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(646), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(339), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(372), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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(374), - [anon_sym_if] = ACTIONS(376), - [anon_sym_while] = ACTIONS(378), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -13187,22 +13798,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -13212,92 +13823,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(343), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [16] = { - [sym_preprocessor_statement] = STATE(667), - [sym_package_statement] = STATE(667), - [sym_import_statement] = STATE(667), - [sym_using_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym__rhs_expression] = STATE(1103), - [sym__unaryExpression] = STATE(3202), - [sym_runtime_type_check_expression] = STATE(3202), - [sym_switch_expression] = STATE(605), - [sym_cast_expression] = STATE(3202), - [sym_type_trace_expression] = STATE(3202), - [sym__parenthesized_expression] = STATE(2897), - [sym_for_statement] = STATE(667), - [sym_subscript_expression] = STATE(3202), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(667), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(667), - [sym_conditional_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_while_statement] = STATE(667), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1103), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(667), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [17] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(348), + [anon_sym_package] = ACTIONS(351), + [anon_sym_import] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(360), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(381), + [anon_sym_return] = ACTIONS(384), + [anon_sym_untyped] = ACTIONS(387), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_AT_COLON] = ACTIONS(402), + [anon_sym_try] = ACTIONS(405), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), + [anon_sym_if] = ACTIONS(408), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(414), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(438), + [anon_sym_abstract] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_public] = ACTIONS(438), + [anon_sym_private] = ACTIONS(438), + [anon_sym_extern] = ACTIONS(438), + [anon_sym_inline] = ACTIONS(438), + [anon_sym_overload] = ACTIONS(438), + [anon_sym_override] = ACTIONS(438), + [anon_sym_final] = ACTIONS(441), + [anon_sym_class] = ACTIONS(444), + [anon_sym_interface] = ACTIONS(447), + [anon_sym_enum] = ACTIONS(450), + [anon_sym_typedef] = ACTIONS(453), + [anon_sym_function] = ACTIONS(456), + [anon_sym_var] = ACTIONS(459), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [18] = { + [sym_preprocessor_statement] = STATE(472), + [sym_package_statement] = STATE(472), + [sym_import_statement] = STATE(472), + [sym_using_statement] = STATE(472), + [sym_throw_statement] = STATE(472), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(391), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2529), + [sym_for_statement] = STATE(472), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(472), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(472), + [sym_conditional_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_do_while_statement] = STATE(472), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(472), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(483), + [anon_sym_package] = ACTIONS(486), + [anon_sym_import] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(504), + [anon_sym_return] = ACTIONS(507), + [anon_sym_untyped] = ACTIONS(510), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_AT_COLON] = ACTIONS(402), + [anon_sym_try] = ACTIONS(516), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), + [anon_sym_if] = ACTIONS(519), + [anon_sym_while] = ACTIONS(522), + [anon_sym_do] = ACTIONS(525), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(528), + [anon_sym_abstract] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_public] = ACTIONS(528), + [anon_sym_private] = ACTIONS(528), + [anon_sym_extern] = ACTIONS(528), + [anon_sym_inline] = ACTIONS(528), + [anon_sym_overload] = ACTIONS(528), + [anon_sym_override] = ACTIONS(528), + [anon_sym_final] = ACTIONS(531), + [anon_sym_class] = ACTIONS(534), + [anon_sym_interface] = ACTIONS(537), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_typedef] = ACTIONS(543), + [anon_sym_function] = ACTIONS(546), + [anon_sym_var] = ACTIONS(549), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [19] = { + [sym_preprocessor_statement] = STATE(38), + [sym_package_statement] = STATE(38), + [sym_import_statement] = STATE(38), + [sym_using_statement] = STATE(38), + [sym_throw_statement] = STATE(38), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(581), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(38), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(38), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(38), + [sym_conditional_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_while_statement] = STATE(38), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(38), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_return] = ACTIONS(380), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(384), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -13326,22 +14227,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -13351,92 +14252,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(337), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [17] = { - [sym_preprocessor_statement] = STATE(671), - [sym_package_statement] = STATE(671), - [sym_import_statement] = STATE(671), - [sym_using_statement] = STATE(671), - [sym_throw_statement] = STATE(671), - [sym__rhs_expression] = STATE(1105), - [sym__unaryExpression] = STATE(3473), - [sym_runtime_type_check_expression] = STATE(3473), - [sym_switch_expression] = STATE(611), - [sym_cast_expression] = STATE(3473), - [sym_type_trace_expression] = STATE(3473), - [sym__parenthesized_expression] = STATE(3019), - [sym_for_statement] = STATE(671), - [sym_subscript_expression] = STATE(3473), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(671), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(671), - [sym_conditional_statement] = STATE(671), - [sym_while_statement] = STATE(671), - [sym_do_while_statement] = STATE(671), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1105), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(671), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [20] = { + [sym_preprocessor_statement] = STATE(19), + [sym_package_statement] = STATE(19), + [sym_import_statement] = STATE(19), + [sym_using_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(356), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(19), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(19), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(19), + [sym_conditional_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_while_statement] = STATE(19), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(19), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1835), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1835), + [sym_bool] = STATE(1835), + [sym_string] = STATE(1590), + [sym_null] = STATE(1835), + [sym_array] = STATE(1835), + [sym_map] = STATE(1835), + [sym_object] = STATE(1835), + [sym_pair] = STATE(1430), + [aux_sym_module_repeat1] = STATE(19), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(339), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_return] = ACTIONS(386), - [anon_sym_untyped] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -13465,22 +14370,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -13490,91 +14395,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(552), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [18] = { - [sym_preprocessor_statement] = STATE(2652), - [sym_package_statement] = STATE(2652), - [sym_import_statement] = STATE(2652), - [sym_using_statement] = STATE(2652), - [sym_throw_statement] = STATE(2652), - [sym__rhs_expression] = STATE(1180), - [sym__unaryExpression] = STATE(3442), - [sym_runtime_type_check_expression] = STATE(3442), - [sym_switch_expression] = STATE(2430), - [sym_cast_expression] = STATE(3442), - [sym_type_trace_expression] = STATE(3442), - [sym__parenthesized_expression] = STATE(3046), - [sym_for_statement] = STATE(2652), - [sym_subscript_expression] = STATE(3442), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2652), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(2652), - [sym_conditional_statement] = STATE(2652), - [sym_while_statement] = STATE(2652), - [sym_do_while_statement] = STATE(2652), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1180), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2652), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [21] = { + [sym_preprocessor_statement] = STATE(472), + [sym_package_statement] = STATE(472), + [sym_import_statement] = STATE(472), + [sym_using_statement] = STATE(472), + [sym_throw_statement] = STATE(472), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(391), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2529), + [sym_for_statement] = STATE(472), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(472), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(472), + [sym_conditional_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_do_while_statement] = STATE(472), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(472), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_case] = ACTIONS(113), + [anon_sym_default] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_untyped] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(400), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(117), + [anon_sym_untyped] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(121), [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(402), - [anon_sym_if] = ACTIONS(404), - [anon_sym_while] = ACTIONS(406), + [anon_sym_try] = ACTIONS(315), + [anon_sym_if] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -13629,91 +14538,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [19] = { - [sym_preprocessor_statement] = STATE(2691), - [sym_package_statement] = STATE(2691), - [sym_import_statement] = STATE(2691), - [sym_using_statement] = STATE(2691), - [sym_throw_statement] = STATE(2691), - [sym__rhs_expression] = STATE(1207), - [sym__unaryExpression] = STATE(3302), - [sym_runtime_type_check_expression] = STATE(3302), - [sym_switch_expression] = STATE(2536), - [sym_cast_expression] = STATE(3302), - [sym_type_trace_expression] = STATE(3302), - [sym__parenthesized_expression] = STATE(2939), - [sym_for_statement] = STATE(2691), - [sym_subscript_expression] = STATE(3302), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2691), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(2691), - [sym_conditional_statement] = STATE(2691), - [sym_while_statement] = STATE(2691), - [sym_do_while_statement] = STATE(2691), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1207), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2691), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [22] = { + [sym_preprocessor_statement] = STATE(584), + [sym_package_statement] = STATE(584), + [sym_import_statement] = STATE(584), + [sym_using_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3506), + [sym_runtime_type_check_expression] = STATE(3506), + [sym_switch_expression] = STATE(414), + [sym_cast_expression] = STATE(3506), + [sym_type_trace_expression] = STATE(3506), + [sym__parenthesized_expression] = STATE(2707), + [sym_for_statement] = STATE(584), + [sym_range_expression] = STATE(3506), + [sym_subscript_expression] = STATE(3506), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(584), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(584), + [sym_conditional_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_while_statement] = STATE(584), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(584), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_package] = ACTIONS(557), + [anon_sym_import] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(563), + [anon_sym_throw] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(575), + [anon_sym_return] = ACTIONS(578), + [anon_sym_untyped] = ACTIONS(581), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(229), + [anon_sym_AT_COLON] = ACTIONS(232), + [anon_sym_try] = ACTIONS(587), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_else] = ACTIONS(149), + [anon_sym_if] = ACTIONS(590), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(596), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(599), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_static] = ACTIONS(599), + [anon_sym_public] = ACTIONS(599), + [anon_sym_private] = ACTIONS(599), + [anon_sym_extern] = ACTIONS(599), + [anon_sym_inline] = ACTIONS(599), + [anon_sym_overload] = ACTIONS(599), + [anon_sym_override] = ACTIONS(599), + [anon_sym_final] = ACTIONS(602), + [anon_sym_class] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_typedef] = ACTIONS(614), + [anon_sym_function] = ACTIONS(617), + [anon_sym_var] = ACTIONS(620), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(157), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [23] = { + [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(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym__closing_brace] = STATE(780), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(13), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(13), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(13), + [sym_conditional_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_while_statement] = STATE(13), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(13), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(13), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(408), - [anon_sym_untyped] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(412), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_untyped] = ACTIONS(327), + [anon_sym_break] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(329), [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(402), - [anon_sym_if] = ACTIONS(404), - [anon_sym_while] = ACTIONS(406), + [anon_sym_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -13768,67 +14824,639 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token1] = ACTIONS(95), [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(341), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [20] = { - [sym_preprocessor_statement] = STATE(771), - [sym_package_statement] = STATE(771), - [sym_import_statement] = STATE(771), - [sym_using_statement] = STATE(771), - [sym_throw_statement] = STATE(771), - [sym__rhs_expression] = STATE(1210), - [sym__unaryExpression] = STATE(3379), - [sym_runtime_type_check_expression] = STATE(3379), - [sym_switch_expression] = STATE(616), - [sym_cast_expression] = STATE(3379), - [sym_type_trace_expression] = STATE(3379), - [sym__parenthesized_expression] = STATE(2983), - [sym_for_statement] = STATE(771), - [sym_subscript_expression] = STATE(3379), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(773), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(771), - [sym_conditional_statement] = STATE(771), - [sym_while_statement] = STATE(771), - [sym_do_while_statement] = STATE(771), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1210), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(771), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [24] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(348), + [anon_sym_package] = ACTIONS(351), + [anon_sym_import] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(360), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(623), + [anon_sym_return] = ACTIONS(384), + [anon_sym_untyped] = ACTIONS(387), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_AT_COLON] = ACTIONS(402), + [anon_sym_try] = ACTIONS(626), + [anon_sym_else] = ACTIONS(113), + [anon_sym_if] = ACTIONS(629), + [anon_sym_while] = ACTIONS(632), + [anon_sym_do] = ACTIONS(414), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(438), + [anon_sym_abstract] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_public] = ACTIONS(438), + [anon_sym_private] = ACTIONS(438), + [anon_sym_extern] = ACTIONS(438), + [anon_sym_inline] = ACTIONS(438), + [anon_sym_overload] = ACTIONS(438), + [anon_sym_override] = ACTIONS(438), + [anon_sym_final] = ACTIONS(441), + [anon_sym_class] = ACTIONS(444), + [anon_sym_interface] = ACTIONS(447), + [anon_sym_enum] = ACTIONS(450), + [anon_sym_typedef] = ACTIONS(453), + [anon_sym_function] = ACTIONS(456), + [anon_sym_var] = ACTIONS(459), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [25] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(157), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(178), + [anon_sym_package] = ACTIONS(181), + [anon_sym_import] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(190), + [anon_sym_throw] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(635), + [anon_sym_return] = ACTIONS(214), + [anon_sym_untyped] = ACTIONS(217), + [anon_sym_break] = ACTIONS(220), + [anon_sym_continue] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(229), + [anon_sym_AT_COLON] = ACTIONS(232), + [anon_sym_try] = ACTIONS(638), + [anon_sym_else] = ACTIONS(149), + [anon_sym_if] = ACTIONS(641), + [anon_sym_while] = ACTIONS(644), + [anon_sym_do] = ACTIONS(244), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(268), + [anon_sym_abstract] = ACTIONS(268), + [anon_sym_static] = ACTIONS(268), + [anon_sym_public] = ACTIONS(268), + [anon_sym_private] = ACTIONS(268), + [anon_sym_extern] = ACTIONS(268), + [anon_sym_inline] = ACTIONS(268), + [anon_sym_overload] = ACTIONS(268), + [anon_sym_override] = ACTIONS(268), + [anon_sym_final] = ACTIONS(271), + [anon_sym_class] = ACTIONS(274), + [anon_sym_interface] = ACTIONS(277), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_typedef] = ACTIONS(283), + [anon_sym_function] = ACTIONS(286), + [anon_sym_var] = ACTIONS(289), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [26] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(157), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(178), + [anon_sym_package] = ACTIONS(181), + [anon_sym_import] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(190), + [anon_sym_throw] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(214), + [anon_sym_untyped] = ACTIONS(217), + [anon_sym_break] = ACTIONS(220), + [anon_sym_continue] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(229), + [anon_sym_AT_COLON] = ACTIONS(232), + [anon_sym_try] = ACTIONS(650), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_if] = ACTIONS(653), + [anon_sym_while] = ACTIONS(656), + [anon_sym_do] = ACTIONS(244), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(268), + [anon_sym_abstract] = ACTIONS(268), + [anon_sym_static] = ACTIONS(268), + [anon_sym_public] = ACTIONS(268), + [anon_sym_private] = ACTIONS(268), + [anon_sym_extern] = ACTIONS(268), + [anon_sym_inline] = ACTIONS(268), + [anon_sym_overload] = ACTIONS(268), + [anon_sym_override] = ACTIONS(268), + [anon_sym_final] = ACTIONS(271), + [anon_sym_class] = ACTIONS(274), + [anon_sym_interface] = ACTIONS(277), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_typedef] = ACTIONS(283), + [anon_sym_function] = ACTIONS(286), + [anon_sym_var] = ACTIONS(289), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [27] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(348), + [anon_sym_package] = ACTIONS(351), + [anon_sym_import] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(360), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(659), + [anon_sym_return] = ACTIONS(384), + [anon_sym_untyped] = ACTIONS(387), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_AT_COLON] = ACTIONS(402), + [anon_sym_try] = ACTIONS(662), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_if] = ACTIONS(665), + [anon_sym_while] = ACTIONS(668), + [anon_sym_do] = ACTIONS(414), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(438), + [anon_sym_abstract] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_public] = ACTIONS(438), + [anon_sym_private] = ACTIONS(438), + [anon_sym_extern] = ACTIONS(438), + [anon_sym_inline] = ACTIONS(438), + [anon_sym_overload] = ACTIONS(438), + [anon_sym_override] = ACTIONS(438), + [anon_sym_final] = ACTIONS(441), + [anon_sym_class] = ACTIONS(444), + [anon_sym_interface] = ACTIONS(447), + [anon_sym_enum] = ACTIONS(450), + [anon_sym_typedef] = ACTIONS(453), + [anon_sym_function] = ACTIONS(456), + [anon_sym_var] = ACTIONS(459), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [28] = { + [sym_preprocessor_statement] = STATE(30), + [sym_package_statement] = STATE(30), + [sym_import_statement] = STATE(30), + [sym_using_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym__rhs_expression] = STATE(1272), + [sym__unaryExpression] = STATE(3586), + [sym_runtime_type_check_expression] = STATE(3586), + [sym_switch_expression] = STATE(836), + [sym_cast_expression] = STATE(3586), + [sym_type_trace_expression] = STATE(3586), + [sym__parenthesized_expression] = STATE(2727), + [sym_for_statement] = STATE(30), + [sym_range_expression] = STATE(3586), + [sym_subscript_expression] = STATE(3586), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(30), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(30), + [sym_conditional_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_while_statement] = STATE(30), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1272), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(30), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(30), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(671), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -13841,18 +15469,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(414), - [anon_sym_return] = ACTIONS(416), - [anon_sym_untyped] = ACTIONS(418), - [anon_sym_break] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(420), + [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(422), - [anon_sym_if] = ACTIONS(424), - [anon_sym_while] = ACTIONS(426), + [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), @@ -13909,67 +15537,778 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [21] = { - [sym_preprocessor_statement] = STATE(2840), - [sym_package_statement] = STATE(2840), - [sym_import_statement] = STATE(2840), - [sym_using_statement] = STATE(2840), - [sym_throw_statement] = STATE(2840), - [sym__rhs_expression] = STATE(1268), - [sym__unaryExpression] = STATE(3493), - [sym_runtime_type_check_expression] = STATE(3493), - [sym_switch_expression] = STATE(2623), - [sym_cast_expression] = STATE(3493), - [sym_type_trace_expression] = STATE(3493), - [sym__parenthesized_expression] = STATE(3126), - [sym_for_statement] = STATE(2840), - [sym_subscript_expression] = STATE(3493), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2840), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2840), - [sym_conditional_statement] = STATE(2840), - [sym_while_statement] = STATE(2840), - [sym_do_while_statement] = STATE(2840), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1268), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2840), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [29] = { + [sym_preprocessor_statement] = STATE(584), + [sym_package_statement] = STATE(584), + [sym_import_statement] = STATE(584), + [sym_using_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3506), + [sym_runtime_type_check_expression] = STATE(3506), + [sym_switch_expression] = STATE(414), + [sym_cast_expression] = STATE(3506), + [sym_type_trace_expression] = STATE(3506), + [sym__parenthesized_expression] = STATE(2707), + [sym_for_statement] = STATE(584), + [sym_range_expression] = STATE(3506), + [sym_subscript_expression] = STATE(3506), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(584), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(584), + [sym_conditional_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_while_statement] = STATE(584), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(584), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_package] = ACTIONS(557), + [anon_sym_import] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(563), + [anon_sym_throw] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(673), + [anon_sym_return] = ACTIONS(578), + [anon_sym_untyped] = ACTIONS(581), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(229), + [anon_sym_AT_COLON] = ACTIONS(232), + [anon_sym_try] = ACTIONS(676), + [anon_sym_else] = ACTIONS(149), + [anon_sym_if] = ACTIONS(679), + [anon_sym_while] = ACTIONS(682), + [anon_sym_do] = ACTIONS(596), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(599), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_static] = ACTIONS(599), + [anon_sym_public] = ACTIONS(599), + [anon_sym_private] = ACTIONS(599), + [anon_sym_extern] = ACTIONS(599), + [anon_sym_inline] = ACTIONS(599), + [anon_sym_overload] = ACTIONS(599), + [anon_sym_override] = ACTIONS(599), + [anon_sym_final] = ACTIONS(602), + [anon_sym_class] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_typedef] = ACTIONS(614), + [anon_sym_function] = ACTIONS(617), + [anon_sym_var] = ACTIONS(620), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(157), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [30] = { + [sym_preprocessor_statement] = STATE(30), + [sym_package_statement] = STATE(30), + [sym_import_statement] = STATE(30), + [sym_using_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym__rhs_expression] = STATE(1272), + [sym__unaryExpression] = STATE(3586), + [sym_runtime_type_check_expression] = STATE(3586), + [sym_switch_expression] = STATE(836), + [sym_cast_expression] = STATE(3586), + [sym_type_trace_expression] = STATE(3586), + [sym__parenthesized_expression] = STATE(2727), + [sym_for_statement] = STATE(30), + [sym_range_expression] = STATE(3586), + [sym_subscript_expression] = STATE(3586), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(30), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(30), + [sym_conditional_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_while_statement] = STATE(30), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1272), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(30), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(30), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(685), + [sym_identifier] = ACTIONS(687), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_package] = ACTIONS(693), + [anon_sym_import] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(699), + [anon_sym_using] = ACTIONS(702), + [anon_sym_throw] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(708), + [anon_sym_switch] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_cast] = ACTIONS(717), + [anon_sym_DOLLARtype] = ACTIONS(720), + [anon_sym_for] = ACTIONS(723), + [anon_sym_return] = ACTIONS(726), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_break] = ACTIONS(732), + [anon_sym_continue] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(735), + [anon_sym_this] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_AT_COLON] = ACTIONS(744), + [anon_sym_try] = ACTIONS(747), + [anon_sym_if] = ACTIONS(750), + [anon_sym_while] = ACTIONS(753), + [anon_sym_do] = ACTIONS(756), + [anon_sym_new] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(699), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(699), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_CARET] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(762), + [anon_sym_BANG_EQ] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(762), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(762), + [anon_sym_EQ_GT] = ACTIONS(762), + [anon_sym_QMARK_QMARK] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(762), + [anon_sym_null] = ACTIONS(777), + [anon_sym_macro] = ACTIONS(780), + [anon_sym_abstract] = ACTIONS(780), + [anon_sym_static] = ACTIONS(780), + [anon_sym_public] = ACTIONS(780), + [anon_sym_private] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(780), + [anon_sym_inline] = ACTIONS(780), + [anon_sym_overload] = ACTIONS(780), + [anon_sym_override] = ACTIONS(780), + [anon_sym_final] = ACTIONS(783), + [anon_sym_class] = ACTIONS(786), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(792), + [anon_sym_typedef] = ACTIONS(795), + [anon_sym_function] = ACTIONS(798), + [anon_sym_var] = ACTIONS(801), + [aux_sym_integer_token1] = ACTIONS(804), + [aux_sym_integer_token2] = ACTIONS(807), + [aux_sym_float_token1] = ACTIONS(810), + [aux_sym_float_token2] = ACTIONS(813), + [anon_sym_true] = ACTIONS(816), + [anon_sym_false] = ACTIONS(816), + [aux_sym_string_token1] = ACTIONS(819), + [aux_sym_string_token3] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [31] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(827), + [anon_sym_return] = ACTIONS(384), + [anon_sym_untyped] = ACTIONS(387), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(829), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), + [anon_sym_if] = ACTIONS(831), + [anon_sym_while] = ACTIONS(833), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [32] = { + [sym_preprocessor_statement] = STATE(584), + [sym_package_statement] = STATE(584), + [sym_import_statement] = STATE(584), + [sym_using_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3506), + [sym_runtime_type_check_expression] = STATE(3506), + [sym_switch_expression] = STATE(414), + [sym_cast_expression] = STATE(3506), + [sym_type_trace_expression] = STATE(3506), + [sym__parenthesized_expression] = STATE(2707), + [sym_for_statement] = STATE(584), + [sym_range_expression] = STATE(3506), + [sym_subscript_expression] = STATE(3506), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(584), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(584), + [sym_conditional_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_while_statement] = STATE(584), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(584), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_package] = ACTIONS(557), + [anon_sym_import] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(563), + [anon_sym_throw] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(835), + [anon_sym_return] = ACTIONS(578), + [anon_sym_untyped] = ACTIONS(581), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(229), + [anon_sym_AT_COLON] = ACTIONS(232), + [anon_sym_try] = ACTIONS(838), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_if] = ACTIONS(841), + [anon_sym_while] = ACTIONS(844), + [anon_sym_do] = ACTIONS(596), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(599), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_static] = ACTIONS(599), + [anon_sym_public] = ACTIONS(599), + [anon_sym_private] = ACTIONS(599), + [anon_sym_extern] = ACTIONS(599), + [anon_sym_inline] = ACTIONS(599), + [anon_sym_overload] = ACTIONS(599), + [anon_sym_override] = ACTIONS(599), + [anon_sym_final] = ACTIONS(602), + [anon_sym_class] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_typedef] = ACTIONS(614), + [anon_sym_function] = ACTIONS(617), + [anon_sym_var] = ACTIONS(620), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(157), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [33] = { + [sym_preprocessor_statement] = STATE(472), + [sym_package_statement] = STATE(472), + [sym_import_statement] = STATE(472), + [sym_using_statement] = STATE(472), + [sym_throw_statement] = STATE(472), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(391), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2529), + [sym_for_statement] = STATE(472), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(472), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(472), + [sym_conditional_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_do_while_statement] = STATE(472), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(472), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(483), + [anon_sym_package] = ACTIONS(486), + [anon_sym_import] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(847), + [anon_sym_return] = ACTIONS(507), + [anon_sym_untyped] = ACTIONS(510), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_AT_COLON] = ACTIONS(402), + [anon_sym_try] = ACTIONS(850), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_if] = ACTIONS(853), + [anon_sym_while] = ACTIONS(856), + [anon_sym_do] = ACTIONS(525), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(528), + [anon_sym_abstract] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_public] = ACTIONS(528), + [anon_sym_private] = ACTIONS(528), + [anon_sym_extern] = ACTIONS(528), + [anon_sym_inline] = ACTIONS(528), + [anon_sym_overload] = ACTIONS(528), + [anon_sym_override] = ACTIONS(528), + [anon_sym_final] = ACTIONS(531), + [anon_sym_class] = ACTIONS(534), + [anon_sym_interface] = ACTIONS(537), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_typedef] = ACTIONS(543), + [anon_sym_function] = ACTIONS(546), + [anon_sym_var] = ACTIONS(549), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [34] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -13980,18 +16319,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(432), - [anon_sym_untyped] = ACTIONS(434), - [anon_sym_break] = ACTIONS(436), - [anon_sym_continue] = ACTIONS(436), + [anon_sym_for] = ACTIONS(861), + [anon_sym_return] = ACTIONS(863), + [anon_sym_untyped] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(869), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), + [anon_sym_if] = ACTIONS(871), + [anon_sym_while] = ACTIONS(873), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -14048,68 +16389,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [22] = { - [sym_preprocessor_statement] = STATE(2679), - [sym_package_statement] = STATE(2679), - [sym_import_statement] = STATE(2679), - [sym_using_statement] = STATE(2679), - [sym_throw_statement] = STATE(2679), - [sym__rhs_expression] = STATE(1225), - [sym__unaryExpression] = STATE(3345), - [sym_runtime_type_check_expression] = STATE(3345), - [sym_switch_expression] = STATE(2525), - [sym_cast_expression] = STATE(3345), - [sym_type_trace_expression] = STATE(3345), - [sym__parenthesized_expression] = STATE(2917), - [sym_for_statement] = STATE(2679), - [sym_subscript_expression] = STATE(3345), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2679), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2679), - [sym_conditional_statement] = STATE(2679), - [sym_while_statement] = STATE(2679), - [sym_do_while_statement] = STATE(2679), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1225), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2679), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_package] = ACTIONS(11), + [35] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), [anon_sym_using] = ACTIONS(17), @@ -14119,18 +16461,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(444), - [anon_sym_untyped] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), + [anon_sym_for] = ACTIONS(861), + [anon_sym_return] = ACTIONS(875), + [anon_sym_untyped] = ACTIONS(877), + [anon_sym_break] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(869), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_else] = ACTIONS(149), + [anon_sym_if] = ACTIONS(871), + [anon_sym_while] = ACTIONS(873), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -14187,90 +16531,941 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [23] = { - [sym_preprocessor_statement] = STATE(650), - [sym_package_statement] = STATE(650), - [sym_import_statement] = STATE(650), - [sym_using_statement] = STATE(650), - [sym_throw_statement] = STATE(650), - [sym__rhs_expression] = STATE(1113), - [sym__unaryExpression] = STATE(3418), - [sym_runtime_type_check_expression] = STATE(3418), - [sym_switch_expression] = STATE(589), - [sym_cast_expression] = STATE(3418), - [sym_type_trace_expression] = STATE(3418), - [sym__parenthesized_expression] = STATE(3084), - [sym_for_statement] = STATE(650), - [sym_subscript_expression] = STATE(3418), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(650), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(650), - [sym_conditional_statement] = STATE(650), - [sym_while_statement] = STATE(650), - [sym_do_while_statement] = STATE(650), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1113), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(650), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [36] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(827), + [anon_sym_return] = ACTIONS(214), + [anon_sym_untyped] = ACTIONS(217), + [anon_sym_break] = ACTIONS(220), + [anon_sym_continue] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(829), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_else] = ACTIONS(149), + [anon_sym_if] = ACTIONS(831), + [anon_sym_while] = ACTIONS(833), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [37] = { + [sym_preprocessor_statement] = STATE(472), + [sym_package_statement] = STATE(472), + [sym_import_statement] = STATE(472), + [sym_using_statement] = STATE(472), + [sym_throw_statement] = STATE(472), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(391), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2529), + [sym_for_statement] = STATE(472), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(472), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(472), + [sym_conditional_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_do_while_statement] = STATE(472), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(472), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(483), + [anon_sym_package] = ACTIONS(486), + [anon_sym_import] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(881), + [anon_sym_return] = ACTIONS(507), + [anon_sym_untyped] = ACTIONS(510), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_AT_COLON] = ACTIONS(402), + [anon_sym_try] = ACTIONS(884), + [anon_sym_else] = ACTIONS(113), + [anon_sym_if] = ACTIONS(887), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(525), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(528), + [anon_sym_abstract] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_public] = ACTIONS(528), + [anon_sym_private] = ACTIONS(528), + [anon_sym_extern] = ACTIONS(528), + [anon_sym_inline] = ACTIONS(528), + [anon_sym_overload] = ACTIONS(528), + [anon_sym_override] = ACTIONS(528), + [anon_sym_final] = ACTIONS(531), + [anon_sym_class] = ACTIONS(534), + [anon_sym_interface] = ACTIONS(537), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_typedef] = ACTIONS(543), + [anon_sym_function] = ACTIONS(546), + [anon_sym_var] = ACTIONS(549), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [38] = { + [sym_preprocessor_statement] = STATE(38), + [sym_package_statement] = STATE(38), + [sym_import_statement] = STATE(38), + [sym_using_statement] = STATE(38), + [sym_throw_statement] = STATE(38), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3541), + [sym_runtime_type_check_expression] = STATE(3541), + [sym_switch_expression] = STATE(835), + [sym_cast_expression] = STATE(3541), + [sym_type_trace_expression] = STATE(3541), + [sym__parenthesized_expression] = STATE(2673), + [sym_for_statement] = STATE(38), + [sym_range_expression] = STATE(3541), + [sym_subscript_expression] = STATE(3541), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(38), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(38), + [sym_conditional_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_while_statement] = STATE(38), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(38), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(687), + [anon_sym_POUND] = ACTIONS(893), + [anon_sym_package] = ACTIONS(896), + [anon_sym_import] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(699), + [anon_sym_using] = ACTIONS(902), + [anon_sym_throw] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(708), + [anon_sym_switch] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_cast] = ACTIONS(717), + [anon_sym_DOLLARtype] = ACTIONS(720), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(917), + [anon_sym_untyped] = ACTIONS(920), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(735), + [anon_sym_this] = ACTIONS(738), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_AT_COLON] = ACTIONS(744), + [anon_sym_try] = ACTIONS(926), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(935), + [anon_sym_new] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(699), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(699), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_GT_GT_GT] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_CARET] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(762), + [anon_sym_BANG_EQ] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(762), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(762), + [anon_sym_EQ_GT] = ACTIONS(762), + [anon_sym_QMARK_QMARK] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(762), + [anon_sym_null] = ACTIONS(777), + [anon_sym_macro] = ACTIONS(938), + [anon_sym_abstract] = ACTIONS(938), + [anon_sym_static] = ACTIONS(938), + [anon_sym_public] = ACTIONS(938), + [anon_sym_private] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_inline] = ACTIONS(938), + [anon_sym_overload] = ACTIONS(938), + [anon_sym_override] = ACTIONS(938), + [anon_sym_final] = ACTIONS(941), + [anon_sym_class] = ACTIONS(944), + [anon_sym_interface] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(953), + [anon_sym_function] = ACTIONS(956), + [anon_sym_var] = ACTIONS(959), + [aux_sym_integer_token1] = ACTIONS(804), + [aux_sym_integer_token2] = ACTIONS(807), + [aux_sym_float_token1] = ACTIONS(810), + [aux_sym_float_token2] = ACTIONS(813), + [anon_sym_true] = ACTIONS(816), + [anon_sym_false] = ACTIONS(816), + [aux_sym_string_token1] = ACTIONS(819), + [aux_sym_string_token3] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(685), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [39] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(962), + [anon_sym_return] = ACTIONS(214), + [anon_sym_untyped] = ACTIONS(217), + [anon_sym_break] = ACTIONS(220), + [anon_sym_continue] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_if] = ACTIONS(966), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [40] = { + [sym_preprocessor_statement] = STATE(584), + [sym_package_statement] = STATE(584), + [sym_import_statement] = STATE(584), + [sym_using_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3506), + [sym_runtime_type_check_expression] = STATE(3506), + [sym_switch_expression] = STATE(414), + [sym_cast_expression] = STATE(3506), + [sym_type_trace_expression] = STATE(3506), + [sym__parenthesized_expression] = STATE(2707), + [sym_for_statement] = STATE(584), + [sym_range_expression] = STATE(3506), + [sym_subscript_expression] = STATE(3506), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(584), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(584), + [sym_conditional_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_while_statement] = STATE(584), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(584), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_package] = ACTIONS(557), + [anon_sym_import] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(563), + [anon_sym_throw] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(970), + [anon_sym_return] = ACTIONS(578), + [anon_sym_untyped] = ACTIONS(581), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(229), + [anon_sym_AT_COLON] = ACTIONS(232), + [anon_sym_try] = ACTIONS(973), + [anon_sym_if] = ACTIONS(976), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(596), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(599), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_static] = ACTIONS(599), + [anon_sym_public] = ACTIONS(599), + [anon_sym_private] = ACTIONS(599), + [anon_sym_extern] = ACTIONS(599), + [anon_sym_inline] = ACTIONS(599), + [anon_sym_overload] = ACTIONS(599), + [anon_sym_override] = ACTIONS(599), + [anon_sym_final] = ACTIONS(602), + [anon_sym_class] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_typedef] = ACTIONS(614), + [anon_sym_function] = ACTIONS(617), + [anon_sym_var] = ACTIONS(620), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(157), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [41] = { + [sym_preprocessor_statement] = STATE(472), + [sym_package_statement] = STATE(472), + [sym_import_statement] = STATE(472), + [sym_using_statement] = STATE(472), + [sym_throw_statement] = STATE(472), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(391), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2529), + [sym_for_statement] = STATE(472), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(472), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(472), + [sym_conditional_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_do_while_statement] = STATE(472), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(472), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(483), + [anon_sym_package] = ACTIONS(486), + [anon_sym_import] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(982), + [anon_sym_return] = ACTIONS(507), + [anon_sym_untyped] = ACTIONS(510), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_AT_COLON] = ACTIONS(402), + [anon_sym_try] = ACTIONS(985), + [anon_sym_if] = ACTIONS(988), + [anon_sym_while] = ACTIONS(991), + [anon_sym_do] = ACTIONS(525), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(528), + [anon_sym_abstract] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_public] = ACTIONS(528), + [anon_sym_private] = ACTIONS(528), + [anon_sym_extern] = ACTIONS(528), + [anon_sym_inline] = ACTIONS(528), + [anon_sym_overload] = ACTIONS(528), + [anon_sym_override] = ACTIONS(528), + [anon_sym_final] = ACTIONS(531), + [anon_sym_class] = ACTIONS(534), + [anon_sym_interface] = ACTIONS(537), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_typedef] = ACTIONS(543), + [anon_sym_function] = ACTIONS(546), + [anon_sym_var] = ACTIONS(549), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(147), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [42] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(450), - [anon_sym_return] = ACTIONS(452), - [anon_sym_untyped] = ACTIONS(454), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(875), + [anon_sym_untyped] = ACTIONS(877), + [anon_sym_break] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), [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(458), - [anon_sym_if] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_catch] = ACTIONS(149), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -14299,22 +17494,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -14326,90 +17521,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [24] = { - [sym_preprocessor_statement] = STATE(454), - [sym_package_statement] = STATE(454), - [sym_import_statement] = STATE(454), - [sym_using_statement] = STATE(454), - [sym_throw_statement] = STATE(454), - [sym__rhs_expression] = STATE(1114), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(364), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(3092), - [sym_for_statement] = STATE(454), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(454), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(454), - [sym_conditional_statement] = STATE(454), - [sym_while_statement] = STATE(454), - [sym_do_while_statement] = STATE(454), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1114), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(454), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [43] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(962), + [anon_sym_return] = ACTIONS(384), + [anon_sym_untyped] = ACTIONS(387), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_if] = ACTIONS(966), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [44] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(464), - [anon_sym_untyped] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(863), + [anon_sym_untyped] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_catch] = ACTIONS(113), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -14438,22 +17776,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -14465,90 +17803,655 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [25] = { - [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(1266), - [sym__unaryExpression] = STATE(3484), - [sym_runtime_type_check_expression] = STATE(3484), - [sym_switch_expression] = STATE(2632), - [sym_cast_expression] = STATE(3484), - [sym_type_trace_expression] = STATE(3484), - [sym__parenthesized_expression] = STATE(3121), - [sym_for_statement] = STATE(2850), - [sym_subscript_expression] = STATE(3484), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2850), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2850), - [sym_conditional_statement] = STATE(2850), - [sym_while_statement] = STATE(2850), - [sym_do_while_statement] = STATE(2850), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1266), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2850), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [45] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(157), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(178), + [anon_sym_package] = ACTIONS(181), + [anon_sym_import] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(190), + [anon_sym_throw] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(214), + [anon_sym_untyped] = ACTIONS(217), + [anon_sym_break] = ACTIONS(220), + [anon_sym_continue] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(229), + [anon_sym_AT_COLON] = ACTIONS(232), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(244), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(268), + [anon_sym_abstract] = ACTIONS(268), + [anon_sym_static] = ACTIONS(268), + [anon_sym_public] = ACTIONS(268), + [anon_sym_private] = ACTIONS(268), + [anon_sym_extern] = ACTIONS(268), + [anon_sym_inline] = ACTIONS(268), + [anon_sym_overload] = ACTIONS(268), + [anon_sym_override] = ACTIONS(268), + [anon_sym_final] = ACTIONS(271), + [anon_sym_class] = ACTIONS(274), + [anon_sym_interface] = ACTIONS(277), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_typedef] = ACTIONS(283), + [anon_sym_function] = ACTIONS(286), + [anon_sym_var] = ACTIONS(289), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [46] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(825), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(214), + [anon_sym_untyped] = ACTIONS(217), + [anon_sym_break] = ACTIONS(220), + [anon_sym_continue] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(149), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [47] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(357), [anon_sym_using] = ACTIONS(17), [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(384), + [anon_sym_untyped] = ACTIONS(387), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(113), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [48] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(348), + [anon_sym_package] = ACTIONS(351), + [anon_sym_import] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(360), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(384), + [anon_sym_untyped] = ACTIONS(387), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_AT_COLON] = ACTIONS(402), + [anon_sym_try] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(414), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(438), + [anon_sym_abstract] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_public] = ACTIONS(438), + [anon_sym_private] = ACTIONS(438), + [anon_sym_extern] = ACTIONS(438), + [anon_sym_inline] = ACTIONS(438), + [anon_sym_overload] = ACTIONS(438), + [anon_sym_override] = ACTIONS(438), + [anon_sym_final] = ACTIONS(441), + [anon_sym_class] = ACTIONS(444), + [anon_sym_interface] = ACTIONS(447), + [anon_sym_enum] = ACTIONS(450), + [anon_sym_typedef] = ACTIONS(453), + [anon_sym_function] = ACTIONS(456), + [anon_sym_var] = ACTIONS(459), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [49] = { + [sym_preprocessor_statement] = STATE(473), + [sym_package_statement] = STATE(473), + [sym_import_statement] = STATE(473), + [sym_using_statement] = STATE(473), + [sym_throw_statement] = STATE(473), + [sym__rhs_expression] = STATE(1171), + [sym__unaryExpression] = STATE(3360), + [sym_runtime_type_check_expression] = STATE(3360), + [sym_switch_expression] = STATE(396), + [sym_cast_expression] = STATE(3360), + [sym_type_trace_expression] = STATE(3360), + [sym__parenthesized_expression] = STATE(2548), + [sym_for_statement] = STATE(473), + [sym_range_expression] = STATE(3360), + [sym_subscript_expression] = STATE(3360), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(474), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(473), + [sym_conditional_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_do_while_statement] = STATE(473), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1171), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(473), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(470), - [anon_sym_untyped] = ACTIONS(472), - [anon_sym_break] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_untyped] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -14577,22 +18480,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -14604,89 +18507,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [26] = { - [sym_preprocessor_statement] = STATE(488), - [sym_package_statement] = STATE(488), - [sym_import_statement] = STATE(488), - [sym_using_statement] = STATE(488), - [sym_throw_statement] = STATE(488), - [sym__rhs_expression] = STATE(1122), - [sym__unaryExpression] = STATE(3321), - [sym_runtime_type_check_expression] = STATE(3321), - [sym_switch_expression] = STATE(371), - [sym_cast_expression] = STATE(3321), - [sym_type_trace_expression] = STATE(3321), - [sym__parenthesized_expression] = STATE(2880), - [sym_for_statement] = STATE(488), - [sym_subscript_expression] = STATE(3321), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(488), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(488), - [sym_conditional_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_do_while_statement] = STATE(488), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1122), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(488), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [50] = { + [sym_preprocessor_statement] = STATE(2463), + [sym_package_statement] = STATE(2463), + [sym_import_statement] = STATE(2463), + [sym_using_statement] = STATE(2463), + [sym_throw_statement] = STATE(2463), + [sym__rhs_expression] = STATE(1280), + [sym__unaryExpression] = STATE(3627), + [sym_runtime_type_check_expression] = STATE(3627), + [sym_switch_expression] = STATE(2420), + [sym_cast_expression] = STATE(3627), + [sym_type_trace_expression] = STATE(3627), + [sym__parenthesized_expression] = STATE(2646), + [sym_for_statement] = STATE(2463), + [sym_range_expression] = STATE(3627), + [sym_subscript_expression] = STATE(3627), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2463), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(2463), + [sym_conditional_statement] = STATE(2463), + [sym_while_statement] = STATE(2463), + [sym_do_while_statement] = STATE(2463), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1280), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2463), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), + [anon_sym_for] = ACTIONS(159), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_untyped] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), + [anon_sym_try] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -14743,90 +18647,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [27] = { - [sym_preprocessor_statement] = STATE(492), - [sym_package_statement] = STATE(492), - [sym_import_statement] = STATE(492), - [sym_using_statement] = STATE(492), - [sym_throw_statement] = STATE(492), - [sym__rhs_expression] = STATE(1123), - [sym__unaryExpression] = STATE(3393), - [sym_runtime_type_check_expression] = STATE(3393), - [sym_switch_expression] = STATE(373), - [sym_cast_expression] = STATE(3393), - [sym_type_trace_expression] = STATE(3393), - [sym__parenthesized_expression] = STATE(2885), - [sym_for_statement] = STATE(492), - [sym_subscript_expression] = STATE(3393), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(492), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(492), - [sym_conditional_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_do_while_statement] = STATE(492), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1123), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(492), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [51] = { + [sym_preprocessor_statement] = STATE(647), + [sym_package_statement] = STATE(647), + [sym_import_statement] = STATE(647), + [sym_using_statement] = STATE(647), + [sym_throw_statement] = STATE(647), + [sym__rhs_expression] = STATE(1230), + [sym__unaryExpression] = STATE(3679), + [sym_runtime_type_check_expression] = STATE(3679), + [sym_switch_expression] = STATE(568), + [sym_cast_expression] = STATE(3679), + [sym_type_trace_expression] = STATE(3679), + [sym__parenthesized_expression] = STATE(2618), + [sym_for_statement] = STATE(647), + [sym_range_expression] = STATE(3679), + [sym_subscript_expression] = STATE(3679), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(647), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(647), + [sym_conditional_statement] = STATE(647), + [sym_while_statement] = STATE(647), + [sym_do_while_statement] = STATE(647), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1230), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(647), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(482), - [anon_sym_untyped] = ACTIONS(484), - [anon_sym_break] = ACTIONS(486), - [anon_sym_continue] = ACTIONS(486), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -14855,22 +18760,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -14882,89 +18787,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [28] = { - [sym_preprocessor_statement] = STATE(552), - [sym_package_statement] = STATE(552), - [sym_import_statement] = STATE(552), - [sym_using_statement] = STATE(552), - [sym_throw_statement] = STATE(552), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3180), - [sym_runtime_type_check_expression] = STATE(3180), - [sym_switch_expression] = STATE(380), - [sym_cast_expression] = STATE(3180), - [sym_type_trace_expression] = STATE(3180), - [sym__parenthesized_expression] = STATE(2876), - [sym_for_statement] = STATE(552), - [sym_subscript_expression] = STATE(3180), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(554), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(552), - [sym_conditional_statement] = STATE(552), - [sym_while_statement] = STATE(552), - [sym_do_while_statement] = STATE(552), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(552), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [52] = { + [sym_preprocessor_statement] = STATE(400), + [sym_package_statement] = STATE(400), + [sym_import_statement] = STATE(400), + [sym_using_statement] = STATE(400), + [sym_throw_statement] = STATE(400), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3494), + [sym_runtime_type_check_expression] = STATE(3494), + [sym_switch_expression] = STATE(390), + [sym_cast_expression] = STATE(3494), + [sym_type_trace_expression] = STATE(3494), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(400), + [sym_range_expression] = STATE(3494), + [sym_subscript_expression] = STATE(3494), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(400), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(400), + [sym_conditional_statement] = STATE(400), + [sym_while_statement] = STATE(400), + [sym_do_while_statement] = STATE(400), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(400), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(488), - [anon_sym_return] = ACTIONS(490), - [anon_sym_untyped] = ACTIONS(492), - [anon_sym_break] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), + [anon_sym_for] = ACTIONS(159), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_untyped] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), [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(496), - [anon_sym_if] = ACTIONS(498), - [anon_sym_while] = ACTIONS(500), + [anon_sym_try] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -15021,67 +18927,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [29] = { - [sym_preprocessor_statement] = STATE(648), - [sym_package_statement] = STATE(648), - [sym_import_statement] = STATE(648), - [sym_using_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym__rhs_expression] = STATE(1068), - [sym__unaryExpression] = STATE(3428), - [sym_runtime_type_check_expression] = STATE(3428), - [sym_switch_expression] = STATE(593), - [sym_cast_expression] = STATE(3428), - [sym_type_trace_expression] = STATE(3428), - [sym__parenthesized_expression] = STATE(3020), - [sym_for_statement] = STATE(648), - [sym_subscript_expression] = STATE(3428), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(648), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(648), - [sym_conditional_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_while_statement] = STATE(648), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1068), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(648), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [53] = { + [sym_preprocessor_statement] = STATE(2846), + [sym_package_statement] = STATE(2846), + [sym_import_statement] = STATE(2846), + [sym_using_statement] = STATE(2846), + [sym_throw_statement] = STATE(2846), + [sym__rhs_expression] = STATE(1265), + [sym__unaryExpression] = STATE(3615), + [sym_runtime_type_check_expression] = STATE(3615), + [sym_switch_expression] = STATE(2690), + [sym_cast_expression] = STATE(3615), + [sym_type_trace_expression] = STATE(3615), + [sym__parenthesized_expression] = STATE(2589), + [sym_for_statement] = STATE(2846), + [sym_range_expression] = STATE(3615), + [sym_subscript_expression] = STATE(3615), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2846), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(2846), + [sym_conditional_statement] = STATE(2846), + [sym_while_statement] = STATE(2846), + [sym_do_while_statement] = STATE(2846), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1265), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2846), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -15092,18 +18999,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_return] = ACTIONS(502), - [anon_sym_untyped] = ACTIONS(504), - [anon_sym_break] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_untyped] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), [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_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -15160,65 +19067,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [30] = { - [sym_preprocessor_statement] = STATE(595), - [sym_package_statement] = STATE(595), - [sym_import_statement] = STATE(595), - [sym_using_statement] = STATE(595), - [sym_throw_statement] = STATE(595), - [sym__rhs_expression] = STATE(1185), - [sym__unaryExpression] = STATE(3276), - [sym_runtime_type_check_expression] = STATE(3276), - [sym_switch_expression] = STATE(446), - [sym_cast_expression] = STATE(3276), - [sym_type_trace_expression] = STATE(3276), - [sym__parenthesized_expression] = STATE(3003), - [sym_for_statement] = STATE(595), - [sym_subscript_expression] = STATE(3276), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(595), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(595), - [sym_conditional_statement] = STATE(595), - [sym_while_statement] = STATE(595), - [sym_do_while_statement] = STATE(595), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1185), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(595), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [54] = { + [sym_preprocessor_statement] = STATE(634), + [sym_package_statement] = STATE(634), + [sym_import_statement] = STATE(634), + [sym_using_statement] = STATE(634), + [sym_throw_statement] = STATE(634), + [sym__rhs_expression] = STATE(1301), + [sym__unaryExpression] = STATE(3415), + [sym_runtime_type_check_expression] = STATE(3415), + [sym_switch_expression] = STATE(583), + [sym_cast_expression] = STATE(3415), + [sym_type_trace_expression] = STATE(3415), + [sym__parenthesized_expression] = STATE(2734), + [sym_for_statement] = STATE(634), + [sym_range_expression] = STATE(3415), + [sym_subscript_expression] = STATE(3415), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(634), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(634), + [sym_conditional_statement] = STATE(634), + [sym_while_statement] = STATE(634), + [sym_do_while_statement] = STATE(634), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1301), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(634), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -15231,18 +19139,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(510), - [anon_sym_break] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_untyped] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), [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(374), - [anon_sym_if] = ACTIONS(376), - [anon_sym_while] = ACTIONS(378), + [anon_sym_try] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1084), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -15299,206 +19207,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [31] = { - [sym_preprocessor_statement] = STATE(365), - [sym_package_statement] = STATE(365), - [sym_import_statement] = STATE(365), - [sym_using_statement] = STATE(365), - [sym_throw_statement] = STATE(365), - [sym__rhs_expression] = STATE(1193), - [sym__unaryExpression] = STATE(3179), - [sym_runtime_type_check_expression] = STATE(3179), - [sym_switch_expression] = STATE(361), - [sym_cast_expression] = STATE(3179), - [sym_type_trace_expression] = STATE(3179), - [sym__parenthesized_expression] = STATE(3102), - [sym_for_statement] = STATE(365), - [sym_subscript_expression] = STATE(3179), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(365), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(365), - [sym_conditional_statement] = STATE(365), - [sym_while_statement] = STATE(365), - [sym_do_while_statement] = STATE(365), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1193), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(365), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [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(450), - [anon_sym_return] = ACTIONS(514), - [anon_sym_untyped] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), + [55] = { + [sym_preprocessor_statement] = STATE(681), + [sym_package_statement] = STATE(681), + [sym_import_statement] = STATE(681), + [sym_using_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym__rhs_expression] = STATE(1138), + [sym__unaryExpression] = STATE(3461), + [sym_runtime_type_check_expression] = STATE(3461), + [sym_switch_expression] = STATE(628), + [sym_cast_expression] = STATE(3461), + [sym_type_trace_expression] = STATE(3461), + [sym__parenthesized_expression] = STATE(2651), + [sym_for_statement] = STATE(681), + [sym_range_expression] = STATE(3461), + [sym_subscript_expression] = STATE(3461), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(681), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(681), + [sym_conditional_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_while_statement] = STATE(681), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1138), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(681), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(175), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(187), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_switch] = ACTIONS(199), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_cast] = ACTIONS(205), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(214), + [anon_sym_untyped] = ACTIONS(217), + [anon_sym_break] = ACTIONS(220), + [anon_sym_continue] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_this] = ACTIONS(226), [anon_sym_AT] = ACTIONS(43), [anon_sym_AT_COLON] = ACTIONS(45), - [anon_sym_try] = ACTIONS(458), - [anon_sym_if] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(129), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_try] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(247), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(256), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(187), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_GT_GT_GT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK_QMARK] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(250), + [anon_sym_null] = ACTIONS(265), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(292), + [aux_sym_integer_token2] = ACTIONS(295), + [aux_sym_float_token1] = ACTIONS(298), + [aux_sym_float_token2] = ACTIONS(301), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(307), + [aux_sym_string_token3] = ACTIONS(310), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [32] = { - [sym_preprocessor_statement] = STATE(2764), - [sym_package_statement] = STATE(2764), - [sym_import_statement] = STATE(2764), - [sym_using_statement] = STATE(2764), - [sym_throw_statement] = STATE(2764), - [sym__rhs_expression] = STATE(1202), - [sym__unaryExpression] = STATE(3207), - [sym_runtime_type_check_expression] = STATE(3207), - [sym_switch_expression] = STATE(2455), - [sym_cast_expression] = STATE(3207), - [sym_type_trace_expression] = STATE(3207), - [sym__parenthesized_expression] = STATE(3079), - [sym_for_statement] = STATE(2764), - [sym_subscript_expression] = STATE(3207), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2764), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2764), - [sym_conditional_statement] = STATE(2764), - [sym_while_statement] = STATE(2764), - [sym_do_while_statement] = STATE(2764), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1202), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2764), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [56] = { + [sym_preprocessor_statement] = STATE(651), + [sym_package_statement] = STATE(651), + [sym_import_statement] = STATE(651), + [sym_using_statement] = STATE(651), + [sym_throw_statement] = STATE(651), + [sym__rhs_expression] = STATE(1279), + [sym__unaryExpression] = STATE(3364), + [sym_runtime_type_check_expression] = STATE(3364), + [sym_switch_expression] = STATE(621), + [sym_cast_expression] = STATE(3364), + [sym_type_trace_expression] = STATE(3364), + [sym__parenthesized_expression] = STATE(2736), + [sym_for_statement] = STATE(651), + [sym_range_expression] = STATE(3364), + [sym_subscript_expression] = STATE(3364), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(651), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(651), + [sym_conditional_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_do_while_statement] = STATE(651), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1279), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(651), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(345), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_cast] = ACTIONS(375), + [anon_sym_DOLLARtype] = ACTIONS(378), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(384), + [anon_sym_untyped] = ACTIONS(387), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_this] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(429), + [anon_sym_DASH_DASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_GT_GT_GT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_EQ_GT] = ACTIONS(420), + [anon_sym_QMARK_QMARK] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_null] = ACTIONS(435), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), + [aux_sym_integer_token1] = ACTIONS(462), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(471), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [aux_sym_string_token1] = ACTIONS(477), + [aux_sym_string_token3] = ACTIONS(480), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [57] = { + [sym_preprocessor_statement] = STATE(653), + [sym_package_statement] = STATE(653), + [sym_import_statement] = STATE(653), + [sym_using_statement] = STATE(653), + [sym_throw_statement] = STATE(653), + [sym__rhs_expression] = STATE(1285), + [sym__unaryExpression] = STATE(3441), + [sym_runtime_type_check_expression] = STATE(3441), + [sym_switch_expression] = STATE(622), + [sym_cast_expression] = STATE(3441), + [sym_type_trace_expression] = STATE(3441), + [sym__parenthesized_expression] = STATE(2756), + [sym_for_statement] = STATE(653), + [sym_range_expression] = STATE(3441), + [sym_subscript_expression] = STATE(3441), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(655), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(653), + [sym_conditional_statement] = STATE(653), + [sym_while_statement] = STATE(653), + [sym_do_while_statement] = STATE(653), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1285), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(653), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -15509,18 +19559,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(520), - [anon_sym_untyped] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_untyped] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1084), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -15577,67 +19627,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [33] = { - [sym_preprocessor_statement] = STATE(2763), - [sym_package_statement] = STATE(2763), - [sym_import_statement] = STATE(2763), - [sym_using_statement] = STATE(2763), - [sym_throw_statement] = STATE(2763), - [sym__rhs_expression] = STATE(1241), - [sym__unaryExpression] = STATE(3290), - [sym_runtime_type_check_expression] = STATE(3290), - [sym_switch_expression] = STATE(2569), - [sym_cast_expression] = STATE(3290), - [sym_type_trace_expression] = STATE(3290), - [sym__parenthesized_expression] = STATE(3011), - [sym_for_statement] = STATE(2763), - [sym_subscript_expression] = STATE(3290), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2763), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2763), - [sym_conditional_statement] = STATE(2763), - [sym_while_statement] = STATE(2763), - [sym_do_while_statement] = STATE(2763), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1241), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2763), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [58] = { + [sym_preprocessor_statement] = STATE(647), + [sym_package_statement] = STATE(647), + [sym_import_statement] = STATE(647), + [sym_using_statement] = STATE(647), + [sym_throw_statement] = STATE(647), + [sym__rhs_expression] = STATE(1230), + [sym__unaryExpression] = STATE(3679), + [sym_runtime_type_check_expression] = STATE(3679), + [sym_switch_expression] = STATE(568), + [sym_cast_expression] = STATE(3679), + [sym_type_trace_expression] = STATE(3679), + [sym__parenthesized_expression] = STATE(2618), + [sym_for_statement] = STATE(647), + [sym_range_expression] = STATE(3679), + [sym_subscript_expression] = STATE(3679), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(647), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(647), + [sym_conditional_statement] = STATE(647), + [sym_while_statement] = STATE(647), + [sym_do_while_statement] = STATE(647), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1230), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(647), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -15648,18 +19699,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(526), - [anon_sym_return] = ACTIONS(528), - [anon_sym_untyped] = ACTIONS(530), - [anon_sym_break] = ACTIONS(532), - [anon_sym_continue] = ACTIONS(532), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), [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(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_while] = ACTIONS(538), + [anon_sym_try] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1106), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -15716,67 +19767,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [34] = { - [sym_preprocessor_statement] = STATE(648), - [sym_package_statement] = STATE(648), - [sym_import_statement] = STATE(648), - [sym_using_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym__rhs_expression] = STATE(1068), - [sym__unaryExpression] = STATE(3428), - [sym_runtime_type_check_expression] = STATE(3428), - [sym_switch_expression] = STATE(593), - [sym_cast_expression] = STATE(3428), - [sym_type_trace_expression] = STATE(3428), - [sym__parenthesized_expression] = STATE(3020), - [sym_for_statement] = STATE(648), - [sym_subscript_expression] = STATE(3428), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(648), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(648), - [sym_conditional_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_while_statement] = STATE(648), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1068), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(648), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [59] = { + [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(1137), + [sym__unaryExpression] = STATE(3359), + [sym_runtime_type_check_expression] = STATE(3359), + [sym_switch_expression] = STATE(618), + [sym_cast_expression] = STATE(3359), + [sym_type_trace_expression] = STATE(3359), + [sym__parenthesized_expression] = STATE(2656), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3359), + [sym_subscript_expression] = STATE(3359), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1137), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(825), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -15787,18 +19839,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(502), - [anon_sym_untyped] = ACTIONS(504), - [anon_sym_break] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_untyped] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1092), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -15855,67 +19907,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [35] = { - [sym_preprocessor_statement] = STATE(667), - [sym_package_statement] = STATE(667), - [sym_import_statement] = STATE(667), - [sym_using_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym__rhs_expression] = STATE(1103), - [sym__unaryExpression] = STATE(3202), - [sym_runtime_type_check_expression] = STATE(3202), - [sym_switch_expression] = STATE(605), - [sym_cast_expression] = STATE(3202), - [sym_type_trace_expression] = STATE(3202), - [sym__parenthesized_expression] = STATE(2897), - [sym_for_statement] = STATE(667), - [sym_subscript_expression] = STATE(3202), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(667), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(667), - [sym_conditional_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_while_statement] = STATE(667), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1103), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(667), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [60] = { + [sym_preprocessor_statement] = STATE(647), + [sym_package_statement] = STATE(647), + [sym_import_statement] = STATE(647), + [sym_using_statement] = STATE(647), + [sym_throw_statement] = STATE(647), + [sym__rhs_expression] = STATE(1230), + [sym__unaryExpression] = STATE(3679), + [sym_runtime_type_check_expression] = STATE(3679), + [sym_switch_expression] = STATE(568), + [sym_cast_expression] = STATE(3679), + [sym_type_trace_expression] = STATE(3679), + [sym__parenthesized_expression] = STATE(2618), + [sym_for_statement] = STATE(647), + [sym_range_expression] = STATE(3679), + [sym_subscript_expression] = STATE(3679), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(647), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(647), + [sym_conditional_statement] = STATE(647), + [sym_while_statement] = STATE(647), + [sym_do_while_statement] = STATE(647), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1230), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(647), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -15926,18 +19979,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(380), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(384), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1084), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -15994,67 +20047,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [36] = { - [sym_preprocessor_statement] = STATE(671), - [sym_package_statement] = STATE(671), - [sym_import_statement] = STATE(671), - [sym_using_statement] = STATE(671), - [sym_throw_statement] = STATE(671), - [sym__rhs_expression] = STATE(1105), - [sym__unaryExpression] = STATE(3473), - [sym_runtime_type_check_expression] = STATE(3473), - [sym_switch_expression] = STATE(611), - [sym_cast_expression] = STATE(3473), - [sym_type_trace_expression] = STATE(3473), - [sym__parenthesized_expression] = STATE(3019), - [sym_for_statement] = STATE(671), - [sym_subscript_expression] = STATE(3473), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(671), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(671), - [sym_conditional_statement] = STATE(671), - [sym_while_statement] = STATE(671), - [sym_do_while_statement] = STATE(671), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1105), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(671), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [61] = { + [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(1137), + [sym__unaryExpression] = STATE(3359), + [sym_runtime_type_check_expression] = STATE(3359), + [sym_switch_expression] = STATE(618), + [sym_cast_expression] = STATE(3359), + [sym_type_trace_expression] = STATE(3359), + [sym__parenthesized_expression] = STATE(2656), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3359), + [sym_subscript_expression] = STATE(3359), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1137), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(825), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -16065,18 +20119,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(386), - [anon_sym_untyped] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), + [anon_sym_for] = ACTIONS(962), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_untyped] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(964), + [anon_sym_if] = ACTIONS(966), + [anon_sym_while] = ACTIONS(968), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -16133,67 +20187,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [37] = { - [sym_preprocessor_statement] = STATE(771), - [sym_package_statement] = STATE(771), - [sym_import_statement] = STATE(771), - [sym_using_statement] = STATE(771), - [sym_throw_statement] = STATE(771), - [sym__rhs_expression] = STATE(1210), - [sym__unaryExpression] = STATE(3379), - [sym_runtime_type_check_expression] = STATE(3379), - [sym_switch_expression] = STATE(616), - [sym_cast_expression] = STATE(3379), - [sym_type_trace_expression] = STATE(3379), - [sym__parenthesized_expression] = STATE(2983), - [sym_for_statement] = STATE(771), - [sym_subscript_expression] = STATE(3379), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(773), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(771), - [sym_conditional_statement] = STATE(771), - [sym_while_statement] = STATE(771), - [sym_do_while_statement] = STATE(771), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1210), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(771), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [62] = { + [sym_preprocessor_statement] = STATE(963), + [sym_package_statement] = STATE(963), + [sym_import_statement] = STATE(963), + [sym_using_statement] = STATE(963), + [sym_throw_statement] = STATE(963), + [sym__rhs_expression] = STATE(1299), + [sym__unaryExpression] = STATE(3357), + [sym_runtime_type_check_expression] = STATE(3357), + [sym_switch_expression] = STATE(951), + [sym_cast_expression] = STATE(3357), + [sym_type_trace_expression] = STATE(3357), + [sym__parenthesized_expression] = STATE(2728), + [sym_for_statement] = STATE(963), + [sym_range_expression] = STATE(3357), + [sym_subscript_expression] = STATE(3357), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(963), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(963), + [sym_conditional_statement] = STATE(963), + [sym_while_statement] = STATE(963), + [sym_do_while_statement] = STATE(963), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1299), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(963), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(825), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -16204,18 +20259,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(416), - [anon_sym_untyped] = ACTIONS(418), - [anon_sym_break] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(420), + [anon_sym_for] = ACTIONS(827), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_untyped] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(829), + [anon_sym_if] = ACTIONS(831), + [anon_sym_while] = ACTIONS(833), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -16272,90 +20327,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [38] = { - [sym_preprocessor_statement] = STATE(2376), - [sym_package_statement] = STATE(2376), - [sym_import_statement] = STATE(2376), - [sym_using_statement] = STATE(2376), - [sym_throw_statement] = STATE(2376), - [sym__rhs_expression] = STATE(1235), - [sym__unaryExpression] = STATE(3194), - [sym_runtime_type_check_expression] = STATE(3194), - [sym_switch_expression] = STATE(2305), - [sym_cast_expression] = STATE(3194), - [sym_type_trace_expression] = STATE(3194), - [sym__parenthesized_expression] = STATE(2959), - [sym_for_statement] = STATE(2376), - [sym_subscript_expression] = STATE(3194), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2376), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(2376), - [sym_conditional_statement] = STATE(2376), - [sym_while_statement] = STATE(2376), - [sym_do_while_statement] = STATE(2376), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1235), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2376), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [63] = { + [sym_preprocessor_statement] = STATE(647), + [sym_package_statement] = STATE(647), + [sym_import_statement] = STATE(647), + [sym_using_statement] = STATE(647), + [sym_throw_statement] = STATE(647), + [sym__rhs_expression] = STATE(1230), + [sym__unaryExpression] = STATE(3679), + [sym_runtime_type_check_expression] = STATE(3679), + [sym_switch_expression] = STATE(568), + [sym_cast_expression] = STATE(3679), + [sym_type_trace_expression] = STATE(3679), + [sym__parenthesized_expression] = STATE(2618), + [sym_for_statement] = STATE(647), + [sym_range_expression] = STATE(3679), + [sym_subscript_expression] = STATE(3679), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(647), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(647), + [sym_conditional_statement] = STATE(647), + [sym_while_statement] = STATE(647), + [sym_do_while_statement] = STATE(647), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1230), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(647), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(540), - [anon_sym_return] = ACTIONS(542), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), + [anon_sym_for] = ACTIONS(827), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), [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(548), - [anon_sym_if] = ACTIONS(550), - [anon_sym_while] = ACTIONS(552), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(829), + [anon_sym_if] = ACTIONS(831), + [anon_sym_while] = ACTIONS(833), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -16384,22 +20440,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -16411,90 +20467,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [39] = { - [sym_preprocessor_statement] = STATE(454), - [sym_package_statement] = STATE(454), - [sym_import_statement] = STATE(454), - [sym_using_statement] = STATE(454), - [sym_throw_statement] = STATE(454), - [sym__rhs_expression] = STATE(1114), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(364), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(3092), - [sym_for_statement] = STATE(454), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(454), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(454), - [sym_conditional_statement] = STATE(454), - [sym_while_statement] = STATE(454), - [sym_do_while_statement] = STATE(454), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1114), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(454), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [64] = { + [sym_preprocessor_statement] = STATE(2913), + [sym_package_statement] = STATE(2913), + [sym_import_statement] = STATE(2913), + [sym_using_statement] = STATE(2913), + [sym_throw_statement] = STATE(2913), + [sym__rhs_expression] = STATE(1283), + [sym__unaryExpression] = STATE(3401), + [sym_runtime_type_check_expression] = STATE(3401), + [sym_switch_expression] = STATE(2599), + [sym_cast_expression] = STATE(3401), + [sym_type_trace_expression] = STATE(3401), + [sym__parenthesized_expression] = STATE(2653), + [sym_for_statement] = STATE(2913), + [sym_range_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3401), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2913), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(2913), + [sym_conditional_statement] = STATE(2913), + [sym_while_statement] = STATE(2913), + [sym_do_while_statement] = STATE(2913), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1283), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2913), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(464), - [anon_sym_untyped] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_untyped] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), [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(402), - [anon_sym_if] = ACTIONS(404), - [anon_sym_while] = ACTIONS(406), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -16523,22 +20580,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -16550,90 +20607,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [40] = { - [sym_preprocessor_statement] = STATE(488), - [sym_package_statement] = STATE(488), - [sym_import_statement] = STATE(488), - [sym_using_statement] = STATE(488), - [sym_throw_statement] = STATE(488), - [sym__rhs_expression] = STATE(1122), - [sym__unaryExpression] = STATE(3321), - [sym_runtime_type_check_expression] = STATE(3321), - [sym_switch_expression] = STATE(371), - [sym_cast_expression] = STATE(3321), - [sym_type_trace_expression] = STATE(3321), - [sym__parenthesized_expression] = STATE(2880), - [sym_for_statement] = STATE(488), - [sym_subscript_expression] = STATE(3321), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(488), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(488), - [sym_conditional_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_do_while_statement] = STATE(488), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1122), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(488), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [65] = { + [sym_preprocessor_statement] = STATE(653), + [sym_package_statement] = STATE(653), + [sym_import_statement] = STATE(653), + [sym_using_statement] = STATE(653), + [sym_throw_statement] = STATE(653), + [sym__rhs_expression] = STATE(1285), + [sym__unaryExpression] = STATE(3441), + [sym_runtime_type_check_expression] = STATE(3441), + [sym_switch_expression] = STATE(622), + [sym_cast_expression] = STATE(3441), + [sym_type_trace_expression] = STATE(3441), + [sym__parenthesized_expression] = STATE(2756), + [sym_for_statement] = STATE(653), + [sym_range_expression] = STATE(3441), + [sym_subscript_expression] = STATE(3441), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(655), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(653), + [sym_conditional_statement] = STATE(653), + [sym_while_statement] = STATE(653), + [sym_do_while_statement] = STATE(653), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1285), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(653), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), + [anon_sym_for] = ACTIONS(962), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_untyped] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), [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(402), - [anon_sym_if] = ACTIONS(404), - [anon_sym_while] = ACTIONS(406), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(964), + [anon_sym_if] = ACTIONS(966), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -16662,22 +20720,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -16689,368 +20747,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [41] = { - [sym_preprocessor_statement] = STATE(492), - [sym_package_statement] = STATE(492), - [sym_import_statement] = STATE(492), - [sym_using_statement] = STATE(492), - [sym_throw_statement] = STATE(492), - [sym__rhs_expression] = STATE(1123), - [sym__unaryExpression] = STATE(3393), - [sym_runtime_type_check_expression] = STATE(3393), - [sym_switch_expression] = STATE(373), - [sym_cast_expression] = STATE(3393), - [sym_type_trace_expression] = STATE(3393), - [sym__parenthesized_expression] = STATE(2885), - [sym_for_statement] = STATE(492), - [sym_subscript_expression] = STATE(3393), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(492), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(492), - [sym_conditional_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_do_while_statement] = STATE(492), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1123), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(492), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [66] = { + [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(1137), + [sym__unaryExpression] = STATE(3359), + [sym_runtime_type_check_expression] = STATE(3359), + [sym_switch_expression] = STATE(618), + [sym_cast_expression] = STATE(3359), + [sym_type_trace_expression] = STATE(3359), + [sym__parenthesized_expression] = STATE(2656), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3359), + [sym_subscript_expression] = STATE(3359), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1137), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(394), - [anon_sym_return] = ACTIONS(482), - [anon_sym_untyped] = ACTIONS(484), - [anon_sym_break] = ACTIONS(486), - [anon_sym_continue] = ACTIONS(486), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_untyped] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), [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(402), - [anon_sym_if] = ACTIONS(404), - [anon_sym_while] = ACTIONS(406), - [anon_sym_do] = ACTIONS(129), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [42] = { - [sym_preprocessor_statement] = STATE(552), - [sym_package_statement] = STATE(552), - [sym_import_statement] = STATE(552), - [sym_using_statement] = STATE(552), - [sym_throw_statement] = STATE(552), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3180), - [sym_runtime_type_check_expression] = STATE(3180), - [sym_switch_expression] = STATE(380), - [sym_cast_expression] = STATE(3180), - [sym_type_trace_expression] = STATE(3180), - [sym__parenthesized_expression] = STATE(2876), - [sym_for_statement] = STATE(552), - [sym_subscript_expression] = STATE(3180), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(554), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(552), - [sym_conditional_statement] = STATE(552), - [sym_while_statement] = STATE(552), - [sym_do_while_statement] = STATE(552), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(552), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [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(554), - [anon_sym_return] = ACTIONS(490), - [anon_sym_untyped] = ACTIONS(492), - [anon_sym_break] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), - [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(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_while] = ACTIONS(560), - [anon_sym_do] = ACTIONS(129), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [43] = { - [sym_preprocessor_statement] = STATE(595), - [sym_package_statement] = STATE(595), - [sym_import_statement] = STATE(595), - [sym_using_statement] = STATE(595), - [sym_throw_statement] = STATE(595), - [sym__rhs_expression] = STATE(1185), - [sym__unaryExpression] = STATE(3276), - [sym_runtime_type_check_expression] = STATE(3276), - [sym_switch_expression] = STATE(446), - [sym_cast_expression] = STATE(3276), - [sym_type_trace_expression] = STATE(3276), - [sym__parenthesized_expression] = STATE(3003), - [sym_for_statement] = STATE(595), - [sym_subscript_expression] = STATE(3276), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(595), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(595), - [sym_conditional_statement] = STATE(595), - [sym_while_statement] = STATE(595), - [sym_do_while_statement] = STATE(595), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1185), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(595), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), - [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(526), - [anon_sym_return] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(510), - [anon_sym_break] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [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(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -17106,89 +20887,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [44] = { - [sym_preprocessor_statement] = STATE(365), - [sym_package_statement] = STATE(365), - [sym_import_statement] = STATE(365), - [sym_using_statement] = STATE(365), - [sym_throw_statement] = STATE(365), - [sym__rhs_expression] = STATE(1193), - [sym__unaryExpression] = STATE(3179), - [sym_runtime_type_check_expression] = STATE(3179), - [sym_switch_expression] = STATE(361), - [sym_cast_expression] = STATE(3179), - [sym_type_trace_expression] = STATE(3179), - [sym__parenthesized_expression] = STATE(3102), - [sym_for_statement] = STATE(365), - [sym_subscript_expression] = STATE(3179), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(365), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(365), - [sym_conditional_statement] = STATE(365), - [sym_while_statement] = STATE(365), - [sym_do_while_statement] = STATE(365), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1193), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(365), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [67] = { + [sym_preprocessor_statement] = STATE(400), + [sym_package_statement] = STATE(400), + [sym_import_statement] = STATE(400), + [sym_using_statement] = STATE(400), + [sym_throw_statement] = STATE(400), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3494), + [sym_runtime_type_check_expression] = STATE(3494), + [sym_switch_expression] = STATE(390), + [sym_cast_expression] = STATE(3494), + [sym_type_trace_expression] = STATE(3494), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(400), + [sym_range_expression] = STATE(3494), + [sym_subscript_expression] = STATE(3494), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(400), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(400), + [sym_conditional_statement] = STATE(400), + [sym_while_statement] = STATE(400), + [sym_do_while_statement] = STATE(400), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(400), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(540), - [anon_sym_return] = ACTIONS(514), - [anon_sym_untyped] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_untyped] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), [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(548), - [anon_sym_if] = ACTIONS(550), - [anon_sym_while] = ACTIONS(552), + [anon_sym_try] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -17245,67 +21027,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [45] = { - [sym_preprocessor_statement] = STATE(2783), - [sym_package_statement] = STATE(2783), - [sym_import_statement] = STATE(2783), - [sym_using_statement] = STATE(2783), - [sym_throw_statement] = STATE(2783), - [sym__rhs_expression] = STATE(1216), - [sym__unaryExpression] = STATE(3441), - [sym_runtime_type_check_expression] = STATE(3441), - [sym_switch_expression] = STATE(2580), - [sym_cast_expression] = STATE(3441), - [sym_type_trace_expression] = STATE(3441), - [sym__parenthesized_expression] = STATE(3008), - [sym_for_statement] = STATE(2783), - [sym_subscript_expression] = STATE(3441), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2783), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2783), - [sym_conditional_statement] = STATE(2783), - [sym_while_statement] = STATE(2783), - [sym_do_while_statement] = STATE(2783), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1216), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2783), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [68] = { + [sym_preprocessor_statement] = STATE(3081), + [sym_package_statement] = STATE(3081), + [sym_import_statement] = STATE(3081), + [sym_using_statement] = STATE(3081), + [sym_throw_statement] = STATE(3081), + [sym__rhs_expression] = STATE(1287), + [sym__unaryExpression] = STATE(3510), + [sym_runtime_type_check_expression] = STATE(3510), + [sym_switch_expression] = STATE(2680), + [sym_cast_expression] = STATE(3510), + [sym_type_trace_expression] = STATE(3510), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(3081), + [sym_range_expression] = STATE(3510), + [sym_subscript_expression] = STATE(3510), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3081), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3081), + [sym_conditional_statement] = STATE(3081), + [sym_while_statement] = STATE(3081), + [sym_do_while_statement] = STATE(3081), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1287), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3081), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -17316,18 +21099,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(562), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(566), - [anon_sym_continue] = ACTIONS(566), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_untyped] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -17384,65 +21167,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [46] = { - [sym_preprocessor_statement] = STATE(592), - [sym_package_statement] = STATE(592), - [sym_import_statement] = STATE(592), - [sym_using_statement] = STATE(592), - [sym_throw_statement] = STATE(592), - [sym__rhs_expression] = STATE(1246), - [sym__unaryExpression] = STATE(3316), - [sym_runtime_type_check_expression] = STATE(3316), - [sym_switch_expression] = STATE(570), - [sym_cast_expression] = STATE(3316), - [sym_type_trace_expression] = STATE(3316), - [sym__parenthesized_expression] = STATE(3026), - [sym_for_statement] = STATE(592), - [sym_subscript_expression] = STATE(3316), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(592), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(592), - [sym_conditional_statement] = STATE(592), - [sym_while_statement] = STATE(592), - [sym_do_while_statement] = STATE(592), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1246), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(592), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [69] = { + [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(1137), + [sym__unaryExpression] = STATE(3359), + [sym_runtime_type_check_expression] = STATE(3359), + [sym_switch_expression] = STATE(618), + [sym_cast_expression] = STATE(3359), + [sym_type_trace_expression] = STATE(3359), + [sym__parenthesized_expression] = STATE(2656), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3359), + [sym_subscript_expression] = STATE(3359), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1137), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -17455,18 +21239,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(568), - [anon_sym_return] = ACTIONS(570), - [anon_sym_untyped] = ACTIONS(572), - [anon_sym_break] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), + [anon_sym_for] = ACTIONS(31), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_untyped] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), [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(576), - [anon_sym_if] = ACTIONS(578), - [anon_sym_while] = ACTIONS(580), + [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), @@ -17523,90 +21307,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [47] = { - [sym_preprocessor_statement] = STATE(648), - [sym_package_statement] = STATE(648), - [sym_import_statement] = STATE(648), - [sym_using_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym__rhs_expression] = STATE(1068), - [sym__unaryExpression] = STATE(3428), - [sym_runtime_type_check_expression] = STATE(3428), - [sym_switch_expression] = STATE(593), - [sym_cast_expression] = STATE(3428), - [sym_type_trace_expression] = STATE(3428), - [sym__parenthesized_expression] = STATE(3020), - [sym_for_statement] = STATE(648), - [sym_subscript_expression] = STATE(3428), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(648), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(648), - [sym_conditional_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_while_statement] = STATE(648), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1068), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(648), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [70] = { + [sym_preprocessor_statement] = STATE(3086), + [sym_package_statement] = STATE(3086), + [sym_import_statement] = STATE(3086), + [sym_using_statement] = STATE(3086), + [sym_throw_statement] = STATE(3086), + [sym__rhs_expression] = STATE(1243), + [sym__unaryExpression] = STATE(3439), + [sym_runtime_type_check_expression] = STATE(3439), + [sym_switch_expression] = STATE(2619), + [sym_cast_expression] = STATE(3439), + [sym_type_trace_expression] = STATE(3439), + [sym__parenthesized_expression] = STATE(2622), + [sym_for_statement] = STATE(3086), + [sym_range_expression] = STATE(3439), + [sym_subscript_expression] = STATE(3439), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3086), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(3086), + [sym_conditional_statement] = STATE(3086), + [sym_while_statement] = STATE(3086), + [sym_do_while_statement] = STATE(3086), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1243), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3086), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(502), - [anon_sym_untyped] = ACTIONS(504), - [anon_sym_break] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_untyped] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), [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(374), - [anon_sym_if] = ACTIONS(376), - [anon_sym_while] = ACTIONS(378), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(315), + [anon_sym_if] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -17635,22 +21420,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -17662,90 +21447,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [48] = { - [sym_preprocessor_statement] = STATE(667), - [sym_package_statement] = STATE(667), - [sym_import_statement] = STATE(667), - [sym_using_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym__rhs_expression] = STATE(1103), - [sym__unaryExpression] = STATE(3202), - [sym_runtime_type_check_expression] = STATE(3202), - [sym_switch_expression] = STATE(605), - [sym_cast_expression] = STATE(3202), - [sym_type_trace_expression] = STATE(3202), - [sym__parenthesized_expression] = STATE(2897), - [sym_for_statement] = STATE(667), - [sym_subscript_expression] = STATE(3202), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(667), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(667), - [sym_conditional_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_while_statement] = STATE(667), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1103), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(667), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [71] = { + [sym_preprocessor_statement] = STATE(423), + [sym_package_statement] = STATE(423), + [sym_import_statement] = STATE(423), + [sym_using_statement] = STATE(423), + [sym_throw_statement] = STATE(423), + [sym__rhs_expression] = STATE(1156), + [sym__unaryExpression] = STATE(3491), + [sym_runtime_type_check_expression] = STATE(3491), + [sym_switch_expression] = STATE(411), + [sym_cast_expression] = STATE(3491), + [sym_type_trace_expression] = STATE(3491), + [sym__parenthesized_expression] = STATE(2754), + [sym_for_statement] = STATE(423), + [sym_range_expression] = STATE(3491), + [sym_subscript_expression] = STATE(3491), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(423), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(423), + [sym_conditional_statement] = STATE(423), + [sym_while_statement] = STATE(423), + [sym_do_while_statement] = STATE(423), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1156), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(423), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(366), - [anon_sym_return] = ACTIONS(380), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(384), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_untyped] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), [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(374), - [anon_sym_if] = ACTIONS(376), - [anon_sym_while] = ACTIONS(378), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(315), + [anon_sym_if] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -17774,22 +21560,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -17801,90 +21587,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [49] = { - [sym_preprocessor_statement] = STATE(771), - [sym_package_statement] = STATE(771), - [sym_import_statement] = STATE(771), - [sym_using_statement] = STATE(771), - [sym_throw_statement] = STATE(771), - [sym__rhs_expression] = STATE(1210), - [sym__unaryExpression] = STATE(3379), - [sym_runtime_type_check_expression] = STATE(3379), - [sym_switch_expression] = STATE(616), - [sym_cast_expression] = STATE(3379), - [sym_type_trace_expression] = STATE(3379), - [sym__parenthesized_expression] = STATE(2983), - [sym_for_statement] = STATE(771), - [sym_subscript_expression] = STATE(3379), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(773), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(771), - [sym_conditional_statement] = STATE(771), - [sym_while_statement] = STATE(771), - [sym_do_while_statement] = STATE(771), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1210), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(771), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [72] = { + [sym_preprocessor_statement] = STATE(473), + [sym_package_statement] = STATE(473), + [sym_import_statement] = STATE(473), + [sym_using_statement] = STATE(473), + [sym_throw_statement] = STATE(473), + [sym__rhs_expression] = STATE(1171), + [sym__unaryExpression] = STATE(3360), + [sym_runtime_type_check_expression] = STATE(3360), + [sym_switch_expression] = STATE(396), + [sym_cast_expression] = STATE(3360), + [sym_type_trace_expression] = STATE(3360), + [sym__parenthesized_expression] = STATE(2548), + [sym_for_statement] = STATE(473), + [sym_range_expression] = STATE(3360), + [sym_subscript_expression] = STATE(3360), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(474), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(473), + [sym_conditional_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_do_while_statement] = STATE(473), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1171), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(473), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(568), - [anon_sym_return] = ACTIONS(416), - [anon_sym_untyped] = ACTIONS(418), - [anon_sym_break] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(420), + [anon_sym_for] = ACTIONS(167), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_untyped] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), [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(576), - [anon_sym_if] = ACTIONS(578), - [anon_sym_while] = ACTIONS(580), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(173), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -17913,22 +21700,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -17940,89 +21727,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [50] = { - [sym_preprocessor_statement] = STATE(2292), - [sym_package_statement] = STATE(2292), - [sym_import_statement] = STATE(2292), - [sym_using_statement] = STATE(2292), - [sym_throw_statement] = STATE(2292), - [sym__rhs_expression] = STATE(1239), - [sym__unaryExpression] = STATE(3249), - [sym_runtime_type_check_expression] = STATE(3249), - [sym_switch_expression] = STATE(2270), - [sym_cast_expression] = STATE(3249), - [sym_type_trace_expression] = STATE(3249), - [sym__parenthesized_expression] = STATE(2991), - [sym_for_statement] = STATE(2292), - [sym_subscript_expression] = STATE(3249), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2292), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(2292), - [sym_conditional_statement] = STATE(2292), - [sym_while_statement] = STATE(2292), - [sym_do_while_statement] = STATE(2292), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1239), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2292), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [73] = { + [sym_preprocessor_statement] = STATE(792), + [sym_package_statement] = STATE(792), + [sym_import_statement] = STATE(792), + [sym_using_statement] = STATE(792), + [sym_throw_statement] = STATE(792), + [sym__rhs_expression] = STATE(1142), + [sym__unaryExpression] = STATE(3499), + [sym_runtime_type_check_expression] = STATE(3499), + [sym_switch_expression] = STATE(636), + [sym_cast_expression] = STATE(3499), + [sym_type_trace_expression] = STATE(3499), + [sym__parenthesized_expression] = STATE(2705), + [sym_for_statement] = STATE(792), + [sym_range_expression] = STATE(3499), + [sym_subscript_expression] = STATE(3499), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(792), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(792), + [sym_conditional_statement] = STATE(792), + [sym_while_statement] = STATE(792), + [sym_do_while_statement] = STATE(792), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1142), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(792), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(582), - [anon_sym_return] = ACTIONS(584), - [anon_sym_untyped] = ACTIONS(586), - [anon_sym_break] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_untyped] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), [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(590), - [anon_sym_if] = ACTIONS(592), - [anon_sym_while] = ACTIONS(594), + [anon_sym_try] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1140), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -18079,89 +21867,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [51] = { - [sym_preprocessor_statement] = STATE(454), - [sym_package_statement] = STATE(454), - [sym_import_statement] = STATE(454), - [sym_using_statement] = STATE(454), - [sym_throw_statement] = STATE(454), - [sym__rhs_expression] = STATE(1114), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(364), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(3092), - [sym_for_statement] = STATE(454), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(454), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(454), - [sym_conditional_statement] = STATE(454), - [sym_while_statement] = STATE(454), - [sym_do_while_statement] = STATE(454), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1114), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(454), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [74] = { + [sym_preprocessor_statement] = STATE(2911), + [sym_package_statement] = STATE(2911), + [sym_import_statement] = STATE(2911), + [sym_using_statement] = STATE(2911), + [sym_throw_statement] = STATE(2911), + [sym__rhs_expression] = STATE(1276), + [sym__unaryExpression] = STATE(3618), + [sym_runtime_type_check_expression] = STATE(3618), + [sym_switch_expression] = STATE(2724), + [sym_cast_expression] = STATE(3618), + [sym_type_trace_expression] = STATE(3618), + [sym__parenthesized_expression] = STATE(2725), + [sym_for_statement] = STATE(2911), + [sym_range_expression] = STATE(3618), + [sym_subscript_expression] = STATE(3618), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2911), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(2911), + [sym_conditional_statement] = STATE(2911), + [sym_while_statement] = STATE(2911), + [sym_do_while_statement] = STATE(2911), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1276), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2911), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(464), - [anon_sym_untyped] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), + [anon_sym_for] = ACTIONS(313), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_untyped] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), [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(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_while] = ACTIONS(560), + [anon_sym_try] = ACTIONS(315), + [anon_sym_if] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -18218,89 +22007,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [52] = { - [sym_preprocessor_statement] = STATE(488), - [sym_package_statement] = STATE(488), - [sym_import_statement] = STATE(488), - [sym_using_statement] = STATE(488), - [sym_throw_statement] = STATE(488), - [sym__rhs_expression] = STATE(1122), - [sym__unaryExpression] = STATE(3321), - [sym_runtime_type_check_expression] = STATE(3321), - [sym_switch_expression] = STATE(371), - [sym_cast_expression] = STATE(3321), - [sym_type_trace_expression] = STATE(3321), - [sym__parenthesized_expression] = STATE(2880), - [sym_for_statement] = STATE(488), - [sym_subscript_expression] = STATE(3321), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(488), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(488), - [sym_conditional_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_do_while_statement] = STATE(488), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1122), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(488), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [75] = { + [sym_preprocessor_statement] = STATE(423), + [sym_package_statement] = STATE(423), + [sym_import_statement] = STATE(423), + [sym_using_statement] = STATE(423), + [sym_throw_statement] = STATE(423), + [sym__rhs_expression] = STATE(1156), + [sym__unaryExpression] = STATE(3491), + [sym_runtime_type_check_expression] = STATE(3491), + [sym_switch_expression] = STATE(411), + [sym_cast_expression] = STATE(3491), + [sym_type_trace_expression] = STATE(3491), + [sym__parenthesized_expression] = STATE(2754), + [sym_for_statement] = STATE(423), + [sym_range_expression] = STATE(3491), + [sym_subscript_expression] = STATE(3491), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(423), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(423), + [sym_conditional_statement] = STATE(423), + [sym_while_statement] = STATE(423), + [sym_do_while_statement] = STATE(423), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1156), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(423), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_untyped] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), [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(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_while] = ACTIONS(560), + [anon_sym_try] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -18357,89 +22147,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [53] = { - [sym_preprocessor_statement] = STATE(492), - [sym_package_statement] = STATE(492), - [sym_import_statement] = STATE(492), - [sym_using_statement] = STATE(492), - [sym_throw_statement] = STATE(492), - [sym__rhs_expression] = STATE(1123), - [sym__unaryExpression] = STATE(3393), - [sym_runtime_type_check_expression] = STATE(3393), - [sym_switch_expression] = STATE(373), - [sym_cast_expression] = STATE(3393), - [sym_type_trace_expression] = STATE(3393), - [sym__parenthesized_expression] = STATE(2885), - [sym_for_statement] = STATE(492), - [sym_subscript_expression] = STATE(3393), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(492), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(492), - [sym_conditional_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_do_while_statement] = STATE(492), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1123), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(492), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [76] = { + [sym_preprocessor_statement] = STATE(473), + [sym_package_statement] = STATE(473), + [sym_import_statement] = STATE(473), + [sym_using_statement] = STATE(473), + [sym_throw_statement] = STATE(473), + [sym__rhs_expression] = STATE(1171), + [sym__unaryExpression] = STATE(3360), + [sym_runtime_type_check_expression] = STATE(3360), + [sym_switch_expression] = STATE(396), + [sym_cast_expression] = STATE(3360), + [sym_type_trace_expression] = STATE(3360), + [sym__parenthesized_expression] = STATE(2548), + [sym_for_statement] = STATE(473), + [sym_range_expression] = STATE(3360), + [sym_subscript_expression] = STATE(3360), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(474), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(473), + [sym_conditional_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_do_while_statement] = STATE(473), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1171), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(473), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(482), - [anon_sym_untyped] = ACTIONS(484), - [anon_sym_break] = ACTIONS(486), - [anon_sym_continue] = ACTIONS(486), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_untyped] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), [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(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_while] = ACTIONS(560), + [anon_sym_try] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1178), [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -18496,90 +22287,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [54] = { - [sym_preprocessor_statement] = STATE(595), - [sym_package_statement] = STATE(595), - [sym_import_statement] = STATE(595), - [sym_using_statement] = STATE(595), - [sym_throw_statement] = STATE(595), - [sym__rhs_expression] = STATE(1185), - [sym__unaryExpression] = STATE(3276), - [sym_runtime_type_check_expression] = STATE(3276), - [sym_switch_expression] = STATE(446), - [sym_cast_expression] = STATE(3276), - [sym_type_trace_expression] = STATE(3276), - [sym__parenthesized_expression] = STATE(3003), - [sym_for_statement] = STATE(595), - [sym_subscript_expression] = STATE(3276), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(595), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(595), - [sym_conditional_statement] = STATE(595), - [sym_while_statement] = STATE(595), - [sym_do_while_statement] = STATE(595), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1185), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(595), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [77] = { + [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(1303), + [sym__unaryExpression] = STATE(3437), + [sym_runtime_type_check_expression] = STATE(3437), + [sym_switch_expression] = STATE(594), + [sym_cast_expression] = STATE(3437), + [sym_type_trace_expression] = STATE(3437), + [sym__parenthesized_expression] = STATE(2742), + [sym_for_statement] = STATE(639), + [sym_range_expression] = STATE(3437), + [sym_subscript_expression] = STATE(3437), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(639), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(639), + [sym_conditional_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_do_while_statement] = STATE(639), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1303), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(639), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(568), - [anon_sym_return] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(510), - [anon_sym_break] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_untyped] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1184), [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(576), - [anon_sym_if] = ACTIONS(578), - [anon_sym_while] = ACTIONS(580), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -18608,22 +22400,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -18635,67 +22427,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [55] = { - [sym_preprocessor_statement] = STATE(2844), - [sym_package_statement] = STATE(2844), - [sym_import_statement] = STATE(2844), - [sym_using_statement] = STATE(2844), - [sym_throw_statement] = STATE(2844), - [sym__rhs_expression] = STATE(1263), - [sym__unaryExpression] = STATE(3469), - [sym_runtime_type_check_expression] = STATE(3469), + [78] = { + [sym_preprocessor_statement] = STATE(2885), + [sym_package_statement] = STATE(2885), + [sym_import_statement] = STATE(2885), + [sym_using_statement] = STATE(2885), + [sym_throw_statement] = STATE(2885), + [sym__rhs_expression] = STATE(1131), + [sym__unaryExpression] = STATE(3458), + [sym_runtime_type_check_expression] = STATE(3458), [sym_switch_expression] = STATE(2628), - [sym_cast_expression] = STATE(3469), - [sym_type_trace_expression] = STATE(3469), - [sym__parenthesized_expression] = STATE(3112), - [sym_for_statement] = STATE(2844), - [sym_subscript_expression] = STATE(3469), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2844), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2844), - [sym_conditional_statement] = STATE(2844), - [sym_while_statement] = STATE(2844), - [sym_do_while_statement] = STATE(2844), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1263), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2844), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [sym_cast_expression] = STATE(3458), + [sym_type_trace_expression] = STATE(3458), + [sym__parenthesized_expression] = STATE(2634), + [sym_for_statement] = STATE(2885), + [sym_range_expression] = STATE(3458), + [sym_subscript_expression] = STATE(3458), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2885), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(2885), + [sym_conditional_statement] = STATE(2885), + [sym_while_statement] = STATE(2885), + [sym_do_while_statement] = STATE(2885), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1131), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2885), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -18706,18 +22499,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(596), - [anon_sym_untyped] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(600), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_untyped] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -18774,67 +22567,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [56] = { - [sym_preprocessor_statement] = STATE(2839), - [sym_package_statement] = STATE(2839), - [sym_import_statement] = STATE(2839), - [sym_using_statement] = STATE(2839), - [sym_throw_statement] = STATE(2839), - [sym__rhs_expression] = STATE(1222), - [sym__unaryExpression] = STATE(3205), - [sym_runtime_type_check_expression] = STATE(3205), - [sym_switch_expression] = STATE(2622), - [sym_cast_expression] = STATE(3205), - [sym_type_trace_expression] = STATE(3205), - [sym__parenthesized_expression] = STATE(3069), - [sym_for_statement] = STATE(2839), - [sym_subscript_expression] = STATE(3205), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2839), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2839), - [sym_conditional_statement] = STATE(2839), - [sym_while_statement] = STATE(2839), - [sym_do_while_statement] = STATE(2839), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1222), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2839), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [79] = { + [sym_preprocessor_statement] = STATE(653), + [sym_package_statement] = STATE(653), + [sym_import_statement] = STATE(653), + [sym_using_statement] = STATE(653), + [sym_throw_statement] = STATE(653), + [sym__rhs_expression] = STATE(1285), + [sym__unaryExpression] = STATE(3441), + [sym_runtime_type_check_expression] = STATE(3441), + [sym_switch_expression] = STATE(622), + [sym_cast_expression] = STATE(3441), + [sym_type_trace_expression] = STATE(3441), + [sym__parenthesized_expression] = STATE(2756), + [sym_for_statement] = STATE(653), + [sym_range_expression] = STATE(3441), + [sym_subscript_expression] = STATE(3441), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(655), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(653), + [sym_conditional_statement] = STATE(653), + [sym_while_statement] = STATE(653), + [sym_do_while_statement] = STATE(653), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1285), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(653), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -18845,18 +22639,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(602), - [anon_sym_untyped] = ACTIONS(604), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), + [anon_sym_for] = ACTIONS(861), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_untyped] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(869), + [anon_sym_if] = ACTIONS(871), + [anon_sym_while] = ACTIONS(873), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -18913,67 +22707,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [57] = { - [sym_preprocessor_statement] = STATE(648), - [sym_package_statement] = STATE(648), - [sym_import_statement] = STATE(648), - [sym_using_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym__rhs_expression] = STATE(1068), - [sym__unaryExpression] = STATE(3428), - [sym_runtime_type_check_expression] = STATE(3428), - [sym_switch_expression] = STATE(593), - [sym_cast_expression] = STATE(3428), - [sym_type_trace_expression] = STATE(3428), - [sym__parenthesized_expression] = STATE(3020), - [sym_for_statement] = STATE(648), - [sym_subscript_expression] = STATE(3428), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(648), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(648), - [sym_conditional_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_while_statement] = STATE(648), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1068), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(648), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [80] = { + [sym_preprocessor_statement] = STATE(653), + [sym_package_statement] = STATE(653), + [sym_import_statement] = STATE(653), + [sym_using_statement] = STATE(653), + [sym_throw_statement] = STATE(653), + [sym__rhs_expression] = STATE(1285), + [sym__unaryExpression] = STATE(3441), + [sym_runtime_type_check_expression] = STATE(3441), + [sym_switch_expression] = STATE(622), + [sym_cast_expression] = STATE(3441), + [sym_type_trace_expression] = STATE(3441), + [sym__parenthesized_expression] = STATE(2756), + [sym_for_statement] = STATE(653), + [sym_range_expression] = STATE(3441), + [sym_subscript_expression] = STATE(3441), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(655), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(653), + [sym_conditional_statement] = STATE(653), + [sym_while_statement] = STATE(653), + [sym_do_while_statement] = STATE(653), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1285), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(653), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(825), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -18984,18 +22779,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(526), - [anon_sym_return] = ACTIONS(502), - [anon_sym_untyped] = ACTIONS(504), - [anon_sym_break] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), + [anon_sym_for] = ACTIONS(827), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_untyped] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), [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(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_while] = ACTIONS(538), + [anon_sym_try] = ACTIONS(829), + [anon_sym_if] = ACTIONS(831), + [anon_sym_while] = ACTIONS(833), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -19052,67 +22847,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [58] = { - [sym_preprocessor_statement] = STATE(667), - [sym_package_statement] = STATE(667), - [sym_import_statement] = STATE(667), - [sym_using_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym__rhs_expression] = STATE(1103), - [sym__unaryExpression] = STATE(3202), - [sym_runtime_type_check_expression] = STATE(3202), - [sym_switch_expression] = STATE(605), - [sym_cast_expression] = STATE(3202), - [sym_type_trace_expression] = STATE(3202), - [sym__parenthesized_expression] = STATE(2897), - [sym_for_statement] = STATE(667), - [sym_subscript_expression] = STATE(3202), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(667), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(667), - [sym_conditional_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_while_statement] = STATE(667), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1103), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(667), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [81] = { + [sym_preprocessor_statement] = STATE(653), + [sym_package_statement] = STATE(653), + [sym_import_statement] = STATE(653), + [sym_using_statement] = STATE(653), + [sym_throw_statement] = STATE(653), + [sym__rhs_expression] = STATE(1285), + [sym__unaryExpression] = STATE(3441), + [sym_runtime_type_check_expression] = STATE(3441), + [sym_switch_expression] = STATE(622), + [sym_cast_expression] = STATE(3441), + [sym_type_trace_expression] = STATE(3441), + [sym__parenthesized_expression] = STATE(2756), + [sym_for_statement] = STATE(653), + [sym_range_expression] = STATE(3441), + [sym_subscript_expression] = STATE(3441), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(655), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(653), + [sym_conditional_statement] = STATE(653), + [sym_while_statement] = STATE(653), + [sym_do_while_statement] = STATE(653), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1285), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(653), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -19123,18 +22919,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(526), - [anon_sym_return] = ACTIONS(380), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(384), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_untyped] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), [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(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_while] = ACTIONS(538), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -19191,90 +22987,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [59] = { - [sym_preprocessor_statement] = STATE(771), - [sym_package_statement] = STATE(771), - [sym_import_statement] = STATE(771), - [sym_using_statement] = STATE(771), - [sym_throw_statement] = STATE(771), - [sym__rhs_expression] = STATE(1210), - [sym__unaryExpression] = STATE(3379), - [sym_runtime_type_check_expression] = STATE(3379), - [sym_switch_expression] = STATE(616), - [sym_cast_expression] = STATE(3379), - [sym_type_trace_expression] = STATE(3379), - [sym__parenthesized_expression] = STATE(2983), - [sym_for_statement] = STATE(771), - [sym_subscript_expression] = STATE(3379), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(773), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(771), - [sym_conditional_statement] = STATE(771), - [sym_while_statement] = STATE(771), - [sym_do_while_statement] = STATE(771), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1210), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(771), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [82] = { + [sym_preprocessor_statement] = STATE(473), + [sym_package_statement] = STATE(473), + [sym_import_statement] = STATE(473), + [sym_using_statement] = STATE(473), + [sym_throw_statement] = STATE(473), + [sym__rhs_expression] = STATE(1171), + [sym__unaryExpression] = STATE(3360), + [sym_runtime_type_check_expression] = STATE(3360), + [sym_switch_expression] = STATE(396), + [sym_cast_expression] = STATE(3360), + [sym_type_trace_expression] = STATE(3360), + [sym__parenthesized_expression] = STATE(2548), + [sym_for_statement] = STATE(473), + [sym_range_expression] = STATE(3360), + [sym_subscript_expression] = STATE(3360), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(474), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(473), + [sym_conditional_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_do_while_statement] = STATE(473), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1171), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(473), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(526), - [anon_sym_return] = ACTIONS(416), - [anon_sym_untyped] = ACTIONS(418), - [anon_sym_break] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(420), + [anon_sym_for] = ACTIONS(115), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_untyped] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), [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(534), - [anon_sym_if] = ACTIONS(536), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -19303,22 +23100,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -19330,90 +23127,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [60] = { - [sym_preprocessor_statement] = STATE(648), - [sym_package_statement] = STATE(648), - [sym_import_statement] = STATE(648), - [sym_using_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym__rhs_expression] = STATE(1068), - [sym__unaryExpression] = STATE(3428), - [sym_runtime_type_check_expression] = STATE(3428), - [sym_switch_expression] = STATE(593), - [sym_cast_expression] = STATE(3428), - [sym_type_trace_expression] = STATE(3428), - [sym__parenthesized_expression] = STATE(3020), - [sym_for_statement] = STATE(648), - [sym_subscript_expression] = STATE(3428), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(648), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(648), - [sym_conditional_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_while_statement] = STATE(648), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1068), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(648), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [83] = { + [sym_preprocessor_statement] = STATE(2411), + [sym_package_statement] = STATE(2411), + [sym_import_statement] = STATE(2411), + [sym_using_statement] = STATE(2411), + [sym_throw_statement] = STATE(2411), + [sym__rhs_expression] = STATE(1296), + [sym__unaryExpression] = STATE(3623), + [sym_runtime_type_check_expression] = STATE(3623), + [sym_switch_expression] = STATE(2350), + [sym_cast_expression] = STATE(3623), + [sym_type_trace_expression] = STATE(3623), + [sym__parenthesized_expression] = STATE(2716), + [sym_for_statement] = STATE(2411), + [sym_range_expression] = STATE(3623), + [sym_subscript_expression] = STATE(3623), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2411), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(2411), + [sym_conditional_statement] = STATE(2411), + [sym_while_statement] = STATE(2411), + [sym_do_while_statement] = STATE(2411), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1296), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2411), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(414), - [anon_sym_return] = ACTIONS(502), - [anon_sym_untyped] = ACTIONS(504), - [anon_sym_break] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), + [anon_sym_for] = ACTIONS(115), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_untyped] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), [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(422), - [anon_sym_if] = ACTIONS(424), - [anon_sym_while] = ACTIONS(426), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -19442,22 +23240,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -19469,67 +23267,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [61] = { - [sym_preprocessor_statement] = STATE(667), - [sym_package_statement] = STATE(667), - [sym_import_statement] = STATE(667), - [sym_using_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym__rhs_expression] = STATE(1103), - [sym__unaryExpression] = STATE(3202), - [sym_runtime_type_check_expression] = STATE(3202), - [sym_switch_expression] = STATE(605), - [sym_cast_expression] = STATE(3202), - [sym_type_trace_expression] = STATE(3202), - [sym__parenthesized_expression] = STATE(2897), - [sym_for_statement] = STATE(667), - [sym_subscript_expression] = STATE(3202), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(667), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(667), - [sym_conditional_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_while_statement] = STATE(667), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1103), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(667), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [84] = { + [sym_preprocessor_statement] = STATE(400), + [sym_package_statement] = STATE(400), + [sym_import_statement] = STATE(400), + [sym_using_statement] = STATE(400), + [sym_throw_statement] = STATE(400), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3494), + [sym_runtime_type_check_expression] = STATE(3494), + [sym_switch_expression] = STATE(390), + [sym_cast_expression] = STATE(3494), + [sym_type_trace_expression] = STATE(3494), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(400), + [sym_range_expression] = STATE(3494), + [sym_subscript_expression] = STATE(3494), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(400), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(400), + [sym_conditional_statement] = STATE(400), + [sym_while_statement] = STATE(400), + [sym_do_while_statement] = STATE(400), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(400), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(115), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_untyped] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [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(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [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(57), + [anon_sym_null] = ACTIONS(67), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [85] = { + [sym_preprocessor_statement] = STATE(971), + [sym_package_statement] = STATE(971), + [sym_import_statement] = STATE(971), + [sym_using_statement] = STATE(971), + [sym_throw_statement] = STATE(971), + [sym__rhs_expression] = STATE(1298), + [sym__unaryExpression] = STATE(3322), + [sym_runtime_type_check_expression] = STATE(3322), + [sym_switch_expression] = STATE(958), + [sym_cast_expression] = STATE(3322), + [sym_type_trace_expression] = STATE(3322), + [sym__parenthesized_expression] = STATE(2722), + [sym_for_statement] = STATE(971), + [sym_range_expression] = STATE(3322), + [sym_subscript_expression] = STATE(3322), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(971), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(971), + [sym_conditional_statement] = STATE(971), + [sym_while_statement] = STATE(971), + [sym_do_while_statement] = STATE(971), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1298), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(971), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(825), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -19540,18 +23479,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(414), - [anon_sym_return] = ACTIONS(380), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(384), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_untyped] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), [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(422), - [anon_sym_if] = ACTIONS(424), - [anon_sym_while] = ACTIONS(426), + [anon_sym_try] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1020), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -19608,90 +23547,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [62] = { - [sym_preprocessor_statement] = STATE(671), - [sym_package_statement] = STATE(671), - [sym_import_statement] = STATE(671), - [sym_using_statement] = STATE(671), - [sym_throw_statement] = STATE(671), - [sym__rhs_expression] = STATE(1105), - [sym__unaryExpression] = STATE(3473), - [sym_runtime_type_check_expression] = STATE(3473), - [sym_switch_expression] = STATE(611), - [sym_cast_expression] = STATE(3473), - [sym_type_trace_expression] = STATE(3473), - [sym__parenthesized_expression] = STATE(3019), - [sym_for_statement] = STATE(671), - [sym_subscript_expression] = STATE(3473), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(671), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(671), - [sym_conditional_statement] = STATE(671), - [sym_while_statement] = STATE(671), - [sym_do_while_statement] = STATE(671), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1105), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(671), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [86] = { + [sym_preprocessor_statement] = STATE(423), + [sym_package_statement] = STATE(423), + [sym_import_statement] = STATE(423), + [sym_using_statement] = STATE(423), + [sym_throw_statement] = STATE(423), + [sym__rhs_expression] = STATE(1156), + [sym__unaryExpression] = STATE(3491), + [sym_runtime_type_check_expression] = STATE(3491), + [sym_switch_expression] = STATE(411), + [sym_cast_expression] = STATE(3491), + [sym_type_trace_expression] = STATE(3491), + [sym__parenthesized_expression] = STATE(2754), + [sym_for_statement] = STATE(423), + [sym_range_expression] = STATE(3491), + [sym_subscript_expression] = STATE(3491), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(423), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(423), + [sym_conditional_statement] = STATE(423), + [sym_while_statement] = STATE(423), + [sym_do_while_statement] = STATE(423), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1156), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(423), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(414), - [anon_sym_return] = ACTIONS(386), - [anon_sym_untyped] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_untyped] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), [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(422), - [anon_sym_if] = ACTIONS(424), - [anon_sym_while] = ACTIONS(426), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -19720,22 +23660,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -19747,90 +23687,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [63] = { - [sym_preprocessor_statement] = STATE(648), - [sym_package_statement] = STATE(648), - [sym_import_statement] = STATE(648), - [sym_using_statement] = STATE(648), - [sym_throw_statement] = STATE(648), - [sym__rhs_expression] = STATE(1068), - [sym__unaryExpression] = STATE(3428), - [sym_runtime_type_check_expression] = STATE(3428), - [sym_switch_expression] = STATE(593), - [sym_cast_expression] = STATE(3428), - [sym_type_trace_expression] = STATE(3428), - [sym__parenthesized_expression] = STATE(3020), - [sym_for_statement] = STATE(648), - [sym_subscript_expression] = STATE(3428), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(648), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(648), - [sym_conditional_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_do_while_statement] = STATE(648), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1068), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(648), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [87] = { + [sym_preprocessor_statement] = STATE(423), + [sym_package_statement] = STATE(423), + [sym_import_statement] = STATE(423), + [sym_using_statement] = STATE(423), + [sym_throw_statement] = STATE(423), + [sym__rhs_expression] = STATE(1156), + [sym__unaryExpression] = STATE(3491), + [sym_runtime_type_check_expression] = STATE(3491), + [sym_switch_expression] = STATE(411), + [sym_cast_expression] = STATE(3491), + [sym_type_trace_expression] = STATE(3491), + [sym__parenthesized_expression] = STATE(2754), + [sym_for_statement] = STATE(423), + [sym_range_expression] = STATE(3491), + [sym_subscript_expression] = STATE(3491), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(423), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(423), + [sym_conditional_statement] = STATE(423), + [sym_while_statement] = STATE(423), + [sym_do_while_statement] = STATE(423), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1156), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(423), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(99), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(568), - [anon_sym_return] = ACTIONS(502), - [anon_sym_untyped] = ACTIONS(504), - [anon_sym_break] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), + [anon_sym_for] = ACTIONS(167), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_untyped] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), [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(576), - [anon_sym_if] = ACTIONS(578), - [anon_sym_while] = ACTIONS(580), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(169), + [anon_sym_if] = ACTIONS(171), + [anon_sym_while] = ACTIONS(173), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -19859,22 +23800,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -19886,65 +23827,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [64] = { - [sym_preprocessor_statement] = STATE(667), - [sym_package_statement] = STATE(667), - [sym_import_statement] = STATE(667), - [sym_using_statement] = STATE(667), - [sym_throw_statement] = STATE(667), - [sym__rhs_expression] = STATE(1103), - [sym__unaryExpression] = STATE(3202), - [sym_runtime_type_check_expression] = STATE(3202), - [sym_switch_expression] = STATE(605), - [sym_cast_expression] = STATE(3202), - [sym_type_trace_expression] = STATE(3202), - [sym__parenthesized_expression] = STATE(2897), - [sym_for_statement] = STATE(667), - [sym_subscript_expression] = STATE(3202), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(667), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(667), - [sym_conditional_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_do_while_statement] = STATE(667), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1103), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(667), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [88] = { + [sym_preprocessor_statement] = STATE(653), + [sym_package_statement] = STATE(653), + [sym_import_statement] = STATE(653), + [sym_using_statement] = STATE(653), + [sym_throw_statement] = STATE(653), + [sym__rhs_expression] = STATE(1285), + [sym__unaryExpression] = STATE(3441), + [sym_runtime_type_check_expression] = STATE(3441), + [sym_switch_expression] = STATE(622), + [sym_cast_expression] = STATE(3441), + [sym_type_trace_expression] = STATE(3441), + [sym__parenthesized_expression] = STATE(2756), + [sym_for_statement] = STATE(653), + [sym_range_expression] = STATE(3441), + [sym_subscript_expression] = STATE(3441), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(655), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(653), + [sym_conditional_statement] = STATE(653), + [sym_while_statement] = STATE(653), + [sym_do_while_statement] = STATE(653), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1285), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(653), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -19957,18 +23899,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(568), - [anon_sym_return] = ACTIONS(380), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(384), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_untyped] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), [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(576), - [anon_sym_if] = ACTIONS(578), - [anon_sym_while] = ACTIONS(580), + [anon_sym_try] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1132), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -20025,90 +23967,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [65] = { - [sym_preprocessor_statement] = STATE(596), - [sym_package_statement] = STATE(596), - [sym_import_statement] = STATE(596), - [sym_using_statement] = STATE(596), - [sym_throw_statement] = STATE(596), - [sym__rhs_expression] = STATE(1244), - [sym__unaryExpression] = STATE(3305), - [sym_runtime_type_check_expression] = STATE(3305), - [sym_switch_expression] = STATE(572), - [sym_cast_expression] = STATE(3305), - [sym_type_trace_expression] = STATE(3305), - [sym__parenthesized_expression] = STATE(3022), - [sym_for_statement] = STATE(596), - [sym_subscript_expression] = STATE(3305), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(596), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(596), - [sym_conditional_statement] = STATE(596), - [sym_while_statement] = STATE(596), - [sym_do_while_statement] = STATE(596), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1244), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(596), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [89] = { + [sym_preprocessor_statement] = STATE(647), + [sym_package_statement] = STATE(647), + [sym_import_statement] = STATE(647), + [sym_using_statement] = STATE(647), + [sym_throw_statement] = STATE(647), + [sym__rhs_expression] = STATE(1230), + [sym__unaryExpression] = STATE(3679), + [sym_runtime_type_check_expression] = STATE(3679), + [sym_switch_expression] = STATE(568), + [sym_cast_expression] = STATE(3679), + [sym_type_trace_expression] = STATE(3679), + [sym__parenthesized_expression] = STATE(2618), + [sym_for_statement] = STATE(647), + [sym_range_expression] = STATE(3679), + [sym_subscript_expression] = STATE(3679), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(647), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(647), + [sym_conditional_statement] = STATE(647), + [sym_while_statement] = STATE(647), + [sym_do_while_statement] = STATE(647), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1230), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(647), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(608), - [anon_sym_return] = ACTIONS(610), - [anon_sym_untyped] = ACTIONS(612), - [anon_sym_break] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), + [anon_sym_for] = ACTIONS(861), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_untyped] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), [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(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(869), + [anon_sym_if] = ACTIONS(871), + [anon_sym_while] = ACTIONS(873), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -20137,22 +24080,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -20164,90 +24107,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [66] = { - [sym_preprocessor_statement] = STATE(454), - [sym_package_statement] = STATE(454), - [sym_import_statement] = STATE(454), - [sym_using_statement] = STATE(454), - [sym_throw_statement] = STATE(454), - [sym__rhs_expression] = STATE(1114), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(364), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(3092), - [sym_for_statement] = STATE(454), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(454), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(454), - [sym_conditional_statement] = STATE(454), - [sym_while_statement] = STATE(454), - [sym_do_while_statement] = STATE(454), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1114), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(454), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [90] = { + [sym_preprocessor_statement] = STATE(2919), + [sym_package_statement] = STATE(2919), + [sym_import_statement] = STATE(2919), + [sym_using_statement] = STATE(2919), + [sym_throw_statement] = STATE(2919), + [sym__rhs_expression] = STATE(1292), + [sym__unaryExpression] = STATE(3370), + [sym_runtime_type_check_expression] = STATE(3370), + [sym_switch_expression] = STATE(2597), + [sym_cast_expression] = STATE(3370), + [sym_type_trace_expression] = STATE(3370), + [sym__parenthesized_expression] = STATE(2697), + [sym_for_statement] = STATE(2919), + [sym_range_expression] = STATE(3370), + [sym_subscript_expression] = STATE(3370), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2919), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(2919), + [sym_conditional_statement] = STATE(2919), + [sym_while_statement] = STATE(2919), + [sym_do_while_statement] = STATE(2919), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1292), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2919), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(450), - [anon_sym_return] = ACTIONS(464), - [anon_sym_untyped] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), + [anon_sym_for] = ACTIONS(861), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_untyped] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), [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(458), - [anon_sym_if] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(869), + [anon_sym_if] = ACTIONS(871), + [anon_sym_while] = ACTIONS(873), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -20276,22 +24220,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -20303,90 +24247,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [67] = { - [sym_preprocessor_statement] = STATE(488), - [sym_package_statement] = STATE(488), - [sym_import_statement] = STATE(488), - [sym_using_statement] = STATE(488), - [sym_throw_statement] = STATE(488), - [sym__rhs_expression] = STATE(1122), - [sym__unaryExpression] = STATE(3321), - [sym_runtime_type_check_expression] = STATE(3321), - [sym_switch_expression] = STATE(371), - [sym_cast_expression] = STATE(3321), - [sym_type_trace_expression] = STATE(3321), - [sym__parenthesized_expression] = STATE(2880), - [sym_for_statement] = STATE(488), - [sym_subscript_expression] = STATE(3321), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(488), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(488), - [sym_conditional_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_do_while_statement] = STATE(488), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1122), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(488), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [91] = { + [sym_preprocessor_statement] = STATE(670), + [sym_package_statement] = STATE(670), + [sym_import_statement] = STATE(670), + [sym_using_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym__rhs_expression] = STATE(1130), + [sym__unaryExpression] = STATE(3336), + [sym_runtime_type_check_expression] = STATE(3336), + [sym_switch_expression] = STATE(627), + [sym_cast_expression] = STATE(3336), + [sym_type_trace_expression] = STATE(3336), + [sym__parenthesized_expression] = STATE(2626), + [sym_for_statement] = STATE(670), + [sym_range_expression] = STATE(3336), + [sym_subscript_expression] = STATE(3336), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(670), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(670), + [sym_conditional_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_while_statement] = STATE(670), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1130), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(670), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(450), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_untyped] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), [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(458), - [anon_sym_if] = ACTIONS(460), - [anon_sym_while] = ACTIONS(462), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -20415,22 +24360,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -20442,90 +24387,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [68] = { - [sym_preprocessor_statement] = STATE(552), - [sym_package_statement] = STATE(552), - [sym_import_statement] = STATE(552), - [sym_using_statement] = STATE(552), - [sym_throw_statement] = STATE(552), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3180), - [sym_runtime_type_check_expression] = STATE(3180), - [sym_switch_expression] = STATE(380), - [sym_cast_expression] = STATE(3180), - [sym_type_trace_expression] = STATE(3180), - [sym__parenthesized_expression] = STATE(2876), - [sym_for_statement] = STATE(552), - [sym_subscript_expression] = STATE(3180), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(554), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(552), - [sym_conditional_statement] = STATE(552), - [sym_while_statement] = STATE(552), - [sym_do_while_statement] = STATE(552), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(552), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [92] = { + [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(1305), + [sym__unaryExpression] = STATE(3449), + [sym_runtime_type_check_expression] = STATE(3449), + [sym_switch_expression] = STATE(2743), + [sym_cast_expression] = STATE(3449), + [sym_type_trace_expression] = STATE(3449), + [sym__parenthesized_expression] = STATE(2746), + [sym_for_statement] = STATE(2964), + [sym_range_expression] = STATE(3449), + [sym_subscript_expression] = STATE(3449), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2964), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(2964), + [sym_conditional_statement] = STATE(2964), + [sym_while_statement] = STATE(2964), + [sym_do_while_statement] = STATE(2964), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1305), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2964), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(608), - [anon_sym_return] = ACTIONS(490), - [anon_sym_untyped] = ACTIONS(492), - [anon_sym_break] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_untyped] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), [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(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -20554,22 +24500,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -20581,90 +24527,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [69] = { - [sym_preprocessor_statement] = STATE(365), - [sym_package_statement] = STATE(365), - [sym_import_statement] = STATE(365), - [sym_using_statement] = STATE(365), - [sym_throw_statement] = STATE(365), - [sym__rhs_expression] = STATE(1193), - [sym__unaryExpression] = STATE(3179), - [sym_runtime_type_check_expression] = STATE(3179), - [sym_switch_expression] = STATE(361), - [sym_cast_expression] = STATE(3179), - [sym_type_trace_expression] = STATE(3179), - [sym__parenthesized_expression] = STATE(3102), - [sym_for_statement] = STATE(365), - [sym_subscript_expression] = STATE(3179), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(365), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(365), - [sym_conditional_statement] = STATE(365), - [sym_while_statement] = STATE(365), - [sym_do_while_statement] = STATE(365), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1193), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(365), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [93] = { + [sym_preprocessor_statement] = STATE(2992), + [sym_package_statement] = STATE(2992), + [sym_import_statement] = STATE(2992), + [sym_using_statement] = STATE(2992), + [sym_throw_statement] = STATE(2992), + [sym__rhs_expression] = STATE(1310), + [sym__unaryExpression] = STATE(3513), + [sym_runtime_type_check_expression] = STATE(3513), + [sym_switch_expression] = STATE(2757), + [sym_cast_expression] = STATE(3513), + [sym_type_trace_expression] = STATE(3513), + [sym__parenthesized_expression] = STATE(2762), + [sym_for_statement] = STATE(2992), + [sym_range_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2992), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(2992), + [sym_conditional_statement] = STATE(2992), + [sym_while_statement] = STATE(2992), + [sym_do_while_statement] = STATE(2992), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1310), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2992), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(608), - [anon_sym_return] = ACTIONS(514), - [anon_sym_untyped] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_untyped] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), [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(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -20693,22 +24640,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -20720,90 +24667,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [70] = { - [sym_preprocessor_statement] = STATE(454), - [sym_package_statement] = STATE(454), - [sym_import_statement] = STATE(454), - [sym_using_statement] = STATE(454), - [sym_throw_statement] = STATE(454), - [sym__rhs_expression] = STATE(1114), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(364), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(3092), - [sym_for_statement] = STATE(454), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(454), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(454), - [sym_conditional_statement] = STATE(454), - [sym_while_statement] = STATE(454), - [sym_do_while_statement] = STATE(454), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1114), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(454), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [94] = { + [sym_preprocessor_statement] = STATE(2996), + [sym_package_statement] = STATE(2996), + [sym_import_statement] = STATE(2996), + [sym_using_statement] = STATE(2996), + [sym_throw_statement] = STATE(2996), + [sym__rhs_expression] = STATE(1312), + [sym__unaryExpression] = STATE(3520), + [sym_runtime_type_check_expression] = STATE(3520), + [sym_switch_expression] = STATE(2758), + [sym_cast_expression] = STATE(3520), + [sym_type_trace_expression] = STATE(3520), + [sym__parenthesized_expression] = STATE(2767), + [sym_for_statement] = STATE(2996), + [sym_range_expression] = STATE(3520), + [sym_subscript_expression] = STATE(3520), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(2996), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(2996), + [sym_conditional_statement] = STATE(2996), + [sym_while_statement] = STATE(2996), + [sym_do_while_statement] = STATE(2996), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1312), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(2996), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(540), - [anon_sym_return] = ACTIONS(464), - [anon_sym_untyped] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_untyped] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), [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(548), - [anon_sym_if] = ACTIONS(550), - [anon_sym_while] = ACTIONS(552), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -20832,22 +24780,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -20859,90 +24807,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [71] = { - [sym_preprocessor_statement] = STATE(488), - [sym_package_statement] = STATE(488), - [sym_import_statement] = STATE(488), - [sym_using_statement] = STATE(488), - [sym_throw_statement] = STATE(488), - [sym__rhs_expression] = STATE(1122), - [sym__unaryExpression] = STATE(3321), - [sym_runtime_type_check_expression] = STATE(3321), - [sym_switch_expression] = STATE(371), - [sym_cast_expression] = STATE(3321), - [sym_type_trace_expression] = STATE(3321), - [sym__parenthesized_expression] = STATE(2880), - [sym_for_statement] = STATE(488), - [sym_subscript_expression] = STATE(3321), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(488), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(488), - [sym_conditional_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_do_while_statement] = STATE(488), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1122), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(488), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [95] = { + [sym_preprocessor_statement] = STATE(3000), + [sym_package_statement] = STATE(3000), + [sym_import_statement] = STATE(3000), + [sym_using_statement] = STATE(3000), + [sym_throw_statement] = STATE(3000), + [sym__rhs_expression] = STATE(1314), + [sym__unaryExpression] = STATE(3527), + [sym_runtime_type_check_expression] = STATE(3527), + [sym_switch_expression] = STATE(2759), + [sym_cast_expression] = STATE(3527), + [sym_type_trace_expression] = STATE(3527), + [sym__parenthesized_expression] = STATE(2769), + [sym_for_statement] = STATE(3000), + [sym_range_expression] = STATE(3527), + [sym_subscript_expression] = STATE(3527), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3000), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3000), + [sym_conditional_statement] = STATE(3000), + [sym_while_statement] = STATE(3000), + [sym_do_while_statement] = STATE(3000), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1314), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3000), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(540), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_untyped] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), [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(548), - [anon_sym_if] = ACTIONS(550), - [anon_sym_while] = ACTIONS(552), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -20971,22 +24920,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -20998,90 +24947,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [72] = { - [sym_preprocessor_statement] = STATE(552), - [sym_package_statement] = STATE(552), - [sym_import_statement] = STATE(552), - [sym_using_statement] = STATE(552), - [sym_throw_statement] = STATE(552), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3180), - [sym_runtime_type_check_expression] = STATE(3180), - [sym_switch_expression] = STATE(380), - [sym_cast_expression] = STATE(3180), - [sym_type_trace_expression] = STATE(3180), - [sym__parenthesized_expression] = STATE(2876), - [sym_for_statement] = STATE(552), - [sym_subscript_expression] = STATE(3180), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(554), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(552), - [sym_conditional_statement] = STATE(552), - [sym_while_statement] = STATE(552), - [sym_do_while_statement] = STATE(552), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(552), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [96] = { + [sym_preprocessor_statement] = STATE(3020), + [sym_package_statement] = STATE(3020), + [sym_import_statement] = STATE(3020), + [sym_using_statement] = STATE(3020), + [sym_throw_statement] = STATE(3020), + [sym__rhs_expression] = STATE(1316), + [sym__unaryExpression] = STATE(3549), + [sym_runtime_type_check_expression] = STATE(3549), + [sym_switch_expression] = STATE(2774), + [sym_cast_expression] = STATE(3549), + [sym_type_trace_expression] = STATE(3549), + [sym__parenthesized_expression] = STATE(2776), + [sym_for_statement] = STATE(3020), + [sym_range_expression] = STATE(3549), + [sym_subscript_expression] = STATE(3549), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3020), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3020), + [sym_conditional_statement] = STATE(3020), + [sym_while_statement] = STATE(3020), + [sym_do_while_statement] = STATE(3020), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1316), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3020), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(582), - [anon_sym_return] = ACTIONS(490), - [anon_sym_untyped] = ACTIONS(492), - [anon_sym_break] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_untyped] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), [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(590), - [anon_sym_if] = ACTIONS(592), - [anon_sym_while] = ACTIONS(594), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -21110,22 +25060,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -21137,90 +25087,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [73] = { - [sym_preprocessor_statement] = STATE(454), - [sym_package_statement] = STATE(454), - [sym_import_statement] = STATE(454), - [sym_using_statement] = STATE(454), - [sym_throw_statement] = STATE(454), - [sym__rhs_expression] = STATE(1114), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(364), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(3092), - [sym_for_statement] = STATE(454), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(454), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(454), - [sym_conditional_statement] = STATE(454), - [sym_while_statement] = STATE(454), - [sym_do_while_statement] = STATE(454), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1114), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(454), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [97] = { + [sym_preprocessor_statement] = STATE(3035), + [sym_package_statement] = STATE(3035), + [sym_import_statement] = STATE(3035), + [sym_using_statement] = STATE(3035), + [sym_throw_statement] = STATE(3035), + [sym__rhs_expression] = STATE(1319), + [sym__unaryExpression] = STATE(3584), + [sym_runtime_type_check_expression] = STATE(3584), + [sym_switch_expression] = STATE(2781), + [sym_cast_expression] = STATE(3584), + [sym_type_trace_expression] = STATE(3584), + [sym__parenthesized_expression] = STATE(2786), + [sym_for_statement] = STATE(3035), + [sym_range_expression] = STATE(3584), + [sym_subscript_expression] = STATE(3584), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3035), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3035), + [sym_conditional_statement] = STATE(3035), + [sym_while_statement] = STATE(3035), + [sym_do_while_statement] = STATE(3035), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1319), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3035), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(582), - [anon_sym_return] = ACTIONS(464), - [anon_sym_untyped] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_untyped] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), [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(590), - [anon_sym_if] = ACTIONS(592), - [anon_sym_while] = ACTIONS(594), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -21249,22 +25200,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -21276,90 +25227,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [74] = { - [sym_preprocessor_statement] = STATE(488), - [sym_package_statement] = STATE(488), - [sym_import_statement] = STATE(488), - [sym_using_statement] = STATE(488), - [sym_throw_statement] = STATE(488), - [sym__rhs_expression] = STATE(1122), - [sym__unaryExpression] = STATE(3321), - [sym_runtime_type_check_expression] = STATE(3321), - [sym_switch_expression] = STATE(371), - [sym_cast_expression] = STATE(3321), - [sym_type_trace_expression] = STATE(3321), - [sym__parenthesized_expression] = STATE(2880), - [sym_for_statement] = STATE(488), - [sym_subscript_expression] = STATE(3321), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(488), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(488), - [sym_conditional_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_do_while_statement] = STATE(488), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1122), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(488), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [98] = { + [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(1321), + [sym__unaryExpression] = STATE(3591), + [sym_runtime_type_check_expression] = STATE(3591), + [sym_switch_expression] = STATE(2782), + [sym_cast_expression] = STATE(3591), + [sym_type_trace_expression] = STATE(3591), + [sym__parenthesized_expression] = STATE(2790), + [sym_for_statement] = STATE(3039), + [sym_range_expression] = STATE(3591), + [sym_subscript_expression] = STATE(3591), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3039), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3039), + [sym_conditional_statement] = STATE(3039), + [sym_while_statement] = STATE(3039), + [sym_do_while_statement] = STATE(3039), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1321), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3039), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(582), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_untyped] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), [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(590), - [anon_sym_if] = ACTIONS(592), - [anon_sym_while] = ACTIONS(594), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -21388,22 +25340,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -21415,90 +25367,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [75] = { - [sym_preprocessor_statement] = STATE(454), - [sym_package_statement] = STATE(454), - [sym_import_statement] = STATE(454), - [sym_using_statement] = STATE(454), - [sym_throw_statement] = STATE(454), - [sym__rhs_expression] = STATE(1114), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(364), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(3092), - [sym_for_statement] = STATE(454), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(454), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(454), - [sym_conditional_statement] = STATE(454), - [sym_while_statement] = STATE(454), - [sym_do_while_statement] = STATE(454), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1114), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(454), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [99] = { + [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(1323), + [sym__unaryExpression] = STATE(3598), + [sym_runtime_type_check_expression] = STATE(3598), + [sym_switch_expression] = STATE(2783), + [sym_cast_expression] = STATE(3598), + [sym_type_trace_expression] = STATE(3598), + [sym__parenthesized_expression] = STATE(2792), + [sym_for_statement] = STATE(3043), + [sym_range_expression] = STATE(3598), + [sym_subscript_expression] = STATE(3598), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3043), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3043), + [sym_conditional_statement] = STATE(3043), + [sym_while_statement] = STATE(3043), + [sym_do_while_statement] = STATE(3043), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1323), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3043), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(488), - [anon_sym_return] = ACTIONS(464), - [anon_sym_untyped] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_untyped] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), [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(496), - [anon_sym_if] = ACTIONS(498), - [anon_sym_while] = ACTIONS(500), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -21527,22 +25480,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -21554,90 +25507,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [76] = { - [sym_preprocessor_statement] = STATE(488), - [sym_package_statement] = STATE(488), - [sym_import_statement] = STATE(488), - [sym_using_statement] = STATE(488), - [sym_throw_statement] = STATE(488), - [sym__rhs_expression] = STATE(1122), - [sym__unaryExpression] = STATE(3321), - [sym_runtime_type_check_expression] = STATE(3321), - [sym_switch_expression] = STATE(371), - [sym_cast_expression] = STATE(3321), - [sym_type_trace_expression] = STATE(3321), - [sym__parenthesized_expression] = STATE(2880), - [sym_for_statement] = STATE(488), - [sym_subscript_expression] = STATE(3321), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(488), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(488), - [sym_conditional_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_do_while_statement] = STATE(488), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1122), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(488), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [100] = { + [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(1137), + [sym__unaryExpression] = STATE(3359), + [sym_runtime_type_check_expression] = STATE(3359), + [sym_switch_expression] = STATE(618), + [sym_cast_expression] = STATE(3359), + [sym_type_trace_expression] = STATE(3359), + [sym__parenthesized_expression] = STATE(2656), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3359), + [sym_subscript_expression] = STATE(3359), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1137), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(488), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_untyped] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), [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(496), - [anon_sym_if] = ACTIONS(498), - [anon_sym_while] = ACTIONS(500), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -21666,22 +25620,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -21693,90 +25647,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [77] = { - [sym_preprocessor_statement] = STATE(492), - [sym_package_statement] = STATE(492), - [sym_import_statement] = STATE(492), - [sym_using_statement] = STATE(492), - [sym_throw_statement] = STATE(492), - [sym__rhs_expression] = STATE(1123), - [sym__unaryExpression] = STATE(3393), - [sym_runtime_type_check_expression] = STATE(3393), - [sym_switch_expression] = STATE(373), - [sym_cast_expression] = STATE(3393), - [sym_type_trace_expression] = STATE(3393), - [sym__parenthesized_expression] = STATE(2885), - [sym_for_statement] = STATE(492), - [sym_subscript_expression] = STATE(3393), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(492), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(492), - [sym_conditional_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_do_while_statement] = STATE(492), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1123), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(492), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [101] = { + [sym_preprocessor_statement] = STATE(3063), + [sym_package_statement] = STATE(3063), + [sym_import_statement] = STATE(3063), + [sym_using_statement] = STATE(3063), + [sym_throw_statement] = STATE(3063), + [sym__rhs_expression] = STATE(1325), + [sym__unaryExpression] = STATE(3631), + [sym_runtime_type_check_expression] = STATE(3631), + [sym_switch_expression] = STATE(2797), + [sym_cast_expression] = STATE(3631), + [sym_type_trace_expression] = STATE(3631), + [sym__parenthesized_expression] = STATE(2803), + [sym_for_statement] = STATE(3063), + [sym_range_expression] = STATE(3631), + [sym_subscript_expression] = STATE(3631), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3063), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3063), + [sym_conditional_statement] = STATE(3063), + [sym_while_statement] = STATE(3063), + [sym_do_while_statement] = STATE(3063), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1325), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3063), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(488), - [anon_sym_return] = ACTIONS(482), - [anon_sym_untyped] = ACTIONS(484), - [anon_sym_break] = ACTIONS(486), - [anon_sym_continue] = ACTIONS(486), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_untyped] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), [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(496), - [anon_sym_if] = ACTIONS(498), - [anon_sym_while] = ACTIONS(500), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -21805,22 +25760,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -21832,90 +25787,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [78] = { - [sym_preprocessor_statement] = STATE(454), - [sym_package_statement] = STATE(454), - [sym_import_statement] = STATE(454), - [sym_using_statement] = STATE(454), - [sym_throw_statement] = STATE(454), - [sym__rhs_expression] = STATE(1114), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(364), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(3092), - [sym_for_statement] = STATE(454), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(454), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(454), - [sym_conditional_statement] = STATE(454), - [sym_while_statement] = STATE(454), - [sym_do_while_statement] = STATE(454), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1114), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(454), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [102] = { + [sym_preprocessor_statement] = STATE(3067), + [sym_package_statement] = STATE(3067), + [sym_import_statement] = STATE(3067), + [sym_using_statement] = STATE(3067), + [sym_throw_statement] = STATE(3067), + [sym__rhs_expression] = STATE(1327), + [sym__unaryExpression] = STATE(3638), + [sym_runtime_type_check_expression] = STATE(3638), + [sym_switch_expression] = STATE(2798), + [sym_cast_expression] = STATE(3638), + [sym_type_trace_expression] = STATE(3638), + [sym__parenthesized_expression] = STATE(2805), + [sym_for_statement] = STATE(3067), + [sym_range_expression] = STATE(3638), + [sym_subscript_expression] = STATE(3638), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3067), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3067), + [sym_conditional_statement] = STATE(3067), + [sym_while_statement] = STATE(3067), + [sym_do_while_statement] = STATE(3067), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1327), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3067), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(608), - [anon_sym_return] = ACTIONS(464), - [anon_sym_untyped] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_untyped] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), [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(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -21944,22 +25900,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -21971,90 +25927,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [79] = { - [sym_preprocessor_statement] = STATE(488), - [sym_package_statement] = STATE(488), - [sym_import_statement] = STATE(488), - [sym_using_statement] = STATE(488), - [sym_throw_statement] = STATE(488), - [sym__rhs_expression] = STATE(1122), - [sym__unaryExpression] = STATE(3321), - [sym_runtime_type_check_expression] = STATE(3321), - [sym_switch_expression] = STATE(371), - [sym_cast_expression] = STATE(3321), - [sym_type_trace_expression] = STATE(3321), - [sym__parenthesized_expression] = STATE(2880), - [sym_for_statement] = STATE(488), - [sym_subscript_expression] = STATE(3321), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(488), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(488), - [sym_conditional_statement] = STATE(488), - [sym_while_statement] = STATE(488), - [sym_do_while_statement] = STATE(488), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1122), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(488), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), + [103] = { + [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(1329), + [sym__unaryExpression] = STATE(3645), + [sym_runtime_type_check_expression] = STATE(3645), + [sym_switch_expression] = STATE(2799), + [sym_cast_expression] = STATE(3645), + [sym_type_trace_expression] = STATE(3645), + [sym__parenthesized_expression] = STATE(2808), + [sym_for_statement] = STATE(3071), + [sym_range_expression] = STATE(3645), + [sym_subscript_expression] = STATE(3645), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3071), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3071), + [sym_conditional_statement] = STATE(3071), + [sym_while_statement] = STATE(3071), + [sym_do_while_statement] = STATE(3071), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1329), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3071), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(101), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(859), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(107), - [anon_sym_throw] = ACTIONS(109), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(608), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_untyped] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), [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(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_do] = ACTIONS(129), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -22083,22 +26040,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), + [anon_sym_macro] = ACTIONS(69), + [anon_sym_abstract] = ACTIONS(69), + [anon_sym_static] = ACTIONS(69), + [anon_sym_public] = ACTIONS(69), + [anon_sym_private] = ACTIONS(69), + [anon_sym_extern] = ACTIONS(69), + [anon_sym_inline] = ACTIONS(69), + [anon_sym_overload] = ACTIONS(69), + [anon_sym_override] = ACTIONS(69), + [anon_sym_final] = ACTIONS(71), + [anon_sym_class] = ACTIONS(73), + [anon_sym_interface] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(77), + [anon_sym_typedef] = ACTIONS(79), + [anon_sym_function] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -22110,67 +26067,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [80] = { - [sym_preprocessor_statement] = STATE(2806), - [sym_package_statement] = STATE(2806), - [sym_import_statement] = STATE(2806), - [sym_using_statement] = STATE(2806), - [sym_throw_statement] = STATE(2806), - [sym__rhs_expression] = STATE(1248), - [sym__unaryExpression] = STATE(3363), - [sym_runtime_type_check_expression] = STATE(3363), - [sym_switch_expression] = STATE(2596), - [sym_cast_expression] = STATE(3363), - [sym_type_trace_expression] = STATE(3363), - [sym__parenthesized_expression] = STATE(3053), - [sym_for_statement] = STATE(2806), - [sym_subscript_expression] = STATE(3363), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2806), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2806), - [sym_conditional_statement] = STATE(2806), - [sym_while_statement] = STATE(2806), - [sym_do_while_statement] = STATE(2806), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1248), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2806), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [104] = { + [sym_preprocessor_statement] = STATE(3107), + [sym_package_statement] = STATE(3107), + [sym_import_statement] = STATE(3107), + [sym_using_statement] = STATE(3107), + [sym_throw_statement] = STATE(3107), + [sym__rhs_expression] = STATE(1331), + [sym__unaryExpression] = STATE(3669), + [sym_runtime_type_check_expression] = STATE(3669), + [sym_switch_expression] = STATE(2753), + [sym_cast_expression] = STATE(3669), + [sym_type_trace_expression] = STATE(3669), + [sym__parenthesized_expression] = STATE(2817), + [sym_for_statement] = STATE(3107), + [sym_range_expression] = STATE(3669), + [sym_subscript_expression] = STATE(3669), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3107), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3107), + [sym_conditional_statement] = STATE(3107), + [sym_while_statement] = STATE(3107), + [sym_do_while_statement] = STATE(3107), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1331), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3107), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -22181,18 +26139,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(622), - [anon_sym_untyped] = ACTIONS(624), - [anon_sym_break] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_untyped] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -22249,67 +26207,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [81] = { - [sym_preprocessor_statement] = STATE(2809), - [sym_package_statement] = STATE(2809), - [sym_import_statement] = STATE(2809), - [sym_using_statement] = STATE(2809), - [sym_throw_statement] = STATE(2809), - [sym__rhs_expression] = STATE(1250), - [sym__unaryExpression] = STATE(3370), - [sym_runtime_type_check_expression] = STATE(3370), - [sym_switch_expression] = STATE(2597), - [sym_cast_expression] = STATE(3370), - [sym_type_trace_expression] = STATE(3370), - [sym__parenthesized_expression] = STATE(3057), - [sym_for_statement] = STATE(2809), - [sym_subscript_expression] = STATE(3370), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2809), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2809), - [sym_conditional_statement] = STATE(2809), - [sym_while_statement] = STATE(2809), - [sym_do_while_statement] = STATE(2809), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1250), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2809), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [105] = { + [sym_preprocessor_statement] = STATE(3028), + [sym_package_statement] = STATE(3028), + [sym_import_statement] = STATE(3028), + [sym_using_statement] = STATE(3028), + [sym_throw_statement] = STATE(3028), + [sym__rhs_expression] = STATE(1333), + [sym__unaryExpression] = STATE(3684), + [sym_runtime_type_check_expression] = STATE(3684), + [sym_switch_expression] = STATE(2778), + [sym_cast_expression] = STATE(3684), + [sym_type_trace_expression] = STATE(3684), + [sym__parenthesized_expression] = STATE(2824), + [sym_for_statement] = STATE(3028), + [sym_range_expression] = STATE(3684), + [sym_subscript_expression] = STATE(3684), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3028), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3028), + [sym_conditional_statement] = STATE(3028), + [sym_while_statement] = STATE(3028), + [sym_do_while_statement] = STATE(3028), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1333), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3028), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -22320,18 +26279,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(628), - [anon_sym_untyped] = ACTIONS(630), - [anon_sym_break] = ACTIONS(632), - [anon_sym_continue] = ACTIONS(632), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_untyped] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -22388,67 +26347,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [82] = { - [sym_preprocessor_statement] = STATE(2812), - [sym_package_statement] = STATE(2812), - [sym_import_statement] = STATE(2812), - [sym_using_statement] = STATE(2812), - [sym_throw_statement] = STATE(2812), - [sym__rhs_expression] = STATE(1252), - [sym__unaryExpression] = STATE(3377), - [sym_runtime_type_check_expression] = STATE(3377), - [sym_switch_expression] = STATE(2598), - [sym_cast_expression] = STATE(3377), - [sym_type_trace_expression] = STATE(3377), - [sym__parenthesized_expression] = STATE(3060), - [sym_for_statement] = STATE(2812), - [sym_subscript_expression] = STATE(3377), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2812), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2812), - [sym_conditional_statement] = STATE(2812), - [sym_while_statement] = STATE(2812), - [sym_do_while_statement] = STATE(2812), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1252), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2812), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [106] = { + [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(1334), + [sym__unaryExpression] = STATE(3698), + [sym_runtime_type_check_expression] = STATE(3698), + [sym_switch_expression] = STATE(2816), + [sym_cast_expression] = STATE(3698), + [sym_type_trace_expression] = STATE(3698), + [sym__parenthesized_expression] = STATE(2550), + [sym_for_statement] = STATE(3090), + [sym_range_expression] = STATE(3698), + [sym_subscript_expression] = STATE(3698), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(3090), + [sym_metadata] = STATE(2268), + [sym_try_statement] = STATE(3090), + [sym_conditional_statement] = STATE(3090), + [sym_while_statement] = STATE(3090), + [sym_do_while_statement] = STATE(3090), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1334), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(3090), + [sym__modifier] = STATE(2274), + [sym_class_declaration] = STATE(701), + [sym_interface_declaration] = STATE(701), + [sym_enum_declaration] = STATE(701), + [sym_typedef_declaration] = STATE(701), + [sym_function_declaration] = STATE(701), + [sym_variable_declaration] = STATE(701), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2268), + [aux_sym_class_declaration_repeat2] = STATE(2274), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(859), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -22459,18 +26419,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(634), - [anon_sym_untyped] = ACTIONS(636), - [anon_sym_break] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), + [anon_sym_for] = ACTIONS(994), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_untyped] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_while] = ACTIONS(1000), [anon_sym_do] = ACTIONS(53), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -22527,90 +26487,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [83] = { - [sym_preprocessor_statement] = STATE(2821), - [sym_package_statement] = STATE(2821), - [sym_import_statement] = STATE(2821), - [sym_using_statement] = STATE(2821), - [sym_throw_statement] = STATE(2821), - [sym__rhs_expression] = STATE(1254), - [sym__unaryExpression] = STATE(3405), - [sym_runtime_type_check_expression] = STATE(3405), - [sym_switch_expression] = STATE(2607), - [sym_cast_expression] = STATE(3405), - [sym_type_trace_expression] = STATE(3405), - [sym__parenthesized_expression] = STATE(3077), - [sym_for_statement] = STATE(2821), - [sym_subscript_expression] = STATE(3405), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2821), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2821), - [sym_conditional_statement] = STATE(2821), - [sym_while_statement] = STATE(2821), - [sym_do_while_statement] = STATE(2821), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1254), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2821), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), + [107] = { + [sym_preprocessor_statement] = STATE(400), + [sym_package_statement] = STATE(400), + [sym_import_statement] = STATE(400), + [sym_using_statement] = STATE(400), + [sym_throw_statement] = STATE(400), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3494), + [sym_runtime_type_check_expression] = STATE(3494), + [sym_switch_expression] = STATE(390), + [sym_cast_expression] = STATE(3494), + [sym_type_trace_expression] = STATE(3494), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(400), + [sym_range_expression] = STATE(3494), + [sym_subscript_expression] = STATE(3494), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym_block] = STATE(400), + [sym_metadata] = STATE(2262), + [sym_try_statement] = STATE(400), + [sym_conditional_statement] = STATE(400), + [sym_while_statement] = STATE(400), + [sym_do_while_statement] = STATE(400), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym_declaration] = STATE(400), + [sym__modifier] = STATE(2273), + [sym_class_declaration] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_typedef_declaration] = STATE(571), + [sym_function_declaration] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [aux_sym_class_declaration_repeat1] = STATE(2262), + [aux_sym_class_declaration_repeat2] = STATE(2273), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(321), + [anon_sym_package] = ACTIONS(101), + [anon_sym_import] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(107), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(111), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(430), - [anon_sym_return] = ACTIONS(640), - [anon_sym_untyped] = ACTIONS(642), - [anon_sym_break] = ACTIONS(644), - [anon_sym_continue] = ACTIONS(644), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_untyped] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(53), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(129), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -22639,22 +26600,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), + [anon_sym_macro] = ACTIONS(131), + [anon_sym_abstract] = ACTIONS(131), + [anon_sym_static] = ACTIONS(131), + [anon_sym_public] = ACTIONS(131), + [anon_sym_private] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(131), + [anon_sym_inline] = ACTIONS(131), + [anon_sym_overload] = ACTIONS(131), + [anon_sym_override] = ACTIONS(131), + [anon_sym_final] = ACTIONS(133), + [anon_sym_class] = ACTIONS(135), + [anon_sym_interface] = ACTIONS(137), + [anon_sym_enum] = ACTIONS(139), + [anon_sym_typedef] = ACTIONS(141), + [anon_sym_function] = ACTIONS(143), + [anon_sym_var] = ACTIONS(145), [aux_sym_integer_token1] = ACTIONS(85), [aux_sym_integer_token2] = ACTIONS(87), [aux_sym_float_token1] = ACTIONS(89), @@ -22666,91 +26627,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [84] = { - [sym_preprocessor_statement] = STATE(2825), - [sym_package_statement] = STATE(2825), - [sym_import_statement] = STATE(2825), - [sym_using_statement] = STATE(2825), - [sym_throw_statement] = STATE(2825), - [sym__rhs_expression] = STATE(1256), - [sym__unaryExpression] = STATE(3412), - [sym_runtime_type_check_expression] = STATE(3412), - [sym_switch_expression] = STATE(2608), - [sym_cast_expression] = STATE(3412), - [sym_type_trace_expression] = STATE(3412), - [sym__parenthesized_expression] = STATE(3080), - [sym_for_statement] = STATE(2825), - [sym_subscript_expression] = STATE(3412), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2825), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2825), - [sym_conditional_statement] = STATE(2825), - [sym_while_statement] = STATE(2825), - [sym_do_while_statement] = STATE(2825), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1256), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2825), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [108] = { + [sym__rhs_expression] = STATE(379), + [sym_member_expression] = STATE(362), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(379), + [sym__literal] = STATE(578), + [sym_integer] = STATE(578), + [sym_float] = STATE(578), + [sym_bool] = STATE(578), + [sym_string] = STATE(393), + [sym_null] = STATE(578), + [sym_array] = STATE(578), + [sym_map] = STATE(578), + [sym_object] = STATE(578), + [sym_pair] = STATE(578), + [sym_identifier] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_package] = ACTIONS(1300), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_import] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_using] = ACTIONS(1300), + [anon_sym_throw] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_cast] = ACTIONS(1300), + [anon_sym_DOLLARtype] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_AT_COLON] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1300), + [anon_sym_macro] = ACTIONS(1300), + [anon_sym_abstract] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_public] = ACTIONS(1300), + [anon_sym_private] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_overload] = ACTIONS(1300), + [anon_sym_override] = ACTIONS(1300), + [anon_sym_final] = ACTIONS(1300), + [anon_sym_class] = ACTIONS(1300), + [anon_sym_interface] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_var] = ACTIONS(1300), + [aux_sym_integer_token1] = ACTIONS(1300), + [aux_sym_integer_token2] = ACTIONS(1302), + [aux_sym_float_token1] = ACTIONS(1300), + [aux_sym_float_token2] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1302), + [aux_sym_string_token3] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1302), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [109] = { + [sym__rhs_expression] = STATE(877), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(974), + [sym_range_expression] = STATE(169), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(948), + [sym__lhs_expression] = STATE(2331), + [sym_builtin_type] = STATE(2322), + [sym__function_type_args] = STATE(3553), + [sym_function_type] = STATE(2499), + [sym_type] = STATE(2640), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(964), + [sym_integer] = STATE(166), + [sym_float] = STATE(964), + [sym_bool] = STATE(964), + [sym_string] = STATE(928), + [sym_null] = STATE(964), + [sym_array] = STATE(964), + [sym_map] = STATE(964), + [sym_object] = STATE(964), + [sym_structure_type_pair] = STATE(3490), + [sym_pair] = STATE(964), + [aux_sym__parenthesized_expression_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1304), [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(430), - [anon_sym_return] = ACTIONS(646), - [anon_sym_untyped] = ACTIONS(648), - [anon_sym_break] = ACTIONS(650), - [anon_sym_continue] = ACTIONS(650), - [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(53), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1326), + [anon_sym_Void] = ACTIONS(1328), + [anon_sym_Int] = ACTIONS(1328), + [anon_sym_Float] = ACTIONS(1328), + [anon_sym_Bool] = ACTIONS(1328), + [anon_sym_Null] = ACTIONS(1328), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -22777,119 +26819,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [85] = { - [sym_preprocessor_statement] = STATE(2831), - [sym_package_statement] = STATE(2831), - [sym_import_statement] = STATE(2831), - [sym_using_statement] = STATE(2831), - [sym_throw_statement] = STATE(2831), - [sym__rhs_expression] = STATE(1258), - [sym__unaryExpression] = STATE(3439), - [sym_runtime_type_check_expression] = STATE(3439), - [sym_switch_expression] = STATE(2617), - [sym_cast_expression] = STATE(3439), - [sym_type_trace_expression] = STATE(3439), - [sym__parenthesized_expression] = STATE(3097), - [sym_for_statement] = STATE(2831), - [sym_subscript_expression] = STATE(3439), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2831), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2831), - [sym_conditional_statement] = STATE(2831), - [sym_while_statement] = STATE(2831), - [sym_do_while_statement] = STATE(2831), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1258), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2831), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [110] = { + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(948), + [sym__lhs_expression] = STATE(2331), + [sym_builtin_type] = STATE(2322), + [sym__function_type_args] = STATE(3480), + [sym_function_type] = STATE(2499), + [sym_type] = STATE(2559), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(964), + [sym_integer] = STATE(166), + [sym_float] = STATE(964), + [sym_bool] = STATE(964), + [sym_string] = STATE(928), + [sym_null] = STATE(964), + [sym_array] = STATE(964), + [sym_map] = STATE(964), + [sym_object] = STATE(964), + [sym_structure_type_pair] = STATE(3605), + [sym_pair] = STATE(964), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1304), [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(430), - [anon_sym_return] = ACTIONS(652), - [anon_sym_untyped] = ACTIONS(654), - [anon_sym_break] = ACTIONS(656), - [anon_sym_continue] = ACTIONS(656), - [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(53), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1326), + [anon_sym_Void] = ACTIONS(1328), + [anon_sym_Int] = ACTIONS(1328), + [anon_sym_Float] = ACTIONS(1328), + [anon_sym_Bool] = ACTIONS(1328), + [anon_sym_Null] = ACTIONS(1328), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -22916,258 +26921,879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [86] = { - [sym_preprocessor_statement] = STATE(2835), - [sym_package_statement] = STATE(2835), - [sym_import_statement] = STATE(2835), - [sym_using_statement] = STATE(2835), - [sym_throw_statement] = STATE(2835), - [sym__rhs_expression] = STATE(1260), - [sym__unaryExpression] = STATE(3446), - [sym_runtime_type_check_expression] = STATE(3446), - [sym_switch_expression] = STATE(2618), - [sym_cast_expression] = STATE(3446), - [sym_type_trace_expression] = STATE(3446), - [sym__parenthesized_expression] = STATE(3101), - [sym_for_statement] = STATE(2835), - [sym_subscript_expression] = STATE(3446), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(2835), - [sym_metadata] = STATE(2189), - [sym_try_statement] = STATE(2835), - [sym_conditional_statement] = STATE(2835), - [sym_while_statement] = STATE(2835), - [sym_do_while_statement] = STATE(2835), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1260), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(2835), - [sym__modifier] = STATE(2195), - [sym_class_declaration] = STATE(619), - [sym_interface_declaration] = STATE(619), - [sym_enum_declaration] = STATE(619), - [sym_typedef_declaration] = STATE(619), - [sym_function_declaration] = STATE(619), - [sym_variable_declaration] = STATE(619), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2189), - [aux_sym_class_declaration_repeat2] = STATE(2195), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(428), - [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(430), - [anon_sym_return] = ACTIONS(658), - [anon_sym_untyped] = ACTIONS(660), - [anon_sym_break] = ACTIONS(662), - [anon_sym_continue] = ACTIONS(662), - [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(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [111] = { + [sym__rhs_expression] = STATE(358), + [sym_member_expression] = STATE(362), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(358), + [sym__literal] = STATE(578), + [sym_integer] = STATE(578), + [sym_float] = STATE(578), + [sym_bool] = STATE(578), + [sym_string] = STATE(393), + [sym_null] = STATE(578), + [sym_array] = STATE(578), + [sym_map] = STATE(578), + [sym_object] = STATE(578), + [sym_pair] = STATE(578), + [sym_identifier] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_package] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_using] = ACTIONS(1356), + [anon_sym_throw] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_AT_COLON] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_null] = ACTIONS(1366), + [anon_sym_macro] = ACTIONS(1356), + [anon_sym_abstract] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_public] = ACTIONS(1356), + [anon_sym_private] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_overload] = ACTIONS(1356), + [anon_sym_override] = ACTIONS(1356), + [anon_sym_final] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1356), + [anon_sym_interface] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_function] = ACTIONS(1356), + [anon_sym_var] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1354), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [112] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(2837), + [sym_integer] = STATE(2837), + [sym_float] = STATE(2837), + [sym_bool] = STATE(2837), + [sym_string] = STATE(2291), + [sym_null] = STATE(2837), + [sym_array] = STATE(2837), + [sym_map] = STATE(2837), + [sym_object] = STATE(2837), + [sym_pair] = STATE(2837), + [aux_sym_member_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_package] = ACTIONS(1386), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_using] = ACTIONS(1386), + [anon_sym_throw] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_cast] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLARtype] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1386), + [anon_sym_AT] = ACTIONS(1386), + [anon_sym_AT_COLON] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_catch] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1384), + [anon_sym_QMARK_QMARK] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_overload] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_final] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_interface] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1386), + [anon_sym_var] = ACTIONS(1386), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1384), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [113] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(2837), + [sym_integer] = STATE(2837), + [sym_float] = STATE(2837), + [sym_bool] = STATE(2837), + [sym_string] = STATE(2291), + [sym_null] = STATE(2837), + [sym_array] = STATE(2837), + [sym_map] = STATE(2837), + [sym_object] = STATE(2837), + [sym_pair] = STATE(2837), + [aux_sym_member_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_package] = ACTIONS(1390), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_using] = ACTIONS(1390), + [anon_sym_throw] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_cast] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLARtype] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1390), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_AT_COLON] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_catch] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_GT_GT_GT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1388), + [anon_sym_QMARK_QMARK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1390), + [anon_sym_abstract] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_private] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_overload] = ACTIONS(1390), + [anon_sym_override] = ACTIONS(1390), + [anon_sym_final] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_interface] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_function] = ACTIONS(1390), + [anon_sym_var] = ACTIONS(1390), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1388), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [114] = { + [sym__rhs_expression] = STATE(220), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(220), + [sym__literal] = STATE(582), + [sym_integer] = STATE(582), + [sym_float] = STATE(582), + [sym_bool] = STATE(582), + [sym_string] = STATE(398), + [sym_null] = STATE(582), + [sym_array] = STATE(582), + [sym_map] = STATE(582), + [sym_object] = STATE(582), + [sym_pair] = STATE(582), + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_package] = ACTIONS(1300), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_import] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_using] = ACTIONS(1300), + [anon_sym_throw] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_cast] = ACTIONS(1300), + [anon_sym_DOLLARtype] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_AT_COLON] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1300), + [anon_sym_macro] = ACTIONS(1300), + [anon_sym_abstract] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_public] = ACTIONS(1300), + [anon_sym_private] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_overload] = ACTIONS(1300), + [anon_sym_override] = ACTIONS(1300), + [anon_sym_final] = ACTIONS(1300), + [anon_sym_class] = ACTIONS(1300), + [anon_sym_interface] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_var] = ACTIONS(1300), + [aux_sym_integer_token1] = ACTIONS(1300), + [aux_sym_integer_token2] = ACTIONS(1302), + [aux_sym_float_token1] = ACTIONS(1300), + [aux_sym_float_token2] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1302), + [aux_sym_string_token3] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [87] = { - [sym_preprocessor_statement] = STATE(365), - [sym_package_statement] = STATE(365), - [sym_import_statement] = STATE(365), - [sym_using_statement] = STATE(365), - [sym_throw_statement] = STATE(365), - [sym__rhs_expression] = STATE(1193), - [sym__unaryExpression] = STATE(3179), - [sym_runtime_type_check_expression] = STATE(3179), - [sym_switch_expression] = STATE(361), - [sym_cast_expression] = STATE(3179), - [sym_type_trace_expression] = STATE(3179), - [sym__parenthesized_expression] = STATE(3102), - [sym_for_statement] = STATE(365), - [sym_subscript_expression] = STATE(3179), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym_block] = STATE(365), - [sym_metadata] = STATE(2184), - [sym_try_statement] = STATE(365), - [sym_conditional_statement] = STATE(365), - [sym_while_statement] = STATE(365), - [sym_do_while_statement] = STATE(365), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1193), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym_declaration] = STATE(365), - [sym__modifier] = STATE(2201), - [sym_class_declaration] = STATE(451), - [sym_interface_declaration] = STATE(451), - [sym_enum_declaration] = STATE(451), - [sym_typedef_declaration] = STATE(451), - [sym_function_declaration] = STATE(451), - [sym_variable_declaration] = STATE(451), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [aux_sym_class_declaration_repeat1] = STATE(2184), - [aux_sym_class_declaration_repeat2] = STATE(2201), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_package] = ACTIONS(103), - [anon_sym_import] = ACTIONS(105), + [115] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(2837), + [sym_integer] = STATE(2837), + [sym_float] = STATE(2837), + [sym_bool] = STATE(2837), + [sym_string] = STATE(2291), + [sym_null] = STATE(2837), + [sym_array] = STATE(2837), + [sym_map] = STATE(2837), + [sym_object] = STATE(2837), + [sym_pair] = STATE(2837), + [aux_sym_member_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_package] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_import] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_using] = ACTIONS(1397), + [anon_sym_throw] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_cast] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_DOLLARtype] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_untyped] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_this] = ACTIONS(1405), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_AT_COLON] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1397), + [anon_sym_catch] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1408), + [anon_sym_macro] = ACTIONS(1397), + [anon_sym_abstract] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_public] = ACTIONS(1397), + [anon_sym_private] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [anon_sym_overload] = ACTIONS(1397), + [anon_sym_override] = ACTIONS(1397), + [anon_sym_final] = ACTIONS(1397), + [anon_sym_class] = ACTIONS(1397), + [anon_sym_interface] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_function] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [aux_sym_integer_token1] = ACTIONS(1411), + [aux_sym_integer_token2] = ACTIONS(1414), + [aux_sym_float_token1] = ACTIONS(1417), + [aux_sym_float_token2] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [aux_sym_string_token1] = ACTIONS(1426), + [aux_sym_string_token3] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1395), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [116] = { + [sym__rhs_expression] = STATE(235), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(235), + [sym__literal] = STATE(582), + [sym_integer] = STATE(582), + [sym_float] = STATE(582), + [sym_bool] = STATE(582), + [sym_string] = STATE(398), + [sym_null] = STATE(582), + [sym_array] = STATE(582), + [sym_map] = STATE(582), + [sym_object] = STATE(582), + [sym_pair] = STATE(582), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_package] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_using] = ACTIONS(1356), + [anon_sym_throw] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_AT_COLON] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1356), + [anon_sym_abstract] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_public] = ACTIONS(1356), + [anon_sym_private] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_overload] = ACTIONS(1356), + [anon_sym_override] = ACTIONS(1356), + [anon_sym_final] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1356), + [anon_sym_interface] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_function] = ACTIONS(1356), + [anon_sym_var] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [117] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(2837), + [sym_integer] = STATE(2837), + [sym_float] = STATE(2837), + [sym_bool] = STATE(2837), + [sym_string] = STATE(2291), + [sym_null] = STATE(2837), + [sym_array] = STATE(2837), + [sym_map] = STATE(2837), + [sym_object] = STATE(2837), + [sym_pair] = STATE(2837), + [aux_sym_member_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_package] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_import] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_throw] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1312), + [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_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_untyped] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_AT_COLON] = ACTIONS(1436), + [anon_sym_try] = ACTIONS(1438), + [anon_sym_catch] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1332), + [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_enum] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_function] = ACTIONS(1438), + [anon_sym_var] = ACTIONS(1438), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1436), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [118] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(2837), + [sym_integer] = STATE(2837), + [sym_float] = STATE(2837), + [sym_bool] = STATE(2837), + [sym_string] = STATE(2291), + [sym_null] = STATE(2837), + [sym_array] = STATE(2837), + [sym_map] = STATE(2837), + [sym_object] = STATE(2837), + [sym_pair] = STATE(2837), + [aux_sym_member_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_package] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_using] = ACTIONS(1442), + [anon_sym_throw] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1312), + [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_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_untyped] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_AT_COLON] = ACTIONS(1440), + [anon_sym_try] = ACTIONS(1442), + [anon_sym_catch] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1332), + [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_enum] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_function] = ACTIONS(1442), + [anon_sym_var] = ACTIONS(1442), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1440), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [119] = { + [sym_operator] = STATE(1917), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_package] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(1444), [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(582), - [anon_sym_return] = ACTIONS(514), - [anon_sym_untyped] = ACTIONS(516), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), - [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(590), - [anon_sym_if] = ACTIONS(592), - [anon_sym_while] = ACTIONS(594), - [anon_sym_do] = ACTIONS(129), - [anon_sym_new] = ACTIONS(55), + [anon_sym_using] = ACTIONS(1444), + [anon_sym_throw] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_cast] = ACTIONS(1444), + [anon_sym_DOLLARtype] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_untyped] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_this] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_AT_COLON] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_new] = ACTIONS(1444), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -23194,1015 +27820,981 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), + [anon_sym_null] = ACTIONS(1444), + [anon_sym_macro] = ACTIONS(1444), + [anon_sym_abstract] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_public] = ACTIONS(1444), + [anon_sym_private] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym_overload] = ACTIONS(1444), + [anon_sym_override] = ACTIONS(1444), + [anon_sym_final] = ACTIONS(1444), + [anon_sym_class] = ACTIONS(1444), + [anon_sym_interface] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_var] = ACTIONS(1444), + [aux_sym_integer_token1] = ACTIONS(1444), + [aux_sym_integer_token2] = ACTIONS(1446), + [aux_sym_float_token1] = ACTIONS(1444), + [aux_sym_float_token2] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [aux_sym_string_token1] = ACTIONS(1446), + [aux_sym_string_token3] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1446), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [88] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2751), - [sym_integer] = STATE(2751), - [sym_float] = STATE(2751), - [sym_bool] = STATE(2751), - [sym_string] = STATE(2213), - [sym_null] = STATE(2751), - [sym_array] = STATE(2751), - [sym_map] = STATE(2751), - [sym_object] = STATE(2751), - [sym_pair] = STATE(2751), - [aux_sym_member_expression_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_package] = ACTIONS(668), - [anon_sym_DOT] = ACTIONS(668), - [anon_sym_import] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_using] = ACTIONS(668), - [anon_sym_throw] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(668), - [anon_sym_default] = ACTIONS(668), - [anon_sym_cast] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_DOLLARtype] = ACTIONS(666), - [anon_sym_for] = ACTIONS(668), - [anon_sym_return] = ACTIONS(668), - [anon_sym_untyped] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_AT] = ACTIONS(668), - [anon_sym_AT_COLON] = ACTIONS(666), - [anon_sym_try] = ACTIONS(668), - [anon_sym_catch] = ACTIONS(668), - [anon_sym_else] = ACTIONS(668), - [anon_sym_if] = ACTIONS(668), - [anon_sym_while] = ACTIONS(668), - [anon_sym_do] = ACTIONS(668), - [anon_sym_new] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(668), - [anon_sym_GT_GT_GT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(668), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_GT] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(668), - [anon_sym_static] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(668), - [anon_sym_inline] = ACTIONS(668), - [anon_sym_overload] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_final] = ACTIONS(668), - [anon_sym_class] = ACTIONS(668), - [anon_sym_interface] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(668), - [anon_sym_typedef] = ACTIONS(668), - [anon_sym_function] = ACTIONS(668), - [anon_sym_var] = ACTIONS(668), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(666), + [120] = { + [sym__rhs_expression] = STATE(379), + [sym_member_expression] = STATE(362), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(379), + [sym__literal] = STATE(569), + [sym_integer] = STATE(569), + [sym_float] = STATE(569), + [sym_bool] = STATE(569), + [sym_string] = STATE(393), + [sym_null] = STATE(569), + [sym_array] = STATE(569), + [sym_map] = STATE(569), + [sym_object] = STATE(569), + [sym_pair] = STATE(569), + [sym_identifier] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_package] = ACTIONS(1300), + [anon_sym_import] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_using] = ACTIONS(1300), + [anon_sym_throw] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_cast] = ACTIONS(1300), + [anon_sym_DOLLARtype] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_AT_COLON] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1300), + [anon_sym_macro] = ACTIONS(1300), + [anon_sym_abstract] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_public] = ACTIONS(1300), + [anon_sym_private] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_overload] = ACTIONS(1300), + [anon_sym_override] = ACTIONS(1300), + [anon_sym_final] = ACTIONS(1300), + [anon_sym_class] = ACTIONS(1300), + [anon_sym_interface] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_var] = ACTIONS(1300), + [aux_sym_integer_token1] = ACTIONS(1300), + [aux_sym_integer_token2] = ACTIONS(1302), + [aux_sym_float_token1] = ACTIONS(1300), + [aux_sym_float_token2] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1302), + [aux_sym_string_token3] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1302), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [89] = { - [sym__rhs_expression] = STATE(172), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(172), - [sym__literal] = STATE(564), - [sym_integer] = STATE(564), - [sym_float] = STATE(564), - [sym_bool] = STATE(564), - [sym_string] = STATE(363), - [sym_null] = STATE(564), - [sym_array] = STATE(564), - [sym_map] = STATE(564), - [sym_object] = STATE(564), - [sym_pair] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(692), - [sym_identifier] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(692), - [anon_sym_package] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_import] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_using] = ACTIONS(694), - [anon_sym_throw] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_cast] = ACTIONS(694), - [anon_sym_DOLLARtype] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_untyped] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_AT_COLON] = ACTIONS(692), - [anon_sym_try] = ACTIONS(694), - [anon_sym_catch] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_new] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(694), - [anon_sym_macro] = ACTIONS(694), - [anon_sym_abstract] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_extern] = ACTIONS(694), - [anon_sym_inline] = ACTIONS(694), - [anon_sym_overload] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_final] = ACTIONS(694), - [anon_sym_class] = ACTIONS(694), - [anon_sym_interface] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_typedef] = ACTIONS(694), - [anon_sym_function] = ACTIONS(694), - [anon_sym_var] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(694), - [aux_sym_integer_token2] = ACTIONS(692), - [aux_sym_float_token1] = ACTIONS(694), - [aux_sym_float_token2] = ACTIONS(692), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [aux_sym_string_token1] = ACTIONS(692), - [aux_sym_string_token3] = ACTIONS(692), + [121] = { + [sym__rhs_expression] = STATE(761), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(761), + [sym__literal] = STATE(572), + [sym_integer] = STATE(572), + [sym_float] = STATE(572), + [sym_bool] = STATE(572), + [sym_string] = STATE(398), + [sym_null] = STATE(572), + [sym_array] = STATE(572), + [sym_map] = STATE(572), + [sym_object] = STATE(572), + [sym_pair] = STATE(572), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_package] = ACTIONS(1452), + [anon_sym_import] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_throw] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AT_COLON] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_GT_GT_GT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [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(1452), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_QMARK_QMARK] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1452), + [anon_sym_abstract] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_public] = ACTIONS(1452), + [anon_sym_private] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym_overload] = ACTIONS(1452), + [anon_sym_override] = ACTIONS(1452), + [anon_sym_final] = ACTIONS(1452), + [anon_sym_class] = ACTIONS(1452), + [anon_sym_interface] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_function] = ACTIONS(1452), + [anon_sym_var] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [90] = { - [sym__rhs_expression] = STATE(291), - [sym_member_expression] = STATE(293), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(291), - [sym__literal] = STATE(560), - [sym_integer] = STATE(560), - [sym_float] = STATE(560), - [sym_bool] = STATE(560), - [sym_string] = STATE(366), - [sym_null] = STATE(560), - [sym_array] = STATE(560), - [sym_map] = STATE(560), - [sym_object] = STATE(560), - [sym_pair] = STATE(560), - [sym_identifier] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_using] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_for] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_new] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(708), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_typedef] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_var] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(698), + [122] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(3103), + [sym_integer] = STATE(3103), + [sym_float] = STATE(3103), + [sym_bool] = STATE(3103), + [sym_string] = STATE(2291), + [sym_null] = STATE(3103), + [sym_array] = STATE(3103), + [sym_map] = STATE(3103), + [sym_object] = STATE(3103), + [sym_pair] = STATE(3103), + [aux_sym_member_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_package] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_using] = ACTIONS(1386), + [anon_sym_throw] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_cast] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLARtype] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1386), + [anon_sym_AT_COLON] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_catch] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1384), + [anon_sym_QMARK_QMARK] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_overload] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_final] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_interface] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1386), + [anon_sym_var] = ACTIONS(1386), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1384), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [91] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2751), - [sym_integer] = STATE(2751), - [sym_float] = STATE(2751), - [sym_bool] = STATE(2751), - [sym_string] = STATE(2213), - [sym_null] = STATE(2751), - [sym_array] = STATE(2751), - [sym_map] = STATE(2751), - [sym_object] = STATE(2751), - [sym_pair] = STATE(2751), - [aux_sym_member_expression_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(724), - [anon_sym_POUND] = ACTIONS(727), - [anon_sym_package] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_import] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_using] = ACTIONS(729), - [anon_sym_throw] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_cast] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_DOLLARtype] = ACTIONS(727), - [anon_sym_for] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_this] = ACTIONS(737), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_AT_COLON] = ACTIONS(727), - [anon_sym_try] = ACTIONS(729), - [anon_sym_catch] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_new] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_GT_GT_GT] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(727), - [anon_sym_QMARK_QMARK] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [anon_sym_null] = ACTIONS(740), - [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(729), - [anon_sym_class] = ACTIONS(729), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_enum] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(729), - [anon_sym_function] = ACTIONS(729), - [anon_sym_var] = ACTIONS(729), - [aux_sym_integer_token1] = ACTIONS(743), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(749), - [aux_sym_float_token2] = ACTIONS(752), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [aux_sym_string_token1] = ACTIONS(758), - [aux_sym_string_token3] = ACTIONS(761), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(727), + [123] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(3103), + [sym_integer] = STATE(3103), + [sym_float] = STATE(3103), + [sym_bool] = STATE(3103), + [sym_string] = STATE(2291), + [sym_null] = STATE(3103), + [sym_array] = STATE(3103), + [sym_map] = STATE(3103), + [sym_object] = STATE(3103), + [sym_pair] = STATE(3103), + [aux_sym_member_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_package] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_using] = ACTIONS(1390), + [anon_sym_throw] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_cast] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLARtype] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_AT_COLON] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_catch] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_GT_GT_GT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1388), + [anon_sym_QMARK_QMARK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1390), + [anon_sym_abstract] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_private] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_overload] = ACTIONS(1390), + [anon_sym_override] = ACTIONS(1390), + [anon_sym_final] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_interface] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_function] = ACTIONS(1390), + [anon_sym_var] = ACTIONS(1390), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1388), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [92] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2751), - [sym_integer] = STATE(2751), - [sym_float] = STATE(2751), - [sym_bool] = STATE(2751), - [sym_string] = STATE(2213), - [sym_null] = STATE(2751), - [sym_array] = STATE(2751), - [sym_map] = STATE(2751), - [sym_object] = STATE(2751), - [sym_pair] = STATE(2751), - [aux_sym_member_expression_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(764), - [anon_sym_package] = ACTIONS(766), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_import] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_using] = ACTIONS(766), - [anon_sym_throw] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(766), - [anon_sym_default] = ACTIONS(766), - [anon_sym_cast] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_DOLLARtype] = ACTIONS(764), - [anon_sym_for] = ACTIONS(766), - [anon_sym_return] = ACTIONS(766), - [anon_sym_untyped] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_AT_COLON] = ACTIONS(764), - [anon_sym_try] = ACTIONS(766), - [anon_sym_catch] = ACTIONS(766), - [anon_sym_else] = ACTIONS(766), - [anon_sym_if] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_do] = ACTIONS(766), - [anon_sym_new] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(764), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(766), - [anon_sym_abstract] = ACTIONS(766), - [anon_sym_static] = ACTIONS(766), - [anon_sym_public] = ACTIONS(766), - [anon_sym_private] = ACTIONS(766), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_inline] = ACTIONS(766), - [anon_sym_overload] = ACTIONS(766), - [anon_sym_override] = ACTIONS(766), - [anon_sym_final] = ACTIONS(766), - [anon_sym_class] = ACTIONS(766), - [anon_sym_interface] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_typedef] = ACTIONS(766), - [anon_sym_function] = ACTIONS(766), - [anon_sym_var] = ACTIONS(766), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(764), + [124] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(3103), + [sym_integer] = STATE(3103), + [sym_float] = STATE(3103), + [sym_bool] = STATE(3103), + [sym_string] = STATE(2291), + [sym_null] = STATE(3103), + [sym_array] = STATE(3103), + [sym_map] = STATE(3103), + [sym_object] = STATE(3103), + [sym_pair] = STATE(3103), + [aux_sym_member_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_package] = ACTIONS(1397), + [anon_sym_import] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_using] = ACTIONS(1397), + [anon_sym_throw] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_cast] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_DOLLARtype] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_untyped] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_this] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_AT_COLON] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1397), + [anon_sym_catch] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1408), + [anon_sym_macro] = ACTIONS(1397), + [anon_sym_abstract] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_public] = ACTIONS(1397), + [anon_sym_private] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [anon_sym_overload] = ACTIONS(1397), + [anon_sym_override] = ACTIONS(1397), + [anon_sym_final] = ACTIONS(1397), + [anon_sym_class] = ACTIONS(1397), + [anon_sym_interface] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_function] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [aux_sym_integer_token1] = ACTIONS(1411), + [aux_sym_integer_token2] = ACTIONS(1414), + [aux_sym_float_token1] = ACTIONS(1417), + [aux_sym_float_token2] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [aux_sym_string_token1] = ACTIONS(1426), + [aux_sym_string_token3] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1395), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [93] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2751), - [sym_integer] = STATE(2751), - [sym_float] = STATE(2751), - [sym_bool] = STATE(2751), - [sym_string] = STATE(2213), - [sym_null] = STATE(2751), - [sym_array] = STATE(2751), - [sym_map] = STATE(2751), - [sym_object] = STATE(2751), - [sym_pair] = STATE(2751), - [aux_sym_member_expression_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(768), - [anon_sym_package] = ACTIONS(770), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_using] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(770), - [anon_sym_default] = ACTIONS(770), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_DOLLARtype] = ACTIONS(768), - [anon_sym_for] = ACTIONS(770), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_AT_COLON] = ACTIONS(768), - [anon_sym_try] = ACTIONS(770), - [anon_sym_catch] = ACTIONS(770), - [anon_sym_else] = ACTIONS(770), - [anon_sym_if] = ACTIONS(770), - [anon_sym_while] = ACTIONS(770), - [anon_sym_do] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_GT] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(768), - [anon_sym_null] = ACTIONS(676), - [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_enum] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(770), - [anon_sym_function] = ACTIONS(770), - [anon_sym_var] = ACTIONS(770), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(768), + [125] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(3103), + [sym_integer] = STATE(3103), + [sym_float] = STATE(3103), + [sym_bool] = STATE(3103), + [sym_string] = STATE(2291), + [sym_null] = STATE(3103), + [sym_array] = STATE(3103), + [sym_map] = STATE(3103), + [sym_object] = STATE(3103), + [sym_pair] = STATE(3103), + [aux_sym_member_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_package] = ACTIONS(1438), + [anon_sym_import] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_throw] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1312), + [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_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_untyped] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_AT_COLON] = ACTIONS(1436), + [anon_sym_try] = ACTIONS(1438), + [anon_sym_catch] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1332), + [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_enum] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_function] = ACTIONS(1438), + [anon_sym_var] = ACTIONS(1438), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1436), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [94] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2751), - [sym_integer] = STATE(2751), - [sym_float] = STATE(2751), - [sym_bool] = STATE(2751), - [sym_string] = STATE(2213), - [sym_null] = STATE(2751), - [sym_array] = STATE(2751), - [sym_map] = STATE(2751), - [sym_object] = STATE(2751), - [sym_pair] = STATE(2751), - [aux_sym_member_expression_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_package] = ACTIONS(774), - [anon_sym_DOT] = ACTIONS(774), - [anon_sym_import] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_using] = ACTIONS(774), - [anon_sym_throw] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(774), - [anon_sym_default] = ACTIONS(774), - [anon_sym_cast] = ACTIONS(774), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_for] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_untyped] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_AT] = ACTIONS(774), - [anon_sym_AT_COLON] = ACTIONS(772), - [anon_sym_try] = ACTIONS(774), - [anon_sym_catch] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_new] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [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(774), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(772), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(774), - [anon_sym_abstract] = ACTIONS(774), - [anon_sym_static] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(774), - [anon_sym_inline] = ACTIONS(774), - [anon_sym_overload] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_final] = ACTIONS(774), - [anon_sym_class] = ACTIONS(774), - [anon_sym_interface] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_typedef] = ACTIONS(774), - [anon_sym_function] = ACTIONS(774), - [anon_sym_var] = ACTIONS(774), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(772), + [126] = { + [sym_member_expression] = STATE(367), + [sym__lhs_expression] = STATE(368), + [sym__literal] = STATE(3103), + [sym_integer] = STATE(3103), + [sym_float] = STATE(3103), + [sym_bool] = STATE(3103), + [sym_string] = STATE(2291), + [sym_null] = STATE(3103), + [sym_array] = STATE(3103), + [sym_map] = STATE(3103), + [sym_object] = STATE(3103), + [sym_pair] = STATE(3103), + [aux_sym_member_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_package] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_using] = ACTIONS(1442), + [anon_sym_throw] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1312), + [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_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_untyped] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_AT_COLON] = ACTIONS(1440), + [anon_sym_try] = ACTIONS(1442), + [anon_sym_catch] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1332), + [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_enum] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_function] = ACTIONS(1442), + [anon_sym_var] = ACTIONS(1442), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1440), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [95] = { - [sym__rhs_expression] = STATE(263), - [sym_member_expression] = STATE(293), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(263), - [sym__literal] = STATE(560), - [sym_integer] = STATE(560), - [sym_float] = STATE(560), - [sym_bool] = STATE(560), - [sym_string] = STATE(366), - [sym_null] = STATE(560), - [sym_array] = STATE(560), - [sym_map] = STATE(560), - [sym_object] = STATE(560), - [sym_pair] = STATE(560), - [sym_identifier] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(692), - [anon_sym_package] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_import] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_using] = ACTIONS(694), - [anon_sym_throw] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_cast] = ACTIONS(694), - [anon_sym_DOLLARtype] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_untyped] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_AT_COLON] = ACTIONS(692), - [anon_sym_try] = ACTIONS(694), - [anon_sym_catch] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_new] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(694), - [anon_sym_macro] = ACTIONS(694), - [anon_sym_abstract] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_extern] = ACTIONS(694), - [anon_sym_inline] = ACTIONS(694), - [anon_sym_overload] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_final] = ACTIONS(694), - [anon_sym_class] = ACTIONS(694), - [anon_sym_interface] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_typedef] = ACTIONS(694), - [anon_sym_function] = ACTIONS(694), - [anon_sym_var] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(694), - [aux_sym_integer_token2] = ACTIONS(692), - [aux_sym_float_token1] = ACTIONS(694), - [aux_sym_float_token2] = ACTIONS(692), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [aux_sym_string_token1] = ACTIONS(692), - [aux_sym_string_token3] = ACTIONS(692), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(692), + [127] = { + [sym_operator] = STATE(108), + [sym__unaryOperator] = STATE(372), + [sym__prefixUnaryOperator] = STATE(372), + [sym__postfixUnaryOperator] = STATE(372), + [sym__binaryOperator] = STATE(372), + [sym__arithmeticOperator] = STATE(372), + [sym__bitwiseOperator] = STATE(372), + [sym__logicalOperator] = STATE(372), + [sym__comparisonOperator] = STATE(372), + [sym__miscOperator] = STATE(372), + [sym__assignmentOperator] = STATE(372), + [sym__compoundAssignmentOperator] = STATE(372), + [sym__rangeOperator] = STATE(372), + [aux_sym_expression_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_package] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1356), + [anon_sym_throw] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_this] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_AT_COLON] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1468), + [anon_sym_GT_GT_GT] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_LT_EQ] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_GT_EQ] = ACTIONS(1466), + [anon_sym_EQ_GT] = ACTIONS(1466), + [anon_sym_QMARK_QMARK] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), + [anon_sym_null] = ACTIONS(1356), + [anon_sym_macro] = ACTIONS(1356), + [anon_sym_abstract] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_public] = ACTIONS(1356), + [anon_sym_private] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_overload] = ACTIONS(1356), + [anon_sym_override] = ACTIONS(1356), + [anon_sym_final] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1356), + [anon_sym_interface] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_function] = ACTIONS(1356), + [anon_sym_var] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1356), + [aux_sym_integer_token2] = ACTIONS(1354), + [aux_sym_float_token1] = ACTIONS(1356), + [aux_sym_float_token2] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1354), + [aux_sym_string_token3] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1354), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [96] = { - [sym__rhs_expression] = STATE(187), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(187), - [sym__literal] = STATE(564), - [sym_integer] = STATE(564), - [sym_float] = STATE(564), - [sym_bool] = STATE(564), - [sym_string] = STATE(363), - [sym_null] = STATE(564), - [sym_array] = STATE(564), - [sym_map] = STATE(564), - [sym_object] = STATE(564), - [sym_pair] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(776), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_using] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_for] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(778), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_new] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_typedef] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_var] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [128] = { + [sym_operator] = STATE(1825), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_package] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1476), + [anon_sym_throw] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_cast] = ACTIONS(1476), + [anon_sym_DOLLARtype] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_untyped] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_AT_COLON] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_catch] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1478), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_GT_GT_GT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_QMARK_QMARK] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1476), + [anon_sym_macro] = ACTIONS(1476), + [anon_sym_abstract] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_private] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_overload] = ACTIONS(1476), + [anon_sym_override] = ACTIONS(1476), + [anon_sym_final] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_interface] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(1476), + [anon_sym_var] = ACTIONS(1476), + [aux_sym_integer_token1] = ACTIONS(1476), + [aux_sym_integer_token2] = ACTIONS(1474), + [aux_sym_float_token1] = ACTIONS(1476), + [aux_sym_float_token2] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), + [aux_sym_string_token3] = ACTIONS(1474), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [97] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(144), - [sym_runtime_type_check_expression] = STATE(144), - [sym_switch_expression] = STATE(144), - [sym_cast_expression] = STATE(144), - [sym_type_trace_expression] = STATE(144), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(144), - [sym_member_expression] = STATE(911), - [sym__lhs_expression] = STATE(2256), - [sym_builtin_type] = STATE(2261), - [sym__function_type_args] = STATE(3335), - [sym_function_type] = STATE(2393), - [sym_type] = STATE(2442), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(918), - [sym_integer] = STATE(918), - [sym_float] = STATE(918), - [sym_bool] = STATE(918), - [sym_string] = STATE(912), - [sym_null] = STATE(918), - [sym_array] = STATE(918), - [sym_map] = STATE(918), - [sym_object] = STATE(918), - [sym_structure_type_pair] = STATE(3246), - [sym_pair] = STATE(918), - [aux_sym__parenthesized_expression_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(782), + [129] = { + [sym_operator] = STATE(1825), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_package] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(1444), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(798), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(800), - [anon_sym_Void] = ACTIONS(802), - [anon_sym_Int] = ACTIONS(802), - [anon_sym_Float] = ACTIONS(802), - [anon_sym_Bool] = ACTIONS(802), - [anon_sym_Null] = ACTIONS(802), - [anon_sym_new] = ACTIONS(780), + [anon_sym_using] = ACTIONS(1444), + [anon_sym_throw] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_cast] = ACTIONS(1444), + [anon_sym_DOLLARtype] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_untyped] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_this] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_AT_COLON] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_new] = ACTIONS(1444), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -24229,168 +28821,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1444), + [anon_sym_macro] = ACTIONS(1444), + [anon_sym_abstract] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_public] = ACTIONS(1444), + [anon_sym_private] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym_overload] = ACTIONS(1444), + [anon_sym_override] = ACTIONS(1444), + [anon_sym_final] = ACTIONS(1444), + [anon_sym_class] = ACTIONS(1444), + [anon_sym_interface] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_var] = ACTIONS(1444), + [aux_sym_integer_token1] = ACTIONS(1444), + [aux_sym_integer_token2] = ACTIONS(1446), + [aux_sym_float_token1] = ACTIONS(1444), + [aux_sym_float_token2] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [aux_sym_string_token1] = ACTIONS(1446), + [aux_sym_string_token3] = ACTIONS(1446), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [98] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(137), - [sym_runtime_type_check_expression] = STATE(137), - [sym_switch_expression] = STATE(137), - [sym_cast_expression] = STATE(137), - [sym_type_trace_expression] = STATE(137), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(137), - [sym_member_expression] = STATE(911), - [sym__lhs_expression] = STATE(2256), - [sym_builtin_type] = STATE(2261), - [sym__function_type_args] = STATE(3237), - [sym_function_type] = STATE(2393), - [sym_type] = STATE(2592), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(918), - [sym_integer] = STATE(918), - [sym_float] = STATE(918), - [sym_bool] = STATE(918), - [sym_string] = STATE(912), - [sym_null] = STATE(918), - [sym_array] = STATE(918), - [sym_map] = STATE(918), - [sym_object] = STATE(918), - [sym_structure_type_pair] = STATE(3426), - [sym_pair] = STATE(918), - [aux_sym__parenthesized_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(800), - [anon_sym_Void] = ACTIONS(802), - [anon_sym_Int] = ACTIONS(802), - [anon_sym_Float] = ACTIONS(802), - [anon_sym_Bool] = ACTIONS(802), - [anon_sym_Null] = ACTIONS(802), - [anon_sym_new] = ACTIONS(780), - [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(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [130] = { + [sym__rhs_expression] = STATE(220), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(220), + [sym__literal] = STATE(572), + [sym_integer] = STATE(572), + [sym_float] = STATE(572), + [sym_bool] = STATE(572), + [sym_string] = STATE(398), + [sym_null] = STATE(572), + [sym_array] = STATE(572), + [sym_map] = STATE(572), + [sym_object] = STATE(572), + [sym_pair] = STATE(572), + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_package] = ACTIONS(1300), + [anon_sym_import] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_using] = ACTIONS(1300), + [anon_sym_throw] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_cast] = ACTIONS(1300), + [anon_sym_DOLLARtype] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_AT_COLON] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1300), + [anon_sym_macro] = ACTIONS(1300), + [anon_sym_abstract] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_public] = ACTIONS(1300), + [anon_sym_private] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_overload] = ACTIONS(1300), + [anon_sym_override] = ACTIONS(1300), + [anon_sym_final] = ACTIONS(1300), + [anon_sym_class] = ACTIONS(1300), + [anon_sym_interface] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_var] = ACTIONS(1300), + [aux_sym_integer_token1] = ACTIONS(1300), + [aux_sym_integer_token2] = ACTIONS(1302), + [aux_sym_float_token1] = ACTIONS(1300), + [aux_sym_float_token2] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1302), + [aux_sym_string_token3] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [99] = { - [sym_operator] = STATE(89), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(186), - [sym__bitwiseOperator] = STATE(186), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(700), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), + [131] = { + [sym_operator] = STATE(1917), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_package] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1476), + [anon_sym_throw] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_cast] = ACTIONS(1476), + [anon_sym_DOLLARtype] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_untyped] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_AT_COLON] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_catch] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1478), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_GT_GT_GT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_QMARK_QMARK] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1476), + [anon_sym_macro] = ACTIONS(1476), + [anon_sym_abstract] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_private] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_overload] = ACTIONS(1476), + [anon_sym_override] = ACTIONS(1476), + [anon_sym_final] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_interface] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(1476), + [anon_sym_var] = ACTIONS(1476), + [aux_sym_integer_token1] = ACTIONS(1476), + [aux_sym_integer_token2] = ACTIONS(1474), + [aux_sym_float_token1] = ACTIONS(1476), + [aux_sym_float_token2] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), + [aux_sym_string_token3] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1474), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [132] = { + [sym__rhs_expression] = STATE(589), + [sym_member_expression] = STATE(362), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(589), + [sym__literal] = STATE(569), + [sym_integer] = STATE(569), + [sym_float] = STATE(569), + [sym_bool] = STATE(569), + [sym_string] = STATE(393), + [sym_null] = STATE(569), + [sym_array] = STATE(569), + [sym_map] = STATE(569), + [sym_object] = STATE(569), + [sym_pair] = STATE(569), + [sym_identifier] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_package] = ACTIONS(1452), + [anon_sym_import] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_throw] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AT_COLON] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_GT_GT_GT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [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(1452), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_QMARK_QMARK] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_null] = ACTIONS(1366), + [anon_sym_macro] = ACTIONS(1452), + [anon_sym_abstract] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_public] = ACTIONS(1452), + [anon_sym_private] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym_overload] = ACTIONS(1452), + [anon_sym_override] = ACTIONS(1452), + [anon_sym_final] = ACTIONS(1452), + [anon_sym_class] = ACTIONS(1452), + [anon_sym_interface] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_function] = ACTIONS(1452), + [anon_sym_var] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1448), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [133] = { + [sym_operator] = STATE(114), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(199), + [sym__bitwiseOperator] = STATE(199), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(129), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_package] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), [anon_sym_STAR] = ACTIONS(57), - [anon_sym_using] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_for] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_this] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_new] = ACTIONS(700), + [anon_sym_using] = ACTIONS(1356), + [anon_sym_throw] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_this] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_AT_COLON] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1356), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(1498), [anon_sym_PLUS_PLUS] = ACTIONS(63), [anon_sym_DASH_DASH] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(57), @@ -24414,879 +29221,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(700), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_typedef] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_var] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(700), - [aux_sym_integer_token2] = ACTIONS(698), - [aux_sym_float_token1] = ACTIONS(700), - [aux_sym_float_token2] = ACTIONS(698), - [anon_sym_true] = ACTIONS(700), - [anon_sym_false] = ACTIONS(700), - [aux_sym_string_token1] = ACTIONS(698), - [aux_sym_string_token3] = ACTIONS(698), + [anon_sym_null] = ACTIONS(1356), + [anon_sym_macro] = ACTIONS(1356), + [anon_sym_abstract] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_public] = ACTIONS(1356), + [anon_sym_private] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_overload] = ACTIONS(1356), + [anon_sym_override] = ACTIONS(1356), + [anon_sym_final] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1356), + [anon_sym_interface] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_function] = ACTIONS(1356), + [anon_sym_var] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1356), + [aux_sym_integer_token2] = ACTIONS(1354), + [aux_sym_float_token1] = ACTIONS(1356), + [aux_sym_float_token2] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1354), + [aux_sym_string_token3] = ACTIONS(1354), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [100] = { - [sym__rhs_expression] = STATE(695), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(695), - [sym__literal] = STATE(548), - [sym_integer] = STATE(548), - [sym_float] = STATE(548), - [sym_bool] = STATE(548), - [sym_string] = STATE(363), - [sym_null] = STATE(548), - [sym_array] = STATE(548), - [sym_map] = STATE(548), - [sym_object] = STATE(548), - [sym_pair] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(810), - [sym_identifier] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(810), - [anon_sym_for] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(810), - [anon_sym_try] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_new] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(810), - [anon_sym_PERCENT] = ACTIONS(810), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(810), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_GT_GT_GT] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_EQ_GT] = ACTIONS(810), - [anon_sym_QMARK_QMARK] = ACTIONS(810), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(810), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_function] = ACTIONS(814), - [anon_sym_var] = ACTIONS(814), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [134] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(2982), + [sym_integer] = STATE(2982), + [sym_float] = STATE(2982), + [sym_bool] = STATE(2982), + [sym_string] = STATE(2291), + [sym_null] = STATE(2982), + [sym_array] = STATE(2982), + [sym_map] = STATE(2982), + [sym_object] = STATE(2982), + [sym_pair] = STATE(2982), + [aux_sym_member_expression_repeat1] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_package] = ACTIONS(1386), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_using] = ACTIONS(1386), + [anon_sym_throw] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1386), + [anon_sym_DOLLARtype] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1386), + [anon_sym_AT] = ACTIONS(1386), + [anon_sym_AT_COLON] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_catch] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1384), + [anon_sym_QMARK_QMARK] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_overload] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_final] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_interface] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1386), + [anon_sym_var] = ACTIONS(1386), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [101] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2742), - [sym_integer] = STATE(2742), - [sym_float] = STATE(2742), - [sym_bool] = STATE(2742), - [sym_string] = STATE(2213), - [sym_null] = STATE(2742), - [sym_array] = STATE(2742), - [sym_map] = STATE(2742), - [sym_object] = STATE(2742), - [sym_pair] = STATE(2742), - [aux_sym_member_expression_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(818), - [anon_sym_POUND] = ACTIONS(764), - [anon_sym_package] = ACTIONS(766), - [anon_sym_import] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_using] = ACTIONS(766), - [anon_sym_throw] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(766), - [anon_sym_default] = ACTIONS(766), - [anon_sym_cast] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_DOLLARtype] = ACTIONS(764), - [anon_sym_for] = ACTIONS(766), - [anon_sym_return] = ACTIONS(766), - [anon_sym_untyped] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_AT_COLON] = ACTIONS(764), - [anon_sym_try] = ACTIONS(766), - [anon_sym_catch] = ACTIONS(766), - [anon_sym_else] = ACTIONS(766), - [anon_sym_if] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_do] = ACTIONS(766), - [anon_sym_new] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(764), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(766), - [anon_sym_abstract] = ACTIONS(766), - [anon_sym_static] = ACTIONS(766), - [anon_sym_public] = ACTIONS(766), - [anon_sym_private] = ACTIONS(766), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_inline] = ACTIONS(766), - [anon_sym_overload] = ACTIONS(766), - [anon_sym_override] = ACTIONS(766), - [anon_sym_final] = ACTIONS(766), - [anon_sym_class] = ACTIONS(766), - [anon_sym_interface] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_typedef] = ACTIONS(766), - [anon_sym_function] = ACTIONS(766), - [anon_sym_var] = ACTIONS(766), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(764), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [102] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2742), - [sym_integer] = STATE(2742), - [sym_float] = STATE(2742), - [sym_bool] = STATE(2742), - [sym_string] = STATE(2213), - [sym_null] = STATE(2742), - [sym_array] = STATE(2742), - [sym_map] = STATE(2742), - [sym_object] = STATE(2742), - [sym_pair] = STATE(2742), - [aux_sym_member_expression_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(818), - [anon_sym_POUND] = ACTIONS(768), - [anon_sym_package] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_using] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(770), - [anon_sym_default] = ACTIONS(770), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_DOLLARtype] = ACTIONS(768), - [anon_sym_for] = ACTIONS(770), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_AT_COLON] = ACTIONS(768), - [anon_sym_try] = ACTIONS(770), - [anon_sym_catch] = ACTIONS(770), - [anon_sym_else] = ACTIONS(770), - [anon_sym_if] = ACTIONS(770), - [anon_sym_while] = ACTIONS(770), - [anon_sym_do] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_GT] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(768), - [anon_sym_null] = ACTIONS(676), - [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_enum] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(770), - [anon_sym_function] = ACTIONS(770), - [anon_sym_var] = ACTIONS(770), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(768), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [103] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2742), - [sym_integer] = STATE(2742), - [sym_float] = STATE(2742), - [sym_bool] = STATE(2742), - [sym_string] = STATE(2213), - [sym_null] = STATE(2742), - [sym_array] = STATE(2742), - [sym_map] = STATE(2742), - [sym_object] = STATE(2742), - [sym_pair] = STATE(2742), - [aux_sym_member_expression_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(727), - [anon_sym_package] = ACTIONS(729), - [anon_sym_import] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_using] = ACTIONS(729), - [anon_sym_throw] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_cast] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_DOLLARtype] = ACTIONS(727), - [anon_sym_for] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_this] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_AT_COLON] = ACTIONS(727), - [anon_sym_try] = ACTIONS(729), - [anon_sym_catch] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_new] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_GT_GT_GT] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(727), - [anon_sym_QMARK_QMARK] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [anon_sym_null] = ACTIONS(740), - [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(729), - [anon_sym_class] = ACTIONS(729), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_enum] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(729), - [anon_sym_function] = ACTIONS(729), - [anon_sym_var] = ACTIONS(729), - [aux_sym_integer_token1] = ACTIONS(743), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(749), - [aux_sym_float_token2] = ACTIONS(752), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [aux_sym_string_token1] = ACTIONS(758), - [aux_sym_string_token3] = ACTIONS(761), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(727), + [135] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(2982), + [sym_integer] = STATE(2982), + [sym_float] = STATE(2982), + [sym_bool] = STATE(2982), + [sym_string] = STATE(2291), + [sym_null] = STATE(2982), + [sym_array] = STATE(2982), + [sym_map] = STATE(2982), + [sym_object] = STATE(2982), + [sym_pair] = STATE(2982), + [aux_sym_member_expression_repeat1] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_package] = ACTIONS(1390), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_using] = ACTIONS(1390), + [anon_sym_throw] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1390), + [anon_sym_DOLLARtype] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1390), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_AT_COLON] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_catch] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_GT_GT_GT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1388), + [anon_sym_QMARK_QMARK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1390), + [anon_sym_abstract] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_private] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_overload] = ACTIONS(1390), + [anon_sym_override] = ACTIONS(1390), + [anon_sym_final] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_interface] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_function] = ACTIONS(1390), + [anon_sym_var] = ACTIONS(1390), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [104] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2742), - [sym_integer] = STATE(2742), - [sym_float] = STATE(2742), - [sym_bool] = STATE(2742), - [sym_string] = STATE(2213), - [sym_null] = STATE(2742), - [sym_array] = STATE(2742), - [sym_map] = STATE(2742), - [sym_object] = STATE(2742), - [sym_pair] = STATE(2742), - [aux_sym_member_expression_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(818), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_package] = ACTIONS(668), - [anon_sym_import] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_using] = ACTIONS(668), - [anon_sym_throw] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(668), - [anon_sym_default] = ACTIONS(668), - [anon_sym_cast] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_DOLLARtype] = ACTIONS(666), - [anon_sym_for] = ACTIONS(668), - [anon_sym_return] = ACTIONS(668), - [anon_sym_untyped] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(668), - [anon_sym_AT_COLON] = ACTIONS(666), - [anon_sym_try] = ACTIONS(668), - [anon_sym_catch] = ACTIONS(668), - [anon_sym_else] = ACTIONS(668), - [anon_sym_if] = ACTIONS(668), - [anon_sym_while] = ACTIONS(668), - [anon_sym_do] = ACTIONS(668), - [anon_sym_new] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(668), - [anon_sym_GT_GT_GT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(668), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_GT] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(668), - [anon_sym_static] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(668), - [anon_sym_inline] = ACTIONS(668), - [anon_sym_overload] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_final] = ACTIONS(668), - [anon_sym_class] = ACTIONS(668), - [anon_sym_interface] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(668), - [anon_sym_typedef] = ACTIONS(668), - [anon_sym_function] = ACTIONS(668), - [anon_sym_var] = ACTIONS(668), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(666), + [136] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(2982), + [sym_integer] = STATE(2982), + [sym_float] = STATE(2982), + [sym_bool] = STATE(2982), + [sym_string] = STATE(2291), + [sym_null] = STATE(2982), + [sym_array] = STATE(2982), + [sym_map] = STATE(2982), + [sym_object] = STATE(2982), + [sym_pair] = STATE(2982), + [aux_sym_member_expression_repeat1] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_package] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_import] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_throw] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1438), + [anon_sym_DOLLARtype] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_untyped] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_AT_COLON] = ACTIONS(1436), + [anon_sym_try] = ACTIONS(1438), + [anon_sym_catch] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1332), + [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_enum] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_function] = ACTIONS(1438), + [anon_sym_var] = ACTIONS(1438), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [105] = { - [sym_member_expression] = STATE(295), - [sym__lhs_expression] = STATE(296), - [sym__literal] = STATE(2742), - [sym_integer] = STATE(2742), - [sym_float] = STATE(2742), - [sym_bool] = STATE(2742), - [sym_string] = STATE(2213), - [sym_null] = STATE(2742), - [sym_array] = STATE(2742), - [sym_map] = STATE(2742), - [sym_object] = STATE(2742), - [sym_pair] = STATE(2742), - [aux_sym_member_expression_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(818), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_package] = ACTIONS(774), - [anon_sym_import] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_using] = ACTIONS(774), - [anon_sym_throw] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_case] = ACTIONS(774), - [anon_sym_default] = ACTIONS(774), - [anon_sym_cast] = ACTIONS(774), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_for] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_untyped] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(774), - [anon_sym_AT_COLON] = ACTIONS(772), - [anon_sym_try] = ACTIONS(774), - [anon_sym_catch] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_new] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [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(774), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(772), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(774), - [anon_sym_abstract] = ACTIONS(774), - [anon_sym_static] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(774), - [anon_sym_inline] = ACTIONS(774), - [anon_sym_overload] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_final] = ACTIONS(774), - [anon_sym_class] = ACTIONS(774), - [anon_sym_interface] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_typedef] = ACTIONS(774), - [anon_sym_function] = ACTIONS(774), - [anon_sym_var] = ACTIONS(774), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(772), + [137] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(2982), + [sym_integer] = STATE(2982), + [sym_float] = STATE(2982), + [sym_bool] = STATE(2982), + [sym_string] = STATE(2291), + [sym_null] = STATE(2982), + [sym_array] = STATE(2982), + [sym_map] = STATE(2982), + [sym_object] = STATE(2982), + [sym_pair] = STATE(2982), + [aux_sym_member_expression_repeat1] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_package] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_import] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_using] = ACTIONS(1397), + [anon_sym_throw] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_cast] = ACTIONS(1397), + [anon_sym_DOLLARtype] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_untyped] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_this] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_AT_COLON] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1397), + [anon_sym_catch] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1408), + [anon_sym_macro] = ACTIONS(1397), + [anon_sym_abstract] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_public] = ACTIONS(1397), + [anon_sym_private] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [anon_sym_overload] = ACTIONS(1397), + [anon_sym_override] = ACTIONS(1397), + [anon_sym_final] = ACTIONS(1397), + [anon_sym_class] = ACTIONS(1397), + [anon_sym_interface] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_function] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [aux_sym_integer_token1] = ACTIONS(1411), + [aux_sym_integer_token2] = ACTIONS(1414), + [aux_sym_float_token1] = ACTIONS(1417), + [aux_sym_float_token2] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [aux_sym_string_token1] = ACTIONS(1426), + [aux_sym_string_token3] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [106] = { - [sym__rhs_expression] = STATE(172), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(172), - [sym__literal] = STATE(548), - [sym_integer] = STATE(548), - [sym_float] = STATE(548), - [sym_bool] = STATE(548), - [sym_string] = STATE(363), - [sym_null] = STATE(548), - [sym_array] = STATE(548), - [sym_map] = STATE(548), - [sym_object] = STATE(548), - [sym_pair] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(692), - [sym_identifier] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(692), - [anon_sym_package] = ACTIONS(694), - [anon_sym_import] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_using] = ACTIONS(694), - [anon_sym_throw] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_cast] = ACTIONS(694), - [anon_sym_DOLLARtype] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_untyped] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_AT_COLON] = ACTIONS(692), - [anon_sym_try] = ACTIONS(694), - [anon_sym_catch] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_new] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(694), - [anon_sym_macro] = ACTIONS(694), - [anon_sym_abstract] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_extern] = ACTIONS(694), - [anon_sym_inline] = ACTIONS(694), - [anon_sym_overload] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_final] = ACTIONS(694), - [anon_sym_class] = ACTIONS(694), - [anon_sym_interface] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_typedef] = ACTIONS(694), - [anon_sym_function] = ACTIONS(694), - [anon_sym_var] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(694), - [aux_sym_integer_token2] = ACTIONS(692), - [aux_sym_float_token1] = ACTIONS(694), - [aux_sym_float_token2] = ACTIONS(692), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [aux_sym_string_token1] = ACTIONS(692), - [aux_sym_string_token3] = ACTIONS(692), + [138] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(2982), + [sym_integer] = STATE(2982), + [sym_float] = STATE(2982), + [sym_bool] = STATE(2982), + [sym_string] = STATE(2291), + [sym_null] = STATE(2982), + [sym_array] = STATE(2982), + [sym_map] = STATE(2982), + [sym_object] = STATE(2982), + [sym_pair] = STATE(2982), + [aux_sym_member_expression_repeat1] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_package] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_using] = ACTIONS(1442), + [anon_sym_throw] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1442), + [anon_sym_DOLLARtype] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_untyped] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_AT_COLON] = ACTIONS(1440), + [anon_sym_try] = ACTIONS(1442), + [anon_sym_catch] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1332), + [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_enum] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_function] = ACTIONS(1442), + [anon_sym_var] = ACTIONS(1442), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [107] = { - [sym_operator] = STATE(95), - [sym__unaryOperator] = STATE(242), - [sym__prefixUnaryOperator] = STATE(242), - [sym__postfixUnaryOperator] = STATE(242), - [sym__binaryOperator] = STATE(242), - [sym__arithmeticOperator] = STATE(242), - [sym__bitwiseOperator] = STATE(242), - [sym__logicalOperator] = STATE(242), - [sym__comparisonOperator] = STATE(242), - [sym__miscOperator] = STATE(242), - [sym__assignmentOperator] = STATE(242), - [sym__compoundAssignmentOperator] = STATE(242), - [sym__rangeOperator] = STATE(242), - [aux_sym_expression_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(700), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_using] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_for] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_this] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_new] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_BANG] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_PLUS_PLUS] = ACTIONS(834), - [anon_sym_DASH_DASH] = ACTIONS(834), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_GT_GT_GT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(830), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_EQ_EQ] = ACTIONS(828), - [anon_sym_BANG_EQ] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_EQ] = ACTIONS(828), - [anon_sym_EQ_GT] = ACTIONS(828), - [anon_sym_QMARK_QMARK] = ACTIONS(828), - [anon_sym_EQ] = ACTIONS(830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(828), - [anon_sym_null] = ACTIONS(700), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_typedef] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_var] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(700), - [aux_sym_integer_token2] = ACTIONS(698), - [aux_sym_float_token1] = ACTIONS(700), - [aux_sym_float_token2] = ACTIONS(698), - [anon_sym_true] = ACTIONS(700), - [anon_sym_false] = ACTIONS(700), - [aux_sym_string_token1] = ACTIONS(698), - [aux_sym_string_token3] = ACTIONS(698), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(698), + [139] = { + [sym_operator] = STATE(1978), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_package] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1476), + [anon_sym_throw] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_cast] = ACTIONS(1476), + [anon_sym_DOLLARtype] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_untyped] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_AT_COLON] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_catch] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1478), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_GT_GT_GT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_QMARK_QMARK] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1476), + [anon_sym_macro] = ACTIONS(1476), + [anon_sym_abstract] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_private] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_overload] = ACTIONS(1476), + [anon_sym_override] = ACTIONS(1476), + [anon_sym_final] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_interface] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(1476), + [anon_sym_var] = ACTIONS(1476), + [aux_sym_integer_token1] = ACTIONS(1476), + [aux_sym_integer_token2] = ACTIONS(1474), + [aux_sym_float_token1] = ACTIONS(1476), + [aux_sym_float_token2] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), + [aux_sym_string_token3] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [108] = { - [sym_operator] = STATE(1913), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(838), - [anon_sym_package] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_import] = ACTIONS(836), + [140] = { + [sym__rhs_expression] = STATE(856), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(948), + [sym__lhs_expression] = STATE(2331), + [sym_builtin_type] = STATE(2322), + [sym_function_type] = STATE(2499), + [sym_type] = STATE(2706), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(856), + [sym_operator] = STATE(1910), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(968), + [sym_integer] = STATE(166), + [sym_float] = STATE(968), + [sym_bool] = STATE(968), + [sym_string] = STATE(928), + [sym_null] = STATE(968), + [sym_array] = STATE(968), + [sym_map] = STATE(968), + [sym_object] = STATE(968), + [sym_pair] = STATE(968), + [sym_identifier] = ACTIONS(1508), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(836), - [anon_sym_throw] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_cast] = ACTIONS(836), - [anon_sym_DOLLARtype] = ACTIONS(838), - [anon_sym_for] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_untyped] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_this] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_AT_COLON] = ACTIONS(838), - [anon_sym_try] = ACTIONS(836), - [anon_sym_catch] = ACTIONS(836), - [anon_sym_else] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_new] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_untyped] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1518), + [anon_sym_Void] = ACTIONS(1328), + [anon_sym_Int] = ACTIONS(1328), + [anon_sym_Float] = ACTIONS(1328), + [anon_sym_Bool] = ACTIONS(1328), + [anon_sym_Null] = ACTIONS(1328), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -25313,281 +29928,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(836), - [anon_sym_macro] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(836), - [anon_sym_static] = ACTIONS(836), - [anon_sym_public] = ACTIONS(836), - [anon_sym_private] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_inline] = ACTIONS(836), - [anon_sym_overload] = ACTIONS(836), - [anon_sym_override] = ACTIONS(836), - [anon_sym_final] = ACTIONS(836), - [anon_sym_class] = ACTIONS(836), - [anon_sym_interface] = ACTIONS(836), - [anon_sym_enum] = ACTIONS(836), - [anon_sym_typedef] = ACTIONS(836), - [anon_sym_function] = ACTIONS(836), - [anon_sym_var] = ACTIONS(836), - [aux_sym_integer_token1] = ACTIONS(836), - [aux_sym_integer_token2] = ACTIONS(838), - [aux_sym_float_token1] = ACTIONS(836), - [aux_sym_float_token2] = ACTIONS(838), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_string_token1] = ACTIONS(838), - [aux_sym_string_token3] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(838), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [109] = { - [sym__rhs_expression] = STATE(464), - [sym_member_expression] = STATE(293), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(464), - [sym__literal] = STATE(486), - [sym_integer] = STATE(486), - [sym_float] = STATE(486), - [sym_bool] = STATE(486), - [sym_string] = STATE(366), - [sym_null] = STATE(486), - [sym_array] = STATE(486), - [sym_map] = STATE(486), - [sym_object] = STATE(486), - [sym_pair] = STATE(486), - [sym_identifier] = ACTIONS(840), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(810), - [anon_sym_for] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(810), - [anon_sym_try] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_new] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(810), - [anon_sym_PERCENT] = ACTIONS(810), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(810), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_GT_GT_GT] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_EQ_GT] = ACTIONS(810), - [anon_sym_QMARK_QMARK] = ACTIONS(810), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(810), - [anon_sym_null] = ACTIONS(708), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_function] = ACTIONS(814), - [anon_sym_var] = ACTIONS(814), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(810), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [110] = { - [sym_operator] = STATE(1891), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(842), - [sym_identifier] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(842), - [anon_sym_package] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_import] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_using] = ACTIONS(844), - [anon_sym_throw] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_cast] = ACTIONS(844), - [anon_sym_DOLLARtype] = ACTIONS(842), - [anon_sym_for] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_untyped] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_this] = ACTIONS(844), - [anon_sym_QMARK] = ACTIONS(844), - [anon_sym_AT] = ACTIONS(844), - [anon_sym_AT_COLON] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(858), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(852), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_QMARK_QMARK] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(849), - [anon_sym_null] = ACTIONS(844), - [anon_sym_macro] = ACTIONS(844), - [anon_sym_abstract] = ACTIONS(844), - [anon_sym_static] = ACTIONS(844), - [anon_sym_public] = ACTIONS(844), - [anon_sym_private] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_inline] = ACTIONS(844), - [anon_sym_overload] = ACTIONS(844), - [anon_sym_override] = ACTIONS(844), - [anon_sym_final] = ACTIONS(844), - [anon_sym_class] = ACTIONS(844), - [anon_sym_interface] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(844), - [anon_sym_typedef] = ACTIONS(844), - [anon_sym_function] = ACTIONS(844), - [anon_sym_var] = ACTIONS(844), - [aux_sym_integer_token1] = ACTIONS(844), - [aux_sym_integer_token2] = ACTIONS(842), - [aux_sym_float_token1] = ACTIONS(844), - [aux_sym_float_token2] = ACTIONS(842), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym_string_token1] = ACTIONS(842), - [aux_sym_string_token3] = ACTIONS(842), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [111] = { - [sym_operator] = STATE(1891), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(838), - [sym_identifier] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(838), - [anon_sym_package] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_import] = ACTIONS(836), + [141] = { + [sym__rhs_expression] = STATE(856), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(948), + [sym__lhs_expression] = STATE(2331), + [sym_builtin_type] = STATE(2322), + [sym_function_type] = STATE(2499), + [sym_type] = STATE(3234), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(856), + [sym_operator] = STATE(1910), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(968), + [sym_integer] = STATE(166), + [sym_float] = STATE(968), + [sym_bool] = STATE(968), + [sym_string] = STATE(928), + [sym_null] = STATE(968), + [sym_array] = STATE(968), + [sym_map] = STATE(968), + [sym_object] = STATE(968), + [sym_pair] = STATE(968), + [sym_identifier] = ACTIONS(1508), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(836), - [anon_sym_throw] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_cast] = ACTIONS(836), - [anon_sym_DOLLARtype] = ACTIONS(838), - [anon_sym_for] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_untyped] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_this] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_AT_COLON] = ACTIONS(838), - [anon_sym_try] = ACTIONS(836), - [anon_sym_catch] = ACTIONS(836), - [anon_sym_else] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_new] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_untyped] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1518), + [anon_sym_Void] = ACTIONS(1328), + [anon_sym_Int] = ACTIONS(1328), + [anon_sym_Float] = ACTIONS(1328), + [anon_sym_Bool] = ACTIONS(1328), + [anon_sym_Null] = ACTIONS(1328), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -25614,773 +30026,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(836), - [anon_sym_macro] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(836), - [anon_sym_static] = ACTIONS(836), - [anon_sym_public] = ACTIONS(836), - [anon_sym_private] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_inline] = ACTIONS(836), - [anon_sym_overload] = ACTIONS(836), - [anon_sym_override] = ACTIONS(836), - [anon_sym_final] = ACTIONS(836), - [anon_sym_class] = ACTIONS(836), - [anon_sym_interface] = ACTIONS(836), - [anon_sym_enum] = ACTIONS(836), - [anon_sym_typedef] = ACTIONS(836), - [anon_sym_function] = ACTIONS(836), - [anon_sym_var] = ACTIONS(836), - [aux_sym_integer_token1] = ACTIONS(836), - [aux_sym_integer_token2] = ACTIONS(838), - [aux_sym_float_token1] = ACTIONS(836), - [aux_sym_float_token2] = ACTIONS(838), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_string_token1] = ACTIONS(838), - [aux_sym_string_token3] = ACTIONS(838), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [112] = { - [sym_operator] = STATE(1913), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(842), - [anon_sym_package] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_import] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_using] = ACTIONS(844), - [anon_sym_throw] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_cast] = ACTIONS(844), - [anon_sym_DOLLARtype] = ACTIONS(842), - [anon_sym_for] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_untyped] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_this] = ACTIONS(844), - [anon_sym_QMARK] = ACTIONS(844), - [anon_sym_AT] = ACTIONS(844), - [anon_sym_AT_COLON] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(858), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(852), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_QMARK_QMARK] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(849), - [anon_sym_null] = ACTIONS(844), - [anon_sym_macro] = ACTIONS(844), - [anon_sym_abstract] = ACTIONS(844), - [anon_sym_static] = ACTIONS(844), - [anon_sym_public] = ACTIONS(844), - [anon_sym_private] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_inline] = ACTIONS(844), - [anon_sym_overload] = ACTIONS(844), - [anon_sym_override] = ACTIONS(844), - [anon_sym_final] = ACTIONS(844), - [anon_sym_class] = ACTIONS(844), - [anon_sym_interface] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(844), - [anon_sym_typedef] = ACTIONS(844), - [anon_sym_function] = ACTIONS(844), - [anon_sym_var] = ACTIONS(844), - [aux_sym_integer_token1] = ACTIONS(844), - [aux_sym_integer_token2] = ACTIONS(842), - [aux_sym_float_token1] = ACTIONS(844), - [aux_sym_float_token2] = ACTIONS(842), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym_string_token1] = ACTIONS(842), - [aux_sym_string_token3] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(842), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [113] = { - [sym__rhs_expression] = STATE(263), - [sym_member_expression] = STATE(293), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(263), - [sym__literal] = STATE(486), - [sym_integer] = STATE(486), - [sym_float] = STATE(486), - [sym_bool] = STATE(486), - [sym_string] = STATE(366), - [sym_null] = STATE(486), - [sym_array] = STATE(486), - [sym_map] = STATE(486), - [sym_object] = STATE(486), - [sym_pair] = STATE(486), - [sym_identifier] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(692), - [anon_sym_package] = ACTIONS(694), - [anon_sym_import] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_using] = ACTIONS(694), - [anon_sym_throw] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_cast] = ACTIONS(694), - [anon_sym_DOLLARtype] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_untyped] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_AT_COLON] = ACTIONS(692), - [anon_sym_try] = ACTIONS(694), - [anon_sym_catch] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_new] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(694), - [anon_sym_macro] = ACTIONS(694), - [anon_sym_abstract] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_extern] = ACTIONS(694), - [anon_sym_inline] = ACTIONS(694), - [anon_sym_overload] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_final] = ACTIONS(694), - [anon_sym_class] = ACTIONS(694), - [anon_sym_interface] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_typedef] = ACTIONS(694), - [anon_sym_function] = ACTIONS(694), - [anon_sym_var] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(694), - [aux_sym_integer_token2] = ACTIONS(692), - [aux_sym_float_token1] = ACTIONS(694), - [aux_sym_float_token2] = ACTIONS(692), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [aux_sym_string_token1] = ACTIONS(692), - [aux_sym_string_token3] = ACTIONS(692), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(692), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [114] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2744), - [sym_integer] = STATE(2744), - [sym_float] = STATE(2744), - [sym_bool] = STATE(2744), - [sym_string] = STATE(2213), - [sym_null] = STATE(2744), - [sym_array] = STATE(2744), - [sym_map] = STATE(2744), - [sym_object] = STATE(2744), - [sym_pair] = STATE(2744), - [aux_sym_member_expression_repeat1] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(764), - [sym_identifier] = ACTIONS(864), - [anon_sym_POUND] = ACTIONS(764), - [anon_sym_package] = ACTIONS(766), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_import] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_using] = ACTIONS(766), - [anon_sym_throw] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(766), - [anon_sym_DOLLARtype] = ACTIONS(764), - [anon_sym_for] = ACTIONS(766), - [anon_sym_return] = ACTIONS(766), - [anon_sym_untyped] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(778), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_AT_COLON] = ACTIONS(764), - [anon_sym_try] = ACTIONS(766), - [anon_sym_catch] = ACTIONS(766), - [anon_sym_else] = ACTIONS(766), - [anon_sym_if] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_do] = ACTIONS(766), - [anon_sym_new] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(764), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(766), - [anon_sym_abstract] = ACTIONS(766), - [anon_sym_static] = ACTIONS(766), - [anon_sym_public] = ACTIONS(766), - [anon_sym_private] = ACTIONS(766), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_inline] = ACTIONS(766), - [anon_sym_overload] = ACTIONS(766), - [anon_sym_override] = ACTIONS(766), - [anon_sym_final] = ACTIONS(766), - [anon_sym_class] = ACTIONS(766), - [anon_sym_interface] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_typedef] = ACTIONS(766), - [anon_sym_function] = ACTIONS(766), - [anon_sym_var] = ACTIONS(766), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [115] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2744), - [sym_integer] = STATE(2744), - [sym_float] = STATE(2744), - [sym_bool] = STATE(2744), - [sym_string] = STATE(2213), - [sym_null] = STATE(2744), - [sym_array] = STATE(2744), - [sym_map] = STATE(2744), - [sym_object] = STATE(2744), - [sym_pair] = STATE(2744), - [aux_sym_member_expression_repeat1] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(727), - [sym_identifier] = ACTIONS(866), - [anon_sym_POUND] = ACTIONS(727), - [anon_sym_package] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_import] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_using] = ACTIONS(729), - [anon_sym_throw] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_cast] = ACTIONS(729), - [anon_sym_DOLLARtype] = ACTIONS(727), - [anon_sym_for] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_this] = ACTIONS(869), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_AT_COLON] = ACTIONS(727), - [anon_sym_try] = ACTIONS(729), - [anon_sym_catch] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_new] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_GT_GT_GT] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(727), - [anon_sym_QMARK_QMARK] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [anon_sym_null] = ACTIONS(740), - [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(729), - [anon_sym_class] = ACTIONS(729), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_enum] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(729), - [anon_sym_function] = ACTIONS(729), - [anon_sym_var] = ACTIONS(729), - [aux_sym_integer_token1] = ACTIONS(743), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(749), - [aux_sym_float_token2] = ACTIONS(752), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [aux_sym_string_token1] = ACTIONS(758), - [aux_sym_string_token3] = ACTIONS(761), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [116] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2744), - [sym_integer] = STATE(2744), - [sym_float] = STATE(2744), - [sym_bool] = STATE(2744), - [sym_string] = STATE(2213), - [sym_null] = STATE(2744), - [sym_array] = STATE(2744), - [sym_map] = STATE(2744), - [sym_object] = STATE(2744), - [sym_pair] = STATE(2744), - [aux_sym_member_expression_repeat1] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(666), - [sym_identifier] = ACTIONS(864), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_package] = ACTIONS(668), - [anon_sym_DOT] = ACTIONS(668), - [anon_sym_import] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_using] = ACTIONS(668), - [anon_sym_throw] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(668), - [anon_sym_DOLLARtype] = ACTIONS(666), - [anon_sym_for] = ACTIONS(668), - [anon_sym_return] = ACTIONS(668), - [anon_sym_untyped] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(778), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_AT] = ACTIONS(668), - [anon_sym_AT_COLON] = ACTIONS(666), - [anon_sym_try] = ACTIONS(668), - [anon_sym_catch] = ACTIONS(668), - [anon_sym_else] = ACTIONS(668), - [anon_sym_if] = ACTIONS(668), - [anon_sym_while] = ACTIONS(668), - [anon_sym_do] = ACTIONS(668), - [anon_sym_new] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(668), - [anon_sym_GT_GT_GT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(668), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_GT] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(668), - [anon_sym_static] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(668), - [anon_sym_inline] = ACTIONS(668), - [anon_sym_overload] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_final] = ACTIONS(668), - [anon_sym_class] = ACTIONS(668), - [anon_sym_interface] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(668), - [anon_sym_typedef] = ACTIONS(668), - [anon_sym_function] = ACTIONS(668), - [anon_sym_var] = ACTIONS(668), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [117] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2744), - [sym_integer] = STATE(2744), - [sym_float] = STATE(2744), - [sym_bool] = STATE(2744), - [sym_string] = STATE(2213), - [sym_null] = STATE(2744), - [sym_array] = STATE(2744), - [sym_map] = STATE(2744), - [sym_object] = STATE(2744), - [sym_pair] = STATE(2744), - [aux_sym_member_expression_repeat1] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(768), - [sym_identifier] = ACTIONS(864), - [anon_sym_POUND] = ACTIONS(768), - [anon_sym_package] = ACTIONS(770), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_using] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_DOLLARtype] = ACTIONS(768), - [anon_sym_for] = ACTIONS(770), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(778), - [anon_sym_QMARK] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_AT_COLON] = ACTIONS(768), - [anon_sym_try] = ACTIONS(770), - [anon_sym_catch] = ACTIONS(770), - [anon_sym_else] = ACTIONS(770), - [anon_sym_if] = ACTIONS(770), - [anon_sym_while] = ACTIONS(770), - [anon_sym_do] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_GT] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(768), - [anon_sym_null] = ACTIONS(676), - [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_enum] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(770), - [anon_sym_function] = ACTIONS(770), - [anon_sym_var] = ACTIONS(770), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [118] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2744), - [sym_integer] = STATE(2744), - [sym_float] = STATE(2744), - [sym_bool] = STATE(2744), - [sym_string] = STATE(2213), - [sym_null] = STATE(2744), - [sym_array] = STATE(2744), - [sym_map] = STATE(2744), - [sym_object] = STATE(2744), - [sym_pair] = STATE(2744), - [aux_sym_member_expression_repeat1] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(772), - [sym_identifier] = ACTIONS(864), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_package] = ACTIONS(774), - [anon_sym_DOT] = ACTIONS(774), - [anon_sym_import] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_using] = ACTIONS(774), - [anon_sym_throw] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(774), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_for] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_untyped] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(778), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_AT] = ACTIONS(774), - [anon_sym_AT_COLON] = ACTIONS(772), - [anon_sym_try] = ACTIONS(774), - [anon_sym_catch] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_new] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [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(774), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(772), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(774), - [anon_sym_abstract] = ACTIONS(774), - [anon_sym_static] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(774), - [anon_sym_inline] = ACTIONS(774), - [anon_sym_overload] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_final] = ACTIONS(774), - [anon_sym_class] = ACTIONS(774), - [anon_sym_interface] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_typedef] = ACTIONS(774), - [anon_sym_function] = ACTIONS(774), - [anon_sym_var] = ACTIONS(774), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [142] = { + [sym__rhs_expression] = STATE(1099), + [sym__unaryExpression] = STATE(352), + [sym_runtime_type_check_expression] = STATE(352), + [sym_switch_expression] = STATE(352), + [sym_cast_expression] = STATE(352), + [sym_type_trace_expression] = STATE(352), + [sym__parenthesized_expression] = STATE(318), + [sym_range_expression] = STATE(352), + [sym_subscript_expression] = STATE(352), + [sym_member_expression] = STATE(1558), + [sym__lhs_expression] = STATE(2330), + [sym_builtin_type] = STATE(2486), + [sym_function_type] = STATE(2849), + [sym_type] = STATE(2971), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(1099), + [sym_operator] = STATE(2006), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1627), + [sym_integer] = STATE(324), + [sym_float] = STATE(1627), + [sym_bool] = STATE(1627), + [sym_string] = STATE(1369), + [sym_null] = STATE(1627), + [sym_array] = STATE(1627), + [sym_map] = STATE(1627), + [sym_object] = STATE(1627), + [sym_pair] = STATE(1627), + [sym_identifier] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(1526), + [anon_sym_DOLLARtype] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_untyped] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1536), + [anon_sym_Void] = ACTIONS(1538), + [anon_sym_Int] = ACTIONS(1538), + [anon_sym_Float] = ACTIONS(1538), + [anon_sym_Bool] = ACTIONS(1538), + [anon_sym_Null] = ACTIONS(1538), + [anon_sym_new] = ACTIONS(1364), + [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(57), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [119] = { - [sym_operator] = STATE(1826), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(121), - [ts_builtin_sym_end] = ACTIONS(872), - [sym_identifier] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(872), - [anon_sym_package] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), + [143] = { + [sym__rhs_expression] = STATE(976), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(948), + [sym__lhs_expression] = STATE(2331), + [sym_builtin_type] = STATE(2322), + [sym_function_type] = STATE(2499), + [sym_type] = STATE(2920), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(976), + [sym_operator] = STATE(1876), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(2054), + [sym_integer] = STATE(166), + [sym_float] = STATE(2054), + [sym_bool] = STATE(2054), + [sym_string] = STATE(1375), + [sym_null] = STATE(2054), + [sym_array] = STATE(2054), + [sym_map] = STATE(2054), + [sym_object] = STATE(2054), + [sym_pair] = STATE(2054), + [sym_identifier] = ACTIONS(1540), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_cast] = ACTIONS(874), - [anon_sym_DOLLARtype] = ACTIONS(872), - [anon_sym_for] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_untyped] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_this] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_AT_COLON] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_catch] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1542), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_untyped] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1518), + [anon_sym_Void] = ACTIONS(1328), + [anon_sym_Int] = ACTIONS(1328), + [anon_sym_Float] = ACTIONS(1328), + [anon_sym_Bool] = ACTIONS(1328), + [anon_sym_Null] = ACTIONS(1328), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -26407,81 +30222,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(874), - [anon_sym_macro] = ACTIONS(874), - [anon_sym_abstract] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_public] = ACTIONS(874), - [anon_sym_private] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(874), - [anon_sym_inline] = ACTIONS(874), - [anon_sym_overload] = ACTIONS(874), - [anon_sym_override] = ACTIONS(874), - [anon_sym_final] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_interface] = ACTIONS(874), - [anon_sym_enum] = ACTIONS(874), - [anon_sym_typedef] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [aux_sym_integer_token1] = ACTIONS(874), - [aux_sym_integer_token2] = ACTIONS(872), - [aux_sym_float_token1] = ACTIONS(874), - [aux_sym_float_token2] = ACTIONS(872), - [anon_sym_true] = ACTIONS(874), - [anon_sym_false] = ACTIONS(874), - [aux_sym_string_token1] = ACTIONS(872), - [aux_sym_string_token3] = ACTIONS(872), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [120] = { - [sym_operator] = STATE(106), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(186), - [sym__bitwiseOperator] = STATE(186), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(810), - [sym_identifier] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), + [144] = { + [sym_operator] = STATE(1869), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_package] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1476), + [anon_sym_throw] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_cast] = ACTIONS(1476), + [anon_sym_DOLLARtype] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_untyped] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_AT_COLON] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_catch] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1478), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_GT_GT_GT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_QMARK_QMARK] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1476), + [anon_sym_macro] = ACTIONS(1476), + [anon_sym_abstract] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_private] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_overload] = ACTIONS(1476), + [anon_sym_override] = ACTIONS(1476), + [anon_sym_final] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_interface] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(1476), + [anon_sym_var] = ACTIONS(1476), + [aux_sym_integer_token1] = ACTIONS(1476), + [aux_sym_integer_token2] = ACTIONS(1474), + [aux_sym_float_token1] = ACTIONS(1476), + [aux_sym_float_token2] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), + [aux_sym_string_token3] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1474), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [145] = { + [sym_operator] = STATE(120), + [sym__unaryOperator] = STATE(372), + [sym__prefixUnaryOperator] = STATE(372), + [sym__postfixUnaryOperator] = STATE(372), + [sym__binaryOperator] = STATE(372), + [sym__arithmeticOperator] = STATE(372), + [sym__bitwiseOperator] = STATE(372), + [sym__logicalOperator] = STATE(372), + [sym__comparisonOperator] = STATE(372), + [sym__miscOperator] = STATE(372), + [sym__assignmentOperator] = STATE(372), + [sym__compoundAssignmentOperator] = STATE(372), + [sym__rangeOperator] = STATE(372), + [aux_sym_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_package] = ACTIONS(1452), + [anon_sym_import] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_throw] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_this] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AT_COLON] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1468), + [anon_sym_GT_GT_GT] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_LT_EQ] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_GT_EQ] = ACTIONS(1466), + [anon_sym_EQ_GT] = ACTIONS(1466), + [anon_sym_QMARK_QMARK] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), + [anon_sym_null] = ACTIONS(1452), + [anon_sym_macro] = ACTIONS(1452), + [anon_sym_abstract] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_public] = ACTIONS(1452), + [anon_sym_private] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym_overload] = ACTIONS(1452), + [anon_sym_override] = ACTIONS(1452), + [anon_sym_final] = ACTIONS(1452), + [anon_sym_class] = ACTIONS(1452), + [anon_sym_interface] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_function] = ACTIONS(1452), + [anon_sym_var] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1452), + [aux_sym_integer_token2] = ACTIONS(1448), + [aux_sym_float_token1] = ACTIONS(1452), + [aux_sym_float_token2] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1448), + [aux_sym_string_token3] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1448), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [146] = { + [sym_operator] = STATE(130), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(199), + [sym__bitwiseOperator] = STATE(199), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(147), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_package] = ACTIONS(1452), + [anon_sym_import] = ACTIONS(1452), [anon_sym_STAR] = ACTIONS(57), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(810), - [anon_sym_for] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_this] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(810), - [anon_sym_try] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_new] = ACTIONS(814), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_throw] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_this] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AT_COLON] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1452), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(1498), [anon_sym_PLUS_PLUS] = ACTIONS(63), [anon_sym_DASH_DASH] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(57), @@ -26505,273 +30500,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(814), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_function] = ACTIONS(814), - [anon_sym_var] = ACTIONS(814), - [aux_sym_integer_token1] = ACTIONS(814), - [aux_sym_integer_token2] = ACTIONS(810), - [aux_sym_float_token1] = ACTIONS(814), - [aux_sym_float_token2] = ACTIONS(810), - [anon_sym_true] = ACTIONS(814), - [anon_sym_false] = ACTIONS(814), - [aux_sym_string_token1] = ACTIONS(810), - [aux_sym_string_token3] = ACTIONS(810), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [121] = { - [sym_operator] = STATE(1826), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(121), - [ts_builtin_sym_end] = ACTIONS(842), - [sym_identifier] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(842), - [anon_sym_package] = ACTIONS(844), - [anon_sym_import] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_using] = ACTIONS(844), - [anon_sym_throw] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_cast] = ACTIONS(844), - [anon_sym_DOLLARtype] = ACTIONS(842), - [anon_sym_for] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_untyped] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_this] = ACTIONS(844), - [anon_sym_AT] = ACTIONS(844), - [anon_sym_AT_COLON] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(858), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(852), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_QMARK_QMARK] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(849), - [anon_sym_null] = ACTIONS(844), - [anon_sym_macro] = ACTIONS(844), - [anon_sym_abstract] = ACTIONS(844), - [anon_sym_static] = ACTIONS(844), - [anon_sym_public] = ACTIONS(844), - [anon_sym_private] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_inline] = ACTIONS(844), - [anon_sym_overload] = ACTIONS(844), - [anon_sym_override] = ACTIONS(844), - [anon_sym_final] = ACTIONS(844), - [anon_sym_class] = ACTIONS(844), - [anon_sym_interface] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(844), - [anon_sym_typedef] = ACTIONS(844), - [anon_sym_function] = ACTIONS(844), - [anon_sym_var] = ACTIONS(844), - [aux_sym_integer_token1] = ACTIONS(844), - [aux_sym_integer_token2] = ACTIONS(842), - [aux_sym_float_token1] = ACTIONS(844), - [aux_sym_float_token2] = ACTIONS(842), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym_string_token1] = ACTIONS(842), - [aux_sym_string_token3] = ACTIONS(842), + [anon_sym_null] = ACTIONS(1452), + [anon_sym_macro] = ACTIONS(1452), + [anon_sym_abstract] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_public] = ACTIONS(1452), + [anon_sym_private] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym_overload] = ACTIONS(1452), + [anon_sym_override] = ACTIONS(1452), + [anon_sym_final] = ACTIONS(1452), + [anon_sym_class] = ACTIONS(1452), + [anon_sym_interface] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_function] = ACTIONS(1452), + [anon_sym_var] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1452), + [aux_sym_integer_token2] = ACTIONS(1448), + [aux_sym_float_token1] = ACTIONS(1452), + [aux_sym_float_token2] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1448), + [aux_sym_string_token3] = ACTIONS(1448), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [122] = { - [sym_operator] = STATE(113), - [sym__unaryOperator] = STATE(242), - [sym__prefixUnaryOperator] = STATE(242), - [sym__postfixUnaryOperator] = STATE(242), - [sym__binaryOperator] = STATE(242), - [sym__arithmeticOperator] = STATE(242), - [sym__bitwiseOperator] = STATE(242), - [sym__logicalOperator] = STATE(242), - [sym__comparisonOperator] = STATE(242), - [sym__miscOperator] = STATE(242), - [sym__assignmentOperator] = STATE(242), - [sym__compoundAssignmentOperator] = STATE(242), - [sym__rangeOperator] = STATE(242), - [aux_sym_expression_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(810), - [anon_sym_for] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_this] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(810), - [anon_sym_try] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_new] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_BANG] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_PLUS_PLUS] = ACTIONS(834), - [anon_sym_DASH_DASH] = ACTIONS(834), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_GT_GT_GT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(830), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_EQ_EQ] = ACTIONS(828), - [anon_sym_BANG_EQ] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_LT_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_EQ] = ACTIONS(828), - [anon_sym_EQ_GT] = ACTIONS(828), - [anon_sym_QMARK_QMARK] = ACTIONS(828), - [anon_sym_EQ] = ACTIONS(830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(828), - [anon_sym_null] = ACTIONS(814), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_function] = ACTIONS(814), - [anon_sym_var] = ACTIONS(814), - [aux_sym_integer_token1] = ACTIONS(814), - [aux_sym_integer_token2] = ACTIONS(810), - [aux_sym_float_token1] = ACTIONS(814), - [aux_sym_float_token2] = ACTIONS(810), - [anon_sym_true] = ACTIONS(814), - [anon_sym_false] = ACTIONS(814), - [aux_sym_string_token1] = ACTIONS(810), - [aux_sym_string_token3] = ACTIONS(810), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(810), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [123] = { - [sym_operator] = STATE(1903), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(872), - [anon_sym_package] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), + [147] = { + [sym_operator] = STATE(1978), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_package] = ACTIONS(1550), + [anon_sym_import] = ACTIONS(1550), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_cast] = ACTIONS(874), - [anon_sym_DOLLARtype] = ACTIONS(872), - [anon_sym_for] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_untyped] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_this] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_AT_COLON] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_catch] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), + [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_cast] = ACTIONS(1550), + [anon_sym_DOLLARtype] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1550), + [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_AT] = ACTIONS(1550), + [anon_sym_AT_COLON] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1550), + [anon_sym_catch] = ACTIONS(1550), + [anon_sym_else] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1550), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -26798,677 +30598,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(874), - [anon_sym_macro] = ACTIONS(874), - [anon_sym_abstract] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_public] = ACTIONS(874), - [anon_sym_private] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(874), - [anon_sym_inline] = ACTIONS(874), - [anon_sym_overload] = ACTIONS(874), - [anon_sym_override] = ACTIONS(874), - [anon_sym_final] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_interface] = ACTIONS(874), - [anon_sym_enum] = ACTIONS(874), - [anon_sym_typedef] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [aux_sym_integer_token1] = ACTIONS(874), - [aux_sym_integer_token2] = ACTIONS(872), - [aux_sym_float_token1] = ACTIONS(874), - [aux_sym_float_token2] = ACTIONS(872), - [anon_sym_true] = ACTIONS(874), - [anon_sym_false] = ACTIONS(874), - [aux_sym_string_token1] = ACTIONS(872), - [aux_sym_string_token3] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(872), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [124] = { - [sym_operator] = STATE(1903), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(842), - [anon_sym_package] = ACTIONS(844), - [anon_sym_import] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_using] = ACTIONS(844), - [anon_sym_throw] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_cast] = ACTIONS(844), - [anon_sym_DOLLARtype] = ACTIONS(842), - [anon_sym_for] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_untyped] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_this] = ACTIONS(844), - [anon_sym_AT] = ACTIONS(844), - [anon_sym_AT_COLON] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(858), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(852), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_QMARK_QMARK] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(849), - [anon_sym_null] = ACTIONS(844), - [anon_sym_macro] = ACTIONS(844), - [anon_sym_abstract] = ACTIONS(844), - [anon_sym_static] = ACTIONS(844), - [anon_sym_public] = ACTIONS(844), - [anon_sym_private] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_inline] = ACTIONS(844), - [anon_sym_overload] = ACTIONS(844), - [anon_sym_override] = ACTIONS(844), - [anon_sym_final] = ACTIONS(844), - [anon_sym_class] = ACTIONS(844), - [anon_sym_interface] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(844), - [anon_sym_typedef] = ACTIONS(844), - [anon_sym_function] = ACTIONS(844), - [anon_sym_var] = ACTIONS(844), - [aux_sym_integer_token1] = ACTIONS(844), - [aux_sym_integer_token2] = ACTIONS(842), - [aux_sym_float_token1] = ACTIONS(844), - [aux_sym_float_token2] = ACTIONS(842), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym_string_token1] = ACTIONS(842), - [aux_sym_string_token3] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(842), + [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_enum] = 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_unmarker] = ACTIONS(3), }, - [125] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2737), - [sym_integer] = STATE(2737), - [sym_float] = STATE(2737), - [sym_bool] = STATE(2737), - [sym_string] = STATE(2213), - [sym_null] = STATE(2737), - [sym_array] = STATE(2737), - [sym_map] = STATE(2737), - [sym_object] = STATE(2737), - [sym_pair] = STATE(2737), - [aux_sym_member_expression_repeat1] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(764), - [sym_identifier] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(764), - [anon_sym_package] = ACTIONS(766), - [anon_sym_import] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_using] = ACTIONS(766), - [anon_sym_throw] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(766), - [anon_sym_DOLLARtype] = ACTIONS(764), - [anon_sym_for] = ACTIONS(766), - [anon_sym_return] = ACTIONS(766), - [anon_sym_untyped] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_AT_COLON] = ACTIONS(764), - [anon_sym_try] = ACTIONS(766), - [anon_sym_catch] = ACTIONS(766), - [anon_sym_else] = ACTIONS(766), - [anon_sym_if] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_do] = ACTIONS(766), - [anon_sym_new] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(764), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(766), - [anon_sym_abstract] = ACTIONS(766), - [anon_sym_static] = ACTIONS(766), - [anon_sym_public] = ACTIONS(766), - [anon_sym_private] = ACTIONS(766), - [anon_sym_extern] = ACTIONS(766), - [anon_sym_inline] = ACTIONS(766), - [anon_sym_overload] = ACTIONS(766), - [anon_sym_override] = ACTIONS(766), - [anon_sym_final] = ACTIONS(766), - [anon_sym_class] = ACTIONS(766), - [anon_sym_interface] = ACTIONS(766), - [anon_sym_enum] = ACTIONS(766), - [anon_sym_typedef] = ACTIONS(766), - [anon_sym_function] = ACTIONS(766), - [anon_sym_var] = ACTIONS(766), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [126] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2737), - [sym_integer] = STATE(2737), - [sym_float] = STATE(2737), - [sym_bool] = STATE(2737), - [sym_string] = STATE(2213), - [sym_null] = STATE(2737), - [sym_array] = STATE(2737), - [sym_map] = STATE(2737), - [sym_object] = STATE(2737), - [sym_pair] = STATE(2737), - [aux_sym_member_expression_repeat1] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(768), - [sym_identifier] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(768), - [anon_sym_package] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_using] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_DOLLARtype] = ACTIONS(768), - [anon_sym_for] = ACTIONS(770), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_AT_COLON] = ACTIONS(768), - [anon_sym_try] = ACTIONS(770), - [anon_sym_catch] = ACTIONS(770), - [anon_sym_else] = ACTIONS(770), - [anon_sym_if] = ACTIONS(770), - [anon_sym_while] = ACTIONS(770), - [anon_sym_do] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_GT] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(768), - [anon_sym_null] = ACTIONS(676), - [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_enum] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(770), - [anon_sym_function] = ACTIONS(770), - [anon_sym_var] = ACTIONS(770), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [127] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2737), - [sym_integer] = STATE(2737), - [sym_float] = STATE(2737), - [sym_bool] = STATE(2737), - [sym_string] = STATE(2213), - [sym_null] = STATE(2737), - [sym_array] = STATE(2737), - [sym_map] = STATE(2737), - [sym_object] = STATE(2737), - [sym_pair] = STATE(2737), - [aux_sym_member_expression_repeat1] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(727), - [sym_identifier] = ACTIONS(878), - [anon_sym_POUND] = ACTIONS(727), - [anon_sym_package] = ACTIONS(729), - [anon_sym_import] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_using] = ACTIONS(729), - [anon_sym_throw] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_cast] = ACTIONS(729), - [anon_sym_DOLLARtype] = ACTIONS(727), - [anon_sym_for] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_this] = ACTIONS(881), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_AT_COLON] = ACTIONS(727), - [anon_sym_try] = ACTIONS(729), - [anon_sym_catch] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_new] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_GT_GT_GT] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(727), - [anon_sym_QMARK_QMARK] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [anon_sym_null] = ACTIONS(740), - [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(729), - [anon_sym_class] = ACTIONS(729), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_enum] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(729), - [anon_sym_function] = ACTIONS(729), - [anon_sym_var] = ACTIONS(729), - [aux_sym_integer_token1] = ACTIONS(743), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(749), - [aux_sym_float_token2] = ACTIONS(752), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [aux_sym_string_token1] = ACTIONS(758), - [aux_sym_string_token3] = ACTIONS(761), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [128] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2737), - [sym_integer] = STATE(2737), - [sym_float] = STATE(2737), - [sym_bool] = STATE(2737), - [sym_string] = STATE(2213), - [sym_null] = STATE(2737), - [sym_array] = STATE(2737), - [sym_map] = STATE(2737), - [sym_object] = STATE(2737), - [sym_pair] = STATE(2737), - [aux_sym_member_expression_repeat1] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(666), - [sym_identifier] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_package] = ACTIONS(668), - [anon_sym_import] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_using] = ACTIONS(668), - [anon_sym_throw] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(668), - [anon_sym_DOLLARtype] = ACTIONS(666), - [anon_sym_for] = ACTIONS(668), - [anon_sym_return] = ACTIONS(668), - [anon_sym_untyped] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(668), - [anon_sym_AT_COLON] = ACTIONS(666), - [anon_sym_try] = ACTIONS(668), - [anon_sym_catch] = ACTIONS(668), - [anon_sym_else] = ACTIONS(668), - [anon_sym_if] = ACTIONS(668), - [anon_sym_while] = ACTIONS(668), - [anon_sym_do] = ACTIONS(668), - [anon_sym_new] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(668), - [anon_sym_GT_GT_GT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(668), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_GT] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(668), - [anon_sym_static] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(668), - [anon_sym_inline] = ACTIONS(668), - [anon_sym_overload] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_final] = ACTIONS(668), - [anon_sym_class] = ACTIONS(668), - [anon_sym_interface] = ACTIONS(668), - [anon_sym_enum] = ACTIONS(668), - [anon_sym_typedef] = ACTIONS(668), - [anon_sym_function] = ACTIONS(668), - [anon_sym_var] = ACTIONS(668), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [129] = { - [sym_member_expression] = STATE(500), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2737), - [sym_integer] = STATE(2737), - [sym_float] = STATE(2737), - [sym_bool] = STATE(2737), - [sym_string] = STATE(2213), - [sym_null] = STATE(2737), - [sym_array] = STATE(2737), - [sym_map] = STATE(2737), - [sym_object] = STATE(2737), - [sym_pair] = STATE(2737), - [aux_sym_member_expression_repeat1] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(772), - [sym_identifier] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_package] = ACTIONS(774), - [anon_sym_import] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_using] = ACTIONS(774), - [anon_sym_throw] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(774), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_for] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_untyped] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(774), - [anon_sym_AT_COLON] = ACTIONS(772), - [anon_sym_try] = ACTIONS(774), - [anon_sym_catch] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_new] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [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(774), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(772), - [anon_sym_null] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(774), - [anon_sym_abstract] = ACTIONS(774), - [anon_sym_static] = ACTIONS(774), - [anon_sym_public] = ACTIONS(774), - [anon_sym_private] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(774), - [anon_sym_inline] = ACTIONS(774), - [anon_sym_overload] = ACTIONS(774), - [anon_sym_override] = ACTIONS(774), - [anon_sym_final] = ACTIONS(774), - [anon_sym_class] = ACTIONS(774), - [anon_sym_interface] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_typedef] = ACTIONS(774), - [anon_sym_function] = ACTIONS(774), - [anon_sym_var] = ACTIONS(774), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [130] = { - [sym__rhs_expression] = STATE(832), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(911), - [sym__lhs_expression] = STATE(2256), - [sym_builtin_type] = STATE(2261), - [sym_function_type] = STATE(2393), - [sym_type] = STATE(2933), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(832), - [sym_operator] = STATE(1931), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(920), - [sym_integer] = STATE(920), - [sym_float] = STATE(920), - [sym_bool] = STATE(920), - [sym_string] = STATE(912), - [sym_null] = STATE(920), - [sym_array] = STATE(920), - [sym_map] = STATE(920), - [sym_object] = STATE(920), - [sym_pair] = STATE(920), - [sym_identifier] = ACTIONS(884), + [148] = { + [sym_operator] = STATE(1869), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_package] = ACTIONS(1550), + [anon_sym_import] = ACTIONS(1550), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(886), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(888), - [anon_sym_untyped] = ACTIONS(890), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(894), - [anon_sym_Void] = ACTIONS(802), - [anon_sym_Int] = ACTIONS(802), - [anon_sym_Float] = ACTIONS(802), - [anon_sym_Bool] = ACTIONS(802), - [anon_sym_Null] = ACTIONS(802), - [anon_sym_new] = ACTIONS(780), + [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_cast] = ACTIONS(1550), + [anon_sym_DOLLARtype] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1550), + [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_AT] = ACTIONS(1550), + [anon_sym_AT_COLON] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1550), + [anon_sym_catch] = ACTIONS(1550), + [anon_sym_else] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1550), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -27495,77 +30695,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), + [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_enum] = 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__closing_brace_unmarker] = ACTIONS(3), }, - [131] = { - [sym__rhs_expression] = STATE(1037), - [sym__unaryExpression] = STATE(288), - [sym_runtime_type_check_expression] = STATE(288), - [sym_switch_expression] = STATE(288), - [sym_cast_expression] = STATE(288), - [sym_type_trace_expression] = STATE(288), - [sym__parenthesized_expression] = STATE(289), - [sym_subscript_expression] = STATE(288), - [sym_member_expression] = STATE(1522), - [sym__lhs_expression] = STATE(2269), - [sym_builtin_type] = STATE(2363), - [sym_function_type] = STATE(2642), - [sym_type] = STATE(2717), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(1037), - [sym_operator] = STATE(1874), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1621), - [sym_integer] = STATE(1621), - [sym_float] = STATE(1621), - [sym_bool] = STATE(1621), - [sym_string] = STATE(1302), - [sym_null] = STATE(1621), - [sym_array] = STATE(1621), - [sym_map] = STATE(1621), - [sym_object] = STATE(1621), - [sym_pair] = STATE(1621), - [sym_identifier] = ACTIONS(896), + [149] = { + [sym__rhs_expression] = STATE(976), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(948), + [sym__lhs_expression] = STATE(2331), + [sym_builtin_type] = STATE(2322), + [sym_function_type] = STATE(2499), + [sym_type] = STATE(2655), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(976), + [sym_operator] = STATE(1876), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(2054), + [sym_integer] = STATE(166), + [sym_float] = STATE(2054), + [sym_bool] = STATE(2054), + [sym_string] = STATE(1375), + [sym_null] = STATE(2054), + [sym_array] = STATE(2054), + [sym_map] = STATE(2054), + [sym_object] = STATE(2054), + [sym_pair] = STATE(2054), + [sym_identifier] = ACTIONS(1540), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(902), - [anon_sym_DOLLARtype] = ACTIONS(904), - [anon_sym_return] = ACTIONS(906), - [anon_sym_untyped] = ACTIONS(908), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(912), - [anon_sym_Void] = ACTIONS(914), - [anon_sym_Int] = ACTIONS(914), - [anon_sym_Float] = ACTIONS(914), - [anon_sym_Bool] = ACTIONS(914), - [anon_sym_Null] = ACTIONS(914), - [anon_sym_new] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1542), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_untyped] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1518), + [anon_sym_Void] = ACTIONS(1328), + [anon_sym_Int] = ACTIONS(1328), + [anon_sym_Float] = ACTIONS(1328), + [anon_sym_Bool] = ACTIONS(1328), + [anon_sym_Null] = ACTIONS(1328), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -27592,77 +30810,560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [132] = { - [sym__rhs_expression] = STATE(926), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(911), - [sym__lhs_expression] = STATE(2256), - [sym_builtin_type] = STATE(2261), - [sym_function_type] = STATE(2393), - [sym_type] = STATE(2464), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(926), - [sym_operator] = STATE(1729), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1976), - [sym_integer] = STATE(1976), - [sym_float] = STATE(1976), - [sym_bool] = STATE(1976), - [sym_string] = STATE(1308), - [sym_null] = STATE(1976), - [sym_array] = STATE(1976), - [sym_map] = STATE(1976), - [sym_object] = STATE(1976), - [sym_pair] = STATE(1976), - [sym_identifier] = ACTIONS(916), + [150] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3097), + [sym_integer] = STATE(3097), + [sym_float] = STATE(3097), + [sym_bool] = STATE(3097), + [sym_string] = STATE(2291), + [sym_null] = STATE(3097), + [sym_array] = STATE(3097), + [sym_map] = STATE(3097), + [sym_object] = STATE(3097), + [sym_pair] = STATE(3097), + [aux_sym_member_expression_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_package] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_using] = ACTIONS(1390), + [anon_sym_throw] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1390), + [anon_sym_DOLLARtype] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_AT_COLON] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_catch] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_GT_GT_GT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1388), + [anon_sym_QMARK_QMARK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1390), + [anon_sym_abstract] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_private] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_overload] = ACTIONS(1390), + [anon_sym_override] = ACTIONS(1390), + [anon_sym_final] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_interface] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_function] = ACTIONS(1390), + [anon_sym_var] = ACTIONS(1390), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [151] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3097), + [sym_integer] = STATE(3097), + [sym_float] = STATE(3097), + [sym_bool] = STATE(3097), + [sym_string] = STATE(2291), + [sym_null] = STATE(3097), + [sym_array] = STATE(3097), + [sym_map] = STATE(3097), + [sym_object] = STATE(3097), + [sym_pair] = STATE(3097), + [aux_sym_member_expression_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_package] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_using] = ACTIONS(1386), + [anon_sym_throw] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1386), + [anon_sym_DOLLARtype] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1386), + [anon_sym_AT_COLON] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_catch] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1384), + [anon_sym_QMARK_QMARK] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1332), + [anon_sym_macro] = ACTIONS(1386), + [anon_sym_abstract] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_overload] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_final] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_interface] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1386), + [anon_sym_var] = ACTIONS(1386), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [152] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3097), + [sym_integer] = STATE(3097), + [sym_float] = STATE(3097), + [sym_bool] = STATE(3097), + [sym_string] = STATE(2291), + [sym_null] = STATE(3097), + [sym_array] = STATE(3097), + [sym_map] = STATE(3097), + [sym_object] = STATE(3097), + [sym_pair] = STATE(3097), + [aux_sym_member_expression_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_package] = ACTIONS(1442), + [anon_sym_import] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_using] = ACTIONS(1442), + [anon_sym_throw] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1442), + [anon_sym_DOLLARtype] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_untyped] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_AT_COLON] = ACTIONS(1440), + [anon_sym_try] = ACTIONS(1442), + [anon_sym_catch] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1332), + [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_enum] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_function] = ACTIONS(1442), + [anon_sym_var] = ACTIONS(1442), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [153] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3097), + [sym_integer] = STATE(3097), + [sym_float] = STATE(3097), + [sym_bool] = STATE(3097), + [sym_string] = STATE(2291), + [sym_null] = STATE(3097), + [sym_array] = STATE(3097), + [sym_map] = STATE(3097), + [sym_object] = STATE(3097), + [sym_pair] = STATE(3097), + [aux_sym_member_expression_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_package] = ACTIONS(1438), + [anon_sym_import] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_throw] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1438), + [anon_sym_DOLLARtype] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_untyped] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_AT_COLON] = ACTIONS(1436), + [anon_sym_try] = ACTIONS(1438), + [anon_sym_catch] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1332), + [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_enum] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_function] = ACTIONS(1438), + [anon_sym_var] = ACTIONS(1438), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [154] = { + [sym_member_expression] = STATE(570), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3097), + [sym_integer] = STATE(3097), + [sym_float] = STATE(3097), + [sym_bool] = STATE(3097), + [sym_string] = STATE(2291), + [sym_null] = STATE(3097), + [sym_array] = STATE(3097), + [sym_map] = STATE(3097), + [sym_object] = STATE(3097), + [sym_pair] = STATE(3097), + [aux_sym_member_expression_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_package] = ACTIONS(1397), + [anon_sym_import] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_using] = ACTIONS(1397), + [anon_sym_throw] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_cast] = ACTIONS(1397), + [anon_sym_DOLLARtype] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_untyped] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_this] = ACTIONS(1557), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_AT_COLON] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1397), + [anon_sym_catch] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1408), + [anon_sym_macro] = ACTIONS(1397), + [anon_sym_abstract] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_public] = ACTIONS(1397), + [anon_sym_private] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [anon_sym_overload] = ACTIONS(1397), + [anon_sym_override] = ACTIONS(1397), + [anon_sym_final] = ACTIONS(1397), + [anon_sym_class] = ACTIONS(1397), + [anon_sym_interface] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_function] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [aux_sym_integer_token1] = ACTIONS(1411), + [aux_sym_integer_token2] = ACTIONS(1414), + [aux_sym_float_token1] = ACTIONS(1417), + [aux_sym_float_token2] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [aux_sym_string_token1] = ACTIONS(1426), + [aux_sym_string_token3] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [155] = { + [sym__rhs_expression] = STATE(1075), + [sym__unaryExpression] = STATE(2877), + [sym_runtime_type_check_expression] = STATE(2877), + [sym_switch_expression] = STATE(2877), + [sym_cast_expression] = STATE(2877), + [sym_type_trace_expression] = STATE(2877), + [sym__parenthesized_expression] = STATE(2408), + [sym_for_statement] = STATE(308), + [sym_range_expression] = STATE(2877), + [sym_subscript_expression] = STATE(2877), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym_while_statement] = STATE(308), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1075), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1561), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(918), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(920), - [anon_sym_untyped] = ACTIONS(922), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(894), - [anon_sym_Void] = ACTIONS(802), - [anon_sym_Int] = ACTIONS(802), - [anon_sym_Float] = ACTIONS(802), - [anon_sym_Bool] = ACTIONS(802), - [anon_sym_Null] = ACTIONS(802), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_untyped] = ACTIONS(1568), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -27689,77 +31390,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [133] = { - [sym__rhs_expression] = STATE(832), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(911), - [sym__lhs_expression] = STATE(2256), - [sym_builtin_type] = STATE(2261), - [sym_function_type] = STATE(2393), - [sym_type] = STATE(2530), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(832), - [sym_operator] = STATE(1931), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(920), - [sym_integer] = STATE(920), - [sym_float] = STATE(920), - [sym_bool] = STATE(920), - [sym_string] = STATE(912), - [sym_null] = STATE(920), - [sym_array] = STATE(920), - [sym_map] = STATE(920), - [sym_object] = STATE(920), - [sym_pair] = STATE(920), - [sym_identifier] = ACTIONS(884), + [156] = { + [sym__rhs_expression] = STATE(1027), + [sym__unaryExpression] = STATE(3093), + [sym_runtime_type_check_expression] = STATE(3093), + [sym_switch_expression] = STATE(3093), + [sym_cast_expression] = STATE(3093), + [sym_type_trace_expression] = STATE(3093), + [sym__parenthesized_expression] = STATE(2402), + [sym_for_statement] = STATE(266), + [sym_range_expression] = STATE(3093), + [sym_subscript_expression] = STATE(3093), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym_while_statement] = STATE(266), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1027), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1536), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(886), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(888), - [anon_sym_untyped] = ACTIONS(890), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(894), - [anon_sym_Void] = ACTIONS(802), - [anon_sym_Int] = ACTIONS(802), - [anon_sym_Float] = ACTIONS(802), - [anon_sym_Bool] = ACTIONS(802), - [anon_sym_Null] = ACTIONS(802), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1576), + [anon_sym_untyped] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_continue] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -27786,77 +31485,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [134] = { - [sym__rhs_expression] = STATE(926), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(911), - [sym__lhs_expression] = STATE(2256), - [sym_builtin_type] = STATE(2261), - [sym_function_type] = STATE(2393), - [sym_type] = STATE(2794), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(926), - [sym_operator] = STATE(1729), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1976), - [sym_integer] = STATE(1976), - [sym_float] = STATE(1976), - [sym_bool] = STATE(1976), - [sym_string] = STATE(1308), - [sym_null] = STATE(1976), - [sym_array] = STATE(1976), - [sym_map] = STATE(1976), - [sym_object] = STATE(1976), - [sym_pair] = STATE(1976), - [sym_identifier] = ACTIONS(916), + [157] = { + [sym__rhs_expression] = STATE(1060), + [sym__unaryExpression] = STATE(3056), + [sym_runtime_type_check_expression] = STATE(3056), + [sym_switch_expression] = STATE(3056), + [sym_cast_expression] = STATE(3056), + [sym_type_trace_expression] = STATE(3056), + [sym__parenthesized_expression] = STATE(2399), + [sym_for_statement] = STATE(313), + [sym_range_expression] = STATE(3056), + [sym_subscript_expression] = STATE(3056), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym_while_statement] = STATE(313), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1060), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1548), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(918), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(920), - [anon_sym_untyped] = ACTIONS(922), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(894), - [anon_sym_Void] = ACTIONS(802), - [anon_sym_Int] = ACTIONS(802), - [anon_sym_Float] = ACTIONS(802), - [anon_sym_Bool] = ACTIONS(802), - [anon_sym_Null] = ACTIONS(802), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_untyped] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -27883,253 +31580,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [135] = { - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(924), - [anon_sym_package] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_using] = ACTIONS(926), - [anon_sym_throw] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_cast] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_DOLLARtype] = ACTIONS(924), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_untyped] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_RBRACK] = ACTIONS(924), - [anon_sym_this] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym_AT_COLON] = ACTIONS(924), - [anon_sym_try] = ACTIONS(926), - [anon_sym_catch] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_new] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(926), - [anon_sym_GT_GT_GT] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(926), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_QMARK] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(924), - [anon_sym_null] = ACTIONS(926), - [anon_sym_macro] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_static] = ACTIONS(926), - [anon_sym_public] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_overload] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_interface] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_function] = ACTIONS(926), - [anon_sym_var] = ACTIONS(926), - [aux_sym_integer_token1] = ACTIONS(926), - [aux_sym_integer_token2] = ACTIONS(924), - [aux_sym_float_token1] = ACTIONS(926), - [aux_sym_float_token2] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [aux_sym_string_token1] = ACTIONS(924), - [aux_sym_string_token3] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [136] = { - [ts_builtin_sym_end] = ACTIONS(928), - [sym_identifier] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(928), - [anon_sym_package] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_import] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_using] = ACTIONS(931), - [anon_sym_throw] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_COLON] = ACTIONS(928), - [anon_sym_cast] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_DOLLARtype] = ACTIONS(928), - [anon_sym_for] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_untyped] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_RBRACK] = ACTIONS(928), - [anon_sym_this] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_AT_COLON] = ACTIONS(928), - [anon_sym_try] = ACTIONS(931), - [anon_sym_catch] = ACTIONS(931), - [anon_sym_else] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(931), - [anon_sym_new] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_EQ_GT] = ACTIONS(928), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(928), - [anon_sym_null] = ACTIONS(931), - [anon_sym_macro] = ACTIONS(931), - [anon_sym_abstract] = ACTIONS(931), - [anon_sym_static] = ACTIONS(931), - [anon_sym_public] = ACTIONS(931), - [anon_sym_private] = ACTIONS(931), - [anon_sym_extern] = ACTIONS(931), - [anon_sym_inline] = ACTIONS(931), - [anon_sym_overload] = ACTIONS(931), - [anon_sym_override] = ACTIONS(931), - [anon_sym_final] = ACTIONS(931), - [anon_sym_class] = ACTIONS(931), - [anon_sym_interface] = ACTIONS(931), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_typedef] = ACTIONS(931), - [anon_sym_function] = ACTIONS(931), - [anon_sym_var] = ACTIONS(931), - [aux_sym_integer_token1] = ACTIONS(931), - [aux_sym_integer_token2] = ACTIONS(928), - [aux_sym_float_token1] = ACTIONS(931), - [aux_sym_float_token2] = ACTIONS(928), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [aux_sym_string_token1] = ACTIONS(928), - [aux_sym_string_token3] = ACTIONS(928), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [137] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(138), - [sym_runtime_type_check_expression] = STATE(138), - [sym_switch_expression] = STATE(138), - [sym_cast_expression] = STATE(138), - [sym_type_trace_expression] = STATE(138), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(138), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(934), + [158] = { + [sym__rhs_expression] = STATE(1055), + [sym__unaryExpression] = STATE(3033), + [sym_runtime_type_check_expression] = STATE(3033), + [sym_switch_expression] = STATE(3033), + [sym_cast_expression] = STATE(3033), + [sym_type_trace_expression] = STATE(3033), + [sym__parenthesized_expression] = STATE(2415), + [sym_for_statement] = STATE(257), + [sym_range_expression] = STATE(3033), + [sym_subscript_expression] = STATE(3033), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym_while_statement] = STATE(257), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1055), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1515), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1592), + [anon_sym_untyped] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -28156,162 +31675,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [138] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(138), - [sym_runtime_type_check_expression] = STATE(138), - [sym_switch_expression] = STATE(138), - [sym_cast_expression] = STATE(138), - [sym_type_trace_expression] = STATE(138), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(138), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_switch] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_cast] = ACTIONS(961), - [anon_sym_DOLLARtype] = ACTIONS(964), - [anon_sym_return] = ACTIONS(967), - [anon_sym_untyped] = ACTIONS(970), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_this] = ACTIONS(979), - [anon_sym_new] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_LT_LT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_GT_GT_GT] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(985), - [anon_sym_BANG_EQ] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(985), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_EQ] = ACTIONS(985), - [anon_sym_EQ_GT] = ACTIONS(985), - [anon_sym_QMARK_QMARK] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(985), - [anon_sym_null] = ACTIONS(1000), - [aux_sym_integer_token1] = ACTIONS(1003), - [aux_sym_integer_token2] = ACTIONS(1006), - [aux_sym_float_token1] = ACTIONS(1009), - [aux_sym_float_token2] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [aux_sym_string_token1] = ACTIONS(1018), - [aux_sym_string_token3] = ACTIONS(1021), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [139] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(138), - [sym_runtime_type_check_expression] = STATE(138), - [sym_switch_expression] = STATE(138), - [sym_cast_expression] = STATE(138), - [sym_type_trace_expression] = STATE(138), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(138), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(934), + [159] = { + [sym__rhs_expression] = STATE(1008), + [sym__unaryExpression] = STATE(3062), + [sym_runtime_type_check_expression] = STATE(3062), + [sym_switch_expression] = STATE(3062), + [sym_cast_expression] = STATE(3062), + [sym_type_trace_expression] = STATE(3062), + [sym__parenthesized_expression] = STATE(2401), + [sym_for_statement] = STATE(315), + [sym_range_expression] = STATE(3062), + [sym_subscript_expression] = STATE(3062), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym_while_statement] = STATE(315), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1008), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1570), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1600), + [anon_sym_untyped] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1604), + [anon_sym_continue] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -28338,71 +31770,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [140] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(144), - [sym_runtime_type_check_expression] = STATE(144), - [sym_switch_expression] = STATE(144), - [sym_cast_expression] = STATE(144), - [sym_type_trace_expression] = STATE(144), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(144), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_structure_type_pair] = STATE(3246), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(1026), + [160] = { + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(170), + [sym_subscript_expression] = STATE(170), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(798), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -28429,344 +31862,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [141] = { - [ts_builtin_sym_end] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(1028), - [anon_sym_package] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_import] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1028), - [anon_sym_using] = ACTIONS(1030), - [anon_sym_throw] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_COLON] = ACTIONS(1028), - [anon_sym_cast] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1028), - [anon_sym_DOLLARtype] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_untyped] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_RBRACK] = ACTIONS(1028), - [anon_sym_this] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(1030), - [anon_sym_AT] = ACTIONS(1030), - [anon_sym_AT_COLON] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_catch] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_new] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1028), - [anon_sym_SLASH] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_LT_LT] = ACTIONS(1028), - [anon_sym_GT_GT] = ACTIONS(1030), - [anon_sym_GT_GT_GT] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1028), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE_PIPE] = ACTIONS(1028), - [anon_sym_EQ_EQ] = ACTIONS(1028), - [anon_sym_BANG_EQ] = ACTIONS(1028), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_LT_EQ] = ACTIONS(1028), - [anon_sym_GT] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1028), - [anon_sym_EQ_GT] = ACTIONS(1028), - [anon_sym_QMARK_QMARK] = ACTIONS(1028), - [anon_sym_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1030), - [anon_sym_macro] = ACTIONS(1030), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_public] = ACTIONS(1030), - [anon_sym_private] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_overload] = ACTIONS(1030), - [anon_sym_override] = ACTIONS(1030), - [anon_sym_final] = ACTIONS(1030), - [anon_sym_class] = ACTIONS(1030), - [anon_sym_interface] = ACTIONS(1030), - [anon_sym_enum] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1030), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_var] = ACTIONS(1030), - [aux_sym_integer_token1] = ACTIONS(1030), - [aux_sym_integer_token2] = ACTIONS(1028), - [aux_sym_float_token1] = ACTIONS(1030), - [aux_sym_float_token2] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [aux_sym_string_token1] = ACTIONS(1028), - [aux_sym_string_token3] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [142] = { - [ts_builtin_sym_end] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1032), - [anon_sym_package] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_import] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1032), - [anon_sym_using] = ACTIONS(1034), - [anon_sym_throw] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_COLON] = ACTIONS(1032), - [anon_sym_cast] = ACTIONS(1034), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_DOLLARtype] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_untyped] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_RBRACK] = ACTIONS(1032), - [anon_sym_this] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1034), - [anon_sym_AT] = ACTIONS(1034), - [anon_sym_AT_COLON] = ACTIONS(1032), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_PERCENT] = ACTIONS(1032), - [anon_sym_SLASH] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1034), - [anon_sym_GT_GT_GT] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1032), - [anon_sym_EQ_GT] = ACTIONS(1032), - [anon_sym_QMARK_QMARK] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1034), - [anon_sym_macro] = ACTIONS(1034), - [anon_sym_abstract] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1034), - [anon_sym_public] = ACTIONS(1034), - [anon_sym_private] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_overload] = ACTIONS(1034), - [anon_sym_override] = ACTIONS(1034), - [anon_sym_final] = ACTIONS(1034), - [anon_sym_class] = ACTIONS(1034), - [anon_sym_interface] = ACTIONS(1034), - [anon_sym_enum] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1034), - [anon_sym_function] = ACTIONS(1034), - [anon_sym_var] = ACTIONS(1034), - [aux_sym_integer_token1] = ACTIONS(1034), - [aux_sym_integer_token2] = ACTIONS(1032), - [aux_sym_float_token1] = ACTIONS(1034), - [aux_sym_float_token2] = ACTIONS(1032), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [aux_sym_string_token1] = ACTIONS(1032), - [aux_sym_string_token3] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_package] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_import] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1036), - [anon_sym_using] = ACTIONS(1038), - [anon_sym_throw] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_COLON] = ACTIONS(1036), - [anon_sym_cast] = ACTIONS(1038), - [anon_sym_COMMA] = ACTIONS(1036), - [anon_sym_DOLLARtype] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_untyped] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_RBRACK] = ACTIONS(1036), - [anon_sym_this] = ACTIONS(1038), - [anon_sym_QMARK] = ACTIONS(1038), - [anon_sym_AT] = ACTIONS(1038), - [anon_sym_AT_COLON] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1038), - [anon_sym_catch] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_new] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1036), - [anon_sym_SLASH] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1038), - [anon_sym_GT_GT_GT] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1038), - [anon_sym_CARET] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [anon_sym_EQ_EQ] = ACTIONS(1036), - [anon_sym_BANG_EQ] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_LT_EQ] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1036), - [anon_sym_EQ_GT] = ACTIONS(1036), - [anon_sym_QMARK_QMARK] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1038), - [anon_sym_macro] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_public] = ACTIONS(1038), - [anon_sym_private] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym_inline] = ACTIONS(1038), - [anon_sym_overload] = ACTIONS(1038), - [anon_sym_override] = ACTIONS(1038), - [anon_sym_final] = ACTIONS(1038), - [anon_sym_class] = ACTIONS(1038), - [anon_sym_interface] = ACTIONS(1038), - [anon_sym_enum] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(1038), - [anon_sym_var] = ACTIONS(1038), - [aux_sym_integer_token1] = ACTIONS(1038), - [aux_sym_integer_token2] = ACTIONS(1036), - [aux_sym_float_token1] = ACTIONS(1038), - [aux_sym_float_token2] = ACTIONS(1036), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [aux_sym_string_token1] = ACTIONS(1036), - [aux_sym_string_token3] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [144] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(138), - [sym_runtime_type_check_expression] = STATE(138), - [sym_switch_expression] = STATE(138), - [sym_cast_expression] = STATE(138), - [sym_type_trace_expression] = STATE(138), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(138), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(934), + [161] = { + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(170), + [sym_subscript_expression] = STATE(170), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -28793,981 +31954,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [145] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_package] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_import] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_using] = ACTIONS(1044), - [anon_sym_throw] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_RPAREN] = ACTIONS(1042), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_COLON] = ACTIONS(1042), - [anon_sym_cast] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_DOLLARtype] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_untyped] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_RBRACK] = ACTIONS(1042), - [anon_sym_this] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_AT] = ACTIONS(1044), - [anon_sym_AT_COLON] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PERCENT] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1042), - [anon_sym_GT_GT] = ACTIONS(1044), - [anon_sym_GT_GT_GT] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1042), - [anon_sym_AMP_AMP] = ACTIONS(1042), - [anon_sym_PIPE_PIPE] = ACTIONS(1042), - [anon_sym_EQ_EQ] = ACTIONS(1042), - [anon_sym_BANG_EQ] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1044), - [anon_sym_LT_EQ] = ACTIONS(1042), - [anon_sym_GT] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1042), - [anon_sym_EQ_GT] = ACTIONS(1042), - [anon_sym_QMARK_QMARK] = ACTIONS(1042), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1044), - [anon_sym_macro] = ACTIONS(1044), - [anon_sym_abstract] = ACTIONS(1044), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_overload] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_final] = ACTIONS(1044), - [anon_sym_class] = ACTIONS(1044), - [anon_sym_interface] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_function] = ACTIONS(1044), - [anon_sym_var] = ACTIONS(1044), - [aux_sym_integer_token1] = ACTIONS(1044), - [aux_sym_integer_token2] = ACTIONS(1042), - [aux_sym_float_token1] = ACTIONS(1044), - [aux_sym_float_token2] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [aux_sym_string_token1] = ACTIONS(1042), - [aux_sym_string_token3] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_RBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1046), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(1056), - [anon_sym_package] = ACTIONS(1058), - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_import] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1056), - [anon_sym_using] = ACTIONS(1058), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_COLON] = ACTIONS(1056), - [anon_sym_cast] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1056), - [anon_sym_DOLLARtype] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_untyped] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_RBRACK] = ACTIONS(1056), - [anon_sym_this] = ACTIONS(1058), - [anon_sym_QMARK] = ACTIONS(1058), - [anon_sym_AT] = ACTIONS(1058), - [anon_sym_AT_COLON] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1058), - [anon_sym_catch] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_new] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1056), - [anon_sym_PERCENT] = ACTIONS(1056), - [anon_sym_SLASH] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_LT_LT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_GT_GT_GT] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_CARET] = ACTIONS(1056), - [anon_sym_AMP_AMP] = ACTIONS(1056), - [anon_sym_PIPE_PIPE] = ACTIONS(1056), - [anon_sym_EQ_EQ] = ACTIONS(1056), - [anon_sym_BANG_EQ] = ACTIONS(1056), - [anon_sym_LT] = ACTIONS(1058), - [anon_sym_LT_EQ] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1058), - [anon_sym_GT_EQ] = ACTIONS(1056), - [anon_sym_EQ_GT] = ACTIONS(1056), - [anon_sym_QMARK_QMARK] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), - [anon_sym_null] = ACTIONS(1058), - [anon_sym_macro] = ACTIONS(1058), - [anon_sym_abstract] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1058), - [anon_sym_public] = ACTIONS(1058), - [anon_sym_private] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_inline] = ACTIONS(1058), - [anon_sym_overload] = ACTIONS(1058), - [anon_sym_override] = ACTIONS(1058), - [anon_sym_final] = ACTIONS(1058), - [anon_sym_class] = ACTIONS(1058), - [anon_sym_interface] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(1058), - [anon_sym_var] = ACTIONS(1058), - [aux_sym_integer_token1] = ACTIONS(1058), - [aux_sym_integer_token2] = ACTIONS(1056), - [aux_sym_float_token1] = ACTIONS(1058), - [aux_sym_float_token2] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [aux_sym_string_token1] = ACTIONS(1056), - [aux_sym_string_token3] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [148] = { - [ts_builtin_sym_end] = ACTIONS(1060), - [sym_identifier] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(1060), - [anon_sym_package] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_import] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_using] = ACTIONS(1062), - [anon_sym_throw] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_COLON] = ACTIONS(1060), - [anon_sym_cast] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_DOLLARtype] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_untyped] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_this] = ACTIONS(1062), - [anon_sym_QMARK] = ACTIONS(1062), - [anon_sym_AT] = ACTIONS(1062), - [anon_sym_AT_COLON] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_catch] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_new] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1060), - [anon_sym_SLASH] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1062), - [anon_sym_GT_GT_GT] = ACTIONS(1060), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_CARET] = ACTIONS(1060), - [anon_sym_AMP_AMP] = ACTIONS(1060), - [anon_sym_PIPE_PIPE] = ACTIONS(1060), - [anon_sym_EQ_EQ] = ACTIONS(1060), - [anon_sym_BANG_EQ] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1062), - [anon_sym_LT_EQ] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1062), - [anon_sym_GT_EQ] = ACTIONS(1060), - [anon_sym_EQ_GT] = ACTIONS(1060), - [anon_sym_QMARK_QMARK] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1062), - [anon_sym_macro] = ACTIONS(1062), - [anon_sym_abstract] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_public] = ACTIONS(1062), - [anon_sym_private] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym_overload] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1062), - [anon_sym_final] = ACTIONS(1062), - [anon_sym_class] = ACTIONS(1062), - [anon_sym_interface] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_function] = ACTIONS(1062), - [anon_sym_var] = ACTIONS(1062), - [aux_sym_integer_token1] = ACTIONS(1062), - [aux_sym_integer_token2] = ACTIONS(1060), - [aux_sym_float_token1] = ACTIONS(1062), - [aux_sym_float_token2] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [aux_sym_string_token1] = ACTIONS(1060), - [aux_sym_string_token3] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(1064), - [sym_identifier] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(1064), - [anon_sym_package] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_import] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_using] = ACTIONS(1066), - [anon_sym_throw] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_COLON] = ACTIONS(1064), - [anon_sym_cast] = ACTIONS(1066), - [anon_sym_COMMA] = ACTIONS(1064), - [anon_sym_DOLLARtype] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_untyped] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_RBRACK] = ACTIONS(1064), - [anon_sym_this] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_AT] = ACTIONS(1066), - [anon_sym_AT_COLON] = ACTIONS(1064), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_new] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1064), - [anon_sym_SLASH] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_GT_GT_GT] = ACTIONS(1064), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_CARET] = ACTIONS(1064), - [anon_sym_AMP_AMP] = ACTIONS(1064), - [anon_sym_PIPE_PIPE] = ACTIONS(1064), - [anon_sym_EQ_EQ] = ACTIONS(1064), - [anon_sym_BANG_EQ] = ACTIONS(1064), - [anon_sym_LT] = ACTIONS(1066), - [anon_sym_LT_EQ] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1064), - [anon_sym_EQ_GT] = ACTIONS(1064), - [anon_sym_QMARK_QMARK] = ACTIONS(1064), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1066), - [anon_sym_macro] = ACTIONS(1066), - [anon_sym_abstract] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_public] = ACTIONS(1066), - [anon_sym_private] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_inline] = ACTIONS(1066), - [anon_sym_overload] = ACTIONS(1066), - [anon_sym_override] = ACTIONS(1066), - [anon_sym_final] = ACTIONS(1066), - [anon_sym_class] = ACTIONS(1066), - [anon_sym_interface] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1066), - [anon_sym_function] = ACTIONS(1066), - [anon_sym_var] = ACTIONS(1066), - [aux_sym_integer_token1] = ACTIONS(1066), - [aux_sym_integer_token2] = ACTIONS(1064), - [aux_sym_float_token1] = ACTIONS(1066), - [aux_sym_float_token2] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [aux_sym_string_token1] = ACTIONS(1064), - [aux_sym_string_token3] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_RBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1046), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(1068), - [anon_sym_package] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_import] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_using] = ACTIONS(1070), - [anon_sym_throw] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_COLON] = ACTIONS(1068), - [anon_sym_cast] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_DOLLARtype] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_untyped] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_this] = ACTIONS(1070), - [anon_sym_QMARK] = ACTIONS(1070), - [anon_sym_AT] = ACTIONS(1070), - [anon_sym_AT_COLON] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PERCENT] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_LT_LT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1070), - [anon_sym_GT_GT_GT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [anon_sym_EQ_EQ] = ACTIONS(1068), - [anon_sym_BANG_EQ] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1068), - [anon_sym_EQ_GT] = ACTIONS(1068), - [anon_sym_QMARK_QMARK] = ACTIONS(1068), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_macro] = ACTIONS(1070), - [anon_sym_abstract] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_inline] = ACTIONS(1070), - [anon_sym_overload] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_final] = ACTIONS(1070), - [anon_sym_class] = ACTIONS(1070), - [anon_sym_interface] = ACTIONS(1070), - [anon_sym_enum] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1070), - [anon_sym_function] = ACTIONS(1070), - [anon_sym_var] = ACTIONS(1070), - [aux_sym_integer_token1] = ACTIONS(1070), - [aux_sym_integer_token2] = ACTIONS(1068), - [aux_sym_float_token1] = ACTIONS(1070), - [aux_sym_float_token2] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym_string_token1] = ACTIONS(1068), - [aux_sym_string_token3] = ACTIONS(1068), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [152] = { - [ts_builtin_sym_end] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1074), - [anon_sym_POUND] = ACTIONS(1072), - [anon_sym_package] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_import] = ACTIONS(1074), - [anon_sym_STAR] = ACTIONS(1072), - [anon_sym_using] = ACTIONS(1074), - [anon_sym_throw] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_COLON] = ACTIONS(1072), - [anon_sym_cast] = ACTIONS(1074), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_DOLLARtype] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_untyped] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_RBRACK] = ACTIONS(1072), - [anon_sym_this] = ACTIONS(1074), - [anon_sym_QMARK] = ACTIONS(1074), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_AT_COLON] = ACTIONS(1072), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_PERCENT] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1074), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_LT_LT] = ACTIONS(1072), - [anon_sym_GT_GT] = ACTIONS(1074), - [anon_sym_GT_GT_GT] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1072), - [anon_sym_PIPE_PIPE] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(1074), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1074), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_EQ_GT] = ACTIONS(1072), - [anon_sym_QMARK_QMARK] = ACTIONS(1072), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1074), - [anon_sym_macro] = ACTIONS(1074), - [anon_sym_abstract] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_inline] = ACTIONS(1074), - [anon_sym_overload] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_final] = ACTIONS(1074), - [anon_sym_class] = ACTIONS(1074), - [anon_sym_interface] = ACTIONS(1074), - [anon_sym_enum] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1074), - [anon_sym_function] = ACTIONS(1074), - [anon_sym_var] = ACTIONS(1074), - [aux_sym_integer_token1] = ACTIONS(1074), - [aux_sym_integer_token2] = ACTIONS(1072), - [aux_sym_float_token1] = ACTIONS(1074), - [aux_sym_float_token2] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1074), - [anon_sym_false] = ACTIONS(1074), - [aux_sym_string_token1] = ACTIONS(1072), - [aux_sym_string_token3] = ACTIONS(1072), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(1076), - [anon_sym_package] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(1078), - [anon_sym_import] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1076), - [anon_sym_using] = ACTIONS(1078), - [anon_sym_throw] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_RPAREN] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_cast] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1076), - [anon_sym_DOLLARtype] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_untyped] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1076), - [anon_sym_RBRACK] = ACTIONS(1076), - [anon_sym_this] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(1078), - [anon_sym_AT_COLON] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_new] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_PERCENT] = ACTIONS(1076), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1076), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_GT_GT_GT] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_EQ_EQ] = ACTIONS(1076), - [anon_sym_BANG_EQ] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1076), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_GT_EQ] = ACTIONS(1076), - [anon_sym_EQ_GT] = ACTIONS(1076), - [anon_sym_QMARK_QMARK] = ACTIONS(1076), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1078), - [anon_sym_macro] = ACTIONS(1078), - [anon_sym_abstract] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1078), - [anon_sym_public] = ACTIONS(1078), - [anon_sym_private] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_inline] = ACTIONS(1078), - [anon_sym_overload] = ACTIONS(1078), - [anon_sym_override] = ACTIONS(1078), - [anon_sym_final] = ACTIONS(1078), - [anon_sym_class] = ACTIONS(1078), - [anon_sym_interface] = ACTIONS(1078), - [anon_sym_enum] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(1078), - [anon_sym_var] = ACTIONS(1078), - [aux_sym_integer_token1] = ACTIONS(1078), - [aux_sym_integer_token2] = ACTIONS(1076), - [aux_sym_float_token1] = ACTIONS(1078), - [aux_sym_float_token2] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1078), - [anon_sym_false] = ACTIONS(1078), - [aux_sym_string_token1] = ACTIONS(1076), - [aux_sym_string_token3] = ACTIONS(1076), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(692), - [sym_identifier] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(692), - [anon_sym_package] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_import] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_using] = ACTIONS(694), - [anon_sym_throw] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_COLON] = ACTIONS(692), - [anon_sym_cast] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_DOLLARtype] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_untyped] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_AT_COLON] = ACTIONS(692), - [anon_sym_try] = ACTIONS(694), - [anon_sym_catch] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_new] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(694), - [anon_sym_macro] = ACTIONS(694), - [anon_sym_abstract] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_extern] = ACTIONS(694), - [anon_sym_inline] = ACTIONS(694), - [anon_sym_overload] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_final] = ACTIONS(694), - [anon_sym_class] = ACTIONS(694), - [anon_sym_interface] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_typedef] = ACTIONS(694), - [anon_sym_function] = ACTIONS(694), - [anon_sym_var] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(694), - [aux_sym_integer_token2] = ACTIONS(692), - [aux_sym_float_token1] = ACTIONS(694), - [aux_sym_float_token2] = ACTIONS(692), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [aux_sym_string_token1] = ACTIONS(692), - [aux_sym_string_token3] = ACTIONS(692), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [155] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(177), - [sym_runtime_type_check_expression] = STATE(177), - [sym_switch_expression] = STATE(177), - [sym_cast_expression] = STATE(177), - [sym_type_trace_expression] = STATE(177), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(177), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_structure_type_pair] = STATE(3204), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1026), + [162] = { + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_structure_type_pair] = STATE(3605), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1616), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -29794,71 +32046,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [156] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(138), - [sym_runtime_type_check_expression] = STATE(138), - [sym_switch_expression] = STATE(138), - [sym_cast_expression] = STATE(138), - [sym_type_trace_expression] = STATE(138), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(138), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(934), + [163] = { + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(160), + [sym_subscript_expression] = STATE(160), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_structure_type_pair] = STATE(3531), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1616), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -29885,71 +32138,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [157] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(156), - [sym_runtime_type_check_expression] = STATE(156), - [sym_switch_expression] = STATE(156), - [sym_cast_expression] = STATE(156), - [sym_type_trace_expression] = STATE(156), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(156), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_structure_type_pair] = STATE(3401), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(1026), + [164] = { + [sym__rhs_expression] = STATE(877), + [sym__unaryExpression] = STATE(161), + [sym_runtime_type_check_expression] = STATE(161), + [sym_switch_expression] = STATE(161), + [sym_cast_expression] = STATE(161), + [sym_type_trace_expression] = STATE(161), + [sym__parenthesized_expression] = STATE(974), + [sym_range_expression] = STATE(161), + [sym_subscript_expression] = STATE(161), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_structure_type_pair] = STATE(3610), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(1616), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -29976,708 +32230,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1086), - [anon_sym_package] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_import] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_using] = ACTIONS(1088), - [anon_sym_throw] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1086), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_COLON] = ACTIONS(1086), - [anon_sym_cast] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1086), - [anon_sym_DOLLARtype] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_untyped] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1086), - [anon_sym_RBRACK] = ACTIONS(1086), - [anon_sym_this] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1088), - [anon_sym_AT_COLON] = ACTIONS(1086), - [anon_sym_try] = ACTIONS(1088), - [anon_sym_catch] = ACTIONS(1088), - [anon_sym_else] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_new] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PERCENT] = ACTIONS(1086), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [anon_sym_BANG_EQ] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1086), - [anon_sym_EQ_GT] = ACTIONS(1086), - [anon_sym_QMARK_QMARK] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), - [anon_sym_null] = ACTIONS(1088), - [anon_sym_macro] = ACTIONS(1088), - [anon_sym_abstract] = ACTIONS(1088), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_public] = ACTIONS(1088), - [anon_sym_private] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_overload] = ACTIONS(1088), - [anon_sym_override] = ACTIONS(1088), - [anon_sym_final] = ACTIONS(1088), - [anon_sym_class] = ACTIONS(1088), - [anon_sym_interface] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_function] = ACTIONS(1088), - [anon_sym_var] = ACTIONS(1088), - [aux_sym_integer_token1] = ACTIONS(1088), - [aux_sym_integer_token2] = ACTIONS(1086), - [aux_sym_float_token1] = ACTIONS(1088), - [aux_sym_float_token2] = ACTIONS(1086), - [anon_sym_true] = ACTIONS(1088), - [anon_sym_false] = ACTIONS(1088), - [aux_sym_string_token1] = ACTIONS(1086), - [aux_sym_string_token3] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(1090), - [sym_identifier] = ACTIONS(1092), - [anon_sym_POUND] = ACTIONS(1090), - [anon_sym_package] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_using] = ACTIONS(1092), - [anon_sym_throw] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_COLON] = ACTIONS(1090), - [anon_sym_cast] = ACTIONS(1092), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_DOLLARtype] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_untyped] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1090), - [anon_sym_this] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_AT] = ACTIONS(1092), - [anon_sym_AT_COLON] = ACTIONS(1090), - [anon_sym_try] = ACTIONS(1092), - [anon_sym_catch] = ACTIONS(1092), - [anon_sym_else] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PERCENT] = ACTIONS(1090), - [anon_sym_SLASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_GT_GT_GT] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_CARET] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1092), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1092), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_EQ_GT] = ACTIONS(1090), - [anon_sym_QMARK_QMARK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1092), - [anon_sym_macro] = ACTIONS(1092), - [anon_sym_abstract] = ACTIONS(1092), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_public] = ACTIONS(1092), - [anon_sym_private] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_overload] = ACTIONS(1092), - [anon_sym_override] = ACTIONS(1092), - [anon_sym_final] = ACTIONS(1092), - [anon_sym_class] = ACTIONS(1092), - [anon_sym_interface] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_function] = ACTIONS(1092), - [anon_sym_var] = ACTIONS(1092), - [aux_sym_integer_token1] = ACTIONS(1092), - [aux_sym_integer_token2] = ACTIONS(1090), - [aux_sym_float_token1] = ACTIONS(1092), - [aux_sym_float_token2] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1092), - [anon_sym_false] = ACTIONS(1092), - [aux_sym_string_token1] = ACTIONS(1090), - [aux_sym_string_token3] = ACTIONS(1090), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1096), - [anon_sym_POUND] = ACTIONS(1094), - [anon_sym_package] = ACTIONS(1096), - [anon_sym_DOT] = ACTIONS(1096), - [anon_sym_import] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [anon_sym_throw] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1094), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_COLON] = ACTIONS(1094), - [anon_sym_cast] = ACTIONS(1096), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_DOLLARtype] = ACTIONS(1094), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1094), - [anon_sym_RBRACK] = ACTIONS(1094), - [anon_sym_this] = ACTIONS(1096), - [anon_sym_QMARK] = ACTIONS(1096), - [anon_sym_AT] = ACTIONS(1096), - [anon_sym_AT_COLON] = ACTIONS(1094), - [anon_sym_try] = ACTIONS(1096), - [anon_sym_catch] = ACTIONS(1096), - [anon_sym_else] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_new] = ACTIONS(1096), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PERCENT] = ACTIONS(1094), - [anon_sym_SLASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1096), - [anon_sym_GT_GT_GT] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1094), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE_PIPE] = ACTIONS(1094), - [anon_sym_EQ_EQ] = ACTIONS(1094), - [anon_sym_BANG_EQ] = ACTIONS(1094), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_LT_EQ] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1094), - [anon_sym_EQ_GT] = ACTIONS(1094), - [anon_sym_QMARK_QMARK] = ACTIONS(1094), - [anon_sym_EQ] = ACTIONS(1096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1094), - [anon_sym_null] = ACTIONS(1096), - [anon_sym_macro] = ACTIONS(1096), - [anon_sym_abstract] = ACTIONS(1096), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_public] = ACTIONS(1096), - [anon_sym_private] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_overload] = ACTIONS(1096), - [anon_sym_override] = ACTIONS(1096), - [anon_sym_final] = ACTIONS(1096), - [anon_sym_class] = ACTIONS(1096), - [anon_sym_interface] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_function] = ACTIONS(1096), - [anon_sym_var] = ACTIONS(1096), - [aux_sym_integer_token1] = ACTIONS(1096), - [aux_sym_integer_token2] = ACTIONS(1094), - [aux_sym_float_token1] = ACTIONS(1096), - [aux_sym_float_token2] = ACTIONS(1094), - [anon_sym_true] = ACTIONS(1096), - [anon_sym_false] = ACTIONS(1096), - [aux_sym_string_token1] = ACTIONS(1094), - [aux_sym_string_token3] = ACTIONS(1094), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1098), - [anon_sym_package] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_using] = ACTIONS(1100), - [anon_sym_throw] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_cast] = ACTIONS(1100), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_DOLLARtype] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_untyped] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_RBRACK] = ACTIONS(1098), - [anon_sym_this] = ACTIONS(1100), - [anon_sym_QMARK] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), - [anon_sym_AT_COLON] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1100), - [anon_sym_catch] = ACTIONS(1100), - [anon_sym_else] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_new] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_GT_GT_GT] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(1098), - [anon_sym_QMARK_QMARK] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1100), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1100), - [anon_sym_macro] = ACTIONS(1100), - [anon_sym_abstract] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_public] = ACTIONS(1100), - [anon_sym_private] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_overload] = ACTIONS(1100), - [anon_sym_override] = ACTIONS(1100), - [anon_sym_final] = ACTIONS(1100), - [anon_sym_class] = ACTIONS(1100), - [anon_sym_interface] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1100), - [anon_sym_var] = ACTIONS(1100), - [aux_sym_integer_token1] = ACTIONS(1100), - [aux_sym_integer_token2] = ACTIONS(1098), - [aux_sym_float_token1] = ACTIONS(1100), - [aux_sym_float_token2] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [aux_sym_string_token1] = ACTIONS(1098), - [aux_sym_string_token3] = ACTIONS(1098), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [162] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_DOT] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_throw] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_COLON] = ACTIONS(1102), - [anon_sym_cast] = ACTIONS(1104), - [anon_sym_COMMA] = ACTIONS(1102), - [anon_sym_DOLLARtype] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_untyped] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_RBRACK] = ACTIONS(1102), - [anon_sym_this] = ACTIONS(1104), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_AT] = ACTIONS(1104), - [anon_sym_AT_COLON] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1104), - [anon_sym_catch] = ACTIONS(1104), - [anon_sym_else] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_new] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PERCENT] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_GT_GT_GT] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_EQ_GT] = ACTIONS(1102), - [anon_sym_QMARK_QMARK] = ACTIONS(1102), - [anon_sym_EQ] = ACTIONS(1104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1104), - [anon_sym_macro] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_public] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_overload] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_interface] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_var] = ACTIONS(1104), - [aux_sym_integer_token1] = ACTIONS(1104), - [aux_sym_integer_token2] = ACTIONS(1102), - [aux_sym_float_token1] = ACTIONS(1104), - [aux_sym_float_token2] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1104), - [anon_sym_false] = ACTIONS(1104), - [aux_sym_string_token1] = ACTIONS(1102), - [aux_sym_string_token3] = ACTIONS(1102), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1108), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_package] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_import] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_using] = ACTIONS(1108), - [anon_sym_throw] = ACTIONS(1108), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_cast] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1106), - [anon_sym_DOLLARtype] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_untyped] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1106), - [anon_sym_this] = ACTIONS(1108), - [anon_sym_QMARK] = ACTIONS(1108), - [anon_sym_AT] = ACTIONS(1108), - [anon_sym_AT_COLON] = ACTIONS(1106), - [anon_sym_try] = ACTIONS(1108), - [anon_sym_catch] = ACTIONS(1108), - [anon_sym_else] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_new] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PERCENT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1108), - [anon_sym_GT_GT_GT] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_CARET] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_EQ_EQ] = ACTIONS(1106), - [anon_sym_BANG_EQ] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_LT_EQ] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_EQ] = ACTIONS(1106), - [anon_sym_EQ_GT] = ACTIONS(1106), - [anon_sym_QMARK_QMARK] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1108), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1106), - [anon_sym_null] = ACTIONS(1108), - [anon_sym_macro] = ACTIONS(1108), - [anon_sym_abstract] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_private] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_overload] = ACTIONS(1108), - [anon_sym_override] = ACTIONS(1108), - [anon_sym_final] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1108), - [anon_sym_interface] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_function] = ACTIONS(1108), - [anon_sym_var] = ACTIONS(1108), - [aux_sym_integer_token1] = ACTIONS(1108), - [aux_sym_integer_token2] = ACTIONS(1106), - [aux_sym_float_token1] = ACTIONS(1108), - [aux_sym_float_token2] = ACTIONS(1106), - [anon_sym_true] = ACTIONS(1108), - [anon_sym_false] = ACTIONS(1108), - [aux_sym_string_token1] = ACTIONS(1106), - [aux_sym_string_token3] = ACTIONS(1106), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1110), - [anon_sym_package] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_import] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_using] = ACTIONS(1112), - [anon_sym_throw] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_RPAREN] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_cast] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1110), - [anon_sym_DOLLARtype] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_untyped] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_RBRACK] = ACTIONS(1110), - [anon_sym_this] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_AT_COLON] = ACTIONS(1110), - [anon_sym_try] = ACTIONS(1112), - [anon_sym_catch] = ACTIONS(1112), - [anon_sym_else] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_new] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PERCENT] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_LT_LT] = ACTIONS(1110), - [anon_sym_GT_GT] = ACTIONS(1112), - [anon_sym_GT_GT_GT] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_CARET] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1110), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_EQ_EQ] = ACTIONS(1110), - [anon_sym_BANG_EQ] = ACTIONS(1110), - [anon_sym_LT] = ACTIONS(1112), - [anon_sym_LT_EQ] = ACTIONS(1110), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_GT_EQ] = ACTIONS(1110), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_QMARK_QMARK] = ACTIONS(1110), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1110), - [anon_sym_null] = ACTIONS(1112), - [anon_sym_macro] = ACTIONS(1112), - [anon_sym_abstract] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_public] = ACTIONS(1112), - [anon_sym_private] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_overload] = ACTIONS(1112), - [anon_sym_override] = ACTIONS(1112), - [anon_sym_final] = ACTIONS(1112), - [anon_sym_class] = ACTIONS(1112), - [anon_sym_interface] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1112), - [anon_sym_var] = ACTIONS(1112), - [aux_sym_integer_token1] = ACTIONS(1112), - [aux_sym_integer_token2] = ACTIONS(1110), - [aux_sym_float_token1] = ACTIONS(1112), - [aux_sym_float_token2] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1112), - [anon_sym_false] = ACTIONS(1112), - [aux_sym_string_token1] = ACTIONS(1110), - [aux_sym_string_token3] = ACTIONS(1110), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [165] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(137), - [sym_runtime_type_check_expression] = STATE(137), - [sym_switch_expression] = STATE(137), - [sym_cast_expression] = STATE(137), - [sym_type_trace_expression] = STATE(137), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(137), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_structure_type_pair] = STATE(3426), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(1026), + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(170), + [sym_subscript_expression] = STATE(170), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -30704,435 +32322,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [166] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1116), - [anon_sym_POUND] = ACTIONS(1114), - [anon_sym_package] = ACTIONS(1116), - [anon_sym_DOT] = ACTIONS(1116), - [anon_sym_import] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_using] = ACTIONS(1116), - [anon_sym_throw] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1114), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_COLON] = ACTIONS(1114), - [anon_sym_cast] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_DOLLARtype] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_untyped] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_RBRACK] = ACTIONS(1114), - [anon_sym_this] = ACTIONS(1116), - [anon_sym_QMARK] = ACTIONS(1116), - [anon_sym_AT] = ACTIONS(1116), - [anon_sym_AT_COLON] = ACTIONS(1114), - [anon_sym_try] = ACTIONS(1116), - [anon_sym_catch] = ACTIONS(1116), - [anon_sym_else] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1116), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PERCENT] = ACTIONS(1114), - [anon_sym_SLASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_LT_LT] = ACTIONS(1114), - [anon_sym_GT_GT] = ACTIONS(1116), - [anon_sym_GT_GT_GT] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1116), - [anon_sym_CARET] = ACTIONS(1114), - [anon_sym_AMP_AMP] = ACTIONS(1114), - [anon_sym_PIPE_PIPE] = ACTIONS(1114), - [anon_sym_EQ_EQ] = ACTIONS(1114), - [anon_sym_BANG_EQ] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1116), - [anon_sym_LT_EQ] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1116), - [anon_sym_GT_EQ] = ACTIONS(1114), - [anon_sym_EQ_GT] = ACTIONS(1114), - [anon_sym_QMARK_QMARK] = ACTIONS(1114), - [anon_sym_EQ] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), - [anon_sym_null] = ACTIONS(1116), - [anon_sym_macro] = ACTIONS(1116), - [anon_sym_abstract] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_public] = ACTIONS(1116), - [anon_sym_private] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_overload] = ACTIONS(1116), - [anon_sym_override] = ACTIONS(1116), - [anon_sym_final] = ACTIONS(1116), - [anon_sym_class] = ACTIONS(1116), - [anon_sym_interface] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_function] = ACTIONS(1116), - [anon_sym_var] = ACTIONS(1116), - [aux_sym_integer_token1] = ACTIONS(1116), - [aux_sym_integer_token2] = ACTIONS(1114), - [aux_sym_float_token1] = ACTIONS(1116), - [aux_sym_float_token2] = ACTIONS(1114), - [anon_sym_true] = ACTIONS(1116), - [anon_sym_false] = ACTIONS(1116), - [aux_sym_string_token1] = ACTIONS(1114), - [aux_sym_string_token3] = ACTIONS(1114), + [sym__rangeOperator] = STATE(2469), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_package] = ACTIONS(1626), + [anon_sym_DOT] = ACTIONS(1626), + [anon_sym_import] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_using] = ACTIONS(1626), + [anon_sym_throw] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_RPAREN] = ACTIONS(1624), + [anon_sym_switch] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1624), + [anon_sym_cast] = ACTIONS(1626), + [anon_sym_COMMA] = ACTIONS(1624), + [anon_sym_DOLLARtype] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_untyped] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_RBRACK] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_AT_COLON] = ACTIONS(1624), + [anon_sym_try] = ACTIONS(1626), + [anon_sym_catch] = ACTIONS(1626), + [anon_sym_else] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_do] = ACTIONS(1626), + [anon_sym_new] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_PLUS_PLUS] = ACTIONS(1624), + [anon_sym_DASH_DASH] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_LT_LT] = ACTIONS(1624), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_GT_GT_GT] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_PIPE_PIPE] = ACTIONS(1624), + [anon_sym_EQ_EQ] = ACTIONS(1624), + [anon_sym_BANG_EQ] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_LT_EQ] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_GT_EQ] = ACTIONS(1624), + [anon_sym_EQ_GT] = ACTIONS(1624), + [anon_sym_QMARK_QMARK] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1626), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(1624), + [aux_sym_float_token1] = ACTIONS(1626), + [aux_sym_float_token2] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [aux_sym_string_token1] = ACTIONS(1624), + [aux_sym_string_token3] = ACTIONS(1624), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [167] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1120), - [anon_sym_POUND] = ACTIONS(1118), - [anon_sym_package] = ACTIONS(1120), - [anon_sym_DOT] = ACTIONS(1120), - [anon_sym_import] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_using] = ACTIONS(1120), - [anon_sym_throw] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_cast] = ACTIONS(1120), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_DOLLARtype] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_untyped] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_RBRACK] = ACTIONS(1118), - [anon_sym_this] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(1120), - [anon_sym_AT_COLON] = ACTIONS(1118), - [anon_sym_try] = ACTIONS(1120), - [anon_sym_catch] = ACTIONS(1120), - [anon_sym_else] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1120), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1118), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_GT_GT_GT] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_CARET] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1118), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_GT_EQ] = ACTIONS(1118), - [anon_sym_EQ_GT] = ACTIONS(1118), - [anon_sym_QMARK_QMARK] = ACTIONS(1118), - [anon_sym_EQ] = ACTIONS(1120), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_macro] = ACTIONS(1120), - [anon_sym_abstract] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_public] = ACTIONS(1120), - [anon_sym_private] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_overload] = ACTIONS(1120), - [anon_sym_override] = ACTIONS(1120), - [anon_sym_final] = ACTIONS(1120), - [anon_sym_class] = ACTIONS(1120), - [anon_sym_interface] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_function] = ACTIONS(1120), - [anon_sym_var] = ACTIONS(1120), - [aux_sym_integer_token1] = ACTIONS(1120), - [aux_sym_integer_token2] = ACTIONS(1118), - [aux_sym_float_token1] = ACTIONS(1120), - [aux_sym_float_token2] = ACTIONS(1118), - [anon_sym_true] = ACTIONS(1120), - [anon_sym_false] = ACTIONS(1120), - [aux_sym_string_token1] = ACTIONS(1118), - [aux_sym_string_token3] = ACTIONS(1118), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_identifier] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(1122), - [anon_sym_package] = ACTIONS(1124), - [anon_sym_DOT] = ACTIONS(1124), - [anon_sym_import] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_using] = ACTIONS(1124), - [anon_sym_throw] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1122), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1124), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_COLON] = ACTIONS(1122), - [anon_sym_cast] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1122), - [anon_sym_DOLLARtype] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_untyped] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_RBRACK] = ACTIONS(1122), - [anon_sym_this] = ACTIONS(1124), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_AT] = ACTIONS(1124), - [anon_sym_AT_COLON] = ACTIONS(1122), - [anon_sym_try] = ACTIONS(1124), - [anon_sym_catch] = ACTIONS(1124), - [anon_sym_else] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_new] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PERCENT] = ACTIONS(1122), - [anon_sym_SLASH] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_LT_LT] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_GT_GT_GT] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_CARET] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_EQ_EQ] = ACTIONS(1122), - [anon_sym_BANG_EQ] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1124), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT] = ACTIONS(1124), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_EQ_GT] = ACTIONS(1122), - [anon_sym_QMARK_QMARK] = ACTIONS(1122), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1122), - [anon_sym_null] = ACTIONS(1124), - [anon_sym_macro] = ACTIONS(1124), - [anon_sym_abstract] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_public] = ACTIONS(1124), - [anon_sym_private] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym_overload] = ACTIONS(1124), - [anon_sym_override] = ACTIONS(1124), - [anon_sym_final] = ACTIONS(1124), - [anon_sym_class] = ACTIONS(1124), - [anon_sym_interface] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1124), - [anon_sym_function] = ACTIONS(1124), - [anon_sym_var] = ACTIONS(1124), - [aux_sym_integer_token1] = ACTIONS(1124), - [aux_sym_integer_token2] = ACTIONS(1122), - [aux_sym_float_token1] = ACTIONS(1124), - [aux_sym_float_token2] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [aux_sym_string_token1] = ACTIONS(1122), - [aux_sym_string_token3] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(700), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_using] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COLON] = ACTIONS(698), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_for] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_this] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_new] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(700), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_typedef] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_var] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(700), - [aux_sym_integer_token2] = ACTIONS(698), - [aux_sym_float_token1] = ACTIONS(700), - [aux_sym_float_token2] = ACTIONS(698), - [anon_sym_true] = ACTIONS(700), - [anon_sym_false] = ACTIONS(700), - [aux_sym_string_token1] = ACTIONS(698), - [aux_sym_string_token3] = ACTIONS(698), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [170] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(139), - [sym_runtime_type_check_expression] = STATE(139), - [sym_switch_expression] = STATE(139), - [sym_cast_expression] = STATE(139), - [sym_type_trace_expression] = STATE(139), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(139), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_structure_type_pair] = STATE(3294), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(1026), + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(170), + [sym_subscript_expression] = STATE(170), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -31159,617 +32506,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(700), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_using] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COLON] = ACTIONS(698), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_for] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_this] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_new] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(700), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_typedef] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_var] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(700), - [aux_sym_integer_token2] = ACTIONS(698), - [aux_sym_float_token1] = ACTIONS(700), - [aux_sym_float_token2] = ACTIONS(698), - [anon_sym_true] = ACTIONS(700), - [anon_sym_false] = ACTIONS(700), - [aux_sym_string_token1] = ACTIONS(698), - [aux_sym_string_token3] = ACTIONS(698), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(842), - [sym_identifier] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(842), - [anon_sym_package] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_import] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_using] = ACTIONS(844), - [anon_sym_throw] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_cast] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(842), - [anon_sym_DOLLARtype] = ACTIONS(842), - [anon_sym_for] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_untyped] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_RBRACK] = ACTIONS(842), - [anon_sym_this] = ACTIONS(844), - [anon_sym_QMARK] = ACTIONS(844), - [anon_sym_AT] = ACTIONS(844), - [anon_sym_AT_COLON] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(842), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_GT_GT_GT] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(842), - [anon_sym_AMP_AMP] = ACTIONS(842), - [anon_sym_PIPE_PIPE] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_EQ_GT] = ACTIONS(842), - [anon_sym_QMARK_QMARK] = ACTIONS(842), - [anon_sym_EQ] = ACTIONS(844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(842), - [anon_sym_null] = ACTIONS(844), - [anon_sym_macro] = ACTIONS(844), - [anon_sym_abstract] = ACTIONS(844), - [anon_sym_static] = ACTIONS(844), - [anon_sym_public] = ACTIONS(844), - [anon_sym_private] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_inline] = ACTIONS(844), - [anon_sym_overload] = ACTIONS(844), - [anon_sym_override] = ACTIONS(844), - [anon_sym_final] = ACTIONS(844), - [anon_sym_class] = ACTIONS(844), - [anon_sym_interface] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(844), - [anon_sym_typedef] = ACTIONS(844), - [anon_sym_function] = ACTIONS(844), - [anon_sym_var] = ACTIONS(844), - [aux_sym_integer_token1] = ACTIONS(844), - [aux_sym_integer_token2] = ACTIONS(842), - [aux_sym_float_token1] = ACTIONS(844), - [aux_sym_float_token2] = ACTIONS(842), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym_string_token1] = ACTIONS(842), - [aux_sym_string_token3] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1130), - [anon_sym_POUND] = ACTIONS(1128), - [anon_sym_package] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_import] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_using] = ACTIONS(1130), - [anon_sym_throw] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_COLON] = ACTIONS(1128), - [anon_sym_cast] = ACTIONS(1130), - [anon_sym_COMMA] = ACTIONS(1128), - [anon_sym_DOLLARtype] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1130), - [anon_sym_untyped] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1128), - [anon_sym_RBRACK] = ACTIONS(1128), - [anon_sym_this] = ACTIONS(1130), - [anon_sym_QMARK] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1130), - [anon_sym_AT_COLON] = ACTIONS(1128), - [anon_sym_try] = ACTIONS(1130), - [anon_sym_catch] = ACTIONS(1130), - [anon_sym_else] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1130), - [anon_sym_do] = ACTIONS(1130), - [anon_sym_new] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PERCENT] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_GT_GT] = ACTIONS(1130), - [anon_sym_GT_GT_GT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_EQ_EQ] = ACTIONS(1128), - [anon_sym_BANG_EQ] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_LT_EQ] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1130), - [anon_sym_GT_EQ] = ACTIONS(1128), - [anon_sym_EQ_GT] = ACTIONS(1128), - [anon_sym_QMARK_QMARK] = ACTIONS(1128), - [anon_sym_EQ] = ACTIONS(1130), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1128), - [anon_sym_null] = ACTIONS(1130), - [anon_sym_macro] = ACTIONS(1130), - [anon_sym_abstract] = ACTIONS(1130), - [anon_sym_static] = ACTIONS(1130), - [anon_sym_public] = ACTIONS(1130), - [anon_sym_private] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym_inline] = ACTIONS(1130), - [anon_sym_overload] = ACTIONS(1130), - [anon_sym_override] = ACTIONS(1130), - [anon_sym_final] = ACTIONS(1130), - [anon_sym_class] = ACTIONS(1130), - [anon_sym_interface] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_var] = ACTIONS(1130), - [aux_sym_integer_token1] = ACTIONS(1130), - [aux_sym_integer_token2] = ACTIONS(1128), - [aux_sym_float_token1] = ACTIONS(1130), - [aux_sym_float_token2] = ACTIONS(1128), - [anon_sym_true] = ACTIONS(1130), - [anon_sym_false] = ACTIONS(1130), - [aux_sym_string_token1] = ACTIONS(1128), - [aux_sym_string_token3] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1050), - [anon_sym_package] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_import] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_using] = ACTIONS(1054), - [anon_sym_throw] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_COLON] = ACTIONS(1132), - [anon_sym_cast] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_DOLLARtype] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_RBRACK] = ACTIONS(1050), - [anon_sym_this] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1054), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_AT_COLON] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PERCENT] = ACTIONS(1050), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1050), - [anon_sym_PIPE_PIPE] = ACTIONS(1050), - [anon_sym_EQ_EQ] = ACTIONS(1050), - [anon_sym_BANG_EQ] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1050), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1050), - [anon_sym_EQ_GT] = ACTIONS(1050), - [anon_sym_QMARK_QMARK] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_macro] = ACTIONS(1054), - [anon_sym_abstract] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_public] = ACTIONS(1054), - [anon_sym_private] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_overload] = ACTIONS(1054), - [anon_sym_override] = ACTIONS(1054), - [anon_sym_final] = ACTIONS(1054), - [anon_sym_class] = ACTIONS(1054), - [anon_sym_interface] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(1054), - [anon_sym_var] = ACTIONS(1054), - [aux_sym_integer_token1] = ACTIONS(1054), - [aux_sym_integer_token2] = ACTIONS(1050), - [aux_sym_float_token1] = ACTIONS(1054), - [aux_sym_float_token2] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym_string_token1] = ACTIONS(1050), - [aux_sym_string_token3] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [anon_sym_package] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1136), - [anon_sym_import] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_using] = ACTIONS(1136), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_COLON] = ACTIONS(1134), - [anon_sym_cast] = ACTIONS(1136), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_DOLLARtype] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_untyped] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_RBRACK] = ACTIONS(1134), - [anon_sym_this] = ACTIONS(1136), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1136), - [anon_sym_AT_COLON] = ACTIONS(1134), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_catch] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_GT_GT_GT] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1134), - [anon_sym_PIPE_PIPE] = ACTIONS(1134), - [anon_sym_EQ_EQ] = ACTIONS(1134), - [anon_sym_BANG_EQ] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_LT_EQ] = ACTIONS(1134), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_EQ] = ACTIONS(1134), - [anon_sym_EQ_GT] = ACTIONS(1134), - [anon_sym_QMARK_QMARK] = ACTIONS(1134), - [anon_sym_EQ] = ACTIONS(1136), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1134), - [anon_sym_null] = ACTIONS(1136), - [anon_sym_macro] = ACTIONS(1136), - [anon_sym_abstract] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_public] = ACTIONS(1136), - [anon_sym_private] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym_overload] = ACTIONS(1136), - [anon_sym_override] = ACTIONS(1136), - [anon_sym_final] = ACTIONS(1136), - [anon_sym_class] = ACTIONS(1136), - [anon_sym_interface] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_function] = ACTIONS(1136), - [anon_sym_var] = ACTIONS(1136), - [aux_sym_integer_token1] = ACTIONS(1136), - [aux_sym_integer_token2] = ACTIONS(1134), - [aux_sym_float_token1] = ACTIONS(1136), - [aux_sym_float_token2] = ACTIONS(1134), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [aux_sym_string_token1] = ACTIONS(1134), - [aux_sym_string_token3] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1138), - [anon_sym_package] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_using] = ACTIONS(1141), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_COLON] = ACTIONS(1138), - [anon_sym_cast] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1138), - [anon_sym_DOLLARtype] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_untyped] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1141), - [anon_sym_continue] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_RBRACK] = ACTIONS(1138), - [anon_sym_this] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_AT_COLON] = ACTIONS(1138), - [anon_sym_try] = ACTIONS(1141), - [anon_sym_catch] = ACTIONS(1141), - [anon_sym_else] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1141), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PERCENT] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_GT_GT_GT] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1138), - [anon_sym_GT] = ACTIONS(1141), - [anon_sym_GT_EQ] = ACTIONS(1138), - [anon_sym_EQ_GT] = ACTIONS(1138), - [anon_sym_QMARK_QMARK] = ACTIONS(1138), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_macro] = ACTIONS(1141), - [anon_sym_abstract] = ACTIONS(1141), - [anon_sym_static] = ACTIONS(1141), - [anon_sym_public] = ACTIONS(1141), - [anon_sym_private] = ACTIONS(1141), - [anon_sym_extern] = ACTIONS(1141), - [anon_sym_inline] = ACTIONS(1141), - [anon_sym_overload] = ACTIONS(1141), - [anon_sym_override] = ACTIONS(1141), - [anon_sym_final] = ACTIONS(1141), - [anon_sym_class] = ACTIONS(1141), - [anon_sym_interface] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [anon_sym_typedef] = ACTIONS(1141), - [anon_sym_function] = ACTIONS(1141), - [anon_sym_var] = ACTIONS(1141), - [aux_sym_integer_token1] = ACTIONS(1141), - [aux_sym_integer_token2] = ACTIONS(1138), - [aux_sym_float_token1] = ACTIONS(1141), - [aux_sym_float_token2] = ACTIONS(1138), - [anon_sym_true] = ACTIONS(1141), - [anon_sym_false] = ACTIONS(1141), - [aux_sym_string_token1] = ACTIONS(1138), - [aux_sym_string_token3] = ACTIONS(1138), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [177] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(138), - [sym_runtime_type_check_expression] = STATE(138), - [sym_switch_expression] = STATE(138), - [sym_cast_expression] = STATE(138), - [sym_type_trace_expression] = STATE(138), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(138), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(934), + [168] = { + [sym__rhs_expression] = STATE(877), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(974), + [sym_range_expression] = STATE(169), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_structure_type_pair] = STATE(3490), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1616), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -31796,2072 +32598,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_package] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1148), - [anon_sym_import] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_using] = ACTIONS(1148), - [anon_sym_throw] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_RPAREN] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_COLON] = ACTIONS(1146), - [anon_sym_cast] = ACTIONS(1148), - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_DOLLARtype] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_untyped] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_RBRACK] = ACTIONS(1146), - [anon_sym_this] = ACTIONS(1148), - [anon_sym_QMARK] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1148), - [anon_sym_AT_COLON] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_catch] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1146), - [anon_sym_PERCENT] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_GT_GT_GT] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1146), - [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1146), - [anon_sym_QMARK_QMARK] = ACTIONS(1146), - [anon_sym_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_macro] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym_overload] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_interface] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1148), - [anon_sym_function] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [aux_sym_integer_token1] = ACTIONS(1148), - [aux_sym_integer_token2] = ACTIONS(1146), - [aux_sym_float_token1] = ACTIONS(1148), - [aux_sym_float_token2] = ACTIONS(1146), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym_string_token1] = ACTIONS(1146), - [aux_sym_string_token3] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_package] = ACTIONS(1152), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_using] = ACTIONS(1152), - [anon_sym_throw] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_COLON] = ACTIONS(1150), - [anon_sym_cast] = ACTIONS(1152), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_DOLLARtype] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_untyped] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_RBRACK] = ACTIONS(1150), - [anon_sym_this] = ACTIONS(1152), - [anon_sym_QMARK] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(1152), - [anon_sym_AT_COLON] = ACTIONS(1150), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_catch] = ACTIONS(1152), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_new] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1150), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_GT_GT_GT] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_CARET] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_EQ_GT] = ACTIONS(1150), - [anon_sym_QMARK_QMARK] = ACTIONS(1150), - [anon_sym_EQ] = ACTIONS(1152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1152), - [anon_sym_macro] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym_inline] = ACTIONS(1152), - [anon_sym_overload] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_final] = ACTIONS(1152), - [anon_sym_class] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1152), - [anon_sym_var] = ACTIONS(1152), - [aux_sym_integer_token1] = ACTIONS(1152), - [aux_sym_integer_token2] = ACTIONS(1150), - [aux_sym_float_token1] = ACTIONS(1152), - [aux_sym_float_token2] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [aux_sym_string_token1] = ACTIONS(1150), - [aux_sym_string_token3] = ACTIONS(1150), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [180] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_package] = ACTIONS(1156), - [anon_sym_DOT] = ACTIONS(1156), - [anon_sym_import] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_using] = ACTIONS(1156), - [anon_sym_throw] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_COLON] = ACTIONS(1154), - [anon_sym_cast] = ACTIONS(1156), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_DOLLARtype] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_untyped] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_RBRACK] = ACTIONS(1154), - [anon_sym_this] = ACTIONS(1156), - [anon_sym_QMARK] = ACTIONS(1156), - [anon_sym_AT] = ACTIONS(1156), - [anon_sym_AT_COLON] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_catch] = ACTIONS(1156), - [anon_sym_else] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_PERCENT] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_GT_GT_GT] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_AMP_AMP] = ACTIONS(1154), - [anon_sym_PIPE_PIPE] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_EQ_GT] = ACTIONS(1154), - [anon_sym_QMARK_QMARK] = ACTIONS(1154), - [anon_sym_EQ] = ACTIONS(1156), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_macro] = ACTIONS(1156), - [anon_sym_abstract] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_public] = ACTIONS(1156), - [anon_sym_private] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym_inline] = ACTIONS(1156), - [anon_sym_overload] = ACTIONS(1156), - [anon_sym_override] = ACTIONS(1156), - [anon_sym_final] = ACTIONS(1156), - [anon_sym_class] = ACTIONS(1156), - [anon_sym_interface] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_function] = ACTIONS(1156), - [anon_sym_var] = ACTIONS(1156), - [aux_sym_integer_token1] = ACTIONS(1156), - [aux_sym_integer_token2] = ACTIONS(1154), - [aux_sym_float_token1] = ACTIONS(1156), - [aux_sym_float_token2] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [aux_sym_string_token1] = ACTIONS(1154), - [aux_sym_string_token3] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_package] = ACTIONS(1160), - [anon_sym_DOT] = ACTIONS(1160), - [anon_sym_import] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_using] = ACTIONS(1160), - [anon_sym_throw] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_COLON] = ACTIONS(1158), - [anon_sym_cast] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_DOLLARtype] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_untyped] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1158), - [anon_sym_this] = ACTIONS(1160), - [anon_sym_QMARK] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(1160), - [anon_sym_AT_COLON] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1160), - [anon_sym_catch] = ACTIONS(1160), - [anon_sym_else] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_new] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_PERCENT] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1158), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_GT_GT_GT] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_AMP_AMP] = ACTIONS(1158), - [anon_sym_PIPE_PIPE] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_EQ_GT] = ACTIONS(1158), - [anon_sym_QMARK_QMARK] = ACTIONS(1158), - [anon_sym_EQ] = ACTIONS(1160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_macro] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym_inline] = ACTIONS(1160), - [anon_sym_overload] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_final] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(1160), - [anon_sym_interface] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_typedef] = ACTIONS(1160), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_var] = ACTIONS(1160), - [aux_sym_integer_token1] = ACTIONS(1160), - [aux_sym_integer_token2] = ACTIONS(1158), - [aux_sym_float_token1] = ACTIONS(1160), - [aux_sym_float_token2] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [aux_sym_string_token1] = ACTIONS(1158), - [aux_sym_string_token3] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [182] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_package] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1164), - [anon_sym_import] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_using] = ACTIONS(1164), - [anon_sym_throw] = ACTIONS(1164), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_RPAREN] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_COLON] = ACTIONS(1162), - [anon_sym_cast] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1162), - [anon_sym_DOLLARtype] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_untyped] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_RBRACK] = ACTIONS(1162), - [anon_sym_this] = ACTIONS(1164), - [anon_sym_QMARK] = ACTIONS(1164), - [anon_sym_AT] = ACTIONS(1164), - [anon_sym_AT_COLON] = ACTIONS(1162), - [anon_sym_try] = ACTIONS(1164), - [anon_sym_catch] = ACTIONS(1164), - [anon_sym_else] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_new] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [anon_sym_PERCENT] = ACTIONS(1162), - [anon_sym_SLASH] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1162), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_GT_GT_GT] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_CARET] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_EQ_EQ] = ACTIONS(1162), - [anon_sym_BANG_EQ] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_LT_EQ] = ACTIONS(1162), - [anon_sym_GT] = ACTIONS(1164), - [anon_sym_GT_EQ] = ACTIONS(1162), - [anon_sym_EQ_GT] = ACTIONS(1162), - [anon_sym_QMARK_QMARK] = ACTIONS(1162), - [anon_sym_EQ] = ACTIONS(1164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1162), - [anon_sym_null] = ACTIONS(1164), - [anon_sym_macro] = ACTIONS(1164), - [anon_sym_abstract] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_public] = ACTIONS(1164), - [anon_sym_private] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_inline] = ACTIONS(1164), - [anon_sym_overload] = ACTIONS(1164), - [anon_sym_override] = ACTIONS(1164), - [anon_sym_final] = ACTIONS(1164), - [anon_sym_class] = ACTIONS(1164), - [anon_sym_interface] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(1164), - [anon_sym_var] = ACTIONS(1164), - [aux_sym_integer_token1] = ACTIONS(1164), - [aux_sym_integer_token2] = ACTIONS(1162), - [aux_sym_float_token1] = ACTIONS(1164), - [aux_sym_float_token2] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [aux_sym_string_token1] = ACTIONS(1162), - [aux_sym_string_token3] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [183] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_package] = ACTIONS(1168), - [anon_sym_DOT] = ACTIONS(1168), - [anon_sym_import] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_using] = ACTIONS(1168), - [anon_sym_throw] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COLON] = ACTIONS(1166), - [anon_sym_cast] = ACTIONS(1168), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_DOLLARtype] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_untyped] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1166), - [anon_sym_this] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1168), - [anon_sym_AT] = ACTIONS(1168), - [anon_sym_AT_COLON] = ACTIONS(1166), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_LT_LT] = ACTIONS(1166), - [anon_sym_GT_GT] = ACTIONS(1168), - [anon_sym_GT_GT_GT] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1166), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), - [anon_sym_EQ_EQ] = ACTIONS(1166), - [anon_sym_BANG_EQ] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1166), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1166), - [anon_sym_EQ_GT] = ACTIONS(1166), - [anon_sym_QMARK_QMARK] = ACTIONS(1166), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1166), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_macro] = ACTIONS(1168), - [anon_sym_abstract] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym_overload] = ACTIONS(1168), - [anon_sym_override] = ACTIONS(1168), - [anon_sym_final] = ACTIONS(1168), - [anon_sym_class] = ACTIONS(1168), - [anon_sym_interface] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_function] = ACTIONS(1168), - [anon_sym_var] = ACTIONS(1168), - [aux_sym_integer_token1] = ACTIONS(1168), - [aux_sym_integer_token2] = ACTIONS(1166), - [aux_sym_float_token1] = ACTIONS(1168), - [aux_sym_float_token2] = ACTIONS(1166), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym_string_token1] = ACTIONS(1166), - [aux_sym_string_token3] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_package] = ACTIONS(1172), - [anon_sym_DOT] = ACTIONS(1172), - [anon_sym_import] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_using] = ACTIONS(1172), - [anon_sym_throw] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_RPAREN] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_COLON] = ACTIONS(1170), - [anon_sym_cast] = ACTIONS(1172), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_DOLLARtype] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_untyped] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_RBRACK] = ACTIONS(1170), - [anon_sym_this] = ACTIONS(1172), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(1172), - [anon_sym_AT_COLON] = ACTIONS(1170), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_catch] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_GT_GT_GT] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_AMP_AMP] = ACTIONS(1170), - [anon_sym_PIPE_PIPE] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_EQ_GT] = ACTIONS(1170), - [anon_sym_QMARK_QMARK] = ACTIONS(1170), - [anon_sym_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_macro] = ACTIONS(1172), - [anon_sym_abstract] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_public] = ACTIONS(1172), - [anon_sym_private] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_overload] = ACTIONS(1172), - [anon_sym_override] = ACTIONS(1172), - [anon_sym_final] = ACTIONS(1172), - [anon_sym_class] = ACTIONS(1172), - [anon_sym_interface] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_var] = ACTIONS(1172), - [aux_sym_integer_token1] = ACTIONS(1172), - [aux_sym_integer_token2] = ACTIONS(1170), - [aux_sym_float_token1] = ACTIONS(1172), - [aux_sym_float_token2] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym_string_token1] = ACTIONS(1170), - [aux_sym_string_token3] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [185] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_package] = ACTIONS(1176), - [anon_sym_DOT] = ACTIONS(1176), - [anon_sym_import] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_using] = ACTIONS(1176), - [anon_sym_throw] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_RPAREN] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_COLON] = ACTIONS(1174), - [anon_sym_cast] = ACTIONS(1176), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_DOLLARtype] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_untyped] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_this] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(1176), - [anon_sym_AT_COLON] = ACTIONS(1174), - [anon_sym_try] = ACTIONS(1176), - [anon_sym_catch] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_new] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PERCENT] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_LT_LT] = ACTIONS(1174), - [anon_sym_GT_GT] = ACTIONS(1176), - [anon_sym_GT_GT_GT] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_CARET] = ACTIONS(1174), - [anon_sym_AMP_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1176), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_EQ_GT] = ACTIONS(1174), - [anon_sym_QMARK_QMARK] = ACTIONS(1174), - [anon_sym_EQ] = ACTIONS(1176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1176), - [anon_sym_macro] = ACTIONS(1176), - [anon_sym_abstract] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_public] = ACTIONS(1176), - [anon_sym_private] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym_overload] = ACTIONS(1176), - [anon_sym_override] = ACTIONS(1176), - [anon_sym_final] = ACTIONS(1176), - [anon_sym_class] = ACTIONS(1176), - [anon_sym_interface] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_function] = ACTIONS(1176), - [anon_sym_var] = ACTIONS(1176), - [aux_sym_integer_token1] = ACTIONS(1176), - [aux_sym_integer_token2] = ACTIONS(1174), - [aux_sym_float_token1] = ACTIONS(1176), - [aux_sym_float_token2] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [aux_sym_string_token1] = ACTIONS(1174), - [aux_sym_string_token3] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [186] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_package] = ACTIONS(1180), - [anon_sym_DOT] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_using] = ACTIONS(1180), - [anon_sym_throw] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_COLON] = ACTIONS(1178), - [anon_sym_cast] = ACTIONS(1180), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_DOLLARtype] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_untyped] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_this] = ACTIONS(1180), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_AT] = ACTIONS(1180), - [anon_sym_AT_COLON] = ACTIONS(1178), - [anon_sym_try] = ACTIONS(1180), - [anon_sym_catch] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_new] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PERCENT] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_GT_GT_GT] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_EQ_GT] = ACTIONS(1178), - [anon_sym_QMARK_QMARK] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1178), - [anon_sym_null] = ACTIONS(1180), - [anon_sym_macro] = ACTIONS(1180), - [anon_sym_abstract] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_public] = ACTIONS(1180), - [anon_sym_private] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym_inline] = ACTIONS(1180), - [anon_sym_overload] = ACTIONS(1180), - [anon_sym_override] = ACTIONS(1180), - [anon_sym_final] = ACTIONS(1180), - [anon_sym_class] = ACTIONS(1180), - [anon_sym_interface] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1180), - [anon_sym_function] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1180), - [aux_sym_integer_token1] = ACTIONS(1180), - [aux_sym_integer_token2] = ACTIONS(1178), - [aux_sym_float_token1] = ACTIONS(1180), - [aux_sym_float_token2] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [aux_sym_string_token1] = ACTIONS(1178), - [aux_sym_string_token3] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [187] = { - [ts_builtin_sym_end] = ACTIONS(838), - [sym_identifier] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(838), - [anon_sym_package] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_import] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(838), - [anon_sym_using] = ACTIONS(836), - [anon_sym_throw] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(838), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_cast] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_DOLLARtype] = ACTIONS(838), - [anon_sym_for] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_untyped] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_RBRACK] = ACTIONS(838), - [anon_sym_this] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_AT_COLON] = ACTIONS(838), - [anon_sym_try] = ACTIONS(836), - [anon_sym_catch] = ACTIONS(836), - [anon_sym_else] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_new] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(838), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_PERCENT] = ACTIONS(838), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(838), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_GT_GT_GT] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(838), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [anon_sym_EQ_EQ] = ACTIONS(838), - [anon_sym_BANG_EQ] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(838), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(838), - [anon_sym_EQ_GT] = ACTIONS(838), - [anon_sym_QMARK_QMARK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(838), - [anon_sym_null] = ACTIONS(836), - [anon_sym_macro] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(836), - [anon_sym_static] = ACTIONS(836), - [anon_sym_public] = ACTIONS(836), - [anon_sym_private] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_inline] = ACTIONS(836), - [anon_sym_overload] = ACTIONS(836), - [anon_sym_override] = ACTIONS(836), - [anon_sym_final] = ACTIONS(836), - [anon_sym_class] = ACTIONS(836), - [anon_sym_interface] = ACTIONS(836), - [anon_sym_enum] = ACTIONS(836), - [anon_sym_typedef] = ACTIONS(836), - [anon_sym_function] = ACTIONS(836), - [anon_sym_var] = ACTIONS(836), - [aux_sym_integer_token1] = ACTIONS(836), - [aux_sym_integer_token2] = ACTIONS(838), - [aux_sym_float_token1] = ACTIONS(836), - [aux_sym_float_token2] = ACTIONS(838), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_string_token1] = ACTIONS(838), - [aux_sym_string_token3] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [188] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_package] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1184), - [anon_sym_import] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_RPAREN] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_COLON] = ACTIONS(1182), - [anon_sym_cast] = ACTIONS(1184), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_DOLLARtype] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_untyped] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_RBRACK] = ACTIONS(1182), - [anon_sym_this] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1184), - [anon_sym_AT_COLON] = ACTIONS(1182), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_catch] = ACTIONS(1184), - [anon_sym_else] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_BANG_EQ] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_EQ_GT] = ACTIONS(1182), - [anon_sym_QMARK_QMARK] = ACTIONS(1182), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_macro] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_public] = ACTIONS(1184), - [anon_sym_private] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym_overload] = ACTIONS(1184), - [anon_sym_override] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_interface] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_typedef] = ACTIONS(1184), - [anon_sym_function] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [aux_sym_integer_token1] = ACTIONS(1184), - [aux_sym_integer_token2] = ACTIONS(1182), - [aux_sym_float_token1] = ACTIONS(1184), - [aux_sym_float_token2] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [aux_sym_string_token1] = ACTIONS(1182), - [aux_sym_string_token3] = ACTIONS(1182), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [189] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_package] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_import] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_using] = ACTIONS(1188), - [anon_sym_throw] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1186), - [anon_sym_cast] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_DOLLARtype] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_untyped] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1186), - [anon_sym_this] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(1188), - [anon_sym_AT] = ACTIONS(1188), - [anon_sym_AT_COLON] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1188), - [anon_sym_catch] = ACTIONS(1188), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_new] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_EQ_GT] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1188), - [anon_sym_macro] = ACTIONS(1188), - [anon_sym_abstract] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_public] = ACTIONS(1188), - [anon_sym_private] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym_inline] = ACTIONS(1188), - [anon_sym_overload] = ACTIONS(1188), - [anon_sym_override] = ACTIONS(1188), - [anon_sym_final] = ACTIONS(1188), - [anon_sym_class] = ACTIONS(1188), - [anon_sym_interface] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_typedef] = ACTIONS(1188), - [anon_sym_function] = ACTIONS(1188), - [anon_sym_var] = ACTIONS(1188), - [aux_sym_integer_token1] = ACTIONS(1188), - [aux_sym_integer_token2] = ACTIONS(1186), - [aux_sym_float_token1] = ACTIONS(1188), - [aux_sym_float_token2] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [aux_sym_string_token1] = ACTIONS(1186), - [aux_sym_string_token3] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_package] = ACTIONS(1192), - [anon_sym_DOT] = ACTIONS(1192), - [anon_sym_import] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_using] = ACTIONS(1192), - [anon_sym_throw] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_COLON] = ACTIONS(1190), - [anon_sym_cast] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1190), - [anon_sym_DOLLARtype] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_untyped] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_RBRACK] = ACTIONS(1190), - [anon_sym_this] = ACTIONS(1192), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_AT] = ACTIONS(1192), - [anon_sym_AT_COLON] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1192), - [anon_sym_catch] = ACTIONS(1192), - [anon_sym_else] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_do] = ACTIONS(1192), - [anon_sym_new] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_GT_GT_GT] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_EQ_GT] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1192), - [anon_sym_macro] = ACTIONS(1192), - [anon_sym_abstract] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_public] = ACTIONS(1192), - [anon_sym_private] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym_inline] = ACTIONS(1192), - [anon_sym_overload] = ACTIONS(1192), - [anon_sym_override] = ACTIONS(1192), - [anon_sym_final] = ACTIONS(1192), - [anon_sym_class] = ACTIONS(1192), - [anon_sym_interface] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(1192), - [anon_sym_var] = ACTIONS(1192), - [aux_sym_integer_token1] = ACTIONS(1192), - [aux_sym_integer_token2] = ACTIONS(1190), - [aux_sym_float_token1] = ACTIONS(1192), - [aux_sym_float_token2] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [aux_sym_string_token1] = ACTIONS(1190), - [aux_sym_string_token3] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [191] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_package] = ACTIONS(1196), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_throw] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_COLON] = ACTIONS(1194), - [anon_sym_cast] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_DOLLARtype] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_untyped] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_this] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_AT] = ACTIONS(1196), - [anon_sym_AT_COLON] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1196), - [anon_sym_catch] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_new] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_GT_GT_GT] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_EQ_GT] = ACTIONS(1194), - [anon_sym_QMARK_QMARK] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1196), - [anon_sym_macro] = ACTIONS(1196), - [anon_sym_abstract] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_public] = ACTIONS(1196), - [anon_sym_private] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_overload] = ACTIONS(1196), - [anon_sym_override] = ACTIONS(1196), - [anon_sym_final] = ACTIONS(1196), - [anon_sym_class] = ACTIONS(1196), - [anon_sym_interface] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(1196), - [anon_sym_var] = ACTIONS(1196), - [aux_sym_integer_token1] = ACTIONS(1196), - [aux_sym_integer_token2] = ACTIONS(1194), - [aux_sym_float_token1] = ACTIONS(1196), - [aux_sym_float_token2] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [aux_sym_string_token1] = ACTIONS(1194), - [aux_sym_string_token3] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [192] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), - [anon_sym_POUND] = ACTIONS(1198), - [anon_sym_package] = ACTIONS(1200), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_import] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_using] = ACTIONS(1200), - [anon_sym_throw] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_RPAREN] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_COLON] = ACTIONS(1198), - [anon_sym_cast] = ACTIONS(1200), - [anon_sym_COMMA] = ACTIONS(1198), - [anon_sym_DOLLARtype] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_untyped] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1198), - [anon_sym_this] = ACTIONS(1200), - [anon_sym_QMARK] = ACTIONS(1200), - [anon_sym_AT] = ACTIONS(1200), - [anon_sym_AT_COLON] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1200), - [anon_sym_catch] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_new] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1200), - [anon_sym_GT_GT_GT] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1200), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_EQ_GT] = ACTIONS(1198), - [anon_sym_QMARK_QMARK] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1200), - [anon_sym_macro] = ACTIONS(1200), - [anon_sym_abstract] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_public] = ACTIONS(1200), - [anon_sym_private] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_overload] = ACTIONS(1200), - [anon_sym_override] = ACTIONS(1200), - [anon_sym_final] = ACTIONS(1200), - [anon_sym_class] = ACTIONS(1200), - [anon_sym_interface] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(1200), - [anon_sym_var] = ACTIONS(1200), - [aux_sym_integer_token1] = ACTIONS(1200), - [aux_sym_integer_token2] = ACTIONS(1198), - [aux_sym_float_token1] = ACTIONS(1200), - [aux_sym_float_token2] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1200), - [anon_sym_false] = ACTIONS(1200), - [aux_sym_string_token1] = ACTIONS(1198), - [aux_sym_string_token3] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [193] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [anon_sym_package] = ACTIONS(1204), - [anon_sym_DOT] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_using] = ACTIONS(1204), - [anon_sym_throw] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_COLON] = ACTIONS(1202), - [anon_sym_cast] = ACTIONS(1204), - [anon_sym_COMMA] = ACTIONS(1202), - [anon_sym_DOLLARtype] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_untyped] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_RBRACK] = ACTIONS(1202), - [anon_sym_this] = ACTIONS(1204), - [anon_sym_QMARK] = ACTIONS(1204), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_AT_COLON] = ACTIONS(1202), - [anon_sym_try] = ACTIONS(1204), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_new] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PERCENT] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_LT_LT] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(1204), - [anon_sym_GT_GT_GT] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_CARET] = ACTIONS(1202), - [anon_sym_AMP_AMP] = ACTIONS(1202), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_EQ_EQ] = ACTIONS(1202), - [anon_sym_BANG_EQ] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_LT_EQ] = ACTIONS(1202), - [anon_sym_GT] = ACTIONS(1204), - [anon_sym_GT_EQ] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1202), - [anon_sym_QMARK_QMARK] = ACTIONS(1202), - [anon_sym_EQ] = ACTIONS(1204), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1202), - [anon_sym_null] = ACTIONS(1204), - [anon_sym_macro] = ACTIONS(1204), - [anon_sym_abstract] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_public] = ACTIONS(1204), - [anon_sym_private] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_overload] = ACTIONS(1204), - [anon_sym_override] = ACTIONS(1204), - [anon_sym_final] = ACTIONS(1204), - [anon_sym_class] = ACTIONS(1204), - [anon_sym_interface] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_function] = ACTIONS(1204), - [anon_sym_var] = ACTIONS(1204), - [aux_sym_integer_token1] = ACTIONS(1204), - [aux_sym_integer_token2] = ACTIONS(1202), - [aux_sym_float_token1] = ACTIONS(1204), - [aux_sym_float_token2] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), - [aux_sym_string_token1] = ACTIONS(1202), - [aux_sym_string_token3] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_package] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_import] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_using] = ACTIONS(1208), - [anon_sym_throw] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_RPAREN] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_COLON] = ACTIONS(1206), - [anon_sym_cast] = ACTIONS(1208), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_DOLLARtype] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_untyped] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_RBRACK] = ACTIONS(1206), - [anon_sym_this] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_AT] = ACTIONS(1208), - [anon_sym_AT_COLON] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1208), - [anon_sym_catch] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_new] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PERCENT] = ACTIONS(1206), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_LT_LT] = ACTIONS(1206), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_GT_GT_GT] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1206), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ_GT] = ACTIONS(1206), - [anon_sym_QMARK_QMARK] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_null] = ACTIONS(1208), - [anon_sym_macro] = ACTIONS(1208), - [anon_sym_abstract] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_public] = ACTIONS(1208), - [anon_sym_private] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_overload] = ACTIONS(1208), - [anon_sym_override] = ACTIONS(1208), - [anon_sym_final] = ACTIONS(1208), - [anon_sym_class] = ACTIONS(1208), - [anon_sym_interface] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_function] = ACTIONS(1208), - [anon_sym_var] = ACTIONS(1208), - [aux_sym_integer_token1] = ACTIONS(1208), - [aux_sym_integer_token2] = ACTIONS(1206), - [aux_sym_float_token1] = ACTIONS(1208), - [aux_sym_float_token2] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [aux_sym_string_token1] = ACTIONS(1206), - [aux_sym_string_token3] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [195] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1212), - [anon_sym_POUND] = ACTIONS(1210), - [anon_sym_package] = ACTIONS(1212), - [anon_sym_DOT] = ACTIONS(1212), - [anon_sym_import] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_using] = ACTIONS(1212), - [anon_sym_throw] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1210), - [anon_sym_RPAREN] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_COLON] = ACTIONS(1210), - [anon_sym_cast] = ACTIONS(1212), - [anon_sym_COMMA] = ACTIONS(1210), - [anon_sym_DOLLARtype] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_untyped] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_RBRACK] = ACTIONS(1210), - [anon_sym_this] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(1212), - [anon_sym_AT] = ACTIONS(1212), - [anon_sym_AT_COLON] = ACTIONS(1210), - [anon_sym_try] = ACTIONS(1212), - [anon_sym_catch] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_new] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PERCENT] = ACTIONS(1210), - [anon_sym_SLASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_LT_LT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(1212), - [anon_sym_GT_GT_GT] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_CARET] = ACTIONS(1210), - [anon_sym_AMP_AMP] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1210), - [anon_sym_EQ_EQ] = ACTIONS(1210), - [anon_sym_BANG_EQ] = ACTIONS(1210), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_LT_EQ] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_GT_EQ] = ACTIONS(1210), - [anon_sym_EQ_GT] = ACTIONS(1210), - [anon_sym_QMARK_QMARK] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), - [anon_sym_null] = ACTIONS(1212), - [anon_sym_macro] = ACTIONS(1212), - [anon_sym_abstract] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_public] = ACTIONS(1212), - [anon_sym_private] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_overload] = ACTIONS(1212), - [anon_sym_override] = ACTIONS(1212), - [anon_sym_final] = ACTIONS(1212), - [anon_sym_class] = ACTIONS(1212), - [anon_sym_interface] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_function] = ACTIONS(1212), - [anon_sym_var] = ACTIONS(1212), - [aux_sym_integer_token1] = ACTIONS(1212), - [aux_sym_integer_token2] = ACTIONS(1210), - [aux_sym_float_token1] = ACTIONS(1212), - [aux_sym_float_token2] = ACTIONS(1210), - [anon_sym_true] = ACTIONS(1212), - [anon_sym_false] = ACTIONS(1212), - [aux_sym_string_token1] = ACTIONS(1210), - [aux_sym_string_token3] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [196] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1216), - [anon_sym_POUND] = ACTIONS(1214), - [anon_sym_package] = ACTIONS(1216), - [anon_sym_DOT] = ACTIONS(1216), - [anon_sym_import] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_using] = ACTIONS(1216), - [anon_sym_throw] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_COLON] = ACTIONS(1214), - [anon_sym_cast] = ACTIONS(1216), - [anon_sym_COMMA] = ACTIONS(1214), - [anon_sym_DOLLARtype] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_untyped] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_RBRACK] = ACTIONS(1214), - [anon_sym_this] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(1216), - [anon_sym_AT] = ACTIONS(1216), - [anon_sym_AT_COLON] = ACTIONS(1214), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_new] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PERCENT] = ACTIONS(1214), - [anon_sym_SLASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1214), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_GT_GT_GT] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_EQ_EQ] = ACTIONS(1214), - [anon_sym_BANG_EQ] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_LT_EQ] = ACTIONS(1214), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_GT_EQ] = ACTIONS(1214), - [anon_sym_EQ_GT] = ACTIONS(1214), - [anon_sym_QMARK_QMARK] = ACTIONS(1214), - [anon_sym_EQ] = ACTIONS(1216), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), - [anon_sym_null] = ACTIONS(1216), - [anon_sym_macro] = ACTIONS(1216), - [anon_sym_abstract] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_public] = ACTIONS(1216), - [anon_sym_private] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_overload] = ACTIONS(1216), - [anon_sym_override] = ACTIONS(1216), - [anon_sym_final] = ACTIONS(1216), - [anon_sym_class] = ACTIONS(1216), - [anon_sym_interface] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_function] = ACTIONS(1216), - [anon_sym_var] = ACTIONS(1216), - [aux_sym_integer_token1] = ACTIONS(1216), - [aux_sym_integer_token2] = ACTIONS(1214), - [aux_sym_float_token1] = ACTIONS(1216), - [aux_sym_float_token2] = ACTIONS(1214), - [anon_sym_true] = ACTIONS(1216), - [anon_sym_false] = ACTIONS(1216), - [aux_sym_string_token1] = ACTIONS(1214), - [aux_sym_string_token3] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(1218), - [anon_sym_package] = ACTIONS(1220), - [anon_sym_DOT] = ACTIONS(1220), - [anon_sym_import] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_using] = ACTIONS(1220), - [anon_sym_throw] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1218), - [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_cast] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1218), - [anon_sym_DOLLARtype] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_untyped] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_RBRACK] = ACTIONS(1218), - [anon_sym_this] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_AT_COLON] = ACTIONS(1218), - [anon_sym_try] = ACTIONS(1220), - [anon_sym_catch] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_new] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PERCENT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1218), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_GT_GT_GT] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(1218), - [anon_sym_PIPE_PIPE] = ACTIONS(1218), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1218), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_GT_EQ] = ACTIONS(1218), - [anon_sym_EQ_GT] = ACTIONS(1218), - [anon_sym_QMARK_QMARK] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1218), - [anon_sym_null] = ACTIONS(1220), - [anon_sym_macro] = ACTIONS(1220), - [anon_sym_abstract] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_overload] = ACTIONS(1220), - [anon_sym_override] = ACTIONS(1220), - [anon_sym_final] = ACTIONS(1220), - [anon_sym_class] = ACTIONS(1220), - [anon_sym_interface] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_function] = ACTIONS(1220), - [anon_sym_var] = ACTIONS(1220), - [aux_sym_integer_token1] = ACTIONS(1220), - [aux_sym_integer_token2] = ACTIONS(1218), - [aux_sym_float_token1] = ACTIONS(1220), - [aux_sym_float_token2] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [aux_sym_string_token1] = ACTIONS(1218), - [aux_sym_string_token3] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [198] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1224), - [anon_sym_POUND] = ACTIONS(1222), - [anon_sym_package] = ACTIONS(1224), - [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_import] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_using] = ACTIONS(1224), - [anon_sym_throw] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1222), - [anon_sym_cast] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_DOLLARtype] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_untyped] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1222), - [anon_sym_this] = ACTIONS(1224), - [anon_sym_QMARK] = ACTIONS(1224), - [anon_sym_AT] = ACTIONS(1224), - [anon_sym_AT_COLON] = ACTIONS(1222), - [anon_sym_try] = ACTIONS(1224), - [anon_sym_catch] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_new] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_EQ_GT] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1224), - [anon_sym_macro] = ACTIONS(1224), - [anon_sym_abstract] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_public] = ACTIONS(1224), - [anon_sym_private] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_overload] = ACTIONS(1224), - [anon_sym_override] = ACTIONS(1224), - [anon_sym_final] = ACTIONS(1224), - [anon_sym_class] = ACTIONS(1224), - [anon_sym_interface] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_function] = ACTIONS(1224), - [anon_sym_var] = ACTIONS(1224), - [aux_sym_integer_token1] = ACTIONS(1224), - [aux_sym_integer_token2] = ACTIONS(1222), - [aux_sym_float_token1] = ACTIONS(1224), - [aux_sym_float_token2] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1224), - [anon_sym_false] = ACTIONS(1224), - [aux_sym_string_token1] = ACTIONS(1222), - [aux_sym_string_token3] = ACTIONS(1222), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [199] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(1226), - [anon_sym_package] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(1228), - [anon_sym_throw] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_COLON] = ACTIONS(1226), - [anon_sym_cast] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_DOLLARtype] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_untyped] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_this] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_AT_COLON] = ACTIONS(1226), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_catch] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PERCENT] = ACTIONS(1226), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_LT_LT] = ACTIONS(1226), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_GT_GT_GT] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1226), - [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_EQ_EQ] = ACTIONS(1226), - [anon_sym_BANG_EQ] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1226), - [anon_sym_EQ_GT] = ACTIONS(1226), - [anon_sym_QMARK_QMARK] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_macro] = ACTIONS(1228), - [anon_sym_abstract] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_public] = ACTIONS(1228), - [anon_sym_private] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_overload] = ACTIONS(1228), - [anon_sym_override] = ACTIONS(1228), - [anon_sym_final] = ACTIONS(1228), - [anon_sym_class] = ACTIONS(1228), - [anon_sym_interface] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_function] = ACTIONS(1228), - [anon_sym_var] = ACTIONS(1228), - [aux_sym_integer_token1] = ACTIONS(1228), - [aux_sym_integer_token2] = ACTIONS(1226), - [aux_sym_float_token1] = ACTIONS(1228), - [aux_sym_float_token2] = ACTIONS(1226), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym_string_token1] = ACTIONS(1226), - [aux_sym_string_token3] = ACTIONS(1226), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [200] = { - [sym__rhs_expression] = STATE(1247), - [sym__unaryExpression] = STATE(3135), - [sym_runtime_type_check_expression] = STATE(3135), - [sym_switch_expression] = STATE(3135), - [sym_cast_expression] = STATE(3135), - [sym_type_trace_expression] = STATE(3135), - [sym__parenthesized_expression] = STATE(3050), - [sym_subscript_expression] = STATE(3135), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym_block] = STATE(3135), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1247), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [169] = { + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(170), + [sym_subscript_expression] = STATE(170), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_untyped] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1632), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -33888,70 +32690,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [201] = { - [sym__rhs_expression] = STATE(959), - [sym__unaryExpression] = STATE(2453), - [sym_runtime_type_check_expression] = STATE(2453), - [sym_switch_expression] = STATE(2453), - [sym_cast_expression] = STATE(2453), - [sym_type_trace_expression] = STATE(2453), - [sym__parenthesized_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2453), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(959), - [sym_operator] = STATE(1927), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1548), - [sym_integer] = STATE(1548), - [sym_float] = STATE(1548), - [sym_bool] = STATE(1548), - [sym_string] = STATE(1466), - [sym_null] = STATE(1548), - [sym_array] = STATE(1548), - [sym_map] = STATE(1548), - [sym_object] = STATE(1548), - [sym_pair] = STATE(1488), - [sym_identifier] = ACTIONS(1242), + [170] = { + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(170), + [sym_subscript_expression] = STATE(170), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_cast] = ACTIONS(1651), + [anon_sym_DOLLARtype] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_untyped] = ACTIONS(1660), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_this] = ACTIONS(1669), + [anon_sym_new] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1637), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1637), + [anon_sym_GT_GT] = ACTIONS(1687), + [anon_sym_GT_GT_GT] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1675), + [anon_sym_PIPE_PIPE] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1675), + [anon_sym_EQ_GT] = ACTIONS(1675), + [anon_sym_QMARK_QMARK] = ACTIONS(1675), + [anon_sym_EQ] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1690), + [aux_sym_integer_token1] = ACTIONS(1693), + [aux_sym_integer_token2] = ACTIONS(1696), + [aux_sym_float_token1] = ACTIONS(1699), + [aux_sym_float_token2] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [aux_sym_string_token1] = ACTIONS(1708), + [aux_sym_string_token3] = ACTIONS(1711), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [171] = { + [sym__rangeOperator] = STATE(2469), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_package] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_using] = ACTIONS(1356), + [anon_sym_throw] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_this] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_AT_COLON] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1356), + [anon_sym_macro] = ACTIONS(1356), + [anon_sym_abstract] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_public] = ACTIONS(1356), + [anon_sym_private] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_overload] = ACTIONS(1356), + [anon_sym_override] = ACTIONS(1356), + [anon_sym_final] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1356), + [anon_sym_interface] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_function] = ACTIONS(1356), + [anon_sym_var] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1356), + [aux_sym_integer_token2] = ACTIONS(1354), + [aux_sym_float_token1] = ACTIONS(1356), + [aux_sym_float_token2] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1354), + [aux_sym_string_token3] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [172] = { + [sym__rhs_expression] = STATE(877), + [sym__unaryExpression] = STATE(167), + [sym_runtime_type_check_expression] = STATE(167), + [sym_switch_expression] = STATE(167), + [sym_cast_expression] = STATE(167), + [sym_type_trace_expression] = STATE(167), + [sym__parenthesized_expression] = STATE(974), + [sym_range_expression] = STATE(167), + [sym_subscript_expression] = STATE(167), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_structure_type_pair] = STATE(3451), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(167), + [sym_identifier] = ACTIONS(1616), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1250), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_untyped] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1262), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -33978,70 +32966,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [202] = { - [sym__rhs_expression] = STATE(963), - [sym__unaryExpression] = STATE(2437), - [sym_runtime_type_check_expression] = STATE(2437), - [sym_switch_expression] = STATE(2437), - [sym_cast_expression] = STATE(2437), - [sym_type_trace_expression] = STATE(2437), - [sym__parenthesized_expression] = STATE(2365), - [sym_subscript_expression] = STATE(2437), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(963), - [sym_operator] = STATE(1927), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1548), - [sym_integer] = STATE(1548), - [sym_float] = STATE(1548), - [sym_bool] = STATE(1548), - [sym_string] = STATE(1466), - [sym_null] = STATE(1548), - [sym_array] = STATE(1548), - [sym_map] = STATE(1548), - [sym_object] = STATE(1548), - [sym_pair] = STATE(1434), - [sym_identifier] = ACTIONS(1242), + [173] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1720), + [anon_sym_import] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_using] = ACTIONS(1720), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_cast] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DOLLARtype] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_untyped] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1720), + [anon_sym_QMARK] = ACTIONS(1720), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_AT_COLON] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_catch] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_new] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_LT_LT] = ACTIONS(1718), + [anon_sym_GT_GT] = ACTIONS(1720), + [anon_sym_GT_GT_GT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [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(1720), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1720), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_EQ_GT] = ACTIONS(1718), + [anon_sym_QMARK_QMARK] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1718), + [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_enum] = 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(1718), + [aux_sym_float_token1] = ACTIONS(1720), + [aux_sym_float_token2] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), + [aux_sym_string_token3] = ACTIONS(1718), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [174] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_package] = ACTIONS(1725), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_throw] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_COLON] = ACTIONS(1722), + [anon_sym_cast] = ACTIONS(1725), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_DOLLARtype] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_untyped] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_RBRACK] = ACTIONS(1722), + [anon_sym_this] = ACTIONS(1725), + [anon_sym_QMARK] = ACTIONS(1725), + [anon_sym_AT] = ACTIONS(1725), + [anon_sym_AT_COLON] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_catch] = ACTIONS(1725), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [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(1725), + [anon_sym_LT_EQ] = ACTIONS(1722), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1722), + [anon_sym_EQ_GT] = ACTIONS(1722), + [anon_sym_QMARK_QMARK] = ACTIONS(1722), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1722), + [anon_sym_null] = ACTIONS(1725), + [anon_sym_macro] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_extern] = ACTIONS(1725), + [anon_sym_inline] = ACTIONS(1725), + [anon_sym_overload] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_final] = ACTIONS(1725), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_typedef] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [aux_sym_integer_token1] = ACTIONS(1725), + [aux_sym_integer_token2] = ACTIONS(1722), + [aux_sym_float_token1] = ACTIONS(1725), + [aux_sym_float_token2] = ACTIONS(1722), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [aux_sym_string_token1] = ACTIONS(1722), + [aux_sym_string_token3] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [175] = { + [ts_builtin_sym_end] = ACTIONS(1728), + [sym_identifier] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1728), + [anon_sym_package] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_using] = ACTIONS(1730), + [anon_sym_throw] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_COLON] = ACTIONS(1728), + [anon_sym_cast] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_DOLLARtype] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_untyped] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(1728), + [anon_sym_this] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_AT_COLON] = ACTIONS(1728), + [anon_sym_try] = ACTIONS(1730), + [anon_sym_catch] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1730), + [anon_sym_GT_GT_GT] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1728), + [anon_sym_AMP_AMP] = ACTIONS(1728), + [anon_sym_PIPE_PIPE] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_LT_EQ] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1728), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_QMARK] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1728), + [anon_sym_null] = ACTIONS(1730), + [anon_sym_macro] = ACTIONS(1730), + [anon_sym_abstract] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_public] = ACTIONS(1730), + [anon_sym_private] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_inline] = ACTIONS(1730), + [anon_sym_overload] = ACTIONS(1730), + [anon_sym_override] = ACTIONS(1730), + [anon_sym_final] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(1730), + [anon_sym_interface] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_function] = ACTIONS(1730), + [anon_sym_var] = ACTIONS(1730), + [aux_sym_integer_token1] = ACTIONS(1730), + [aux_sym_integer_token2] = ACTIONS(1728), + [aux_sym_float_token1] = ACTIONS(1730), + [aux_sym_float_token2] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(1730), + [anon_sym_false] = ACTIONS(1730), + [aux_sym_string_token1] = ACTIONS(1728), + [aux_sym_string_token3] = ACTIONS(1728), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [176] = { + [sym__rhs_expression] = STATE(877), + [sym__unaryExpression] = STATE(167), + [sym_runtime_type_check_expression] = STATE(167), + [sym_switch_expression] = STATE(167), + [sym_cast_expression] = STATE(167), + [sym_type_trace_expression] = STATE(167), + [sym__parenthesized_expression] = STATE(974), + [sym_range_expression] = STATE(167), + [sym_subscript_expression] = STATE(167), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(167), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1250), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_untyped] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -34068,70 +33330,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [203] = { - [sym__rhs_expression] = STATE(953), - [sym__unaryExpression] = STATE(2431), - [sym_runtime_type_check_expression] = STATE(2431), - [sym_switch_expression] = STATE(2431), - [sym_cast_expression] = STATE(2431), - [sym_type_trace_expression] = STATE(2431), - [sym__parenthesized_expression] = STATE(2410), - [sym_subscript_expression] = STATE(2431), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(953), - [sym_operator] = STATE(1927), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1548), - [sym_integer] = STATE(1548), - [sym_float] = STATE(1548), - [sym_bool] = STATE(1548), - [sym_string] = STATE(1466), - [sym_null] = STATE(1548), - [sym_array] = STATE(1548), - [sym_map] = STATE(1548), - [sym_object] = STATE(1548), - [sym_pair] = STATE(1454), - [sym_identifier] = ACTIONS(1242), + [177] = { + [sym__rhs_expression] = STATE(877), + [sym__unaryExpression] = STATE(169), + [sym_runtime_type_check_expression] = STATE(169), + [sym_switch_expression] = STATE(169), + [sym_cast_expression] = STATE(169), + [sym_type_trace_expression] = STATE(169), + [sym__parenthesized_expression] = STATE(974), + [sym_range_expression] = STATE(169), + [sym_subscript_expression] = STATE(169), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1250), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_untyped] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -34158,70 +33421,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [204] = { - [sym__rhs_expression] = STATE(999), - [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(2471), - [sym_subscript_expression] = STATE(2635), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(999), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [178] = { + [ts_builtin_sym_end] = ACTIONS(1732), + [sym_identifier] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_package] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_import] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_COLON] = ACTIONS(1732), + [anon_sym_cast] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1732), + [anon_sym_DOLLARtype] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_untyped] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_RBRACK] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_AT_COLON] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_catch] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1734), + [anon_sym_new] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_LT_LT] = ACTIONS(1732), + [anon_sym_GT_GT] = ACTIONS(1734), + [anon_sym_GT_GT_GT] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1732), + [anon_sym_EQ_GT] = ACTIONS(1732), + [anon_sym_QMARK_QMARK] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_macro] = ACTIONS(1734), + [anon_sym_abstract] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_public] = ACTIONS(1734), + [anon_sym_private] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym_overload] = ACTIONS(1734), + [anon_sym_override] = ACTIONS(1734), + [anon_sym_final] = ACTIONS(1734), + [anon_sym_class] = ACTIONS(1734), + [anon_sym_interface] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [anon_sym_typedef] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_var] = ACTIONS(1734), + [aux_sym_integer_token1] = ACTIONS(1734), + [aux_sym_integer_token2] = ACTIONS(1732), + [aux_sym_float_token1] = ACTIONS(1734), + [aux_sym_float_token2] = ACTIONS(1732), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), + [aux_sym_string_token3] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [179] = { + [sym__rhs_expression] = STATE(1079), + [sym__unaryExpression] = STATE(2859), + [sym_runtime_type_check_expression] = STATE(2859), + [sym_switch_expression] = STATE(2859), + [sym_cast_expression] = STATE(2859), + [sym_type_trace_expression] = STATE(2859), + [sym__parenthesized_expression] = STATE(2383), + [sym_range_expression] = STATE(2859), + [sym_subscript_expression] = STATE(2859), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1079), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_untyped] = ACTIONS(1740), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -34248,70 +33603,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [205] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(156), - [sym_runtime_type_check_expression] = STATE(156), - [sym_switch_expression] = STATE(156), - [sym_cast_expression] = STATE(156), - [sym_type_trace_expression] = STATE(156), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(156), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(934), + [180] = { + [sym__rhs_expression] = STATE(1068), + [sym__unaryExpression] = STATE(2901), + [sym_runtime_type_check_expression] = STATE(2901), + [sym_switch_expression] = STATE(2901), + [sym_cast_expression] = STATE(2901), + [sym_type_trace_expression] = STATE(2901), + [sym__parenthesized_expression] = STATE(2416), + [sym_range_expression] = STATE(2901), + [sym_subscript_expression] = STATE(2901), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1068), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_untyped] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -34338,340 +33694,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [206] = { - [sym_identifier] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(924), - [anon_sym_package] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_using] = ACTIONS(926), - [anon_sym_throw] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_cast] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_DOLLARtype] = ACTIONS(924), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_untyped] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_this] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym_AT_COLON] = ACTIONS(924), - [anon_sym_try] = ACTIONS(926), - [anon_sym_catch] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_new] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(926), - [anon_sym_GT_GT_GT] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(926), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_QMARK] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(924), - [anon_sym_null] = ACTIONS(926), - [anon_sym_macro] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_static] = ACTIONS(926), - [anon_sym_public] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_overload] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_interface] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_function] = ACTIONS(926), - [anon_sym_var] = ACTIONS(926), - [aux_sym_integer_token1] = ACTIONS(926), - [aux_sym_integer_token2] = ACTIONS(924), - [aux_sym_float_token1] = ACTIONS(926), - [aux_sym_float_token2] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [aux_sym_string_token1] = ACTIONS(924), - [aux_sym_string_token3] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(924), - [sym__closing_brace_marker] = ACTIONS(924), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [207] = { - [sym_identifier] = ACTIONS(1074), - [anon_sym_POUND] = ACTIONS(1072), - [anon_sym_package] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_import] = ACTIONS(1074), - [anon_sym_STAR] = ACTIONS(1072), - [anon_sym_using] = ACTIONS(1074), - [anon_sym_throw] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1074), - [anon_sym_COLON] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1074), - [anon_sym_cast] = ACTIONS(1074), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_DOLLARtype] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_untyped] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_this] = ACTIONS(1074), - [anon_sym_QMARK] = ACTIONS(1074), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_AT_COLON] = ACTIONS(1072), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_PERCENT] = ACTIONS(1072), - [anon_sym_SLASH] = ACTIONS(1074), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_LT_LT] = ACTIONS(1072), - [anon_sym_GT_GT] = ACTIONS(1074), - [anon_sym_GT_GT_GT] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1072), - [anon_sym_PIPE_PIPE] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(1074), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1074), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_EQ_GT] = ACTIONS(1072), - [anon_sym_QMARK_QMARK] = ACTIONS(1072), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1074), - [anon_sym_macro] = ACTIONS(1074), - [anon_sym_abstract] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_inline] = ACTIONS(1074), - [anon_sym_overload] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_final] = ACTIONS(1074), - [anon_sym_class] = ACTIONS(1074), - [anon_sym_interface] = ACTIONS(1074), - [anon_sym_enum] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1074), - [anon_sym_function] = ACTIONS(1074), - [anon_sym_var] = ACTIONS(1074), - [aux_sym_integer_token1] = ACTIONS(1074), - [aux_sym_integer_token2] = ACTIONS(1072), - [aux_sym_float_token1] = ACTIONS(1074), - [aux_sym_float_token2] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1074), - [anon_sym_false] = ACTIONS(1074), - [aux_sym_string_token1] = ACTIONS(1072), - [aux_sym_string_token3] = ACTIONS(1072), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1072), + [181] = { + [ts_builtin_sym_end] = ACTIONS(1752), + [sym_identifier] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_package] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_import] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_using] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_cast] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_DOLLARtype] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_untyped] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_AT_COLON] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_catch] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_do] = ACTIONS(1754), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1752), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_GT_GT_GT] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_EQ_GT] = ACTIONS(1752), + [anon_sym_QMARK_QMARK] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_macro] = ACTIONS(1754), + [anon_sym_abstract] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1754), + [anon_sym_public] = ACTIONS(1754), + [anon_sym_private] = ACTIONS(1754), + [anon_sym_extern] = ACTIONS(1754), + [anon_sym_inline] = ACTIONS(1754), + [anon_sym_overload] = ACTIONS(1754), + [anon_sym_override] = ACTIONS(1754), + [anon_sym_final] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(1754), + [anon_sym_interface] = ACTIONS(1754), + [anon_sym_enum] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(1754), + [anon_sym_function] = ACTIONS(1754), + [anon_sym_var] = ACTIONS(1754), + [aux_sym_integer_token1] = ACTIONS(1754), + [aux_sym_integer_token2] = ACTIONS(1752), + [aux_sym_float_token1] = ACTIONS(1754), + [aux_sym_float_token2] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [aux_sym_string_token1] = ACTIONS(1752), + [aux_sym_string_token3] = ACTIONS(1752), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [208] = { - [sym_identifier] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(1122), - [anon_sym_package] = ACTIONS(1124), - [anon_sym_DOT] = ACTIONS(1124), - [anon_sym_import] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_using] = ACTIONS(1124), - [anon_sym_throw] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_case] = ACTIONS(1124), - [anon_sym_COLON] = ACTIONS(1122), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_cast] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1122), - [anon_sym_DOLLARtype] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_untyped] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_this] = ACTIONS(1124), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_AT] = ACTIONS(1124), - [anon_sym_AT_COLON] = ACTIONS(1122), - [anon_sym_try] = ACTIONS(1124), - [anon_sym_catch] = ACTIONS(1124), - [anon_sym_else] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_new] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PERCENT] = ACTIONS(1122), - [anon_sym_SLASH] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_LT_LT] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_GT_GT_GT] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_CARET] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_EQ_EQ] = ACTIONS(1122), - [anon_sym_BANG_EQ] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1124), - [anon_sym_LT_EQ] = ACTIONS(1122), - [anon_sym_GT] = ACTIONS(1124), - [anon_sym_GT_EQ] = ACTIONS(1122), - [anon_sym_EQ_GT] = ACTIONS(1122), - [anon_sym_QMARK_QMARK] = ACTIONS(1122), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1122), - [anon_sym_null] = ACTIONS(1124), - [anon_sym_macro] = ACTIONS(1124), - [anon_sym_abstract] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_public] = ACTIONS(1124), - [anon_sym_private] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym_overload] = ACTIONS(1124), - [anon_sym_override] = ACTIONS(1124), - [anon_sym_final] = ACTIONS(1124), - [anon_sym_class] = ACTIONS(1124), - [anon_sym_interface] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1124), - [anon_sym_function] = ACTIONS(1124), - [anon_sym_var] = ACTIONS(1124), - [aux_sym_integer_token1] = ACTIONS(1124), - [aux_sym_integer_token2] = ACTIONS(1122), - [aux_sym_float_token1] = ACTIONS(1124), - [aux_sym_float_token2] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [aux_sym_string_token1] = ACTIONS(1122), - [aux_sym_string_token3] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1122), + [182] = { + [ts_builtin_sym_end] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_package] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1758), + [anon_sym_import] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_using] = ACTIONS(1758), + [anon_sym_throw] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_COLON] = ACTIONS(1756), + [anon_sym_cast] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_DOLLARtype] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1758), + [anon_sym_return] = ACTIONS(1758), + [anon_sym_untyped] = ACTIONS(1758), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_this] = ACTIONS(1758), + [anon_sym_QMARK] = ACTIONS(1758), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_AT_COLON] = ACTIONS(1756), + [anon_sym_try] = ACTIONS(1758), + [anon_sym_catch] = ACTIONS(1758), + [anon_sym_else] = ACTIONS(1758), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_while] = ACTIONS(1758), + [anon_sym_do] = ACTIONS(1758), + [anon_sym_new] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1758), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1758), + [anon_sym_GT_GT_GT] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_EQ_GT] = ACTIONS(1756), + [anon_sym_QMARK_QMARK] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1758), + [anon_sym_macro] = ACTIONS(1758), + [anon_sym_abstract] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1758), + [anon_sym_public] = ACTIONS(1758), + [anon_sym_private] = ACTIONS(1758), + [anon_sym_extern] = ACTIONS(1758), + [anon_sym_inline] = ACTIONS(1758), + [anon_sym_overload] = ACTIONS(1758), + [anon_sym_override] = ACTIONS(1758), + [anon_sym_final] = ACTIONS(1758), + [anon_sym_class] = ACTIONS(1758), + [anon_sym_interface] = ACTIONS(1758), + [anon_sym_enum] = ACTIONS(1758), + [anon_sym_typedef] = ACTIONS(1758), + [anon_sym_function] = ACTIONS(1758), + [anon_sym_var] = ACTIONS(1758), + [aux_sym_integer_token1] = ACTIONS(1758), + [aux_sym_integer_token2] = ACTIONS(1756), + [aux_sym_float_token1] = ACTIONS(1758), + [aux_sym_float_token2] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1758), + [anon_sym_false] = ACTIONS(1758), + [aux_sym_string_token1] = ACTIONS(1756), + [aux_sym_string_token3] = ACTIONS(1756), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [209] = { - [sym__rhs_expression] = STATE(1033), - [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(2588), - [sym_subscript_expression] = STATE(2789), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1033), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [183] = { + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(160), + [sym_subscript_expression] = STATE(160), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_untyped] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -34698,160 +33967,526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [210] = { - [sym__rhs_expression] = STATE(988), - [sym__unaryExpression] = STATE(2682), - [sym_runtime_type_check_expression] = STATE(2682), - [sym_switch_expression] = STATE(2682), - [sym_cast_expression] = STATE(2682), - [sym_type_trace_expression] = STATE(2682), - [sym__parenthesized_expression] = STATE(2445), - [sym_subscript_expression] = STATE(2682), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(988), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_untyped] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), - [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(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [184] = { + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_package] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_import] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_using] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_COLON] = ACTIONS(1760), + [anon_sym_cast] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLARtype] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_untyped] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_RBRACK] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_AT_COLON] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_catch] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_LT_LT] = ACTIONS(1760), + [anon_sym_GT_GT] = ACTIONS(1762), + [anon_sym_GT_GT_GT] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1760), + [anon_sym_EQ_GT] = ACTIONS(1760), + [anon_sym_QMARK_QMARK] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1760), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_macro] = ACTIONS(1762), + [anon_sym_abstract] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_overload] = ACTIONS(1762), + [anon_sym_override] = ACTIONS(1762), + [anon_sym_final] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_interface] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_function] = ACTIONS(1762), + [anon_sym_var] = ACTIONS(1762), + [aux_sym_integer_token1] = ACTIONS(1762), + [aux_sym_integer_token2] = ACTIONS(1760), + [aux_sym_float_token1] = ACTIONS(1762), + [aux_sym_float_token2] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym_string_token1] = ACTIONS(1760), + [aux_sym_string_token3] = ACTIONS(1760), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [211] = { - [sym__rhs_expression] = STATE(983), - [sym__unaryExpression] = STATE(2667), - [sym_runtime_type_check_expression] = STATE(2667), - [sym_switch_expression] = STATE(2667), - [sym_cast_expression] = STATE(2667), - [sym_type_trace_expression] = STATE(2667), - [sym__parenthesized_expression] = STATE(2432), - [sym_subscript_expression] = STATE(2667), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(983), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [185] = { + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_package] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COLON] = ACTIONS(1764), + [anon_sym_cast] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_DOLLARtype] = ACTIONS(1764), + [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(1764), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_this] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_AT_COLON] = ACTIONS(1764), + [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(1764), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_GT_GT_GT] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_EQ_GT] = ACTIONS(1764), + [anon_sym_QMARK_QMARK] = ACTIONS(1764), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1764), + [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(1764), + [aux_sym_float_token1] = ACTIONS(1766), + [aux_sym_float_token2] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [aux_sym_string_token1] = ACTIONS(1764), + [aux_sym_string_token3] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [186] = { + [ts_builtin_sym_end] = ACTIONS(1768), + [sym_identifier] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1768), + [anon_sym_package] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_import] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_using] = ACTIONS(1770), + [anon_sym_throw] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_switch] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_COLON] = ACTIONS(1768), + [anon_sym_cast] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLARtype] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_untyped] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1768), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_AT_COLON] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1770), + [anon_sym_catch] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_GT_GT_GT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_AMP_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1768), + [anon_sym_EQ_GT] = ACTIONS(1768), + [anon_sym_QMARK_QMARK] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_macro] = ACTIONS(1770), + [anon_sym_abstract] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_public] = ACTIONS(1770), + [anon_sym_private] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_inline] = ACTIONS(1770), + [anon_sym_overload] = ACTIONS(1770), + [anon_sym_override] = ACTIONS(1770), + [anon_sym_final] = ACTIONS(1770), + [anon_sym_class] = ACTIONS(1770), + [anon_sym_interface] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_typedef] = ACTIONS(1770), + [anon_sym_function] = ACTIONS(1770), + [anon_sym_var] = ACTIONS(1770), + [aux_sym_integer_token1] = ACTIONS(1770), + [aux_sym_integer_token2] = ACTIONS(1768), + [aux_sym_float_token1] = ACTIONS(1770), + [aux_sym_float_token2] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym_string_token1] = ACTIONS(1768), + [aux_sym_string_token3] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [187] = { + [ts_builtin_sym_end] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_package] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_import] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_using] = ACTIONS(1775), + [anon_sym_throw] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_COLON] = ACTIONS(1772), + [anon_sym_cast] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLARtype] = ACTIONS(1772), + [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(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_this] = ACTIONS(1775), + [anon_sym_QMARK] = ACTIONS(1775), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_AT_COLON] = ACTIONS(1772), + [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(1772), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1772), + [anon_sym_PERCENT] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_GT_GT_GT] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_EQ_EQ] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1772), + [anon_sym_EQ_GT] = ACTIONS(1772), + [anon_sym_QMARK_QMARK] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1772), + [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(1772), + [aux_sym_float_token1] = ACTIONS(1775), + [aux_sym_float_token2] = ACTIONS(1772), + [anon_sym_true] = ACTIONS(1775), + [anon_sym_false] = ACTIONS(1775), + [aux_sym_string_token1] = ACTIONS(1772), + [aux_sym_string_token3] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [188] = { + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(1778), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [189] = { + [sym__rhs_expression] = STATE(877), + [sym__unaryExpression] = STATE(161), + [sym_runtime_type_check_expression] = STATE(161), + [sym_switch_expression] = STATE(161), + [sym_cast_expression] = STATE(161), + [sym_type_trace_expression] = STATE(161), + [sym__parenthesized_expression] = STATE(974), + [sym_range_expression] = STATE(161), + [sym_subscript_expression] = STATE(161), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_untyped] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -34878,70 +34513,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [212] = { - [sym__rhs_expression] = STATE(1204), - [sym__unaryExpression] = STATE(3260), - [sym_runtime_type_check_expression] = STATE(3260), - [sym_switch_expression] = STATE(3260), - [sym_cast_expression] = STATE(3260), - [sym_type_trace_expression] = STATE(3260), - [sym__parenthesized_expression] = STATE(3105), - [sym_subscript_expression] = STATE(3260), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym_block] = STATE(3260), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1204), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [190] = { + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_package] = ACTIONS(1788), + [anon_sym_DOT] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1788), + [anon_sym_throw] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COLON] = ACTIONS(1786), + [anon_sym_cast] = ACTIONS(1788), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_DOLLARtype] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_untyped] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(1786), + [anon_sym_this] = ACTIONS(1788), + [anon_sym_QMARK] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_AT_COLON] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_PERCENT] = ACTIONS(1786), + [anon_sym_SLASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_LT_LT] = ACTIONS(1786), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_GT_GT_GT] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [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(1788), + [anon_sym_LT_EQ] = ACTIONS(1786), + [anon_sym_GT] = ACTIONS(1788), + [anon_sym_GT_EQ] = ACTIONS(1786), + [anon_sym_EQ_GT] = ACTIONS(1786), + [anon_sym_QMARK_QMARK] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), + [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_enum] = 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(1786), + [aux_sym_float_token1] = ACTIONS(1788), + [aux_sym_float_token2] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [aux_sym_string_token1] = ACTIONS(1786), + [aux_sym_string_token3] = ACTIONS(1786), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [191] = { + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_package] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1792), + [anon_sym_import] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_using] = ACTIONS(1792), + [anon_sym_throw] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_cast] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_DOLLARtype] = ACTIONS(1790), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_untyped] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(1792), + [anon_sym_QMARK] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_AT_COLON] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1792), + [anon_sym_catch] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_LT_LT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1792), + [anon_sym_GT_GT_GT] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [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(1792), + [anon_sym_LT_EQ] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1790), + [anon_sym_EQ_GT] = ACTIONS(1790), + [anon_sym_QMARK_QMARK] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [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_enum] = 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(1790), + [aux_sym_float_token1] = ACTIONS(1792), + [aux_sym_float_token2] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1792), + [anon_sym_false] = ACTIONS(1792), + [aux_sym_string_token1] = ACTIONS(1790), + [aux_sym_string_token3] = ACTIONS(1790), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [192] = { + [sym__rhs_expression] = STATE(1066), + [sym__unaryExpression] = STATE(2904), + [sym_runtime_type_check_expression] = STATE(2904), + [sym_switch_expression] = STATE(2904), + [sym_cast_expression] = STATE(2904), + [sym_type_trace_expression] = STATE(2904), + [sym__parenthesized_expression] = STATE(2425), + [sym_range_expression] = STATE(2904), + [sym_subscript_expression] = STATE(2904), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1066), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_untyped] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_untyped] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -34968,70 +34786,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [213] = { - [sym__rhs_expression] = STATE(964), - [sym__unaryExpression] = STATE(2579), - [sym_runtime_type_check_expression] = STATE(2579), - [sym_switch_expression] = STATE(2579), - [sym_cast_expression] = STATE(2579), - [sym_type_trace_expression] = STATE(2579), - [sym__parenthesized_expression] = STATE(2377), - [sym_subscript_expression] = STATE(2579), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(964), - [sym_operator] = STATE(1927), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1548), - [sym_integer] = STATE(1548), - [sym_float] = STATE(1548), - [sym_bool] = STATE(1548), - [sym_string] = STATE(1466), - [sym_null] = STATE(1548), - [sym_array] = STATE(1548), - [sym_map] = STATE(1548), - [sym_object] = STATE(1548), - [sym_pair] = STATE(1489), - [sym_identifier] = ACTIONS(1242), + [193] = { + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_package] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1804), + [anon_sym_import] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_using] = ACTIONS(1804), + [anon_sym_throw] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_COLON] = ACTIONS(1802), + [anon_sym_cast] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_DOLLARtype] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_untyped] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_RBRACK] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1804), + [anon_sym_QMARK] = ACTIONS(1804), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_AT_COLON] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1804), + [anon_sym_catch] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_LT_LT] = ACTIONS(1802), + [anon_sym_GT_GT] = ACTIONS(1804), + [anon_sym_GT_GT_GT] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [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(1804), + [anon_sym_LT_EQ] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1802), + [anon_sym_EQ_GT] = ACTIONS(1802), + [anon_sym_QMARK_QMARK] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), + [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_enum] = 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(1802), + [aux_sym_float_token1] = ACTIONS(1804), + [aux_sym_float_token2] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [aux_sym_string_token1] = ACTIONS(1802), + [aux_sym_string_token3] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [194] = { + [sym__rhs_expression] = STATE(1266), + [sym__unaryExpression] = STATE(3324), + [sym_runtime_type_check_expression] = STATE(3324), + [sym_switch_expression] = STATE(3324), + [sym_cast_expression] = STATE(3324), + [sym_type_trace_expression] = STATE(3324), + [sym__parenthesized_expression] = STATE(2591), + [sym_range_expression] = STATE(3324), + [sym_subscript_expression] = STATE(3324), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym_block] = STATE(3324), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1266), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1250), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_untyped] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_untyped] = ACTIONS(1810), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -35058,70 +34968,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [214] = { - [sym__rhs_expression] = STATE(958), - [sym__unaryExpression] = STATE(2620), - [sym_runtime_type_check_expression] = STATE(2620), - [sym_switch_expression] = STATE(2620), - [sym_cast_expression] = STATE(2620), - [sym_type_trace_expression] = STATE(2620), - [sym__parenthesized_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2620), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(958), - [sym_operator] = STATE(1927), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1548), - [sym_integer] = STATE(1548), - [sym_float] = STATE(1548), - [sym_bool] = STATE(1548), - [sym_string] = STATE(1466), - [sym_null] = STATE(1548), - [sym_array] = STATE(1548), - [sym_map] = STATE(1548), - [sym_object] = STATE(1548), - [sym_pair] = STATE(1430), - [sym_identifier] = ACTIONS(1242), + [195] = { + [sym__rhs_expression] = STATE(1163), + [sym__unaryExpression] = STATE(3431), + [sym_runtime_type_check_expression] = STATE(3431), + [sym_switch_expression] = STATE(3431), + [sym_cast_expression] = STATE(3431), + [sym_type_trace_expression] = STATE(3431), + [sym__parenthesized_expression] = STATE(2692), + [sym_range_expression] = STATE(3431), + [sym_subscript_expression] = STATE(3431), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym_block] = STATE(3431), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1163), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1250), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_untyped] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1350), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_untyped] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -35148,70 +35059,708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [215] = { - [sym__rhs_expression] = STATE(994), - [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(2439), - [sym_subscript_expression] = STATE(2653), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(994), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [196] = { + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_package] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_using] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_COLON] = ACTIONS(1820), + [anon_sym_cast] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1820), + [anon_sym_DOLLARtype] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_untyped] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_RBRACK] = ACTIONS(1820), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_AT_COLON] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_catch] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_PERCENT] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_LT_LT] = ACTIONS(1820), + [anon_sym_GT_GT] = ACTIONS(1822), + [anon_sym_GT_GT_GT] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP_AMP] = ACTIONS(1820), + [anon_sym_PIPE_PIPE] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1820), + [anon_sym_BANG_EQ] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_EQ_GT] = ACTIONS(1820), + [anon_sym_QMARK_QMARK] = ACTIONS(1820), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1820), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_macro] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_inline] = ACTIONS(1822), + [anon_sym_overload] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_final] = ACTIONS(1822), + [anon_sym_class] = ACTIONS(1822), + [anon_sym_interface] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_typedef] = ACTIONS(1822), + [anon_sym_function] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(1822), + [aux_sym_integer_token1] = ACTIONS(1822), + [aux_sym_integer_token2] = ACTIONS(1820), + [aux_sym_float_token1] = ACTIONS(1822), + [aux_sym_float_token2] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym_string_token1] = ACTIONS(1820), + [aux_sym_string_token3] = ACTIONS(1820), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [197] = { + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(1778), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [198] = { + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_package] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_import] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1826), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_switch] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_COLON] = ACTIONS(1824), + [anon_sym_cast] = ACTIONS(1826), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_DOLLARtype] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_untyped] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1826), + [anon_sym_QMARK] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [anon_sym_AT_COLON] = ACTIONS(1824), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1824), + [anon_sym_GT_GT] = ACTIONS(1826), + [anon_sym_GT_GT_GT] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_CARET] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_EQ_GT] = ACTIONS(1824), + [anon_sym_QMARK_QMARK] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1826), + [anon_sym_macro] = ACTIONS(1826), + [anon_sym_abstract] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_public] = ACTIONS(1826), + [anon_sym_private] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_inline] = ACTIONS(1826), + [anon_sym_overload] = ACTIONS(1826), + [anon_sym_override] = ACTIONS(1826), + [anon_sym_final] = ACTIONS(1826), + [anon_sym_class] = ACTIONS(1826), + [anon_sym_interface] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_typedef] = ACTIONS(1826), + [anon_sym_function] = ACTIONS(1826), + [anon_sym_var] = ACTIONS(1826), + [aux_sym_integer_token1] = ACTIONS(1826), + [aux_sym_integer_token2] = ACTIONS(1824), + [aux_sym_float_token1] = ACTIONS(1826), + [aux_sym_float_token2] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [aux_sym_string_token1] = ACTIONS(1824), + [aux_sym_string_token3] = ACTIONS(1824), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [199] = { + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_package] = ACTIONS(1830), + [anon_sym_DOT] = ACTIONS(1830), + [anon_sym_import] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_using] = ACTIONS(1830), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_cast] = ACTIONS(1830), + [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_DOLLARtype] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_untyped] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_RBRACK] = ACTIONS(1828), + [anon_sym_this] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_AT_COLON] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_catch] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_LT_LT] = ACTIONS(1828), + [anon_sym_GT_GT] = ACTIONS(1830), + [anon_sym_GT_GT_GT] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1828), + [anon_sym_AMP_AMP] = ACTIONS(1828), + [anon_sym_PIPE_PIPE] = ACTIONS(1828), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1828), + [anon_sym_GT] = ACTIONS(1830), + [anon_sym_GT_EQ] = ACTIONS(1828), + [anon_sym_EQ_GT] = ACTIONS(1828), + [anon_sym_QMARK_QMARK] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1830), + [anon_sym_macro] = ACTIONS(1830), + [anon_sym_abstract] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_public] = ACTIONS(1830), + [anon_sym_private] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_inline] = ACTIONS(1830), + [anon_sym_overload] = ACTIONS(1830), + [anon_sym_override] = ACTIONS(1830), + [anon_sym_final] = ACTIONS(1830), + [anon_sym_class] = ACTIONS(1830), + [anon_sym_interface] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_typedef] = ACTIONS(1830), + [anon_sym_function] = ACTIONS(1830), + [anon_sym_var] = ACTIONS(1830), + [aux_sym_integer_token1] = ACTIONS(1830), + [aux_sym_integer_token2] = ACTIONS(1828), + [aux_sym_float_token1] = ACTIONS(1830), + [aux_sym_float_token2] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1828), + [aux_sym_string_token3] = ACTIONS(1828), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [200] = { + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_package] = ACTIONS(1834), + [anon_sym_DOT] = ACTIONS(1834), + [anon_sym_import] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1834), + [anon_sym_throw] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_COLON] = ACTIONS(1832), + [anon_sym_cast] = ACTIONS(1834), + [anon_sym_COMMA] = ACTIONS(1832), + [anon_sym_DOLLARtype] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_untyped] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_RBRACK] = ACTIONS(1832), + [anon_sym_this] = ACTIONS(1834), + [anon_sym_QMARK] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(1834), + [anon_sym_AT_COLON] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1834), + [anon_sym_catch] = ACTIONS(1834), + [anon_sym_else] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_new] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1832), + [anon_sym_PERCENT] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1832), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_GT_GT_GT] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_CARET] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_EQ_GT] = ACTIONS(1832), + [anon_sym_QMARK_QMARK] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1832), + [anon_sym_null] = ACTIONS(1834), + [anon_sym_macro] = ACTIONS(1834), + [anon_sym_abstract] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_public] = ACTIONS(1834), + [anon_sym_private] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_inline] = ACTIONS(1834), + [anon_sym_overload] = ACTIONS(1834), + [anon_sym_override] = ACTIONS(1834), + [anon_sym_final] = ACTIONS(1834), + [anon_sym_class] = ACTIONS(1834), + [anon_sym_interface] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_typedef] = ACTIONS(1834), + [anon_sym_function] = ACTIONS(1834), + [anon_sym_var] = ACTIONS(1834), + [aux_sym_integer_token1] = ACTIONS(1834), + [aux_sym_integer_token2] = ACTIONS(1832), + [aux_sym_float_token1] = ACTIONS(1834), + [aux_sym_float_token2] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [aux_sym_string_token1] = ACTIONS(1832), + [aux_sym_string_token3] = ACTIONS(1832), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [201] = { + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_package] = ACTIONS(1838), + [anon_sym_DOT] = ACTIONS(1838), + [anon_sym_import] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_using] = ACTIONS(1838), + [anon_sym_throw] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_COLON] = ACTIONS(1836), + [anon_sym_cast] = ACTIONS(1838), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_DOLLARtype] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_untyped] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_RBRACK] = ACTIONS(1836), + [anon_sym_this] = ACTIONS(1838), + [anon_sym_QMARK] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1838), + [anon_sym_AT_COLON] = ACTIONS(1836), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_catch] = ACTIONS(1838), + [anon_sym_else] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_new] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1836), + [anon_sym_PERCENT] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1838), + [anon_sym_GT_GT_GT] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1836), + [anon_sym_AMP_AMP] = ACTIONS(1836), + [anon_sym_PIPE_PIPE] = ACTIONS(1836), + [anon_sym_EQ_EQ] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_LT_EQ] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1838), + [anon_sym_GT_EQ] = ACTIONS(1836), + [anon_sym_EQ_GT] = ACTIONS(1836), + [anon_sym_QMARK_QMARK] = ACTIONS(1836), + [anon_sym_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1836), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_macro] = ACTIONS(1838), + [anon_sym_abstract] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_public] = ACTIONS(1838), + [anon_sym_private] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_inline] = ACTIONS(1838), + [anon_sym_overload] = ACTIONS(1838), + [anon_sym_override] = ACTIONS(1838), + [anon_sym_final] = ACTIONS(1838), + [anon_sym_class] = ACTIONS(1838), + [anon_sym_interface] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_typedef] = ACTIONS(1838), + [anon_sym_function] = ACTIONS(1838), + [anon_sym_var] = ACTIONS(1838), + [aux_sym_integer_token1] = ACTIONS(1838), + [aux_sym_integer_token2] = ACTIONS(1836), + [aux_sym_float_token1] = ACTIONS(1838), + [aux_sym_float_token2] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym_string_token1] = ACTIONS(1836), + [aux_sym_string_token3] = ACTIONS(1836), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [202] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_package] = ACTIONS(1300), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_import] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_using] = ACTIONS(1300), + [anon_sym_throw] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_COLON] = ACTIONS(1302), + [anon_sym_cast] = ACTIONS(1300), + [anon_sym_COMMA] = ACTIONS(1302), + [anon_sym_DOLLARtype] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_RBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_AT_COLON] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1300), + [anon_sym_macro] = ACTIONS(1300), + [anon_sym_abstract] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_public] = ACTIONS(1300), + [anon_sym_private] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_overload] = ACTIONS(1300), + [anon_sym_override] = ACTIONS(1300), + [anon_sym_final] = ACTIONS(1300), + [anon_sym_class] = ACTIONS(1300), + [anon_sym_interface] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_var] = ACTIONS(1300), + [aux_sym_integer_token1] = ACTIONS(1300), + [aux_sym_integer_token2] = ACTIONS(1302), + [aux_sym_float_token1] = ACTIONS(1300), + [aux_sym_float_token2] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1302), + [aux_sym_string_token3] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [203] = { + [sym__rhs_expression] = STATE(1034), + [sym__unaryExpression] = STATE(3054), + [sym_runtime_type_check_expression] = STATE(3054), + [sym_switch_expression] = STATE(3054), + [sym_cast_expression] = STATE(3054), + [sym_type_trace_expression] = STATE(3054), + [sym__parenthesized_expression] = STATE(2380), + [sym_range_expression] = STATE(3054), + [sym_subscript_expression] = STATE(3054), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1034), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_untyped] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -35238,698 +35787,1800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [204] = { + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_package] = ACTIONS(1850), + [anon_sym_DOT] = ACTIONS(1850), + [anon_sym_import] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1850), + [anon_sym_throw] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_cast] = ACTIONS(1850), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_DOLLARtype] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_untyped] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_this] = ACTIONS(1850), + [anon_sym_QMARK] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1850), + [anon_sym_AT_COLON] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1850), + [anon_sym_catch] = ACTIONS(1850), + [anon_sym_else] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_new] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1850), + [anon_sym_GT_GT_GT] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_EQ_EQ] = ACTIONS(1848), + [anon_sym_BANG_EQ] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_LT_EQ] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1850), + [anon_sym_GT_EQ] = ACTIONS(1848), + [anon_sym_EQ_GT] = ACTIONS(1848), + [anon_sym_QMARK_QMARK] = ACTIONS(1848), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1848), + [anon_sym_null] = ACTIONS(1850), + [anon_sym_macro] = ACTIONS(1850), + [anon_sym_abstract] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_public] = ACTIONS(1850), + [anon_sym_private] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_inline] = ACTIONS(1850), + [anon_sym_overload] = ACTIONS(1850), + [anon_sym_override] = ACTIONS(1850), + [anon_sym_final] = ACTIONS(1850), + [anon_sym_class] = ACTIONS(1850), + [anon_sym_interface] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1850), + [anon_sym_function] = ACTIONS(1850), + [anon_sym_var] = ACTIONS(1850), + [aux_sym_integer_token1] = ACTIONS(1850), + [aux_sym_integer_token2] = ACTIONS(1848), + [aux_sym_float_token1] = ACTIONS(1850), + [aux_sym_float_token2] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [aux_sym_string_token1] = ACTIONS(1848), + [aux_sym_string_token3] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [205] = { + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_package] = ACTIONS(1854), + [anon_sym_DOT] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_throw] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_COLON] = ACTIONS(1852), + [anon_sym_cast] = ACTIONS(1854), + [anon_sym_COMMA] = ACTIONS(1852), + [anon_sym_DOLLARtype] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_untyped] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_RBRACK] = ACTIONS(1852), + [anon_sym_this] = ACTIONS(1854), + [anon_sym_QMARK] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1854), + [anon_sym_AT_COLON] = ACTIONS(1852), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_catch] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_LT_LT] = ACTIONS(1852), + [anon_sym_GT_GT] = ACTIONS(1854), + [anon_sym_GT_GT_GT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym_AMP_AMP] = ACTIONS(1852), + [anon_sym_PIPE_PIPE] = ACTIONS(1852), + [anon_sym_EQ_EQ] = ACTIONS(1852), + [anon_sym_BANG_EQ] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_LT_EQ] = ACTIONS(1852), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_GT_EQ] = ACTIONS(1852), + [anon_sym_EQ_GT] = ACTIONS(1852), + [anon_sym_QMARK_QMARK] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1852), + [anon_sym_null] = ACTIONS(1854), + [anon_sym_macro] = ACTIONS(1854), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_public] = ACTIONS(1854), + [anon_sym_private] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_inline] = ACTIONS(1854), + [anon_sym_overload] = ACTIONS(1854), + [anon_sym_override] = ACTIONS(1854), + [anon_sym_final] = ACTIONS(1854), + [anon_sym_class] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_typedef] = ACTIONS(1854), + [anon_sym_function] = ACTIONS(1854), + [anon_sym_var] = ACTIONS(1854), + [aux_sym_integer_token1] = ACTIONS(1854), + [aux_sym_integer_token2] = ACTIONS(1852), + [aux_sym_float_token1] = ACTIONS(1854), + [aux_sym_float_token2] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [aux_sym_string_token1] = ACTIONS(1852), + [aux_sym_string_token3] = ACTIONS(1852), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [206] = { + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_package] = ACTIONS(1858), + [anon_sym_DOT] = ACTIONS(1858), + [anon_sym_import] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1858), + [anon_sym_throw] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_COLON] = ACTIONS(1856), + [anon_sym_cast] = ACTIONS(1858), + [anon_sym_COMMA] = ACTIONS(1856), + [anon_sym_DOLLARtype] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_untyped] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_RBRACK] = ACTIONS(1856), + [anon_sym_this] = ACTIONS(1858), + [anon_sym_QMARK] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1858), + [anon_sym_AT_COLON] = ACTIONS(1856), + [anon_sym_try] = ACTIONS(1858), + [anon_sym_catch] = ACTIONS(1858), + [anon_sym_else] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(1856), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_GT_GT_GT] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1856), + [anon_sym_AMP_AMP] = ACTIONS(1856), + [anon_sym_PIPE_PIPE] = ACTIONS(1856), + [anon_sym_EQ_EQ] = ACTIONS(1856), + [anon_sym_BANG_EQ] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_LT_EQ] = ACTIONS(1856), + [anon_sym_GT] = ACTIONS(1858), + [anon_sym_GT_EQ] = ACTIONS(1856), + [anon_sym_EQ_GT] = ACTIONS(1856), + [anon_sym_QMARK_QMARK] = ACTIONS(1856), + [anon_sym_EQ] = ACTIONS(1858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1856), + [anon_sym_null] = ACTIONS(1858), + [anon_sym_macro] = ACTIONS(1858), + [anon_sym_abstract] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_public] = ACTIONS(1858), + [anon_sym_private] = ACTIONS(1858), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_inline] = ACTIONS(1858), + [anon_sym_overload] = ACTIONS(1858), + [anon_sym_override] = ACTIONS(1858), + [anon_sym_final] = ACTIONS(1858), + [anon_sym_class] = ACTIONS(1858), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_typedef] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1858), + [anon_sym_var] = ACTIONS(1858), + [aux_sym_integer_token1] = ACTIONS(1858), + [aux_sym_integer_token2] = ACTIONS(1856), + [aux_sym_float_token1] = ACTIONS(1858), + [aux_sym_float_token2] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [aux_sym_string_token1] = ACTIONS(1856), + [aux_sym_string_token3] = ACTIONS(1856), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [207] = { + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_package] = ACTIONS(1862), + [anon_sym_DOT] = ACTIONS(1862), + [anon_sym_import] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_using] = ACTIONS(1862), + [anon_sym_throw] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_COLON] = ACTIONS(1860), + [anon_sym_cast] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1860), + [anon_sym_DOLLARtype] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_untyped] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1860), + [anon_sym_this] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [anon_sym_AT_COLON] = ACTIONS(1860), + [anon_sym_try] = ACTIONS(1862), + [anon_sym_catch] = ACTIONS(1862), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1860), + [anon_sym_PERCENT] = ACTIONS(1860), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1862), + [anon_sym_GT_GT_GT] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_EQ_EQ] = ACTIONS(1860), + [anon_sym_BANG_EQ] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_LT_EQ] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1862), + [anon_sym_GT_EQ] = ACTIONS(1860), + [anon_sym_EQ_GT] = ACTIONS(1860), + [anon_sym_QMARK_QMARK] = ACTIONS(1860), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1860), + [anon_sym_null] = ACTIONS(1862), + [anon_sym_macro] = ACTIONS(1862), + [anon_sym_abstract] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_public] = ACTIONS(1862), + [anon_sym_private] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_inline] = ACTIONS(1862), + [anon_sym_overload] = ACTIONS(1862), + [anon_sym_override] = ACTIONS(1862), + [anon_sym_final] = ACTIONS(1862), + [anon_sym_class] = ACTIONS(1862), + [anon_sym_interface] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1862), + [anon_sym_function] = ACTIONS(1862), + [anon_sym_var] = ACTIONS(1862), + [aux_sym_integer_token1] = ACTIONS(1862), + [aux_sym_integer_token2] = ACTIONS(1860), + [aux_sym_float_token1] = ACTIONS(1862), + [aux_sym_float_token2] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [aux_sym_string_token1] = ACTIONS(1860), + [aux_sym_string_token3] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [208] = { + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_package] = ACTIONS(1866), + [anon_sym_DOT] = ACTIONS(1866), + [anon_sym_import] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1866), + [anon_sym_throw] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_RPAREN] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_COLON] = ACTIONS(1864), + [anon_sym_cast] = ACTIONS(1866), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_DOLLARtype] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_untyped] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_RBRACK] = ACTIONS(1864), + [anon_sym_this] = ACTIONS(1866), + [anon_sym_QMARK] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_AT_COLON] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_new] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1864), + [anon_sym_PERCENT] = ACTIONS(1864), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_LT_LT] = ACTIONS(1864), + [anon_sym_GT_GT] = ACTIONS(1866), + [anon_sym_GT_GT_GT] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_EQ_EQ] = ACTIONS(1864), + [anon_sym_BANG_EQ] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1864), + [anon_sym_EQ_GT] = ACTIONS(1864), + [anon_sym_QMARK_QMARK] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1864), + [anon_sym_null] = ACTIONS(1866), + [anon_sym_macro] = ACTIONS(1866), + [anon_sym_abstract] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_public] = ACTIONS(1866), + [anon_sym_private] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_inline] = ACTIONS(1866), + [anon_sym_overload] = ACTIONS(1866), + [anon_sym_override] = ACTIONS(1866), + [anon_sym_final] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_typedef] = ACTIONS(1866), + [anon_sym_function] = ACTIONS(1866), + [anon_sym_var] = ACTIONS(1866), + [aux_sym_integer_token1] = ACTIONS(1866), + [aux_sym_integer_token2] = ACTIONS(1864), + [aux_sym_float_token1] = ACTIONS(1866), + [aux_sym_float_token2] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [aux_sym_string_token1] = ACTIONS(1864), + [aux_sym_string_token3] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [209] = { + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_package] = ACTIONS(1870), + [anon_sym_DOT] = ACTIONS(1870), + [anon_sym_import] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_using] = ACTIONS(1870), + [anon_sym_throw] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_COLON] = ACTIONS(1868), + [anon_sym_cast] = ACTIONS(1870), + [anon_sym_COMMA] = ACTIONS(1868), + [anon_sym_DOLLARtype] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_untyped] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_RBRACK] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(1870), + [anon_sym_QMARK] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1870), + [anon_sym_AT_COLON] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1870), + [anon_sym_catch] = ACTIONS(1870), + [anon_sym_else] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_do] = ACTIONS(1870), + [anon_sym_new] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1868), + [anon_sym_PERCENT] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1870), + [anon_sym_GT_GT_GT] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1870), + [anon_sym_GT_EQ] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1868), + [anon_sym_QMARK_QMARK] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_macro] = ACTIONS(1870), + [anon_sym_abstract] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_public] = ACTIONS(1870), + [anon_sym_private] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_inline] = ACTIONS(1870), + [anon_sym_overload] = ACTIONS(1870), + [anon_sym_override] = ACTIONS(1870), + [anon_sym_final] = ACTIONS(1870), + [anon_sym_class] = ACTIONS(1870), + [anon_sym_interface] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1870), + [anon_sym_function] = ACTIONS(1870), + [anon_sym_var] = ACTIONS(1870), + [aux_sym_integer_token1] = ACTIONS(1870), + [aux_sym_integer_token2] = ACTIONS(1868), + [aux_sym_float_token1] = ACTIONS(1870), + [aux_sym_float_token2] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [aux_sym_string_token1] = ACTIONS(1868), + [aux_sym_string_token3] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [210] = { + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_package] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_using] = ACTIONS(1874), + [anon_sym_throw] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_COLON] = ACTIONS(1872), + [anon_sym_cast] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1872), + [anon_sym_DOLLARtype] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_untyped] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_RBRACK] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(1874), + [anon_sym_QMARK] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_AT_COLON] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_catch] = ACTIONS(1874), + [anon_sym_else] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_new] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1872), + [anon_sym_PIPE_PIPE] = ACTIONS(1872), + [anon_sym_EQ_EQ] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_QMARK_QMARK] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1872), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_macro] = ACTIONS(1874), + [anon_sym_abstract] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_inline] = ACTIONS(1874), + [anon_sym_overload] = ACTIONS(1874), + [anon_sym_override] = ACTIONS(1874), + [anon_sym_final] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1874), + [anon_sym_interface] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_typedef] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(1874), + [aux_sym_integer_token1] = ACTIONS(1874), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token1] = ACTIONS(1874), + [aux_sym_float_token2] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym_string_token1] = ACTIONS(1872), + [aux_sym_string_token3] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [211] = { + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_package] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_import] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_using] = ACTIONS(1878), + [anon_sym_throw] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1876), + [anon_sym_cast] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1876), + [anon_sym_DOLLARtype] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_untyped] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_RBRACK] = ACTIONS(1876), + [anon_sym_this] = ACTIONS(1878), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_AT_COLON] = ACTIONS(1876), + [anon_sym_try] = ACTIONS(1878), + [anon_sym_catch] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_new] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1876), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_GT_GT_GT] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_AMP_AMP] = ACTIONS(1876), + [anon_sym_PIPE_PIPE] = ACTIONS(1876), + [anon_sym_EQ_EQ] = ACTIONS(1876), + [anon_sym_BANG_EQ] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1876), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_GT_EQ] = ACTIONS(1876), + [anon_sym_EQ_GT] = ACTIONS(1876), + [anon_sym_QMARK_QMARK] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1876), + [anon_sym_null] = ACTIONS(1878), + [anon_sym_macro] = ACTIONS(1878), + [anon_sym_abstract] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_public] = ACTIONS(1878), + [anon_sym_private] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_inline] = ACTIONS(1878), + [anon_sym_overload] = ACTIONS(1878), + [anon_sym_override] = ACTIONS(1878), + [anon_sym_final] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1878), + [anon_sym_interface] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1878), + [anon_sym_function] = ACTIONS(1878), + [anon_sym_var] = ACTIONS(1878), + [aux_sym_integer_token1] = ACTIONS(1878), + [aux_sym_integer_token2] = ACTIONS(1876), + [aux_sym_float_token1] = ACTIONS(1878), + [aux_sym_float_token2] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [aux_sym_string_token1] = ACTIONS(1876), + [aux_sym_string_token3] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [212] = { + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_package] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_import] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1882), + [anon_sym_throw] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_COLON] = ACTIONS(1880), + [anon_sym_cast] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1880), + [anon_sym_DOLLARtype] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_untyped] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_RBRACK] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(1882), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1882), + [anon_sym_AT_COLON] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_catch] = ACTIONS(1882), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_new] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_PERCENT] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_GT_GT_GT] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_BANG_EQ] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_LT_EQ] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1882), + [anon_sym_GT_EQ] = ACTIONS(1880), + [anon_sym_EQ_GT] = ACTIONS(1880), + [anon_sym_QMARK_QMARK] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1880), + [anon_sym_null] = ACTIONS(1882), + [anon_sym_macro] = ACTIONS(1882), + [anon_sym_abstract] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_public] = ACTIONS(1882), + [anon_sym_private] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_inline] = ACTIONS(1882), + [anon_sym_overload] = ACTIONS(1882), + [anon_sym_override] = ACTIONS(1882), + [anon_sym_final] = ACTIONS(1882), + [anon_sym_class] = ACTIONS(1882), + [anon_sym_interface] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_typedef] = ACTIONS(1882), + [anon_sym_function] = ACTIONS(1882), + [anon_sym_var] = ACTIONS(1882), + [aux_sym_integer_token1] = ACTIONS(1882), + [aux_sym_integer_token2] = ACTIONS(1880), + [aux_sym_float_token1] = ACTIONS(1882), + [aux_sym_float_token2] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [aux_sym_string_token1] = ACTIONS(1880), + [aux_sym_string_token3] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [213] = { + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_package] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_using] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_COLON] = ACTIONS(1884), + [anon_sym_cast] = ACTIONS(1886), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_DOLLARtype] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_untyped] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_this] = ACTIONS(1886), + [anon_sym_QMARK] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1886), + [anon_sym_AT_COLON] = ACTIONS(1884), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_catch] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1886), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_QMARK] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [anon_sym_null] = ACTIONS(1886), + [anon_sym_macro] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_inline] = ACTIONS(1886), + [anon_sym_overload] = ACTIONS(1886), + [anon_sym_override] = ACTIONS(1886), + [anon_sym_final] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_typedef] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [aux_sym_integer_token1] = ACTIONS(1886), + [aux_sym_integer_token2] = ACTIONS(1884), + [aux_sym_float_token1] = ACTIONS(1886), + [aux_sym_float_token2] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [aux_sym_string_token1] = ACTIONS(1884), + [aux_sym_string_token3] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [214] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_package] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(1888), + [anon_sym_cast] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DOLLARtype] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_untyped] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_this] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1784), + [anon_sym_AT_COLON] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_catch] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_LT_LT] = ACTIONS(1782), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_EQ_GT] = ACTIONS(1782), + [anon_sym_QMARK_QMARK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), + [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_enum] = 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(1782), + [aux_sym_float_token1] = ACTIONS(1784), + [aux_sym_float_token2] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [aux_sym_string_token1] = ACTIONS(1782), + [aux_sym_string_token3] = ACTIONS(1782), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [215] = { + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_package] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(1892), + [anon_sym_import] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_using] = ACTIONS(1892), + [anon_sym_throw] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_COLON] = ACTIONS(1890), + [anon_sym_cast] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1890), + [anon_sym_DOLLARtype] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_untyped] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1892), + [anon_sym_QMARK] = ACTIONS(1892), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_AT_COLON] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1892), + [anon_sym_catch] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1892), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PERCENT] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_GT_GT_GT] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [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(1892), + [anon_sym_LT_EQ] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_EQ] = ACTIONS(1890), + [anon_sym_EQ_GT] = ACTIONS(1890), + [anon_sym_QMARK_QMARK] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1890), + [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_enum] = 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(1890), + [aux_sym_float_token1] = ACTIONS(1892), + [aux_sym_float_token2] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym_string_token1] = ACTIONS(1890), + [aux_sym_string_token3] = ACTIONS(1890), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1050), - [anon_sym_package] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_import] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_using] = ACTIONS(1054), - [anon_sym_throw] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_case] = ACTIONS(1054), - [anon_sym_COLON] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_cast] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_DOLLARtype] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_this] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_AT_COLON] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PERCENT] = ACTIONS(1050), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1050), - [anon_sym_PIPE_PIPE] = ACTIONS(1050), - [anon_sym_EQ_EQ] = ACTIONS(1050), - [anon_sym_BANG_EQ] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1050), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1050), - [anon_sym_EQ_GT] = ACTIONS(1050), - [anon_sym_QMARK_QMARK] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_macro] = ACTIONS(1054), - [anon_sym_abstract] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_public] = ACTIONS(1054), - [anon_sym_private] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_overload] = ACTIONS(1054), - [anon_sym_override] = ACTIONS(1054), - [anon_sym_final] = ACTIONS(1054), - [anon_sym_class] = ACTIONS(1054), - [anon_sym_interface] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(1054), - [anon_sym_var] = ACTIONS(1054), - [aux_sym_integer_token1] = ACTIONS(1054), - [aux_sym_integer_token2] = ACTIONS(1050), - [aux_sym_float_token1] = ACTIONS(1054), - [aux_sym_float_token2] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym_string_token1] = ACTIONS(1050), - [aux_sym_string_token3] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1050), + [ts_builtin_sym_end] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_package] = ACTIONS(1896), + [anon_sym_DOT] = ACTIONS(1896), + [anon_sym_import] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_using] = ACTIONS(1896), + [anon_sym_throw] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_COLON] = ACTIONS(1894), + [anon_sym_cast] = ACTIONS(1896), + [anon_sym_COMMA] = ACTIONS(1894), + [anon_sym_DOLLARtype] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_untyped] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_RBRACK] = ACTIONS(1894), + [anon_sym_this] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1896), + [anon_sym_AT] = ACTIONS(1896), + [anon_sym_AT_COLON] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1896), + [anon_sym_catch] = ACTIONS(1896), + [anon_sym_else] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1896), + [anon_sym_TILDE] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1896), + [anon_sym_GT_GT_GT] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [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(1896), + [anon_sym_LT_EQ] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1894), + [anon_sym_EQ_GT] = ACTIONS(1894), + [anon_sym_QMARK_QMARK] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1894), + [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_enum] = 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(1894), + [aux_sym_float_token1] = ACTIONS(1896), + [aux_sym_float_token2] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [aux_sym_string_token1] = ACTIONS(1894), + [aux_sym_string_token3] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [217] = { - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_package] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1148), - [anon_sym_import] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_using] = ACTIONS(1148), - [anon_sym_throw] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_cast] = ACTIONS(1148), - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_DOLLARtype] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_untyped] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_this] = ACTIONS(1148), - [anon_sym_QMARK] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1148), - [anon_sym_AT_COLON] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_catch] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1146), - [anon_sym_PERCENT] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_GT_GT_GT] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1146), - [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1146), - [anon_sym_QMARK_QMARK] = ACTIONS(1146), - [anon_sym_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_macro] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym_overload] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_interface] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1148), - [anon_sym_function] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [aux_sym_integer_token1] = ACTIONS(1148), - [aux_sym_integer_token2] = ACTIONS(1146), - [aux_sym_float_token1] = ACTIONS(1148), - [aux_sym_float_token2] = ACTIONS(1146), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym_string_token1] = ACTIONS(1146), - [aux_sym_string_token3] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1146), - [sym__closing_brace_marker] = ACTIONS(1146), + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_package] = ACTIONS(1900), + [anon_sym_DOT] = ACTIONS(1900), + [anon_sym_import] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_using] = ACTIONS(1900), + [anon_sym_throw] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_COLON] = ACTIONS(1898), + [anon_sym_cast] = ACTIONS(1900), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_DOLLARtype] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_untyped] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_this] = ACTIONS(1900), + [anon_sym_QMARK] = ACTIONS(1900), + [anon_sym_AT] = ACTIONS(1900), + [anon_sym_AT_COLON] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1900), + [anon_sym_catch] = ACTIONS(1900), + [anon_sym_else] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_new] = ACTIONS(1900), + [anon_sym_TILDE] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_PERCENT] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1898), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_GT_GT_GT] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [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(1900), + [anon_sym_LT_EQ] = ACTIONS(1898), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_GT_EQ] = ACTIONS(1898), + [anon_sym_EQ_GT] = ACTIONS(1898), + [anon_sym_QMARK_QMARK] = ACTIONS(1898), + [anon_sym_EQ] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1898), + [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_enum] = 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(1898), + [aux_sym_float_token1] = ACTIONS(1900), + [aux_sym_float_token2] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [aux_sym_string_token1] = ACTIONS(1898), + [aux_sym_string_token3] = ACTIONS(1898), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [218] = { - [sym_identifier] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1050), - [anon_sym_package] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_import] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_using] = ACTIONS(1054), - [anon_sym_throw] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_case] = ACTIONS(1054), - [anon_sym_COLON] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_cast] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_DOLLARtype] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_this] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1054), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_AT_COLON] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PERCENT] = ACTIONS(1050), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1050), - [anon_sym_PIPE_PIPE] = ACTIONS(1050), - [anon_sym_EQ_EQ] = ACTIONS(1050), - [anon_sym_BANG_EQ] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1050), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1050), - [anon_sym_EQ_GT] = ACTIONS(1050), - [anon_sym_QMARK_QMARK] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_macro] = ACTIONS(1054), - [anon_sym_abstract] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_public] = ACTIONS(1054), - [anon_sym_private] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_overload] = ACTIONS(1054), - [anon_sym_override] = ACTIONS(1054), - [anon_sym_final] = ACTIONS(1054), - [anon_sym_class] = ACTIONS(1054), - [anon_sym_interface] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(1054), - [anon_sym_var] = ACTIONS(1054), - [aux_sym_integer_token1] = ACTIONS(1054), - [aux_sym_integer_token2] = ACTIONS(1050), - [aux_sym_float_token1] = ACTIONS(1054), - [aux_sym_float_token2] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym_string_token1] = ACTIONS(1050), - [aux_sym_string_token3] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1050), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_package] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_using] = ACTIONS(1356), + [anon_sym_throw] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_this] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_AT_COLON] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_null] = ACTIONS(1356), + [anon_sym_macro] = ACTIONS(1356), + [anon_sym_abstract] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_public] = ACTIONS(1356), + [anon_sym_private] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_overload] = ACTIONS(1356), + [anon_sym_override] = ACTIONS(1356), + [anon_sym_final] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1356), + [anon_sym_interface] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_function] = ACTIONS(1356), + [anon_sym_var] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1356), + [aux_sym_integer_token2] = ACTIONS(1354), + [aux_sym_float_token1] = ACTIONS(1356), + [aux_sym_float_token2] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1354), + [aux_sym_string_token3] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [219] = { - [sym__rhs_expression] = STATE(845), - [sym__unaryExpression] = STATE(144), - [sym_runtime_type_check_expression] = STATE(144), - [sym_switch_expression] = STATE(144), - [sym_cast_expression] = STATE(144), - [sym_type_trace_expression] = STATE(144), - [sym__parenthesized_expression] = STATE(923), - [sym_subscript_expression] = STATE(144), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(845), - [sym_operator] = STATE(1772), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [aux_sym__parenthesized_expression_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(790), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(794), - [anon_sym_untyped] = ACTIONS(796), - [anon_sym_break] = ACTIONS(798), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), - [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(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [ts_builtin_sym_end] = ACTIONS(1902), + [sym_identifier] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_package] = ACTIONS(1904), + [anon_sym_DOT] = ACTIONS(1904), + [anon_sym_import] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_using] = ACTIONS(1904), + [anon_sym_throw] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_cast] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1902), + [anon_sym_DOLLARtype] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_untyped] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_RBRACK] = ACTIONS(1902), + [anon_sym_this] = ACTIONS(1904), + [anon_sym_QMARK] = ACTIONS(1904), + [anon_sym_AT] = ACTIONS(1904), + [anon_sym_AT_COLON] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1904), + [anon_sym_catch] = ACTIONS(1904), + [anon_sym_else] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_new] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1902), + [anon_sym_SLASH] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_LT_LT] = ACTIONS(1902), + [anon_sym_GT_GT] = ACTIONS(1904), + [anon_sym_GT_GT_GT] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [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(1904), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1904), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_EQ_GT] = ACTIONS(1902), + [anon_sym_QMARK_QMARK] = ACTIONS(1902), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [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_enum] = 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(1902), + [aux_sym_float_token1] = ACTIONS(1904), + [aux_sym_float_token2] = ACTIONS(1902), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [aux_sym_string_token1] = ACTIONS(1902), + [aux_sym_string_token3] = ACTIONS(1902), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [220] = { - [sym_identifier] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1098), - [anon_sym_package] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_using] = ACTIONS(1100), - [anon_sym_throw] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_cast] = ACTIONS(1100), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_DOLLARtype] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_untyped] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_this] = ACTIONS(1100), - [anon_sym_QMARK] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), - [anon_sym_AT_COLON] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1100), - [anon_sym_catch] = ACTIONS(1100), - [anon_sym_else] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_new] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_GT_GT_GT] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(1098), - [anon_sym_QMARK_QMARK] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1100), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1100), - [anon_sym_macro] = ACTIONS(1100), - [anon_sym_abstract] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_public] = ACTIONS(1100), - [anon_sym_private] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_overload] = ACTIONS(1100), - [anon_sym_override] = ACTIONS(1100), - [anon_sym_final] = ACTIONS(1100), - [anon_sym_class] = ACTIONS(1100), - [anon_sym_interface] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1100), - [anon_sym_var] = ACTIONS(1100), - [aux_sym_integer_token1] = ACTIONS(1100), - [aux_sym_integer_token2] = ACTIONS(1098), - [aux_sym_float_token1] = ACTIONS(1100), - [aux_sym_float_token2] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [aux_sym_string_token1] = ACTIONS(1098), - [aux_sym_string_token3] = ACTIONS(1098), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1098), - [sym__closing_brace_marker] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_package] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1476), + [anon_sym_throw] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_COLON] = ACTIONS(1474), + [anon_sym_cast] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DOLLARtype] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_untyped] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_AT_COLON] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_catch] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_GT_GT_GT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_EQ_GT] = ACTIONS(1474), + [anon_sym_QMARK_QMARK] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1476), + [anon_sym_macro] = ACTIONS(1476), + [anon_sym_abstract] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_private] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_overload] = ACTIONS(1476), + [anon_sym_override] = ACTIONS(1476), + [anon_sym_final] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_interface] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(1476), + [anon_sym_var] = ACTIONS(1476), + [aux_sym_integer_token1] = ACTIONS(1476), + [aux_sym_integer_token2] = ACTIONS(1474), + [aux_sym_float_token1] = ACTIONS(1476), + [aux_sym_float_token2] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), + [aux_sym_string_token3] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_DOT] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_throw] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_cast] = ACTIONS(1104), - [anon_sym_COMMA] = ACTIONS(1102), - [anon_sym_DOLLARtype] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_untyped] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_this] = ACTIONS(1104), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_AT] = ACTIONS(1104), - [anon_sym_AT_COLON] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1104), - [anon_sym_catch] = ACTIONS(1104), - [anon_sym_else] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_new] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PERCENT] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_GT_GT_GT] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_EQ_GT] = ACTIONS(1102), - [anon_sym_QMARK_QMARK] = ACTIONS(1102), - [anon_sym_EQ] = ACTIONS(1104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1104), - [anon_sym_macro] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_public] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_overload] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_interface] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_var] = ACTIONS(1104), - [aux_sym_integer_token1] = ACTIONS(1104), - [aux_sym_integer_token2] = ACTIONS(1102), - [aux_sym_float_token1] = ACTIONS(1104), - [aux_sym_float_token2] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1104), - [anon_sym_false] = ACTIONS(1104), - [aux_sym_string_token1] = ACTIONS(1102), - [aux_sym_string_token3] = ACTIONS(1102), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1102), - [sym__closing_brace_marker] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_package] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_import] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_using] = ACTIONS(1908), + [anon_sym_throw] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_cast] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_DOLLARtype] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_untyped] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_RBRACK] = ACTIONS(1906), + [anon_sym_this] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_AT_COLON] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1908), + [anon_sym_catch] = ACTIONS(1908), + [anon_sym_else] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_new] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_PERCENT] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1908), + [anon_sym_GT_GT_GT] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [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(1908), + [anon_sym_LT_EQ] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1908), + [anon_sym_GT_EQ] = ACTIONS(1906), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_QMARK] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1906), + [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_enum] = 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(1906), + [aux_sym_float_token1] = ACTIONS(1908), + [aux_sym_float_token2] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [aux_sym_string_token1] = ACTIONS(1906), + [aux_sym_string_token3] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [222] = { - [sym_identifier] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_package] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_import] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1036), - [anon_sym_using] = ACTIONS(1038), - [anon_sym_throw] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1038), - [anon_sym_default] = ACTIONS(1038), - [anon_sym_cast] = ACTIONS(1038), - [anon_sym_COMMA] = ACTIONS(1036), - [anon_sym_DOLLARtype] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_untyped] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_this] = ACTIONS(1038), - [anon_sym_QMARK] = ACTIONS(1038), - [anon_sym_AT] = ACTIONS(1038), - [anon_sym_AT_COLON] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1038), - [anon_sym_catch] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_new] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_PERCENT] = ACTIONS(1036), - [anon_sym_SLASH] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_LT_LT] = ACTIONS(1036), - [anon_sym_GT_GT] = ACTIONS(1038), - [anon_sym_GT_GT_GT] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1038), - [anon_sym_CARET] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [anon_sym_EQ_EQ] = ACTIONS(1036), - [anon_sym_BANG_EQ] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_LT_EQ] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1036), - [anon_sym_EQ_GT] = ACTIONS(1036), - [anon_sym_QMARK_QMARK] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1038), - [anon_sym_macro] = ACTIONS(1038), - [anon_sym_abstract] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_public] = ACTIONS(1038), - [anon_sym_private] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym_inline] = ACTIONS(1038), - [anon_sym_overload] = ACTIONS(1038), - [anon_sym_override] = ACTIONS(1038), - [anon_sym_final] = ACTIONS(1038), - [anon_sym_class] = ACTIONS(1038), - [anon_sym_interface] = ACTIONS(1038), - [anon_sym_enum] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1038), - [anon_sym_function] = ACTIONS(1038), - [anon_sym_var] = ACTIONS(1038), - [aux_sym_integer_token1] = ACTIONS(1038), - [aux_sym_integer_token2] = ACTIONS(1036), - [aux_sym_float_token1] = ACTIONS(1038), - [aux_sym_float_token2] = ACTIONS(1036), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [aux_sym_string_token1] = ACTIONS(1036), - [aux_sym_string_token3] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1036), + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1910), + [anon_sym_package] = ACTIONS(1912), + [anon_sym_DOT] = ACTIONS(1912), + [anon_sym_import] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_using] = ACTIONS(1912), + [anon_sym_throw] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_RPAREN] = ACTIONS(1910), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_COLON] = ACTIONS(1910), + [anon_sym_cast] = ACTIONS(1912), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_DOLLARtype] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_untyped] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_RBRACK] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(1912), + [anon_sym_QMARK] = ACTIONS(1912), + [anon_sym_AT] = ACTIONS(1912), + [anon_sym_AT_COLON] = ACTIONS(1910), + [anon_sym_try] = ACTIONS(1912), + [anon_sym_catch] = ACTIONS(1912), + [anon_sym_else] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_new] = ACTIONS(1912), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PERCENT] = ACTIONS(1910), + [anon_sym_SLASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_LT_LT] = ACTIONS(1910), + [anon_sym_GT_GT] = ACTIONS(1912), + [anon_sym_GT_GT_GT] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [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(1912), + [anon_sym_LT_EQ] = ACTIONS(1910), + [anon_sym_GT] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1910), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_QMARK] = ACTIONS(1910), + [anon_sym_EQ] = ACTIONS(1912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1910), + [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_enum] = 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(1910), + [aux_sym_float_token1] = ACTIONS(1912), + [aux_sym_float_token2] = ACTIONS(1910), + [anon_sym_true] = ACTIONS(1912), + [anon_sym_false] = ACTIONS(1912), + [aux_sym_string_token1] = ACTIONS(1910), + [aux_sym_string_token3] = ACTIONS(1910), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [223] = { - [sym__rhs_expression] = STATE(1070), - [sym__unaryExpression] = STATE(3391), - [sym_runtime_type_check_expression] = STATE(3391), - [sym_switch_expression] = STATE(3391), - [sym_cast_expression] = STATE(3391), - [sym_type_trace_expression] = STATE(3391), - [sym__parenthesized_expression] = STATE(3065), - [sym_subscript_expression] = STATE(3391), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1070), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [sym__rhs_expression] = STATE(877), + [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(974), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(877), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1608), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_untyped] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_untyped] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -35956,247 +37607,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [224] = { - [sym__rhs_expression] = STATE(1076), - [sym__unaryExpression] = STATE(3382), - [sym_runtime_type_check_expression] = STATE(3382), - [sym_switch_expression] = STATE(3382), - [sym_cast_expression] = STATE(3382), - [sym_type_trace_expression] = STATE(3382), - [sym__parenthesized_expression] = STATE(3115), - [sym_subscript_expression] = STATE(3382), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1076), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_untyped] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [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(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_package] = ACTIONS(1916), + [anon_sym_DOT] = ACTIONS(1916), + [anon_sym_import] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(1916), + [anon_sym_throw] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_COLON] = ACTIONS(1914), + [anon_sym_cast] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1914), + [anon_sym_DOLLARtype] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_untyped] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_this] = ACTIONS(1916), + [anon_sym_QMARK] = ACTIONS(1916), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_AT_COLON] = ACTIONS(1914), + [anon_sym_try] = ACTIONS(1916), + [anon_sym_catch] = ACTIONS(1916), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_new] = ACTIONS(1916), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PERCENT] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1914), + [anon_sym_GT_GT] = ACTIONS(1916), + [anon_sym_GT_GT_GT] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [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(1916), + [anon_sym_LT_EQ] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1914), + [anon_sym_EQ_GT] = ACTIONS(1914), + [anon_sym_QMARK_QMARK] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [anon_sym_macro] = ACTIONS(1916), + [anon_sym_abstract] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_public] = ACTIONS(1916), + [anon_sym_private] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym_overload] = ACTIONS(1916), + [anon_sym_override] = ACTIONS(1916), + [anon_sym_final] = ACTIONS(1916), + [anon_sym_class] = ACTIONS(1916), + [anon_sym_interface] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_function] = ACTIONS(1916), + [anon_sym_var] = ACTIONS(1916), + [aux_sym_integer_token1] = ACTIONS(1916), + [aux_sym_integer_token2] = ACTIONS(1914), + [aux_sym_float_token1] = ACTIONS(1916), + [aux_sym_float_token2] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [aux_sym_string_token1] = ACTIONS(1914), + [aux_sym_string_token3] = ACTIONS(1914), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [225] = { - [sym__rhs_expression] = STATE(1079), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(3461), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(3093), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1079), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_untyped] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [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(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [ts_builtin_sym_end] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_package] = ACTIONS(1920), + [anon_sym_DOT] = ACTIONS(1920), + [anon_sym_import] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_using] = ACTIONS(1920), + [anon_sym_throw] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_cast] = ACTIONS(1920), + [anon_sym_COMMA] = ACTIONS(1918), + [anon_sym_DOLLARtype] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_untyped] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_RBRACK] = ACTIONS(1918), + [anon_sym_this] = ACTIONS(1920), + [anon_sym_QMARK] = ACTIONS(1920), + [anon_sym_AT] = ACTIONS(1920), + [anon_sym_AT_COLON] = ACTIONS(1918), + [anon_sym_try] = ACTIONS(1920), + [anon_sym_catch] = ACTIONS(1920), + [anon_sym_else] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_do] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(1920), + [anon_sym_TILDE] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PLUS_PLUS] = ACTIONS(1918), + [anon_sym_DASH_DASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1920), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1920), + [anon_sym_GT_GT_GT] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_EQ] = ACTIONS(1918), + [anon_sym_BANG_EQ] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_LT_EQ] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1920), + [anon_sym_GT_EQ] = ACTIONS(1918), + [anon_sym_EQ_GT] = ACTIONS(1918), + [anon_sym_QMARK_QMARK] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1918), + [anon_sym_null] = ACTIONS(1920), + [anon_sym_macro] = ACTIONS(1920), + [anon_sym_abstract] = ACTIONS(1920), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1920), + [anon_sym_private] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym_inline] = ACTIONS(1920), + [anon_sym_overload] = ACTIONS(1920), + [anon_sym_override] = ACTIONS(1920), + [anon_sym_final] = ACTIONS(1920), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_interface] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_typedef] = ACTIONS(1920), + [anon_sym_function] = ACTIONS(1920), + [anon_sym_var] = ACTIONS(1920), + [aux_sym_integer_token1] = ACTIONS(1920), + [aux_sym_integer_token2] = ACTIONS(1918), + [aux_sym_float_token1] = ACTIONS(1920), + [aux_sym_float_token2] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(1920), + [anon_sym_false] = ACTIONS(1920), + [aux_sym_string_token1] = ACTIONS(1918), + [aux_sym_string_token3] = ACTIONS(1918), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [226] = { - [sym__rhs_expression] = STATE(1080), - [sym__unaryExpression] = STATE(3432), - [sym_runtime_type_check_expression] = STATE(3432), - [sym_switch_expression] = STATE(3432), - [sym_cast_expression] = STATE(3432), - [sym_type_trace_expression] = STATE(3432), - [sym__parenthesized_expression] = STATE(3071), - [sym_subscript_expression] = STATE(3432), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1080), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [sym__rhs_expression] = STATE(1044), + [sym__unaryExpression] = STATE(2956), + [sym_runtime_type_check_expression] = STATE(2956), + [sym_switch_expression] = STATE(2956), + [sym_cast_expression] = STATE(2956), + [sym_type_trace_expression] = STATE(2956), + [sym__parenthesized_expression] = STATE(2422), + [sym_range_expression] = STATE(2956), + [sym_subscript_expression] = STATE(2956), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1044), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_untyped] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -36223,333 +37880,1159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [227] = { - [sym__rhs_expression] = STATE(1083), - [sym__unaryExpression] = STATE(3367), - [sym_runtime_type_check_expression] = STATE(3367), - [sym_switch_expression] = STATE(3367), - [sym_cast_expression] = STATE(3367), - [sym_type_trace_expression] = STATE(3367), - [sym__parenthesized_expression] = STATE(2869), - [sym_subscript_expression] = STATE(3367), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1083), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [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(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [ts_builtin_sym_end] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_package] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1932), + [anon_sym_import] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_using] = ACTIONS(1932), + [anon_sym_throw] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_COLON] = ACTIONS(1930), + [anon_sym_cast] = ACTIONS(1932), + [anon_sym_COMMA] = ACTIONS(1930), + [anon_sym_DOLLARtype] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_untyped] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_RBRACK] = ACTIONS(1930), + [anon_sym_this] = ACTIONS(1932), + [anon_sym_QMARK] = ACTIONS(1932), + [anon_sym_AT] = ACTIONS(1932), + [anon_sym_AT_COLON] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1932), + [anon_sym_catch] = ACTIONS(1932), + [anon_sym_else] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PERCENT] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1932), + [anon_sym_GT_GT_GT] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [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(1932), + [anon_sym_LT_EQ] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1932), + [anon_sym_GT_EQ] = ACTIONS(1930), + [anon_sym_EQ_GT] = ACTIONS(1930), + [anon_sym_QMARK_QMARK] = ACTIONS(1930), + [anon_sym_EQ] = ACTIONS(1932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), + [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_enum] = 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(1930), + [aux_sym_float_token1] = ACTIONS(1932), + [aux_sym_float_token2] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), + [aux_sym_string_token1] = ACTIONS(1930), + [aux_sym_string_token3] = ACTIONS(1930), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [228] = { - [sym__rhs_expression] = STATE(1084), - [sym__unaryExpression] = STATE(3216), - [sym_runtime_type_check_expression] = STATE(3216), - [sym_switch_expression] = STATE(3216), - [sym_cast_expression] = STATE(3216), - [sym_type_trace_expression] = STATE(3216), - [sym__parenthesized_expression] = STATE(3017), - [sym_subscript_expression] = STATE(3216), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1084), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_untyped] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [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(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_package] = ACTIONS(1936), + [anon_sym_DOT] = ACTIONS(1936), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_throw] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_COLON] = ACTIONS(1934), + [anon_sym_cast] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_DOLLARtype] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_untyped] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1936), + [anon_sym_AT_COLON] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_catch] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PERCENT] = ACTIONS(1934), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1934), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_GT_GT_GT] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [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(1936), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_EQ_GT] = ACTIONS(1934), + [anon_sym_QMARK_QMARK] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1934), + [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_enum] = 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(1934), + [aux_sym_float_token1] = ACTIONS(1936), + [aux_sym_float_token2] = ACTIONS(1934), + [anon_sym_true] = ACTIONS(1936), + [anon_sym_false] = ACTIONS(1936), + [aux_sym_string_token1] = ACTIONS(1934), + [aux_sym_string_token3] = ACTIONS(1934), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [229] = { - [sym__rhs_expression] = STATE(1177), - [sym__unaryExpression] = STATE(3298), - [sym_runtime_type_check_expression] = STATE(3298), - [sym_switch_expression] = STATE(3298), - [sym_cast_expression] = STATE(3298), - [sym_type_trace_expression] = STATE(3298), - [sym__parenthesized_expression] = STATE(2868), - [sym_subscript_expression] = STATE(3298), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1177), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_untyped] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [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(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1938), + [anon_sym_package] = ACTIONS(1940), + [anon_sym_DOT] = ACTIONS(1940), + [anon_sym_import] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_COLON] = ACTIONS(1938), + [anon_sym_cast] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(1938), + [anon_sym_DOLLARtype] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_untyped] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_RBRACK] = ACTIONS(1938), + [anon_sym_this] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(1940), + [anon_sym_AT] = ACTIONS(1940), + [anon_sym_AT_COLON] = ACTIONS(1938), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_GT_GT_GT] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [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(1940), + [anon_sym_LT_EQ] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1940), + [anon_sym_GT_EQ] = ACTIONS(1938), + [anon_sym_EQ_GT] = ACTIONS(1938), + [anon_sym_QMARK_QMARK] = ACTIONS(1938), + [anon_sym_EQ] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), + [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_enum] = 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(1938), + [aux_sym_float_token1] = ACTIONS(1940), + [aux_sym_float_token2] = ACTIONS(1938), + [anon_sym_true] = ACTIONS(1940), + [anon_sym_false] = ACTIONS(1940), + [aux_sym_string_token1] = ACTIONS(1938), + [aux_sym_string_token3] = ACTIONS(1938), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [230] = { - [sym__rhs_expression] = STATE(1090), - [sym__unaryExpression] = STATE(3355), - [sym_runtime_type_check_expression] = STATE(3355), - [sym_switch_expression] = STATE(3355), - [sym_cast_expression] = STATE(3355), - [sym_type_trace_expression] = STATE(3355), - [sym__parenthesized_expression] = STATE(2946), - [sym_subscript_expression] = STATE(3355), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1090), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1942), + [anon_sym_package] = ACTIONS(1944), + [anon_sym_DOT] = ACTIONS(1944), + [anon_sym_import] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_using] = ACTIONS(1944), + [anon_sym_throw] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_COLON] = ACTIONS(1942), + [anon_sym_cast] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1942), + [anon_sym_DOLLARtype] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_untyped] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_RBRACK] = ACTIONS(1942), + [anon_sym_this] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1944), + [anon_sym_AT] = ACTIONS(1944), + [anon_sym_AT_COLON] = ACTIONS(1942), + [anon_sym_try] = ACTIONS(1944), + [anon_sym_catch] = ACTIONS(1944), + [anon_sym_else] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_new] = ACTIONS(1944), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PERCENT] = ACTIONS(1942), + [anon_sym_SLASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1944), + [anon_sym_GT_GT_GT] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [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(1944), + [anon_sym_LT_EQ] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1944), + [anon_sym_GT_EQ] = ACTIONS(1942), + [anon_sym_EQ_GT] = ACTIONS(1942), + [anon_sym_QMARK_QMARK] = ACTIONS(1942), + [anon_sym_EQ] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), + [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_enum] = 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(1942), + [aux_sym_float_token1] = ACTIONS(1944), + [aux_sym_float_token2] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [aux_sym_string_token1] = ACTIONS(1942), + [aux_sym_string_token3] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [231] = { + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_package] = ACTIONS(1948), + [anon_sym_DOT] = ACTIONS(1948), + [anon_sym_import] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_using] = ACTIONS(1948), + [anon_sym_throw] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_COLON] = ACTIONS(1946), + [anon_sym_cast] = ACTIONS(1948), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_DOLLARtype] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_untyped] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_this] = ACTIONS(1948), + [anon_sym_QMARK] = ACTIONS(1948), + [anon_sym_AT] = ACTIONS(1948), + [anon_sym_AT_COLON] = ACTIONS(1946), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_new] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), + [anon_sym_SLASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_LT_LT] = ACTIONS(1946), + [anon_sym_GT_GT] = ACTIONS(1948), + [anon_sym_GT_GT_GT] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [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(1948), + [anon_sym_LT_EQ] = ACTIONS(1946), + [anon_sym_GT] = ACTIONS(1948), + [anon_sym_GT_EQ] = ACTIONS(1946), + [anon_sym_EQ_GT] = ACTIONS(1946), + [anon_sym_QMARK_QMARK] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), + [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_enum] = 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(1946), + [aux_sym_float_token1] = ACTIONS(1948), + [aux_sym_float_token2] = ACTIONS(1946), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [aux_sym_string_token1] = ACTIONS(1946), + [aux_sym_string_token3] = ACTIONS(1946), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_package] = ACTIONS(1952), + [anon_sym_DOT] = ACTIONS(1952), + [anon_sym_import] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_using] = ACTIONS(1952), + [anon_sym_throw] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_switch] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_COLON] = ACTIONS(1950), + [anon_sym_cast] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1950), + [anon_sym_DOLLARtype] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_untyped] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_RBRACK] = ACTIONS(1950), + [anon_sym_this] = ACTIONS(1952), + [anon_sym_QMARK] = ACTIONS(1952), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_AT_COLON] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1952), + [anon_sym_catch] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_new] = ACTIONS(1952), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PERCENT] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1950), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [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(1952), + [anon_sym_LT_EQ] = ACTIONS(1950), + [anon_sym_GT] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1950), + [anon_sym_EQ_GT] = ACTIONS(1950), + [anon_sym_QMARK_QMARK] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1950), + [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_enum] = 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(1950), + [aux_sym_float_token1] = ACTIONS(1952), + [aux_sym_float_token2] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1952), + [anon_sym_false] = ACTIONS(1952), + [aux_sym_string_token1] = ACTIONS(1950), + [aux_sym_string_token3] = ACTIONS(1950), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [233] = { + [ts_builtin_sym_end] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(1954), + [anon_sym_package] = ACTIONS(1956), + [anon_sym_DOT] = ACTIONS(1956), + [anon_sym_import] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1956), + [anon_sym_throw] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_RPAREN] = ACTIONS(1954), + [anon_sym_switch] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_COLON] = ACTIONS(1954), + [anon_sym_cast] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(1954), + [anon_sym_DOLLARtype] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_untyped] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_RBRACK] = ACTIONS(1954), + [anon_sym_this] = ACTIONS(1956), + [anon_sym_QMARK] = ACTIONS(1956), + [anon_sym_AT] = ACTIONS(1956), + [anon_sym_AT_COLON] = ACTIONS(1954), + [anon_sym_try] = ACTIONS(1956), + [anon_sym_catch] = ACTIONS(1956), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_do] = ACTIONS(1956), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1956), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_LT_LT] = ACTIONS(1954), + [anon_sym_GT_GT] = ACTIONS(1956), + [anon_sym_GT_GT_GT] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [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(1956), + [anon_sym_LT_EQ] = ACTIONS(1954), + [anon_sym_GT] = ACTIONS(1956), + [anon_sym_GT_EQ] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_QMARK] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(1956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1954), + [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_enum] = 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(1954), + [aux_sym_float_token1] = ACTIONS(1956), + [aux_sym_float_token2] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1956), + [anon_sym_false] = ACTIONS(1956), + [aux_sym_string_token1] = ACTIONS(1954), + [aux_sym_string_token3] = ACTIONS(1954), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_package] = ACTIONS(1960), + [anon_sym_DOT] = ACTIONS(1960), + [anon_sym_import] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_using] = ACTIONS(1960), + [anon_sym_throw] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_COLON] = ACTIONS(1958), + [anon_sym_cast] = ACTIONS(1960), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_DOLLARtype] = ACTIONS(1958), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_untyped] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_RBRACK] = ACTIONS(1958), + [anon_sym_this] = ACTIONS(1960), + [anon_sym_QMARK] = ACTIONS(1960), + [anon_sym_AT] = ACTIONS(1960), + [anon_sym_AT_COLON] = ACTIONS(1958), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_catch] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_new] = ACTIONS(1960), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1958), + [anon_sym_SLASH] = ACTIONS(1960), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_LT_LT] = ACTIONS(1958), + [anon_sym_GT_GT] = ACTIONS(1960), + [anon_sym_GT_GT_GT] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1960), + [anon_sym_PIPE] = ACTIONS(1960), + [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(1960), + [anon_sym_LT_EQ] = ACTIONS(1958), + [anon_sym_GT] = ACTIONS(1960), + [anon_sym_GT_EQ] = ACTIONS(1958), + [anon_sym_EQ_GT] = ACTIONS(1958), + [anon_sym_QMARK_QMARK] = ACTIONS(1958), + [anon_sym_EQ] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1958), + [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_enum] = 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(1958), + [aux_sym_float_token1] = ACTIONS(1960), + [aux_sym_float_token2] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [aux_sym_string_token1] = ACTIONS(1958), + [aux_sym_string_token3] = ACTIONS(1958), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [235] = { + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_package] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_using] = ACTIONS(1444), + [anon_sym_throw] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_COLON] = ACTIONS(1446), + [anon_sym_cast] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_DOLLARtype] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_untyped] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1446), + [anon_sym_this] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_AT_COLON] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_LT_LT] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1444), + [anon_sym_GT_GT_GT] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_EQ_EQ] = ACTIONS(1446), + [anon_sym_BANG_EQ] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_EQ] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_GT_EQ] = ACTIONS(1446), + [anon_sym_EQ_GT] = ACTIONS(1446), + [anon_sym_QMARK_QMARK] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), + [anon_sym_null] = ACTIONS(1444), + [anon_sym_macro] = ACTIONS(1444), + [anon_sym_abstract] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_public] = ACTIONS(1444), + [anon_sym_private] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym_overload] = ACTIONS(1444), + [anon_sym_override] = ACTIONS(1444), + [anon_sym_final] = ACTIONS(1444), + [anon_sym_class] = ACTIONS(1444), + [anon_sym_interface] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_var] = ACTIONS(1444), + [aux_sym_integer_token1] = ACTIONS(1444), + [aux_sym_integer_token2] = ACTIONS(1446), + [aux_sym_float_token1] = ACTIONS(1444), + [aux_sym_float_token2] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [aux_sym_string_token1] = ACTIONS(1446), + [aux_sym_string_token3] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [236] = { + [ts_builtin_sym_end] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_package] = ACTIONS(1964), + [anon_sym_DOT] = ACTIONS(1964), + [anon_sym_import] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_using] = ACTIONS(1964), + [anon_sym_throw] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_switch] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_COLON] = ACTIONS(1962), + [anon_sym_cast] = ACTIONS(1964), + [anon_sym_COMMA] = ACTIONS(1962), + [anon_sym_DOLLARtype] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_untyped] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_RBRACK] = ACTIONS(1962), + [anon_sym_this] = ACTIONS(1964), + [anon_sym_QMARK] = ACTIONS(1964), + [anon_sym_AT] = ACTIONS(1964), + [anon_sym_AT_COLON] = ACTIONS(1962), + [anon_sym_try] = ACTIONS(1964), + [anon_sym_catch] = ACTIONS(1964), + [anon_sym_else] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = ACTIONS(1964), + [anon_sym_new] = ACTIONS(1964), + [anon_sym_TILDE] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_PLUS_PLUS] = ACTIONS(1962), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_PERCENT] = ACTIONS(1962), + [anon_sym_SLASH] = ACTIONS(1964), + [anon_sym_PLUS] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1962), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_GT_GT_GT] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1964), + [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(1964), + [anon_sym_LT_EQ] = ACTIONS(1962), + [anon_sym_GT] = ACTIONS(1964), + [anon_sym_GT_EQ] = ACTIONS(1962), + [anon_sym_EQ_GT] = ACTIONS(1962), + [anon_sym_QMARK_QMARK] = ACTIONS(1962), + [anon_sym_EQ] = ACTIONS(1964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), + [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_enum] = 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(1962), + [aux_sym_float_token1] = ACTIONS(1964), + [aux_sym_float_token2] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1964), + [anon_sym_false] = ACTIONS(1964), + [aux_sym_string_token1] = ACTIONS(1962), + [aux_sym_string_token3] = ACTIONS(1962), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [237] = { + [ts_builtin_sym_end] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_package] = ACTIONS(1968), + [anon_sym_DOT] = ACTIONS(1968), + [anon_sym_import] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1968), + [anon_sym_throw] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_COLON] = ACTIONS(1966), + [anon_sym_cast] = ACTIONS(1968), + [anon_sym_COMMA] = ACTIONS(1966), + [anon_sym_DOLLARtype] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_untyped] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_RBRACK] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1968), + [anon_sym_QMARK] = ACTIONS(1968), + [anon_sym_AT] = ACTIONS(1968), + [anon_sym_AT_COLON] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_SLASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_GT_GT_GT] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [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(1968), + [anon_sym_LT_EQ] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1968), + [anon_sym_GT_EQ] = ACTIONS(1966), + [anon_sym_EQ_GT] = ACTIONS(1966), + [anon_sym_QMARK_QMARK] = ACTIONS(1966), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1966), + [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_enum] = 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(1966), + [aux_sym_float_token1] = ACTIONS(1968), + [aux_sym_float_token2] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [aux_sym_string_token1] = ACTIONS(1966), + [aux_sym_string_token3] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [238] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_package] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(1972), + [anon_sym_import] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_using] = ACTIONS(1972), + [anon_sym_throw] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_cast] = ACTIONS(1972), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_DOLLARtype] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_untyped] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_this] = ACTIONS(1972), + [anon_sym_QMARK] = ACTIONS(1972), + [anon_sym_AT] = ACTIONS(1972), + [anon_sym_AT_COLON] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_new] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PERCENT] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_GT_GT_GT] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [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(1972), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [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_enum] = 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(1970), + [aux_sym_float_token1] = ACTIONS(1972), + [aux_sym_float_token2] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [aux_sym_string_token1] = ACTIONS(1970), + [aux_sym_string_token3] = ACTIONS(1970), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [239] = { + [sym__rhs_expression] = STATE(1133), + [sym__unaryExpression] = STATE(3620), + [sym_runtime_type_check_expression] = STATE(3620), + [sym_switch_expression] = STATE(3620), + [sym_cast_expression] = STATE(3620), + [sym_type_trace_expression] = STATE(3620), + [sym__parenthesized_expression] = STATE(2577), + [sym_range_expression] = STATE(3620), + [sym_subscript_expression] = STATE(3620), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1133), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_untyped] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_untyped] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -36591,57 +39074,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [231] = { - [sym__rhs_expression] = STATE(1093), - [sym__unaryExpression] = STATE(3232), - [sym_runtime_type_check_expression] = STATE(3232), - [sym_switch_expression] = STATE(3232), - [sym_cast_expression] = STATE(3232), - [sym_type_trace_expression] = STATE(3232), - [sym__parenthesized_expression] = STATE(3010), - [sym_subscript_expression] = STATE(3232), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1093), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [240] = { + [sym__rhs_expression] = STATE(127), + [sym__unaryExpression] = STATE(352), + [sym_runtime_type_check_expression] = STATE(352), + [sym_switch_expression] = STATE(352), + [sym_cast_expression] = STATE(352), + [sym_type_trace_expression] = STATE(352), + [sym__parenthesized_expression] = STATE(318), + [sym_range_expression] = STATE(352), + [sym_subscript_expression] = STATE(352), + [sym_member_expression] = STATE(344), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(127), + [sym_operator] = STATE(1863), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(578), + [sym_integer] = STATE(324), + [sym_float] = STATE(578), + [sym_bool] = STATE(578), + [sym_string] = STATE(393), + [sym_null] = STATE(578), + [sym_array] = STATE(578), + [sym_map] = STATE(578), + [sym_object] = STATE(578), + [sym_pair] = STATE(578), + [sym_identifier] = ACTIONS(1982), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_untyped] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(1986), + [anon_sym_DOLLARtype] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_untyped] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_new] = ACTIONS(1364), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -36668,69 +39152,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [232] = { - [sym__rhs_expression] = STATE(1094), - [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(3061), - [sym_subscript_expression] = STATE(3354), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1094), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [241] = { + [sym_identifier] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_package] = ACTIONS(1866), + [anon_sym_DOT] = ACTIONS(1866), + [anon_sym_import] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1866), + [anon_sym_throw] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_cast] = ACTIONS(1866), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_DOLLARtype] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_untyped] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_this] = ACTIONS(1866), + [anon_sym_QMARK] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_AT_COLON] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_new] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1864), + [anon_sym_PERCENT] = ACTIONS(1864), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_LT_LT] = ACTIONS(1864), + [anon_sym_GT_GT] = ACTIONS(1866), + [anon_sym_GT_GT_GT] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_EQ_EQ] = ACTIONS(1864), + [anon_sym_BANG_EQ] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1864), + [anon_sym_EQ_GT] = ACTIONS(1864), + [anon_sym_QMARK_QMARK] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1864), + [anon_sym_null] = ACTIONS(1866), + [anon_sym_macro] = ACTIONS(1866), + [anon_sym_abstract] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_public] = ACTIONS(1866), + [anon_sym_private] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_inline] = ACTIONS(1866), + [anon_sym_overload] = ACTIONS(1866), + [anon_sym_override] = ACTIONS(1866), + [anon_sym_final] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_typedef] = ACTIONS(1866), + [anon_sym_function] = ACTIONS(1866), + [anon_sym_var] = ACTIONS(1866), + [aux_sym_integer_token1] = ACTIONS(1866), + [aux_sym_integer_token2] = ACTIONS(1864), + [aux_sym_float_token1] = ACTIONS(1866), + [aux_sym_float_token2] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [aux_sym_string_token1] = ACTIONS(1864), + [aux_sym_string_token3] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1864), + [sym__closing_brace_marker] = ACTIONS(1864), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [242] = { + [sym__rhs_expression] = STATE(146), + [sym__unaryExpression] = STATE(772), + [sym_runtime_type_check_expression] = STATE(772), + [sym_switch_expression] = STATE(772), + [sym_cast_expression] = STATE(772), + [sym_type_trace_expression] = STATE(772), + [sym__parenthesized_expression] = STATE(637), + [sym_range_expression] = STATE(772), + [sym_subscript_expression] = STATE(772), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(146), + [sym_operator] = STATE(1852), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(572), + [sym_integer] = STATE(166), + [sym_float] = STATE(572), + [sym_bool] = STATE(572), + [sym_string] = STATE(398), + [sym_null] = STATE(572), + [sym_array] = STATE(572), + [sym_map] = STATE(572), + [sym_object] = STATE(572), + [sym_pair] = STATE(572), + [sym_identifier] = ACTIONS(1992), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_untyped] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1994), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_untyped] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1454), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -36757,66 +39332,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [233] = { - [sym__rhs_expression] = STATE(1100), - [sym__unaryExpression] = STATE(3402), - [sym_runtime_type_check_expression] = STATE(3402), - [sym_switch_expression] = STATE(3402), - [sym_cast_expression] = STATE(3402), - [sym_type_trace_expression] = STATE(3402), - [sym__parenthesized_expression] = STATE(2962), - [sym_subscript_expression] = STATE(3402), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1100), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [243] = { + [sym_identifier] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_package] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(1972), + [anon_sym_import] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_using] = ACTIONS(1972), + [anon_sym_throw] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_cast] = ACTIONS(1972), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_DOLLARtype] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_untyped] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_this] = ACTIONS(1972), + [anon_sym_QMARK] = ACTIONS(1972), + [anon_sym_AT] = ACTIONS(1972), + [anon_sym_AT_COLON] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_new] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PERCENT] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_GT_GT_GT] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [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(1972), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [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_enum] = 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(1970), + [aux_sym_float_token1] = ACTIONS(1972), + [aux_sym_float_token2] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [aux_sym_string_token1] = ACTIONS(1970), + [aux_sym_string_token3] = ACTIONS(1970), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1970), + [sym__closing_brace_marker] = ACTIONS(1970), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [244] = { + [sym__rhs_expression] = STATE(1157), + [sym__unaryExpression] = STATE(3369), + [sym_runtime_type_check_expression] = STATE(3369), + [sym_switch_expression] = STATE(3369), + [sym_cast_expression] = STATE(3369), + [sym_type_trace_expression] = STATE(3369), + [sym__parenthesized_expression] = STATE(2752), + [sym_range_expression] = STATE(3369), + [sym_subscript_expression] = STATE(3369), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1157), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_untyped] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_untyped] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -36858,146 +39524,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_package] = ACTIONS(1432), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_import] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_using] = ACTIONS(1432), - [anon_sym_throw] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_cast] = ACTIONS(1432), - [anon_sym_DOLLARtype] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_untyped] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_this] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_AT_COLON] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1432), - [anon_sym_catch] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_new] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PERCENT] = ACTIONS(1086), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [anon_sym_BANG_EQ] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1086), - [anon_sym_EQ_GT] = ACTIONS(1086), - [anon_sym_QMARK_QMARK] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_macro] = ACTIONS(1432), - [anon_sym_abstract] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_public] = ACTIONS(1432), - [anon_sym_private] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym_overload] = ACTIONS(1432), - [anon_sym_override] = ACTIONS(1432), - [anon_sym_final] = ACTIONS(1432), - [anon_sym_class] = ACTIONS(1432), - [anon_sym_interface] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [aux_sym_integer_token1] = ACTIONS(1432), - [aux_sym_integer_token2] = ACTIONS(1434), - [aux_sym_float_token1] = ACTIONS(1432), - [aux_sym_float_token2] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1434), - [aux_sym_string_token3] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1086), - [sym__closing_brace_marker] = ACTIONS(1434), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [235] = { - [sym__rhs_expression] = STATE(832), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(832), - [sym_operator] = STATE(1931), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(919), - [sym_integer] = STATE(919), - [sym_float] = STATE(919), - [sym_bool] = STATE(919), - [sym_string] = STATE(912), - [sym_null] = STATE(919), - [sym_array] = STATE(919), - [sym_map] = STATE(919), - [sym_object] = STATE(919), - [sym_pair] = STATE(919), - [sym_identifier] = ACTIONS(1436), + [245] = { + [sym__rhs_expression] = STATE(1088), + [sym__unaryExpression] = STATE(772), + [sym_runtime_type_check_expression] = STATE(772), + [sym_switch_expression] = STATE(772), + [sym_cast_expression] = STATE(772), + [sym_type_trace_expression] = STATE(772), + [sym__parenthesized_expression] = STATE(637), + [sym_range_expression] = STATE(772), + [sym_subscript_expression] = STATE(772), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1088), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(886), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(888), - [anon_sym_untyped] = ACTIONS(890), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_untyped] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -37024,69 +39602,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [236] = { - [sym__rhs_expression] = STATE(1046), - [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(2705), - [sym_subscript_expression] = STATE(3047), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1046), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [246] = { + [sym__rhs_expression] = STATE(1082), + [sym__unaryExpression] = STATE(3271), + [sym_runtime_type_check_expression] = STATE(3271), + [sym_switch_expression] = STATE(3271), + [sym_cast_expression] = STATE(3271), + [sym_type_trace_expression] = STATE(3271), + [sym__parenthesized_expression] = STATE(2478), + [sym_range_expression] = STATE(3271), + [sym_subscript_expression] = STATE(3271), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1082), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_untyped] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_untyped] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -37113,69 +39692,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [237] = { - [sym__rhs_expression] = STATE(1243), - [sym__unaryExpression] = STATE(3289), - [sym_runtime_type_check_expression] = STATE(3289), - [sym_switch_expression] = STATE(3289), - [sym_cast_expression] = STATE(3289), - [sym_type_trace_expression] = STATE(3289), - [sym__parenthesized_expression] = STATE(2858), - [sym_subscript_expression] = STATE(3289), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1243), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [247] = { + [sym__rhs_expression] = STATE(1224), + [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(2590), + [sym_range_expression] = STATE(3622), + [sym_subscript_expression] = STATE(3622), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1224), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_untyped] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_untyped] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [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), @@ -37202,155 +39782,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [238] = { - [sym__rhs_expression] = STATE(120), - [sym__unaryExpression] = STATE(803), - [sym_runtime_type_check_expression] = STATE(803), - [sym_switch_expression] = STATE(803), - [sym_cast_expression] = STATE(803), - [sym_type_trace_expression] = STATE(803), - [sym__parenthesized_expression] = STATE(620), - [sym_subscript_expression] = STATE(803), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(120), - [sym_operator] = STATE(1908), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(548), - [sym_integer] = STATE(548), - [sym_float] = STATE(548), - [sym_bool] = STATE(548), - [sym_string] = STATE(363), - [sym_null] = STATE(548), - [sym_array] = STATE(548), - [sym_map] = STATE(548), - [sym_object] = STATE(548), - [sym_pair] = STATE(548), - [sym_identifier] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1454), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_untyped] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(816), - [anon_sym_new] = ACTIONS(780), - [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(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), + [248] = { + [sym_identifier] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_package] = ACTIONS(1900), + [anon_sym_DOT] = ACTIONS(1900), + [anon_sym_import] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_using] = ACTIONS(1900), + [anon_sym_throw] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_case] = ACTIONS(1900), + [anon_sym_COLON] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_cast] = ACTIONS(1900), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_DOLLARtype] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_untyped] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_this] = ACTIONS(1900), + [anon_sym_QMARK] = ACTIONS(1900), + [anon_sym_AT] = ACTIONS(1900), + [anon_sym_AT_COLON] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1900), + [anon_sym_catch] = ACTIONS(1900), + [anon_sym_else] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_new] = ACTIONS(1900), + [anon_sym_TILDE] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_PERCENT] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_LT_LT] = ACTIONS(1898), + [anon_sym_GT_GT] = ACTIONS(1900), + [anon_sym_GT_GT_GT] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [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(1900), + [anon_sym_LT_EQ] = ACTIONS(1898), + [anon_sym_GT] = ACTIONS(1900), + [anon_sym_GT_EQ] = ACTIONS(1898), + [anon_sym_EQ_GT] = ACTIONS(1898), + [anon_sym_QMARK_QMARK] = ACTIONS(1898), + [anon_sym_EQ] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1898), + [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_enum] = 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(1898), + [aux_sym_float_token1] = ACTIONS(1900), + [aux_sym_float_token2] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [aux_sym_string_token1] = ACTIONS(1898), + [aux_sym_string_token3] = ACTIONS(1898), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1898), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [239] = { - [sym__rhs_expression] = STATE(1072), - [sym__unaryExpression] = STATE(3261), - [sym_runtime_type_check_expression] = STATE(3261), - [sym_switch_expression] = STATE(3261), - [sym_cast_expression] = STATE(3261), - [sym_type_trace_expression] = STATE(3261), - [sym__parenthesized_expression] = STATE(3127), - [sym_subscript_expression] = STATE(3261), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1072), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [249] = { + [sym__rhs_expression] = STATE(1257), + [sym__unaryExpression] = STATE(3351), + [sym_runtime_type_check_expression] = STATE(3351), + [sym_switch_expression] = STATE(3351), + [sym_cast_expression] = STATE(3351), + [sym_type_trace_expression] = STATE(3351), + [sym__parenthesized_expression] = STATE(2632), + [sym_range_expression] = STATE(3351), + [sym_subscript_expression] = STATE(3351), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1257), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_untyped] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_untyped] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -37392,57 +39974,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [240] = { - [sym__rhs_expression] = STATE(1102), - [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(3004), - [sym_subscript_expression] = STATE(3424), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1102), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1604), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1468), + [250] = { + [sym__rhs_expression] = STATE(1069), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1069), + [sym_operator] = STATE(1907), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1833), + [sym_integer] = STATE(166), + [sym_float] = STATE(1833), + [sym_bool] = STATE(1833), + [sym_string] = STATE(2002), + [sym_null] = STATE(1833), + [sym_array] = STATE(1833), + [sym_map] = STATE(1833), + [sym_object] = STATE(1833), + [sym_pair] = STATE(1833), + [sym_identifier] = ACTIONS(2030), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_untyped] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(2032), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_untyped] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(2038), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -37469,69 +40052,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [241] = { - [sym__rhs_expression] = STATE(1102), - [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(3004), - [sym_subscript_expression] = STATE(3424), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1102), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1468), + [251] = { + [sym__rhs_expression] = STATE(1048), + [sym__unaryExpression] = STATE(1967), + [sym_runtime_type_check_expression] = STATE(1967), + [sym_switch_expression] = STATE(1967), + [sym_cast_expression] = STATE(1967), + [sym_type_trace_expression] = STATE(1967), + [sym__parenthesized_expression] = STATE(1565), + [sym_range_expression] = STATE(1967), + [sym_subscript_expression] = STATE(1967), + [sym_member_expression] = STATE(1520), + [sym__lhs_expression] = STATE(2788), + [sym__call] = STATE(1919), + [sym__constructor_call] = STATE(1920), + [sym_call_expression] = STATE(1048), + [sym_operator] = STATE(1784), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1777), + [sym_integer] = STATE(1685), + [sym_float] = STATE(1777), + [sym_bool] = STATE(1777), + [sym_string] = STATE(1600), + [sym_null] = STATE(1777), + [sym_array] = STATE(1777), + [sym_map] = STATE(1777), + [sym_object] = STATE(1777), + [sym_pair] = STATE(1777), + [sym_identifier] = ACTIONS(2040), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_untyped] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_cast] = ACTIONS(2048), + [anon_sym_DOLLARtype] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_untyped] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_this] = ACTIONS(2060), + [anon_sym_new] = ACTIONS(2062), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -37558,160 +40142,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(2064), + [aux_sym_integer_token1] = ACTIONS(2066), + [aux_sym_integer_token2] = ACTIONS(2068), + [aux_sym_float_token1] = ACTIONS(2070), + [aux_sym_float_token2] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [aux_sym_string_token1] = ACTIONS(2076), + [aux_sym_string_token3] = ACTIONS(2078), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [242] = { - [sym_identifier] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_package] = ACTIONS(1180), - [anon_sym_DOT] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_using] = ACTIONS(1180), - [anon_sym_throw] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_cast] = ACTIONS(1180), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_DOLLARtype] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_untyped] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_this] = ACTIONS(1180), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_AT] = ACTIONS(1180), - [anon_sym_AT_COLON] = ACTIONS(1178), - [anon_sym_try] = ACTIONS(1180), - [anon_sym_catch] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_new] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PERCENT] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_GT_GT_GT] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_EQ_GT] = ACTIONS(1178), - [anon_sym_QMARK_QMARK] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1178), - [anon_sym_null] = ACTIONS(1180), - [anon_sym_macro] = ACTIONS(1180), - [anon_sym_abstract] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_public] = ACTIONS(1180), - [anon_sym_private] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym_inline] = ACTIONS(1180), - [anon_sym_overload] = ACTIONS(1180), - [anon_sym_override] = ACTIONS(1180), - [anon_sym_final] = ACTIONS(1180), - [anon_sym_class] = ACTIONS(1180), - [anon_sym_interface] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1180), - [anon_sym_function] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1180), - [aux_sym_integer_token1] = ACTIONS(1180), - [aux_sym_integer_token2] = ACTIONS(1178), - [aux_sym_float_token1] = ACTIONS(1180), - [aux_sym_float_token2] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [aux_sym_string_token1] = ACTIONS(1178), - [aux_sym_string_token3] = ACTIONS(1178), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1178), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [243] = { - [sym__rhs_expression] = STATE(945), - [sym__unaryExpression] = STATE(1557), - [sym_runtime_type_check_expression] = STATE(1557), - [sym_switch_expression] = STATE(1557), - [sym_cast_expression] = STATE(1557), - [sym_type_trace_expression] = STATE(1557), - [sym__parenthesized_expression] = STATE(1479), - [sym_subscript_expression] = STATE(1557), - [sym_member_expression] = STATE(1367), - [sym__lhs_expression] = STATE(2436), - [sym__call] = STATE(1559), - [sym__constructor_call] = STATE(1529), - [sym_call_expression] = STATE(945), - [sym_operator] = STATE(1919), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1517), - [sym_integer] = STATE(1517), - [sym_float] = STATE(1517), - [sym_bool] = STATE(1517), - [sym_string] = STATE(1486), - [sym_null] = STATE(1517), - [sym_array] = STATE(1517), - [sym_map] = STATE(1517), - [sym_object] = STATE(1517), - [sym_pair] = STATE(1517), - [sym_identifier] = ACTIONS(1476), + [252] = { + [sym__rhs_expression] = STATE(1269), + [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(2659), + [sym_range_expression] = STATE(3442), + [sym_subscript_expression] = STATE(3442), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1269), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_cast] = ACTIONS(1482), - [anon_sym_DOLLARtype] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_untyped] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_this] = ACTIONS(1494), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_untyped] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [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), @@ -37736,781 +40232,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1498), - [aux_sym_integer_token1] = ACTIONS(1500), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1510), - [aux_sym_string_token3] = ACTIONS(1512), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [244] = { - [sym_identifier] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [anon_sym_package] = ACTIONS(1204), - [anon_sym_DOT] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_using] = ACTIONS(1204), - [anon_sym_throw] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_cast] = ACTIONS(1204), - [anon_sym_COMMA] = ACTIONS(1202), - [anon_sym_DOLLARtype] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_untyped] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_this] = ACTIONS(1204), - [anon_sym_QMARK] = ACTIONS(1204), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_AT_COLON] = ACTIONS(1202), - [anon_sym_try] = ACTIONS(1204), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_new] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PERCENT] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_LT_LT] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(1204), - [anon_sym_GT_GT_GT] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_CARET] = ACTIONS(1202), - [anon_sym_AMP_AMP] = ACTIONS(1202), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_EQ_EQ] = ACTIONS(1202), - [anon_sym_BANG_EQ] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_LT_EQ] = ACTIONS(1202), - [anon_sym_GT] = ACTIONS(1204), - [anon_sym_GT_EQ] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1202), - [anon_sym_QMARK_QMARK] = ACTIONS(1202), - [anon_sym_EQ] = ACTIONS(1204), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1202), - [anon_sym_null] = ACTIONS(1204), - [anon_sym_macro] = ACTIONS(1204), - [anon_sym_abstract] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_public] = ACTIONS(1204), - [anon_sym_private] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_overload] = ACTIONS(1204), - [anon_sym_override] = ACTIONS(1204), - [anon_sym_final] = ACTIONS(1204), - [anon_sym_class] = ACTIONS(1204), - [anon_sym_interface] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_function] = ACTIONS(1204), - [anon_sym_var] = ACTIONS(1204), - [aux_sym_integer_token1] = ACTIONS(1204), - [aux_sym_integer_token2] = ACTIONS(1202), - [aux_sym_float_token1] = ACTIONS(1204), - [aux_sym_float_token2] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), - [aux_sym_string_token1] = ACTIONS(1202), - [aux_sym_string_token3] = ACTIONS(1202), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1202), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [245] = { - [sym_identifier] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(1028), - [anon_sym_package] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_import] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1028), - [anon_sym_using] = ACTIONS(1030), - [anon_sym_throw] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1030), - [anon_sym_default] = ACTIONS(1030), - [anon_sym_cast] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1028), - [anon_sym_DOLLARtype] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_untyped] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_this] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(1030), - [anon_sym_AT] = ACTIONS(1030), - [anon_sym_AT_COLON] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_catch] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_new] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_PERCENT] = ACTIONS(1028), - [anon_sym_SLASH] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_LT_LT] = ACTIONS(1028), - [anon_sym_GT_GT] = ACTIONS(1030), - [anon_sym_GT_GT_GT] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1028), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE_PIPE] = ACTIONS(1028), - [anon_sym_EQ_EQ] = ACTIONS(1028), - [anon_sym_BANG_EQ] = ACTIONS(1028), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_LT_EQ] = ACTIONS(1028), - [anon_sym_GT] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1028), - [anon_sym_EQ_GT] = ACTIONS(1028), - [anon_sym_QMARK_QMARK] = ACTIONS(1028), - [anon_sym_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1030), - [anon_sym_macro] = ACTIONS(1030), - [anon_sym_abstract] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_public] = ACTIONS(1030), - [anon_sym_private] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_overload] = ACTIONS(1030), - [anon_sym_override] = ACTIONS(1030), - [anon_sym_final] = ACTIONS(1030), - [anon_sym_class] = ACTIONS(1030), - [anon_sym_interface] = ACTIONS(1030), - [anon_sym_enum] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1030), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_var] = ACTIONS(1030), - [aux_sym_integer_token1] = ACTIONS(1030), - [aux_sym_integer_token2] = ACTIONS(1028), - [aux_sym_float_token1] = ACTIONS(1030), - [aux_sym_float_token2] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [aux_sym_string_token1] = ACTIONS(1028), - [aux_sym_string_token3] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1028), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [246] = { - [sym_identifier] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1032), - [anon_sym_package] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_import] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1032), - [anon_sym_using] = ACTIONS(1034), - [anon_sym_throw] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1034), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_cast] = ACTIONS(1034), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_DOLLARtype] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_untyped] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_this] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1034), - [anon_sym_AT] = ACTIONS(1034), - [anon_sym_AT_COLON] = ACTIONS(1032), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_PERCENT] = ACTIONS(1032), - [anon_sym_SLASH] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1034), - [anon_sym_GT_GT_GT] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1032), - [anon_sym_EQ_GT] = ACTIONS(1032), - [anon_sym_QMARK_QMARK] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1032), - [anon_sym_null] = ACTIONS(1034), - [anon_sym_macro] = ACTIONS(1034), - [anon_sym_abstract] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1034), - [anon_sym_public] = ACTIONS(1034), - [anon_sym_private] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_overload] = ACTIONS(1034), - [anon_sym_override] = ACTIONS(1034), - [anon_sym_final] = ACTIONS(1034), - [anon_sym_class] = ACTIONS(1034), - [anon_sym_interface] = ACTIONS(1034), - [anon_sym_enum] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1034), - [anon_sym_function] = ACTIONS(1034), - [anon_sym_var] = ACTIONS(1034), - [aux_sym_integer_token1] = ACTIONS(1034), - [aux_sym_integer_token2] = ACTIONS(1032), - [aux_sym_float_token1] = ACTIONS(1034), - [aux_sym_float_token2] = ACTIONS(1032), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [aux_sym_string_token1] = ACTIONS(1032), - [aux_sym_string_token3] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1032), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [247] = { - [sym_identifier] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_package] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_import] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_using] = ACTIONS(1044), - [anon_sym_throw] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_cast] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_DOLLARtype] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_untyped] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_this] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_AT] = ACTIONS(1044), - [anon_sym_AT_COLON] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_new] = ACTIONS(1044), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PERCENT] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1042), - [anon_sym_GT_GT] = ACTIONS(1044), - [anon_sym_GT_GT_GT] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1042), - [anon_sym_AMP_AMP] = ACTIONS(1042), - [anon_sym_PIPE_PIPE] = ACTIONS(1042), - [anon_sym_EQ_EQ] = ACTIONS(1042), - [anon_sym_BANG_EQ] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1044), - [anon_sym_LT_EQ] = ACTIONS(1042), - [anon_sym_GT] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1042), - [anon_sym_EQ_GT] = ACTIONS(1042), - [anon_sym_QMARK_QMARK] = ACTIONS(1042), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1044), - [anon_sym_macro] = ACTIONS(1044), - [anon_sym_abstract] = ACTIONS(1044), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_overload] = ACTIONS(1044), - [anon_sym_override] = ACTIONS(1044), - [anon_sym_final] = ACTIONS(1044), - [anon_sym_class] = ACTIONS(1044), - [anon_sym_interface] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_function] = ACTIONS(1044), - [anon_sym_var] = ACTIONS(1044), - [aux_sym_integer_token1] = ACTIONS(1044), - [aux_sym_integer_token2] = ACTIONS(1042), - [aux_sym_float_token1] = ACTIONS(1044), - [aux_sym_float_token2] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [aux_sym_string_token1] = ACTIONS(1042), - [aux_sym_string_token3] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1042), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [248] = { - [sym_identifier] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(1056), - [anon_sym_package] = ACTIONS(1058), - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_import] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1056), - [anon_sym_using] = ACTIONS(1058), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1058), - [anon_sym_default] = ACTIONS(1058), - [anon_sym_cast] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1056), - [anon_sym_DOLLARtype] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_untyped] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_this] = ACTIONS(1058), - [anon_sym_QMARK] = ACTIONS(1058), - [anon_sym_AT] = ACTIONS(1058), - [anon_sym_AT_COLON] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1058), - [anon_sym_catch] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_new] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1056), - [anon_sym_PERCENT] = ACTIONS(1056), - [anon_sym_SLASH] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_LT_LT] = ACTIONS(1056), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_GT_GT_GT] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_CARET] = ACTIONS(1056), - [anon_sym_AMP_AMP] = ACTIONS(1056), - [anon_sym_PIPE_PIPE] = ACTIONS(1056), - [anon_sym_EQ_EQ] = ACTIONS(1056), - [anon_sym_BANG_EQ] = ACTIONS(1056), - [anon_sym_LT] = ACTIONS(1058), - [anon_sym_LT_EQ] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1058), - [anon_sym_GT_EQ] = ACTIONS(1056), - [anon_sym_EQ_GT] = ACTIONS(1056), - [anon_sym_QMARK_QMARK] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), - [anon_sym_null] = ACTIONS(1058), - [anon_sym_macro] = ACTIONS(1058), - [anon_sym_abstract] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1058), - [anon_sym_public] = ACTIONS(1058), - [anon_sym_private] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_inline] = ACTIONS(1058), - [anon_sym_overload] = ACTIONS(1058), - [anon_sym_override] = ACTIONS(1058), - [anon_sym_final] = ACTIONS(1058), - [anon_sym_class] = ACTIONS(1058), - [anon_sym_interface] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(1058), - [anon_sym_var] = ACTIONS(1058), - [aux_sym_integer_token1] = ACTIONS(1058), - [aux_sym_integer_token2] = ACTIONS(1056), - [aux_sym_float_token1] = ACTIONS(1058), - [aux_sym_float_token2] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [aux_sym_string_token1] = ACTIONS(1056), - [aux_sym_string_token3] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1056), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(1060), - [anon_sym_package] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_import] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_using] = ACTIONS(1062), - [anon_sym_throw] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1062), - [anon_sym_cast] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_DOLLARtype] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_untyped] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_this] = ACTIONS(1062), - [anon_sym_QMARK] = ACTIONS(1062), - [anon_sym_AT] = ACTIONS(1062), - [anon_sym_AT_COLON] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_catch] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_new] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1060), - [anon_sym_SLASH] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1062), - [anon_sym_GT_GT_GT] = ACTIONS(1060), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1062), - [anon_sym_CARET] = ACTIONS(1060), - [anon_sym_AMP_AMP] = ACTIONS(1060), - [anon_sym_PIPE_PIPE] = ACTIONS(1060), - [anon_sym_EQ_EQ] = ACTIONS(1060), - [anon_sym_BANG_EQ] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1062), - [anon_sym_LT_EQ] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1062), - [anon_sym_GT_EQ] = ACTIONS(1060), - [anon_sym_EQ_GT] = ACTIONS(1060), - [anon_sym_QMARK_QMARK] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1062), - [anon_sym_macro] = ACTIONS(1062), - [anon_sym_abstract] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_public] = ACTIONS(1062), - [anon_sym_private] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym_overload] = ACTIONS(1062), - [anon_sym_override] = ACTIONS(1062), - [anon_sym_final] = ACTIONS(1062), - [anon_sym_class] = ACTIONS(1062), - [anon_sym_interface] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_function] = ACTIONS(1062), - [anon_sym_var] = ACTIONS(1062), - [aux_sym_integer_token1] = ACTIONS(1062), - [aux_sym_integer_token2] = ACTIONS(1060), - [aux_sym_float_token1] = ACTIONS(1062), - [aux_sym_float_token2] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [aux_sym_string_token1] = ACTIONS(1060), - [aux_sym_string_token3] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1060), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [250] = { - [sym_identifier] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(1064), - [anon_sym_package] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_import] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_using] = ACTIONS(1066), - [anon_sym_throw] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1066), - [anon_sym_default] = ACTIONS(1066), - [anon_sym_cast] = ACTIONS(1066), - [anon_sym_COMMA] = ACTIONS(1064), - [anon_sym_DOLLARtype] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_untyped] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_this] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1066), - [anon_sym_AT] = ACTIONS(1066), - [anon_sym_AT_COLON] = ACTIONS(1064), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_new] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1064), - [anon_sym_SLASH] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_GT_GT_GT] = ACTIONS(1064), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_CARET] = ACTIONS(1064), - [anon_sym_AMP_AMP] = ACTIONS(1064), - [anon_sym_PIPE_PIPE] = ACTIONS(1064), - [anon_sym_EQ_EQ] = ACTIONS(1064), - [anon_sym_BANG_EQ] = ACTIONS(1064), - [anon_sym_LT] = ACTIONS(1066), - [anon_sym_LT_EQ] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1064), - [anon_sym_EQ_GT] = ACTIONS(1064), - [anon_sym_QMARK_QMARK] = ACTIONS(1064), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1066), - [anon_sym_macro] = ACTIONS(1066), - [anon_sym_abstract] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_public] = ACTIONS(1066), - [anon_sym_private] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_inline] = ACTIONS(1066), - [anon_sym_overload] = ACTIONS(1066), - [anon_sym_override] = ACTIONS(1066), - [anon_sym_final] = ACTIONS(1066), - [anon_sym_class] = ACTIONS(1066), - [anon_sym_interface] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1066), - [anon_sym_function] = ACTIONS(1066), - [anon_sym_var] = ACTIONS(1066), - [aux_sym_integer_token1] = ACTIONS(1066), - [aux_sym_integer_token2] = ACTIONS(1064), - [aux_sym_float_token1] = ACTIONS(1066), - [aux_sym_float_token2] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [aux_sym_string_token1] = ACTIONS(1064), - [aux_sym_string_token3] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1064), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [251] = { - [sym_identifier] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(1068), - [anon_sym_package] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_import] = ACTIONS(1070), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_using] = ACTIONS(1070), - [anon_sym_throw] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1070), - [anon_sym_default] = ACTIONS(1070), - [anon_sym_cast] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_DOLLARtype] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_untyped] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_this] = ACTIONS(1070), - [anon_sym_QMARK] = ACTIONS(1070), - [anon_sym_AT] = ACTIONS(1070), - [anon_sym_AT_COLON] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PERCENT] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_LT_LT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1070), - [anon_sym_GT_GT_GT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [anon_sym_EQ_EQ] = ACTIONS(1068), - [anon_sym_BANG_EQ] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1068), - [anon_sym_EQ_GT] = ACTIONS(1068), - [anon_sym_QMARK_QMARK] = ACTIONS(1068), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1070), - [anon_sym_macro] = ACTIONS(1070), - [anon_sym_abstract] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1070), - [anon_sym_public] = ACTIONS(1070), - [anon_sym_private] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_inline] = ACTIONS(1070), - [anon_sym_overload] = ACTIONS(1070), - [anon_sym_override] = ACTIONS(1070), - [anon_sym_final] = ACTIONS(1070), - [anon_sym_class] = ACTIONS(1070), - [anon_sym_interface] = ACTIONS(1070), - [anon_sym_enum] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1070), - [anon_sym_function] = ACTIONS(1070), - [anon_sym_var] = ACTIONS(1070), - [aux_sym_integer_token1] = ACTIONS(1070), - [aux_sym_integer_token2] = ACTIONS(1068), - [aux_sym_float_token1] = ACTIONS(1070), - [aux_sym_float_token2] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [aux_sym_string_token1] = ACTIONS(1068), - [aux_sym_string_token3] = ACTIONS(1068), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1068), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [252] = { - [sym__rhs_expression] = STATE(943), - [sym__unaryExpression] = STATE(1422), - [sym_runtime_type_check_expression] = STATE(1422), - [sym_switch_expression] = STATE(1422), - [sym_cast_expression] = STATE(1422), - [sym_type_trace_expression] = STATE(1422), - [sym__parenthesized_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1422), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(943), - [sym_operator] = STATE(1864), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1520), - [sym_integer] = STATE(1520), - [sym_float] = STATE(1520), - [sym_bool] = STATE(1520), - [sym_string] = STATE(1466), - [sym_null] = STATE(1520), - [sym_array] = STATE(1520), - [sym_map] = STATE(1520), - [sym_object] = STATE(1520), - [sym_pair] = STATE(1520), - [sym_identifier] = ACTIONS(1514), + [253] = { + [sym__rhs_expression] = STATE(992), + [sym__unaryExpression] = STATE(575), + [sym_runtime_type_check_expression] = STATE(575), + [sym_switch_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_type_trace_expression] = STATE(575), + [sym__parenthesized_expression] = STATE(397), + [sym_range_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym_member_expression] = STATE(344), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(992), + [sym_operator] = STATE(1780), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1376), + [sym_integer] = STATE(324), + [sym_float] = STATE(1376), + [sym_bool] = STATE(1376), + [sym_string] = STATE(1369), + [sym_null] = STATE(1376), + [sym_array] = STATE(1376), + [sym_map] = STATE(1376), + [sym_object] = STATE(1376), + [sym_pair] = STATE(1376), + [sym_identifier] = ACTIONS(2086), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1516), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_untyped] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(2088), + [anon_sym_DOLLARtype] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_untyped] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1458), + [anon_sym_new] = ACTIONS(1364), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -38537,867 +40322,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(1076), - [anon_sym_package] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(1078), - [anon_sym_import] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1076), - [anon_sym_using] = ACTIONS(1078), - [anon_sym_throw] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1078), - [anon_sym_default] = ACTIONS(1078), - [anon_sym_cast] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1076), - [anon_sym_DOLLARtype] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_untyped] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1076), - [anon_sym_this] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(1078), - [anon_sym_AT_COLON] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_new] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1076), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_PERCENT] = ACTIONS(1076), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1076), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_GT_GT_GT] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_EQ_EQ] = ACTIONS(1076), - [anon_sym_BANG_EQ] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1076), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_GT_EQ] = ACTIONS(1076), - [anon_sym_EQ_GT] = ACTIONS(1076), - [anon_sym_QMARK_QMARK] = ACTIONS(1076), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1078), - [anon_sym_macro] = ACTIONS(1078), - [anon_sym_abstract] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1078), - [anon_sym_public] = ACTIONS(1078), - [anon_sym_private] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_inline] = ACTIONS(1078), - [anon_sym_overload] = ACTIONS(1078), - [anon_sym_override] = ACTIONS(1078), - [anon_sym_final] = ACTIONS(1078), - [anon_sym_class] = ACTIONS(1078), - [anon_sym_interface] = ACTIONS(1078), - [anon_sym_enum] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(1078), - [anon_sym_var] = ACTIONS(1078), - [aux_sym_integer_token1] = ACTIONS(1078), - [aux_sym_integer_token2] = ACTIONS(1076), - [aux_sym_float_token1] = ACTIONS(1078), - [aux_sym_float_token2] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1078), - [anon_sym_false] = ACTIONS(1078), - [aux_sym_string_token1] = ACTIONS(1076), - [aux_sym_string_token3] = ACTIONS(1076), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1076), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, [254] = { - [sym_identifier] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(692), - [anon_sym_package] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_import] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_using] = ACTIONS(694), - [anon_sym_throw] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_case] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_cast] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_DOLLARtype] = ACTIONS(692), - [anon_sym_for] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_untyped] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_AT_COLON] = ACTIONS(692), - [anon_sym_try] = ACTIONS(694), - [anon_sym_catch] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(694), - [anon_sym_new] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(694), - [anon_sym_macro] = ACTIONS(694), - [anon_sym_abstract] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_extern] = ACTIONS(694), - [anon_sym_inline] = ACTIONS(694), - [anon_sym_overload] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_final] = ACTIONS(694), - [anon_sym_class] = ACTIONS(694), - [anon_sym_interface] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_typedef] = ACTIONS(694), - [anon_sym_function] = ACTIONS(694), - [anon_sym_var] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(694), - [aux_sym_integer_token2] = ACTIONS(692), - [aux_sym_float_token1] = ACTIONS(694), - [aux_sym_float_token2] = ACTIONS(692), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [aux_sym_string_token1] = ACTIONS(692), - [aux_sym_string_token3] = ACTIONS(692), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(692), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [255] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1086), - [anon_sym_package] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_import] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_using] = ACTIONS(1088), - [anon_sym_throw] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_cast] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1086), - [anon_sym_DOLLARtype] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_untyped] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1086), - [anon_sym_this] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1088), - [anon_sym_AT_COLON] = ACTIONS(1086), - [anon_sym_try] = ACTIONS(1088), - [anon_sym_catch] = ACTIONS(1088), - [anon_sym_else] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_new] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PERCENT] = ACTIONS(1086), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [anon_sym_BANG_EQ] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1086), - [anon_sym_EQ_GT] = ACTIONS(1086), - [anon_sym_QMARK_QMARK] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), - [anon_sym_null] = ACTIONS(1088), - [anon_sym_macro] = ACTIONS(1088), - [anon_sym_abstract] = ACTIONS(1088), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_public] = ACTIONS(1088), - [anon_sym_private] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_overload] = ACTIONS(1088), - [anon_sym_override] = ACTIONS(1088), - [anon_sym_final] = ACTIONS(1088), - [anon_sym_class] = ACTIONS(1088), - [anon_sym_interface] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_function] = ACTIONS(1088), - [anon_sym_var] = ACTIONS(1088), - [aux_sym_integer_token1] = ACTIONS(1088), - [aux_sym_integer_token2] = ACTIONS(1086), - [aux_sym_float_token1] = ACTIONS(1088), - [aux_sym_float_token2] = ACTIONS(1086), - [anon_sym_true] = ACTIONS(1088), - [anon_sym_false] = ACTIONS(1088), - [aux_sym_string_token1] = ACTIONS(1086), - [aux_sym_string_token3] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1086), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [256] = { - [sym_identifier] = ACTIONS(1092), - [anon_sym_POUND] = ACTIONS(1090), - [anon_sym_package] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_using] = ACTIONS(1092), - [anon_sym_throw] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_cast] = ACTIONS(1092), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_DOLLARtype] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_untyped] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_this] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_AT] = ACTIONS(1092), - [anon_sym_AT_COLON] = ACTIONS(1090), - [anon_sym_try] = ACTIONS(1092), - [anon_sym_catch] = ACTIONS(1092), - [anon_sym_else] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PERCENT] = ACTIONS(1090), - [anon_sym_SLASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_GT_GT_GT] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_CARET] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1092), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1092), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_EQ_GT] = ACTIONS(1090), - [anon_sym_QMARK_QMARK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1092), - [anon_sym_macro] = ACTIONS(1092), - [anon_sym_abstract] = ACTIONS(1092), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_public] = ACTIONS(1092), - [anon_sym_private] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_overload] = ACTIONS(1092), - [anon_sym_override] = ACTIONS(1092), - [anon_sym_final] = ACTIONS(1092), - [anon_sym_class] = ACTIONS(1092), - [anon_sym_interface] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_function] = ACTIONS(1092), - [anon_sym_var] = ACTIONS(1092), - [aux_sym_integer_token1] = ACTIONS(1092), - [aux_sym_integer_token2] = ACTIONS(1090), - [aux_sym_float_token1] = ACTIONS(1092), - [aux_sym_float_token2] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1092), - [anon_sym_false] = ACTIONS(1092), - [aux_sym_string_token1] = ACTIONS(1090), - [aux_sym_string_token3] = ACTIONS(1090), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1090), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [257] = { - [sym_identifier] = ACTIONS(1096), - [anon_sym_POUND] = ACTIONS(1094), - [anon_sym_package] = ACTIONS(1096), - [anon_sym_DOT] = ACTIONS(1096), - [anon_sym_import] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_using] = ACTIONS(1096), - [anon_sym_throw] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1094), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_cast] = ACTIONS(1096), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_DOLLARtype] = ACTIONS(1094), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1094), - [anon_sym_this] = ACTIONS(1096), - [anon_sym_QMARK] = ACTIONS(1096), - [anon_sym_AT] = ACTIONS(1096), - [anon_sym_AT_COLON] = ACTIONS(1094), - [anon_sym_try] = ACTIONS(1096), - [anon_sym_catch] = ACTIONS(1096), - [anon_sym_else] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_new] = ACTIONS(1096), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PERCENT] = ACTIONS(1094), - [anon_sym_SLASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1096), - [anon_sym_GT_GT_GT] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1094), - [anon_sym_AMP_AMP] = ACTIONS(1094), - [anon_sym_PIPE_PIPE] = ACTIONS(1094), - [anon_sym_EQ_EQ] = ACTIONS(1094), - [anon_sym_BANG_EQ] = ACTIONS(1094), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_LT_EQ] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1094), - [anon_sym_EQ_GT] = ACTIONS(1094), - [anon_sym_QMARK_QMARK] = ACTIONS(1094), - [anon_sym_EQ] = ACTIONS(1096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1094), - [anon_sym_null] = ACTIONS(1096), - [anon_sym_macro] = ACTIONS(1096), - [anon_sym_abstract] = ACTIONS(1096), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_public] = ACTIONS(1096), - [anon_sym_private] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_overload] = ACTIONS(1096), - [anon_sym_override] = ACTIONS(1096), - [anon_sym_final] = ACTIONS(1096), - [anon_sym_class] = ACTIONS(1096), - [anon_sym_interface] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_function] = ACTIONS(1096), - [anon_sym_var] = ACTIONS(1096), - [aux_sym_integer_token1] = ACTIONS(1096), - [aux_sym_integer_token2] = ACTIONS(1094), - [aux_sym_float_token1] = ACTIONS(1096), - [aux_sym_float_token2] = ACTIONS(1094), - [anon_sym_true] = ACTIONS(1096), - [anon_sym_false] = ACTIONS(1096), - [aux_sym_string_token1] = ACTIONS(1094), - [aux_sym_string_token3] = ACTIONS(1094), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1094), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [258] = { - [sym_identifier] = ACTIONS(1108), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_package] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1108), - [anon_sym_import] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_using] = ACTIONS(1108), - [anon_sym_throw] = ACTIONS(1108), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_cast] = ACTIONS(1108), - [anon_sym_COMMA] = ACTIONS(1106), - [anon_sym_DOLLARtype] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_untyped] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_this] = ACTIONS(1108), - [anon_sym_QMARK] = ACTIONS(1108), - [anon_sym_AT] = ACTIONS(1108), - [anon_sym_AT_COLON] = ACTIONS(1106), - [anon_sym_try] = ACTIONS(1108), - [anon_sym_catch] = ACTIONS(1108), - [anon_sym_else] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_new] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PERCENT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1108), - [anon_sym_GT_GT_GT] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_CARET] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_EQ_EQ] = ACTIONS(1106), - [anon_sym_BANG_EQ] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_LT_EQ] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_EQ] = ACTIONS(1106), - [anon_sym_EQ_GT] = ACTIONS(1106), - [anon_sym_QMARK_QMARK] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1108), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1106), - [anon_sym_null] = ACTIONS(1108), - [anon_sym_macro] = ACTIONS(1108), - [anon_sym_abstract] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_private] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_overload] = ACTIONS(1108), - [anon_sym_override] = ACTIONS(1108), - [anon_sym_final] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1108), - [anon_sym_interface] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_function] = ACTIONS(1108), - [anon_sym_var] = ACTIONS(1108), - [aux_sym_integer_token1] = ACTIONS(1108), - [aux_sym_integer_token2] = ACTIONS(1106), - [aux_sym_float_token1] = ACTIONS(1108), - [aux_sym_float_token2] = ACTIONS(1106), - [anon_sym_true] = ACTIONS(1108), - [anon_sym_false] = ACTIONS(1108), - [aux_sym_string_token1] = ACTIONS(1106), - [aux_sym_string_token3] = ACTIONS(1106), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1106), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [259] = { - [sym_identifier] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1110), - [anon_sym_package] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_import] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_using] = ACTIONS(1112), - [anon_sym_throw] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_cast] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1110), - [anon_sym_DOLLARtype] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_untyped] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_this] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_AT_COLON] = ACTIONS(1110), - [anon_sym_try] = ACTIONS(1112), - [anon_sym_catch] = ACTIONS(1112), - [anon_sym_else] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_new] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PERCENT] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_LT_LT] = ACTIONS(1110), - [anon_sym_GT_GT] = ACTIONS(1112), - [anon_sym_GT_GT_GT] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_CARET] = ACTIONS(1110), - [anon_sym_AMP_AMP] = ACTIONS(1110), - [anon_sym_PIPE_PIPE] = ACTIONS(1110), - [anon_sym_EQ_EQ] = ACTIONS(1110), - [anon_sym_BANG_EQ] = ACTIONS(1110), - [anon_sym_LT] = ACTIONS(1112), - [anon_sym_LT_EQ] = ACTIONS(1110), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_GT_EQ] = ACTIONS(1110), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_QMARK_QMARK] = ACTIONS(1110), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1110), - [anon_sym_null] = ACTIONS(1112), - [anon_sym_macro] = ACTIONS(1112), - [anon_sym_abstract] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_public] = ACTIONS(1112), - [anon_sym_private] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_overload] = ACTIONS(1112), - [anon_sym_override] = ACTIONS(1112), - [anon_sym_final] = ACTIONS(1112), - [anon_sym_class] = ACTIONS(1112), - [anon_sym_interface] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1112), - [anon_sym_var] = ACTIONS(1112), - [aux_sym_integer_token1] = ACTIONS(1112), - [aux_sym_integer_token2] = ACTIONS(1110), - [aux_sym_float_token1] = ACTIONS(1112), - [aux_sym_float_token2] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1112), - [anon_sym_false] = ACTIONS(1112), - [aux_sym_string_token1] = ACTIONS(1110), - [aux_sym_string_token3] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1110), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [260] = { - [sym_identifier] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(1226), - [anon_sym_package] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_using] = ACTIONS(1228), - [anon_sym_throw] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_cast] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_DOLLARtype] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_untyped] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_this] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_AT_COLON] = ACTIONS(1226), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_catch] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PERCENT] = ACTIONS(1226), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_LT_LT] = ACTIONS(1226), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_GT_GT_GT] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1226), - [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_EQ_EQ] = ACTIONS(1226), - [anon_sym_BANG_EQ] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1226), - [anon_sym_EQ_GT] = ACTIONS(1226), - [anon_sym_QMARK_QMARK] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_macro] = ACTIONS(1228), - [anon_sym_abstract] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_public] = ACTIONS(1228), - [anon_sym_private] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_overload] = ACTIONS(1228), - [anon_sym_override] = ACTIONS(1228), - [anon_sym_final] = ACTIONS(1228), - [anon_sym_class] = ACTIONS(1228), - [anon_sym_interface] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_function] = ACTIONS(1228), - [anon_sym_var] = ACTIONS(1228), - [aux_sym_integer_token1] = ACTIONS(1228), - [aux_sym_integer_token2] = ACTIONS(1226), - [aux_sym_float_token1] = ACTIONS(1228), - [aux_sym_float_token2] = ACTIONS(1226), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [aux_sym_string_token1] = ACTIONS(1226), - [aux_sym_string_token3] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1226), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [261] = { - [sym_identifier] = ACTIONS(1120), - [anon_sym_POUND] = ACTIONS(1118), - [anon_sym_package] = ACTIONS(1120), - [anon_sym_DOT] = ACTIONS(1120), - [anon_sym_import] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_using] = ACTIONS(1120), - [anon_sym_throw] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_cast] = ACTIONS(1120), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_DOLLARtype] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_untyped] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_this] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(1120), - [anon_sym_AT_COLON] = ACTIONS(1118), - [anon_sym_try] = ACTIONS(1120), - [anon_sym_catch] = ACTIONS(1120), - [anon_sym_else] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_new] = ACTIONS(1120), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_LT_LT] = ACTIONS(1118), - [anon_sym_GT_GT] = ACTIONS(1120), - [anon_sym_GT_GT_GT] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_CARET] = ACTIONS(1118), - [anon_sym_AMP_AMP] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1118), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1118), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_GT_EQ] = ACTIONS(1118), - [anon_sym_EQ_GT] = ACTIONS(1118), - [anon_sym_QMARK_QMARK] = ACTIONS(1118), - [anon_sym_EQ] = ACTIONS(1120), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_macro] = ACTIONS(1120), - [anon_sym_abstract] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_public] = ACTIONS(1120), - [anon_sym_private] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_overload] = ACTIONS(1120), - [anon_sym_override] = ACTIONS(1120), - [anon_sym_final] = ACTIONS(1120), - [anon_sym_class] = ACTIONS(1120), - [anon_sym_interface] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_function] = ACTIONS(1120), - [anon_sym_var] = ACTIONS(1120), - [aux_sym_integer_token1] = ACTIONS(1120), - [aux_sym_integer_token2] = ACTIONS(1118), - [aux_sym_float_token1] = ACTIONS(1120), - [aux_sym_float_token2] = ACTIONS(1118), - [anon_sym_true] = ACTIONS(1120), - [anon_sym_false] = ACTIONS(1120), - [aux_sym_string_token1] = ACTIONS(1118), - [aux_sym_string_token3] = ACTIONS(1118), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1118), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [262] = { - [sym__rhs_expression] = STATE(1110), - [sym__unaryExpression] = STATE(3229), - [sym_runtime_type_check_expression] = STATE(3229), - [sym_switch_expression] = STATE(3229), - [sym_cast_expression] = STATE(3229), - [sym_type_trace_expression] = STATE(3229), - [sym__parenthesized_expression] = STATE(3116), - [sym_subscript_expression] = STATE(3229), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1110), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [sym__rhs_expression] = STATE(1273), + [sym__unaryExpression] = STATE(3564), + [sym_runtime_type_check_expression] = STATE(3564), + [sym_switch_expression] = STATE(3564), + [sym_cast_expression] = STATE(3564), + [sym_type_trace_expression] = STATE(3564), + [sym__parenthesized_expression] = STATE(2676), + [sym_range_expression] = STATE(3564), + [sym_subscript_expression] = STATE(3564), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1273), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_untyped] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_untyped] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -39439,2015 +40424,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(844), - [anon_sym_POUND] = ACTIONS(842), - [anon_sym_package] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_import] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_using] = ACTIONS(844), - [anon_sym_throw] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_case] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), - [anon_sym_cast] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(842), - [anon_sym_DOLLARtype] = ACTIONS(842), - [anon_sym_for] = ACTIONS(844), - [anon_sym_return] = ACTIONS(844), - [anon_sym_untyped] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_this] = ACTIONS(844), - [anon_sym_QMARK] = ACTIONS(844), - [anon_sym_AT] = ACTIONS(844), - [anon_sym_AT_COLON] = ACTIONS(842), - [anon_sym_try] = ACTIONS(844), - [anon_sym_catch] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_PLUS_PLUS] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(842), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_GT_GT_GT] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(842), - [anon_sym_AMP_AMP] = ACTIONS(842), - [anon_sym_PIPE_PIPE] = ACTIONS(842), - [anon_sym_EQ_EQ] = ACTIONS(842), - [anon_sym_BANG_EQ] = ACTIONS(842), - [anon_sym_LT] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(842), - [anon_sym_GT] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(842), - [anon_sym_EQ_GT] = ACTIONS(842), - [anon_sym_QMARK_QMARK] = ACTIONS(842), - [anon_sym_EQ] = ACTIONS(844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(842), - [anon_sym_null] = ACTIONS(844), - [anon_sym_macro] = ACTIONS(844), - [anon_sym_abstract] = ACTIONS(844), - [anon_sym_static] = ACTIONS(844), - [anon_sym_public] = ACTIONS(844), - [anon_sym_private] = ACTIONS(844), - [anon_sym_extern] = ACTIONS(844), - [anon_sym_inline] = ACTIONS(844), - [anon_sym_overload] = ACTIONS(844), - [anon_sym_override] = ACTIONS(844), - [anon_sym_final] = ACTIONS(844), - [anon_sym_class] = ACTIONS(844), - [anon_sym_interface] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(844), - [anon_sym_typedef] = ACTIONS(844), - [anon_sym_function] = ACTIONS(844), - [anon_sym_var] = ACTIONS(844), - [aux_sym_integer_token1] = ACTIONS(844), - [aux_sym_integer_token2] = ACTIONS(842), - [aux_sym_float_token1] = ACTIONS(844), - [aux_sym_float_token2] = ACTIONS(842), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym_string_token1] = ACTIONS(842), - [aux_sym_string_token3] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(842), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [264] = { - [sym_identifier] = ACTIONS(1130), - [anon_sym_POUND] = ACTIONS(1128), - [anon_sym_package] = ACTIONS(1130), - [anon_sym_DOT] = ACTIONS(1130), - [anon_sym_import] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_using] = ACTIONS(1130), - [anon_sym_throw] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1130), - [anon_sym_cast] = ACTIONS(1130), - [anon_sym_COMMA] = ACTIONS(1128), - [anon_sym_DOLLARtype] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1130), - [anon_sym_untyped] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1128), - [anon_sym_this] = ACTIONS(1130), - [anon_sym_QMARK] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1130), - [anon_sym_AT_COLON] = ACTIONS(1128), - [anon_sym_try] = ACTIONS(1130), - [anon_sym_catch] = ACTIONS(1130), - [anon_sym_else] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1130), - [anon_sym_do] = ACTIONS(1130), - [anon_sym_new] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [anon_sym_PERCENT] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_GT_GT] = ACTIONS(1130), - [anon_sym_GT_GT_GT] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_EQ_EQ] = ACTIONS(1128), - [anon_sym_BANG_EQ] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_LT_EQ] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1130), - [anon_sym_GT_EQ] = ACTIONS(1128), - [anon_sym_EQ_GT] = ACTIONS(1128), - [anon_sym_QMARK_QMARK] = ACTIONS(1128), - [anon_sym_EQ] = ACTIONS(1130), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1128), - [anon_sym_null] = ACTIONS(1130), - [anon_sym_macro] = ACTIONS(1130), - [anon_sym_abstract] = ACTIONS(1130), - [anon_sym_static] = ACTIONS(1130), - [anon_sym_public] = ACTIONS(1130), - [anon_sym_private] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym_inline] = ACTIONS(1130), - [anon_sym_overload] = ACTIONS(1130), - [anon_sym_override] = ACTIONS(1130), - [anon_sym_final] = ACTIONS(1130), - [anon_sym_class] = ACTIONS(1130), - [anon_sym_interface] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_typedef] = ACTIONS(1130), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_var] = ACTIONS(1130), - [aux_sym_integer_token1] = ACTIONS(1130), - [aux_sym_integer_token2] = ACTIONS(1128), - [aux_sym_float_token1] = ACTIONS(1130), - [aux_sym_float_token2] = ACTIONS(1128), - [anon_sym_true] = ACTIONS(1130), - [anon_sym_false] = ACTIONS(1130), - [aux_sym_string_token1] = ACTIONS(1128), - [aux_sym_string_token3] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1128), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [265] = { - [sym_identifier] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [anon_sym_package] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1136), - [anon_sym_import] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_using] = ACTIONS(1136), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_cast] = ACTIONS(1136), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_DOLLARtype] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_untyped] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_this] = ACTIONS(1136), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1136), - [anon_sym_AT_COLON] = ACTIONS(1134), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_catch] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_GT_GT_GT] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1134), - [anon_sym_PIPE_PIPE] = ACTIONS(1134), - [anon_sym_EQ_EQ] = ACTIONS(1134), - [anon_sym_BANG_EQ] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_LT_EQ] = ACTIONS(1134), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_EQ] = ACTIONS(1134), - [anon_sym_EQ_GT] = ACTIONS(1134), - [anon_sym_QMARK_QMARK] = ACTIONS(1134), - [anon_sym_EQ] = ACTIONS(1136), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1134), - [anon_sym_null] = ACTIONS(1136), - [anon_sym_macro] = ACTIONS(1136), - [anon_sym_abstract] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_public] = ACTIONS(1136), - [anon_sym_private] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym_overload] = ACTIONS(1136), - [anon_sym_override] = ACTIONS(1136), - [anon_sym_final] = ACTIONS(1136), - [anon_sym_class] = ACTIONS(1136), - [anon_sym_interface] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_function] = ACTIONS(1136), - [anon_sym_var] = ACTIONS(1136), - [aux_sym_integer_token1] = ACTIONS(1136), - [aux_sym_integer_token2] = ACTIONS(1134), - [aux_sym_float_token1] = ACTIONS(1136), - [aux_sym_float_token2] = ACTIONS(1134), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [aux_sym_string_token1] = ACTIONS(1134), - [aux_sym_string_token3] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1134), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [266] = { - [sym_identifier] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_package] = ACTIONS(1152), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_using] = ACTIONS(1152), - [anon_sym_throw] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_cast] = ACTIONS(1152), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_DOLLARtype] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_untyped] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_this] = ACTIONS(1152), - [anon_sym_QMARK] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(1152), - [anon_sym_AT_COLON] = ACTIONS(1150), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_catch] = ACTIONS(1152), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_new] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1150), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_GT_GT_GT] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_CARET] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_EQ_GT] = ACTIONS(1150), - [anon_sym_QMARK_QMARK] = ACTIONS(1150), - [anon_sym_EQ] = ACTIONS(1152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1152), - [anon_sym_macro] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym_inline] = ACTIONS(1152), - [anon_sym_overload] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_final] = ACTIONS(1152), - [anon_sym_class] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1152), - [anon_sym_function] = ACTIONS(1152), - [anon_sym_var] = ACTIONS(1152), - [aux_sym_integer_token1] = ACTIONS(1152), - [aux_sym_integer_token2] = ACTIONS(1150), - [aux_sym_float_token1] = ACTIONS(1152), - [aux_sym_float_token2] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [aux_sym_string_token1] = ACTIONS(1150), - [aux_sym_string_token3] = ACTIONS(1150), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1150), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [267] = { - [sym_identifier] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_package] = ACTIONS(1156), - [anon_sym_DOT] = ACTIONS(1156), - [anon_sym_import] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_using] = ACTIONS(1156), - [anon_sym_throw] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_cast] = ACTIONS(1156), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_DOLLARtype] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_untyped] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_this] = ACTIONS(1156), - [anon_sym_QMARK] = ACTIONS(1156), - [anon_sym_AT] = ACTIONS(1156), - [anon_sym_AT_COLON] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_catch] = ACTIONS(1156), - [anon_sym_else] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_PERCENT] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_GT_GT_GT] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_AMP_AMP] = ACTIONS(1154), - [anon_sym_PIPE_PIPE] = ACTIONS(1154), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_EQ_GT] = ACTIONS(1154), - [anon_sym_QMARK_QMARK] = ACTIONS(1154), - [anon_sym_EQ] = ACTIONS(1156), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_macro] = ACTIONS(1156), - [anon_sym_abstract] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_public] = ACTIONS(1156), - [anon_sym_private] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym_inline] = ACTIONS(1156), - [anon_sym_overload] = ACTIONS(1156), - [anon_sym_override] = ACTIONS(1156), - [anon_sym_final] = ACTIONS(1156), - [anon_sym_class] = ACTIONS(1156), - [anon_sym_interface] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_function] = ACTIONS(1156), - [anon_sym_var] = ACTIONS(1156), - [aux_sym_integer_token1] = ACTIONS(1156), - [aux_sym_integer_token2] = ACTIONS(1154), - [aux_sym_float_token1] = ACTIONS(1156), - [aux_sym_float_token2] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [aux_sym_string_token1] = ACTIONS(1154), - [aux_sym_string_token3] = ACTIONS(1154), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1154), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [268] = { - [sym_identifier] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_package] = ACTIONS(1160), - [anon_sym_DOT] = ACTIONS(1160), - [anon_sym_import] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_using] = ACTIONS(1160), - [anon_sym_throw] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_cast] = ACTIONS(1160), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_DOLLARtype] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_untyped] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_this] = ACTIONS(1160), - [anon_sym_QMARK] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(1160), - [anon_sym_AT_COLON] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1160), - [anon_sym_catch] = ACTIONS(1160), - [anon_sym_else] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_new] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_PERCENT] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1158), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_GT_GT_GT] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_AMP_AMP] = ACTIONS(1158), - [anon_sym_PIPE_PIPE] = ACTIONS(1158), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_EQ_GT] = ACTIONS(1158), - [anon_sym_QMARK_QMARK] = ACTIONS(1158), - [anon_sym_EQ] = ACTIONS(1160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_macro] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym_inline] = ACTIONS(1160), - [anon_sym_overload] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_final] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(1160), - [anon_sym_interface] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_typedef] = ACTIONS(1160), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_var] = ACTIONS(1160), - [aux_sym_integer_token1] = ACTIONS(1160), - [aux_sym_integer_token2] = ACTIONS(1158), - [aux_sym_float_token1] = ACTIONS(1160), - [aux_sym_float_token2] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [aux_sym_string_token1] = ACTIONS(1158), - [aux_sym_string_token3] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1158), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [269] = { - [sym_identifier] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_package] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1164), - [anon_sym_import] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_using] = ACTIONS(1164), - [anon_sym_throw] = ACTIONS(1164), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_cast] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1162), - [anon_sym_DOLLARtype] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_untyped] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_this] = ACTIONS(1164), - [anon_sym_QMARK] = ACTIONS(1164), - [anon_sym_AT] = ACTIONS(1164), - [anon_sym_AT_COLON] = ACTIONS(1162), - [anon_sym_try] = ACTIONS(1164), - [anon_sym_catch] = ACTIONS(1164), - [anon_sym_else] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_new] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [anon_sym_PERCENT] = ACTIONS(1162), - [anon_sym_SLASH] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1162), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_GT_GT_GT] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_CARET] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_EQ_EQ] = ACTIONS(1162), - [anon_sym_BANG_EQ] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_LT_EQ] = ACTIONS(1162), - [anon_sym_GT] = ACTIONS(1164), - [anon_sym_GT_EQ] = ACTIONS(1162), - [anon_sym_EQ_GT] = ACTIONS(1162), - [anon_sym_QMARK_QMARK] = ACTIONS(1162), - [anon_sym_EQ] = ACTIONS(1164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1162), - [anon_sym_null] = ACTIONS(1164), - [anon_sym_macro] = ACTIONS(1164), - [anon_sym_abstract] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_public] = ACTIONS(1164), - [anon_sym_private] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_inline] = ACTIONS(1164), - [anon_sym_overload] = ACTIONS(1164), - [anon_sym_override] = ACTIONS(1164), - [anon_sym_final] = ACTIONS(1164), - [anon_sym_class] = ACTIONS(1164), - [anon_sym_interface] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(1164), - [anon_sym_var] = ACTIONS(1164), - [aux_sym_integer_token1] = ACTIONS(1164), - [aux_sym_integer_token2] = ACTIONS(1162), - [aux_sym_float_token1] = ACTIONS(1164), - [aux_sym_float_token2] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [aux_sym_string_token1] = ACTIONS(1162), - [aux_sym_string_token3] = ACTIONS(1162), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1162), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [270] = { - [sym_identifier] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_package] = ACTIONS(1168), - [anon_sym_DOT] = ACTIONS(1168), - [anon_sym_import] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_using] = ACTIONS(1168), - [anon_sym_throw] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_cast] = ACTIONS(1168), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_DOLLARtype] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_untyped] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_this] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1168), - [anon_sym_AT] = ACTIONS(1168), - [anon_sym_AT_COLON] = ACTIONS(1166), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1166), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_LT_LT] = ACTIONS(1166), - [anon_sym_GT_GT] = ACTIONS(1168), - [anon_sym_GT_GT_GT] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1166), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), - [anon_sym_EQ_EQ] = ACTIONS(1166), - [anon_sym_BANG_EQ] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1166), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1166), - [anon_sym_EQ_GT] = ACTIONS(1166), - [anon_sym_QMARK_QMARK] = ACTIONS(1166), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1166), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_macro] = ACTIONS(1168), - [anon_sym_abstract] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym_overload] = ACTIONS(1168), - [anon_sym_override] = ACTIONS(1168), - [anon_sym_final] = ACTIONS(1168), - [anon_sym_class] = ACTIONS(1168), - [anon_sym_interface] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_function] = ACTIONS(1168), - [anon_sym_var] = ACTIONS(1168), - [aux_sym_integer_token1] = ACTIONS(1168), - [aux_sym_integer_token2] = ACTIONS(1166), - [aux_sym_float_token1] = ACTIONS(1168), - [aux_sym_float_token2] = ACTIONS(1166), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [aux_sym_string_token1] = ACTIONS(1166), - [aux_sym_string_token3] = ACTIONS(1166), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1166), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [271] = { - [sym_identifier] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_package] = ACTIONS(1172), - [anon_sym_DOT] = ACTIONS(1172), - [anon_sym_import] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_using] = ACTIONS(1172), - [anon_sym_throw] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_cast] = ACTIONS(1172), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_DOLLARtype] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_untyped] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_this] = ACTIONS(1172), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(1172), - [anon_sym_AT_COLON] = ACTIONS(1170), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_catch] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_GT_GT_GT] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_AMP_AMP] = ACTIONS(1170), - [anon_sym_PIPE_PIPE] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_EQ_GT] = ACTIONS(1170), - [anon_sym_QMARK_QMARK] = ACTIONS(1170), - [anon_sym_EQ] = ACTIONS(1172), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_macro] = ACTIONS(1172), - [anon_sym_abstract] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_public] = ACTIONS(1172), - [anon_sym_private] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_overload] = ACTIONS(1172), - [anon_sym_override] = ACTIONS(1172), - [anon_sym_final] = ACTIONS(1172), - [anon_sym_class] = ACTIONS(1172), - [anon_sym_interface] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_var] = ACTIONS(1172), - [aux_sym_integer_token1] = ACTIONS(1172), - [aux_sym_integer_token2] = ACTIONS(1170), - [aux_sym_float_token1] = ACTIONS(1172), - [aux_sym_float_token2] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [aux_sym_string_token1] = ACTIONS(1170), - [aux_sym_string_token3] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1170), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [272] = { - [sym_identifier] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_package] = ACTIONS(1176), - [anon_sym_DOT] = ACTIONS(1176), - [anon_sym_import] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_using] = ACTIONS(1176), - [anon_sym_throw] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_cast] = ACTIONS(1176), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_DOLLARtype] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_untyped] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_this] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(1176), - [anon_sym_AT_COLON] = ACTIONS(1174), - [anon_sym_try] = ACTIONS(1176), - [anon_sym_catch] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_new] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PERCENT] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_LT_LT] = ACTIONS(1174), - [anon_sym_GT_GT] = ACTIONS(1176), - [anon_sym_GT_GT_GT] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_CARET] = ACTIONS(1174), - [anon_sym_AMP_AMP] = ACTIONS(1174), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1176), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_EQ_GT] = ACTIONS(1174), - [anon_sym_QMARK_QMARK] = ACTIONS(1174), - [anon_sym_EQ] = ACTIONS(1176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1176), - [anon_sym_macro] = ACTIONS(1176), - [anon_sym_abstract] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_public] = ACTIONS(1176), - [anon_sym_private] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym_overload] = ACTIONS(1176), - [anon_sym_override] = ACTIONS(1176), - [anon_sym_final] = ACTIONS(1176), - [anon_sym_class] = ACTIONS(1176), - [anon_sym_interface] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_function] = ACTIONS(1176), - [anon_sym_var] = ACTIONS(1176), - [aux_sym_integer_token1] = ACTIONS(1176), - [aux_sym_integer_token2] = ACTIONS(1174), - [aux_sym_float_token1] = ACTIONS(1176), - [aux_sym_float_token2] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [aux_sym_string_token1] = ACTIONS(1174), - [aux_sym_string_token3] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1174), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [273] = { - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_package] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1184), - [anon_sym_import] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_cast] = ACTIONS(1184), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_DOLLARtype] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_untyped] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_this] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1184), - [anon_sym_AT_COLON] = ACTIONS(1182), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_catch] = ACTIONS(1184), - [anon_sym_else] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1182), - [anon_sym_BANG_EQ] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_EQ_GT] = ACTIONS(1182), - [anon_sym_QMARK_QMARK] = ACTIONS(1182), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_macro] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_public] = ACTIONS(1184), - [anon_sym_private] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym_overload] = ACTIONS(1184), - [anon_sym_override] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_interface] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_typedef] = ACTIONS(1184), - [anon_sym_function] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [aux_sym_integer_token1] = ACTIONS(1184), - [aux_sym_integer_token2] = ACTIONS(1182), - [aux_sym_float_token1] = ACTIONS(1184), - [aux_sym_float_token2] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [aux_sym_string_token1] = ACTIONS(1182), - [aux_sym_string_token3] = ACTIONS(1182), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1182), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [274] = { - [sym_identifier] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_package] = ACTIONS(1188), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_import] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_using] = ACTIONS(1188), - [anon_sym_throw] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_cast] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_DOLLARtype] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_untyped] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_this] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(1188), - [anon_sym_AT] = ACTIONS(1188), - [anon_sym_AT_COLON] = ACTIONS(1186), - [anon_sym_try] = ACTIONS(1188), - [anon_sym_catch] = ACTIONS(1188), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_new] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_EQ_GT] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1188), - [anon_sym_macro] = ACTIONS(1188), - [anon_sym_abstract] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_public] = ACTIONS(1188), - [anon_sym_private] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym_inline] = ACTIONS(1188), - [anon_sym_overload] = ACTIONS(1188), - [anon_sym_override] = ACTIONS(1188), - [anon_sym_final] = ACTIONS(1188), - [anon_sym_class] = ACTIONS(1188), - [anon_sym_interface] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_typedef] = ACTIONS(1188), - [anon_sym_function] = ACTIONS(1188), - [anon_sym_var] = ACTIONS(1188), - [aux_sym_integer_token1] = ACTIONS(1188), - [aux_sym_integer_token2] = ACTIONS(1186), - [aux_sym_float_token1] = ACTIONS(1188), - [aux_sym_float_token2] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [aux_sym_string_token1] = ACTIONS(1186), - [aux_sym_string_token3] = ACTIONS(1186), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1186), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [275] = { - [sym_identifier] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_package] = ACTIONS(1192), - [anon_sym_DOT] = ACTIONS(1192), - [anon_sym_import] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_using] = ACTIONS(1192), - [anon_sym_throw] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_switch] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_cast] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1190), - [anon_sym_DOLLARtype] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_untyped] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_this] = ACTIONS(1192), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_AT] = ACTIONS(1192), - [anon_sym_AT_COLON] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1192), - [anon_sym_catch] = ACTIONS(1192), - [anon_sym_else] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_do] = ACTIONS(1192), - [anon_sym_new] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_GT_GT_GT] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_EQ_GT] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1192), - [anon_sym_macro] = ACTIONS(1192), - [anon_sym_abstract] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_public] = ACTIONS(1192), - [anon_sym_private] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym_inline] = ACTIONS(1192), - [anon_sym_overload] = ACTIONS(1192), - [anon_sym_override] = ACTIONS(1192), - [anon_sym_final] = ACTIONS(1192), - [anon_sym_class] = ACTIONS(1192), - [anon_sym_interface] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(1192), - [anon_sym_var] = ACTIONS(1192), - [aux_sym_integer_token1] = ACTIONS(1192), - [aux_sym_integer_token2] = ACTIONS(1190), - [aux_sym_float_token1] = ACTIONS(1192), - [aux_sym_float_token2] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [aux_sym_string_token1] = ACTIONS(1190), - [aux_sym_string_token3] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1190), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [276] = { - [sym_identifier] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_package] = ACTIONS(1196), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_throw] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_cast] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_DOLLARtype] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_untyped] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_this] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_AT] = ACTIONS(1196), - [anon_sym_AT_COLON] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1196), - [anon_sym_catch] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_new] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_GT_GT_GT] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_EQ_GT] = ACTIONS(1194), - [anon_sym_QMARK_QMARK] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1196), - [anon_sym_macro] = ACTIONS(1196), - [anon_sym_abstract] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_public] = ACTIONS(1196), - [anon_sym_private] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_overload] = ACTIONS(1196), - [anon_sym_override] = ACTIONS(1196), - [anon_sym_final] = ACTIONS(1196), - [anon_sym_class] = ACTIONS(1196), - [anon_sym_interface] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(1196), - [anon_sym_var] = ACTIONS(1196), - [aux_sym_integer_token1] = ACTIONS(1196), - [aux_sym_integer_token2] = ACTIONS(1194), - [aux_sym_float_token1] = ACTIONS(1196), - [aux_sym_float_token2] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [aux_sym_string_token1] = ACTIONS(1194), - [aux_sym_string_token3] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1194), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [277] = { - [sym_identifier] = ACTIONS(1200), - [anon_sym_POUND] = ACTIONS(1198), - [anon_sym_package] = ACTIONS(1200), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_import] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_using] = ACTIONS(1200), - [anon_sym_throw] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_cast] = ACTIONS(1200), - [anon_sym_COMMA] = ACTIONS(1198), - [anon_sym_DOLLARtype] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_untyped] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_this] = ACTIONS(1200), - [anon_sym_QMARK] = ACTIONS(1200), - [anon_sym_AT] = ACTIONS(1200), - [anon_sym_AT_COLON] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1200), - [anon_sym_catch] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_new] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1200), - [anon_sym_GT_GT_GT] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1198), - [anon_sym_BANG_EQ] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1200), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_EQ_GT] = ACTIONS(1198), - [anon_sym_QMARK_QMARK] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1200), - [anon_sym_macro] = ACTIONS(1200), - [anon_sym_abstract] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_public] = ACTIONS(1200), - [anon_sym_private] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_overload] = ACTIONS(1200), - [anon_sym_override] = ACTIONS(1200), - [anon_sym_final] = ACTIONS(1200), - [anon_sym_class] = ACTIONS(1200), - [anon_sym_interface] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(1200), - [anon_sym_var] = ACTIONS(1200), - [aux_sym_integer_token1] = ACTIONS(1200), - [aux_sym_integer_token2] = ACTIONS(1198), - [aux_sym_float_token1] = ACTIONS(1200), - [aux_sym_float_token2] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1200), - [anon_sym_false] = ACTIONS(1200), - [aux_sym_string_token1] = ACTIONS(1198), - [aux_sym_string_token3] = ACTIONS(1198), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1198), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [278] = { - [sym_identifier] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_package] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_import] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_using] = ACTIONS(1208), - [anon_sym_throw] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_cast] = ACTIONS(1208), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_DOLLARtype] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_untyped] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_this] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_AT] = ACTIONS(1208), - [anon_sym_AT_COLON] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1208), - [anon_sym_catch] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_new] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PERCENT] = ACTIONS(1206), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_LT_LT] = ACTIONS(1206), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_GT_GT_GT] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1206), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ_GT] = ACTIONS(1206), - [anon_sym_QMARK_QMARK] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_null] = ACTIONS(1208), - [anon_sym_macro] = ACTIONS(1208), - [anon_sym_abstract] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_public] = ACTIONS(1208), - [anon_sym_private] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_overload] = ACTIONS(1208), - [anon_sym_override] = ACTIONS(1208), - [anon_sym_final] = ACTIONS(1208), - [anon_sym_class] = ACTIONS(1208), - [anon_sym_interface] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_function] = ACTIONS(1208), - [anon_sym_var] = ACTIONS(1208), - [aux_sym_integer_token1] = ACTIONS(1208), - [aux_sym_integer_token2] = ACTIONS(1206), - [aux_sym_float_token1] = ACTIONS(1208), - [aux_sym_float_token2] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [aux_sym_string_token1] = ACTIONS(1206), - [aux_sym_string_token3] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1206), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [279] = { - [sym_identifier] = ACTIONS(1212), - [anon_sym_POUND] = ACTIONS(1210), - [anon_sym_package] = ACTIONS(1212), - [anon_sym_DOT] = ACTIONS(1212), - [anon_sym_import] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_using] = ACTIONS(1212), - [anon_sym_throw] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1210), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_cast] = ACTIONS(1212), - [anon_sym_COMMA] = ACTIONS(1210), - [anon_sym_DOLLARtype] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_untyped] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_this] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(1212), - [anon_sym_AT] = ACTIONS(1212), - [anon_sym_AT_COLON] = ACTIONS(1210), - [anon_sym_try] = ACTIONS(1212), - [anon_sym_catch] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_new] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PERCENT] = ACTIONS(1210), - [anon_sym_SLASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_LT_LT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(1212), - [anon_sym_GT_GT_GT] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_CARET] = ACTIONS(1210), - [anon_sym_AMP_AMP] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1210), - [anon_sym_EQ_EQ] = ACTIONS(1210), - [anon_sym_BANG_EQ] = ACTIONS(1210), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_LT_EQ] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_GT_EQ] = ACTIONS(1210), - [anon_sym_EQ_GT] = ACTIONS(1210), - [anon_sym_QMARK_QMARK] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), - [anon_sym_null] = ACTIONS(1212), - [anon_sym_macro] = ACTIONS(1212), - [anon_sym_abstract] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_public] = ACTIONS(1212), - [anon_sym_private] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_overload] = ACTIONS(1212), - [anon_sym_override] = ACTIONS(1212), - [anon_sym_final] = ACTIONS(1212), - [anon_sym_class] = ACTIONS(1212), - [anon_sym_interface] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_function] = ACTIONS(1212), - [anon_sym_var] = ACTIONS(1212), - [aux_sym_integer_token1] = ACTIONS(1212), - [aux_sym_integer_token2] = ACTIONS(1210), - [aux_sym_float_token1] = ACTIONS(1212), - [aux_sym_float_token2] = ACTIONS(1210), - [anon_sym_true] = ACTIONS(1212), - [anon_sym_false] = ACTIONS(1212), - [aux_sym_string_token1] = ACTIONS(1210), - [aux_sym_string_token3] = ACTIONS(1210), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1210), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [280] = { - [sym_identifier] = ACTIONS(1216), - [anon_sym_POUND] = ACTIONS(1214), - [anon_sym_package] = ACTIONS(1216), - [anon_sym_DOT] = ACTIONS(1216), - [anon_sym_import] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_using] = ACTIONS(1216), - [anon_sym_throw] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_cast] = ACTIONS(1216), - [anon_sym_COMMA] = ACTIONS(1214), - [anon_sym_DOLLARtype] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_untyped] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_this] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(1216), - [anon_sym_AT] = ACTIONS(1216), - [anon_sym_AT_COLON] = ACTIONS(1214), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_new] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PERCENT] = ACTIONS(1214), - [anon_sym_SLASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1214), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_GT_GT_GT] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_CARET] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_EQ_EQ] = ACTIONS(1214), - [anon_sym_BANG_EQ] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_LT_EQ] = ACTIONS(1214), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_GT_EQ] = ACTIONS(1214), - [anon_sym_EQ_GT] = ACTIONS(1214), - [anon_sym_QMARK_QMARK] = ACTIONS(1214), - [anon_sym_EQ] = ACTIONS(1216), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), - [anon_sym_null] = ACTIONS(1216), - [anon_sym_macro] = ACTIONS(1216), - [anon_sym_abstract] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_public] = ACTIONS(1216), - [anon_sym_private] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_overload] = ACTIONS(1216), - [anon_sym_override] = ACTIONS(1216), - [anon_sym_final] = ACTIONS(1216), - [anon_sym_class] = ACTIONS(1216), - [anon_sym_interface] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_function] = ACTIONS(1216), - [anon_sym_var] = ACTIONS(1216), - [aux_sym_integer_token1] = ACTIONS(1216), - [aux_sym_integer_token2] = ACTIONS(1214), - [aux_sym_float_token1] = ACTIONS(1216), - [aux_sym_float_token2] = ACTIONS(1214), - [anon_sym_true] = ACTIONS(1216), - [anon_sym_false] = ACTIONS(1216), - [aux_sym_string_token1] = ACTIONS(1214), - [aux_sym_string_token3] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1214), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [281] = { - [sym_identifier] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(1218), - [anon_sym_package] = ACTIONS(1220), - [anon_sym_DOT] = ACTIONS(1220), - [anon_sym_import] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_using] = ACTIONS(1220), - [anon_sym_throw] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_cast] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1218), - [anon_sym_DOLLARtype] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_untyped] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_this] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_AT_COLON] = ACTIONS(1218), - [anon_sym_try] = ACTIONS(1220), - [anon_sym_catch] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_new] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PERCENT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1218), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_GT_GT_GT] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(1218), - [anon_sym_PIPE_PIPE] = ACTIONS(1218), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1218), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_GT_EQ] = ACTIONS(1218), - [anon_sym_EQ_GT] = ACTIONS(1218), - [anon_sym_QMARK_QMARK] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1218), - [anon_sym_null] = ACTIONS(1220), - [anon_sym_macro] = ACTIONS(1220), - [anon_sym_abstract] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_overload] = ACTIONS(1220), - [anon_sym_override] = ACTIONS(1220), - [anon_sym_final] = ACTIONS(1220), - [anon_sym_class] = ACTIONS(1220), - [anon_sym_interface] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_function] = ACTIONS(1220), - [anon_sym_var] = ACTIONS(1220), - [aux_sym_integer_token1] = ACTIONS(1220), - [aux_sym_integer_token2] = ACTIONS(1218), - [aux_sym_float_token1] = ACTIONS(1220), - [aux_sym_float_token2] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [aux_sym_string_token1] = ACTIONS(1218), - [aux_sym_string_token3] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1218), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [282] = { - [sym_identifier] = ACTIONS(1224), - [anon_sym_POUND] = ACTIONS(1222), - [anon_sym_package] = ACTIONS(1224), - [anon_sym_DOT] = ACTIONS(1224), - [anon_sym_import] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_using] = ACTIONS(1224), - [anon_sym_throw] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_cast] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_DOLLARtype] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_untyped] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_this] = ACTIONS(1224), - [anon_sym_QMARK] = ACTIONS(1224), - [anon_sym_AT] = ACTIONS(1224), - [anon_sym_AT_COLON] = ACTIONS(1222), - [anon_sym_try] = ACTIONS(1224), - [anon_sym_catch] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_new] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_EQ_GT] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1224), - [anon_sym_macro] = ACTIONS(1224), - [anon_sym_abstract] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_public] = ACTIONS(1224), - [anon_sym_private] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_overload] = ACTIONS(1224), - [anon_sym_override] = ACTIONS(1224), - [anon_sym_final] = ACTIONS(1224), - [anon_sym_class] = ACTIONS(1224), - [anon_sym_interface] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_function] = ACTIONS(1224), - [anon_sym_var] = ACTIONS(1224), - [aux_sym_integer_token1] = ACTIONS(1224), - [aux_sym_integer_token2] = ACTIONS(1222), - [aux_sym_float_token1] = ACTIONS(1224), - [aux_sym_float_token2] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1224), - [anon_sym_false] = ACTIONS(1224), - [aux_sym_string_token1] = ACTIONS(1222), - [aux_sym_string_token3] = ACTIONS(1222), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1222), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [283] = { - [sym_identifier] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(928), - [anon_sym_package] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_import] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_using] = ACTIONS(931), - [anon_sym_throw] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_case] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_cast] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_DOLLARtype] = ACTIONS(928), - [anon_sym_for] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_untyped] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_this] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_AT_COLON] = ACTIONS(928), - [anon_sym_try] = ACTIONS(931), - [anon_sym_catch] = ACTIONS(931), - [anon_sym_else] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(931), - [anon_sym_new] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_EQ_GT] = ACTIONS(928), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(928), - [anon_sym_null] = ACTIONS(931), - [anon_sym_macro] = ACTIONS(931), - [anon_sym_abstract] = ACTIONS(931), - [anon_sym_static] = ACTIONS(931), - [anon_sym_public] = ACTIONS(931), - [anon_sym_private] = ACTIONS(931), - [anon_sym_extern] = ACTIONS(931), - [anon_sym_inline] = ACTIONS(931), - [anon_sym_overload] = ACTIONS(931), - [anon_sym_override] = ACTIONS(931), - [anon_sym_final] = ACTIONS(931), - [anon_sym_class] = ACTIONS(931), - [anon_sym_interface] = ACTIONS(931), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_typedef] = ACTIONS(931), - [anon_sym_function] = ACTIONS(931), - [anon_sym_var] = ACTIONS(931), - [aux_sym_integer_token1] = ACTIONS(931), - [aux_sym_integer_token2] = ACTIONS(928), - [aux_sym_float_token1] = ACTIONS(931), - [aux_sym_float_token2] = ACTIONS(928), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [aux_sym_string_token1] = ACTIONS(928), - [aux_sym_string_token3] = ACTIONS(928), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(928), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [284] = { - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1046), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1046), + [255] = { + [sym_identifier] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_package] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1932), + [anon_sym_import] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_using] = ACTIONS(1932), + [anon_sym_throw] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_cast] = ACTIONS(1932), + [anon_sym_COMMA] = ACTIONS(1930), + [anon_sym_DOLLARtype] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_untyped] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_this] = ACTIONS(1932), + [anon_sym_QMARK] = ACTIONS(1932), + [anon_sym_AT] = ACTIONS(1932), + [anon_sym_AT_COLON] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1932), + [anon_sym_catch] = ACTIONS(1932), + [anon_sym_else] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PERCENT] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1932), + [anon_sym_GT_GT_GT] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [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(1932), + [anon_sym_LT_EQ] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1932), + [anon_sym_GT_EQ] = ACTIONS(1930), + [anon_sym_EQ_GT] = ACTIONS(1930), + [anon_sym_QMARK_QMARK] = ACTIONS(1930), + [anon_sym_EQ] = ACTIONS(1932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), + [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_enum] = 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(1930), + [aux_sym_float_token1] = ACTIONS(1932), + [aux_sym_float_token2] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), + [aux_sym_string_token1] = ACTIONS(1930), + [aux_sym_string_token3] = ACTIONS(1930), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1930), + [sym__closing_brace_marker] = ACTIONS(1930), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [285] = { - [sym__rhs_expression] = STATE(926), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), + [256] = { + [sym__rhs_expression] = STATE(1074), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(926), - [sym_operator] = STATE(1729), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1355), - [sym_integer] = STATE(1355), - [sym_float] = STATE(1355), - [sym_bool] = STATE(1355), - [sym_string] = STATE(1308), - [sym_null] = STATE(1355), - [sym_array] = STATE(1355), - [sym_map] = STATE(1355), - [sym_object] = STATE(1355), - [sym_pair] = STATE(1355), - [sym_identifier] = ACTIONS(1532), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1074), + [sym_operator] = STATE(1754), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1833), + [sym_integer] = STATE(166), + [sym_float] = STATE(1833), + [sym_bool] = STATE(1833), + [sym_string] = STATE(2002), + [sym_null] = STATE(1833), + [sym_array] = STATE(1833), + [sym_map] = STATE(1833), + [sym_object] = STATE(1833), + [sym_pair] = STATE(1833), + [sym_identifier] = ACTIONS(2030), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(918), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(920), - [anon_sym_untyped] = ACTIONS(922), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(2102), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_untyped] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(2038), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -41474,781 +40592,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [286] = { - [sym_identifier] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1098), - [anon_sym_package] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_using] = ACTIONS(1100), - [anon_sym_throw] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_cast] = ACTIONS(1100), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_DOLLARtype] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_untyped] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_this] = ACTIONS(1100), - [anon_sym_QMARK] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), - [anon_sym_AT_COLON] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1100), - [anon_sym_catch] = ACTIONS(1100), - [anon_sym_else] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_new] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_GT_GT_GT] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(1098), - [anon_sym_QMARK_QMARK] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1100), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1100), - [anon_sym_macro] = ACTIONS(1100), - [anon_sym_abstract] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_public] = ACTIONS(1100), - [anon_sym_private] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_overload] = ACTIONS(1100), - [anon_sym_override] = ACTIONS(1100), - [anon_sym_final] = ACTIONS(1100), - [anon_sym_class] = ACTIONS(1100), - [anon_sym_interface] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1100), - [anon_sym_var] = ACTIONS(1100), - [aux_sym_integer_token1] = ACTIONS(1100), - [aux_sym_integer_token2] = ACTIONS(1098), - [aux_sym_float_token1] = ACTIONS(1100), - [aux_sym_float_token2] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [aux_sym_string_token1] = ACTIONS(1098), - [aux_sym_string_token3] = ACTIONS(1098), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1098), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [287] = { - [sym_identifier] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_DOT] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_throw] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_cast] = ACTIONS(1104), - [anon_sym_COMMA] = ACTIONS(1102), - [anon_sym_DOLLARtype] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_untyped] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_this] = ACTIONS(1104), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_AT] = ACTIONS(1104), - [anon_sym_AT_COLON] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1104), - [anon_sym_catch] = ACTIONS(1104), - [anon_sym_else] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_new] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PERCENT] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_GT_GT_GT] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_EQ_GT] = ACTIONS(1102), - [anon_sym_QMARK_QMARK] = ACTIONS(1102), - [anon_sym_EQ] = ACTIONS(1104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1104), - [anon_sym_macro] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_public] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_overload] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_interface] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_var] = ACTIONS(1104), - [aux_sym_integer_token1] = ACTIONS(1104), - [aux_sym_integer_token2] = ACTIONS(1102), - [aux_sym_float_token1] = ACTIONS(1104), - [aux_sym_float_token2] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1104), - [anon_sym_false] = ACTIONS(1104), - [aux_sym_string_token1] = ACTIONS(1102), - [aux_sym_string_token3] = ACTIONS(1102), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1102), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [288] = { - [sym_identifier] = ACTIONS(700), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_using] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_case] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_for] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_this] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_new] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(700), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_typedef] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_var] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(700), - [aux_sym_integer_token2] = ACTIONS(698), - [aux_sym_float_token1] = ACTIONS(700), - [aux_sym_float_token2] = ACTIONS(698), - [anon_sym_true] = ACTIONS(700), - [anon_sym_false] = ACTIONS(700), - [aux_sym_string_token1] = ACTIONS(698), - [aux_sym_string_token3] = ACTIONS(698), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(698), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [289] = { - [sym_identifier] = ACTIONS(700), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_using] = ACTIONS(700), - [anon_sym_throw] = ACTIONS(700), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_case] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_for] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_this] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_try] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_new] = ACTIONS(700), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(700), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_interface] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_typedef] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_var] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(700), - [aux_sym_integer_token2] = ACTIONS(698), - [aux_sym_float_token1] = ACTIONS(700), - [aux_sym_float_token2] = ACTIONS(698), - [anon_sym_true] = ACTIONS(700), - [anon_sym_false] = ACTIONS(700), - [aux_sym_string_token1] = ACTIONS(698), - [aux_sym_string_token3] = ACTIONS(698), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(698), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [290] = { - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_package] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1148), - [anon_sym_import] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_using] = ACTIONS(1148), - [anon_sym_throw] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_cast] = ACTIONS(1148), - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_DOLLARtype] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_untyped] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_this] = ACTIONS(1148), - [anon_sym_QMARK] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1148), - [anon_sym_AT_COLON] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_catch] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1146), - [anon_sym_PERCENT] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_GT_GT_GT] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1146), - [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1146), - [anon_sym_QMARK_QMARK] = ACTIONS(1146), - [anon_sym_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_macro] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym_overload] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_interface] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1148), - [anon_sym_function] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [aux_sym_integer_token1] = ACTIONS(1148), - [aux_sym_integer_token2] = ACTIONS(1146), - [aux_sym_float_token1] = ACTIONS(1148), - [aux_sym_float_token2] = ACTIONS(1146), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym_string_token1] = ACTIONS(1146), - [aux_sym_string_token3] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1146), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [291] = { - [sym_identifier] = ACTIONS(836), - [anon_sym_POUND] = ACTIONS(838), - [anon_sym_package] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_import] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(838), - [anon_sym_using] = ACTIONS(836), - [anon_sym_throw] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_case] = ACTIONS(836), - [anon_sym_default] = ACTIONS(836), - [anon_sym_cast] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_DOLLARtype] = ACTIONS(838), - [anon_sym_for] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_untyped] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_this] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_AT_COLON] = ACTIONS(838), - [anon_sym_try] = ACTIONS(836), - [anon_sym_catch] = ACTIONS(836), - [anon_sym_else] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_do] = ACTIONS(836), - [anon_sym_new] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(838), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_PERCENT] = ACTIONS(838), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(838), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_GT_GT_GT] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(838), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [anon_sym_EQ_EQ] = ACTIONS(838), - [anon_sym_BANG_EQ] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(838), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_EQ] = ACTIONS(838), - [anon_sym_EQ_GT] = ACTIONS(838), - [anon_sym_QMARK_QMARK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(838), - [anon_sym_null] = ACTIONS(836), - [anon_sym_macro] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(836), - [anon_sym_static] = ACTIONS(836), - [anon_sym_public] = ACTIONS(836), - [anon_sym_private] = ACTIONS(836), - [anon_sym_extern] = ACTIONS(836), - [anon_sym_inline] = ACTIONS(836), - [anon_sym_overload] = ACTIONS(836), - [anon_sym_override] = ACTIONS(836), - [anon_sym_final] = ACTIONS(836), - [anon_sym_class] = ACTIONS(836), - [anon_sym_interface] = ACTIONS(836), - [anon_sym_enum] = ACTIONS(836), - [anon_sym_typedef] = ACTIONS(836), - [anon_sym_function] = ACTIONS(836), - [anon_sym_var] = ACTIONS(836), - [aux_sym_integer_token1] = ACTIONS(836), - [aux_sym_integer_token2] = ACTIONS(838), - [aux_sym_float_token1] = ACTIONS(836), - [aux_sym_float_token2] = ACTIONS(838), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_string_token1] = ACTIONS(838), - [aux_sym_string_token3] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(838), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [292] = { - [sym_identifier] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(924), - [anon_sym_package] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_using] = ACTIONS(926), - [anon_sym_throw] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_cast] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_DOLLARtype] = ACTIONS(924), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_untyped] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_this] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym_AT_COLON] = ACTIONS(924), - [anon_sym_try] = ACTIONS(926), - [anon_sym_catch] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_new] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(926), - [anon_sym_GT_GT_GT] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(926), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_QMARK] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(924), - [anon_sym_null] = ACTIONS(926), - [anon_sym_macro] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_static] = ACTIONS(926), - [anon_sym_public] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_overload] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_interface] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_function] = ACTIONS(926), - [anon_sym_var] = ACTIONS(926), - [aux_sym_integer_token1] = ACTIONS(926), - [aux_sym_integer_token2] = ACTIONS(924), - [aux_sym_float_token1] = ACTIONS(926), - [aux_sym_float_token2] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [aux_sym_string_token1] = ACTIONS(924), - [aux_sym_string_token3] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(924), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [293] = { - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1046), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1046), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [294] = { - [sym__rhs_expression] = STATE(925), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(925), - [sym_operator] = STATE(1973), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1355), - [sym_integer] = STATE(1355), - [sym_float] = STATE(1355), - [sym_bool] = STATE(1355), - [sym_string] = STATE(1308), - [sym_null] = STATE(1355), - [sym_array] = STATE(1355), - [sym_map] = STATE(1355), - [sym_object] = STATE(1355), - [sym_pair] = STATE(1355), - [sym_identifier] = ACTIONS(1532), + [257] = { + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3432), + [sym_runtime_type_check_expression] = STATE(3432), + [sym_switch_expression] = STATE(3432), + [sym_cast_expression] = STATE(3432), + [sym_type_trace_expression] = STATE(3432), + [sym__parenthesized_expression] = STATE(2554), + [sym_range_expression] = STATE(3432), + [sym_subscript_expression] = STATE(3432), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1534), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_untyped] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_untyped] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -42275,247 +40682,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1050), - [anon_sym_package] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_import] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_using] = ACTIONS(1054), - [anon_sym_throw] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_case] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_cast] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_DOLLARtype] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_this] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1054), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_AT_COLON] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PERCENT] = ACTIONS(1050), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1050), - [anon_sym_PIPE_PIPE] = ACTIONS(1050), - [anon_sym_EQ_EQ] = ACTIONS(1050), - [anon_sym_BANG_EQ] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1050), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1050), - [anon_sym_EQ_GT] = ACTIONS(1050), - [anon_sym_QMARK_QMARK] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_macro] = ACTIONS(1054), - [anon_sym_abstract] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_public] = ACTIONS(1054), - [anon_sym_private] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_overload] = ACTIONS(1054), - [anon_sym_override] = ACTIONS(1054), - [anon_sym_final] = ACTIONS(1054), - [anon_sym_class] = ACTIONS(1054), - [anon_sym_interface] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(1054), - [anon_sym_var] = ACTIONS(1054), - [aux_sym_integer_token1] = ACTIONS(1054), - [aux_sym_integer_token2] = ACTIONS(1050), - [aux_sym_float_token1] = ACTIONS(1054), - [aux_sym_float_token2] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym_string_token1] = ACTIONS(1050), - [aux_sym_string_token3] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1050), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(1116), - [anon_sym_POUND] = ACTIONS(1114), - [anon_sym_package] = ACTIONS(1116), - [anon_sym_DOT] = ACTIONS(1116), - [anon_sym_import] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_using] = ACTIONS(1116), - [anon_sym_throw] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_cast] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_DOLLARtype] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_untyped] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_this] = ACTIONS(1116), - [anon_sym_QMARK] = ACTIONS(1116), - [anon_sym_AT] = ACTIONS(1116), - [anon_sym_AT_COLON] = ACTIONS(1114), - [anon_sym_try] = ACTIONS(1116), - [anon_sym_catch] = ACTIONS(1116), - [anon_sym_else] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1116), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PERCENT] = ACTIONS(1114), - [anon_sym_SLASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_LT_LT] = ACTIONS(1114), - [anon_sym_GT_GT] = ACTIONS(1116), - [anon_sym_GT_GT_GT] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1116), - [anon_sym_CARET] = ACTIONS(1114), - [anon_sym_AMP_AMP] = ACTIONS(1114), - [anon_sym_PIPE_PIPE] = ACTIONS(1114), - [anon_sym_EQ_EQ] = ACTIONS(1114), - [anon_sym_BANG_EQ] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1116), - [anon_sym_LT_EQ] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1116), - [anon_sym_GT_EQ] = ACTIONS(1114), - [anon_sym_EQ_GT] = ACTIONS(1114), - [anon_sym_QMARK_QMARK] = ACTIONS(1114), - [anon_sym_EQ] = ACTIONS(1116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), - [anon_sym_null] = ACTIONS(1116), - [anon_sym_macro] = ACTIONS(1116), - [anon_sym_abstract] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_public] = ACTIONS(1116), - [anon_sym_private] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_overload] = ACTIONS(1116), - [anon_sym_override] = ACTIONS(1116), - [anon_sym_final] = ACTIONS(1116), - [anon_sym_class] = ACTIONS(1116), - [anon_sym_interface] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_function] = ACTIONS(1116), - [anon_sym_var] = ACTIONS(1116), - [aux_sym_integer_token1] = ACTIONS(1116), - [aux_sym_integer_token2] = ACTIONS(1114), - [aux_sym_float_token1] = ACTIONS(1116), - [aux_sym_float_token2] = ACTIONS(1114), - [anon_sym_true] = ACTIONS(1116), - [anon_sym_false] = ACTIONS(1116), - [aux_sym_string_token1] = ACTIONS(1114), - [aux_sym_string_token3] = ACTIONS(1114), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1114), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [297] = { - [sym__rhs_expression] = STATE(1042), - [sym__unaryExpression] = STATE(2945), - [sym_runtime_type_check_expression] = STATE(2945), - [sym_switch_expression] = STATE(2945), - [sym_cast_expression] = STATE(2945), - [sym_type_trace_expression] = STATE(2945), - [sym__parenthesized_expression] = STATE(2772), - [sym_subscript_expression] = STATE(2945), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1042), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [258] = { + [sym__rhs_expression] = STATE(1291), + [sym__unaryExpression] = STATE(3534), + [sym_runtime_type_check_expression] = STATE(3534), + [sym_switch_expression] = STATE(3534), + [sym_cast_expression] = STATE(3534), + [sym_type_trace_expression] = STATE(3534), + [sym__parenthesized_expression] = STATE(2789), + [sym_range_expression] = STATE(3534), + [sym_subscript_expression] = STATE(3534), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1291), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_untyped] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_untyped] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [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), @@ -42542,66 +40772,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [298] = { - [sym__rhs_expression] = STATE(1152), - [sym__unaryExpression] = STATE(3278), - [sym_runtime_type_check_expression] = STATE(3278), - [sym_switch_expression] = STATE(3278), - [sym_cast_expression] = STATE(3278), - [sym_type_trace_expression] = STATE(3278), - [sym__parenthesized_expression] = STATE(3006), - [sym_subscript_expression] = STATE(3278), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1152), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [259] = { + [sym__rhs_expression] = STATE(1294), + [sym__unaryExpression] = STATE(3602), + [sym_runtime_type_check_expression] = STATE(3602), + [sym_switch_expression] = STATE(3602), + [sym_cast_expression] = STATE(3602), + [sym_type_trace_expression] = STATE(3602), + [sym__parenthesized_expression] = STATE(2806), + [sym_range_expression] = STATE(3602), + [sym_subscript_expression] = STATE(3602), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1294), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_untyped] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_untyped] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -42643,57 +40874,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [299] = { - [sym__rhs_expression] = STATE(122), - [sym__unaryExpression] = STATE(443), - [sym_runtime_type_check_expression] = STATE(443), - [sym_switch_expression] = STATE(443), - [sym_cast_expression] = STATE(443), - [sym_type_trace_expression] = STATE(443), - [sym__parenthesized_expression] = STATE(444), - [sym_subscript_expression] = STATE(443), - [sym_member_expression] = STATE(284), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(122), - [sym_operator] = STATE(1736), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(486), - [sym_integer] = STATE(486), - [sym_float] = STATE(486), - [sym_bool] = STATE(486), - [sym_string] = STATE(366), - [sym_null] = STATE(486), - [sym_array] = STATE(486), - [sym_map] = STATE(486), - [sym_object] = STATE(486), - [sym_pair] = STATE(486), - [sym_identifier] = ACTIONS(1552), + [260] = { + [sym__rhs_expression] = STATE(1300), + [sym__unaryExpression] = STATE(3459), + [sym_runtime_type_check_expression] = STATE(3459), + [sym_switch_expression] = STATE(3459), + [sym_cast_expression] = STATE(3459), + [sym_type_trace_expression] = STATE(3459), + [sym__parenthesized_expression] = STATE(2614), + [sym_range_expression] = STATE(3459), + [sym_subscript_expression] = STATE(3459), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1300), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(1556), - [anon_sym_DOLLARtype] = ACTIONS(904), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_untyped] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(820), - [anon_sym_new] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_untyped] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [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), @@ -42720,68 +40952,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [300] = { - [sym__rhs_expression] = STATE(998), - [sym__unaryExpression] = STATE(1781), - [sym_runtime_type_check_expression] = STATE(1781), - [sym_switch_expression] = STATE(1781), - [sym_cast_expression] = STATE(1781), - [sym_type_trace_expression] = STATE(1781), - [sym__parenthesized_expression] = STATE(1606), - [sym_subscript_expression] = STATE(1781), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(998), - [sym_operator] = STATE(1904), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1846), - [sym_integer] = STATE(1846), - [sym_float] = STATE(1846), - [sym_bool] = STATE(1846), - [sym_string] = STATE(1654), - [sym_null] = STATE(1846), - [sym_array] = STATE(1846), - [sym_map] = STATE(1846), - [sym_object] = STATE(1846), - [sym_pair] = STATE(1846), - [sym_identifier] = ACTIONS(1564), + [261] = { + [sym__rhs_expression] = STATE(1119), + [sym__unaryExpression] = STATE(3519), + [sym_runtime_type_check_expression] = STATE(3519), + [sym_switch_expression] = STATE(3519), + [sym_cast_expression] = STATE(3519), + [sym_type_trace_expression] = STATE(3519), + [sym__parenthesized_expression] = STATE(2542), + [sym_range_expression] = STATE(3519), + [sym_subscript_expression] = STATE(3519), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1119), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_untyped] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_untyped] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(1574), + [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -42821,57 +41054,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [301] = { - [sym__rhs_expression] = STATE(1201), - [sym__unaryExpression] = STATE(3299), - [sym_runtime_type_check_expression] = STATE(3299), - [sym_switch_expression] = STATE(3299), - [sym_cast_expression] = STATE(3299), - [sym_type_trace_expression] = STATE(3299), - [sym__parenthesized_expression] = STATE(3024), - [sym_subscript_expression] = STATE(3299), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2418), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1201), - [sym_operator] = STATE(1954), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1855), - [sym_integer] = STATE(1855), - [sym_float] = STATE(1855), - [sym_bool] = STATE(1855), - [sym_string] = STATE(1655), - [sym_null] = STATE(1855), - [sym_array] = STATE(1855), - [sym_map] = STATE(1855), - [sym_object] = STATE(1855), - [sym_pair] = STATE(1855), - [sym_identifier] = ACTIONS(1576), + [262] = { + [sym__rhs_expression] = STATE(1127), + [sym__unaryExpression] = STATE(3427), + [sym_runtime_type_check_expression] = STATE(3427), + [sym_switch_expression] = STATE(3427), + [sym_cast_expression] = STATE(3427), + [sym_type_trace_expression] = STATE(3427), + [sym__parenthesized_expression] = STATE(2567), + [sym_range_expression] = STATE(3427), + [sym_subscript_expression] = STATE(3427), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1127), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1578), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_untyped] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_untyped] = ACTIONS(2140), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [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), @@ -42898,69 +41132,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [302] = { - [sym__rhs_expression] = STATE(992), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(1539), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(992), - [sym_operator] = STATE(1938), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1901), - [sym_integer] = STATE(1901), - [sym_float] = STATE(1901), - [sym_bool] = STATE(1901), - [sym_string] = STATE(1655), - [sym_null] = STATE(1901), - [sym_array] = STATE(1901), - [sym_map] = STATE(1901), - [sym_object] = STATE(1901), - [sym_pair] = STATE(1901), - [sym_identifier] = ACTIONS(1586), + [263] = { + [sym__rhs_expression] = STATE(1128), + [sym__unaryExpression] = STATE(3487), + [sym_runtime_type_check_expression] = STATE(3487), + [sym_switch_expression] = STATE(3487), + [sym_cast_expression] = STATE(3487), + [sym_type_trace_expression] = STATE(3487), + [sym__parenthesized_expression] = STATE(2568), + [sym_range_expression] = STATE(3487), + [sym_subscript_expression] = STATE(3487), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1128), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1588), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_untyped] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_untyped] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [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), @@ -42987,69 +41222,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [303] = { - [sym__rhs_expression] = STATE(1037), - [sym__unaryExpression] = STATE(288), - [sym_runtime_type_check_expression] = STATE(288), - [sym_switch_expression] = STATE(288), - [sym_cast_expression] = STATE(288), - [sym_type_trace_expression] = STATE(288), - [sym__parenthesized_expression] = STATE(289), - [sym_subscript_expression] = STATE(288), - [sym_member_expression] = STATE(284), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(1037), - [sym_operator] = STATE(1874), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1302), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(1594), + [264] = { + [sym__rhs_expression] = STATE(1136), + [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(2679), + [sym_range_expression] = STATE(3592), + [sym_subscript_expression] = STATE(3592), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1136), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(902), - [anon_sym_DOLLARtype] = ACTIONS(904), - [anon_sym_return] = ACTIONS(906), - [anon_sym_untyped] = ACTIONS(908), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(820), - [anon_sym_new] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_untyped] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [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), @@ -43076,69 +41312,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [304] = { - [sym__rhs_expression] = STATE(1097), - [sym__unaryExpression] = STATE(1422), - [sym_runtime_type_check_expression] = STATE(1422), - [sym_switch_expression] = STATE(1422), - [sym_cast_expression] = STATE(1422), - [sym_type_trace_expression] = STATE(1422), - [sym__parenthesized_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1422), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(1097), - [sym_operator] = STATE(1965), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1878), - [sym_integer] = STATE(1878), - [sym_float] = STATE(1878), - [sym_bool] = STATE(1878), - [sym_string] = STATE(1585), - [sym_null] = STATE(1878), - [sym_array] = STATE(1878), - [sym_map] = STATE(1878), - [sym_object] = STATE(1878), - [sym_pair] = STATE(1878), - [sym_identifier] = ACTIONS(1596), + [265] = { + [sym_identifier] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_package] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_import] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_using] = ACTIONS(1908), + [anon_sym_throw] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_cast] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_DOLLARtype] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_untyped] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_this] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_AT_COLON] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1908), + [anon_sym_catch] = ACTIONS(1908), + [anon_sym_else] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_new] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_PERCENT] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1908), + [anon_sym_GT_GT_GT] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [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(1908), + [anon_sym_LT_EQ] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1908), + [anon_sym_GT_EQ] = ACTIONS(1906), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_QMARK] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1906), + [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_enum] = 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(1906), + [aux_sym_float_token1] = ACTIONS(1908), + [aux_sym_float_token2] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [aux_sym_string_token1] = ACTIONS(1906), + [aux_sym_string_token3] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1906), + [sym__closing_brace_marker] = ACTIONS(1906), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [266] = { + [sym__rhs_expression] = STATE(1141), + [sym__unaryExpression] = STATE(3481), + [sym_runtime_type_check_expression] = STATE(3481), + [sym_switch_expression] = STATE(3481), + [sym_cast_expression] = STATE(3481), + [sym_type_trace_expression] = STATE(3481), + [sym__parenthesized_expression] = STATE(2704), + [sym_range_expression] = STATE(3481), + [sym_subscript_expression] = STATE(3481), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1141), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1598), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_untyped] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_this] = ACTIONS(1604), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_untyped] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -43165,69 +41492,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [305] = { - [sym__rhs_expression] = STATE(1010), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1010), - [sym_operator] = STATE(1747), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1748), - [sym_integer] = STATE(1748), - [sym_float] = STATE(1748), - [sym_bool] = STATE(1748), - [sym_string] = STATE(1737), - [sym_null] = STATE(1748), - [sym_array] = STATE(1748), - [sym_map] = STATE(1748), - [sym_object] = STATE(1748), - [sym_pair] = STATE(1748), - [sym_identifier] = ACTIONS(1606), + [267] = { + [sym__rhs_expression] = STATE(1134), + [sym__unaryExpression] = STATE(3404), + [sym_runtime_type_check_expression] = STATE(3404), + [sym_switch_expression] = STATE(3404), + [sym_cast_expression] = STATE(3404), + [sym_type_trace_expression] = STATE(3404), + [sym__parenthesized_expression] = STATE(2580), + [sym_range_expression] = STATE(3404), + [sym_subscript_expression] = STATE(3404), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1134), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1608), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1610), - [anon_sym_untyped] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(1614), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_untyped] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [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), @@ -43254,69 +41582,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [306] = { - [sym__rhs_expression] = STATE(1014), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1014), - [sym_operator] = STATE(1750), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1748), - [sym_integer] = STATE(1748), - [sym_float] = STATE(1748), - [sym_bool] = STATE(1748), - [sym_string] = STATE(1737), - [sym_null] = STATE(1748), - [sym_array] = STATE(1748), - [sym_map] = STATE(1748), - [sym_object] = STATE(1748), - [sym_pair] = STATE(1748), - [sym_identifier] = ACTIONS(1606), + [268] = { + [sym__rhs_expression] = STATE(1146), + [sym__unaryExpression] = STATE(3616), + [sym_runtime_type_check_expression] = STATE(3616), + [sym_switch_expression] = STATE(3616), + [sym_cast_expression] = STATE(3616), + [sym_type_trace_expression] = STATE(3616), + [sym__parenthesized_expression] = STATE(2715), + [sym_range_expression] = STATE(3616), + [sym_subscript_expression] = STATE(3616), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1146), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1616), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1618), - [anon_sym_untyped] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(1614), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_untyped] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -43343,66 +41672,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [307] = { - [sym__rhs_expression] = STATE(1187), - [sym__unaryExpression] = STATE(3177), - [sym_runtime_type_check_expression] = STATE(3177), - [sym_switch_expression] = STATE(3177), - [sym_cast_expression] = STATE(3177), - [sym_type_trace_expression] = STATE(3177), - [sym__parenthesized_expression] = STATE(2932), - [sym_subscript_expression] = STATE(3177), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1187), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [269] = { + [sym__rhs_expression] = STATE(1152), + [sym__unaryExpression] = STATE(3366), + [sym_runtime_type_check_expression] = STATE(3366), + [sym_switch_expression] = STATE(3366), + [sym_cast_expression] = STATE(3366), + [sym_type_trace_expression] = STATE(3366), + [sym__parenthesized_expression] = STATE(2729), + [sym_range_expression] = STATE(3366), + [sym_subscript_expression] = STATE(3366), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1152), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_untyped] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_untyped] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -43444,57 +41774,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [308] = { - [sym__rhs_expression] = STATE(1053), - [sym__unaryExpression] = STATE(803), - [sym_runtime_type_check_expression] = STATE(803), - [sym_switch_expression] = STATE(803), - [sym_cast_expression] = STATE(803), - [sym_type_trace_expression] = STATE(803), - [sym__parenthesized_expression] = STATE(620), - [sym_subscript_expression] = STATE(803), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1053), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [270] = { + [sym__rhs_expression] = STATE(1147), + [sym__unaryExpression] = STATE(3368), + [sym_runtime_type_check_expression] = STATE(3368), + [sym_switch_expression] = STATE(3368), + [sym_cast_expression] = STATE(3368), + [sym_type_trace_expression] = STATE(3368), + [sym__parenthesized_expression] = STATE(2600), + [sym_range_expression] = STATE(3368), + [sym_subscript_expression] = STATE(3368), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1147), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_untyped] = ACTIONS(1630), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2180), + [anon_sym_untyped] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [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), @@ -43521,158 +41852,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [309] = { - [sym__rhs_expression] = STATE(984), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(1539), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(984), - [sym_operator] = STATE(1744), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1901), - [sym_integer] = STATE(1901), - [sym_float] = STATE(1901), - [sym_bool] = STATE(1901), - [sym_string] = STATE(1655), - [sym_null] = STATE(1901), - [sym_array] = STATE(1901), - [sym_map] = STATE(1901), - [sym_object] = STATE(1901), - [sym_pair] = STATE(1901), - [sym_identifier] = ACTIONS(1586), + [271] = { + [sym__rhs_expression] = STATE(1159), + [sym__unaryExpression] = STATE(3497), + [sym_runtime_type_check_expression] = STATE(3497), + [sym_switch_expression] = STATE(3497), + [sym_cast_expression] = STATE(3497), + [sym_type_trace_expression] = STATE(3497), + [sym__parenthesized_expression] = STATE(2761), + [sym_range_expression] = STATE(3497), + [sym_subscript_expression] = STATE(3497), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1159), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1632), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_untyped] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(780), - [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(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [310] = { - [sym__rhs_expression] = STATE(107), - [sym__unaryExpression] = STATE(288), - [sym_runtime_type_check_expression] = STATE(288), - [sym_switch_expression] = STATE(288), - [sym_cast_expression] = STATE(288), - [sym_type_trace_expression] = STATE(288), - [sym__parenthesized_expression] = STATE(289), - [sym_subscript_expression] = STATE(288), - [sym_member_expression] = STATE(284), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(107), - [sym_operator] = STATE(1912), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(560), - [sym_integer] = STATE(560), - [sym_float] = STATE(560), - [sym_bool] = STATE(560), - [sym_string] = STATE(366), - [sym_null] = STATE(560), - [sym_array] = STATE(560), - [sym_map] = STATE(560), - [sym_object] = STATE(560), - [sym_pair] = STATE(560), - [sym_identifier] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(1640), - [anon_sym_DOLLARtype] = ACTIONS(904), - [anon_sym_return] = ACTIONS(1642), - [anon_sym_untyped] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(674), - [anon_sym_new] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_untyped] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [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), @@ -43699,69 +41942,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [311] = { - [sym__rhs_expression] = STATE(948), - [sym__unaryExpression] = STATE(1422), - [sym_runtime_type_check_expression] = STATE(1422), - [sym_switch_expression] = STATE(1422), - [sym_cast_expression] = STATE(1422), - [sym_type_trace_expression] = STATE(1422), - [sym__parenthesized_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1422), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(948), - [sym_operator] = STATE(1844), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1520), - [sym_integer] = STATE(1520), - [sym_float] = STATE(1520), - [sym_bool] = STATE(1520), - [sym_string] = STATE(1466), - [sym_null] = STATE(1520), - [sym_array] = STATE(1520), - [sym_map] = STATE(1520), - [sym_object] = STATE(1520), - [sym_pair] = STATE(1520), - [sym_identifier] = ACTIONS(1514), + [272] = { + [sym__rhs_expression] = STATE(1161), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(3535), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2771), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1161), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1646), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_untyped] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_untyped] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [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), @@ -43788,69 +42032,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [312] = { - [sym__rhs_expression] = STATE(936), - [sym__unaryExpression] = STATE(443), - [sym_runtime_type_check_expression] = STATE(443), - [sym_switch_expression] = STATE(443), - [sym_cast_expression] = STATE(443), - [sym_type_trace_expression] = STATE(443), - [sym__parenthesized_expression] = STATE(444), - [sym_subscript_expression] = STATE(443), - [sym_member_expression] = STATE(284), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(936), - [sym_operator] = STATE(1863), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1302), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(1594), + [273] = { + [sym__rhs_expression] = STATE(1165), + [sym__unaryExpression] = STATE(3595), + [sym_runtime_type_check_expression] = STATE(3595), + [sym_switch_expression] = STATE(3595), + [sym_cast_expression] = STATE(3595), + [sym_type_trace_expression] = STATE(3595), + [sym__parenthesized_expression] = STATE(2791), + [sym_range_expression] = STATE(3595), + [sym_subscript_expression] = STATE(3595), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1165), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(1652), - [anon_sym_DOLLARtype] = ACTIONS(904), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_untyped] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(820), - [anon_sym_new] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_untyped] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [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), @@ -43877,68 +42122,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [313] = { - [sym__rhs_expression] = STATE(990), - [sym__unaryExpression] = STATE(1781), - [sym_runtime_type_check_expression] = STATE(1781), - [sym_switch_expression] = STATE(1781), - [sym_cast_expression] = STATE(1781), - [sym_type_trace_expression] = STATE(1781), - [sym__parenthesized_expression] = STATE(1606), - [sym_subscript_expression] = STATE(1781), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(990), - [sym_operator] = STATE(1893), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1846), - [sym_integer] = STATE(1846), - [sym_float] = STATE(1846), - [sym_bool] = STATE(1846), - [sym_string] = STATE(1654), - [sym_null] = STATE(1846), - [sym_array] = STATE(1846), - [sym_map] = STATE(1846), - [sym_object] = STATE(1846), - [sym_pair] = STATE(1846), - [sym_identifier] = ACTIONS(1564), + [274] = { + [sym__rhs_expression] = STATE(1168), + [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(2807), + [sym_range_expression] = STATE(3639), + [sym_subscript_expression] = STATE(3639), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1168), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_untyped] = ACTIONS(1662), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_untyped] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(1574), + [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -43978,54 +42224,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [314] = { - [sym__rhs_expression] = STATE(1198), - [sym__unaryExpression] = STATE(3269), - [sym_runtime_type_check_expression] = STATE(3269), - [sym_switch_expression] = STATE(3269), - [sym_cast_expression] = STATE(3269), - [sym_type_trace_expression] = STATE(3269), - [sym__parenthesized_expression] = STATE(3107), - [sym_subscript_expression] = STATE(3269), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1198), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [275] = { + [sym__rhs_expression] = STATE(1169), + [sym__unaryExpression] = STATE(3680), + [sym_runtime_type_check_expression] = STATE(3680), + [sym_switch_expression] = STATE(3680), + [sym_cast_expression] = STATE(3680), + [sym_type_trace_expression] = STATE(3680), + [sym__parenthesized_expression] = STATE(2822), + [sym_range_expression] = STATE(3680), + [sym_subscript_expression] = STATE(3680), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1169), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_untyped] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_untyped] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -44067,57 +42314,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [315] = { - [sym__rhs_expression] = STATE(930), - [sym__unaryExpression] = STATE(288), - [sym_runtime_type_check_expression] = STATE(288), - [sym_switch_expression] = STATE(288), - [sym_cast_expression] = STATE(288), - [sym_type_trace_expression] = STATE(288), - [sym__parenthesized_expression] = STATE(289), - [sym_subscript_expression] = STATE(288), - [sym_member_expression] = STATE(284), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(930), - [sym_operator] = STATE(1932), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1338), - [sym_integer] = STATE(1338), - [sym_float] = STATE(1338), - [sym_bool] = STATE(1338), - [sym_string] = STATE(1302), - [sym_null] = STATE(1338), - [sym_array] = STATE(1338), - [sym_map] = STATE(1338), - [sym_object] = STATE(1338), - [sym_pair] = STATE(1338), - [sym_identifier] = ACTIONS(1670), + [276] = { + [sym__rhs_expression] = STATE(1215), + [sym__unaryExpression] = STATE(3421), + [sym_runtime_type_check_expression] = STATE(3421), + [sym_switch_expression] = STATE(3421), + [sym_cast_expression] = STATE(3421), + [sym_type_trace_expression] = STATE(3421), + [sym__parenthesized_expression] = STATE(2665), + [sym_range_expression] = STATE(3421), + [sym_subscript_expression] = STATE(3421), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1215), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(1672), - [anon_sym_DOLLARtype] = ACTIONS(904), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_untyped] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(674), - [anon_sym_new] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2216), + [anon_sym_untyped] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [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), @@ -44144,69 +42392,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [316] = { - [sym__rhs_expression] = STATE(996), - [sym__unaryExpression] = STATE(1422), - [sym_runtime_type_check_expression] = STATE(1422), - [sym_switch_expression] = STATE(1422), - [sym_cast_expression] = STATE(1422), - [sym_type_trace_expression] = STATE(1422), - [sym__parenthesized_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1422), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(996), - [sym_operator] = STATE(1734), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1899), - [sym_integer] = STATE(1899), - [sym_float] = STATE(1899), - [sym_bool] = STATE(1899), - [sym_string] = STATE(1585), - [sym_null] = STATE(1899), - [sym_array] = STATE(1899), - [sym_map] = STATE(1899), - [sym_object] = STATE(1899), - [sym_pair] = STATE(1899), - [sym_identifier] = ACTIONS(1678), + [277] = { + [sym__rhs_expression] = STATE(1219), + [sym__unaryExpression] = STATE(3629), + [sym_runtime_type_check_expression] = STATE(3629), + [sym_switch_expression] = STATE(3629), + [sym_cast_expression] = STATE(3629), + [sym_type_trace_expression] = STATE(3629), + [sym__parenthesized_expression] = STATE(2701), + [sym_range_expression] = STATE(3629), + [sym_subscript_expression] = STATE(3629), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1219), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1680), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_untyped] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_untyped] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [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), @@ -44233,66 +42482,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [317] = { - [sym__rhs_expression] = STATE(1203), - [sym__unaryExpression] = STATE(3172), - [sym_runtime_type_check_expression] = STATE(3172), - [sym_switch_expression] = STATE(3172), - [sym_cast_expression] = STATE(3172), - [sym_type_trace_expression] = STATE(3172), - [sym__parenthesized_expression] = STATE(2995), - [sym_subscript_expression] = STATE(3172), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1203), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [278] = { + [sym__rhs_expression] = STATE(1173), + [sym__unaryExpression] = STATE(3568), + [sym_runtime_type_check_expression] = STATE(3568), + [sym_switch_expression] = STATE(3568), + [sym_cast_expression] = STATE(3568), + [sym_type_trace_expression] = STATE(3568), + [sym__parenthesized_expression] = STATE(2708), + [sym_range_expression] = STATE(3568), + [sym_subscript_expression] = STATE(3568), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1173), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_untyped] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_untyped] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -44334,54 +42584,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [318] = { - [sym__rhs_expression] = STATE(1109), - [sym__unaryExpression] = STATE(3199), - [sym_runtime_type_check_expression] = STATE(3199), - [sym_switch_expression] = STATE(3199), - [sym_cast_expression] = STATE(3199), - [sym_type_trace_expression] = STATE(3199), - [sym__parenthesized_expression] = STATE(3088), - [sym_subscript_expression] = STATE(3199), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1109), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [279] = { + [sym__rhs_expression] = STATE(1174), + [sym__unaryExpression] = STATE(3590), + [sym_runtime_type_check_expression] = STATE(3590), + [sym_switch_expression] = STATE(3590), + [sym_cast_expression] = STATE(3590), + [sym_type_trace_expression] = STATE(3590), + [sym__parenthesized_expression] = STATE(2540), + [sym_range_expression] = STATE(3590), + [sym_subscript_expression] = STATE(3590), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1174), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_untyped] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_untyped] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -44423,57 +42674,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [319] = { - [sym__rhs_expression] = STATE(1209), - [sym__unaryExpression] = STATE(3411), - [sym_runtime_type_check_expression] = STATE(3411), - [sym_switch_expression] = STATE(3411), - [sym_cast_expression] = STATE(3411), - [sym_type_trace_expression] = STATE(3411), - [sym__parenthesized_expression] = STATE(3049), - [sym_subscript_expression] = STATE(3411), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1209), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [280] = { + [sym__rhs_expression] = STATE(1175), + [sym__unaryExpression] = STATE(3329), + [sym_runtime_type_check_expression] = STATE(3329), + [sym_switch_expression] = STATE(3329), + [sym_cast_expression] = STATE(3329), + [sym_type_trace_expression] = STATE(3329), + [sym__parenthesized_expression] = STATE(2561), + [sym_range_expression] = STATE(3329), + [sym_subscript_expression] = STATE(3329), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1175), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_untyped] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_untyped] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [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), @@ -44500,69 +42752,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [320] = { - [sym__rhs_expression] = STATE(1116), - [sym__unaryExpression] = STATE(3477), - [sym_runtime_type_check_expression] = STATE(3477), - [sym_switch_expression] = STATE(3477), - [sym_cast_expression] = STATE(3477), - [sym_type_trace_expression] = STATE(3477), - [sym__parenthesized_expression] = STATE(3122), - [sym_subscript_expression] = STATE(3477), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1116), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [281] = { + [sym__rhs_expression] = STATE(1179), + [sym__unaryExpression] = STATE(3573), + [sym_runtime_type_check_expression] = STATE(3573), + [sym_switch_expression] = STATE(3573), + [sym_cast_expression] = STATE(3573), + [sym_type_trace_expression] = STATE(3573), + [sym__parenthesized_expression] = STATE(2573), + [sym_range_expression] = STATE(3573), + [sym_subscript_expression] = STATE(3573), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1179), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), + [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_untyped] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_untyped] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [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), @@ -44589,66 +42842,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [321] = { - [sym__rhs_expression] = STATE(1119), - [sym__unaryExpression] = STATE(3443), - [sym_runtime_type_check_expression] = STATE(3443), - [sym_switch_expression] = STATE(3443), - [sym_cast_expression] = STATE(3443), - [sym_type_trace_expression] = STATE(3443), - [sym__parenthesized_expression] = STATE(3090), - [sym_subscript_expression] = STATE(3443), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1119), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [282] = { + [sym__rhs_expression] = STATE(1184), + [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(2623), + [sym_range_expression] = STATE(3509), + [sym_subscript_expression] = STATE(3509), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1184), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1712), - [anon_sym_untyped] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_untyped] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -44690,54 +42944,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [322] = { - [sym__rhs_expression] = STATE(1125), - [sym__unaryExpression] = STATE(3466), - [sym_runtime_type_check_expression] = STATE(3466), - [sym_switch_expression] = STATE(3466), - [sym_cast_expression] = STATE(3466), - [sym_type_trace_expression] = STATE(3466), - [sym__parenthesized_expression] = STATE(2930), - [sym_subscript_expression] = STATE(3466), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1125), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [283] = { + [sym__rhs_expression] = STATE(1185), + [sym__unaryExpression] = STATE(3348), + [sym_runtime_type_check_expression] = STATE(3348), + [sym_switch_expression] = STATE(3348), + [sym_cast_expression] = STATE(3348), + [sym_type_trace_expression] = STATE(3348), + [sym__parenthesized_expression] = STATE(2631), + [sym_range_expression] = STATE(3348), + [sym_subscript_expression] = STATE(3348), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1185), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_untyped] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(2258), + [anon_sym_untyped] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2262), + [anon_sym_continue] = ACTIONS(2262), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -44779,54 +43034,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [323] = { - [sym__rhs_expression] = STATE(1126), - [sym__unaryExpression] = STATE(3228), - [sym_runtime_type_check_expression] = STATE(3228), - [sym_switch_expression] = STATE(3228), - [sym_cast_expression] = STATE(3228), - [sym_type_trace_expression] = STATE(3228), - [sym__parenthesized_expression] = STATE(3015), - [sym_subscript_expression] = STATE(3228), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1126), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [284] = { + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3414), + [sym_runtime_type_check_expression] = STATE(3414), + [sym_switch_expression] = STATE(3414), + [sym_cast_expression] = STATE(3414), + [sym_type_trace_expression] = STATE(3414), + [sym__parenthesized_expression] = STATE(2664), + [sym_range_expression] = STATE(3414), + [sym_subscript_expression] = STATE(3414), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1724), - [anon_sym_untyped] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_untyped] = ACTIONS(2266), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -44868,54 +43124,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [324] = { - [sym__rhs_expression] = STATE(1130), - [sym__unaryExpression] = STATE(3347), - [sym_runtime_type_check_expression] = STATE(3347), - [sym_switch_expression] = STATE(3347), - [sym_cast_expression] = STATE(3347), - [sym_type_trace_expression] = STATE(3347), - [sym__parenthesized_expression] = STATE(3091), - [sym_subscript_expression] = STATE(3347), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1130), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [285] = { + [sym__rhs_expression] = STATE(1188), + [sym__unaryExpression] = STATE(3529), + [sym_runtime_type_check_expression] = STATE(3529), + [sym_switch_expression] = STATE(3529), + [sym_cast_expression] = STATE(3529), + [sym_type_trace_expression] = STATE(3529), + [sym__parenthesized_expression] = STATE(2678), + [sym_range_expression] = STATE(3529), + [sym_subscript_expression] = STATE(3529), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1188), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_untyped] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_untyped] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -44957,54 +43214,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [325] = { - [sym__rhs_expression] = STATE(1133), - [sym__unaryExpression] = STATE(3436), - [sym_runtime_type_check_expression] = STATE(3436), - [sym_switch_expression] = STATE(3436), - [sym_cast_expression] = STATE(3436), - [sym_type_trace_expression] = STATE(3436), - [sym__parenthesized_expression] = STATE(3110), - [sym_subscript_expression] = STATE(3436), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1133), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [286] = { + [sym__rhs_expression] = STATE(1189), + [sym__unaryExpression] = STATE(3530), + [sym_runtime_type_check_expression] = STATE(3530), + [sym_switch_expression] = STATE(3530), + [sym_cast_expression] = STATE(3530), + [sym_type_trace_expression] = STATE(3530), + [sym__parenthesized_expression] = STATE(2693), + [sym_range_expression] = STATE(3530), + [sym_subscript_expression] = STATE(3530), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1189), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_untyped] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_untyped] = ACTIONS(2278), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45046,54 +43304,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [326] = { - [sym__rhs_expression] = STATE(1134), - [sym__unaryExpression] = STATE(3153), - [sym_runtime_type_check_expression] = STATE(3153), - [sym_switch_expression] = STATE(3153), - [sym_cast_expression] = STATE(3153), - [sym_type_trace_expression] = STATE(3153), - [sym__parenthesized_expression] = STATE(2862), - [sym_subscript_expression] = STATE(3153), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1134), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [287] = { + [sym__rhs_expression] = STATE(1194), + [sym__unaryExpression] = STATE(3466), + [sym_runtime_type_check_expression] = STATE(3466), + [sym_switch_expression] = STATE(3466), + [sym_cast_expression] = STATE(3466), + [sym_type_trace_expression] = STATE(3466), + [sym__parenthesized_expression] = STATE(2755), + [sym_range_expression] = STATE(3466), + [sym_subscript_expression] = STATE(3466), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1194), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_untyped] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(2282), + [anon_sym_untyped] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45135,54 +43394,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [327] = { - [sym__rhs_expression] = STATE(1137), - [sym__unaryExpression] = STATE(3186), - [sym_runtime_type_check_expression] = STATE(3186), - [sym_switch_expression] = STATE(3186), - [sym_cast_expression] = STATE(3186), - [sym_type_trace_expression] = STATE(3186), - [sym__parenthesized_expression] = STATE(2879), - [sym_subscript_expression] = STATE(3186), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1137), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [288] = { + [sym__rhs_expression] = STATE(1197), + [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(2813), + [sym_range_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3565), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1197), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_untyped] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_untyped] = ACTIONS(2290), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45224,54 +43484,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [328] = { - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3206), - [sym_runtime_type_check_expression] = STATE(3206), - [sym_switch_expression] = STATE(3206), - [sym_cast_expression] = STATE(3206), - [sym_type_trace_expression] = STATE(3206), - [sym__parenthesized_expression] = STATE(2883), - [sym_subscript_expression] = STATE(3206), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [289] = { + [sym__rhs_expression] = STATE(1198), + [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(2828), + [sym_range_expression] = STATE(3682), + [sym_subscript_expression] = STATE(3682), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1198), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_untyped] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_untyped] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45313,54 +43574,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [329] = { - [sym__rhs_expression] = STATE(1139), - [sym__unaryExpression] = STATE(3233), - [sym_runtime_type_check_expression] = STATE(3233), - [sym_switch_expression] = STATE(3233), - [sym_cast_expression] = STATE(3233), - [sym_type_trace_expression] = STATE(3233), - [sym__parenthesized_expression] = STATE(2893), - [sym_subscript_expression] = STATE(3233), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1139), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [290] = { + [sym__rhs_expression] = STATE(1200), + [sym__unaryExpression] = STATE(3666), + [sym_runtime_type_check_expression] = STATE(3666), + [sym_switch_expression] = STATE(3666), + [sym_cast_expression] = STATE(3666), + [sym_type_trace_expression] = STATE(3666), + [sym__parenthesized_expression] = STATE(2532), + [sym_range_expression] = STATE(3666), + [sym_subscript_expression] = STATE(3666), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1200), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_untyped] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_untyped] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45402,54 +43664,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [330] = { - [sym__rhs_expression] = STATE(1142), - [sym__unaryExpression] = STATE(3272), - [sym_runtime_type_check_expression] = STATE(3272), - [sym_switch_expression] = STATE(3272), - [sym_cast_expression] = STATE(3272), - [sym_type_trace_expression] = STATE(3272), - [sym__parenthesized_expression] = STATE(2915), - [sym_subscript_expression] = STATE(3272), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1142), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [291] = { + [sym__rhs_expression] = STATE(1308), + [sym__unaryExpression] = STATE(1967), + [sym_runtime_type_check_expression] = STATE(1967), + [sym_switch_expression] = STATE(1967), + [sym_cast_expression] = STATE(1967), + [sym_type_trace_expression] = STATE(1967), + [sym__parenthesized_expression] = STATE(1565), + [sym_range_expression] = STATE(1967), + [sym_subscript_expression] = STATE(1967), + [sym_member_expression] = STATE(1520), + [sym__lhs_expression] = STATE(2788), + [sym__call] = STATE(1919), + [sym__constructor_call] = STATE(1920), + [sym_call_expression] = STATE(1308), + [sym_operator] = STATE(1921), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1872), + [sym_integer] = STATE(1685), + [sym_float] = STATE(1872), + [sym_bool] = STATE(1872), + [sym_string] = STATE(1600), + [sym_null] = STATE(1872), + [sym_array] = STATE(1872), + [sym_map] = STATE(1872), + [sym_object] = STATE(1872), + [sym_pair] = STATE(1872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_cast] = ACTIONS(2310), + [anon_sym_DOLLARtype] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_untyped] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_new] = ACTIONS(2062), + [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(57), + [anon_sym_null] = ACTIONS(2064), + [aux_sym_integer_token1] = ACTIONS(2066), + [aux_sym_integer_token2] = ACTIONS(2068), + [aux_sym_float_token1] = ACTIONS(2070), + [aux_sym_float_token2] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [aux_sym_string_token1] = ACTIONS(2076), + [aux_sym_string_token3] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [292] = { + [sym__rhs_expression] = STATE(1205), + [sym__unaryExpression] = STATE(3413), + [sym_runtime_type_check_expression] = STATE(3413), + [sym_switch_expression] = STATE(3413), + [sym_cast_expression] = STATE(3413), + [sym_type_trace_expression] = STATE(3413), + [sym__parenthesized_expression] = STATE(2545), + [sym_range_expression] = STATE(3413), + [sym_subscript_expression] = STATE(3413), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1205), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_untyped] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_untyped] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45491,54 +43844,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [331] = { - [sym__rhs_expression] = STATE(1146), - [sym__unaryExpression] = STATE(3317), - [sym_runtime_type_check_expression] = STATE(3317), - [sym_switch_expression] = STATE(3317), - [sym_cast_expression] = STATE(3317), - [sym_type_trace_expression] = STATE(3317), - [sym__parenthesized_expression] = STATE(2938), - [sym_subscript_expression] = STATE(3317), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1146), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [293] = { + [sym__rhs_expression] = STATE(1208), + [sym__unaryExpression] = STATE(3571), + [sym_runtime_type_check_expression] = STATE(3571), + [sym_switch_expression] = STATE(3571), + [sym_cast_expression] = STATE(3571), + [sym_type_trace_expression] = STATE(3571), + [sym__parenthesized_expression] = STATE(2829), + [sym_range_expression] = STATE(3571), + [sym_subscript_expression] = STATE(3571), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1208), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_untyped] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(2324), + [anon_sym_untyped] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45580,54 +43934,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [332] = { - [sym__rhs_expression] = STATE(1147), - [sym__unaryExpression] = STATE(3344), - [sym_runtime_type_check_expression] = STATE(3344), - [sym_switch_expression] = STATE(3344), - [sym_cast_expression] = STATE(3344), - [sym_type_trace_expression] = STATE(3344), - [sym__parenthesized_expression] = STATE(2943), - [sym_subscript_expression] = STATE(3344), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1147), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [294] = { + [sym__rhs_expression] = STATE(1209), + [sym__unaryExpression] = STATE(3688), + [sym_runtime_type_check_expression] = STATE(3688), + [sym_switch_expression] = STATE(3688), + [sym_cast_expression] = STATE(3688), + [sym_type_trace_expression] = STATE(3688), + [sym__parenthesized_expression] = STATE(2552), + [sym_range_expression] = STATE(3688), + [sym_subscript_expression] = STATE(3688), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1209), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_untyped] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45669,54 +44024,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [333] = { - [sym__rhs_expression] = STATE(1149), - [sym__unaryExpression] = STATE(3352), - [sym_runtime_type_check_expression] = STATE(3352), - [sym_switch_expression] = STATE(3352), - [sym_cast_expression] = STATE(3352), - [sym_type_trace_expression] = STATE(3352), - [sym__parenthesized_expression] = STATE(2950), - [sym_subscript_expression] = STATE(3352), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1149), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [295] = { + [sym__rhs_expression] = STATE(1213), + [sym__unaryExpression] = STATE(3636), + [sym_runtime_type_check_expression] = STATE(3636), + [sym_switch_expression] = STATE(3636), + [sym_cast_expression] = STATE(3636), + [sym_type_trace_expression] = STATE(3636), + [sym__parenthesized_expression] = STATE(2557), + [sym_range_expression] = STATE(3636), + [sym_subscript_expression] = STATE(3636), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1213), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_untyped] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45758,54 +44114,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [334] = { - [sym__rhs_expression] = STATE(1150), - [sym__unaryExpression] = STATE(3375), - [sym_runtime_type_check_expression] = STATE(3375), - [sym_switch_expression] = STATE(3375), - [sym_cast_expression] = STATE(3375), - [sym_type_trace_expression] = STATE(3375), - [sym__parenthesized_expression] = STATE(2953), - [sym_subscript_expression] = STATE(3375), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1150), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [296] = { + [sym__rhs_expression] = STATE(983), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(983), + [sym_operator] = STATE(1927), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1387), + [sym_integer] = STATE(166), + [sym_float] = STATE(1387), + [sym_bool] = STATE(1387), + [sym_string] = STATE(1375), + [sym_null] = STATE(1387), + [sym_array] = STATE(1387), + [sym_map] = STATE(1387), + [sym_object] = STATE(1387), + [sym_pair] = STATE(1387), + [sym_identifier] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(2344), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_untyped] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(1330), + [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(57), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [297] = { + [sym__rhs_expression] = STATE(1220), + [sym__unaryExpression] = STATE(3653), + [sym_runtime_type_check_expression] = STATE(3653), + [sym_switch_expression] = STATE(3653), + [sym_cast_expression] = STATE(3653), + [sym_type_trace_expression] = STATE(3653), + [sym__parenthesized_expression] = STATE(2726), + [sym_range_expression] = STATE(3653), + [sym_subscript_expression] = STATE(3653), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1220), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_untyped] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_untyped] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45847,54 +44294,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [335] = { - [sym__rhs_expression] = STATE(1151), - [sym__unaryExpression] = STATE(3398), - [sym_runtime_type_check_expression] = STATE(3398), - [sym_switch_expression] = STATE(3398), - [sym_cast_expression] = STATE(3398), - [sym_type_trace_expression] = STATE(3398), - [sym__parenthesized_expression] = STATE(2978), - [sym_subscript_expression] = STATE(3398), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1151), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [298] = { + [sym__rhs_expression] = STATE(1222), + [sym__unaryExpression] = STATE(3475), + [sym_runtime_type_check_expression] = STATE(3475), + [sym_switch_expression] = STATE(3475), + [sym_cast_expression] = STATE(3475), + [sym_type_trace_expression] = STATE(3475), + [sym__parenthesized_expression] = STATE(2765), + [sym_range_expression] = STATE(3475), + [sym_subscript_expression] = STATE(3475), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1222), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_untyped] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_untyped] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -45936,54 +44384,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [336] = { - [sym__rhs_expression] = STATE(1156), - [sym__unaryExpression] = STATE(3486), - [sym_runtime_type_check_expression] = STATE(3486), - [sym_switch_expression] = STATE(3486), - [sym_cast_expression] = STATE(3486), - [sym_type_trace_expression] = STATE(3486), - [sym__parenthesized_expression] = STATE(3018), - [sym_subscript_expression] = STATE(3486), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1156), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [299] = { + [sym__rhs_expression] = STATE(980), + [sym__unaryExpression] = STATE(352), + [sym_runtime_type_check_expression] = STATE(352), + [sym_switch_expression] = STATE(352), + [sym_cast_expression] = STATE(352), + [sym_type_trace_expression] = STATE(352), + [sym__parenthesized_expression] = STATE(318), + [sym_range_expression] = STATE(352), + [sym_subscript_expression] = STATE(352), + [sym_member_expression] = STATE(344), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(980), + [sym_operator] = STATE(2021), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1385), + [sym_integer] = STATE(324), + [sym_float] = STATE(1385), + [sym_bool] = STATE(1385), + [sym_string] = STATE(1369), + [sym_null] = STATE(1385), + [sym_array] = STATE(1385), + [sym_map] = STATE(1385), + [sym_object] = STATE(1385), + [sym_pair] = STATE(1385), + [sym_identifier] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(2366), + [anon_sym_DOLLARtype] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_untyped] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_new] = ACTIONS(1364), + [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(57), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [300] = { + [sym__rhs_expression] = STATE(1223), + [sym__unaryExpression] = STATE(3539), + [sym_runtime_type_check_expression] = STATE(3539), + [sym_switch_expression] = STATE(3539), + [sym_cast_expression] = STATE(3539), + [sym_type_trace_expression] = STATE(3539), + [sym__parenthesized_expression] = STATE(2777), + [sym_range_expression] = STATE(3539), + [sym_subscript_expression] = STATE(3539), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1223), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_untyped] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_untyped] = ACTIONS(2374), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -46025,57 +44564,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [337] = { - [sym__rhs_expression] = STATE(1159), - [sym__unaryExpression] = STATE(3142), - [sym_runtime_type_check_expression] = STATE(3142), - [sym_switch_expression] = STATE(3142), - [sym_cast_expression] = STATE(3142), - [sym_type_trace_expression] = STATE(3142), - [sym__parenthesized_expression] = STATE(3028), - [sym_subscript_expression] = STATE(3142), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1159), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [301] = { + [sym__rhs_expression] = STATE(1067), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1067), + [sym_operator] = STATE(2035), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_untyped] = ACTIONS(1810), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(2378), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_untyped] = ACTIONS(2382), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -46102,69 +44642,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [338] = { - [sym__rhs_expression] = STATE(1160), - [sym__unaryExpression] = STATE(3151), - [sym_runtime_type_check_expression] = STATE(3151), - [sym_switch_expression] = STATE(3151), - [sym_cast_expression] = STATE(3151), - [sym_type_trace_expression] = STATE(3151), - [sym__parenthesized_expression] = STATE(3033), - [sym_subscript_expression] = STATE(3151), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1160), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [302] = { + [sym__rhs_expression] = STATE(1022), + [sym__unaryExpression] = STATE(1967), + [sym_runtime_type_check_expression] = STATE(1967), + [sym_switch_expression] = STATE(1967), + [sym_cast_expression] = STATE(1967), + [sym_type_trace_expression] = STATE(1967), + [sym__parenthesized_expression] = STATE(1565), + [sym_range_expression] = STATE(1967), + [sym_subscript_expression] = STATE(1967), + [sym_member_expression] = STATE(1520), + [sym__lhs_expression] = STATE(2788), + [sym__call] = STATE(1919), + [sym__constructor_call] = STATE(1920), + [sym_call_expression] = STATE(1022), + [sym_operator] = STATE(1874), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1777), + [sym_integer] = STATE(1685), + [sym_float] = STATE(1777), + [sym_bool] = STATE(1777), + [sym_string] = STATE(1600), + [sym_null] = STATE(1777), + [sym_array] = STATE(1777), + [sym_map] = STATE(1777), + [sym_object] = STATE(1777), + [sym_pair] = STATE(1777), + [sym_identifier] = ACTIONS(2040), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_untyped] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_cast] = ACTIONS(2384), + [anon_sym_DOLLARtype] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_untyped] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_this] = ACTIONS(2060), + [anon_sym_new] = ACTIONS(2062), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -46191,69 +44732,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(2064), + [aux_sym_integer_token1] = ACTIONS(2066), + [aux_sym_integer_token2] = ACTIONS(2068), + [aux_sym_float_token1] = ACTIONS(2070), + [aux_sym_float_token2] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [aux_sym_string_token1] = ACTIONS(2076), + [aux_sym_string_token3] = ACTIONS(2078), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [339] = { - [sym__rhs_expression] = STATE(1162), - [sym__unaryExpression] = STATE(3154), - [sym_runtime_type_check_expression] = STATE(3154), - [sym_switch_expression] = STATE(3154), - [sym_cast_expression] = STATE(3154), - [sym_type_trace_expression] = STATE(3154), - [sym__parenthesized_expression] = STATE(3035), - [sym_subscript_expression] = STATE(3154), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1162), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [303] = { + [sym__rhs_expression] = STATE(977), + [sym__unaryExpression] = STATE(352), + [sym_runtime_type_check_expression] = STATE(352), + [sym_switch_expression] = STATE(352), + [sym_cast_expression] = STATE(352), + [sym_type_trace_expression] = STATE(352), + [sym__parenthesized_expression] = STATE(318), + [sym_range_expression] = STATE(352), + [sym_subscript_expression] = STATE(352), + [sym_member_expression] = STATE(344), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(977), + [sym_operator] = STATE(1916), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1385), + [sym_integer] = STATE(324), + [sym_float] = STATE(1385), + [sym_bool] = STATE(1385), + [sym_string] = STATE(1369), + [sym_null] = STATE(1385), + [sym_array] = STATE(1385), + [sym_map] = STATE(1385), + [sym_object] = STATE(1385), + [sym_pair] = STATE(1385), + [sym_identifier] = ACTIONS(2364), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_untyped] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(2390), + [anon_sym_DOLLARtype] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_untyped] = ACTIONS(2394), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_new] = ACTIONS(1364), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -46280,66 +44822,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [340] = { - [sym__rhs_expression] = STATE(1163), - [sym__unaryExpression] = STATE(3162), - [sym_runtime_type_check_expression] = STATE(3162), - [sym_switch_expression] = STATE(3162), - [sym_cast_expression] = STATE(3162), - [sym_type_trace_expression] = STATE(3162), - [sym__parenthesized_expression] = STATE(3042), - [sym_subscript_expression] = STATE(3162), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1163), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [304] = { + [sym__rhs_expression] = STATE(1234), + [sym__unaryExpression] = STATE(3633), + [sym_runtime_type_check_expression] = STATE(3633), + [sym_switch_expression] = STATE(3633), + [sym_cast_expression] = STATE(3633), + [sym_type_trace_expression] = STATE(3633), + [sym__parenthesized_expression] = STATE(2541), + [sym_range_expression] = STATE(3633), + [sym_subscript_expression] = STATE(3633), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1234), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_untyped] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_untyped] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -46381,54 +44924,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [341] = { - [sym__rhs_expression] = STATE(1167), - [sym__unaryExpression] = STATE(3178), - [sym_runtime_type_check_expression] = STATE(3178), - [sym_switch_expression] = STATE(3178), - [sym_cast_expression] = STATE(3178), - [sym_type_trace_expression] = STATE(3178), - [sym__parenthesized_expression] = STATE(3054), - [sym_subscript_expression] = STATE(3178), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1167), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [305] = { + [sym__rhs_expression] = STATE(1239), + [sym__unaryExpression] = STATE(3647), + [sym_runtime_type_check_expression] = STATE(3647), + [sym_switch_expression] = STATE(3647), + [sym_cast_expression] = STATE(3647), + [sym_type_trace_expression] = STATE(3647), + [sym__parenthesized_expression] = STATE(2553), + [sym_range_expression] = STATE(3647), + [sym_subscript_expression] = STATE(3647), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1239), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_untyped] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_untyped] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -46470,54 +45014,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [342] = { - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3196), - [sym_runtime_type_check_expression] = STATE(3196), - [sym_switch_expression] = STATE(3196), - [sym_cast_expression] = STATE(3196), - [sym_type_trace_expression] = STATE(3196), - [sym__parenthesized_expression] = STATE(3068), - [sym_subscript_expression] = STATE(3196), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [306] = { + [sym__rhs_expression] = STATE(1240), + [sym__unaryExpression] = STATE(3376), + [sym_runtime_type_check_expression] = STATE(3376), + [sym_switch_expression] = STATE(3376), + [sym_cast_expression] = STATE(3376), + [sym_type_trace_expression] = STATE(3376), + [sym__parenthesized_expression] = STATE(2558), + [sym_range_expression] = STATE(3376), + [sym_subscript_expression] = STATE(3376), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1240), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_untyped] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_untyped] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -46559,54 +45104,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [343] = { - [sym__rhs_expression] = STATE(1171), - [sym__unaryExpression] = STATE(3212), - [sym_runtime_type_check_expression] = STATE(3212), - [sym_switch_expression] = STATE(3212), - [sym_cast_expression] = STATE(3212), - [sym_type_trace_expression] = STATE(3212), - [sym__parenthesized_expression] = STATE(3074), - [sym_subscript_expression] = STATE(3212), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1171), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [307] = { + [sym__rhs_expression] = STATE(1252), + [sym__unaryExpression] = STATE(3640), + [sym_runtime_type_check_expression] = STATE(3640), + [sym_switch_expression] = STATE(3640), + [sym_cast_expression] = STATE(3640), + [sym_type_trace_expression] = STATE(3640), + [sym__parenthesized_expression] = STATE(2594), + [sym_range_expression] = STATE(3640), + [sym_subscript_expression] = STATE(3640), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1252), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_untyped] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_untyped] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -46648,57 +45194,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [344] = { - [sym__rhs_expression] = STATE(1175), - [sym__unaryExpression] = STATE(3234), - [sym_runtime_type_check_expression] = STATE(3234), - [sym_switch_expression] = STATE(3234), - [sym_cast_expression] = STATE(3234), - [sym_type_trace_expression] = STATE(3234), - [sym__parenthesized_expression] = STATE(3089), - [sym_subscript_expression] = STATE(3234), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1175), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [308] = { + [sym__rhs_expression] = STATE(1228), + [sym__unaryExpression] = STATE(3572), + [sym_runtime_type_check_expression] = STATE(3572), + [sym_switch_expression] = STATE(3572), + [sym_cast_expression] = STATE(3572), + [sym_type_trace_expression] = STATE(3572), + [sym__parenthesized_expression] = STATE(2611), + [sym_range_expression] = STATE(3572), + [sym_subscript_expression] = STATE(3572), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1228), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_untyped] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_untyped] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -46725,69 +45272,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [345] = { - [sym__rhs_expression] = STATE(1003), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1003), - [sym_operator] = STATE(1924), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [309] = { + [sym__rhs_expression] = STATE(1231), + [sym__unaryExpression] = STATE(3517), + [sym_runtime_type_check_expression] = STATE(3517), + [sym_switch_expression] = STATE(3517), + [sym_cast_expression] = STATE(3517), + [sym_type_trace_expression] = STATE(3517), + [sym__parenthesized_expression] = STATE(2627), + [sym_range_expression] = STATE(3517), + [sym_subscript_expression] = STATE(3517), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1231), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1856), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_untyped] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_untyped] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -46814,66 +45362,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [346] = { - [sym__rhs_expression] = STATE(1213), - [sym__unaryExpression] = STATE(3495), - [sym_runtime_type_check_expression] = STATE(3495), - [sym_switch_expression] = STATE(3495), - [sym_cast_expression] = STATE(3495), - [sym_type_trace_expression] = STATE(3495), - [sym__parenthesized_expression] = STATE(3021), - [sym_subscript_expression] = STATE(3495), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1213), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [310] = { + [sym__rhs_expression] = STATE(1263), + [sym__unaryExpression] = STATE(3567), + [sym_runtime_type_check_expression] = STATE(3567), + [sym_switch_expression] = STATE(3567), + [sym_cast_expression] = STATE(3567), + [sym_type_trace_expression] = STATE(3567), + [sym__parenthesized_expression] = STATE(2617), + [sym_range_expression] = STATE(3567), + [sym_subscript_expression] = STATE(3567), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1263), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_untyped] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_untyped] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -46915,57 +45464,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [347] = { - [sym__rhs_expression] = STATE(1214), - [sym__unaryExpression] = STATE(3157), - [sym_runtime_type_check_expression] = STATE(3157), - [sym_switch_expression] = STATE(3157), - [sym_cast_expression] = STATE(3157), - [sym_type_trace_expression] = STATE(3157), - [sym__parenthesized_expression] = STATE(3038), - [sym_subscript_expression] = STATE(3157), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1214), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [311] = { + [sym__rhs_expression] = STATE(1099), + [sym__unaryExpression] = STATE(352), + [sym_runtime_type_check_expression] = STATE(352), + [sym_switch_expression] = STATE(352), + [sym_cast_expression] = STATE(352), + [sym_type_trace_expression] = STATE(352), + [sym__parenthesized_expression] = STATE(318), + [sym_range_expression] = STATE(352), + [sym_subscript_expression] = STATE(352), + [sym_member_expression] = STATE(344), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(1099), + [sym_operator] = STATE(2006), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1376), + [sym_integer] = STATE(324), + [sym_float] = STATE(1376), + [sym_bool] = STATE(1376), + [sym_string] = STATE(1369), + [sym_null] = STATE(1376), + [sym_array] = STATE(1376), + [sym_map] = STATE(1376), + [sym_object] = STATE(1376), + [sym_pair] = STATE(1376), + [sym_identifier] = ACTIONS(2086), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_untyped] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(1526), + [anon_sym_DOLLARtype] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_untyped] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1458), + [anon_sym_new] = ACTIONS(1364), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -46992,69 +45542,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [348] = { - [sym__rhs_expression] = STATE(1186), - [sym__unaryExpression] = STATE(3286), - [sym_runtime_type_check_expression] = STATE(3286), - [sym_switch_expression] = STATE(3286), - [sym_cast_expression] = STATE(3286), - [sym_type_trace_expression] = STATE(3286), - [sym__parenthesized_expression] = STATE(3009), - [sym_subscript_expression] = STATE(3286), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1186), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [312] = { + [sym__rhs_expression] = STATE(1029), + [sym__unaryExpression] = STATE(1887), + [sym_runtime_type_check_expression] = STATE(1887), + [sym_switch_expression] = STATE(1887), + [sym_cast_expression] = STATE(1887), + [sym_type_trace_expression] = STATE(1887), + [sym__parenthesized_expression] = STATE(1572), + [sym_range_expression] = STATE(1887), + [sym_subscript_expression] = STATE(1887), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1029), + [sym_operator] = STATE(1831), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1749), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1749), + [sym_bool] = STATE(1749), + [sym_string] = STATE(1639), + [sym_null] = STATE(1749), + [sym_array] = STATE(1749), + [sym_map] = STATE(1749), + [sym_object] = STATE(1749), + [sym_pair] = STATE(1749), + [sym_identifier] = ACTIONS(2438), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_untyped] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(2440), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_untyped] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47081,69 +45632,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(67), + [aux_sym_integer_token1] = ACTIONS(85), + [aux_sym_integer_token2] = ACTIONS(87), + [aux_sym_float_token1] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(91), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [aux_sym_string_token1] = ACTIONS(95), + [aux_sym_string_token3] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [349] = { - [sym__rhs_expression] = STATE(1215), - [sym__unaryExpression] = STATE(3295), - [sym_runtime_type_check_expression] = STATE(3295), - [sym_switch_expression] = STATE(3295), - [sym_cast_expression] = STATE(3295), - [sym_type_trace_expression] = STATE(3295), - [sym__parenthesized_expression] = STATE(3124), - [sym_subscript_expression] = STATE(3295), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1215), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [313] = { + [sym__rhs_expression] = STATE(1247), + [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(2694), + [sym_range_expression] = STATE(3354), + [sym_subscript_expression] = STATE(3354), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_untyped] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_untyped] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47170,69 +45722,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [350] = { - [sym__rhs_expression] = STATE(1194), - [sym__unaryExpression] = STATE(3200), - [sym_runtime_type_check_expression] = STATE(3200), - [sym_switch_expression] = STATE(3200), - [sym_cast_expression] = STATE(3200), - [sym_type_trace_expression] = STATE(3200), - [sym__parenthesized_expression] = STATE(2934), - [sym_subscript_expression] = STATE(3200), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1194), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [314] = { + [sym__rhs_expression] = STATE(1249), + [sym__unaryExpression] = STATE(3614), + [sym_runtime_type_check_expression] = STATE(3614), + [sym_switch_expression] = STATE(3614), + [sym_cast_expression] = STATE(3614), + [sym_type_trace_expression] = STATE(3614), + [sym__parenthesized_expression] = STATE(2717), + [sym_range_expression] = STATE(3614), + [sym_subscript_expression] = STATE(3614), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1249), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_untyped] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_untyped] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47259,69 +45812,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [351] = { - [sym__rhs_expression] = STATE(1224), - [sym__unaryExpression] = STATE(3149), - [sym_runtime_type_check_expression] = STATE(3149), - [sym_switch_expression] = STATE(3149), - [sym_cast_expression] = STATE(3149), - [sym_type_trace_expression] = STATE(3149), - [sym__parenthesized_expression] = STATE(2940), - [sym_subscript_expression] = STATE(3149), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1224), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [315] = { + [sym__rhs_expression] = STATE(1258), + [sym__unaryExpression] = STATE(3428), + [sym_runtime_type_check_expression] = STATE(3428), + [sym_switch_expression] = STATE(3428), + [sym_cast_expression] = STATE(3428), + [sym_type_trace_expression] = STATE(3428), + [sym__parenthesized_expression] = STATE(2531), + [sym_range_expression] = STATE(3428), + [sym_subscript_expression] = STATE(3428), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1258), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_untyped] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_untyped] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47348,69 +45902,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [352] = { - [sym__rhs_expression] = STATE(1199), - [sym__unaryExpression] = STATE(3166), - [sym_runtime_type_check_expression] = STATE(3166), - [sym_switch_expression] = STATE(3166), - [sym_cast_expression] = STATE(3166), - [sym_type_trace_expression] = STATE(3166), - [sym__parenthesized_expression] = STATE(2873), - [sym_subscript_expression] = STATE(3166), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(1199), - [sym_operator] = STATE(1840), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1329), - [sym_integer] = STATE(1329), - [sym_float] = STATE(1329), - [sym_bool] = STATE(1329), - [sym_string] = STATE(1308), - [sym_null] = STATE(1329), - [sym_array] = STATE(1329), - [sym_map] = STATE(1329), - [sym_object] = STATE(1329), - [sym_pair] = STATE(1329), - [sym_identifier] = ACTIONS(1230), + [316] = { + [sym__rhs_expression] = STATE(1259), + [sym__unaryExpression] = STATE(3429), + [sym_runtime_type_check_expression] = STATE(3429), + [sym_switch_expression] = STATE(3429), + [sym_cast_expression] = STATE(3429), + [sym_type_trace_expression] = STATE(3429), + [sym__parenthesized_expression] = STATE(2533), + [sym_range_expression] = STATE(3429), + [sym_subscript_expression] = STATE(3429), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1259), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1234), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_untyped] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(942), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_untyped] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47437,69 +45992,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [353] = { - [sym__rhs_expression] = STATE(99), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), + [317] = { + [sym__rhs_expression] = STATE(867), + [sym__unaryExpression] = STATE(772), + [sym_runtime_type_check_expression] = STATE(772), + [sym_switch_expression] = STATE(772), + [sym_cast_expression] = STATE(772), + [sym_type_trace_expression] = STATE(772), + [sym__parenthesized_expression] = STATE(637), + [sym_range_expression] = STATE(772), + [sym_subscript_expression] = STATE(772), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(867), + [sym_operator] = STATE(1996), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(944), + [sym_integer] = STATE(166), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [sym_identifier] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1314), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_untyped] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), + [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(57), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [318] = { + [sym__rangeOperator] = STATE(2481), + [sym_identifier] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_package] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_using] = ACTIONS(1356), + [anon_sym_throw] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_this] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_AT_COLON] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2480), + [anon_sym_null] = ACTIONS(1356), + [anon_sym_macro] = ACTIONS(1356), + [anon_sym_abstract] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_public] = ACTIONS(1356), + [anon_sym_private] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_overload] = ACTIONS(1356), + [anon_sym_override] = ACTIONS(1356), + [anon_sym_final] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1356), + [anon_sym_interface] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_function] = ACTIONS(1356), + [anon_sym_var] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1356), + [aux_sym_integer_token2] = ACTIONS(1354), + [aux_sym_float_token1] = ACTIONS(1356), + [aux_sym_float_token2] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1354), + [aux_sym_string_token3] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1354), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [319] = { + [sym__rhs_expression] = STATE(133), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), [sym__parenthesized_expression] = STATE(171), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(146), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(99), - [sym_operator] = STATE(1936), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(564), - [sym_integer] = STATE(564), - [sym_float] = STATE(564), - [sym_bool] = STATE(564), - [sym_string] = STATE(363), - [sym_null] = STATE(564), - [sym_array] = STATE(564), - [sym_map] = STATE(564), - [sym_object] = STATE(564), - [sym_pair] = STATE(564), - [sym_identifier] = ACTIONS(1904), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(133), + [sym_operator] = STATE(1934), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(582), + [sym_integer] = STATE(166), + [sym_float] = STATE(582), + [sym_bool] = STATE(582), + [sym_string] = STATE(398), + [sym_null] = STATE(582), + [sym_array] = STATE(582), + [sym_map] = STATE(582), + [sym_object] = STATE(582), + [sym_pair] = STATE(582), + [sym_identifier] = ACTIONS(2482), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(1906), - [anon_sym_DOLLARtype] = ACTIONS(792), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_untyped] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(778), - [anon_sym_new] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(2484), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_untyped] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1434), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47526,69 +46262,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [354] = { - [sym__rhs_expression] = STATE(929), - [sym__unaryExpression] = STATE(288), - [sym_runtime_type_check_expression] = STATE(288), - [sym_switch_expression] = STATE(288), - [sym_cast_expression] = STATE(288), - [sym_type_trace_expression] = STATE(288), - [sym__parenthesized_expression] = STATE(289), - [sym_subscript_expression] = STATE(288), - [sym_member_expression] = STATE(284), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(929), - [sym_operator] = STATE(1842), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1338), - [sym_integer] = STATE(1338), - [sym_float] = STATE(1338), - [sym_bool] = STATE(1338), - [sym_string] = STATE(1302), - [sym_null] = STATE(1338), - [sym_array] = STATE(1338), - [sym_map] = STATE(1338), - [sym_object] = STATE(1338), - [sym_pair] = STATE(1338), - [sym_identifier] = ACTIONS(1670), + [320] = { + [sym__rhs_expression] = STATE(856), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(856), + [sym_operator] = STATE(1910), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(945), + [sym_integer] = STATE(166), + [sym_float] = STATE(945), + [sym_bool] = STATE(945), + [sym_string] = STATE(928), + [sym_null] = STATE(945), + [sym_array] = STATE(945), + [sym_map] = STATE(945), + [sym_object] = STATE(945), + [sym_pair] = STATE(945), + [sym_identifier] = ACTIONS(2490), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_cast] = ACTIONS(1912), - [anon_sym_DOLLARtype] = ACTIONS(904), - [anon_sym_return] = ACTIONS(1914), - [anon_sym_untyped] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(674), - [anon_sym_new] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_untyped] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47615,69 +46352,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [355] = { - [sym__rhs_expression] = STATE(1012), - [sym__unaryExpression] = STATE(1422), - [sym_runtime_type_check_expression] = STATE(1422), - [sym_switch_expression] = STATE(1422), - [sym_cast_expression] = STATE(1422), - [sym_type_trace_expression] = STATE(1422), - [sym__parenthesized_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1422), - [sym_member_expression] = STATE(1343), - [sym__lhs_expression] = STATE(2578), - [sym__call] = STATE(1464), - [sym__constructor_call] = STATE(1465), - [sym_call_expression] = STATE(1012), - [sym_operator] = STATE(1922), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1899), - [sym_integer] = STATE(1899), - [sym_float] = STATE(1899), - [sym_bool] = STATE(1899), - [sym_string] = STATE(1585), - [sym_null] = STATE(1899), - [sym_array] = STATE(1899), - [sym_map] = STATE(1899), - [sym_object] = STATE(1899), - [sym_pair] = STATE(1899), - [sym_identifier] = ACTIONS(1678), + [321] = { + [sym__rhs_expression] = STATE(1225), + [sym__unaryExpression] = STATE(3670), + [sym_runtime_type_check_expression] = STATE(3670), + [sym_switch_expression] = STATE(3670), + [sym_cast_expression] = STATE(3670), + [sym_type_trace_expression] = STATE(3670), + [sym__parenthesized_expression] = STATE(2555), + [sym_range_expression] = STATE(3670), + [sym_subscript_expression] = STATE(3670), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2523), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1225), + [sym_operator] = STATE(1753), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1898), + [sym_integer] = STATE(166), + [sym_float] = STATE(1898), + [sym_bool] = STATE(1898), + [sym_string] = STATE(1688), + [sym_null] = STATE(1898), + [sym_array] = STATE(1898), + [sym_map] = STATE(1898), + [sym_object] = STATE(1898), + [sym_pair] = STATE(1898), + [sym_identifier] = ACTIONS(2492), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1918), - [anon_sym_DOLLARtype] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_untyped] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(2494), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_untyped] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47704,69 +46442,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1266), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [356] = { - [sym__rhs_expression] = STATE(1230), - [sym__unaryExpression] = STATE(3213), - [sym_runtime_type_check_expression] = STATE(3213), - [sym_switch_expression] = STATE(3213), - [sym_cast_expression] = STATE(3213), - [sym_type_trace_expression] = STATE(3213), - [sym__parenthesized_expression] = STATE(2984), - [sym_subscript_expression] = STATE(3213), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1230), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [322] = { + [sym__rhs_expression] = STATE(1062), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(1550), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1062), + [sym_operator] = STATE(1969), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1756), + [sym_integer] = STATE(166), + [sym_float] = STATE(1756), + [sym_bool] = STATE(1756), + [sym_string] = STATE(1688), + [sym_null] = STATE(1756), + [sym_array] = STATE(1756), + [sym_map] = STATE(1756), + [sym_object] = STATE(1756), + [sym_pair] = STATE(1756), + [sym_identifier] = ACTIONS(2502), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_untyped] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(2504), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_untyped] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(1330), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -47793,68 +46532,699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [357] = { - [sym__rhs_expression] = STATE(1232), - [sym__unaryExpression] = STATE(3266), - [sym_runtime_type_check_expression] = STATE(3266), - [sym_switch_expression] = STATE(3266), - [sym_cast_expression] = STATE(3266), - [sym_type_trace_expression] = STATE(3266), - [sym__parenthesized_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3266), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1232), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), - [sym_identifier] = ACTIONS(7), + [323] = { + [sym__rhs_expression] = STATE(1056), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(1550), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1056), + [sym_operator] = STATE(2019), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1756), + [sym_integer] = STATE(166), + [sym_float] = STATE(1756), + [sym_bool] = STATE(1756), + [sym_string] = STATE(1688), + [sym_null] = STATE(1756), + [sym_array] = STATE(1756), + [sym_map] = STATE(1756), + [sym_object] = STATE(1756), + [sym_pair] = STATE(1756), + [sym_identifier] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(2510), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_untyped] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(1330), + [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(57), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [324] = { + [sym__rangeOperator] = STATE(2481), + [sym_identifier] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_package] = ACTIONS(1626), + [anon_sym_DOT] = ACTIONS(1626), + [anon_sym_import] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_using] = ACTIONS(1626), + [anon_sym_throw] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_switch] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_case] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_cast] = ACTIONS(1626), + [anon_sym_COMMA] = ACTIONS(1624), + [anon_sym_DOLLARtype] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_untyped] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_AT_COLON] = ACTIONS(1624), + [anon_sym_try] = ACTIONS(1626), + [anon_sym_catch] = ACTIONS(1626), + [anon_sym_else] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_do] = ACTIONS(1626), + [anon_sym_new] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_PLUS_PLUS] = ACTIONS(1624), + [anon_sym_DASH_DASH] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_LT_LT] = ACTIONS(1624), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_GT_GT_GT] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_PIPE_PIPE] = ACTIONS(1624), + [anon_sym_EQ_EQ] = ACTIONS(1624), + [anon_sym_BANG_EQ] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_LT_EQ] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_GT_EQ] = ACTIONS(1624), + [anon_sym_EQ_GT] = ACTIONS(1624), + [anon_sym_QMARK_QMARK] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2480), + [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_enum] = 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(1624), + [aux_sym_float_token1] = ACTIONS(1626), + [aux_sym_float_token2] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [aux_sym_string_token1] = ACTIONS(1624), + [aux_sym_string_token3] = ACTIONS(1624), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1624), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [325] = { + [sym_identifier] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_package] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_COLON] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_cast] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DOLLARtype] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_untyped] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_this] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(1784), + [anon_sym_AT_COLON] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_catch] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_LT_LT] = ACTIONS(1782), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_EQ_GT] = ACTIONS(1782), + [anon_sym_QMARK_QMARK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), + [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_enum] = 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(1782), + [aux_sym_float_token1] = ACTIONS(1784), + [aux_sym_float_token2] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [aux_sym_string_token1] = ACTIONS(1782), + [aux_sym_string_token3] = ACTIONS(1782), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1782), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [326] = { + [sym_identifier] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_package] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_COLON] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_cast] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DOLLARtype] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_untyped] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_this] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1784), + [anon_sym_AT_COLON] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_catch] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_LT_LT] = ACTIONS(1782), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_EQ_GT] = ACTIONS(1782), + [anon_sym_QMARK_QMARK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), + [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_enum] = 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(1782), + [aux_sym_float_token1] = ACTIONS(1784), + [aux_sym_float_token2] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [aux_sym_string_token1] = ACTIONS(1782), + [aux_sym_string_token3] = ACTIONS(1782), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1782), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [327] = { + [sym__rhs_expression] = STATE(145), + [sym__unaryExpression] = STATE(575), + [sym_runtime_type_check_expression] = STATE(575), + [sym_switch_expression] = STATE(575), + [sym_cast_expression] = STATE(575), + [sym_type_trace_expression] = STATE(575), + [sym__parenthesized_expression] = STATE(397), + [sym_range_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym_member_expression] = STATE(344), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(145), + [sym_operator] = STATE(2009), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(569), + [sym_integer] = STATE(324), + [sym_float] = STATE(569), + [sym_bool] = STATE(569), + [sym_string] = STATE(393), + [sym_null] = STATE(569), + [sym_array] = STATE(569), + [sym_map] = STATE(569), + [sym_object] = STATE(569), + [sym_pair] = STATE(569), + [sym_identifier] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_cast] = ACTIONS(2522), + [anon_sym_DOLLARtype] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_untyped] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1458), + [anon_sym_new] = ACTIONS(1364), + [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(57), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [328] = { + [sym__rhs_expression] = STATE(1241), + [sym__unaryExpression] = STATE(3477), + [sym_runtime_type_check_expression] = STATE(3477), + [sym_switch_expression] = STATE(3477), + [sym_cast_expression] = STATE(3477), + [sym_type_trace_expression] = STATE(3477), + [sym__parenthesized_expression] = STATE(2606), + [sym_range_expression] = STATE(3477), + [sym_subscript_expression] = STATE(3477), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1241), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_untyped] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), + [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(57), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [329] = { + [sym_identifier] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_package] = ACTIONS(1834), + [anon_sym_DOT] = ACTIONS(1834), + [anon_sym_import] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1834), + [anon_sym_throw] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_COLON] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_cast] = ACTIONS(1834), + [anon_sym_COMMA] = ACTIONS(1832), + [anon_sym_DOLLARtype] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_untyped] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_this] = ACTIONS(1834), + [anon_sym_QMARK] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(1834), + [anon_sym_AT_COLON] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1834), + [anon_sym_catch] = ACTIONS(1834), + [anon_sym_else] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_new] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1832), + [anon_sym_PERCENT] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1832), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_GT_GT_GT] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_CARET] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_EQ_GT] = ACTIONS(1832), + [anon_sym_QMARK_QMARK] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1832), + [anon_sym_null] = ACTIONS(1834), + [anon_sym_macro] = ACTIONS(1834), + [anon_sym_abstract] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_public] = ACTIONS(1834), + [anon_sym_private] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_inline] = ACTIONS(1834), + [anon_sym_overload] = ACTIONS(1834), + [anon_sym_override] = ACTIONS(1834), + [anon_sym_final] = ACTIONS(1834), + [anon_sym_class] = ACTIONS(1834), + [anon_sym_interface] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_typedef] = ACTIONS(1834), + [anon_sym_function] = ACTIONS(1834), + [anon_sym_var] = ACTIONS(1834), + [aux_sym_integer_token1] = ACTIONS(1834), + [aux_sym_integer_token2] = ACTIONS(1832), + [aux_sym_float_token1] = ACTIONS(1834), + [aux_sym_float_token2] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [aux_sym_string_token1] = ACTIONS(1832), + [aux_sym_string_token3] = ACTIONS(1832), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1832), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [330] = { + [sym__rhs_expression] = STATE(1052), + [sym__unaryExpression] = STATE(1887), + [sym_runtime_type_check_expression] = STATE(1887), + [sym_switch_expression] = STATE(1887), + [sym_cast_expression] = STATE(1887), + [sym_type_trace_expression] = STATE(1887), + [sym__parenthesized_expression] = STATE(1572), + [sym_range_expression] = STATE(1887), + [sym_subscript_expression] = STATE(1887), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1052), + [sym_operator] = STATE(1836), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1749), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1749), + [sym_bool] = STATE(1749), + [sym_string] = STATE(1639), + [sym_null] = STATE(1749), + [sym_array] = STATE(1749), + [sym_map] = STATE(1749), + [sym_object] = STATE(1749), + [sym_pair] = STATE(1749), + [sym_identifier] = ACTIONS(2438), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_cast] = ACTIONS(2534), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_untyped] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1934), - [anon_sym_continue] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_untyped] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), + [anon_sym_this] = ACTIONS(2448), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -47894,54 +47264,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [358] = { - [sym__rhs_expression] = STATE(1237), - [sym__unaryExpression] = STATE(3310), - [sym_runtime_type_check_expression] = STATE(3310), - [sym_switch_expression] = STATE(3310), - [sym_cast_expression] = STATE(3310), - [sym_type_trace_expression] = STATE(3310), - [sym__parenthesized_expression] = STATE(3039), - [sym_subscript_expression] = STATE(3310), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1237), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [331] = { + [sym__rhs_expression] = STATE(999), + [sym__unaryExpression] = STATE(1526), + [sym_runtime_type_check_expression] = STATE(1526), + [sym_switch_expression] = STATE(1526), + [sym_cast_expression] = STATE(1526), + [sym_type_trace_expression] = STATE(1526), + [sym__parenthesized_expression] = STATE(1438), + [sym_range_expression] = STATE(1526), + [sym_subscript_expression] = STATE(1526), + [sym_member_expression] = STATE(1433), + [sym__lhs_expression] = STATE(2670), + [sym__call] = STATE(1507), + [sym__constructor_call] = STATE(1508), + [sym_call_expression] = STATE(999), + [sym_operator] = STATE(1745), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1560), + [sym_integer] = STATE(1482), + [sym_float] = STATE(1560), + [sym_bool] = STATE(1560), + [sym_string] = STATE(1483), + [sym_null] = STATE(1560), + [sym_array] = STATE(1560), + [sym_map] = STATE(1560), + [sym_object] = STATE(1560), + [sym_pair] = STATE(1560), + [sym_identifier] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(2544), + [anon_sym_cast] = ACTIONS(2546), + [anon_sym_DOLLARtype] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2550), + [anon_sym_untyped] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2554), + [anon_sym_continue] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_this] = ACTIONS(2558), + [anon_sym_new] = ACTIONS(2560), + [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(57), + [anon_sym_null] = ACTIONS(2562), + [aux_sym_integer_token1] = ACTIONS(2564), + [aux_sym_integer_token2] = ACTIONS(2566), + [aux_sym_float_token1] = ACTIONS(2568), + [aux_sym_float_token2] = ACTIONS(2570), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [aux_sym_string_token1] = ACTIONS(2574), + [aux_sym_string_token3] = ACTIONS(2576), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [332] = { + [sym__rhs_expression] = STATE(1108), + [sym__unaryExpression] = STATE(3267), + [sym_runtime_type_check_expression] = STATE(3267), + [sym_switch_expression] = STATE(3267), + [sym_cast_expression] = STATE(3267), + [sym_type_trace_expression] = STATE(3267), + [sym__parenthesized_expression] = STATE(2465), + [sym_range_expression] = STATE(3267), + [sym_subscript_expression] = STATE(3267), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1108), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2578), + [anon_sym_untyped] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), + [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(57), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [333] = { + [sym__rhs_expression] = STATE(1274), + [sym__unaryExpression] = STATE(3436), + [sym_runtime_type_check_expression] = STATE(3436), + [sym_switch_expression] = STATE(3436), + [sym_cast_expression] = STATE(3436), + [sym_type_trace_expression] = STATE(3436), + [sym__parenthesized_expression] = STATE(2703), + [sym_range_expression] = STATE(3436), + [sym_subscript_expression] = STATE(3436), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(1274), + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1391), + [sym_integer] = STATE(166), + [sym_float] = STATE(1391), + [sym_bool] = STATE(1391), + [sym_string] = STATE(1375), + [sym_null] = STATE(1391), + [sym_array] = STATE(1391), + [sym_map] = STATE(1391), + [sym_object] = STATE(1391), + [sym_pair] = STATE(1391), + [sym_identifier] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(2584), + [anon_sym_untyped] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_new] = ACTIONS(1330), + [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(57), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [334] = { + [sym__rhs_expression] = STATE(1295), + [sym__unaryExpression] = STATE(3596), + [sym_runtime_type_check_expression] = STATE(3596), + [sym_switch_expression] = STATE(3596), + [sym_cast_expression] = STATE(3596), + [sym_type_trace_expression] = STATE(3596), + [sym__parenthesized_expression] = STATE(2804), + [sym_range_expression] = STATE(3596), + [sym_subscript_expression] = STATE(3596), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1295), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_untyped] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_untyped] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -47983,54 +47624,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [359] = { - [sym__rhs_expression] = STATE(1242), - [sym__unaryExpression] = STATE(3348), - [sym_runtime_type_check_expression] = STATE(3348), - [sym_switch_expression] = STATE(3348), - [sym_cast_expression] = STATE(3348), - [sym_type_trace_expression] = STATE(3348), - [sym__parenthesized_expression] = STATE(3052), - [sym_subscript_expression] = STATE(3348), - [sym_member_expression] = STATE(1560), - [sym__lhs_expression] = STATE(2461), - [sym__call] = STATE(1951), - [sym__constructor_call] = STATE(1725), - [sym_call_expression] = STATE(1242), - [sym_operator] = STATE(1880), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [sym__literal] = STATE(1823), - [sym_integer] = STATE(1823), - [sym_float] = STATE(1823), - [sym_bool] = STATE(1823), - [sym_string] = STATE(1654), - [sym_null] = STATE(1823), - [sym_array] = STATE(1823), - [sym_map] = STATE(1823), - [sym_object] = STATE(1823), - [sym_pair] = STATE(1823), + [335] = { + [sym__rhs_expression] = STATE(976), + [sym__unaryExpression] = STATE(218), + [sym_runtime_type_check_expression] = STATE(218), + [sym_switch_expression] = STATE(218), + [sym_cast_expression] = STATE(218), + [sym_type_trace_expression] = STATE(218), + [sym__parenthesized_expression] = STATE(171), + [sym_range_expression] = STATE(218), + [sym_subscript_expression] = STATE(218), + [sym_member_expression] = STATE(188), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(976), + [sym_operator] = STATE(1876), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1387), + [sym_integer] = STATE(166), + [sym_float] = STATE(1387), + [sym_bool] = STATE(1387), + [sym_string] = STATE(1375), + [sym_null] = STATE(1387), + [sym_array] = STATE(1387), + [sym_map] = STATE(1387), + [sym_object] = STATE(1387), + [sym_pair] = STATE(1387), + [sym_identifier] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1542), + [anon_sym_DOLLARtype] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_untyped] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(1330), + [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(57), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [336] = { + [sym__rhs_expression] = STATE(1201), + [sym__unaryExpression] = STATE(3367), + [sym_runtime_type_check_expression] = STATE(3367), + [sym_switch_expression] = STATE(3367), + [sym_cast_expression] = STATE(3367), + [sym_type_trace_expression] = STATE(3367), + [sym__parenthesized_expression] = STATE(2535), + [sym_range_expression] = STATE(3367), + [sym_subscript_expression] = STATE(3367), + [sym_member_expression] = STATE(1541), + [sym__lhs_expression] = STATE(2738), + [sym__call] = STATE(1964), + [sym__constructor_call] = STATE(1968), + [sym_call_expression] = STATE(1201), + [sym_operator] = STATE(1797), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [sym__literal] = STATE(1801), + [sym_integer] = STATE(1614), + [sym_float] = STATE(1801), + [sym_bool] = STATE(1801), + [sym_string] = STATE(1639), + [sym_null] = STATE(1801), + [sym_array] = STATE(1801), + [sym_map] = STATE(1801), + [sym_object] = STATE(1801), + [sym_pair] = STATE(1801), [sym_identifier] = ACTIONS(7), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1974), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_untyped] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_untyped] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), @@ -48072,469 +47804,2436 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [360] = { - [sym_identifier] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1138), - [anon_sym_package] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_using] = ACTIONS(1141), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_cast] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1138), - [anon_sym_DOLLARtype] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_untyped] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1141), - [anon_sym_continue] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_this] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_AT_COLON] = ACTIONS(1138), - [anon_sym_try] = ACTIONS(1141), - [anon_sym_catch] = ACTIONS(1141), - [anon_sym_else] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1141), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PERCENT] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_LT_LT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1141), - [anon_sym_GT_GT_GT] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1141), - [anon_sym_LT_EQ] = ACTIONS(1138), - [anon_sym_GT] = ACTIONS(1141), - [anon_sym_GT_EQ] = ACTIONS(1138), - [anon_sym_EQ_GT] = ACTIONS(1138), - [anon_sym_QMARK_QMARK] = ACTIONS(1138), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_macro] = ACTIONS(1141), - [anon_sym_abstract] = ACTIONS(1141), - [anon_sym_static] = ACTIONS(1141), - [anon_sym_public] = ACTIONS(1141), - [anon_sym_private] = ACTIONS(1141), - [anon_sym_extern] = ACTIONS(1141), - [anon_sym_inline] = ACTIONS(1141), - [anon_sym_overload] = ACTIONS(1141), - [anon_sym_override] = ACTIONS(1141), - [anon_sym_final] = ACTIONS(1141), - [anon_sym_class] = ACTIONS(1141), - [anon_sym_interface] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [anon_sym_typedef] = ACTIONS(1141), - [anon_sym_function] = ACTIONS(1141), - [anon_sym_var] = ACTIONS(1141), - [aux_sym_integer_token1] = ACTIONS(1141), - [aux_sym_integer_token2] = ACTIONS(1138), - [aux_sym_float_token1] = ACTIONS(1141), - [aux_sym_float_token2] = ACTIONS(1138), - [anon_sym_true] = ACTIONS(1141), - [anon_sym_false] = ACTIONS(1141), - [aux_sym_string_token1] = ACTIONS(1138), - [aux_sym_string_token3] = ACTIONS(1138), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1138), + [337] = { + [sym_identifier] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_package] = ACTIONS(1788), + [anon_sym_DOT] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1788), + [anon_sym_throw] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_cast] = ACTIONS(1788), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_DOLLARtype] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_untyped] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_this] = ACTIONS(1788), + [anon_sym_QMARK] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_AT_COLON] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_PERCENT] = ACTIONS(1786), + [anon_sym_SLASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_LT_LT] = ACTIONS(1786), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_GT_GT_GT] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [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(1788), + [anon_sym_LT_EQ] = ACTIONS(1786), + [anon_sym_GT] = ACTIONS(1788), + [anon_sym_GT_EQ] = ACTIONS(1786), + [anon_sym_EQ_GT] = ACTIONS(1786), + [anon_sym_QMARK_QMARK] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), + [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_enum] = 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(1786), + [aux_sym_float_token1] = ACTIONS(1788), + [aux_sym_float_token2] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [aux_sym_string_token1] = ACTIONS(1786), + [aux_sym_string_token3] = ACTIONS(1786), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1786), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [361] = { - [sym_else_clause] = STATE(470), - [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(1952), - [sym__closing_brace_marker] = ACTIONS(1950), + [338] = { + [sym_identifier] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_package] = ACTIONS(1862), + [anon_sym_DOT] = ACTIONS(1862), + [anon_sym_import] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_using] = ACTIONS(1862), + [anon_sym_throw] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_cast] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1860), + [anon_sym_DOLLARtype] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_untyped] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_this] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [anon_sym_AT_COLON] = ACTIONS(1860), + [anon_sym_try] = ACTIONS(1862), + [anon_sym_catch] = ACTIONS(1862), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1860), + [anon_sym_PERCENT] = ACTIONS(1860), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1862), + [anon_sym_GT_GT_GT] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_EQ_EQ] = ACTIONS(1860), + [anon_sym_BANG_EQ] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_LT_EQ] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1862), + [anon_sym_GT_EQ] = ACTIONS(1860), + [anon_sym_EQ_GT] = ACTIONS(1860), + [anon_sym_QMARK_QMARK] = ACTIONS(1860), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1860), + [anon_sym_null] = ACTIONS(1862), + [anon_sym_macro] = ACTIONS(1862), + [anon_sym_abstract] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_public] = ACTIONS(1862), + [anon_sym_private] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_inline] = ACTIONS(1862), + [anon_sym_overload] = ACTIONS(1862), + [anon_sym_override] = ACTIONS(1862), + [anon_sym_final] = ACTIONS(1862), + [anon_sym_class] = ACTIONS(1862), + [anon_sym_interface] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1862), + [anon_sym_function] = ACTIONS(1862), + [anon_sym_var] = ACTIONS(1862), + [aux_sym_integer_token1] = ACTIONS(1862), + [aux_sym_integer_token2] = ACTIONS(1860), + [aux_sym_float_token1] = ACTIONS(1862), + [aux_sym_float_token2] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [aux_sym_string_token1] = ACTIONS(1860), + [aux_sym_string_token3] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1860), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1956), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1958), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), + [339] = { + [sym_identifier] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1910), + [anon_sym_package] = ACTIONS(1912), + [anon_sym_DOT] = ACTIONS(1912), + [anon_sym_import] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_using] = ACTIONS(1912), + [anon_sym_throw] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_cast] = ACTIONS(1912), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_DOLLARtype] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_untyped] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_this] = ACTIONS(1912), + [anon_sym_QMARK] = ACTIONS(1912), + [anon_sym_AT] = ACTIONS(1912), + [anon_sym_AT_COLON] = ACTIONS(1910), + [anon_sym_try] = ACTIONS(1912), + [anon_sym_catch] = ACTIONS(1912), + [anon_sym_else] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_new] = ACTIONS(1912), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PERCENT] = ACTIONS(1910), + [anon_sym_SLASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_LT_LT] = ACTIONS(1910), + [anon_sym_GT_GT] = ACTIONS(1912), + [anon_sym_GT_GT_GT] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [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(1912), + [anon_sym_LT_EQ] = ACTIONS(1910), + [anon_sym_GT] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1910), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_QMARK] = ACTIONS(1910), + [anon_sym_EQ] = ACTIONS(1912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1910), + [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_enum] = 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(1910), + [aux_sym_float_token1] = ACTIONS(1912), + [aux_sym_float_token2] = ACTIONS(1910), + [anon_sym_true] = ACTIONS(1912), + [anon_sym_false] = ACTIONS(1912), + [aux_sym_string_token1] = ACTIONS(1910), + [aux_sym_string_token3] = ACTIONS(1910), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1910), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1960), - [sym_identifier] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1960), - [anon_sym_package] = ACTIONS(1962), - [anon_sym_DOT] = ACTIONS(1962), - [anon_sym_import] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_using] = ACTIONS(1962), - [anon_sym_throw] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_switch] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_COLON] = ACTIONS(1956), - [anon_sym_cast] = ACTIONS(1962), - [anon_sym_DOLLARtype] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_untyped] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1960), - [anon_sym_this] = ACTIONS(1962), - [anon_sym_QMARK] = ACTIONS(1962), - [anon_sym_AT] = ACTIONS(1962), - [anon_sym_AT_COLON] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1962), - [anon_sym_catch] = ACTIONS(1962), - [anon_sym_else] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [anon_sym_do] = ACTIONS(1962), - [anon_sym_new] = ACTIONS(1962), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS_PLUS] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1960), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1960), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_GT_GT_GT] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_EQ_EQ] = ACTIONS(1960), - [anon_sym_BANG_EQ] = ACTIONS(1960), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_EQ] = ACTIONS(1960), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1960), - [anon_sym_QMARK_QMARK] = ACTIONS(1960), - [anon_sym_EQ] = ACTIONS(1962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1962), - [anon_sym_macro] = ACTIONS(1962), - [anon_sym_abstract] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_public] = ACTIONS(1962), - [anon_sym_private] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym_overload] = ACTIONS(1962), - [anon_sym_override] = ACTIONS(1962), - [anon_sym_final] = ACTIONS(1962), - [anon_sym_class] = ACTIONS(1962), - [anon_sym_interface] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_typedef] = ACTIONS(1962), - [anon_sym_function] = ACTIONS(1962), - [anon_sym_var] = ACTIONS(1962), - [aux_sym_integer_token1] = ACTIONS(1962), - [aux_sym_integer_token2] = ACTIONS(1960), - [aux_sym_float_token1] = ACTIONS(1962), - [aux_sym_float_token2] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1962), - [anon_sym_false] = ACTIONS(1962), - [aux_sym_string_token1] = ACTIONS(1960), - [aux_sym_string_token3] = ACTIONS(1960), - [sym_comment] = ACTIONS(3), + [340] = { + [sym_identifier] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1728), + [anon_sym_package] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_using] = ACTIONS(1730), + [anon_sym_throw] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_cast] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_DOLLARtype] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_untyped] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_this] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_AT_COLON] = ACTIONS(1728), + [anon_sym_try] = ACTIONS(1730), + [anon_sym_catch] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1730), + [anon_sym_GT_GT_GT] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1728), + [anon_sym_AMP_AMP] = ACTIONS(1728), + [anon_sym_PIPE_PIPE] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_LT_EQ] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1728), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_QMARK] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1728), + [anon_sym_null] = ACTIONS(1730), + [anon_sym_macro] = ACTIONS(1730), + [anon_sym_abstract] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_public] = ACTIONS(1730), + [anon_sym_private] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_inline] = ACTIONS(1730), + [anon_sym_overload] = ACTIONS(1730), + [anon_sym_override] = ACTIONS(1730), + [anon_sym_final] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(1730), + [anon_sym_interface] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_function] = ACTIONS(1730), + [anon_sym_var] = ACTIONS(1730), + [aux_sym_integer_token1] = ACTIONS(1730), + [aux_sym_integer_token2] = ACTIONS(1728), + [aux_sym_float_token1] = ACTIONS(1730), + [aux_sym_float_token2] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(1730), + [anon_sym_false] = ACTIONS(1730), + [aux_sym_string_token1] = ACTIONS(1728), + [aux_sym_string_token3] = ACTIONS(1728), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1728), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [364] = { - [sym_identifier] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_package] = ACTIONS(1964), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1966), - [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_for] = ACTIONS(1964), - [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_try] = ACTIONS(1964), - [anon_sym_catch] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [341] = { + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1720), + [anon_sym_import] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_using] = ACTIONS(1720), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_cast] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DOLLARtype] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_untyped] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1720), + [anon_sym_QMARK] = ACTIONS(1720), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_AT_COLON] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1720), + [anon_sym_catch] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_new] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_LT_LT] = ACTIONS(1718), + [anon_sym_GT_GT] = ACTIONS(1720), + [anon_sym_GT_GT_GT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [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(1720), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1720), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_EQ_GT] = ACTIONS(1718), + [anon_sym_QMARK_QMARK] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1718), + [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_enum] = 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(1718), + [aux_sym_float_token1] = ACTIONS(1720), + [aux_sym_float_token2] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), + [aux_sym_string_token3] = ACTIONS(1718), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1718), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [342] = { + [sym_identifier] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_package] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_import] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_using] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_case] = ACTIONS(1754), + [anon_sym_default] = ACTIONS(1754), + [anon_sym_cast] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_DOLLARtype] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_untyped] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_AT_COLON] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_catch] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_do] = ACTIONS(1754), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1752), + [anon_sym_GT_GT] = ACTIONS(1754), + [anon_sym_GT_GT_GT] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_EQ_GT] = ACTIONS(1752), + [anon_sym_QMARK_QMARK] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_macro] = ACTIONS(1754), + [anon_sym_abstract] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1754), + [anon_sym_public] = ACTIONS(1754), + [anon_sym_private] = ACTIONS(1754), + [anon_sym_extern] = ACTIONS(1754), + [anon_sym_inline] = ACTIONS(1754), + [anon_sym_overload] = ACTIONS(1754), + [anon_sym_override] = ACTIONS(1754), + [anon_sym_final] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(1754), + [anon_sym_interface] = ACTIONS(1754), + [anon_sym_enum] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(1754), + [anon_sym_function] = ACTIONS(1754), + [anon_sym_var] = ACTIONS(1754), + [aux_sym_integer_token1] = ACTIONS(1754), + [aux_sym_integer_token2] = ACTIONS(1752), + [aux_sym_float_token1] = ACTIONS(1754), + [aux_sym_float_token2] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [aux_sym_string_token1] = ACTIONS(1752), + [aux_sym_string_token3] = ACTIONS(1752), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1752), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [343] = { + [sym_identifier] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_package] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_using] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_cast] = ACTIONS(1886), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_DOLLARtype] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_untyped] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_this] = ACTIONS(1886), + [anon_sym_QMARK] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1886), + [anon_sym_AT_COLON] = ACTIONS(1884), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_catch] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1886), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_QMARK] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [anon_sym_null] = ACTIONS(1886), + [anon_sym_macro] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_inline] = ACTIONS(1886), + [anon_sym_overload] = ACTIONS(1886), + [anon_sym_override] = ACTIONS(1886), + [anon_sym_final] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_typedef] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [aux_sym_integer_token1] = ACTIONS(1886), + [aux_sym_integer_token2] = ACTIONS(1884), + [aux_sym_float_token1] = ACTIONS(1886), + [aux_sym_float_token2] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [aux_sym_string_token1] = ACTIONS(1884), + [aux_sym_string_token3] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1884), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [344] = { + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(1778), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1778), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [345] = { + [sym_identifier] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_package] = ACTIONS(1916), + [anon_sym_DOT] = ACTIONS(1916), + [anon_sym_import] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(1916), + [anon_sym_throw] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_case] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_cast] = ACTIONS(1916), + [anon_sym_COMMA] = ACTIONS(1914), + [anon_sym_DOLLARtype] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_untyped] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_this] = ACTIONS(1916), + [anon_sym_QMARK] = ACTIONS(1916), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_AT_COLON] = ACTIONS(1914), + [anon_sym_try] = ACTIONS(1916), + [anon_sym_catch] = ACTIONS(1916), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_new] = ACTIONS(1916), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PERCENT] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_LT_LT] = ACTIONS(1914), + [anon_sym_GT_GT] = ACTIONS(1916), + [anon_sym_GT_GT_GT] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [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(1916), + [anon_sym_LT_EQ] = ACTIONS(1914), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_GT_EQ] = ACTIONS(1914), + [anon_sym_EQ_GT] = ACTIONS(1914), + [anon_sym_QMARK_QMARK] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [anon_sym_macro] = ACTIONS(1916), + [anon_sym_abstract] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_public] = ACTIONS(1916), + [anon_sym_private] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym_overload] = ACTIONS(1916), + [anon_sym_override] = ACTIONS(1916), + [anon_sym_final] = ACTIONS(1916), + [anon_sym_class] = ACTIONS(1916), + [anon_sym_interface] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_function] = ACTIONS(1916), + [anon_sym_var] = ACTIONS(1916), + [aux_sym_integer_token1] = ACTIONS(1916), + [aux_sym_integer_token2] = ACTIONS(1914), + [aux_sym_float_token1] = ACTIONS(1916), + [aux_sym_float_token2] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [aux_sym_string_token1] = ACTIONS(1914), + [aux_sym_string_token3] = ACTIONS(1914), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1914), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [346] = { + [sym_identifier] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_package] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_import] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_cast] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1732), + [anon_sym_DOLLARtype] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_untyped] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_AT_COLON] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_catch] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1734), + [anon_sym_new] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_LT_LT] = ACTIONS(1732), + [anon_sym_GT_GT] = ACTIONS(1734), + [anon_sym_GT_GT_GT] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1732), + [anon_sym_PIPE_PIPE] = ACTIONS(1732), + [anon_sym_EQ_EQ] = ACTIONS(1732), + [anon_sym_BANG_EQ] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_LT_EQ] = ACTIONS(1732), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_GT_EQ] = ACTIONS(1732), + [anon_sym_EQ_GT] = ACTIONS(1732), + [anon_sym_QMARK_QMARK] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1732), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_macro] = ACTIONS(1734), + [anon_sym_abstract] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_public] = ACTIONS(1734), + [anon_sym_private] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym_overload] = ACTIONS(1734), + [anon_sym_override] = ACTIONS(1734), + [anon_sym_final] = ACTIONS(1734), + [anon_sym_class] = ACTIONS(1734), + [anon_sym_interface] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [anon_sym_typedef] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_var] = ACTIONS(1734), + [aux_sym_integer_token1] = ACTIONS(1734), + [aux_sym_integer_token2] = ACTIONS(1732), + [aux_sym_float_token1] = ACTIONS(1734), + [aux_sym_float_token2] = ACTIONS(1732), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), + [aux_sym_string_token3] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1732), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [347] = { + [sym_identifier] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_package] = ACTIONS(1870), + [anon_sym_DOT] = ACTIONS(1870), + [anon_sym_import] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_using] = ACTIONS(1870), + [anon_sym_throw] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_cast] = ACTIONS(1870), + [anon_sym_COMMA] = ACTIONS(1868), + [anon_sym_DOLLARtype] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_untyped] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(1870), + [anon_sym_QMARK] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1870), + [anon_sym_AT_COLON] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1870), + [anon_sym_catch] = ACTIONS(1870), + [anon_sym_else] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_do] = ACTIONS(1870), + [anon_sym_new] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1868), + [anon_sym_PERCENT] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1870), + [anon_sym_GT_GT_GT] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1870), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1870), + [anon_sym_GT_EQ] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1868), + [anon_sym_QMARK_QMARK] = ACTIONS(1868), + [anon_sym_EQ] = ACTIONS(1870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_macro] = ACTIONS(1870), + [anon_sym_abstract] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_public] = ACTIONS(1870), + [anon_sym_private] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_inline] = ACTIONS(1870), + [anon_sym_overload] = ACTIONS(1870), + [anon_sym_override] = ACTIONS(1870), + [anon_sym_final] = ACTIONS(1870), + [anon_sym_class] = ACTIONS(1870), + [anon_sym_interface] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1870), + [anon_sym_function] = ACTIONS(1870), + [anon_sym_var] = ACTIONS(1870), + [aux_sym_integer_token1] = ACTIONS(1870), + [aux_sym_integer_token2] = ACTIONS(1868), + [aux_sym_float_token1] = ACTIONS(1870), + [aux_sym_float_token2] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [aux_sym_string_token1] = ACTIONS(1868), + [aux_sym_string_token3] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1868), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [348] = { + [sym_identifier] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_package] = ACTIONS(1920), + [anon_sym_DOT] = ACTIONS(1920), + [anon_sym_import] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_using] = ACTIONS(1920), + [anon_sym_throw] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_case] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_cast] = ACTIONS(1920), + [anon_sym_COMMA] = ACTIONS(1918), + [anon_sym_DOLLARtype] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_untyped] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_this] = ACTIONS(1920), + [anon_sym_QMARK] = ACTIONS(1920), + [anon_sym_AT] = ACTIONS(1920), + [anon_sym_AT_COLON] = ACTIONS(1918), + [anon_sym_try] = ACTIONS(1920), + [anon_sym_catch] = ACTIONS(1920), + [anon_sym_else] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_do] = ACTIONS(1920), + [anon_sym_new] = ACTIONS(1920), + [anon_sym_TILDE] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PLUS_PLUS] = ACTIONS(1918), + [anon_sym_DASH_DASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1920), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_LT_LT] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1920), + [anon_sym_GT_GT_GT] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_EQ_EQ] = ACTIONS(1918), + [anon_sym_BANG_EQ] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_LT_EQ] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1920), + [anon_sym_GT_EQ] = ACTIONS(1918), + [anon_sym_EQ_GT] = ACTIONS(1918), + [anon_sym_QMARK_QMARK] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1918), + [anon_sym_null] = ACTIONS(1920), + [anon_sym_macro] = ACTIONS(1920), + [anon_sym_abstract] = ACTIONS(1920), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_public] = ACTIONS(1920), + [anon_sym_private] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym_inline] = ACTIONS(1920), + [anon_sym_overload] = ACTIONS(1920), + [anon_sym_override] = ACTIONS(1920), + [anon_sym_final] = ACTIONS(1920), + [anon_sym_class] = ACTIONS(1920), + [anon_sym_interface] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_typedef] = ACTIONS(1920), + [anon_sym_function] = ACTIONS(1920), + [anon_sym_var] = ACTIONS(1920), + [aux_sym_integer_token1] = ACTIONS(1920), + [aux_sym_integer_token2] = ACTIONS(1918), + [aux_sym_float_token1] = ACTIONS(1920), + [aux_sym_float_token2] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(1920), + [anon_sym_false] = ACTIONS(1920), + [aux_sym_string_token1] = ACTIONS(1918), + [aux_sym_string_token3] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1918), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [349] = { + [sym_identifier] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_package] = ACTIONS(1866), + [anon_sym_DOT] = ACTIONS(1866), + [anon_sym_import] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1866), + [anon_sym_throw] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_cast] = ACTIONS(1866), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_DOLLARtype] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_untyped] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_this] = ACTIONS(1866), + [anon_sym_QMARK] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_AT_COLON] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_new] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1864), + [anon_sym_PERCENT] = ACTIONS(1864), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_LT_LT] = ACTIONS(1864), + [anon_sym_GT_GT] = ACTIONS(1866), + [anon_sym_GT_GT_GT] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_EQ_EQ] = ACTIONS(1864), + [anon_sym_BANG_EQ] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1864), + [anon_sym_EQ_GT] = ACTIONS(1864), + [anon_sym_QMARK_QMARK] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1864), + [anon_sym_null] = ACTIONS(1866), + [anon_sym_macro] = ACTIONS(1866), + [anon_sym_abstract] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_public] = ACTIONS(1866), + [anon_sym_private] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_inline] = ACTIONS(1866), + [anon_sym_overload] = ACTIONS(1866), + [anon_sym_override] = ACTIONS(1866), + [anon_sym_final] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_typedef] = ACTIONS(1866), + [anon_sym_function] = ACTIONS(1866), + [anon_sym_var] = ACTIONS(1866), + [aux_sym_integer_token1] = ACTIONS(1866), + [aux_sym_integer_token2] = ACTIONS(1864), + [aux_sym_float_token1] = ACTIONS(1866), + [aux_sym_float_token2] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [aux_sym_string_token1] = ACTIONS(1864), + [aux_sym_string_token3] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1864), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [350] = { + [sym_identifier] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_package] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1804), + [anon_sym_import] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_using] = ACTIONS(1804), + [anon_sym_throw] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_case] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_cast] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_DOLLARtype] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_untyped] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1804), + [anon_sym_QMARK] = ACTIONS(1804), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_AT_COLON] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1804), + [anon_sym_catch] = ACTIONS(1804), + [anon_sym_else] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_LT_LT] = ACTIONS(1802), + [anon_sym_GT_GT] = ACTIONS(1804), + [anon_sym_GT_GT_GT] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [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(1804), + [anon_sym_LT_EQ] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1804), + [anon_sym_GT_EQ] = ACTIONS(1802), + [anon_sym_EQ_GT] = ACTIONS(1802), + [anon_sym_QMARK_QMARK] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), + [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_enum] = 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(1802), + [aux_sym_float_token1] = ACTIONS(1804), + [aux_sym_float_token2] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [aux_sym_string_token1] = ACTIONS(1802), + [aux_sym_string_token3] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1802), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [351] = { + [sym_identifier] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_package] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(1972), + [anon_sym_import] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_using] = ACTIONS(1972), + [anon_sym_throw] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_cast] = ACTIONS(1972), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_DOLLARtype] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_untyped] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_this] = ACTIONS(1972), + [anon_sym_QMARK] = ACTIONS(1972), + [anon_sym_AT] = ACTIONS(1972), + [anon_sym_AT_COLON] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_new] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PERCENT] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_GT_GT_GT] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [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(1972), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [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_enum] = 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(1970), + [aux_sym_float_token1] = ACTIONS(1972), + [aux_sym_float_token2] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [aux_sym_string_token1] = ACTIONS(1970), + [aux_sym_string_token3] = ACTIONS(1970), [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1968), - [sym__closing_brace_marker] = ACTIONS(1966), + [sym__closing_brace_marker] = ACTIONS(1970), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [365] = { - [sym_else_clause] = STATE(470), + [352] = { + [sym_identifier] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_package] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_using] = ACTIONS(1356), + [anon_sym_throw] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_this] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_AT_COLON] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_null] = ACTIONS(1356), + [anon_sym_macro] = ACTIONS(1356), + [anon_sym_abstract] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_public] = ACTIONS(1356), + [anon_sym_private] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_overload] = ACTIONS(1356), + [anon_sym_override] = ACTIONS(1356), + [anon_sym_final] = ACTIONS(1356), + [anon_sym_class] = ACTIONS(1356), + [anon_sym_interface] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_function] = ACTIONS(1356), + [anon_sym_var] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1356), + [aux_sym_integer_token2] = ACTIONS(1354), + [aux_sym_float_token1] = ACTIONS(1356), + [aux_sym_float_token2] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1354), + [aux_sym_string_token3] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1354), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [353] = { + [sym_identifier] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_package] = ACTIONS(1936), + [anon_sym_DOT] = ACTIONS(1936), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_throw] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_cast] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_DOLLARtype] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_untyped] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_this] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1936), + [anon_sym_AT_COLON] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_catch] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PERCENT] = ACTIONS(1934), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1934), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_GT_GT_GT] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [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(1936), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT] = ACTIONS(1936), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_EQ_GT] = ACTIONS(1934), + [anon_sym_QMARK_QMARK] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1934), + [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_enum] = 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(1934), + [aux_sym_float_token1] = ACTIONS(1936), + [aux_sym_float_token2] = ACTIONS(1934), + [anon_sym_true] = ACTIONS(1936), + [anon_sym_false] = ACTIONS(1936), + [aux_sym_string_token1] = ACTIONS(1934), + [aux_sym_string_token3] = ACTIONS(1934), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1934), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [354] = { + [sym_identifier] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1938), + [anon_sym_package] = ACTIONS(1940), + [anon_sym_DOT] = ACTIONS(1940), + [anon_sym_import] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_throw] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_cast] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(1938), + [anon_sym_DOLLARtype] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_untyped] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_this] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(1940), + [anon_sym_AT] = ACTIONS(1940), + [anon_sym_AT_COLON] = ACTIONS(1938), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_GT_GT_GT] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [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(1940), + [anon_sym_LT_EQ] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1940), + [anon_sym_GT_EQ] = ACTIONS(1938), + [anon_sym_EQ_GT] = ACTIONS(1938), + [anon_sym_QMARK_QMARK] = ACTIONS(1938), + [anon_sym_EQ] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), + [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_enum] = 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(1938), + [aux_sym_float_token1] = ACTIONS(1940), + [aux_sym_float_token2] = ACTIONS(1938), + [anon_sym_true] = ACTIONS(1940), + [anon_sym_false] = ACTIONS(1940), + [aux_sym_string_token1] = ACTIONS(1938), + [aux_sym_string_token3] = ACTIONS(1938), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1938), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [355] = { + [sym_identifier] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1942), + [anon_sym_package] = ACTIONS(1944), + [anon_sym_DOT] = ACTIONS(1944), + [anon_sym_import] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_using] = ACTIONS(1944), + [anon_sym_throw] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_cast] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1942), + [anon_sym_DOLLARtype] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_untyped] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_this] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1944), + [anon_sym_AT] = ACTIONS(1944), + [anon_sym_AT_COLON] = ACTIONS(1942), + [anon_sym_try] = ACTIONS(1944), + [anon_sym_catch] = ACTIONS(1944), + [anon_sym_else] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_new] = ACTIONS(1944), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PERCENT] = ACTIONS(1942), + [anon_sym_SLASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1944), + [anon_sym_GT_GT_GT] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [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(1944), + [anon_sym_LT_EQ] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1944), + [anon_sym_GT_EQ] = ACTIONS(1942), + [anon_sym_EQ_GT] = ACTIONS(1942), + [anon_sym_QMARK_QMARK] = ACTIONS(1942), + [anon_sym_EQ] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), + [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_enum] = 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(1942), + [aux_sym_float_token1] = ACTIONS(1944), + [aux_sym_float_token2] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [aux_sym_string_token1] = ACTIONS(1942), + [aux_sym_string_token3] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1942), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [356] = { + [sym_identifier] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2604), + [anon_sym_package] = ACTIONS(2602), + [anon_sym_DOT] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_using] = ACTIONS(2602), + [anon_sym_throw] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_case] = ACTIONS(2602), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_cast] = ACTIONS(2602), + [anon_sym_DOLLARtype] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_untyped] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym_this] = ACTIONS(2602), + [anon_sym_QMARK] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_AT_COLON] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2602), + [anon_sym_catch] = ACTIONS(2602), + [anon_sym_else] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_new] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_LT_LT] = ACTIONS(1852), + [anon_sym_GT_GT] = ACTIONS(1854), + [anon_sym_GT_GT_GT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym_AMP_AMP] = ACTIONS(1852), + [anon_sym_PIPE_PIPE] = ACTIONS(1852), + [anon_sym_EQ_EQ] = ACTIONS(1852), + [anon_sym_BANG_EQ] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_LT_EQ] = ACTIONS(1852), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_GT_EQ] = ACTIONS(1852), + [anon_sym_EQ_GT] = ACTIONS(1852), + [anon_sym_QMARK_QMARK] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1852), + [anon_sym_null] = ACTIONS(2602), + [anon_sym_macro] = ACTIONS(2602), + [anon_sym_abstract] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_public] = ACTIONS(2602), + [anon_sym_private] = ACTIONS(2602), + [anon_sym_extern] = ACTIONS(2602), + [anon_sym_inline] = ACTIONS(2602), + [anon_sym_overload] = ACTIONS(2602), + [anon_sym_override] = ACTIONS(2602), + [anon_sym_final] = ACTIONS(2602), + [anon_sym_class] = ACTIONS(2602), + [anon_sym_interface] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), + [anon_sym_typedef] = ACTIONS(2602), + [anon_sym_function] = ACTIONS(2602), + [anon_sym_var] = ACTIONS(2602), + [aux_sym_integer_token1] = ACTIONS(2602), + [aux_sym_integer_token2] = ACTIONS(2604), + [aux_sym_float_token1] = ACTIONS(2602), + [aux_sym_float_token2] = ACTIONS(2604), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [aux_sym_string_token1] = ACTIONS(2604), + [aux_sym_string_token3] = ACTIONS(2604), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1852), + [sym__closing_brace_marker] = ACTIONS(2604), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [357] = { + [sym_identifier] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_package] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1932), + [anon_sym_import] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_using] = ACTIONS(1932), + [anon_sym_throw] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_cast] = ACTIONS(1932), + [anon_sym_COMMA] = ACTIONS(1930), + [anon_sym_DOLLARtype] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_untyped] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_this] = ACTIONS(1932), + [anon_sym_QMARK] = ACTIONS(1932), + [anon_sym_AT] = ACTIONS(1932), + [anon_sym_AT_COLON] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1932), + [anon_sym_catch] = ACTIONS(1932), + [anon_sym_else] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PERCENT] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1932), + [anon_sym_GT_GT_GT] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [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(1932), + [anon_sym_LT_EQ] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1932), + [anon_sym_GT_EQ] = ACTIONS(1930), + [anon_sym_EQ_GT] = ACTIONS(1930), + [anon_sym_QMARK_QMARK] = ACTIONS(1930), + [anon_sym_EQ] = ACTIONS(1932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), + [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_enum] = 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(1930), + [aux_sym_float_token1] = ACTIONS(1932), + [aux_sym_float_token2] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), + [aux_sym_string_token1] = ACTIONS(1930), + [aux_sym_string_token3] = ACTIONS(1930), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1930), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [358] = { + [sym_identifier] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_package] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_using] = ACTIONS(1444), + [anon_sym_throw] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_cast] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_DOLLARtype] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_untyped] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_this] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_AT_COLON] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_new] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_LT_LT] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1444), + [anon_sym_GT_GT_GT] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_EQ_EQ] = ACTIONS(1446), + [anon_sym_BANG_EQ] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_LT_EQ] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_GT_EQ] = ACTIONS(1446), + [anon_sym_EQ_GT] = ACTIONS(1446), + [anon_sym_QMARK_QMARK] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), + [anon_sym_null] = ACTIONS(1444), + [anon_sym_macro] = ACTIONS(1444), + [anon_sym_abstract] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_public] = ACTIONS(1444), + [anon_sym_private] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym_overload] = ACTIONS(1444), + [anon_sym_override] = ACTIONS(1444), + [anon_sym_final] = ACTIONS(1444), + [anon_sym_class] = ACTIONS(1444), + [anon_sym_interface] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_function] = ACTIONS(1444), + [anon_sym_var] = ACTIONS(1444), + [aux_sym_integer_token1] = ACTIONS(1444), + [aux_sym_integer_token2] = ACTIONS(1446), + [aux_sym_float_token1] = ACTIONS(1444), + [aux_sym_float_token2] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [aux_sym_string_token1] = ACTIONS(1446), + [aux_sym_string_token3] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1446), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [359] = { + [sym_identifier] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_package] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_import] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_using] = ACTIONS(1908), + [anon_sym_throw] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_cast] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_DOLLARtype] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_untyped] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_this] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_AT_COLON] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1908), + [anon_sym_catch] = ACTIONS(1908), + [anon_sym_else] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_new] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_PERCENT] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1908), + [anon_sym_GT_GT_GT] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [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(1908), + [anon_sym_LT_EQ] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1908), + [anon_sym_GT_EQ] = ACTIONS(1906), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_QMARK] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1906), + [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_enum] = 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(1906), + [aux_sym_float_token1] = ACTIONS(1908), + [aux_sym_float_token2] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [aux_sym_string_token1] = ACTIONS(1906), + [aux_sym_string_token3] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1906), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [360] = { + [sym_identifier] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_package] = ACTIONS(1725), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_throw] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_case] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_cast] = ACTIONS(1725), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_DOLLARtype] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_untyped] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_this] = ACTIONS(1725), + [anon_sym_QMARK] = ACTIONS(1725), + [anon_sym_AT] = ACTIONS(1725), + [anon_sym_AT_COLON] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_catch] = ACTIONS(1725), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [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(1725), + [anon_sym_LT_EQ] = ACTIONS(1722), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1722), + [anon_sym_EQ_GT] = ACTIONS(1722), + [anon_sym_QMARK_QMARK] = ACTIONS(1722), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1722), + [anon_sym_null] = ACTIONS(1725), + [anon_sym_macro] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_extern] = ACTIONS(1725), + [anon_sym_inline] = ACTIONS(1725), + [anon_sym_overload] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_final] = ACTIONS(1725), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_typedef] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [aux_sym_integer_token1] = ACTIONS(1725), + [aux_sym_integer_token2] = ACTIONS(1722), + [aux_sym_float_token1] = ACTIONS(1725), + [aux_sym_float_token2] = ACTIONS(1722), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [aux_sym_string_token1] = ACTIONS(1722), + [aux_sym_string_token3] = ACTIONS(1722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1722), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [361] = { + [sym_identifier] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_package] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_import] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_using] = ACTIONS(1775), + [anon_sym_throw] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1775), + [anon_sym_cast] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLARtype] = ACTIONS(1772), + [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(1772), + [anon_sym_this] = ACTIONS(1775), + [anon_sym_QMARK] = ACTIONS(1775), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_AT_COLON] = ACTIONS(1772), + [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(1772), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1772), + [anon_sym_PERCENT] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_GT_GT_GT] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_EQ_EQ] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1772), + [anon_sym_EQ_GT] = ACTIONS(1772), + [anon_sym_QMARK_QMARK] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1772), + [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(1772), + [aux_sym_float_token1] = ACTIONS(1775), + [aux_sym_float_token2] = ACTIONS(1772), + [anon_sym_true] = ACTIONS(1775), + [anon_sym_false] = ACTIONS(1775), + [aux_sym_string_token1] = ACTIONS(1772), + [aux_sym_string_token3] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1772), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [362] = { + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(1778), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1778), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [363] = { + [sym_identifier] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_package] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1758), + [anon_sym_import] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_using] = ACTIONS(1758), + [anon_sym_throw] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1758), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1758), + [anon_sym_default] = ACTIONS(1758), + [anon_sym_cast] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_DOLLARtype] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1758), + [anon_sym_return] = ACTIONS(1758), + [anon_sym_untyped] = ACTIONS(1758), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_this] = ACTIONS(1758), + [anon_sym_QMARK] = ACTIONS(1758), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_AT_COLON] = ACTIONS(1756), + [anon_sym_try] = ACTIONS(1758), + [anon_sym_catch] = ACTIONS(1758), + [anon_sym_else] = ACTIONS(1758), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_while] = ACTIONS(1758), + [anon_sym_do] = ACTIONS(1758), + [anon_sym_new] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1758), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1758), + [anon_sym_GT_GT_GT] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_EQ_GT] = ACTIONS(1756), + [anon_sym_QMARK_QMARK] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1758), + [anon_sym_macro] = ACTIONS(1758), + [anon_sym_abstract] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1758), + [anon_sym_public] = ACTIONS(1758), + [anon_sym_private] = ACTIONS(1758), + [anon_sym_extern] = ACTIONS(1758), + [anon_sym_inline] = ACTIONS(1758), + [anon_sym_overload] = ACTIONS(1758), + [anon_sym_override] = ACTIONS(1758), + [anon_sym_final] = ACTIONS(1758), + [anon_sym_class] = ACTIONS(1758), + [anon_sym_interface] = ACTIONS(1758), + [anon_sym_enum] = ACTIONS(1758), + [anon_sym_typedef] = ACTIONS(1758), + [anon_sym_function] = ACTIONS(1758), + [anon_sym_var] = ACTIONS(1758), + [aux_sym_integer_token1] = ACTIONS(1758), + [aux_sym_integer_token2] = ACTIONS(1756), + [aux_sym_float_token1] = ACTIONS(1758), + [aux_sym_float_token2] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1758), + [anon_sym_false] = ACTIONS(1758), + [aux_sym_string_token1] = ACTIONS(1756), + [aux_sym_string_token3] = ACTIONS(1756), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1756), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [364] = { [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1946), [anon_sym_package] = ACTIONS(1948), + [anon_sym_DOT] = ACTIONS(1948), [anon_sym_import] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1946), [anon_sym_using] = ACTIONS(1948), [anon_sym_throw] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1946), [anon_sym_switch] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1946), [anon_sym_case] = ACTIONS(1948), [anon_sym_default] = ACTIONS(1948), [anon_sym_cast] = ACTIONS(1948), - [anon_sym_DOLLARtype] = ACTIONS(1950), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_DOLLARtype] = ACTIONS(1946), [anon_sym_for] = ACTIONS(1948), [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_LBRACK] = ACTIONS(1946), [anon_sym_this] = ACTIONS(1948), + [anon_sym_QMARK] = ACTIONS(1948), [anon_sym_AT] = ACTIONS(1948), - [anon_sym_AT_COLON] = ACTIONS(1950), + [anon_sym_AT_COLON] = ACTIONS(1946), [anon_sym_try] = ACTIONS(1948), [anon_sym_catch] = ACTIONS(1948), [anon_sym_else] = ACTIONS(1948), @@ -48542,32 +50241,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1948), [anon_sym_do] = ACTIONS(1948), [anon_sym_new] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1946), [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_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), [anon_sym_SLASH] = ACTIONS(1948), [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_LT_LT] = ACTIONS(1950), + [anon_sym_LT_LT] = ACTIONS(1946), [anon_sym_GT_GT] = ACTIONS(1948), - [anon_sym_GT_GT_GT] = ACTIONS(1950), + [anon_sym_GT_GT_GT] = ACTIONS(1946), [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_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(1948), - [anon_sym_LT_EQ] = ACTIONS(1950), + [anon_sym_LT_EQ] = ACTIONS(1946), [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_GT_EQ] = ACTIONS(1946), + [anon_sym_EQ_GT] = ACTIONS(1946), + [anon_sym_QMARK_QMARK] = ACTIONS(1946), [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), [anon_sym_null] = ACTIONS(1948), [anon_sym_macro] = ACTIONS(1948), [anon_sym_abstract] = ACTIONS(1948), @@ -48586,16377 +50285,18953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(1948), [anon_sym_var] = ACTIONS(1948), [aux_sym_integer_token1] = ACTIONS(1948), - [aux_sym_integer_token2] = ACTIONS(1950), + [aux_sym_integer_token2] = ACTIONS(1946), [aux_sym_float_token1] = ACTIONS(1948), - [aux_sym_float_token2] = ACTIONS(1950), + [aux_sym_float_token2] = ACTIONS(1946), [anon_sym_true] = ACTIONS(1948), [anon_sym_false] = ACTIONS(1948), - [aux_sym_string_token1] = ACTIONS(1950), - [aux_sym_string_token3] = ACTIONS(1950), + [aux_sym_string_token1] = ACTIONS(1946), + [aux_sym_string_token3] = ACTIONS(1946), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1950), + [sym__closing_brace_marker] = ACTIONS(1946), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [365] = { + [sym_identifier] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_package] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_import] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_using] = ACTIONS(1762), + [anon_sym_throw] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_cast] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLARtype] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_untyped] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_AT_COLON] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1762), + [anon_sym_catch] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_do] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_LT_LT] = ACTIONS(1760), + [anon_sym_GT_GT] = ACTIONS(1762), + [anon_sym_GT_GT_GT] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1760), + [anon_sym_EQ_GT] = ACTIONS(1760), + [anon_sym_QMARK_QMARK] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1760), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_macro] = ACTIONS(1762), + [anon_sym_abstract] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_public] = ACTIONS(1762), + [anon_sym_private] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_inline] = ACTIONS(1762), + [anon_sym_overload] = ACTIONS(1762), + [anon_sym_override] = ACTIONS(1762), + [anon_sym_final] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1762), + [anon_sym_interface] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1762), + [anon_sym_function] = ACTIONS(1762), + [anon_sym_var] = ACTIONS(1762), + [aux_sym_integer_token1] = ACTIONS(1762), + [aux_sym_integer_token2] = ACTIONS(1760), + [aux_sym_float_token1] = ACTIONS(1762), + [aux_sym_float_token2] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym_string_token1] = ACTIONS(1760), + [aux_sym_string_token3] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1760), [sym__closing_brace_unmarker] = ACTIONS(3), }, [366] = { - [sym_identifier] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1960), - [anon_sym_package] = ACTIONS(1962), - [anon_sym_DOT] = ACTIONS(1962), - [anon_sym_import] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_using] = ACTIONS(1962), - [anon_sym_throw] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_switch] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_cast] = ACTIONS(1962), - [anon_sym_DOLLARtype] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_untyped] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1960), - [anon_sym_this] = ACTIONS(1962), - [anon_sym_QMARK] = ACTIONS(1962), - [anon_sym_AT] = ACTIONS(1962), - [anon_sym_AT_COLON] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1962), - [anon_sym_catch] = ACTIONS(1962), - [anon_sym_else] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [anon_sym_do] = ACTIONS(1962), - [anon_sym_new] = ACTIONS(1962), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS_PLUS] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1960), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1960), - [anon_sym_GT_GT] = ACTIONS(1962), - [anon_sym_GT_GT_GT] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_EQ_EQ] = ACTIONS(1960), - [anon_sym_BANG_EQ] = ACTIONS(1960), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_LT_EQ] = ACTIONS(1960), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1960), - [anon_sym_EQ_GT] = ACTIONS(1960), - [anon_sym_QMARK_QMARK] = ACTIONS(1960), - [anon_sym_EQ] = ACTIONS(1962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1962), - [anon_sym_macro] = ACTIONS(1962), - [anon_sym_abstract] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_public] = ACTIONS(1962), - [anon_sym_private] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym_overload] = ACTIONS(1962), - [anon_sym_override] = ACTIONS(1962), - [anon_sym_final] = ACTIONS(1962), - [anon_sym_class] = ACTIONS(1962), - [anon_sym_interface] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_typedef] = ACTIONS(1962), - [anon_sym_function] = ACTIONS(1962), - [anon_sym_var] = ACTIONS(1962), - [aux_sym_integer_token1] = ACTIONS(1962), - [aux_sym_integer_token2] = ACTIONS(1960), - [aux_sym_float_token1] = ACTIONS(1962), - [aux_sym_float_token2] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1962), - [anon_sym_false] = ACTIONS(1962), - [aux_sym_string_token1] = ACTIONS(1960), - [aux_sym_string_token3] = ACTIONS(1960), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_package] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_import] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1882), + [anon_sym_throw] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_cast] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1880), + [anon_sym_DOLLARtype] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_untyped] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(1882), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1882), + [anon_sym_AT_COLON] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1882), + [anon_sym_catch] = ACTIONS(1882), + [anon_sym_else] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_do] = ACTIONS(1882), + [anon_sym_new] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_PERCENT] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_GT_GT_GT] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1880), + [anon_sym_PIPE_PIPE] = ACTIONS(1880), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_BANG_EQ] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_LT_EQ] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1882), + [anon_sym_GT_EQ] = ACTIONS(1880), + [anon_sym_EQ_GT] = ACTIONS(1880), + [anon_sym_QMARK_QMARK] = ACTIONS(1880), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1880), + [anon_sym_null] = ACTIONS(1882), + [anon_sym_macro] = ACTIONS(1882), + [anon_sym_abstract] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_public] = ACTIONS(1882), + [anon_sym_private] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_inline] = ACTIONS(1882), + [anon_sym_overload] = ACTIONS(1882), + [anon_sym_override] = ACTIONS(1882), + [anon_sym_final] = ACTIONS(1882), + [anon_sym_class] = ACTIONS(1882), + [anon_sym_interface] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_typedef] = ACTIONS(1882), + [anon_sym_function] = ACTIONS(1882), + [anon_sym_var] = ACTIONS(1882), + [aux_sym_integer_token1] = ACTIONS(1882), + [aux_sym_integer_token2] = ACTIONS(1880), + [aux_sym_float_token1] = ACTIONS(1882), + [aux_sym_float_token2] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [aux_sym_string_token1] = ACTIONS(1880), + [aux_sym_string_token3] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1880), [sym__closing_brace_unmarker] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_package] = ACTIONS(1432), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_import] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_using] = ACTIONS(1432), - [anon_sym_throw] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_cast] = ACTIONS(1432), - [anon_sym_DOLLARtype] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_untyped] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_this] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_AT_COLON] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1432), - [anon_sym_catch] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_new] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PERCENT] = ACTIONS(1086), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1086), - [anon_sym_PIPE_PIPE] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [anon_sym_BANG_EQ] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1086), - [anon_sym_EQ_GT] = ACTIONS(1086), - [anon_sym_QMARK_QMARK] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_macro] = ACTIONS(1432), - [anon_sym_abstract] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_public] = ACTIONS(1432), - [anon_sym_private] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym_overload] = ACTIONS(1432), - [anon_sym_override] = ACTIONS(1432), - [anon_sym_final] = ACTIONS(1432), - [anon_sym_class] = ACTIONS(1432), - [anon_sym_interface] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [aux_sym_integer_token1] = ACTIONS(1432), - [aux_sym_integer_token2] = ACTIONS(1434), - [aux_sym_float_token1] = ACTIONS(1432), - [aux_sym_float_token2] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1434), - [aux_sym_string_token3] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_package] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_cast] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DOLLARtype] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_untyped] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_this] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1784), + [anon_sym_AT_COLON] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_catch] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_LT_LT] = ACTIONS(1782), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_EQ_GT] = ACTIONS(1782), + [anon_sym_QMARK_QMARK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), + [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_enum] = 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(1782), + [aux_sym_float_token1] = ACTIONS(1784), + [aux_sym_float_token2] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [aux_sym_string_token1] = ACTIONS(1782), + [aux_sym_string_token3] = ACTIONS(1782), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1782), [sym__closing_brace_unmarker] = ACTIONS(3), }, [368] = { - [sym_else_clause] = STATE(491), - [sym_identifier] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1974), - [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_for] = ACTIONS(1972), - [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_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(1892), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_package] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(1892), + [anon_sym_import] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_using] = ACTIONS(1892), + [anon_sym_throw] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1892), + [anon_sym_cast] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1890), + [anon_sym_DOLLARtype] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_untyped] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_this] = ACTIONS(1892), + [anon_sym_QMARK] = ACTIONS(1892), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_AT_COLON] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1892), + [anon_sym_catch] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1892), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PERCENT] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_GT_GT_GT] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [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(1892), + [anon_sym_LT_EQ] = ACTIONS(1890), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_EQ] = ACTIONS(1890), + [anon_sym_EQ_GT] = ACTIONS(1890), + [anon_sym_QMARK_QMARK] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1890), + [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_enum] = 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(1890), + [aux_sym_float_token1] = ACTIONS(1892), + [aux_sym_float_token2] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym_string_token1] = ACTIONS(1890), + [aux_sym_string_token3] = ACTIONS(1890), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1890), [sym__closing_brace_unmarker] = ACTIONS(3), }, [369] = { - [sym_else_clause] = STATE(520), - [sym_identifier] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_package] = ACTIONS(1976), - [anon_sym_import] = ACTIONS(1976), - [anon_sym_STAR] = ACTIONS(1978), - [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_for] = ACTIONS(1976), - [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_try] = ACTIONS(1976), - [anon_sym_catch] = ACTIONS(1976), - [anon_sym_else] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [sym_identifier] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_package] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_cast] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_DOLLARtype] = ACTIONS(1764), + [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(1764), + [anon_sym_this] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_AT_COLON] = ACTIONS(1764), + [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(1764), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_GT_GT_GT] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1764), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_EQ_GT] = ACTIONS(1764), + [anon_sym_QMARK_QMARK] = ACTIONS(1764), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1764), + [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(1764), + [aux_sym_float_token1] = ACTIONS(1766), + [aux_sym_float_token2] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [aux_sym_string_token1] = ACTIONS(1764), + [aux_sym_string_token3] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1764), [sym__closing_brace_unmarker] = ACTIONS(3), }, [370] = { - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1768), + [anon_sym_package] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_import] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_using] = ACTIONS(1770), + [anon_sym_throw] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_switch] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1770), + [anon_sym_default] = ACTIONS(1770), + [anon_sym_cast] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1768), + [anon_sym_DOLLARtype] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_untyped] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_AT_COLON] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1770), + [anon_sym_catch] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_GT_GT_GT] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1768), + [anon_sym_AMP_AMP] = ACTIONS(1768), + [anon_sym_PIPE_PIPE] = ACTIONS(1768), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1768), + [anon_sym_EQ_GT] = ACTIONS(1768), + [anon_sym_QMARK_QMARK] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_macro] = ACTIONS(1770), + [anon_sym_abstract] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_public] = ACTIONS(1770), + [anon_sym_private] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_inline] = ACTIONS(1770), + [anon_sym_overload] = ACTIONS(1770), + [anon_sym_override] = ACTIONS(1770), + [anon_sym_final] = ACTIONS(1770), + [anon_sym_class] = ACTIONS(1770), + [anon_sym_interface] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_typedef] = ACTIONS(1770), + [anon_sym_function] = ACTIONS(1770), + [anon_sym_var] = ACTIONS(1770), + [aux_sym_integer_token1] = ACTIONS(1770), + [aux_sym_integer_token2] = ACTIONS(1768), + [aux_sym_float_token1] = ACTIONS(1770), + [aux_sym_float_token2] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym_string_token1] = ACTIONS(1768), + [aux_sym_string_token3] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1768), [sym__closing_brace_unmarker] = ACTIONS(3), }, [371] = { - [sym_identifier] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_package] = ACTIONS(1980), - [anon_sym_import] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1982), - [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_for] = ACTIONS(1980), - [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_try] = ACTIONS(1980), - [anon_sym_catch] = ACTIONS(1980), - [anon_sym_else] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(1984), - [sym__closing_brace_marker] = ACTIONS(1982), + [sym_identifier] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_package] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1792), + [anon_sym_import] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_using] = ACTIONS(1792), + [anon_sym_throw] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_cast] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_DOLLARtype] = ACTIONS(1790), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_untyped] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(1792), + [anon_sym_QMARK] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_AT_COLON] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1792), + [anon_sym_catch] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_LT_LT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1792), + [anon_sym_GT_GT_GT] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [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(1792), + [anon_sym_LT_EQ] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1790), + [anon_sym_EQ_GT] = ACTIONS(1790), + [anon_sym_QMARK_QMARK] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), + [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_enum] = 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(1790), + [aux_sym_float_token1] = ACTIONS(1792), + [aux_sym_float_token2] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1792), + [anon_sym_false] = ACTIONS(1792), + [aux_sym_string_token1] = ACTIONS(1790), + [aux_sym_string_token3] = ACTIONS(1790), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1790), [sym__closing_brace_unmarker] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_package] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1148), - [anon_sym_import] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_using] = ACTIONS(1148), - [anon_sym_throw] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_cast] = ACTIONS(1148), - [anon_sym_DOLLARtype] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_untyped] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_this] = ACTIONS(1148), - [anon_sym_QMARK] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1148), - [anon_sym_AT_COLON] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_catch] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1146), - [anon_sym_PERCENT] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_GT_GT_GT] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1146), - [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1146), - [anon_sym_QMARK_QMARK] = ACTIONS(1146), - [anon_sym_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_macro] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym_overload] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_interface] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1148), - [anon_sym_function] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [aux_sym_integer_token1] = ACTIONS(1148), - [aux_sym_integer_token2] = ACTIONS(1146), - [aux_sym_float_token1] = ACTIONS(1148), - [aux_sym_float_token2] = ACTIONS(1146), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [aux_sym_string_token1] = ACTIONS(1146), - [aux_sym_string_token3] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_package] = ACTIONS(1830), + [anon_sym_DOT] = ACTIONS(1830), + [anon_sym_import] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_using] = ACTIONS(1830), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_case] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_cast] = ACTIONS(1830), + [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_DOLLARtype] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_untyped] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_this] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_AT_COLON] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_catch] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_LT_LT] = ACTIONS(1828), + [anon_sym_GT_GT] = ACTIONS(1830), + [anon_sym_GT_GT_GT] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1828), + [anon_sym_AMP_AMP] = ACTIONS(1828), + [anon_sym_PIPE_PIPE] = ACTIONS(1828), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1828), + [anon_sym_GT] = ACTIONS(1830), + [anon_sym_GT_EQ] = ACTIONS(1828), + [anon_sym_EQ_GT] = ACTIONS(1828), + [anon_sym_QMARK_QMARK] = ACTIONS(1828), + [anon_sym_EQ] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1830), + [anon_sym_macro] = ACTIONS(1830), + [anon_sym_abstract] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_public] = ACTIONS(1830), + [anon_sym_private] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_inline] = ACTIONS(1830), + [anon_sym_overload] = ACTIONS(1830), + [anon_sym_override] = ACTIONS(1830), + [anon_sym_final] = ACTIONS(1830), + [anon_sym_class] = ACTIONS(1830), + [anon_sym_interface] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_typedef] = ACTIONS(1830), + [anon_sym_function] = ACTIONS(1830), + [anon_sym_var] = ACTIONS(1830), + [aux_sym_integer_token1] = ACTIONS(1830), + [aux_sym_integer_token2] = ACTIONS(1828), + [aux_sym_float_token1] = ACTIONS(1830), + [aux_sym_float_token2] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1828), + [aux_sym_string_token3] = ACTIONS(1828), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1828), [sym__closing_brace_unmarker] = ACTIONS(3), }, [373] = { - [sym_identifier] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_package] = ACTIONS(1986), - [anon_sym_import] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1986), - [anon_sym_throw] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_cast] = ACTIONS(1986), - [anon_sym_DOLLARtype] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_untyped] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_AT_COLON] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1986), - [anon_sym_catch] = ACTIONS(1986), - [anon_sym_else] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_LT_LT] = ACTIONS(1988), - [anon_sym_GT_GT] = ACTIONS(1986), - [anon_sym_GT_GT_GT] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_CARET] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1988), - [anon_sym_PIPE_PIPE] = ACTIONS(1988), - [anon_sym_EQ_EQ] = ACTIONS(1988), - [anon_sym_BANG_EQ] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_LT_EQ] = ACTIONS(1988), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_EQ] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(1988), - [anon_sym_QMARK_QMARK] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(1986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1988), - [anon_sym_null] = ACTIONS(1986), - [anon_sym_macro] = ACTIONS(1986), - [anon_sym_abstract] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_public] = ACTIONS(1986), - [anon_sym_private] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), - [anon_sym_overload] = ACTIONS(1986), - [anon_sym_override] = ACTIONS(1986), - [anon_sym_final] = ACTIONS(1986), - [anon_sym_class] = ACTIONS(1986), - [anon_sym_interface] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_function] = ACTIONS(1986), - [anon_sym_var] = ACTIONS(1986), - [aux_sym_integer_token1] = ACTIONS(1986), - [aux_sym_integer_token2] = ACTIONS(1988), - [aux_sym_float_token1] = ACTIONS(1986), - [aux_sym_float_token2] = ACTIONS(1988), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [aux_sym_string_token1] = ACTIONS(1988), - [aux_sym_string_token3] = ACTIONS(1988), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1990), - [sym__closing_brace_marker] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_package] = ACTIONS(1904), + [anon_sym_DOT] = ACTIONS(1904), + [anon_sym_import] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_using] = ACTIONS(1904), + [anon_sym_throw] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_case] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_cast] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1902), + [anon_sym_DOLLARtype] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_untyped] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_this] = ACTIONS(1904), + [anon_sym_QMARK] = ACTIONS(1904), + [anon_sym_AT] = ACTIONS(1904), + [anon_sym_AT_COLON] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1904), + [anon_sym_catch] = ACTIONS(1904), + [anon_sym_else] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_new] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1902), + [anon_sym_SLASH] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_LT_LT] = ACTIONS(1902), + [anon_sym_GT_GT] = ACTIONS(1904), + [anon_sym_GT_GT_GT] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [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(1904), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1904), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_EQ_GT] = ACTIONS(1902), + [anon_sym_QMARK_QMARK] = ACTIONS(1902), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), + [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_enum] = 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(1902), + [aux_sym_float_token1] = ACTIONS(1904), + [aux_sym_float_token2] = ACTIONS(1902), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [aux_sym_string_token1] = ACTIONS(1902), + [aux_sym_string_token3] = ACTIONS(1902), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1902), [sym__closing_brace_unmarker] = ACTIONS(3), }, [374] = { - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_package] = ACTIONS(1952), + [anon_sym_DOT] = ACTIONS(1952), + [anon_sym_import] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_using] = ACTIONS(1952), + [anon_sym_throw] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_switch] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_case] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_cast] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1950), + [anon_sym_DOLLARtype] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_untyped] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_this] = ACTIONS(1952), + [anon_sym_QMARK] = ACTIONS(1952), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_AT_COLON] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1952), + [anon_sym_catch] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_new] = ACTIONS(1952), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PERCENT] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1950), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [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(1952), + [anon_sym_LT_EQ] = ACTIONS(1950), + [anon_sym_GT] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1950), + [anon_sym_EQ_GT] = ACTIONS(1950), + [anon_sym_QMARK_QMARK] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1950), + [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_enum] = 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(1950), + [aux_sym_float_token1] = ACTIONS(1952), + [aux_sym_float_token2] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1952), + [anon_sym_false] = ACTIONS(1952), + [aux_sym_string_token1] = ACTIONS(1950), + [aux_sym_string_token3] = ACTIONS(1950), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1950), [sym__closing_brace_unmarker] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1098), - [anon_sym_package] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_using] = ACTIONS(1100), - [anon_sym_throw] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_cast] = ACTIONS(1100), - [anon_sym_DOLLARtype] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_untyped] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_this] = ACTIONS(1100), - [anon_sym_QMARK] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), - [anon_sym_AT_COLON] = ACTIONS(1098), - [anon_sym_try] = ACTIONS(1100), - [anon_sym_catch] = ACTIONS(1100), - [anon_sym_else] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_new] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_GT_GT_GT] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_GT_EQ] = ACTIONS(1098), - [anon_sym_EQ_GT] = ACTIONS(1098), - [anon_sym_QMARK_QMARK] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1100), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1100), - [anon_sym_macro] = ACTIONS(1100), - [anon_sym_abstract] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_public] = ACTIONS(1100), - [anon_sym_private] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_overload] = ACTIONS(1100), - [anon_sym_override] = ACTIONS(1100), - [anon_sym_final] = ACTIONS(1100), - [anon_sym_class] = ACTIONS(1100), - [anon_sym_interface] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1100), - [anon_sym_var] = ACTIONS(1100), - [aux_sym_integer_token1] = ACTIONS(1100), - [aux_sym_integer_token2] = ACTIONS(1098), - [aux_sym_float_token1] = ACTIONS(1100), - [aux_sym_float_token2] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [aux_sym_string_token1] = ACTIONS(1098), - [aux_sym_string_token3] = ACTIONS(1098), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(1954), + [anon_sym_package] = ACTIONS(1956), + [anon_sym_DOT] = ACTIONS(1956), + [anon_sym_import] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1956), + [anon_sym_throw] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_switch] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_cast] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(1954), + [anon_sym_DOLLARtype] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_untyped] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_this] = ACTIONS(1956), + [anon_sym_QMARK] = ACTIONS(1956), + [anon_sym_AT] = ACTIONS(1956), + [anon_sym_AT_COLON] = ACTIONS(1954), + [anon_sym_try] = ACTIONS(1956), + [anon_sym_catch] = ACTIONS(1956), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_do] = ACTIONS(1956), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1956), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_LT_LT] = ACTIONS(1954), + [anon_sym_GT_GT] = ACTIONS(1956), + [anon_sym_GT_GT_GT] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [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(1956), + [anon_sym_LT_EQ] = ACTIONS(1954), + [anon_sym_GT] = ACTIONS(1956), + [anon_sym_GT_EQ] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_QMARK] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(1956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1954), + [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_enum] = 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(1954), + [aux_sym_float_token1] = ACTIONS(1956), + [aux_sym_float_token2] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1956), + [anon_sym_false] = ACTIONS(1956), + [aux_sym_string_token1] = ACTIONS(1954), + [aux_sym_string_token3] = ACTIONS(1954), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1954), [sym__closing_brace_unmarker] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(924), - [anon_sym_package] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_import] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_using] = ACTIONS(926), - [anon_sym_throw] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_cast] = ACTIONS(926), - [anon_sym_DOLLARtype] = ACTIONS(924), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_untyped] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_this] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym_AT_COLON] = ACTIONS(924), - [anon_sym_try] = ACTIONS(926), - [anon_sym_catch] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_new] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(926), - [anon_sym_GT_GT_GT] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_PIPE] = ACTIONS(926), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(926), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_QMARK] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(924), - [anon_sym_null] = ACTIONS(926), - [anon_sym_macro] = ACTIONS(926), - [anon_sym_abstract] = ACTIONS(926), - [anon_sym_static] = ACTIONS(926), - [anon_sym_public] = ACTIONS(926), - [anon_sym_private] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_overload] = ACTIONS(926), - [anon_sym_override] = ACTIONS(926), - [anon_sym_final] = ACTIONS(926), - [anon_sym_class] = ACTIONS(926), - [anon_sym_interface] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_function] = ACTIONS(926), - [anon_sym_var] = ACTIONS(926), - [aux_sym_integer_token1] = ACTIONS(926), - [aux_sym_integer_token2] = ACTIONS(924), - [aux_sym_float_token1] = ACTIONS(926), - [aux_sym_float_token2] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [aux_sym_string_token1] = ACTIONS(924), - [aux_sym_string_token3] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(924), + [sym_identifier] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_package] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_using] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_cast] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1820), + [anon_sym_DOLLARtype] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_untyped] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_AT_COLON] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_catch] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_PERCENT] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_LT_LT] = ACTIONS(1820), + [anon_sym_GT_GT] = ACTIONS(1822), + [anon_sym_GT_GT_GT] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP_AMP] = ACTIONS(1820), + [anon_sym_PIPE_PIPE] = ACTIONS(1820), + [anon_sym_EQ_EQ] = ACTIONS(1820), + [anon_sym_BANG_EQ] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_EQ_GT] = ACTIONS(1820), + [anon_sym_QMARK_QMARK] = ACTIONS(1820), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1820), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_macro] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_inline] = ACTIONS(1822), + [anon_sym_overload] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_final] = ACTIONS(1822), + [anon_sym_class] = ACTIONS(1822), + [anon_sym_interface] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_typedef] = ACTIONS(1822), + [anon_sym_function] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(1822), + [aux_sym_integer_token1] = ACTIONS(1822), + [aux_sym_integer_token2] = ACTIONS(1820), + [aux_sym_float_token1] = ACTIONS(1822), + [aux_sym_float_token2] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym_string_token1] = ACTIONS(1820), + [aux_sym_string_token3] = ACTIONS(1820), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1820), [sym__closing_brace_unmarker] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_DOT] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_using] = ACTIONS(1104), - [anon_sym_throw] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_cast] = ACTIONS(1104), - [anon_sym_DOLLARtype] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_untyped] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_this] = ACTIONS(1104), - [anon_sym_QMARK] = ACTIONS(1104), - [anon_sym_AT] = ACTIONS(1104), - [anon_sym_AT_COLON] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1104), - [anon_sym_catch] = ACTIONS(1104), - [anon_sym_else] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_new] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PERCENT] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_GT_GT_GT] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_CARET] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_EQ_GT] = ACTIONS(1102), - [anon_sym_QMARK_QMARK] = ACTIONS(1102), - [anon_sym_EQ] = ACTIONS(1104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1104), - [anon_sym_macro] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_public] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_overload] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_interface] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_var] = ACTIONS(1104), - [aux_sym_integer_token1] = ACTIONS(1104), - [aux_sym_integer_token2] = ACTIONS(1102), - [aux_sym_float_token1] = ACTIONS(1104), - [aux_sym_float_token2] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1104), - [anon_sym_false] = ACTIONS(1104), - [aux_sym_string_token1] = ACTIONS(1102), - [aux_sym_string_token3] = ACTIONS(1102), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_package] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_import] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_using] = ACTIONS(1826), + [anon_sym_throw] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_switch] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_case] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_cast] = ACTIONS(1826), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_DOLLARtype] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_untyped] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_this] = ACTIONS(1826), + [anon_sym_QMARK] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [anon_sym_AT_COLON] = ACTIONS(1824), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1824), + [anon_sym_GT_GT] = ACTIONS(1826), + [anon_sym_GT_GT_GT] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_CARET] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT] = ACTIONS(1826), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_EQ_GT] = ACTIONS(1824), + [anon_sym_QMARK_QMARK] = ACTIONS(1824), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1826), + [anon_sym_macro] = ACTIONS(1826), + [anon_sym_abstract] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_public] = ACTIONS(1826), + [anon_sym_private] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_inline] = ACTIONS(1826), + [anon_sym_overload] = ACTIONS(1826), + [anon_sym_override] = ACTIONS(1826), + [anon_sym_final] = ACTIONS(1826), + [anon_sym_class] = ACTIONS(1826), + [anon_sym_interface] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_typedef] = ACTIONS(1826), + [anon_sym_function] = ACTIONS(1826), + [anon_sym_var] = ACTIONS(1826), + [aux_sym_integer_token1] = ACTIONS(1826), + [aux_sym_integer_token2] = ACTIONS(1824), + [aux_sym_float_token1] = ACTIONS(1826), + [aux_sym_float_token2] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [aux_sym_string_token1] = ACTIONS(1824), + [aux_sym_string_token3] = ACTIONS(1824), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1824), [sym__closing_brace_unmarker] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1956), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1958), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_package] = ACTIONS(1960), + [anon_sym_DOT] = ACTIONS(1960), + [anon_sym_import] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_using] = ACTIONS(1960), + [anon_sym_throw] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_case] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_cast] = ACTIONS(1960), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_DOLLARtype] = ACTIONS(1958), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_untyped] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_this] = ACTIONS(1960), + [anon_sym_QMARK] = ACTIONS(1960), + [anon_sym_AT] = ACTIONS(1960), + [anon_sym_AT_COLON] = ACTIONS(1958), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_catch] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_new] = ACTIONS(1960), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1958), + [anon_sym_SLASH] = ACTIONS(1960), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_LT_LT] = ACTIONS(1958), + [anon_sym_GT_GT] = ACTIONS(1960), + [anon_sym_GT_GT_GT] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1960), + [anon_sym_PIPE] = ACTIONS(1960), + [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(1960), + [anon_sym_LT_EQ] = ACTIONS(1958), + [anon_sym_GT] = ACTIONS(1960), + [anon_sym_GT_EQ] = ACTIONS(1958), + [anon_sym_EQ_GT] = ACTIONS(1958), + [anon_sym_QMARK_QMARK] = ACTIONS(1958), + [anon_sym_EQ] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1958), + [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_enum] = 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(1958), + [aux_sym_float_token1] = ACTIONS(1960), + [aux_sym_float_token2] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [aux_sym_string_token1] = ACTIONS(1958), + [aux_sym_string_token3] = ACTIONS(1958), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1958), [sym__closing_brace_unmarker] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1050), - [anon_sym_package] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1954), - [anon_sym_import] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_using] = ACTIONS(1054), - [anon_sym_throw] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_COLON] = ACTIONS(1132), - [anon_sym_cast] = ACTIONS(1054), - [anon_sym_DOLLARtype] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_this] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1958), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_AT_COLON] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PERCENT] = ACTIONS(1050), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1050), - [anon_sym_PIPE_PIPE] = ACTIONS(1050), - [anon_sym_EQ_EQ] = ACTIONS(1050), - [anon_sym_BANG_EQ] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1050), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1050), - [anon_sym_EQ_GT] = ACTIONS(1050), - [anon_sym_QMARK_QMARK] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_macro] = ACTIONS(1054), - [anon_sym_abstract] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_public] = ACTIONS(1054), - [anon_sym_private] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_overload] = ACTIONS(1054), - [anon_sym_override] = ACTIONS(1054), - [anon_sym_final] = ACTIONS(1054), - [anon_sym_class] = ACTIONS(1054), - [anon_sym_interface] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(1054), - [anon_sym_var] = ACTIONS(1054), - [aux_sym_integer_token1] = ACTIONS(1054), - [aux_sym_integer_token2] = ACTIONS(1050), - [aux_sym_float_token1] = ACTIONS(1054), - [aux_sym_float_token2] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym_string_token1] = ACTIONS(1050), - [aux_sym_string_token3] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_package] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_using] = ACTIONS(1476), + [anon_sym_throw] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_cast] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DOLLARtype] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_untyped] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_AT_COLON] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_catch] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_LT_LT] = ACTIONS(1474), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_GT_GT_GT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_EQ_GT] = ACTIONS(1474), + [anon_sym_QMARK_QMARK] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1476), + [anon_sym_macro] = ACTIONS(1476), + [anon_sym_abstract] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_private] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_overload] = ACTIONS(1476), + [anon_sym_override] = ACTIONS(1476), + [anon_sym_final] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_interface] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(1476), + [anon_sym_var] = ACTIONS(1476), + [aux_sym_integer_token1] = ACTIONS(1476), + [aux_sym_integer_token2] = ACTIONS(1474), + [aux_sym_float_token1] = ACTIONS(1476), + [aux_sym_float_token2] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), + [aux_sym_string_token3] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1474), [sym__closing_brace_unmarker] = ACTIONS(3), }, [380] = { - [sym_identifier] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_package] = ACTIONS(1992), - [anon_sym_import] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1994), - [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_for] = ACTIONS(1992), - [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_try] = ACTIONS(1992), - [anon_sym_catch] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(1996), - [sym__closing_brace_marker] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_package] = ACTIONS(1838), + [anon_sym_DOT] = ACTIONS(1838), + [anon_sym_import] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_using] = ACTIONS(1838), + [anon_sym_throw] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_case] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_cast] = ACTIONS(1838), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_DOLLARtype] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_untyped] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_this] = ACTIONS(1838), + [anon_sym_QMARK] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1838), + [anon_sym_AT_COLON] = ACTIONS(1836), + [anon_sym_try] = ACTIONS(1838), + [anon_sym_catch] = ACTIONS(1838), + [anon_sym_else] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_new] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1836), + [anon_sym_PERCENT] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1838), + [anon_sym_GT_GT_GT] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1836), + [anon_sym_AMP_AMP] = ACTIONS(1836), + [anon_sym_PIPE_PIPE] = ACTIONS(1836), + [anon_sym_EQ_EQ] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_LT_EQ] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1838), + [anon_sym_GT_EQ] = ACTIONS(1836), + [anon_sym_EQ_GT] = ACTIONS(1836), + [anon_sym_QMARK_QMARK] = ACTIONS(1836), + [anon_sym_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1836), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_macro] = ACTIONS(1838), + [anon_sym_abstract] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_public] = ACTIONS(1838), + [anon_sym_private] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_inline] = ACTIONS(1838), + [anon_sym_overload] = ACTIONS(1838), + [anon_sym_override] = ACTIONS(1838), + [anon_sym_final] = ACTIONS(1838), + [anon_sym_class] = ACTIONS(1838), + [anon_sym_interface] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_typedef] = ACTIONS(1838), + [anon_sym_function] = ACTIONS(1838), + [anon_sym_var] = ACTIONS(1838), + [aux_sym_integer_token1] = ACTIONS(1838), + [aux_sym_integer_token2] = ACTIONS(1836), + [aux_sym_float_token1] = ACTIONS(1838), + [aux_sym_float_token2] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym_string_token1] = ACTIONS(1836), + [aux_sym_string_token3] = ACTIONS(1836), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1836), [sym__closing_brace_unmarker] = ACTIONS(3), }, [381] = { - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1998), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_package] = ACTIONS(1964), + [anon_sym_DOT] = ACTIONS(1964), + [anon_sym_import] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_using] = ACTIONS(1964), + [anon_sym_throw] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_switch] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_case] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_cast] = ACTIONS(1964), + [anon_sym_COMMA] = ACTIONS(1962), + [anon_sym_DOLLARtype] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_untyped] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_this] = ACTIONS(1964), + [anon_sym_QMARK] = ACTIONS(1964), + [anon_sym_AT] = ACTIONS(1964), + [anon_sym_AT_COLON] = ACTIONS(1962), + [anon_sym_try] = ACTIONS(1964), + [anon_sym_catch] = ACTIONS(1964), + [anon_sym_else] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = ACTIONS(1964), + [anon_sym_new] = ACTIONS(1964), + [anon_sym_TILDE] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_PLUS_PLUS] = ACTIONS(1962), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_PERCENT] = ACTIONS(1962), + [anon_sym_SLASH] = ACTIONS(1964), + [anon_sym_PLUS] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1962), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_GT_GT_GT] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1964), + [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(1964), + [anon_sym_LT_EQ] = ACTIONS(1962), + [anon_sym_GT] = ACTIONS(1964), + [anon_sym_GT_EQ] = ACTIONS(1962), + [anon_sym_EQ_GT] = ACTIONS(1962), + [anon_sym_QMARK_QMARK] = ACTIONS(1962), + [anon_sym_EQ] = ACTIONS(1964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), + [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_enum] = 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(1962), + [aux_sym_float_token1] = ACTIONS(1964), + [aux_sym_float_token2] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1964), + [anon_sym_false] = ACTIONS(1964), + [aux_sym_string_token1] = ACTIONS(1962), + [aux_sym_string_token3] = ACTIONS(1962), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1962), [sym__closing_brace_unmarker] = ACTIONS(3), }, [382] = { - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1998), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_package] = ACTIONS(1968), + [anon_sym_DOT] = ACTIONS(1968), + [anon_sym_import] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_using] = ACTIONS(1968), + [anon_sym_throw] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_cast] = ACTIONS(1968), + [anon_sym_COMMA] = ACTIONS(1966), + [anon_sym_DOLLARtype] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_untyped] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1968), + [anon_sym_QMARK] = ACTIONS(1968), + [anon_sym_AT] = ACTIONS(1968), + [anon_sym_AT_COLON] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_SLASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_GT_GT_GT] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [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(1968), + [anon_sym_LT_EQ] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1968), + [anon_sym_GT_EQ] = ACTIONS(1966), + [anon_sym_EQ_GT] = ACTIONS(1966), + [anon_sym_QMARK_QMARK] = ACTIONS(1966), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1966), + [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_enum] = 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(1966), + [aux_sym_float_token1] = ACTIONS(1968), + [aux_sym_float_token2] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [aux_sym_string_token1] = ACTIONS(1966), + [aux_sym_string_token3] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1966), [sym__closing_brace_unmarker] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(2002), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1956), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(2004), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_package] = ACTIONS(1896), + [anon_sym_DOT] = ACTIONS(1896), + [anon_sym_import] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_using] = ACTIONS(1896), + [anon_sym_throw] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_cast] = ACTIONS(1896), + [anon_sym_COMMA] = ACTIONS(1894), + [anon_sym_DOLLARtype] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_untyped] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_this] = ACTIONS(1896), + [anon_sym_QMARK] = ACTIONS(1896), + [anon_sym_AT] = ACTIONS(1896), + [anon_sym_AT_COLON] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1896), + [anon_sym_catch] = ACTIONS(1896), + [anon_sym_else] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1896), + [anon_sym_TILDE] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1896), + [anon_sym_GT_GT_GT] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [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(1896), + [anon_sym_LT_EQ] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1896), + [anon_sym_GT_EQ] = ACTIONS(1894), + [anon_sym_EQ_GT] = ACTIONS(1894), + [anon_sym_QMARK_QMARK] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1894), + [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_enum] = 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(1894), + [aux_sym_float_token1] = ACTIONS(1896), + [aux_sym_float_token2] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [aux_sym_string_token1] = ACTIONS(1894), + [aux_sym_string_token3] = ACTIONS(1894), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1894), [sym__closing_brace_unmarker] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(2002), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1956), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(2004), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_package] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_import] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_using] = ACTIONS(1878), + [anon_sym_throw] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_cast] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1876), + [anon_sym_DOLLARtype] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_untyped] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_this] = ACTIONS(1878), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_AT_COLON] = ACTIONS(1876), + [anon_sym_try] = ACTIONS(1878), + [anon_sym_catch] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_new] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1876), + [anon_sym_SLASH] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1876), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_GT_GT_GT] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_AMP_AMP] = ACTIONS(1876), + [anon_sym_PIPE_PIPE] = ACTIONS(1876), + [anon_sym_EQ_EQ] = ACTIONS(1876), + [anon_sym_BANG_EQ] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1876), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_GT_EQ] = ACTIONS(1876), + [anon_sym_EQ_GT] = ACTIONS(1876), + [anon_sym_QMARK_QMARK] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1876), + [anon_sym_null] = ACTIONS(1878), + [anon_sym_macro] = ACTIONS(1878), + [anon_sym_abstract] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_public] = ACTIONS(1878), + [anon_sym_private] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_inline] = ACTIONS(1878), + [anon_sym_overload] = ACTIONS(1878), + [anon_sym_override] = ACTIONS(1878), + [anon_sym_final] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1878), + [anon_sym_interface] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1878), + [anon_sym_function] = ACTIONS(1878), + [anon_sym_var] = ACTIONS(1878), + [aux_sym_integer_token1] = ACTIONS(1878), + [aux_sym_integer_token2] = ACTIONS(1876), + [aux_sym_float_token1] = ACTIONS(1878), + [aux_sym_float_token2] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [aux_sym_string_token1] = ACTIONS(1876), + [aux_sym_string_token3] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1876), [sym__closing_brace_unmarker] = ACTIONS(3), }, [385] = { - [sym_identifier] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2008), - [anon_sym_package] = ACTIONS(2006), - [anon_sym_import] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_using] = ACTIONS(2006), - [anon_sym_throw] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_switch] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_cast] = ACTIONS(2006), - [anon_sym_DOLLARtype] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_untyped] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_this] = ACTIONS(2006), - [anon_sym_AT] = ACTIONS(2006), - [anon_sym_AT_COLON] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2006), - [anon_sym_catch] = ACTIONS(2006), - [anon_sym_else] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_do] = ACTIONS(2006), - [anon_sym_new] = ACTIONS(2006), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PERCENT] = ACTIONS(2008), - [anon_sym_SLASH] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_LT_LT] = ACTIONS(2008), - [anon_sym_GT_GT] = ACTIONS(2006), - [anon_sym_GT_GT_GT] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP_AMP] = ACTIONS(2008), - [anon_sym_PIPE_PIPE] = ACTIONS(2008), - [anon_sym_EQ_EQ] = ACTIONS(2008), - [anon_sym_BANG_EQ] = ACTIONS(2008), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_LT_EQ] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2006), - [anon_sym_GT_EQ] = ACTIONS(2008), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_QMARK_QMARK] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2008), - [anon_sym_null] = ACTIONS(2006), - [anon_sym_macro] = ACTIONS(2006), - [anon_sym_abstract] = ACTIONS(2006), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_public] = ACTIONS(2006), - [anon_sym_private] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym_inline] = ACTIONS(2006), - [anon_sym_overload] = ACTIONS(2006), - [anon_sym_override] = ACTIONS(2006), - [anon_sym_final] = ACTIONS(2006), - [anon_sym_class] = ACTIONS(2006), - [anon_sym_interface] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_typedef] = ACTIONS(2006), - [anon_sym_function] = ACTIONS(2006), - [anon_sym_var] = ACTIONS(2006), - [aux_sym_integer_token1] = ACTIONS(2006), - [aux_sym_integer_token2] = ACTIONS(2008), - [aux_sym_float_token1] = ACTIONS(2006), - [aux_sym_float_token2] = ACTIONS(2008), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [aux_sym_string_token1] = ACTIONS(2008), - [aux_sym_string_token3] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2008), + [sym_identifier] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_package] = ACTIONS(1300), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_import] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_using] = ACTIONS(1300), + [anon_sym_throw] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_cast] = ACTIONS(1300), + [anon_sym_COMMA] = ACTIONS(1302), + [anon_sym_DOLLARtype] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_AT_COLON] = ACTIONS(1302), + [anon_sym_try] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1300), + [anon_sym_macro] = ACTIONS(1300), + [anon_sym_abstract] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_public] = ACTIONS(1300), + [anon_sym_private] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_overload] = ACTIONS(1300), + [anon_sym_override] = ACTIONS(1300), + [anon_sym_final] = ACTIONS(1300), + [anon_sym_class] = ACTIONS(1300), + [anon_sym_interface] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_function] = ACTIONS(1300), + [anon_sym_var] = ACTIONS(1300), + [aux_sym_integer_token1] = ACTIONS(1300), + [aux_sym_integer_token2] = ACTIONS(1302), + [aux_sym_float_token1] = ACTIONS(1300), + [aux_sym_float_token2] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1302), + [aux_sym_string_token3] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1302), [sym__closing_brace_unmarker] = ACTIONS(3), }, [386] = { - [sym_identifier] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2012), - [anon_sym_package] = ACTIONS(2010), - [anon_sym_import] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_using] = ACTIONS(2010), - [anon_sym_throw] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2012), - [anon_sym_switch] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_case] = ACTIONS(2010), - [anon_sym_default] = ACTIONS(2010), - [anon_sym_cast] = ACTIONS(2010), - [anon_sym_DOLLARtype] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2010), - [anon_sym_untyped] = ACTIONS(2010), - [anon_sym_break] = ACTIONS(2010), - [anon_sym_continue] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_this] = ACTIONS(2010), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_AT_COLON] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2010), - [anon_sym_catch] = ACTIONS(2010), - [anon_sym_else] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_do] = ACTIONS(2010), - [anon_sym_new] = ACTIONS(2010), - [anon_sym_TILDE] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_PLUS_PLUS] = ACTIONS(2012), - [anon_sym_DASH_DASH] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2012), - [anon_sym_SLASH] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_LT_LT] = ACTIONS(2012), - [anon_sym_GT_GT] = ACTIONS(2010), - [anon_sym_GT_GT_GT] = ACTIONS(2012), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_CARET] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2012), - [anon_sym_PIPE_PIPE] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2012), - [anon_sym_BANG_EQ] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_LT_EQ] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_GT_EQ] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(2012), - [anon_sym_QMARK_QMARK] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(2010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2012), - [anon_sym_null] = ACTIONS(2010), - [anon_sym_macro] = ACTIONS(2010), - [anon_sym_abstract] = ACTIONS(2010), - [anon_sym_static] = ACTIONS(2010), - [anon_sym_public] = ACTIONS(2010), - [anon_sym_private] = ACTIONS(2010), - [anon_sym_extern] = ACTIONS(2010), - [anon_sym_inline] = ACTIONS(2010), - [anon_sym_overload] = ACTIONS(2010), - [anon_sym_override] = ACTIONS(2010), - [anon_sym_final] = ACTIONS(2010), - [anon_sym_class] = ACTIONS(2010), - [anon_sym_interface] = ACTIONS(2010), - [anon_sym_enum] = ACTIONS(2010), - [anon_sym_typedef] = ACTIONS(2010), - [anon_sym_function] = ACTIONS(2010), - [anon_sym_var] = ACTIONS(2010), - [aux_sym_integer_token1] = ACTIONS(2010), - [aux_sym_integer_token2] = ACTIONS(2012), - [aux_sym_float_token1] = ACTIONS(2010), - [aux_sym_float_token2] = ACTIONS(2012), - [anon_sym_true] = ACTIONS(2010), - [anon_sym_false] = ACTIONS(2010), - [aux_sym_string_token1] = ACTIONS(2012), - [aux_sym_string_token3] = ACTIONS(2012), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2012), + [sym_identifier] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_package] = ACTIONS(1850), + [anon_sym_DOT] = ACTIONS(1850), + [anon_sym_import] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_using] = ACTIONS(1850), + [anon_sym_throw] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_cast] = ACTIONS(1850), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_DOLLARtype] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_untyped] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_this] = ACTIONS(1850), + [anon_sym_QMARK] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1850), + [anon_sym_AT_COLON] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1850), + [anon_sym_catch] = ACTIONS(1850), + [anon_sym_else] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_new] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1850), + [anon_sym_GT_GT_GT] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_EQ_EQ] = ACTIONS(1848), + [anon_sym_BANG_EQ] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_LT_EQ] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1850), + [anon_sym_GT_EQ] = ACTIONS(1848), + [anon_sym_EQ_GT] = ACTIONS(1848), + [anon_sym_QMARK_QMARK] = ACTIONS(1848), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1848), + [anon_sym_null] = ACTIONS(1850), + [anon_sym_macro] = ACTIONS(1850), + [anon_sym_abstract] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_public] = ACTIONS(1850), + [anon_sym_private] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_inline] = ACTIONS(1850), + [anon_sym_overload] = ACTIONS(1850), + [anon_sym_override] = ACTIONS(1850), + [anon_sym_final] = ACTIONS(1850), + [anon_sym_class] = ACTIONS(1850), + [anon_sym_interface] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1850), + [anon_sym_function] = ACTIONS(1850), + [anon_sym_var] = ACTIONS(1850), + [aux_sym_integer_token1] = ACTIONS(1850), + [aux_sym_integer_token2] = ACTIONS(1848), + [aux_sym_float_token1] = ACTIONS(1850), + [aux_sym_float_token2] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [aux_sym_string_token1] = ACTIONS(1848), + [aux_sym_string_token3] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1848), [sym__closing_brace_unmarker] = ACTIONS(3), }, [387] = { - [sym_identifier] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2016), - [anon_sym_package] = ACTIONS(2014), - [anon_sym_import] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_using] = ACTIONS(2014), - [anon_sym_throw] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2016), - [anon_sym_switch] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_case] = ACTIONS(2014), - [anon_sym_default] = ACTIONS(2014), - [anon_sym_cast] = ACTIONS(2014), - [anon_sym_DOLLARtype] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_untyped] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_this] = ACTIONS(2014), - [anon_sym_AT] = ACTIONS(2014), - [anon_sym_AT_COLON] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2014), - [anon_sym_catch] = ACTIONS(2014), - [anon_sym_else] = ACTIONS(2014), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2016), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_SLASH] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_LT_LT] = ACTIONS(2016), - [anon_sym_GT_GT] = ACTIONS(2014), - [anon_sym_GT_GT_GT] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_LT_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_EQ_GT] = ACTIONS(2016), - [anon_sym_QMARK_QMARK] = ACTIONS(2016), - [anon_sym_EQ] = ACTIONS(2014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(2014), - [anon_sym_macro] = ACTIONS(2014), - [anon_sym_abstract] = ACTIONS(2014), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_public] = ACTIONS(2014), - [anon_sym_private] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [anon_sym_overload] = ACTIONS(2014), - [anon_sym_override] = ACTIONS(2014), - [anon_sym_final] = ACTIONS(2014), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_interface] = ACTIONS(2014), - [anon_sym_enum] = ACTIONS(2014), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_function] = ACTIONS(2014), - [anon_sym_var] = ACTIONS(2014), - [aux_sym_integer_token1] = ACTIONS(2014), - [aux_sym_integer_token2] = ACTIONS(2016), - [aux_sym_float_token1] = ACTIONS(2014), - [aux_sym_float_token2] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2014), - [anon_sym_false] = ACTIONS(2014), - [aux_sym_string_token1] = ACTIONS(2016), - [aux_sym_string_token3] = ACTIONS(2016), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2016), + [sym_identifier] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_package] = ACTIONS(1854), + [anon_sym_DOT] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_throw] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_cast] = ACTIONS(1854), + [anon_sym_COMMA] = ACTIONS(1852), + [anon_sym_DOLLARtype] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_untyped] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_this] = ACTIONS(1854), + [anon_sym_QMARK] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1854), + [anon_sym_AT_COLON] = ACTIONS(1852), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_catch] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_LT_LT] = ACTIONS(1852), + [anon_sym_GT_GT] = ACTIONS(1854), + [anon_sym_GT_GT_GT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym_AMP_AMP] = ACTIONS(1852), + [anon_sym_PIPE_PIPE] = ACTIONS(1852), + [anon_sym_EQ_EQ] = ACTIONS(1852), + [anon_sym_BANG_EQ] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_LT_EQ] = ACTIONS(1852), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_GT_EQ] = ACTIONS(1852), + [anon_sym_EQ_GT] = ACTIONS(1852), + [anon_sym_QMARK_QMARK] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1852), + [anon_sym_null] = ACTIONS(1854), + [anon_sym_macro] = ACTIONS(1854), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_public] = ACTIONS(1854), + [anon_sym_private] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_inline] = ACTIONS(1854), + [anon_sym_overload] = ACTIONS(1854), + [anon_sym_override] = ACTIONS(1854), + [anon_sym_final] = ACTIONS(1854), + [anon_sym_class] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_typedef] = ACTIONS(1854), + [anon_sym_function] = ACTIONS(1854), + [anon_sym_var] = ACTIONS(1854), + [aux_sym_integer_token1] = ACTIONS(1854), + [aux_sym_integer_token2] = ACTIONS(1852), + [aux_sym_float_token1] = ACTIONS(1854), + [aux_sym_float_token2] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [aux_sym_string_token1] = ACTIONS(1852), + [aux_sym_string_token3] = ACTIONS(1852), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1852), [sym__closing_brace_unmarker] = ACTIONS(3), }, [388] = { - [sym_identifier] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2020), - [anon_sym_package] = ACTIONS(2018), - [anon_sym_import] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_using] = ACTIONS(2018), - [anon_sym_throw] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_switch] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_case] = ACTIONS(2018), - [anon_sym_default] = ACTIONS(2018), - [anon_sym_cast] = ACTIONS(2018), - [anon_sym_DOLLARtype] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_untyped] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_this] = ACTIONS(2018), - [anon_sym_AT] = ACTIONS(2018), - [anon_sym_AT_COLON] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2018), - [anon_sym_catch] = ACTIONS(2018), - [anon_sym_else] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_new] = ACTIONS(2018), - [anon_sym_TILDE] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2018), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_LT_EQ] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2018), - [anon_sym_GT_EQ] = ACTIONS(2020), - [anon_sym_EQ_GT] = ACTIONS(2020), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_EQ] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2020), - [anon_sym_null] = ACTIONS(2018), - [anon_sym_macro] = ACTIONS(2018), - [anon_sym_abstract] = ACTIONS(2018), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_public] = ACTIONS(2018), - [anon_sym_private] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [anon_sym_overload] = ACTIONS(2018), - [anon_sym_override] = ACTIONS(2018), - [anon_sym_final] = ACTIONS(2018), - [anon_sym_class] = ACTIONS(2018), - [anon_sym_interface] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_function] = ACTIONS(2018), - [anon_sym_var] = ACTIONS(2018), - [aux_sym_integer_token1] = ACTIONS(2018), - [aux_sym_integer_token2] = ACTIONS(2020), - [aux_sym_float_token1] = ACTIONS(2018), - [aux_sym_float_token2] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [aux_sym_string_token1] = ACTIONS(2020), - [aux_sym_string_token3] = ACTIONS(2020), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2020), + [sym_identifier] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_package] = ACTIONS(1858), + [anon_sym_DOT] = ACTIONS(1858), + [anon_sym_import] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1858), + [anon_sym_throw] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_cast] = ACTIONS(1858), + [anon_sym_COMMA] = ACTIONS(1856), + [anon_sym_DOLLARtype] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_untyped] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_this] = ACTIONS(1858), + [anon_sym_QMARK] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1858), + [anon_sym_AT_COLON] = ACTIONS(1856), + [anon_sym_try] = ACTIONS(1858), + [anon_sym_catch] = ACTIONS(1858), + [anon_sym_else] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_PERCENT] = ACTIONS(1856), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(1856), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_GT_GT_GT] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1856), + [anon_sym_AMP_AMP] = ACTIONS(1856), + [anon_sym_PIPE_PIPE] = ACTIONS(1856), + [anon_sym_EQ_EQ] = ACTIONS(1856), + [anon_sym_BANG_EQ] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_LT_EQ] = ACTIONS(1856), + [anon_sym_GT] = ACTIONS(1858), + [anon_sym_GT_EQ] = ACTIONS(1856), + [anon_sym_EQ_GT] = ACTIONS(1856), + [anon_sym_QMARK_QMARK] = ACTIONS(1856), + [anon_sym_EQ] = ACTIONS(1858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1856), + [anon_sym_null] = ACTIONS(1858), + [anon_sym_macro] = ACTIONS(1858), + [anon_sym_abstract] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_public] = ACTIONS(1858), + [anon_sym_private] = ACTIONS(1858), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_inline] = ACTIONS(1858), + [anon_sym_overload] = ACTIONS(1858), + [anon_sym_override] = ACTIONS(1858), + [anon_sym_final] = ACTIONS(1858), + [anon_sym_class] = ACTIONS(1858), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_typedef] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1858), + [anon_sym_var] = ACTIONS(1858), + [aux_sym_integer_token1] = ACTIONS(1858), + [aux_sym_integer_token2] = ACTIONS(1856), + [aux_sym_float_token1] = ACTIONS(1858), + [aux_sym_float_token2] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [aux_sym_string_token1] = ACTIONS(1856), + [aux_sym_string_token3] = ACTIONS(1856), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1856), [sym__closing_brace_unmarker] = ACTIONS(3), }, [389] = { - [sym_identifier] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2024), - [anon_sym_package] = ACTIONS(2022), - [anon_sym_import] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_using] = ACTIONS(2022), - [anon_sym_throw] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2024), - [anon_sym_switch] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_case] = ACTIONS(2022), - [anon_sym_default] = ACTIONS(2022), - [anon_sym_cast] = ACTIONS(2022), - [anon_sym_DOLLARtype] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2022), - [anon_sym_untyped] = ACTIONS(2022), - [anon_sym_break] = ACTIONS(2022), - [anon_sym_continue] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_this] = ACTIONS(2022), - [anon_sym_AT] = ACTIONS(2022), - [anon_sym_AT_COLON] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2022), - [anon_sym_catch] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(2022), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_while] = ACTIONS(2022), - [anon_sym_do] = ACTIONS(2022), - [anon_sym_new] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PLUS_PLUS] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_GT_GT_GT] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2024), - [anon_sym_BANG_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2024), - [anon_sym_EQ_GT] = ACTIONS(2024), - [anon_sym_QMARK_QMARK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2022), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2024), - [anon_sym_null] = ACTIONS(2022), - [anon_sym_macro] = ACTIONS(2022), - [anon_sym_abstract] = ACTIONS(2022), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_public] = ACTIONS(2022), - [anon_sym_private] = ACTIONS(2022), - [anon_sym_extern] = ACTIONS(2022), - [anon_sym_inline] = ACTIONS(2022), - [anon_sym_overload] = ACTIONS(2022), - [anon_sym_override] = ACTIONS(2022), - [anon_sym_final] = ACTIONS(2022), - [anon_sym_class] = ACTIONS(2022), - [anon_sym_interface] = ACTIONS(2022), - [anon_sym_enum] = ACTIONS(2022), - [anon_sym_typedef] = ACTIONS(2022), - [anon_sym_function] = ACTIONS(2022), - [anon_sym_var] = ACTIONS(2022), - [aux_sym_integer_token1] = ACTIONS(2022), - [aux_sym_integer_token2] = ACTIONS(2024), - [aux_sym_float_token1] = ACTIONS(2022), - [aux_sym_float_token2] = ACTIONS(2024), - [anon_sym_true] = ACTIONS(2022), - [anon_sym_false] = ACTIONS(2022), - [aux_sym_string_token1] = ACTIONS(2024), - [aux_sym_string_token3] = ACTIONS(2024), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2024), + [sym_identifier] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_package] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_using] = ACTIONS(1874), + [anon_sym_throw] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_cast] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1872), + [anon_sym_DOLLARtype] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_untyped] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_this] = ACTIONS(1874), + [anon_sym_QMARK] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_AT_COLON] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_catch] = ACTIONS(1874), + [anon_sym_else] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_new] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1872), + [anon_sym_PIPE_PIPE] = ACTIONS(1872), + [anon_sym_EQ_EQ] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_QMARK_QMARK] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1872), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_macro] = ACTIONS(1874), + [anon_sym_abstract] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_inline] = ACTIONS(1874), + [anon_sym_overload] = ACTIONS(1874), + [anon_sym_override] = ACTIONS(1874), + [anon_sym_final] = ACTIONS(1874), + [anon_sym_class] = ACTIONS(1874), + [anon_sym_interface] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_typedef] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(1874), + [aux_sym_integer_token1] = ACTIONS(1874), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token1] = ACTIONS(1874), + [aux_sym_float_token2] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym_string_token1] = ACTIONS(1872), + [aux_sym_string_token3] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1872), [sym__closing_brace_unmarker] = ACTIONS(3), }, [390] = { - [sym_identifier] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2028), - [anon_sym_package] = ACTIONS(2026), - [anon_sym_import] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_using] = ACTIONS(2026), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2028), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_cast] = ACTIONS(2026), - [anon_sym_DOLLARtype] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_untyped] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_this] = ACTIONS(2026), - [anon_sym_AT] = ACTIONS(2026), - [anon_sym_AT_COLON] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2026), - [anon_sym_catch] = ACTIONS(2026), - [anon_sym_else] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_new] = ACTIONS(2026), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2028), - [anon_sym_SLASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_LT_LT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_GT_GT_GT] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_EQ_EQ] = ACTIONS(2028), - [anon_sym_BANG_EQ] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2026), - [anon_sym_GT_EQ] = ACTIONS(2028), - [anon_sym_EQ_GT] = ACTIONS(2028), - [anon_sym_QMARK_QMARK] = ACTIONS(2028), - [anon_sym_EQ] = ACTIONS(2026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2028), - [anon_sym_null] = ACTIONS(2026), - [anon_sym_macro] = ACTIONS(2026), - [anon_sym_abstract] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_public] = ACTIONS(2026), - [anon_sym_private] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [anon_sym_overload] = ACTIONS(2026), - [anon_sym_override] = ACTIONS(2026), - [anon_sym_final] = ACTIONS(2026), - [anon_sym_class] = ACTIONS(2026), - [anon_sym_interface] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_var] = ACTIONS(2026), - [aux_sym_integer_token1] = ACTIONS(2026), - [aux_sym_integer_token2] = ACTIONS(2028), - [aux_sym_float_token1] = ACTIONS(2026), - [aux_sym_float_token2] = ACTIONS(2028), - [anon_sym_true] = ACTIONS(2026), - [anon_sym_false] = ACTIONS(2026), - [aux_sym_string_token1] = ACTIONS(2028), - [aux_sym_string_token3] = ACTIONS(2028), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2028), + [sym_else_clause] = STATE(606), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_case] = ACTIONS(2606), + [anon_sym_default] = ACTIONS(2606), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_catch] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2610), + [sym__closing_brace_marker] = ACTIONS(2608), [sym__closing_brace_unmarker] = ACTIONS(3), }, [391] = { - [sym_identifier] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2032), - [anon_sym_package] = ACTIONS(2030), - [anon_sym_import] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2032), - [anon_sym_using] = ACTIONS(2030), - [anon_sym_throw] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2032), - [anon_sym_switch] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_case] = ACTIONS(2030), - [anon_sym_default] = ACTIONS(2030), - [anon_sym_cast] = ACTIONS(2030), - [anon_sym_DOLLARtype] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_untyped] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_this] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2030), - [anon_sym_AT_COLON] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2030), - [anon_sym_catch] = ACTIONS(2030), - [anon_sym_else] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [anon_sym_do] = ACTIONS(2030), - [anon_sym_new] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2032), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_PERCENT] = ACTIONS(2032), - [anon_sym_SLASH] = ACTIONS(2030), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_GT_GT_GT] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_CARET] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_EQ_EQ] = ACTIONS(2032), - [anon_sym_BANG_EQ] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_LT_EQ] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2030), - [anon_sym_GT_EQ] = ACTIONS(2032), - [anon_sym_EQ_GT] = ACTIONS(2032), - [anon_sym_QMARK_QMARK] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(2030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2032), - [anon_sym_null] = ACTIONS(2030), - [anon_sym_macro] = ACTIONS(2030), - [anon_sym_abstract] = ACTIONS(2030), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_public] = ACTIONS(2030), - [anon_sym_private] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2030), - [anon_sym_inline] = ACTIONS(2030), - [anon_sym_overload] = ACTIONS(2030), - [anon_sym_override] = ACTIONS(2030), - [anon_sym_final] = ACTIONS(2030), - [anon_sym_class] = ACTIONS(2030), - [anon_sym_interface] = ACTIONS(2030), - [anon_sym_enum] = ACTIONS(2030), - [anon_sym_typedef] = ACTIONS(2030), - [anon_sym_function] = ACTIONS(2030), - [anon_sym_var] = ACTIONS(2030), - [aux_sym_integer_token1] = ACTIONS(2030), - [aux_sym_integer_token2] = ACTIONS(2032), - [aux_sym_float_token1] = ACTIONS(2030), - [aux_sym_float_token2] = ACTIONS(2032), - [anon_sym_true] = ACTIONS(2030), - [anon_sym_false] = ACTIONS(2030), - [aux_sym_string_token1] = ACTIONS(2032), - [aux_sym_string_token3] = ACTIONS(2032), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2032), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [392] = { - [sym_identifier] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2036), - [anon_sym_package] = ACTIONS(2034), - [anon_sym_import] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2034), - [anon_sym_throw] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2036), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_cast] = ACTIONS(2034), - [anon_sym_DOLLARtype] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_untyped] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_this] = ACTIONS(2034), - [anon_sym_AT] = ACTIONS(2034), - [anon_sym_AT_COLON] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2034), - [anon_sym_catch] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_new] = ACTIONS(2034), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_PERCENT] = ACTIONS(2036), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_GT_GT_GT] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2034), - [anon_sym_GT_EQ] = ACTIONS(2036), - [anon_sym_EQ_GT] = ACTIONS(2036), - [anon_sym_QMARK_QMARK] = ACTIONS(2036), - [anon_sym_EQ] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2034), - [anon_sym_macro] = ACTIONS(2034), - [anon_sym_abstract] = ACTIONS(2034), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym_inline] = ACTIONS(2034), - [anon_sym_overload] = ACTIONS(2034), - [anon_sym_override] = ACTIONS(2034), - [anon_sym_final] = ACTIONS(2034), - [anon_sym_class] = ACTIONS(2034), - [anon_sym_interface] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_typedef] = ACTIONS(2034), - [anon_sym_function] = ACTIONS(2034), - [anon_sym_var] = ACTIONS(2034), - [aux_sym_integer_token1] = ACTIONS(2034), - [aux_sym_integer_token2] = ACTIONS(2036), - [aux_sym_float_token1] = ACTIONS(2034), - [aux_sym_float_token2] = ACTIONS(2036), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [aux_sym_string_token1] = ACTIONS(2036), - [aux_sym_string_token3] = ACTIONS(2036), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_package] = ACTIONS(2612), + [anon_sym_import] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_using] = ACTIONS(2612), + [anon_sym_throw] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_cast] = ACTIONS(2612), + [anon_sym_DOLLARtype] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_untyped] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_this] = ACTIONS(2612), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_AT_COLON] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2612), + [anon_sym_catch] = ACTIONS(2612), + [anon_sym_else] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_new] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PERCENT] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_LT_LT] = ACTIONS(2614), + [anon_sym_GT_GT] = ACTIONS(2612), + [anon_sym_GT_GT_GT] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(2614), + [anon_sym_PIPE_PIPE] = ACTIONS(2614), + [anon_sym_EQ_EQ] = ACTIONS(2614), + [anon_sym_BANG_EQ] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_LT_EQ] = ACTIONS(2614), + [anon_sym_GT] = ACTIONS(2612), + [anon_sym_GT_EQ] = ACTIONS(2614), + [anon_sym_EQ_GT] = ACTIONS(2614), + [anon_sym_QMARK_QMARK] = ACTIONS(2614), + [anon_sym_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), + [anon_sym_null] = ACTIONS(2612), + [anon_sym_macro] = ACTIONS(2612), + [anon_sym_abstract] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym_overload] = ACTIONS(2612), + [anon_sym_override] = ACTIONS(2612), + [anon_sym_final] = ACTIONS(2612), + [anon_sym_class] = ACTIONS(2612), + [anon_sym_interface] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_function] = ACTIONS(2612), + [anon_sym_var] = ACTIONS(2612), + [aux_sym_integer_token1] = ACTIONS(2612), + [aux_sym_integer_token2] = ACTIONS(2614), + [aux_sym_float_token1] = ACTIONS(2612), + [aux_sym_float_token2] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [aux_sym_string_token1] = ACTIONS(2614), + [aux_sym_string_token3] = ACTIONS(2614), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2616), + [sym__closing_brace_marker] = ACTIONS(2614), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [392] = { + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(2618), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1778), [sym__closing_brace_unmarker] = ACTIONS(3), }, [393] = { - [sym_identifier] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2040), - [anon_sym_package] = ACTIONS(2038), - [anon_sym_import] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_using] = ACTIONS(2038), - [anon_sym_throw] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_cast] = ACTIONS(2038), - [anon_sym_DOLLARtype] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_untyped] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(2038), - [anon_sym_AT] = ACTIONS(2038), - [anon_sym_AT_COLON] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2038), - [anon_sym_catch] = ACTIONS(2038), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_new] = ACTIONS(2038), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PERCENT] = ACTIONS(2040), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_GT_GT] = ACTIONS(2038), - [anon_sym_GT_GT_GT] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP_AMP] = ACTIONS(2040), - [anon_sym_PIPE_PIPE] = ACTIONS(2040), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2040), - [anon_sym_EQ_GT] = ACTIONS(2040), - [anon_sym_QMARK_QMARK] = ACTIONS(2040), - [anon_sym_EQ] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2040), - [anon_sym_null] = ACTIONS(2038), - [anon_sym_macro] = ACTIONS(2038), - [anon_sym_abstract] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_public] = ACTIONS(2038), - [anon_sym_private] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [anon_sym_overload] = ACTIONS(2038), - [anon_sym_override] = ACTIONS(2038), - [anon_sym_final] = ACTIONS(2038), - [anon_sym_class] = ACTIONS(2038), - [anon_sym_interface] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_function] = ACTIONS(2038), - [anon_sym_var] = ACTIONS(2038), - [aux_sym_integer_token1] = ACTIONS(2038), - [aux_sym_integer_token2] = ACTIONS(2040), - [aux_sym_float_token1] = ACTIONS(2038), - [aux_sym_float_token2] = ACTIONS(2040), - [anon_sym_true] = ACTIONS(2038), - [anon_sym_false] = ACTIONS(2038), - [aux_sym_string_token1] = ACTIONS(2040), - [aux_sym_string_token3] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2040), + [sym_identifier] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_package] = ACTIONS(1626), + [anon_sym_DOT] = ACTIONS(1626), + [anon_sym_import] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_using] = ACTIONS(1626), + [anon_sym_throw] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_switch] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(2618), + [anon_sym_cast] = ACTIONS(1626), + [anon_sym_DOLLARtype] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_untyped] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_AT_COLON] = ACTIONS(1624), + [anon_sym_try] = ACTIONS(1626), + [anon_sym_catch] = ACTIONS(1626), + [anon_sym_else] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_do] = ACTIONS(1626), + [anon_sym_new] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_PLUS_PLUS] = ACTIONS(1624), + [anon_sym_DASH_DASH] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_LT_LT] = ACTIONS(1624), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_GT_GT_GT] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_PIPE_PIPE] = ACTIONS(1624), + [anon_sym_EQ_EQ] = ACTIONS(1624), + [anon_sym_BANG_EQ] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_LT_EQ] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_GT_EQ] = ACTIONS(1624), + [anon_sym_EQ_GT] = ACTIONS(1624), + [anon_sym_QMARK_QMARK] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [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_enum] = 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(1624), + [aux_sym_float_token1] = ACTIONS(1626), + [aux_sym_float_token2] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [aux_sym_string_token1] = ACTIONS(1624), + [aux_sym_string_token3] = ACTIONS(1624), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1624), [sym__closing_brace_unmarker] = ACTIONS(3), }, [394] = { - [sym_identifier] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2044), - [anon_sym_package] = ACTIONS(2042), - [anon_sym_import] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_using] = ACTIONS(2042), - [anon_sym_throw] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_switch] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_case] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_cast] = ACTIONS(2042), - [anon_sym_DOLLARtype] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_untyped] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_this] = ACTIONS(2042), - [anon_sym_AT] = ACTIONS(2042), - [anon_sym_AT_COLON] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2042), - [anon_sym_catch] = ACTIONS(2042), - [anon_sym_else] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_do] = ACTIONS(2042), - [anon_sym_new] = ACTIONS(2042), - [anon_sym_TILDE] = ACTIONS(2044), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_PLUS_PLUS] = ACTIONS(2044), - [anon_sym_DASH_DASH] = ACTIONS(2044), - [anon_sym_PERCENT] = ACTIONS(2044), - [anon_sym_SLASH] = ACTIONS(2042), - [anon_sym_PLUS] = ACTIONS(2042), - [anon_sym_LT_LT] = ACTIONS(2044), - [anon_sym_GT_GT] = ACTIONS(2042), - [anon_sym_GT_GT_GT] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_CARET] = ACTIONS(2044), - [anon_sym_AMP_AMP] = ACTIONS(2044), - [anon_sym_PIPE_PIPE] = ACTIONS(2044), - [anon_sym_EQ_EQ] = ACTIONS(2044), - [anon_sym_BANG_EQ] = ACTIONS(2044), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_LT_EQ] = ACTIONS(2044), - [anon_sym_GT] = ACTIONS(2042), - [anon_sym_GT_EQ] = ACTIONS(2044), - [anon_sym_EQ_GT] = ACTIONS(2044), - [anon_sym_QMARK_QMARK] = ACTIONS(2044), - [anon_sym_EQ] = ACTIONS(2042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2044), - [anon_sym_null] = ACTIONS(2042), - [anon_sym_macro] = ACTIONS(2042), - [anon_sym_abstract] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_public] = ACTIONS(2042), - [anon_sym_private] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym_inline] = ACTIONS(2042), - [anon_sym_overload] = ACTIONS(2042), - [anon_sym_override] = ACTIONS(2042), - [anon_sym_final] = ACTIONS(2042), - [anon_sym_class] = ACTIONS(2042), - [anon_sym_interface] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_typedef] = ACTIONS(2042), - [anon_sym_function] = ACTIONS(2042), - [anon_sym_var] = ACTIONS(2042), - [aux_sym_integer_token1] = ACTIONS(2042), - [aux_sym_integer_token2] = ACTIONS(2044), - [aux_sym_float_token1] = ACTIONS(2042), - [aux_sym_float_token2] = ACTIONS(2044), - [anon_sym_true] = ACTIONS(2042), - [anon_sym_false] = ACTIONS(2042), - [aux_sym_string_token1] = ACTIONS(2044), - [aux_sym_string_token3] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2044), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(2622), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(2624), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [395] = { - [sym_identifier] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2048), - [anon_sym_package] = ACTIONS(2046), - [anon_sym_import] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_using] = ACTIONS(2046), - [anon_sym_throw] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_switch] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_case] = ACTIONS(2046), - [anon_sym_default] = ACTIONS(2046), - [anon_sym_cast] = ACTIONS(2046), - [anon_sym_DOLLARtype] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_untyped] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2046), - [anon_sym_continue] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_this] = ACTIONS(2046), - [anon_sym_AT] = ACTIONS(2046), - [anon_sym_AT_COLON] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2046), - [anon_sym_catch] = ACTIONS(2046), - [anon_sym_else] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_do] = ACTIONS(2046), - [anon_sym_new] = ACTIONS(2046), - [anon_sym_TILDE] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_PLUS_PLUS] = ACTIONS(2048), - [anon_sym_DASH_DASH] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH] = ACTIONS(2046), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2046), - [anon_sym_GT_GT_GT] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_LT_EQ] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2046), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_QMARK_QMARK] = ACTIONS(2048), - [anon_sym_EQ] = ACTIONS(2046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_null] = ACTIONS(2046), - [anon_sym_macro] = ACTIONS(2046), - [anon_sym_abstract] = ACTIONS(2046), - [anon_sym_static] = ACTIONS(2046), - [anon_sym_public] = ACTIONS(2046), - [anon_sym_private] = ACTIONS(2046), - [anon_sym_extern] = ACTIONS(2046), - [anon_sym_inline] = ACTIONS(2046), - [anon_sym_overload] = ACTIONS(2046), - [anon_sym_override] = ACTIONS(2046), - [anon_sym_final] = ACTIONS(2046), - [anon_sym_class] = ACTIONS(2046), - [anon_sym_interface] = ACTIONS(2046), - [anon_sym_enum] = ACTIONS(2046), - [anon_sym_typedef] = ACTIONS(2046), - [anon_sym_function] = ACTIONS(2046), - [anon_sym_var] = ACTIONS(2046), - [aux_sym_integer_token1] = ACTIONS(2046), - [aux_sym_integer_token2] = ACTIONS(2048), - [aux_sym_float_token1] = ACTIONS(2046), - [aux_sym_float_token2] = ACTIONS(2048), - [anon_sym_true] = ACTIONS(2046), - [anon_sym_false] = ACTIONS(2046), - [aux_sym_string_token1] = ACTIONS(2048), - [aux_sym_string_token3] = ACTIONS(2048), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2048), + [ts_builtin_sym_end] = ACTIONS(2604), + [sym_identifier] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2604), + [anon_sym_package] = ACTIONS(2602), + [anon_sym_DOT] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_using] = ACTIONS(2602), + [anon_sym_throw] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_cast] = ACTIONS(2602), + [anon_sym_DOLLARtype] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_untyped] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym_this] = ACTIONS(2602), + [anon_sym_QMARK] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_AT_COLON] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2602), + [anon_sym_catch] = ACTIONS(2602), + [anon_sym_else] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_new] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_LT_LT] = ACTIONS(1852), + [anon_sym_GT_GT] = ACTIONS(1854), + [anon_sym_GT_GT_GT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym_AMP_AMP] = ACTIONS(1852), + [anon_sym_PIPE_PIPE] = ACTIONS(1852), + [anon_sym_EQ_EQ] = ACTIONS(1852), + [anon_sym_BANG_EQ] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_LT_EQ] = ACTIONS(1852), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_GT_EQ] = ACTIONS(1852), + [anon_sym_EQ_GT] = ACTIONS(1852), + [anon_sym_QMARK_QMARK] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1852), + [anon_sym_null] = ACTIONS(2602), + [anon_sym_macro] = ACTIONS(2602), + [anon_sym_abstract] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_public] = ACTIONS(2602), + [anon_sym_private] = ACTIONS(2602), + [anon_sym_extern] = ACTIONS(2602), + [anon_sym_inline] = ACTIONS(2602), + [anon_sym_overload] = ACTIONS(2602), + [anon_sym_override] = ACTIONS(2602), + [anon_sym_final] = ACTIONS(2602), + [anon_sym_class] = ACTIONS(2602), + [anon_sym_interface] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), + [anon_sym_typedef] = ACTIONS(2602), + [anon_sym_function] = ACTIONS(2602), + [anon_sym_var] = ACTIONS(2602), + [aux_sym_integer_token1] = ACTIONS(2602), + [aux_sym_integer_token2] = ACTIONS(2604), + [aux_sym_float_token1] = ACTIONS(2602), + [aux_sym_float_token2] = ACTIONS(2604), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [aux_sym_string_token1] = ACTIONS(2604), + [aux_sym_string_token3] = ACTIONS(2604), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1852), [sym__closing_brace_unmarker] = ACTIONS(3), }, [396] = { - [sym_identifier] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2052), - [anon_sym_package] = ACTIONS(2050), - [anon_sym_import] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_using] = ACTIONS(2050), - [anon_sym_throw] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_cast] = ACTIONS(2050), - [anon_sym_DOLLARtype] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_untyped] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_this] = ACTIONS(2050), - [anon_sym_AT] = ACTIONS(2050), - [anon_sym_AT_COLON] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2050), - [anon_sym_catch] = ACTIONS(2050), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PERCENT] = ACTIONS(2052), - [anon_sym_SLASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_LT_LT] = ACTIONS(2052), - [anon_sym_GT_GT] = ACTIONS(2050), - [anon_sym_GT_GT_GT] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_EQ_EQ] = ACTIONS(2052), - [anon_sym_BANG_EQ] = ACTIONS(2052), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_LT_EQ] = ACTIONS(2052), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2052), - [anon_sym_EQ_GT] = ACTIONS(2052), - [anon_sym_QMARK_QMARK] = ACTIONS(2052), - [anon_sym_EQ] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2052), - [anon_sym_null] = ACTIONS(2050), - [anon_sym_macro] = ACTIONS(2050), - [anon_sym_abstract] = ACTIONS(2050), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_public] = ACTIONS(2050), - [anon_sym_private] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [anon_sym_overload] = ACTIONS(2050), - [anon_sym_override] = ACTIONS(2050), - [anon_sym_final] = ACTIONS(2050), - [anon_sym_class] = ACTIONS(2050), - [anon_sym_interface] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_function] = ACTIONS(2050), - [anon_sym_var] = ACTIONS(2050), - [aux_sym_integer_token1] = ACTIONS(2050), - [aux_sym_integer_token2] = ACTIONS(2052), - [aux_sym_float_token1] = ACTIONS(2050), - [aux_sym_float_token2] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2050), - [anon_sym_false] = ACTIONS(2050), - [aux_sym_string_token1] = ACTIONS(2052), - [aux_sym_string_token3] = ACTIONS(2052), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2626), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_package] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_using] = ACTIONS(2626), + [anon_sym_throw] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2626), + [anon_sym_default] = ACTIONS(2626), + [anon_sym_cast] = ACTIONS(2626), + [anon_sym_DOLLARtype] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_untyped] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2626), + [anon_sym_continue] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_this] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2626), + [anon_sym_AT_COLON] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_catch] = ACTIONS(2626), + [anon_sym_else] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_do] = ACTIONS(2626), + [anon_sym_new] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_SLASH] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2626), + [anon_sym_LT_LT] = ACTIONS(2628), + [anon_sym_GT_GT] = ACTIONS(2626), + [anon_sym_GT_GT_GT] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_PIPE] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_EQ] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2626), + [anon_sym_LT_EQ] = ACTIONS(2628), + [anon_sym_GT] = ACTIONS(2626), + [anon_sym_GT_EQ] = ACTIONS(2628), + [anon_sym_EQ_GT] = ACTIONS(2628), + [anon_sym_QMARK_QMARK] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2626), + [anon_sym_macro] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2626), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_extern] = ACTIONS(2626), + [anon_sym_inline] = ACTIONS(2626), + [anon_sym_overload] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_final] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_interface] = ACTIONS(2626), + [anon_sym_enum] = ACTIONS(2626), + [anon_sym_typedef] = ACTIONS(2626), + [anon_sym_function] = ACTIONS(2626), + [anon_sym_var] = ACTIONS(2626), + [aux_sym_integer_token1] = ACTIONS(2626), + [aux_sym_integer_token2] = ACTIONS(2628), + [aux_sym_float_token1] = ACTIONS(2626), + [aux_sym_float_token2] = ACTIONS(2628), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [aux_sym_string_token1] = ACTIONS(2628), + [aux_sym_string_token3] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2630), + [sym__closing_brace_marker] = ACTIONS(2628), [sym__closing_brace_unmarker] = ACTIONS(3), }, [397] = { - [sym_identifier] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2056), - [anon_sym_package] = ACTIONS(2054), - [anon_sym_import] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_using] = ACTIONS(2054), - [anon_sym_throw] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_switch] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_case] = ACTIONS(2054), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_cast] = ACTIONS(2054), - [anon_sym_DOLLARtype] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2054), - [anon_sym_untyped] = ACTIONS(2054), - [anon_sym_break] = ACTIONS(2054), - [anon_sym_continue] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(2054), - [anon_sym_AT] = ACTIONS(2054), - [anon_sym_AT_COLON] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2054), - [anon_sym_catch] = ACTIONS(2054), - [anon_sym_else] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_do] = ACTIONS(2054), - [anon_sym_new] = ACTIONS(2054), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_PLUS_PLUS] = ACTIONS(2056), - [anon_sym_DASH_DASH] = ACTIONS(2056), - [anon_sym_PERCENT] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2054), - [anon_sym_PLUS] = ACTIONS(2054), - [anon_sym_LT_LT] = ACTIONS(2056), - [anon_sym_GT_GT] = ACTIONS(2054), - [anon_sym_GT_GT_GT] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_EQ_EQ] = ACTIONS(2056), - [anon_sym_BANG_EQ] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_LT_EQ] = ACTIONS(2056), - [anon_sym_GT] = ACTIONS(2054), - [anon_sym_GT_EQ] = ACTIONS(2056), - [anon_sym_EQ_GT] = ACTIONS(2056), - [anon_sym_QMARK_QMARK] = ACTIONS(2056), - [anon_sym_EQ] = ACTIONS(2054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2054), - [anon_sym_macro] = ACTIONS(2054), - [anon_sym_abstract] = ACTIONS(2054), - [anon_sym_static] = ACTIONS(2054), - [anon_sym_public] = ACTIONS(2054), - [anon_sym_private] = ACTIONS(2054), - [anon_sym_extern] = ACTIONS(2054), - [anon_sym_inline] = ACTIONS(2054), - [anon_sym_overload] = ACTIONS(2054), - [anon_sym_override] = ACTIONS(2054), - [anon_sym_final] = ACTIONS(2054), - [anon_sym_class] = ACTIONS(2054), - [anon_sym_interface] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), - [anon_sym_typedef] = ACTIONS(2054), - [anon_sym_function] = ACTIONS(2054), - [anon_sym_var] = ACTIONS(2054), - [aux_sym_integer_token1] = ACTIONS(2054), - [aux_sym_integer_token2] = ACTIONS(2056), - [aux_sym_float_token1] = ACTIONS(2054), - [aux_sym_float_token2] = ACTIONS(2056), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [aux_sym_string_token1] = ACTIONS(2056), - [aux_sym_string_token3] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2056), + [sym__rangeOperator] = STATE(2481), + [sym_identifier] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_package] = ACTIONS(1452), + [anon_sym_import] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_throw] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_this] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AT_COLON] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_GT_GT_GT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [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(1452), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_QMARK_QMARK] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2480), + [anon_sym_null] = ACTIONS(1452), + [anon_sym_macro] = ACTIONS(1452), + [anon_sym_abstract] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_public] = ACTIONS(1452), + [anon_sym_private] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym_overload] = ACTIONS(1452), + [anon_sym_override] = ACTIONS(1452), + [anon_sym_final] = ACTIONS(1452), + [anon_sym_class] = ACTIONS(1452), + [anon_sym_interface] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_function] = ACTIONS(1452), + [anon_sym_var] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1452), + [aux_sym_integer_token2] = ACTIONS(1448), + [aux_sym_float_token1] = ACTIONS(1452), + [aux_sym_float_token2] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1448), + [aux_sym_string_token3] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1448), [sym__closing_brace_unmarker] = ACTIONS(3), }, [398] = { - [sym_identifier] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2060), - [anon_sym_package] = ACTIONS(2058), - [anon_sym_import] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_using] = ACTIONS(2058), - [anon_sym_throw] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_cast] = ACTIONS(2058), - [anon_sym_DOLLARtype] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_untyped] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_this] = ACTIONS(2058), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_AT_COLON] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2058), - [anon_sym_catch] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_new] = ACTIONS(2058), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_GT_GT_GT] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_EQ_GT] = ACTIONS(2060), - [anon_sym_QMARK_QMARK] = ACTIONS(2060), - [anon_sym_EQ] = ACTIONS(2058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2060), - [anon_sym_null] = ACTIONS(2058), - [anon_sym_macro] = ACTIONS(2058), - [anon_sym_abstract] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_public] = ACTIONS(2058), - [anon_sym_private] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [anon_sym_overload] = ACTIONS(2058), - [anon_sym_override] = ACTIONS(2058), - [anon_sym_final] = ACTIONS(2058), - [anon_sym_class] = ACTIONS(2058), - [anon_sym_interface] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_function] = ACTIONS(2058), - [anon_sym_var] = ACTIONS(2058), - [aux_sym_integer_token1] = ACTIONS(2058), - [aux_sym_integer_token2] = ACTIONS(2060), - [aux_sym_float_token1] = ACTIONS(2058), - [aux_sym_float_token2] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [aux_sym_string_token1] = ACTIONS(2060), - [aux_sym_string_token3] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2060), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_package] = ACTIONS(1626), + [anon_sym_DOT] = ACTIONS(1626), + [anon_sym_import] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_using] = ACTIONS(1626), + [anon_sym_throw] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_switch] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(2622), + [anon_sym_cast] = ACTIONS(1626), + [anon_sym_DOLLARtype] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_untyped] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_AT_COLON] = ACTIONS(1624), + [anon_sym_try] = ACTIONS(1626), + [anon_sym_catch] = ACTIONS(1626), + [anon_sym_else] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_do] = ACTIONS(1626), + [anon_sym_new] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_PLUS_PLUS] = ACTIONS(1624), + [anon_sym_DASH_DASH] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_LT_LT] = ACTIONS(1624), + [anon_sym_GT_GT] = ACTIONS(1626), + [anon_sym_GT_GT_GT] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_PIPE_PIPE] = ACTIONS(1624), + [anon_sym_EQ_EQ] = ACTIONS(1624), + [anon_sym_BANG_EQ] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_LT_EQ] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_GT_EQ] = ACTIONS(1624), + [anon_sym_EQ_GT] = ACTIONS(1624), + [anon_sym_QMARK_QMARK] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), + [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_enum] = 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(1624), + [aux_sym_float_token1] = ACTIONS(1626), + [aux_sym_float_token2] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [aux_sym_string_token1] = ACTIONS(1624), + [aux_sym_string_token3] = ACTIONS(1624), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [399] = { - [sym_identifier] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2064), - [anon_sym_package] = ACTIONS(2062), - [anon_sym_import] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_using] = ACTIONS(2062), - [anon_sym_throw] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_switch] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_case] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_cast] = ACTIONS(2062), - [anon_sym_DOLLARtype] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(2062), - [anon_sym_untyped] = ACTIONS(2062), - [anon_sym_break] = ACTIONS(2062), - [anon_sym_continue] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_this] = ACTIONS(2062), - [anon_sym_AT] = ACTIONS(2062), - [anon_sym_AT_COLON] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2062), - [anon_sym_catch] = ACTIONS(2062), - [anon_sym_else] = ACTIONS(2062), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_do] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2062), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_PLUS_PLUS] = ACTIONS(2064), - [anon_sym_DASH_DASH] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_GT_GT_GT] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_BANG_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_LT_EQ] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_GT_EQ] = ACTIONS(2064), - [anon_sym_EQ_GT] = ACTIONS(2064), - [anon_sym_QMARK_QMARK] = ACTIONS(2064), - [anon_sym_EQ] = ACTIONS(2062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2064), - [anon_sym_null] = ACTIONS(2062), - [anon_sym_macro] = ACTIONS(2062), - [anon_sym_abstract] = ACTIONS(2062), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_public] = ACTIONS(2062), - [anon_sym_private] = ACTIONS(2062), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym_inline] = ACTIONS(2062), - [anon_sym_overload] = ACTIONS(2062), - [anon_sym_override] = ACTIONS(2062), - [anon_sym_final] = ACTIONS(2062), - [anon_sym_class] = ACTIONS(2062), - [anon_sym_interface] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_typedef] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2062), - [anon_sym_var] = ACTIONS(2062), - [aux_sym_integer_token1] = ACTIONS(2062), - [aux_sym_integer_token2] = ACTIONS(2064), - [aux_sym_float_token1] = ACTIONS(2062), - [aux_sym_float_token2] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(2062), - [anon_sym_false] = ACTIONS(2062), - [aux_sym_string_token1] = ACTIONS(2064), - [aux_sym_string_token3] = ACTIONS(2064), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2064), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(2618), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1778), [sym__closing_brace_unmarker] = ACTIONS(3), }, [400] = { - [sym_identifier] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2068), - [anon_sym_package] = ACTIONS(2066), - [anon_sym_import] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_using] = ACTIONS(2066), - [anon_sym_throw] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_switch] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_case] = ACTIONS(2066), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_cast] = ACTIONS(2066), - [anon_sym_DOLLARtype] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_untyped] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_this] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2066), - [anon_sym_AT_COLON] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2066), - [anon_sym_catch] = ACTIONS(2066), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_new] = ACTIONS(2066), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_PLUS_PLUS] = ACTIONS(2068), - [anon_sym_DASH_DASH] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_GT_GT_GT] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_CARET] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_BANG_EQ] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_LT_EQ] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_GT_EQ] = ACTIONS(2068), - [anon_sym_EQ_GT] = ACTIONS(2068), - [anon_sym_QMARK_QMARK] = ACTIONS(2068), - [anon_sym_EQ] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2068), - [anon_sym_null] = ACTIONS(2066), - [anon_sym_macro] = ACTIONS(2066), - [anon_sym_abstract] = ACTIONS(2066), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_public] = ACTIONS(2066), - [anon_sym_private] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym_inline] = ACTIONS(2066), - [anon_sym_overload] = ACTIONS(2066), - [anon_sym_override] = ACTIONS(2066), - [anon_sym_final] = ACTIONS(2066), - [anon_sym_class] = ACTIONS(2066), - [anon_sym_interface] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [anon_sym_typedef] = ACTIONS(2066), - [anon_sym_function] = ACTIONS(2066), - [anon_sym_var] = ACTIONS(2066), - [aux_sym_integer_token1] = ACTIONS(2066), - [aux_sym_integer_token2] = ACTIONS(2068), - [aux_sym_float_token1] = ACTIONS(2066), - [aux_sym_float_token2] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [aux_sym_string_token1] = ACTIONS(2068), - [aux_sym_string_token3] = ACTIONS(2068), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2068), + [sym_else_clause] = STATE(606), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_case] = ACTIONS(2606), + [anon_sym_default] = ACTIONS(2606), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_catch] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2608), [sym__closing_brace_unmarker] = ACTIONS(3), }, [401] = { - [sym_identifier] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2072), - [anon_sym_package] = ACTIONS(2070), - [anon_sym_import] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_using] = ACTIONS(2070), - [anon_sym_throw] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_cast] = ACTIONS(2070), - [anon_sym_DOLLARtype] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_untyped] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_this] = ACTIONS(2070), - [anon_sym_AT] = ACTIONS(2070), - [anon_sym_AT_COLON] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2070), - [anon_sym_catch] = ACTIONS(2070), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2070), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2070), - [anon_sym_GT_GT_GT] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_EQ_EQ] = ACTIONS(2072), - [anon_sym_BANG_EQ] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_LT_EQ] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2070), - [anon_sym_GT_EQ] = ACTIONS(2072), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_QMARK_QMARK] = ACTIONS(2072), - [anon_sym_EQ] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2070), - [anon_sym_macro] = ACTIONS(2070), - [anon_sym_abstract] = ACTIONS(2070), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_public] = ACTIONS(2070), - [anon_sym_private] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [anon_sym_overload] = ACTIONS(2070), - [anon_sym_override] = ACTIONS(2070), - [anon_sym_final] = ACTIONS(2070), - [anon_sym_class] = ACTIONS(2070), - [anon_sym_interface] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_function] = ACTIONS(2070), - [anon_sym_var] = ACTIONS(2070), - [aux_sym_integer_token1] = ACTIONS(2070), - [aux_sym_integer_token2] = ACTIONS(2072), - [aux_sym_float_token1] = ACTIONS(2070), - [aux_sym_float_token2] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [aux_sym_string_token1] = ACTIONS(2072), - [aux_sym_string_token3] = ACTIONS(2072), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2072), + [ts_builtin_sym_end] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_package] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_import] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_using] = ACTIONS(1908), + [anon_sym_throw] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_cast] = ACTIONS(1908), + [anon_sym_DOLLARtype] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_untyped] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_this] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_AT_COLON] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1908), + [anon_sym_catch] = ACTIONS(1908), + [anon_sym_else] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_new] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_PERCENT] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_LT_LT] = ACTIONS(1906), + [anon_sym_GT_GT] = ACTIONS(1908), + [anon_sym_GT_GT_GT] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [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(1908), + [anon_sym_LT_EQ] = ACTIONS(1906), + [anon_sym_GT] = ACTIONS(1908), + [anon_sym_GT_EQ] = ACTIONS(1906), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_QMARK] = ACTIONS(1906), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1906), + [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_enum] = 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(1906), + [aux_sym_float_token1] = ACTIONS(1908), + [aux_sym_float_token2] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [aux_sym_string_token1] = ACTIONS(1906), + [aux_sym_string_token3] = ACTIONS(1906), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1906), [sym__closing_brace_unmarker] = ACTIONS(3), }, [402] = { - [sym_identifier] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_package] = ACTIONS(2074), - [anon_sym_import] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_using] = ACTIONS(2074), - [anon_sym_throw] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_switch] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_case] = ACTIONS(2074), - [anon_sym_default] = ACTIONS(2074), - [anon_sym_cast] = ACTIONS(2074), - [anon_sym_DOLLARtype] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2074), - [anon_sym_untyped] = ACTIONS(2074), - [anon_sym_break] = ACTIONS(2074), - [anon_sym_continue] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_this] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2074), - [anon_sym_AT_COLON] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2074), - [anon_sym_catch] = ACTIONS(2074), - [anon_sym_else] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_do] = ACTIONS(2074), - [anon_sym_new] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2074), - [anon_sym_PLUS] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2074), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_QMARK_QMARK] = ACTIONS(2076), - [anon_sym_EQ] = ACTIONS(2074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2076), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_macro] = ACTIONS(2074), - [anon_sym_abstract] = ACTIONS(2074), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_public] = ACTIONS(2074), - [anon_sym_private] = ACTIONS(2074), - [anon_sym_extern] = ACTIONS(2074), - [anon_sym_inline] = ACTIONS(2074), - [anon_sym_overload] = ACTIONS(2074), - [anon_sym_override] = ACTIONS(2074), - [anon_sym_final] = ACTIONS(2074), - [anon_sym_class] = ACTIONS(2074), - [anon_sym_interface] = ACTIONS(2074), - [anon_sym_enum] = ACTIONS(2074), - [anon_sym_typedef] = ACTIONS(2074), - [anon_sym_function] = ACTIONS(2074), - [anon_sym_var] = ACTIONS(2074), - [aux_sym_integer_token1] = ACTIONS(2074), - [aux_sym_integer_token2] = ACTIONS(2076), - [aux_sym_float_token1] = ACTIONS(2074), - [aux_sym_float_token2] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [aux_sym_string_token1] = ACTIONS(2076), - [aux_sym_string_token3] = ACTIONS(2076), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2076), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_package] = ACTIONS(1866), + [anon_sym_DOT] = ACTIONS(1866), + [anon_sym_import] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1866), + [anon_sym_throw] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_cast] = ACTIONS(1866), + [anon_sym_DOLLARtype] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_untyped] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_this] = ACTIONS(1866), + [anon_sym_QMARK] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_AT_COLON] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_new] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1864), + [anon_sym_PERCENT] = ACTIONS(1864), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_LT_LT] = ACTIONS(1864), + [anon_sym_GT_GT] = ACTIONS(1866), + [anon_sym_GT_GT_GT] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1864), + [anon_sym_EQ_EQ] = ACTIONS(1864), + [anon_sym_BANG_EQ] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1864), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1864), + [anon_sym_EQ_GT] = ACTIONS(1864), + [anon_sym_QMARK_QMARK] = ACTIONS(1864), + [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1864), + [anon_sym_null] = ACTIONS(1866), + [anon_sym_macro] = ACTIONS(1866), + [anon_sym_abstract] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_public] = ACTIONS(1866), + [anon_sym_private] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_inline] = ACTIONS(1866), + [anon_sym_overload] = ACTIONS(1866), + [anon_sym_override] = ACTIONS(1866), + [anon_sym_final] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_typedef] = ACTIONS(1866), + [anon_sym_function] = ACTIONS(1866), + [anon_sym_var] = ACTIONS(1866), + [aux_sym_integer_token1] = ACTIONS(1866), + [aux_sym_integer_token2] = ACTIONS(1864), + [aux_sym_float_token1] = ACTIONS(1866), + [aux_sym_float_token2] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [aux_sym_string_token1] = ACTIONS(1864), + [aux_sym_string_token3] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1864), [sym__closing_brace_unmarker] = ACTIONS(3), }, [403] = { - [sym_identifier] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2080), - [anon_sym_package] = ACTIONS(2078), - [anon_sym_import] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_using] = ACTIONS(2078), - [anon_sym_throw] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_cast] = ACTIONS(2078), - [anon_sym_DOLLARtype] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_untyped] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_this] = ACTIONS(2078), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_AT_COLON] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2078), - [anon_sym_catch] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PERCENT] = ACTIONS(2080), - [anon_sym_SLASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_LT_LT] = ACTIONS(2080), - [anon_sym_GT_GT] = ACTIONS(2078), - [anon_sym_GT_GT_GT] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_EQ_EQ] = ACTIONS(2080), - [anon_sym_BANG_EQ] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_LT_EQ] = ACTIONS(2080), - [anon_sym_GT] = ACTIONS(2078), - [anon_sym_GT_EQ] = ACTIONS(2080), - [anon_sym_EQ_GT] = ACTIONS(2080), - [anon_sym_QMARK_QMARK] = ACTIONS(2080), - [anon_sym_EQ] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2080), - [anon_sym_null] = ACTIONS(2078), - [anon_sym_macro] = ACTIONS(2078), - [anon_sym_abstract] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_public] = ACTIONS(2078), - [anon_sym_private] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [anon_sym_overload] = ACTIONS(2078), - [anon_sym_override] = ACTIONS(2078), - [anon_sym_final] = ACTIONS(2078), - [anon_sym_class] = ACTIONS(2078), - [anon_sym_interface] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_function] = ACTIONS(2078), - [anon_sym_var] = ACTIONS(2078), - [aux_sym_integer_token1] = ACTIONS(2078), - [aux_sym_integer_token2] = ACTIONS(2080), - [aux_sym_float_token1] = ACTIONS(2078), - [aux_sym_float_token2] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [aux_sym_string_token1] = ACTIONS(2080), - [aux_sym_string_token3] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2080), + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_package] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(1888), + [anon_sym_cast] = ACTIONS(1784), + [anon_sym_DOLLARtype] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_untyped] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_this] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(2624), + [anon_sym_AT] = ACTIONS(1784), + [anon_sym_AT_COLON] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_catch] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_LT_LT] = ACTIONS(1782), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_EQ_GT] = ACTIONS(1782), + [anon_sym_QMARK_QMARK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), + [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_enum] = 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(1782), + [aux_sym_float_token1] = ACTIONS(1784), + [aux_sym_float_token2] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [aux_sym_string_token1] = ACTIONS(1782), + [aux_sym_string_token3] = ACTIONS(1782), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [404] = { - [sym_identifier] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2084), - [anon_sym_package] = ACTIONS(2082), - [anon_sym_import] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_using] = ACTIONS(2082), - [anon_sym_throw] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_case] = ACTIONS(2082), - [anon_sym_default] = ACTIONS(2082), - [anon_sym_cast] = ACTIONS(2082), - [anon_sym_DOLLARtype] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_untyped] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_this] = ACTIONS(2082), - [anon_sym_AT] = ACTIONS(2082), - [anon_sym_AT_COLON] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_catch] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_new] = ACTIONS(2082), - [anon_sym_TILDE] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PERCENT] = ACTIONS(2084), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_LT_LT] = ACTIONS(2084), - [anon_sym_GT_GT] = ACTIONS(2082), - [anon_sym_GT_GT_GT] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2084), - [anon_sym_AMP_AMP] = ACTIONS(2084), - [anon_sym_PIPE_PIPE] = ACTIONS(2084), - [anon_sym_EQ_EQ] = ACTIONS(2084), - [anon_sym_BANG_EQ] = ACTIONS(2084), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_LT_EQ] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_QMARK_QMARK] = ACTIONS(2084), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2084), - [anon_sym_null] = ACTIONS(2082), - [anon_sym_macro] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_overload] = ACTIONS(2082), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_typedef] = ACTIONS(2082), - [anon_sym_function] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [aux_sym_integer_token1] = ACTIONS(2082), - [aux_sym_integer_token2] = ACTIONS(2084), - [aux_sym_float_token1] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [aux_sym_string_token1] = ACTIONS(2084), - [aux_sym_string_token3] = ACTIONS(2084), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2084), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(2618), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1778), [sym__closing_brace_unmarker] = ACTIONS(3), }, [405] = { - [sym_identifier] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2088), - [anon_sym_package] = ACTIONS(2086), - [anon_sym_import] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_using] = ACTIONS(2086), - [anon_sym_throw] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_case] = ACTIONS(2086), - [anon_sym_default] = ACTIONS(2086), - [anon_sym_cast] = ACTIONS(2086), - [anon_sym_DOLLARtype] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_untyped] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_this] = ACTIONS(2086), - [anon_sym_AT] = ACTIONS(2086), - [anon_sym_AT_COLON] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_new] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_PERCENT] = ACTIONS(2088), - [anon_sym_SLASH] = ACTIONS(2086), - [anon_sym_PLUS] = ACTIONS(2086), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2086), - [anon_sym_GT_GT_GT] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_CARET] = ACTIONS(2088), - [anon_sym_AMP_AMP] = ACTIONS(2088), - [anon_sym_PIPE_PIPE] = ACTIONS(2088), - [anon_sym_EQ_EQ] = ACTIONS(2088), - [anon_sym_BANG_EQ] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_LT_EQ] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2086), - [anon_sym_GT_EQ] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_QMARK_QMARK] = ACTIONS(2088), - [anon_sym_EQ] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2088), - [anon_sym_null] = ACTIONS(2086), - [anon_sym_macro] = ACTIONS(2086), - [anon_sym_abstract] = ACTIONS(2086), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_public] = ACTIONS(2086), - [anon_sym_private] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_inline] = ACTIONS(2086), - [anon_sym_overload] = ACTIONS(2086), - [anon_sym_override] = ACTIONS(2086), - [anon_sym_final] = ACTIONS(2086), - [anon_sym_class] = ACTIONS(2086), - [anon_sym_interface] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_typedef] = ACTIONS(2086), - [anon_sym_function] = ACTIONS(2086), - [anon_sym_var] = ACTIONS(2086), - [aux_sym_integer_token1] = ACTIONS(2086), - [aux_sym_integer_token2] = ACTIONS(2088), - [aux_sym_float_token1] = ACTIONS(2086), - [aux_sym_float_token2] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), - [aux_sym_string_token1] = ACTIONS(2088), - [aux_sym_string_token3] = ACTIONS(2088), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2088), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(2618), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(2518), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1778), [sym__closing_brace_unmarker] = ACTIONS(3), }, [406] = { - [sym_identifier] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2092), - [anon_sym_package] = ACTIONS(2090), - [anon_sym_import] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_using] = ACTIONS(2090), - [anon_sym_throw] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_switch] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_case] = ACTIONS(2090), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_cast] = ACTIONS(2090), - [anon_sym_DOLLARtype] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_untyped] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_this] = ACTIONS(2090), - [anon_sym_AT] = ACTIONS(2090), - [anon_sym_AT_COLON] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_new] = ACTIONS(2090), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_PLUS_PLUS] = ACTIONS(2092), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_PERCENT] = ACTIONS(2092), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2090), - [anon_sym_GT_GT_GT] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_CARET] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_BANG_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_LT_EQ] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2090), - [anon_sym_GT_EQ] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_QMARK_QMARK] = ACTIONS(2092), - [anon_sym_EQ] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2092), - [anon_sym_null] = ACTIONS(2090), - [anon_sym_macro] = ACTIONS(2090), - [anon_sym_abstract] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_public] = ACTIONS(2090), - [anon_sym_private] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [anon_sym_overload] = ACTIONS(2090), - [anon_sym_override] = ACTIONS(2090), - [anon_sym_final] = ACTIONS(2090), - [anon_sym_class] = ACTIONS(2090), - [anon_sym_interface] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_typedef] = ACTIONS(2090), - [anon_sym_function] = ACTIONS(2090), - [anon_sym_var] = ACTIONS(2090), - [aux_sym_integer_token1] = ACTIONS(2090), - [aux_sym_integer_token2] = ACTIONS(2092), - [aux_sym_float_token1] = ACTIONS(2090), - [aux_sym_float_token2] = ACTIONS(2092), - [anon_sym_true] = ACTIONS(2090), - [anon_sym_false] = ACTIONS(2090), - [aux_sym_string_token1] = ACTIONS(2092), - [aux_sym_string_token3] = ACTIONS(2092), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2092), + [ts_builtin_sym_end] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_package] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1932), + [anon_sym_import] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_using] = ACTIONS(1932), + [anon_sym_throw] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_cast] = ACTIONS(1932), + [anon_sym_DOLLARtype] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_untyped] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_this] = ACTIONS(1932), + [anon_sym_QMARK] = ACTIONS(1932), + [anon_sym_AT] = ACTIONS(1932), + [anon_sym_AT_COLON] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1932), + [anon_sym_catch] = ACTIONS(1932), + [anon_sym_else] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PERCENT] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1932), + [anon_sym_GT_GT_GT] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [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(1932), + [anon_sym_LT_EQ] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1932), + [anon_sym_GT_EQ] = ACTIONS(1930), + [anon_sym_EQ_GT] = ACTIONS(1930), + [anon_sym_QMARK_QMARK] = ACTIONS(1930), + [anon_sym_EQ] = ACTIONS(1932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), + [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_enum] = 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(1930), + [aux_sym_float_token1] = ACTIONS(1932), + [aux_sym_float_token2] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), + [aux_sym_string_token1] = ACTIONS(1930), + [aux_sym_string_token3] = ACTIONS(1930), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1930), [sym__closing_brace_unmarker] = ACTIONS(3), }, [407] = { - [sym_identifier] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2096), - [anon_sym_package] = ACTIONS(2094), - [anon_sym_import] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_using] = ACTIONS(2094), - [anon_sym_throw] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_switch] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_case] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_cast] = ACTIONS(2094), - [anon_sym_DOLLARtype] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_untyped] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_this] = ACTIONS(2094), - [anon_sym_AT] = ACTIONS(2094), - [anon_sym_AT_COLON] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_catch] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2094), - [anon_sym_TILDE] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_PLUS_PLUS] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2094), - [anon_sym_GT_GT_GT] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP_AMP] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2096), - [anon_sym_BANG_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_GT] = ACTIONS(2094), - [anon_sym_GT_EQ] = ACTIONS(2096), - [anon_sym_EQ_GT] = ACTIONS(2096), - [anon_sym_QMARK_QMARK] = ACTIONS(2096), - [anon_sym_EQ] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2094), - [anon_sym_macro] = ACTIONS(2094), - [anon_sym_abstract] = ACTIONS(2094), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_public] = ACTIONS(2094), - [anon_sym_private] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_inline] = ACTIONS(2094), - [anon_sym_overload] = ACTIONS(2094), - [anon_sym_override] = ACTIONS(2094), - [anon_sym_final] = ACTIONS(2094), - [anon_sym_class] = ACTIONS(2094), - [anon_sym_interface] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_typedef] = ACTIONS(2094), - [anon_sym_function] = ACTIONS(2094), - [anon_sym_var] = ACTIONS(2094), - [aux_sym_integer_token1] = ACTIONS(2094), - [aux_sym_integer_token2] = ACTIONS(2096), - [aux_sym_float_token1] = ACTIONS(2094), - [aux_sym_float_token2] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(2094), - [anon_sym_false] = ACTIONS(2094), - [aux_sym_string_token1] = ACTIONS(2096), - [aux_sym_string_token3] = ACTIONS(2096), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2096), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_package] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(1972), + [anon_sym_import] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_using] = ACTIONS(1972), + [anon_sym_throw] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_cast] = ACTIONS(1972), + [anon_sym_DOLLARtype] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_untyped] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_this] = ACTIONS(1972), + [anon_sym_QMARK] = ACTIONS(1972), + [anon_sym_AT] = ACTIONS(1972), + [anon_sym_AT_COLON] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_new] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PERCENT] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_GT_GT_GT] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [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(1972), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_QMARK_QMARK] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [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_enum] = 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(1970), + [aux_sym_float_token1] = ACTIONS(1972), + [aux_sym_float_token2] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [aux_sym_string_token1] = ACTIONS(1970), + [aux_sym_string_token3] = ACTIONS(1970), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1970), [sym__closing_brace_unmarker] = ACTIONS(3), }, [408] = { - [sym_identifier] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_package] = ACTIONS(2098), - [anon_sym_import] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_using] = ACTIONS(2098), - [anon_sym_throw] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_switch] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_case] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_cast] = ACTIONS(2098), - [anon_sym_DOLLARtype] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_untyped] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_this] = ACTIONS(2098), - [anon_sym_AT] = ACTIONS(2098), - [anon_sym_AT_COLON] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_catch] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_new] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_PERCENT] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_GT_GT_GT] = ACTIONS(2100), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_CARET] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_EQ_EQ] = ACTIONS(2100), - [anon_sym_BANG_EQ] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_QMARK_QMARK] = ACTIONS(2100), - [anon_sym_EQ] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2100), - [anon_sym_null] = ACTIONS(2098), - [anon_sym_macro] = ACTIONS(2098), - [anon_sym_abstract] = ACTIONS(2098), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_public] = ACTIONS(2098), - [anon_sym_private] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_inline] = ACTIONS(2098), - [anon_sym_overload] = ACTIONS(2098), - [anon_sym_override] = ACTIONS(2098), - [anon_sym_final] = ACTIONS(2098), - [anon_sym_class] = ACTIONS(2098), - [anon_sym_interface] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_typedef] = ACTIONS(2098), - [anon_sym_function] = ACTIONS(2098), - [anon_sym_var] = ACTIONS(2098), - [aux_sym_integer_token1] = ACTIONS(2098), - [aux_sym_integer_token2] = ACTIONS(2100), - [aux_sym_float_token1] = ACTIONS(2098), - [aux_sym_float_token2] = ACTIONS(2100), - [anon_sym_true] = ACTIONS(2098), - [anon_sym_false] = ACTIONS(2098), - [aux_sym_string_token1] = ACTIONS(2100), - [aux_sym_string_token3] = ACTIONS(2100), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2100), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(2622), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [409] = { - [sym_identifier] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2104), - [anon_sym_package] = ACTIONS(2102), - [anon_sym_import] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_using] = ACTIONS(2102), - [anon_sym_throw] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_switch] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_case] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_cast] = ACTIONS(2102), - [anon_sym_DOLLARtype] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_untyped] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_AT] = ACTIONS(2102), - [anon_sym_AT_COLON] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_catch] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_new] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_PLUS_PLUS] = ACTIONS(2104), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_PERCENT] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_GT_GT_GT] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_EQ_EQ] = ACTIONS(2104), - [anon_sym_BANG_EQ] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_LT_EQ] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2102), - [anon_sym_GT_EQ] = ACTIONS(2104), - [anon_sym_EQ_GT] = ACTIONS(2104), - [anon_sym_QMARK_QMARK] = ACTIONS(2104), - [anon_sym_EQ] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2104), - [anon_sym_null] = ACTIONS(2102), - [anon_sym_macro] = ACTIONS(2102), - [anon_sym_abstract] = ACTIONS(2102), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_public] = ACTIONS(2102), - [anon_sym_private] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_inline] = ACTIONS(2102), - [anon_sym_overload] = ACTIONS(2102), - [anon_sym_override] = ACTIONS(2102), - [anon_sym_final] = ACTIONS(2102), - [anon_sym_class] = ACTIONS(2102), - [anon_sym_interface] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_typedef] = ACTIONS(2102), - [anon_sym_function] = ACTIONS(2102), - [anon_sym_var] = ACTIONS(2102), - [aux_sym_integer_token1] = ACTIONS(2102), - [aux_sym_integer_token2] = ACTIONS(2104), - [aux_sym_float_token1] = ACTIONS(2102), - [aux_sym_float_token2] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2102), - [anon_sym_false] = ACTIONS(2102), - [aux_sym_string_token1] = ACTIONS(2104), - [aux_sym_string_token3] = ACTIONS(2104), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2104), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(2622), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [410] = { - [sym_identifier] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_package] = ACTIONS(2106), - [anon_sym_import] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_using] = ACTIONS(2106), - [anon_sym_throw] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_switch] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_case] = ACTIONS(2106), - [anon_sym_default] = ACTIONS(2106), - [anon_sym_cast] = ACTIONS(2106), - [anon_sym_DOLLARtype] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_untyped] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_this] = ACTIONS(2106), - [anon_sym_AT] = ACTIONS(2106), - [anon_sym_AT_COLON] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_catch] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_new] = ACTIONS(2106), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_PERCENT] = ACTIONS(2108), - [anon_sym_SLASH] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2106), - [anon_sym_LT_LT] = ACTIONS(2108), - [anon_sym_GT_GT] = ACTIONS(2106), - [anon_sym_GT_GT_GT] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_CARET] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_EQ_GT] = ACTIONS(2108), - [anon_sym_QMARK_QMARK] = ACTIONS(2108), - [anon_sym_EQ] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2108), - [anon_sym_null] = ACTIONS(2106), - [anon_sym_macro] = ACTIONS(2106), - [anon_sym_abstract] = ACTIONS(2106), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_public] = ACTIONS(2106), - [anon_sym_private] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_inline] = ACTIONS(2106), - [anon_sym_overload] = ACTIONS(2106), - [anon_sym_override] = ACTIONS(2106), - [anon_sym_final] = ACTIONS(2106), - [anon_sym_class] = ACTIONS(2106), - [anon_sym_interface] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_typedef] = ACTIONS(2106), - [anon_sym_function] = ACTIONS(2106), - [anon_sym_var] = ACTIONS(2106), - [aux_sym_integer_token1] = ACTIONS(2106), - [aux_sym_integer_token2] = ACTIONS(2108), - [aux_sym_float_token1] = ACTIONS(2106), - [aux_sym_float_token2] = ACTIONS(2108), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), - [aux_sym_string_token1] = ACTIONS(2108), - [aux_sym_string_token3] = ACTIONS(2108), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2108), + [sym_else_clause] = STATE(444), + [sym_identifier] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_cast] = ACTIONS(2640), + [anon_sym_DOLLARtype] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_untyped] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_AT_COLON] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_catch] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_LT_LT] = ACTIONS(2642), + [anon_sym_GT_GT] = ACTIONS(2640), + [anon_sym_GT_GT_GT] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_PIPE_PIPE] = ACTIONS(2642), + [anon_sym_EQ_EQ] = ACTIONS(2642), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_LT_EQ] = ACTIONS(2642), + [anon_sym_GT] = ACTIONS(2640), + [anon_sym_GT_EQ] = ACTIONS(2642), + [anon_sym_EQ_GT] = ACTIONS(2642), + [anon_sym_QMARK_QMARK] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_macro] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym_overload] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_final] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [aux_sym_integer_token1] = ACTIONS(2640), + [aux_sym_integer_token2] = ACTIONS(2642), + [aux_sym_float_token1] = ACTIONS(2640), + [aux_sym_float_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [aux_sym_string_token1] = ACTIONS(2642), + [aux_sym_string_token3] = ACTIONS(2642), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2642), [sym__closing_brace_unmarker] = ACTIONS(3), }, [411] = { - [sym_identifier] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_package] = ACTIONS(2110), - [anon_sym_import] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_using] = ACTIONS(2110), - [anon_sym_throw] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_switch] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_case] = ACTIONS(2110), - [anon_sym_default] = ACTIONS(2110), - [anon_sym_cast] = ACTIONS(2110), - [anon_sym_DOLLARtype] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_untyped] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_this] = ACTIONS(2110), - [anon_sym_AT] = ACTIONS(2110), - [anon_sym_AT_COLON] = ACTIONS(2112), - [anon_sym_try] = ACTIONS(2110), - [anon_sym_catch] = ACTIONS(2110), - [anon_sym_else] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_do] = ACTIONS(2110), - [anon_sym_new] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_SLASH] = ACTIONS(2110), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_LT_LT] = ACTIONS(2112), - [anon_sym_GT_GT] = ACTIONS(2110), - [anon_sym_GT_GT_GT] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(2112), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_QMARK_QMARK] = ACTIONS(2112), - [anon_sym_EQ] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2112), - [anon_sym_null] = ACTIONS(2110), - [anon_sym_macro] = ACTIONS(2110), - [anon_sym_abstract] = ACTIONS(2110), - [anon_sym_static] = ACTIONS(2110), - [anon_sym_public] = ACTIONS(2110), - [anon_sym_private] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym_inline] = ACTIONS(2110), - [anon_sym_overload] = ACTIONS(2110), - [anon_sym_override] = ACTIONS(2110), - [anon_sym_final] = ACTIONS(2110), - [anon_sym_class] = ACTIONS(2110), - [anon_sym_interface] = ACTIONS(2110), - [anon_sym_enum] = ACTIONS(2110), - [anon_sym_typedef] = ACTIONS(2110), - [anon_sym_function] = ACTIONS(2110), - [anon_sym_var] = ACTIONS(2110), - [aux_sym_integer_token1] = ACTIONS(2110), - [aux_sym_integer_token2] = ACTIONS(2112), - [aux_sym_float_token1] = ACTIONS(2110), - [aux_sym_float_token2] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [aux_sym_string_token1] = ACTIONS(2112), - [aux_sym_string_token3] = ACTIONS(2112), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2112), + [sym_identifier] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_package] = ACTIONS(2644), + [anon_sym_import] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(2644), + [anon_sym_throw] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_cast] = ACTIONS(2644), + [anon_sym_DOLLARtype] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_untyped] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_this] = ACTIONS(2644), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_AT_COLON] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_catch] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_SLASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_LT_LT] = ACTIONS(2646), + [anon_sym_GT_GT] = ACTIONS(2644), + [anon_sym_GT_GT_GT] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_EQ_EQ] = ACTIONS(2646), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_LT_EQ] = ACTIONS(2646), + [anon_sym_GT] = ACTIONS(2644), + [anon_sym_GT_EQ] = ACTIONS(2646), + [anon_sym_EQ_GT] = ACTIONS(2646), + [anon_sym_QMARK_QMARK] = ACTIONS(2646), + [anon_sym_EQ] = ACTIONS(2644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_macro] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym_overload] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_final] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_var] = ACTIONS(2644), + [aux_sym_integer_token1] = ACTIONS(2644), + [aux_sym_integer_token2] = ACTIONS(2646), + [aux_sym_float_token1] = ACTIONS(2644), + [aux_sym_float_token2] = ACTIONS(2646), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym_string_token1] = ACTIONS(2646), + [aux_sym_string_token3] = ACTIONS(2646), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2648), + [sym__closing_brace_marker] = ACTIONS(2646), [sym__closing_brace_unmarker] = ACTIONS(3), }, [412] = { - [sym_identifier] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2116), - [anon_sym_package] = ACTIONS(2114), - [anon_sym_import] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_using] = ACTIONS(2114), - [anon_sym_throw] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_switch] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_case] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_cast] = ACTIONS(2114), - [anon_sym_DOLLARtype] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_untyped] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_this] = ACTIONS(2114), - [anon_sym_AT] = ACTIONS(2114), - [anon_sym_AT_COLON] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2114), - [anon_sym_catch] = ACTIONS(2114), - [anon_sym_else] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_new] = ACTIONS(2114), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PERCENT] = ACTIONS(2116), - [anon_sym_SLASH] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_LT_LT] = ACTIONS(2116), - [anon_sym_GT_GT] = ACTIONS(2114), - [anon_sym_GT_GT_GT] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), - [anon_sym_EQ_EQ] = ACTIONS(2116), - [anon_sym_BANG_EQ] = ACTIONS(2116), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_LT_EQ] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2114), - [anon_sym_GT_EQ] = ACTIONS(2116), - [anon_sym_EQ_GT] = ACTIONS(2116), - [anon_sym_QMARK_QMARK] = ACTIONS(2116), - [anon_sym_EQ] = ACTIONS(2114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2116), - [anon_sym_null] = ACTIONS(2114), - [anon_sym_macro] = ACTIONS(2114), - [anon_sym_abstract] = ACTIONS(2114), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_public] = ACTIONS(2114), - [anon_sym_private] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [anon_sym_overload] = ACTIONS(2114), - [anon_sym_override] = ACTIONS(2114), - [anon_sym_final] = ACTIONS(2114), - [anon_sym_class] = ACTIONS(2114), - [anon_sym_interface] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_typedef] = ACTIONS(2114), - [anon_sym_function] = ACTIONS(2114), - [anon_sym_var] = ACTIONS(2114), - [aux_sym_integer_token1] = ACTIONS(2114), - [aux_sym_integer_token2] = ACTIONS(2116), - [aux_sym_float_token1] = ACTIONS(2114), - [aux_sym_float_token2] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2114), - [anon_sym_false] = ACTIONS(2114), - [aux_sym_string_token1] = ACTIONS(2116), - [aux_sym_string_token3] = ACTIONS(2116), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2116), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(2622), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(2624), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [413] = { - [sym_identifier] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2120), - [anon_sym_package] = ACTIONS(2118), - [anon_sym_import] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_using] = ACTIONS(2118), - [anon_sym_throw] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_switch] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_case] = ACTIONS(2118), - [anon_sym_default] = ACTIONS(2118), - [anon_sym_cast] = ACTIONS(2118), - [anon_sym_DOLLARtype] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_untyped] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_this] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(2118), - [anon_sym_AT_COLON] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2118), - [anon_sym_catch] = ACTIONS(2118), - [anon_sym_else] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_new] = ACTIONS(2118), - [anon_sym_TILDE] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_PLUS_PLUS] = ACTIONS(2120), - [anon_sym_DASH_DASH] = ACTIONS(2120), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_SLASH] = ACTIONS(2118), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_LT_LT] = ACTIONS(2120), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_GT_GT_GT] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_CARET] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_EQ_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ] = ACTIONS(2120), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_LT_EQ] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2118), - [anon_sym_GT_EQ] = ACTIONS(2120), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_QMARK_QMARK] = ACTIONS(2120), - [anon_sym_EQ] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2120), - [anon_sym_null] = ACTIONS(2118), - [anon_sym_macro] = ACTIONS(2118), - [anon_sym_abstract] = ACTIONS(2118), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_public] = ACTIONS(2118), - [anon_sym_private] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_inline] = ACTIONS(2118), - [anon_sym_overload] = ACTIONS(2118), - [anon_sym_override] = ACTIONS(2118), - [anon_sym_final] = ACTIONS(2118), - [anon_sym_class] = ACTIONS(2118), - [anon_sym_interface] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [anon_sym_typedef] = ACTIONS(2118), - [anon_sym_function] = ACTIONS(2118), - [anon_sym_var] = ACTIONS(2118), - [aux_sym_integer_token1] = ACTIONS(2118), - [aux_sym_integer_token2] = ACTIONS(2120), - [aux_sym_float_token1] = ACTIONS(2118), - [aux_sym_float_token2] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [aux_sym_string_token1] = ACTIONS(2120), - [aux_sym_string_token3] = ACTIONS(2120), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2120), + [sym_else_clause] = STATE(422), + [sym_identifier] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_package] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2650), + [anon_sym_default] = ACTIONS(2650), + [anon_sym_cast] = ACTIONS(2650), + [anon_sym_DOLLARtype] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_untyped] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_this] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2650), + [anon_sym_AT_COLON] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_catch] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_LT_LT] = ACTIONS(2652), + [anon_sym_GT_GT] = ACTIONS(2650), + [anon_sym_GT_GT_GT] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_EQ_EQ] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_LT_EQ] = ACTIONS(2652), + [anon_sym_GT] = ACTIONS(2650), + [anon_sym_GT_EQ] = ACTIONS(2652), + [anon_sym_EQ_GT] = ACTIONS(2652), + [anon_sym_QMARK_QMARK] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_null] = ACTIONS(2650), + [anon_sym_macro] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_overload] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_final] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_typedef] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [aux_sym_integer_token1] = ACTIONS(2650), + [aux_sym_integer_token2] = ACTIONS(2652), + [aux_sym_float_token1] = ACTIONS(2650), + [aux_sym_float_token2] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [aux_sym_string_token1] = ACTIONS(2652), + [aux_sym_string_token3] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2652), [sym__closing_brace_unmarker] = ACTIONS(3), }, [414] = { - [sym_identifier] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2124), - [anon_sym_package] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_cast] = ACTIONS(2122), - [anon_sym_DOLLARtype] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_untyped] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_this] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_AT_COLON] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_catch] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PERCENT] = ACTIONS(2124), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2124), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP_AMP] = ACTIONS(2124), - [anon_sym_PIPE_PIPE] = ACTIONS(2124), - [anon_sym_EQ_EQ] = ACTIONS(2124), - [anon_sym_BANG_EQ] = ACTIONS(2124), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2124), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2124), - [anon_sym_EQ_GT] = ACTIONS(2124), - [anon_sym_QMARK_QMARK] = ACTIONS(2124), - [anon_sym_EQ] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2124), - [anon_sym_null] = ACTIONS(2122), - [anon_sym_macro] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [anon_sym_overload] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_final] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [aux_sym_integer_token1] = ACTIONS(2122), - [aux_sym_integer_token2] = ACTIONS(2124), - [aux_sym_float_token1] = ACTIONS(2122), - [aux_sym_float_token2] = ACTIONS(2124), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [aux_sym_string_token1] = ACTIONS(2124), - [aux_sym_string_token3] = ACTIONS(2124), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2124), + [sym_identifier] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_package] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_using] = ACTIONS(2654), + [anon_sym_throw] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_case] = ACTIONS(2654), + [anon_sym_default] = ACTIONS(2654), + [anon_sym_cast] = ACTIONS(2654), + [anon_sym_DOLLARtype] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_untyped] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_this] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_AT_COLON] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2654), + [anon_sym_catch] = ACTIONS(2654), + [anon_sym_else] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_do] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT] = ACTIONS(2654), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_PIPE] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2654), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_EQ_GT] = ACTIONS(2656), + [anon_sym_QMARK_QMARK] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [anon_sym_null] = ACTIONS(2654), + [anon_sym_macro] = ACTIONS(2654), + [anon_sym_abstract] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_public] = ACTIONS(2654), + [anon_sym_private] = ACTIONS(2654), + [anon_sym_extern] = ACTIONS(2654), + [anon_sym_inline] = ACTIONS(2654), + [anon_sym_overload] = ACTIONS(2654), + [anon_sym_override] = ACTIONS(2654), + [anon_sym_final] = ACTIONS(2654), + [anon_sym_class] = ACTIONS(2654), + [anon_sym_interface] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), + [anon_sym_typedef] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2654), + [anon_sym_var] = ACTIONS(2654), + [aux_sym_integer_token1] = ACTIONS(2654), + [aux_sym_integer_token2] = ACTIONS(2656), + [aux_sym_float_token1] = ACTIONS(2654), + [aux_sym_float_token2] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2654), + [anon_sym_false] = ACTIONS(2654), + [aux_sym_string_token1] = ACTIONS(2656), + [aux_sym_string_token3] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2658), + [sym__closing_brace_marker] = ACTIONS(2656), [sym__closing_brace_unmarker] = ACTIONS(3), }, [415] = { - [sym_identifier] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2128), - [anon_sym_package] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_cast] = ACTIONS(2126), - [anon_sym_DOLLARtype] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_untyped] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_this] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [anon_sym_AT_COLON] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_catch] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2128), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_PERCENT] = ACTIONS(2128), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2128), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2128), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2128), - [anon_sym_AMP_AMP] = ACTIONS(2128), - [anon_sym_PIPE_PIPE] = ACTIONS(2128), - [anon_sym_EQ_EQ] = ACTIONS(2128), - [anon_sym_BANG_EQ] = ACTIONS(2128), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2128), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2128), - [anon_sym_EQ_GT] = ACTIONS(2128), - [anon_sym_QMARK_QMARK] = ACTIONS(2128), - [anon_sym_EQ] = ACTIONS(2126), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2128), - [anon_sym_null] = ACTIONS(2126), - [anon_sym_macro] = ACTIONS(2126), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_static] = ACTIONS(2126), - [anon_sym_public] = ACTIONS(2126), - [anon_sym_private] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym_inline] = ACTIONS(2126), - [anon_sym_overload] = ACTIONS(2126), - [anon_sym_override] = ACTIONS(2126), - [anon_sym_final] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [anon_sym_typedef] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [aux_sym_integer_token1] = ACTIONS(2126), - [aux_sym_integer_token2] = ACTIONS(2128), - [aux_sym_float_token1] = ACTIONS(2126), - [aux_sym_float_token2] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2126), - [anon_sym_false] = ACTIONS(2126), - [aux_sym_string_token1] = ACTIONS(2128), - [aux_sym_string_token3] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2662), + [anon_sym_package] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_using] = ACTIONS(2660), + [anon_sym_throw] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_switch] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_case] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2660), + [anon_sym_cast] = ACTIONS(2660), + [anon_sym_DOLLARtype] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_untyped] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_this] = ACTIONS(2660), + [anon_sym_AT] = ACTIONS(2660), + [anon_sym_AT_COLON] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_catch] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_do] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2660), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_PLUS_PLUS] = ACTIONS(2662), + [anon_sym_DASH_DASH] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_SLASH] = ACTIONS(2660), + [anon_sym_PLUS] = ACTIONS(2660), + [anon_sym_LT_LT] = ACTIONS(2662), + [anon_sym_GT_GT] = ACTIONS(2660), + [anon_sym_GT_GT_GT] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2660), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_CARET] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_EQ_EQ] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_LT_EQ] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_GT_EQ] = ACTIONS(2662), + [anon_sym_EQ_GT] = ACTIONS(2662), + [anon_sym_QMARK_QMARK] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_null] = ACTIONS(2660), + [anon_sym_macro] = ACTIONS(2660), + [anon_sym_abstract] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_private] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_overload] = ACTIONS(2660), + [anon_sym_override] = ACTIONS(2660), + [anon_sym_final] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_interface] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_typedef] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2660), + [anon_sym_var] = ACTIONS(2660), + [aux_sym_integer_token1] = ACTIONS(2660), + [aux_sym_integer_token2] = ACTIONS(2662), + [aux_sym_float_token1] = ACTIONS(2660), + [aux_sym_float_token2] = ACTIONS(2662), + [anon_sym_true] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [aux_sym_string_token1] = ACTIONS(2662), + [aux_sym_string_token3] = ACTIONS(2662), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2662), [sym__closing_brace_unmarker] = ACTIONS(3), }, [416] = { - [sym_identifier] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_package] = ACTIONS(2130), - [anon_sym_import] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2130), - [anon_sym_throw] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_case] = ACTIONS(2130), - [anon_sym_default] = ACTIONS(2130), - [anon_sym_cast] = ACTIONS(2130), - [anon_sym_DOLLARtype] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_untyped] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_this] = ACTIONS(2130), - [anon_sym_AT] = ACTIONS(2130), - [anon_sym_AT_COLON] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_catch] = ACTIONS(2130), - [anon_sym_else] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_new] = ACTIONS(2130), - [anon_sym_TILDE] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_PLUS_PLUS] = ACTIONS(2132), - [anon_sym_DASH_DASH] = ACTIONS(2132), - [anon_sym_PERCENT] = ACTIONS(2132), - [anon_sym_SLASH] = ACTIONS(2130), - [anon_sym_PLUS] = ACTIONS(2130), - [anon_sym_LT_LT] = ACTIONS(2132), - [anon_sym_GT_GT] = ACTIONS(2130), - [anon_sym_GT_GT_GT] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_EQ_EQ] = ACTIONS(2132), - [anon_sym_BANG_EQ] = ACTIONS(2132), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_LT_EQ] = ACTIONS(2132), - [anon_sym_GT] = ACTIONS(2130), - [anon_sym_GT_EQ] = ACTIONS(2132), - [anon_sym_EQ_GT] = ACTIONS(2132), - [anon_sym_QMARK_QMARK] = ACTIONS(2132), - [anon_sym_EQ] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2132), - [anon_sym_null] = ACTIONS(2130), - [anon_sym_macro] = ACTIONS(2130), - [anon_sym_abstract] = ACTIONS(2130), - [anon_sym_static] = ACTIONS(2130), - [anon_sym_public] = ACTIONS(2130), - [anon_sym_private] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_inline] = ACTIONS(2130), - [anon_sym_overload] = ACTIONS(2130), - [anon_sym_override] = ACTIONS(2130), - [anon_sym_final] = ACTIONS(2130), - [anon_sym_class] = ACTIONS(2130), - [anon_sym_interface] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_typedef] = ACTIONS(2130), - [anon_sym_function] = ACTIONS(2130), - [anon_sym_var] = ACTIONS(2130), - [aux_sym_integer_token1] = ACTIONS(2130), - [aux_sym_integer_token2] = ACTIONS(2132), - [aux_sym_float_token1] = ACTIONS(2130), - [aux_sym_float_token2] = ACTIONS(2132), - [anon_sym_true] = ACTIONS(2130), - [anon_sym_false] = ACTIONS(2130), - [aux_sym_string_token1] = ACTIONS(2132), - [aux_sym_string_token3] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2664), + [anon_sym_POUND] = ACTIONS(2666), + [anon_sym_package] = ACTIONS(2664), + [anon_sym_import] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_using] = ACTIONS(2664), + [anon_sym_throw] = ACTIONS(2664), + [anon_sym_LPAREN] = ACTIONS(2666), + [anon_sym_switch] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_case] = ACTIONS(2664), + [anon_sym_default] = ACTIONS(2664), + [anon_sym_cast] = ACTIONS(2664), + [anon_sym_DOLLARtype] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2664), + [anon_sym_untyped] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2664), + [anon_sym_continue] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_this] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_AT_COLON] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2664), + [anon_sym_catch] = ACTIONS(2664), + [anon_sym_else] = ACTIONS(2664), + [anon_sym_if] = ACTIONS(2664), + [anon_sym_while] = ACTIONS(2664), + [anon_sym_do] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(2666), + [anon_sym_PERCENT] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_AMP_AMP] = ACTIONS(2666), + [anon_sym_PIPE_PIPE] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2666), + [anon_sym_BANG_EQ] = ACTIONS(2666), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2666), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2666), + [anon_sym_EQ_GT] = ACTIONS(2666), + [anon_sym_QMARK_QMARK] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2664), + [anon_sym_macro] = ACTIONS(2664), + [anon_sym_abstract] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_public] = ACTIONS(2664), + [anon_sym_private] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym_inline] = ACTIONS(2664), + [anon_sym_overload] = ACTIONS(2664), + [anon_sym_override] = ACTIONS(2664), + [anon_sym_final] = ACTIONS(2664), + [anon_sym_class] = ACTIONS(2664), + [anon_sym_interface] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_typedef] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2664), + [anon_sym_var] = ACTIONS(2664), + [aux_sym_integer_token1] = ACTIONS(2664), + [aux_sym_integer_token2] = ACTIONS(2666), + [aux_sym_float_token1] = ACTIONS(2664), + [aux_sym_float_token2] = ACTIONS(2666), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [aux_sym_string_token1] = ACTIONS(2666), + [aux_sym_string_token3] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2666), [sym__closing_brace_unmarker] = ACTIONS(3), }, [417] = { - [sym_identifier] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2134), - [anon_sym_import] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_throw] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_cast] = ACTIONS(2134), - [anon_sym_DOLLARtype] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_untyped] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_this] = ACTIONS(2134), - [anon_sym_AT] = ACTIONS(2134), - [anon_sym_AT_COLON] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2134), - [anon_sym_catch] = ACTIONS(2134), - [anon_sym_else] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2136), - [anon_sym_SLASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_LT_LT] = ACTIONS(2136), - [anon_sym_GT_GT] = ACTIONS(2134), - [anon_sym_GT_GT_GT] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP_AMP] = ACTIONS(2136), - [anon_sym_PIPE_PIPE] = ACTIONS(2136), - [anon_sym_EQ_EQ] = ACTIONS(2136), - [anon_sym_BANG_EQ] = ACTIONS(2136), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_LT_EQ] = ACTIONS(2136), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_GT_EQ] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_QMARK_QMARK] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2136), - [anon_sym_null] = ACTIONS(2134), - [anon_sym_macro] = ACTIONS(2134), - [anon_sym_abstract] = ACTIONS(2134), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_public] = ACTIONS(2134), - [anon_sym_private] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [anon_sym_overload] = ACTIONS(2134), - [anon_sym_override] = ACTIONS(2134), - [anon_sym_final] = ACTIONS(2134), - [anon_sym_class] = ACTIONS(2134), - [anon_sym_interface] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_function] = ACTIONS(2134), - [anon_sym_var] = ACTIONS(2134), - [aux_sym_integer_token1] = ACTIONS(2134), - [aux_sym_integer_token2] = ACTIONS(2136), - [aux_sym_float_token1] = ACTIONS(2134), - [aux_sym_float_token2] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2134), - [anon_sym_false] = ACTIONS(2134), - [aux_sym_string_token1] = ACTIONS(2136), - [aux_sym_string_token3] = ACTIONS(2136), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2670), + [anon_sym_package] = ACTIONS(2668), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_using] = ACTIONS(2668), + [anon_sym_throw] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_switch] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_case] = ACTIONS(2668), + [anon_sym_default] = ACTIONS(2668), + [anon_sym_cast] = ACTIONS(2668), + [anon_sym_DOLLARtype] = ACTIONS(2670), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_untyped] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_this] = ACTIONS(2668), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_AT_COLON] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_catch] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_do] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_PLUS_PLUS] = ACTIONS(2670), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_PERCENT] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_LT_LT] = ACTIONS(2670), + [anon_sym_GT_GT] = ACTIONS(2668), + [anon_sym_GT_GT_GT] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_CARET] = ACTIONS(2670), + [anon_sym_AMP_AMP] = ACTIONS(2670), + [anon_sym_PIPE_PIPE] = ACTIONS(2670), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2668), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_EQ_GT] = ACTIONS(2670), + [anon_sym_QMARK_QMARK] = ACTIONS(2670), + [anon_sym_EQ] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_null] = ACTIONS(2668), + [anon_sym_macro] = ACTIONS(2668), + [anon_sym_abstract] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_private] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_overload] = ACTIONS(2668), + [anon_sym_override] = ACTIONS(2668), + [anon_sym_final] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_interface] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_typedef] = ACTIONS(2668), + [anon_sym_function] = ACTIONS(2668), + [anon_sym_var] = ACTIONS(2668), + [aux_sym_integer_token1] = ACTIONS(2668), + [aux_sym_integer_token2] = ACTIONS(2670), + [aux_sym_float_token1] = ACTIONS(2668), + [aux_sym_float_token2] = ACTIONS(2670), + [anon_sym_true] = ACTIONS(2668), + [anon_sym_false] = ACTIONS(2668), + [aux_sym_string_token1] = ACTIONS(2670), + [aux_sym_string_token3] = ACTIONS(2670), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2670), [sym__closing_brace_unmarker] = ACTIONS(3), }, [418] = { - [sym_identifier] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2140), - [anon_sym_package] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_cast] = ACTIONS(2138), - [anon_sym_DOLLARtype] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_untyped] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_this] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_AT_COLON] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_catch] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2138), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_EQ_GT] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), - [anon_sym_null] = ACTIONS(2138), - [anon_sym_macro] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym_inline] = ACTIONS(2138), - [anon_sym_overload] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_final] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_typedef] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [aux_sym_integer_token1] = ACTIONS(2138), - [aux_sym_integer_token2] = ACTIONS(2140), - [aux_sym_float_token1] = ACTIONS(2138), - [aux_sym_float_token2] = ACTIONS(2140), - [anon_sym_true] = ACTIONS(2138), - [anon_sym_false] = ACTIONS(2138), - [aux_sym_string_token1] = ACTIONS(2140), - [aux_sym_string_token3] = ACTIONS(2140), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2674), + [anon_sym_package] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_using] = ACTIONS(2672), + [anon_sym_throw] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_case] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_cast] = ACTIONS(2672), + [anon_sym_DOLLARtype] = ACTIONS(2674), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_untyped] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_this] = ACTIONS(2672), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_AT_COLON] = ACTIONS(2674), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_PERCENT] = ACTIONS(2674), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_GT_GT_GT] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_BANG_EQ] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2674), + [anon_sym_EQ_GT] = ACTIONS(2674), + [anon_sym_QMARK_QMARK] = ACTIONS(2674), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_macro] = ACTIONS(2672), + [anon_sym_abstract] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_public] = ACTIONS(2672), + [anon_sym_private] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym_overload] = ACTIONS(2672), + [anon_sym_override] = ACTIONS(2672), + [anon_sym_final] = ACTIONS(2672), + [anon_sym_class] = ACTIONS(2672), + [anon_sym_interface] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_typedef] = ACTIONS(2672), + [anon_sym_function] = ACTIONS(2672), + [anon_sym_var] = ACTIONS(2672), + [aux_sym_integer_token1] = ACTIONS(2672), + [aux_sym_integer_token2] = ACTIONS(2674), + [aux_sym_float_token1] = ACTIONS(2672), + [aux_sym_float_token2] = ACTIONS(2674), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [aux_sym_string_token1] = ACTIONS(2674), + [aux_sym_string_token3] = ACTIONS(2674), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2674), [sym__closing_brace_unmarker] = ACTIONS(3), }, [419] = { - [sym_identifier] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2144), - [anon_sym_package] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_cast] = ACTIONS(2142), - [anon_sym_DOLLARtype] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_untyped] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_this] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_AT_COLON] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_catch] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2144), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), - [anon_sym_QMARK_QMARK] = ACTIONS(2144), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2144), - [anon_sym_null] = ACTIONS(2142), - [anon_sym_macro] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [anon_sym_overload] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_final] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [aux_sym_integer_token1] = ACTIONS(2142), - [aux_sym_integer_token2] = ACTIONS(2144), - [aux_sym_float_token1] = ACTIONS(2142), - [aux_sym_float_token2] = ACTIONS(2144), - [anon_sym_true] = ACTIONS(2142), - [anon_sym_false] = ACTIONS(2142), - [aux_sym_string_token1] = ACTIONS(2144), - [aux_sym_string_token3] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2678), + [anon_sym_package] = ACTIONS(2676), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_using] = ACTIONS(2676), + [anon_sym_throw] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_switch] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_case] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_cast] = ACTIONS(2676), + [anon_sym_DOLLARtype] = ACTIONS(2678), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_untyped] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_this] = ACTIONS(2676), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_AT_COLON] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2676), + [anon_sym_catch] = ACTIONS(2676), + [anon_sym_else] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_do] = ACTIONS(2676), + [anon_sym_new] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_PERCENT] = ACTIONS(2678), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_GT_GT_GT] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_AMP_AMP] = ACTIONS(2678), + [anon_sym_PIPE_PIPE] = ACTIONS(2678), + [anon_sym_EQ_EQ] = ACTIONS(2678), + [anon_sym_BANG_EQ] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_LT_EQ] = ACTIONS(2678), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_GT_EQ] = ACTIONS(2678), + [anon_sym_EQ_GT] = ACTIONS(2678), + [anon_sym_QMARK_QMARK] = ACTIONS(2678), + [anon_sym_EQ] = ACTIONS(2676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), + [anon_sym_null] = ACTIONS(2676), + [anon_sym_macro] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_public] = ACTIONS(2676), + [anon_sym_private] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym_overload] = ACTIONS(2676), + [anon_sym_override] = ACTIONS(2676), + [anon_sym_final] = ACTIONS(2676), + [anon_sym_class] = ACTIONS(2676), + [anon_sym_interface] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_typedef] = ACTIONS(2676), + [anon_sym_function] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2676), + [aux_sym_integer_token1] = ACTIONS(2676), + [aux_sym_integer_token2] = ACTIONS(2678), + [aux_sym_float_token1] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_true] = ACTIONS(2676), + [anon_sym_false] = ACTIONS(2676), + [aux_sym_string_token1] = ACTIONS(2678), + [aux_sym_string_token3] = ACTIONS(2678), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2678), [sym__closing_brace_unmarker] = ACTIONS(3), }, [420] = { - [sym_identifier] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2148), - [anon_sym_package] = ACTIONS(2146), - [anon_sym_import] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2146), - [anon_sym_throw] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_switch] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_case] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_cast] = ACTIONS(2146), - [anon_sym_DOLLARtype] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_untyped] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_this] = ACTIONS(2146), - [anon_sym_AT] = ACTIONS(2146), - [anon_sym_AT_COLON] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_catch] = ACTIONS(2146), - [anon_sym_else] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_new] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_PERCENT] = ACTIONS(2148), - [anon_sym_SLASH] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2146), - [anon_sym_LT_LT] = ACTIONS(2148), - [anon_sym_GT_GT] = ACTIONS(2146), - [anon_sym_GT_GT_GT] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_AMP_AMP] = ACTIONS(2148), - [anon_sym_PIPE_PIPE] = ACTIONS(2148), - [anon_sym_EQ_EQ] = ACTIONS(2148), - [anon_sym_BANG_EQ] = ACTIONS(2148), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_LT_EQ] = ACTIONS(2148), - [anon_sym_GT] = ACTIONS(2146), - [anon_sym_GT_EQ] = ACTIONS(2148), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_QMARK_QMARK] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2148), - [anon_sym_null] = ACTIONS(2146), - [anon_sym_macro] = ACTIONS(2146), - [anon_sym_abstract] = ACTIONS(2146), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_public] = ACTIONS(2146), - [anon_sym_private] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [anon_sym_overload] = ACTIONS(2146), - [anon_sym_override] = ACTIONS(2146), - [anon_sym_final] = ACTIONS(2146), - [anon_sym_class] = ACTIONS(2146), - [anon_sym_interface] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_typedef] = ACTIONS(2146), - [anon_sym_function] = ACTIONS(2146), - [anon_sym_var] = ACTIONS(2146), - [aux_sym_integer_token1] = ACTIONS(2146), - [aux_sym_integer_token2] = ACTIONS(2148), - [aux_sym_float_token1] = ACTIONS(2146), - [aux_sym_float_token2] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2146), - [anon_sym_false] = ACTIONS(2146), - [aux_sym_string_token1] = ACTIONS(2148), - [aux_sym_string_token3] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2682), + [anon_sym_package] = ACTIONS(2680), + [anon_sym_import] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_using] = ACTIONS(2680), + [anon_sym_throw] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_cast] = ACTIONS(2680), + [anon_sym_DOLLARtype] = ACTIONS(2682), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_untyped] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_this] = ACTIONS(2680), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_AT_COLON] = ACTIONS(2682), + [anon_sym_try] = ACTIONS(2680), + [anon_sym_catch] = ACTIONS(2680), + [anon_sym_else] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_new] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_PERCENT] = ACTIONS(2682), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2682), + [anon_sym_GT_GT] = ACTIONS(2680), + [anon_sym_GT_GT_GT] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_CARET] = ACTIONS(2682), + [anon_sym_AMP_AMP] = ACTIONS(2682), + [anon_sym_PIPE_PIPE] = ACTIONS(2682), + [anon_sym_EQ_EQ] = ACTIONS(2682), + [anon_sym_BANG_EQ] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_LT_EQ] = ACTIONS(2682), + [anon_sym_GT] = ACTIONS(2680), + [anon_sym_GT_EQ] = ACTIONS(2682), + [anon_sym_EQ_GT] = ACTIONS(2682), + [anon_sym_QMARK_QMARK] = ACTIONS(2682), + [anon_sym_EQ] = ACTIONS(2680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2682), + [anon_sym_null] = ACTIONS(2680), + [anon_sym_macro] = ACTIONS(2680), + [anon_sym_abstract] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_public] = ACTIONS(2680), + [anon_sym_private] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym_inline] = ACTIONS(2680), + [anon_sym_overload] = ACTIONS(2680), + [anon_sym_override] = ACTIONS(2680), + [anon_sym_final] = ACTIONS(2680), + [anon_sym_class] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_typedef] = ACTIONS(2680), + [anon_sym_function] = ACTIONS(2680), + [anon_sym_var] = ACTIONS(2680), + [aux_sym_integer_token1] = ACTIONS(2680), + [aux_sym_integer_token2] = ACTIONS(2682), + [aux_sym_float_token1] = ACTIONS(2680), + [aux_sym_float_token2] = ACTIONS(2682), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [aux_sym_string_token1] = ACTIONS(2682), + [aux_sym_string_token3] = ACTIONS(2682), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2682), [sym__closing_brace_unmarker] = ACTIONS(3), }, [421] = { - [sym_identifier] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2152), - [anon_sym_package] = ACTIONS(2150), - [anon_sym_import] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2150), - [anon_sym_throw] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_cast] = ACTIONS(2150), - [anon_sym_DOLLARtype] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_untyped] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_this] = ACTIONS(2150), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_AT_COLON] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2150), - [anon_sym_catch] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_new] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_LT_LT] = ACTIONS(2152), - [anon_sym_GT_GT] = ACTIONS(2150), - [anon_sym_GT_GT_GT] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2152), - [anon_sym_PIPE_PIPE] = ACTIONS(2152), - [anon_sym_EQ_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_LT_EQ] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2150), - [anon_sym_GT_EQ] = ACTIONS(2152), - [anon_sym_EQ_GT] = ACTIONS(2152), - [anon_sym_QMARK_QMARK] = ACTIONS(2152), - [anon_sym_EQ] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2152), - [anon_sym_null] = ACTIONS(2150), - [anon_sym_macro] = ACTIONS(2150), - [anon_sym_abstract] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_public] = ACTIONS(2150), - [anon_sym_private] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [anon_sym_overload] = ACTIONS(2150), - [anon_sym_override] = ACTIONS(2150), - [anon_sym_final] = ACTIONS(2150), - [anon_sym_class] = ACTIONS(2150), - [anon_sym_interface] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_function] = ACTIONS(2150), - [anon_sym_var] = ACTIONS(2150), - [aux_sym_integer_token1] = ACTIONS(2150), - [aux_sym_integer_token2] = ACTIONS(2152), - [aux_sym_float_token1] = ACTIONS(2150), - [aux_sym_float_token2] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [aux_sym_string_token1] = ACTIONS(2152), - [aux_sym_string_token3] = ACTIONS(2152), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2686), + [anon_sym_package] = ACTIONS(2684), + [anon_sym_import] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_case] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_cast] = ACTIONS(2684), + [anon_sym_DOLLARtype] = ACTIONS(2686), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_untyped] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_this] = ACTIONS(2684), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_AT_COLON] = ACTIONS(2686), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(2684), + [anon_sym_else] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PERCENT] = ACTIONS(2686), + [anon_sym_SLASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_LT_LT] = ACTIONS(2686), + [anon_sym_GT_GT] = ACTIONS(2684), + [anon_sym_GT_GT_GT] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2686), + [anon_sym_AMP_AMP] = ACTIONS(2686), + [anon_sym_PIPE_PIPE] = ACTIONS(2686), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2684), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_EQ_GT] = ACTIONS(2686), + [anon_sym_QMARK_QMARK] = ACTIONS(2686), + [anon_sym_EQ] = ACTIONS(2684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_null] = ACTIONS(2684), + [anon_sym_macro] = ACTIONS(2684), + [anon_sym_abstract] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_public] = ACTIONS(2684), + [anon_sym_private] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_overload] = ACTIONS(2684), + [anon_sym_override] = ACTIONS(2684), + [anon_sym_final] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_interface] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_function] = ACTIONS(2684), + [anon_sym_var] = ACTIONS(2684), + [aux_sym_integer_token1] = ACTIONS(2684), + [aux_sym_integer_token2] = ACTIONS(2686), + [aux_sym_float_token1] = ACTIONS(2684), + [aux_sym_float_token2] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [aux_sym_string_token1] = ACTIONS(2686), + [aux_sym_string_token3] = ACTIONS(2686), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2686), [sym__closing_brace_unmarker] = ACTIONS(3), }, [422] = { - [sym_identifier] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2156), - [anon_sym_package] = ACTIONS(2154), - [anon_sym_import] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2154), - [anon_sym_throw] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_case] = ACTIONS(2154), - [anon_sym_default] = ACTIONS(2154), - [anon_sym_cast] = ACTIONS(2154), - [anon_sym_DOLLARtype] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2154), - [anon_sym_untyped] = ACTIONS(2154), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_this] = ACTIONS(2154), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_AT_COLON] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2154), - [anon_sym_catch] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2154), - [anon_sym_do] = ACTIONS(2154), - [anon_sym_new] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_PERCENT] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(2156), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_GT_GT_GT] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2156), - [anon_sym_PIPE_PIPE] = ACTIONS(2156), - [anon_sym_EQ_EQ] = ACTIONS(2156), - [anon_sym_BANG_EQ] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_LT_EQ] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2156), - [anon_sym_EQ_GT] = ACTIONS(2156), - [anon_sym_QMARK_QMARK] = ACTIONS(2156), - [anon_sym_EQ] = ACTIONS(2154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2154), - [anon_sym_macro] = ACTIONS(2154), - [anon_sym_abstract] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2154), - [anon_sym_public] = ACTIONS(2154), - [anon_sym_private] = ACTIONS(2154), - [anon_sym_extern] = ACTIONS(2154), - [anon_sym_inline] = ACTIONS(2154), - [anon_sym_overload] = ACTIONS(2154), - [anon_sym_override] = ACTIONS(2154), - [anon_sym_final] = ACTIONS(2154), - [anon_sym_class] = ACTIONS(2154), - [anon_sym_interface] = ACTIONS(2154), - [anon_sym_enum] = ACTIONS(2154), - [anon_sym_typedef] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2154), - [anon_sym_var] = ACTIONS(2154), - [aux_sym_integer_token1] = ACTIONS(2154), - [aux_sym_integer_token2] = ACTIONS(2156), - [aux_sym_float_token1] = ACTIONS(2154), - [aux_sym_float_token2] = ACTIONS(2156), - [anon_sym_true] = ACTIONS(2154), - [anon_sym_false] = ACTIONS(2154), - [aux_sym_string_token1] = ACTIONS(2156), - [aux_sym_string_token3] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2156), + [sym_identifier] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2690), + [anon_sym_package] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_using] = ACTIONS(2688), + [anon_sym_throw] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2690), + [anon_sym_switch] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_case] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_cast] = ACTIONS(2688), + [anon_sym_DOLLARtype] = ACTIONS(2690), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_untyped] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_this] = ACTIONS(2688), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_AT_COLON] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_catch] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_do] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PERCENT] = ACTIONS(2690), + [anon_sym_SLASH] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_LT_LT] = ACTIONS(2690), + [anon_sym_GT_GT] = ACTIONS(2688), + [anon_sym_GT_GT_GT] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(2690), + [anon_sym_PIPE_PIPE] = ACTIONS(2690), + [anon_sym_EQ_EQ] = ACTIONS(2690), + [anon_sym_BANG_EQ] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2690), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2690), + [anon_sym_EQ_GT] = ACTIONS(2690), + [anon_sym_QMARK_QMARK] = ACTIONS(2690), + [anon_sym_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2690), + [anon_sym_null] = ACTIONS(2688), + [anon_sym_macro] = ACTIONS(2688), + [anon_sym_abstract] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_private] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_overload] = ACTIONS(2688), + [anon_sym_override] = ACTIONS(2688), + [anon_sym_final] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_interface] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_typedef] = ACTIONS(2688), + [anon_sym_function] = ACTIONS(2688), + [anon_sym_var] = ACTIONS(2688), + [aux_sym_integer_token1] = ACTIONS(2688), + [aux_sym_integer_token2] = ACTIONS(2690), + [aux_sym_float_token1] = ACTIONS(2688), + [aux_sym_float_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2688), + [anon_sym_false] = ACTIONS(2688), + [aux_sym_string_token1] = ACTIONS(2690), + [aux_sym_string_token3] = ACTIONS(2690), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2690), [sym__closing_brace_unmarker] = ACTIONS(3), }, [423] = { - [sym_identifier] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [anon_sym_package] = ACTIONS(2158), - [anon_sym_import] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2158), - [anon_sym_throw] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2158), - [anon_sym_cast] = ACTIONS(2158), - [anon_sym_DOLLARtype] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_untyped] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_this] = ACTIONS(2158), - [anon_sym_AT] = ACTIONS(2158), - [anon_sym_AT_COLON] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2158), - [anon_sym_catch] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2158), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2158), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_EQ_GT] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2158), - [anon_sym_macro] = ACTIONS(2158), - [anon_sym_abstract] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_public] = ACTIONS(2158), - [anon_sym_private] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2158), - [anon_sym_overload] = ACTIONS(2158), - [anon_sym_override] = ACTIONS(2158), - [anon_sym_final] = ACTIONS(2158), - [anon_sym_class] = ACTIONS(2158), - [anon_sym_interface] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), - [anon_sym_typedef] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2158), - [anon_sym_var] = ACTIONS(2158), - [aux_sym_integer_token1] = ACTIONS(2158), - [aux_sym_integer_token2] = ACTIONS(2160), - [aux_sym_float_token1] = ACTIONS(2158), - [aux_sym_float_token2] = ACTIONS(2160), - [anon_sym_true] = ACTIONS(2158), - [anon_sym_false] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [aux_sym_string_token3] = ACTIONS(2160), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_package] = ACTIONS(2644), + [anon_sym_import] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(2644), + [anon_sym_throw] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_cast] = ACTIONS(2644), + [anon_sym_DOLLARtype] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_untyped] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_this] = ACTIONS(2644), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_AT_COLON] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_catch] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_SLASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_LT_LT] = ACTIONS(2646), + [anon_sym_GT_GT] = ACTIONS(2644), + [anon_sym_GT_GT_GT] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_EQ_EQ] = ACTIONS(2646), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_LT_EQ] = ACTIONS(2646), + [anon_sym_GT] = ACTIONS(2644), + [anon_sym_GT_EQ] = ACTIONS(2646), + [anon_sym_EQ_GT] = ACTIONS(2646), + [anon_sym_QMARK_QMARK] = ACTIONS(2646), + [anon_sym_EQ] = ACTIONS(2644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_macro] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym_overload] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_final] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_var] = ACTIONS(2644), + [aux_sym_integer_token1] = ACTIONS(2644), + [aux_sym_integer_token2] = ACTIONS(2646), + [aux_sym_float_token1] = ACTIONS(2644), + [aux_sym_float_token2] = ACTIONS(2646), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym_string_token1] = ACTIONS(2646), + [aux_sym_string_token3] = ACTIONS(2646), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2646), [sym__closing_brace_unmarker] = ACTIONS(3), }, [424] = { - [sym_identifier] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2164), - [anon_sym_package] = ACTIONS(2162), - [anon_sym_import] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2162), - [anon_sym_throw] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_case] = ACTIONS(2162), - [anon_sym_default] = ACTIONS(2162), - [anon_sym_cast] = ACTIONS(2162), - [anon_sym_DOLLARtype] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_untyped] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_this] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_AT_COLON] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2162), - [anon_sym_catch] = ACTIONS(2162), - [anon_sym_else] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_do] = ACTIONS(2162), - [anon_sym_new] = ACTIONS(2162), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_EQ_GT] = ACTIONS(2164), - [anon_sym_QMARK_QMARK] = ACTIONS(2164), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2164), - [anon_sym_null] = ACTIONS(2162), - [anon_sym_macro] = ACTIONS(2162), - [anon_sym_abstract] = ACTIONS(2162), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_public] = ACTIONS(2162), - [anon_sym_private] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2162), - [anon_sym_inline] = ACTIONS(2162), - [anon_sym_overload] = ACTIONS(2162), - [anon_sym_override] = ACTIONS(2162), - [anon_sym_final] = ACTIONS(2162), - [anon_sym_class] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_typedef] = ACTIONS(2162), - [anon_sym_function] = ACTIONS(2162), - [anon_sym_var] = ACTIONS(2162), - [aux_sym_integer_token1] = ACTIONS(2162), - [aux_sym_integer_token2] = ACTIONS(2164), - [aux_sym_float_token1] = ACTIONS(2162), - [aux_sym_float_token2] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2162), - [anon_sym_false] = ACTIONS(2162), - [aux_sym_string_token1] = ACTIONS(2164), - [aux_sym_string_token3] = ACTIONS(2164), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_package] = ACTIONS(2692), + [anon_sym_import] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_using] = ACTIONS(2692), + [anon_sym_throw] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_switch] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_case] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_cast] = ACTIONS(2692), + [anon_sym_DOLLARtype] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_untyped] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_this] = ACTIONS(2692), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_AT_COLON] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_do] = ACTIONS(2692), + [anon_sym_new] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2692), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2692), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2694), + [anon_sym_QMARK_QMARK] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2694), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_macro] = ACTIONS(2692), + [anon_sym_abstract] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_public] = ACTIONS(2692), + [anon_sym_private] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym_overload] = ACTIONS(2692), + [anon_sym_override] = ACTIONS(2692), + [anon_sym_final] = ACTIONS(2692), + [anon_sym_class] = ACTIONS(2692), + [anon_sym_interface] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2692), + [anon_sym_var] = ACTIONS(2692), + [aux_sym_integer_token1] = ACTIONS(2692), + [aux_sym_integer_token2] = ACTIONS(2694), + [aux_sym_float_token1] = ACTIONS(2692), + [aux_sym_float_token2] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [aux_sym_string_token1] = ACTIONS(2694), + [aux_sym_string_token3] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2694), [sym__closing_brace_unmarker] = ACTIONS(3), }, [425] = { - [sym_identifier] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2168), - [anon_sym_package] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_case] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_cast] = ACTIONS(2166), - [anon_sym_DOLLARtype] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_untyped] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_this] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_AT_COLON] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_catch] = ACTIONS(2166), - [anon_sym_else] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2168), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2168), - [anon_sym_PIPE_PIPE] = ACTIONS(2168), - [anon_sym_EQ_EQ] = ACTIONS(2168), - [anon_sym_BANG_EQ] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_LT_EQ] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2168), - [anon_sym_EQ_GT] = ACTIONS(2168), - [anon_sym_QMARK_QMARK] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2168), - [anon_sym_null] = ACTIONS(2166), - [anon_sym_macro] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_extern] = ACTIONS(2166), - [anon_sym_inline] = ACTIONS(2166), - [anon_sym_overload] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_final] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [anon_sym_typedef] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [aux_sym_integer_token1] = ACTIONS(2166), - [aux_sym_integer_token2] = ACTIONS(2168), - [aux_sym_float_token1] = ACTIONS(2166), - [aux_sym_float_token2] = ACTIONS(2168), - [anon_sym_true] = ACTIONS(2166), - [anon_sym_false] = ACTIONS(2166), - [aux_sym_string_token1] = ACTIONS(2168), - [aux_sym_string_token3] = ACTIONS(2168), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2698), + [anon_sym_package] = ACTIONS(2696), + [anon_sym_import] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_using] = ACTIONS(2696), + [anon_sym_throw] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_switch] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_cast] = ACTIONS(2696), + [anon_sym_DOLLARtype] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_untyped] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_this] = ACTIONS(2696), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_AT_COLON] = ACTIONS(2698), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_do] = ACTIONS(2696), + [anon_sym_new] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_PERCENT] = ACTIONS(2698), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2698), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_GT_GT_GT] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(2698), + [anon_sym_PIPE_PIPE] = ACTIONS(2698), + [anon_sym_EQ_EQ] = ACTIONS(2698), + [anon_sym_BANG_EQ] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2698), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2698), + [anon_sym_EQ_GT] = ACTIONS(2698), + [anon_sym_QMARK_QMARK] = ACTIONS(2698), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2698), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_macro] = ACTIONS(2696), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym_inline] = ACTIONS(2696), + [anon_sym_overload] = ACTIONS(2696), + [anon_sym_override] = ACTIONS(2696), + [anon_sym_final] = ACTIONS(2696), + [anon_sym_class] = ACTIONS(2696), + [anon_sym_interface] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_typedef] = ACTIONS(2696), + [anon_sym_function] = ACTIONS(2696), + [anon_sym_var] = ACTIONS(2696), + [aux_sym_integer_token1] = ACTIONS(2696), + [aux_sym_integer_token2] = ACTIONS(2698), + [aux_sym_float_token1] = ACTIONS(2696), + [aux_sym_float_token2] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [aux_sym_string_token1] = ACTIONS(2698), + [aux_sym_string_token3] = ACTIONS(2698), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2698), [sym__closing_brace_unmarker] = ACTIONS(3), }, [426] = { - [sym_identifier] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_package] = ACTIONS(2170), - [anon_sym_import] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2170), - [anon_sym_throw] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_case] = ACTIONS(2170), - [anon_sym_default] = ACTIONS(2170), - [anon_sym_cast] = ACTIONS(2170), - [anon_sym_DOLLARtype] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_untyped] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_this] = ACTIONS(2170), - [anon_sym_AT] = ACTIONS(2170), - [anon_sym_AT_COLON] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2170), - [anon_sym_catch] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2170), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2170), - [anon_sym_LT_LT] = ACTIONS(2172), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_GT_GT_GT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(2172), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_EQ_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_LT_EQ] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_GT_EQ] = ACTIONS(2172), - [anon_sym_EQ_GT] = ACTIONS(2172), - [anon_sym_QMARK_QMARK] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2170), - [anon_sym_macro] = ACTIONS(2170), - [anon_sym_abstract] = ACTIONS(2170), - [anon_sym_static] = ACTIONS(2170), - [anon_sym_public] = ACTIONS(2170), - [anon_sym_private] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym_inline] = ACTIONS(2170), - [anon_sym_overload] = ACTIONS(2170), - [anon_sym_override] = ACTIONS(2170), - [anon_sym_final] = ACTIONS(2170), - [anon_sym_class] = ACTIONS(2170), - [anon_sym_interface] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_typedef] = ACTIONS(2170), - [anon_sym_function] = ACTIONS(2170), - [anon_sym_var] = ACTIONS(2170), - [aux_sym_integer_token1] = ACTIONS(2170), - [aux_sym_integer_token2] = ACTIONS(2172), - [aux_sym_float_token1] = ACTIONS(2170), - [aux_sym_float_token2] = ACTIONS(2172), - [anon_sym_true] = ACTIONS(2170), - [anon_sym_false] = ACTIONS(2170), - [aux_sym_string_token1] = ACTIONS(2172), - [aux_sym_string_token3] = ACTIONS(2172), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2702), + [anon_sym_package] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_using] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_cast] = ACTIONS(2700), + [anon_sym_DOLLARtype] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_untyped] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_this] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_AT_COLON] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_catch] = ACTIONS(2700), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PERCENT] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_LT_LT] = ACTIONS(2702), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_GT_GT_GT] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_EQ_GT] = ACTIONS(2702), + [anon_sym_QMARK_QMARK] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(2700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2702), + [anon_sym_null] = ACTIONS(2700), + [anon_sym_macro] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_inline] = ACTIONS(2700), + [anon_sym_overload] = ACTIONS(2700), + [anon_sym_override] = ACTIONS(2700), + [anon_sym_final] = ACTIONS(2700), + [anon_sym_class] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_typedef] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [aux_sym_integer_token1] = ACTIONS(2700), + [aux_sym_integer_token2] = ACTIONS(2702), + [aux_sym_float_token1] = ACTIONS(2700), + [aux_sym_float_token2] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [aux_sym_string_token1] = ACTIONS(2702), + [aux_sym_string_token3] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2702), [sym__closing_brace_unmarker] = ACTIONS(3), }, [427] = { - [sym_identifier] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(2176), - [anon_sym_package] = ACTIONS(2174), - [anon_sym_import] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2174), - [anon_sym_throw] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_cast] = ACTIONS(2174), - [anon_sym_DOLLARtype] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_untyped] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_this] = ACTIONS(2174), - [anon_sym_AT] = ACTIONS(2174), - [anon_sym_AT_COLON] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2174), - [anon_sym_catch] = ACTIONS(2174), - [anon_sym_else] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_new] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_LT_LT] = ACTIONS(2176), - [anon_sym_GT_GT] = ACTIONS(2174), - [anon_sym_GT_GT_GT] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2176), - [anon_sym_PIPE_PIPE] = ACTIONS(2176), - [anon_sym_EQ_EQ] = ACTIONS(2176), - [anon_sym_BANG_EQ] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_LT_EQ] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2174), - [anon_sym_GT_EQ] = ACTIONS(2176), - [anon_sym_EQ_GT] = ACTIONS(2176), - [anon_sym_QMARK_QMARK] = ACTIONS(2176), - [anon_sym_EQ] = ACTIONS(2174), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2176), - [anon_sym_null] = ACTIONS(2174), - [anon_sym_macro] = ACTIONS(2174), - [anon_sym_abstract] = ACTIONS(2174), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_public] = ACTIONS(2174), - [anon_sym_private] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [anon_sym_overload] = ACTIONS(2174), - [anon_sym_override] = ACTIONS(2174), - [anon_sym_final] = ACTIONS(2174), - [anon_sym_class] = ACTIONS(2174), - [anon_sym_interface] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_function] = ACTIONS(2174), - [anon_sym_var] = ACTIONS(2174), - [aux_sym_integer_token1] = ACTIONS(2174), - [aux_sym_integer_token2] = ACTIONS(2176), - [aux_sym_float_token1] = ACTIONS(2174), - [aux_sym_float_token2] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [aux_sym_string_token1] = ACTIONS(2176), - [aux_sym_string_token3] = ACTIONS(2176), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2706), + [anon_sym_package] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_using] = ACTIONS(2704), + [anon_sym_throw] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_cast] = ACTIONS(2704), + [anon_sym_DOLLARtype] = ACTIONS(2706), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_untyped] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_this] = ACTIONS(2704), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_AT_COLON] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_new] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PERCENT] = ACTIONS(2706), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2706), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_EQ_GT] = ACTIONS(2706), + [anon_sym_QMARK_QMARK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2706), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_macro] = ACTIONS(2704), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_public] = ACTIONS(2704), + [anon_sym_private] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym_overload] = ACTIONS(2704), + [anon_sym_override] = ACTIONS(2704), + [anon_sym_final] = ACTIONS(2704), + [anon_sym_class] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_function] = ACTIONS(2704), + [anon_sym_var] = ACTIONS(2704), + [aux_sym_integer_token1] = ACTIONS(2704), + [aux_sym_integer_token2] = ACTIONS(2706), + [aux_sym_float_token1] = ACTIONS(2704), + [aux_sym_float_token2] = ACTIONS(2706), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [aux_sym_string_token1] = ACTIONS(2706), + [aux_sym_string_token3] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2706), [sym__closing_brace_unmarker] = ACTIONS(3), }, [428] = { - [sym_identifier] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(2180), - [anon_sym_package] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_using] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2180), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_cast] = ACTIONS(2178), - [anon_sym_DOLLARtype] = ACTIONS(2180), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_untyped] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_this] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_AT_COLON] = ACTIONS(2180), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_catch] = ACTIONS(2178), - [anon_sym_else] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PERCENT] = ACTIONS(2180), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP_AMP] = ACTIONS(2180), - [anon_sym_PIPE_PIPE] = ACTIONS(2180), - [anon_sym_EQ_EQ] = ACTIONS(2180), - [anon_sym_BANG_EQ] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_LT_EQ] = ACTIONS(2180), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2180), - [anon_sym_EQ_GT] = ACTIONS(2180), - [anon_sym_QMARK_QMARK] = ACTIONS(2180), - [anon_sym_EQ] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2180), - [anon_sym_null] = ACTIONS(2178), - [anon_sym_macro] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [anon_sym_overload] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_final] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [aux_sym_integer_token1] = ACTIONS(2178), - [aux_sym_integer_token2] = ACTIONS(2180), - [aux_sym_float_token1] = ACTIONS(2178), - [aux_sym_float_token2] = ACTIONS(2180), - [anon_sym_true] = ACTIONS(2178), - [anon_sym_false] = ACTIONS(2178), - [aux_sym_string_token1] = ACTIONS(2180), - [aux_sym_string_token3] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_package] = ACTIONS(2708), + [anon_sym_import] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_using] = ACTIONS(2708), + [anon_sym_throw] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_cast] = ACTIONS(2708), + [anon_sym_DOLLARtype] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_untyped] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_this] = ACTIONS(2708), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_AT_COLON] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_PERCENT] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_LT_LT] = ACTIONS(2710), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_GT_GT_GT] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_EQ_GT] = ACTIONS(2710), + [anon_sym_QMARK_QMARK] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_macro] = ACTIONS(2708), + [anon_sym_abstract] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_public] = ACTIONS(2708), + [anon_sym_private] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym_inline] = ACTIONS(2708), + [anon_sym_overload] = ACTIONS(2708), + [anon_sym_override] = ACTIONS(2708), + [anon_sym_final] = ACTIONS(2708), + [anon_sym_class] = ACTIONS(2708), + [anon_sym_interface] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_typedef] = ACTIONS(2708), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_var] = ACTIONS(2708), + [aux_sym_integer_token1] = ACTIONS(2708), + [aux_sym_integer_token2] = ACTIONS(2710), + [aux_sym_float_token1] = ACTIONS(2708), + [aux_sym_float_token2] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [aux_sym_string_token1] = ACTIONS(2710), + [aux_sym_string_token3] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2710), [sym__closing_brace_unmarker] = ACTIONS(3), }, [429] = { - [sym_identifier] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(2184), - [anon_sym_package] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_cast] = ACTIONS(2182), - [anon_sym_DOLLARtype] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_untyped] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_this] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_AT_COLON] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_catch] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2182), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_EQ_GT] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2182), - [anon_sym_macro] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_extern] = ACTIONS(2182), - [anon_sym_inline] = ACTIONS(2182), - [anon_sym_overload] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_final] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [anon_sym_typedef] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [aux_sym_integer_token1] = ACTIONS(2182), - [aux_sym_integer_token2] = ACTIONS(2184), - [aux_sym_float_token1] = ACTIONS(2182), - [aux_sym_float_token2] = ACTIONS(2184), - [anon_sym_true] = ACTIONS(2182), - [anon_sym_false] = ACTIONS(2182), - [aux_sym_string_token1] = ACTIONS(2184), - [aux_sym_string_token3] = ACTIONS(2184), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_package] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_using] = ACTIONS(2712), + [anon_sym_throw] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_cast] = ACTIONS(2712), + [anon_sym_DOLLARtype] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_untyped] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_this] = ACTIONS(2712), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_AT_COLON] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PERCENT] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2714), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_GT_GT_GT] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP_AMP] = ACTIONS(2714), + [anon_sym_PIPE_PIPE] = ACTIONS(2714), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_EQ_GT] = ACTIONS(2714), + [anon_sym_QMARK_QMARK] = ACTIONS(2714), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2714), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_macro] = ACTIONS(2712), + [anon_sym_abstract] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_public] = ACTIONS(2712), + [anon_sym_private] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym_overload] = ACTIONS(2712), + [anon_sym_override] = ACTIONS(2712), + [anon_sym_final] = ACTIONS(2712), + [anon_sym_class] = ACTIONS(2712), + [anon_sym_interface] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(2712), + [anon_sym_var] = ACTIONS(2712), + [aux_sym_integer_token1] = ACTIONS(2712), + [aux_sym_integer_token2] = ACTIONS(2714), + [aux_sym_float_token1] = ACTIONS(2712), + [aux_sym_float_token2] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [aux_sym_string_token1] = ACTIONS(2714), + [aux_sym_string_token3] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2714), [sym__closing_brace_unmarker] = ACTIONS(3), }, [430] = { - [sym_identifier] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(2188), - [anon_sym_package] = ACTIONS(2186), - [anon_sym_import] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2186), - [anon_sym_throw] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_case] = ACTIONS(2186), - [anon_sym_default] = ACTIONS(2186), - [anon_sym_cast] = ACTIONS(2186), - [anon_sym_DOLLARtype] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2186), - [anon_sym_return] = ACTIONS(2186), - [anon_sym_untyped] = ACTIONS(2186), - [anon_sym_break] = ACTIONS(2186), - [anon_sym_continue] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_this] = ACTIONS(2186), - [anon_sym_AT] = ACTIONS(2186), - [anon_sym_AT_COLON] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2186), - [anon_sym_catch] = ACTIONS(2186), - [anon_sym_else] = ACTIONS(2186), - [anon_sym_if] = ACTIONS(2186), - [anon_sym_while] = ACTIONS(2186), - [anon_sym_do] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2186), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2188), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_GT_GT_GT] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_EQ_EQ] = ACTIONS(2188), - [anon_sym_BANG_EQ] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_LT_EQ] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_EQ] = ACTIONS(2188), - [anon_sym_EQ_GT] = ACTIONS(2188), - [anon_sym_QMARK_QMARK] = ACTIONS(2188), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2188), - [anon_sym_null] = ACTIONS(2186), - [anon_sym_macro] = ACTIONS(2186), - [anon_sym_abstract] = ACTIONS(2186), - [anon_sym_static] = ACTIONS(2186), - [anon_sym_public] = ACTIONS(2186), - [anon_sym_private] = ACTIONS(2186), - [anon_sym_extern] = ACTIONS(2186), - [anon_sym_inline] = ACTIONS(2186), - [anon_sym_overload] = ACTIONS(2186), - [anon_sym_override] = ACTIONS(2186), - [anon_sym_final] = ACTIONS(2186), - [anon_sym_class] = ACTIONS(2186), - [anon_sym_interface] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2186), - [anon_sym_typedef] = ACTIONS(2186), - [anon_sym_function] = ACTIONS(2186), - [anon_sym_var] = ACTIONS(2186), - [aux_sym_integer_token1] = ACTIONS(2186), - [aux_sym_integer_token2] = ACTIONS(2188), - [aux_sym_float_token1] = ACTIONS(2186), - [aux_sym_float_token2] = ACTIONS(2188), - [anon_sym_true] = ACTIONS(2186), - [anon_sym_false] = ACTIONS(2186), - [aux_sym_string_token1] = ACTIONS(2188), - [aux_sym_string_token3] = ACTIONS(2188), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_package] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2716), + [anon_sym_throw] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_cast] = ACTIONS(2716), + [anon_sym_DOLLARtype] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_untyped] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_this] = ACTIONS(2716), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_AT_COLON] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_new] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2718), + [anon_sym_GT_GT] = ACTIONS(2716), + [anon_sym_GT_GT_GT] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_EQ_EQ] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_LT_EQ] = ACTIONS(2718), + [anon_sym_GT] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2718), + [anon_sym_EQ_GT] = ACTIONS(2718), + [anon_sym_QMARK_QMARK] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2718), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_macro] = ACTIONS(2716), + [anon_sym_abstract] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_public] = ACTIONS(2716), + [anon_sym_private] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym_inline] = ACTIONS(2716), + [anon_sym_overload] = ACTIONS(2716), + [anon_sym_override] = ACTIONS(2716), + [anon_sym_final] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2716), + [anon_sym_interface] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_typedef] = ACTIONS(2716), + [anon_sym_function] = ACTIONS(2716), + [anon_sym_var] = ACTIONS(2716), + [aux_sym_integer_token1] = ACTIONS(2716), + [aux_sym_integer_token2] = ACTIONS(2718), + [aux_sym_float_token1] = ACTIONS(2716), + [aux_sym_float_token2] = ACTIONS(2718), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [aux_sym_string_token1] = ACTIONS(2718), + [aux_sym_string_token3] = ACTIONS(2718), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2718), [sym__closing_brace_unmarker] = ACTIONS(3), }, [431] = { - [sym_identifier] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(2192), - [anon_sym_package] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_cast] = ACTIONS(2190), - [anon_sym_DOLLARtype] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_untyped] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_this] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_AT_COLON] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_EQ_GT] = ACTIONS(2192), - [anon_sym_QMARK_QMARK] = ACTIONS(2192), - [anon_sym_EQ] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_null] = ACTIONS(2190), - [anon_sym_macro] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_extern] = ACTIONS(2190), - [anon_sym_inline] = ACTIONS(2190), - [anon_sym_overload] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_final] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [anon_sym_typedef] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [aux_sym_integer_token1] = ACTIONS(2190), - [aux_sym_integer_token2] = ACTIONS(2192), - [aux_sym_float_token1] = ACTIONS(2190), - [aux_sym_float_token2] = ACTIONS(2192), - [anon_sym_true] = ACTIONS(2190), - [anon_sym_false] = ACTIONS(2190), - [aux_sym_string_token1] = ACTIONS(2192), - [aux_sym_string_token3] = ACTIONS(2192), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2720), + [anon_sym_import] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2720), + [anon_sym_throw] = ACTIONS(2720), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_cast] = ACTIONS(2720), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_untyped] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2720), + [anon_sym_catch] = ACTIONS(2720), + [anon_sym_else] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2720), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2720), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2720), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2720), + [anon_sym_macro] = ACTIONS(2720), + [anon_sym_abstract] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym_inline] = ACTIONS(2720), + [anon_sym_overload] = ACTIONS(2720), + [anon_sym_override] = ACTIONS(2720), + [anon_sym_final] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(2720), + [anon_sym_interface] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_typedef] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2720), + [anon_sym_var] = ACTIONS(2720), + [aux_sym_integer_token1] = ACTIONS(2720), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2720), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2720), + [anon_sym_false] = ACTIONS(2720), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2722), [sym__closing_brace_unmarker] = ACTIONS(3), }, [432] = { - [sym_identifier] = ACTIONS(2194), - [anon_sym_POUND] = ACTIONS(2196), - [anon_sym_package] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_cast] = ACTIONS(2194), - [anon_sym_DOLLARtype] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_untyped] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_this] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_AT_COLON] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2194), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_EQ_GT] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2196), - [anon_sym_null] = ACTIONS(2194), - [anon_sym_macro] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym_overload] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_final] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [aux_sym_integer_token1] = ACTIONS(2194), - [aux_sym_integer_token2] = ACTIONS(2196), - [aux_sym_float_token1] = ACTIONS(2194), - [aux_sym_float_token2] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2194), - [anon_sym_false] = ACTIONS(2194), - [aux_sym_string_token1] = ACTIONS(2196), - [aux_sym_string_token3] = ACTIONS(2196), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2726), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2726), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PERCENT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP_AMP] = ACTIONS(2726), + [anon_sym_PIPE_PIPE] = ACTIONS(2726), + [anon_sym_EQ_EQ] = ACTIONS(2726), + [anon_sym_BANG_EQ] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2726), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2726), + [anon_sym_EQ_GT] = ACTIONS(2726), + [anon_sym_QMARK_QMARK] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2726), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2726), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2726), + [aux_sym_string_token3] = ACTIONS(2726), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2726), [sym__closing_brace_unmarker] = ACTIONS(3), }, [433] = { - [sym_identifier] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(2200), - [anon_sym_package] = ACTIONS(2198), - [anon_sym_import] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_throw] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_case] = ACTIONS(2198), - [anon_sym_default] = ACTIONS(2198), - [anon_sym_cast] = ACTIONS(2198), - [anon_sym_DOLLARtype] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_untyped] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_this] = ACTIONS(2198), - [anon_sym_AT] = ACTIONS(2198), - [anon_sym_AT_COLON] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2198), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2198), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_GT_GT_GT] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_PIPE_PIPE] = ACTIONS(2200), - [anon_sym_EQ_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_LT_EQ] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_EQ] = ACTIONS(2200), - [anon_sym_EQ_GT] = ACTIONS(2200), - [anon_sym_QMARK_QMARK] = ACTIONS(2200), - [anon_sym_EQ] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), - [anon_sym_null] = ACTIONS(2198), - [anon_sym_macro] = ACTIONS(2198), - [anon_sym_abstract] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_public] = ACTIONS(2198), - [anon_sym_private] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym_overload] = ACTIONS(2198), - [anon_sym_override] = ACTIONS(2198), - [anon_sym_final] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_interface] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_function] = ACTIONS(2198), - [anon_sym_var] = ACTIONS(2198), - [aux_sym_integer_token1] = ACTIONS(2198), - [aux_sym_integer_token2] = ACTIONS(2200), - [aux_sym_float_token1] = ACTIONS(2198), - [aux_sym_float_token2] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2198), - [anon_sym_false] = ACTIONS(2198), - [aux_sym_string_token1] = ACTIONS(2200), - [aux_sym_string_token3] = ACTIONS(2200), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2730), + [anon_sym_package] = ACTIONS(2728), + [anon_sym_import] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_using] = ACTIONS(2728), + [anon_sym_throw] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_cast] = ACTIONS(2728), + [anon_sym_DOLLARtype] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_untyped] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_this] = ACTIONS(2728), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_AT_COLON] = ACTIONS(2730), + [anon_sym_try] = ACTIONS(2728), + [anon_sym_catch] = ACTIONS(2728), + [anon_sym_else] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_new] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_PERCENT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_LT_LT] = ACTIONS(2730), + [anon_sym_GT_GT] = ACTIONS(2728), + [anon_sym_GT_GT_GT] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_AMP_AMP] = ACTIONS(2730), + [anon_sym_PIPE_PIPE] = ACTIONS(2730), + [anon_sym_EQ_EQ] = ACTIONS(2730), + [anon_sym_BANG_EQ] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_LT_EQ] = ACTIONS(2730), + [anon_sym_GT] = ACTIONS(2728), + [anon_sym_GT_EQ] = ACTIONS(2730), + [anon_sym_EQ_GT] = ACTIONS(2730), + [anon_sym_QMARK_QMARK] = ACTIONS(2730), + [anon_sym_EQ] = ACTIONS(2728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2730), + [anon_sym_null] = ACTIONS(2728), + [anon_sym_macro] = ACTIONS(2728), + [anon_sym_abstract] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_public] = ACTIONS(2728), + [anon_sym_private] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym_inline] = ACTIONS(2728), + [anon_sym_overload] = ACTIONS(2728), + [anon_sym_override] = ACTIONS(2728), + [anon_sym_final] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(2728), + [anon_sym_interface] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_typedef] = ACTIONS(2728), + [anon_sym_function] = ACTIONS(2728), + [anon_sym_var] = ACTIONS(2728), + [aux_sym_integer_token1] = ACTIONS(2728), + [aux_sym_integer_token2] = ACTIONS(2730), + [aux_sym_float_token1] = ACTIONS(2728), + [aux_sym_float_token2] = ACTIONS(2730), + [anon_sym_true] = ACTIONS(2728), + [anon_sym_false] = ACTIONS(2728), + [aux_sym_string_token1] = ACTIONS(2730), + [aux_sym_string_token3] = ACTIONS(2730), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2730), [sym__closing_brace_unmarker] = ACTIONS(3), }, [434] = { - [sym_identifier] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(2204), - [anon_sym_package] = ACTIONS(2202), - [anon_sym_import] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2202), - [anon_sym_throw] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_case] = ACTIONS(2202), - [anon_sym_default] = ACTIONS(2202), - [anon_sym_cast] = ACTIONS(2202), - [anon_sym_DOLLARtype] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2202), - [anon_sym_return] = ACTIONS(2202), - [anon_sym_untyped] = ACTIONS(2202), - [anon_sym_break] = ACTIONS(2202), - [anon_sym_continue] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_this] = ACTIONS(2202), - [anon_sym_AT] = ACTIONS(2202), - [anon_sym_AT_COLON] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2202), - [anon_sym_catch] = ACTIONS(2202), - [anon_sym_else] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_while] = ACTIONS(2202), - [anon_sym_do] = ACTIONS(2202), - [anon_sym_new] = ACTIONS(2202), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_GT_GT_GT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_PIPE_PIPE] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_EQ_GT] = ACTIONS(2204), - [anon_sym_QMARK_QMARK] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2204), - [anon_sym_null] = ACTIONS(2202), - [anon_sym_macro] = ACTIONS(2202), - [anon_sym_abstract] = ACTIONS(2202), - [anon_sym_static] = ACTIONS(2202), - [anon_sym_public] = ACTIONS(2202), - [anon_sym_private] = ACTIONS(2202), - [anon_sym_extern] = ACTIONS(2202), - [anon_sym_inline] = ACTIONS(2202), - [anon_sym_overload] = ACTIONS(2202), - [anon_sym_override] = ACTIONS(2202), - [anon_sym_final] = ACTIONS(2202), - [anon_sym_class] = ACTIONS(2202), - [anon_sym_interface] = ACTIONS(2202), - [anon_sym_enum] = ACTIONS(2202), - [anon_sym_typedef] = ACTIONS(2202), - [anon_sym_function] = ACTIONS(2202), - [anon_sym_var] = ACTIONS(2202), - [aux_sym_integer_token1] = ACTIONS(2202), - [aux_sym_integer_token2] = ACTIONS(2204), - [aux_sym_float_token1] = ACTIONS(2202), - [aux_sym_float_token2] = ACTIONS(2204), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [aux_sym_string_token1] = ACTIONS(2204), - [aux_sym_string_token3] = ACTIONS(2204), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2734), + [anon_sym_package] = ACTIONS(2732), + [anon_sym_import] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_using] = ACTIONS(2732), + [anon_sym_throw] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_cast] = ACTIONS(2732), + [anon_sym_DOLLARtype] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_untyped] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_this] = ACTIONS(2732), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_AT_COLON] = ACTIONS(2734), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_catch] = ACTIONS(2732), + [anon_sym_else] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PERCENT] = ACTIONS(2734), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_LT_LT] = ACTIONS(2734), + [anon_sym_GT_GT] = ACTIONS(2732), + [anon_sym_GT_GT_GT] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP_AMP] = ACTIONS(2734), + [anon_sym_PIPE_PIPE] = ACTIONS(2734), + [anon_sym_EQ_EQ] = ACTIONS(2734), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2734), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2734), + [anon_sym_EQ_GT] = ACTIONS(2734), + [anon_sym_QMARK_QMARK] = ACTIONS(2734), + [anon_sym_EQ] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_macro] = ACTIONS(2732), + [anon_sym_abstract] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_public] = ACTIONS(2732), + [anon_sym_private] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym_inline] = ACTIONS(2732), + [anon_sym_overload] = ACTIONS(2732), + [anon_sym_override] = ACTIONS(2732), + [anon_sym_final] = ACTIONS(2732), + [anon_sym_class] = ACTIONS(2732), + [anon_sym_interface] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_typedef] = ACTIONS(2732), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_var] = ACTIONS(2732), + [aux_sym_integer_token1] = ACTIONS(2732), + [aux_sym_integer_token2] = ACTIONS(2734), + [aux_sym_float_token1] = ACTIONS(2732), + [aux_sym_float_token2] = ACTIONS(2734), + [anon_sym_true] = ACTIONS(2732), + [anon_sym_false] = ACTIONS(2732), + [aux_sym_string_token1] = ACTIONS(2734), + [aux_sym_string_token3] = ACTIONS(2734), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2734), [sym__closing_brace_unmarker] = ACTIONS(3), }, [435] = { - [sym_identifier] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(2208), - [anon_sym_package] = ACTIONS(2206), - [anon_sym_import] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2206), - [anon_sym_throw] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2206), - [anon_sym_default] = ACTIONS(2206), - [anon_sym_cast] = ACTIONS(2206), - [anon_sym_DOLLARtype] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2206), - [anon_sym_untyped] = ACTIONS(2206), - [anon_sym_break] = ACTIONS(2206), - [anon_sym_continue] = ACTIONS(2206), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_this] = ACTIONS(2206), - [anon_sym_AT] = ACTIONS(2206), - [anon_sym_AT_COLON] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2206), - [anon_sym_catch] = ACTIONS(2206), - [anon_sym_else] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2206), - [anon_sym_do] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2206), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2206), - [anon_sym_PLUS] = ACTIONS(2206), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2206), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2206), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_EQ_GT] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2206), - [anon_sym_macro] = ACTIONS(2206), - [anon_sym_abstract] = ACTIONS(2206), - [anon_sym_static] = ACTIONS(2206), - [anon_sym_public] = ACTIONS(2206), - [anon_sym_private] = ACTIONS(2206), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_inline] = ACTIONS(2206), - [anon_sym_overload] = ACTIONS(2206), - [anon_sym_override] = ACTIONS(2206), - [anon_sym_final] = ACTIONS(2206), - [anon_sym_class] = ACTIONS(2206), - [anon_sym_interface] = ACTIONS(2206), - [anon_sym_enum] = ACTIONS(2206), - [anon_sym_typedef] = ACTIONS(2206), - [anon_sym_function] = ACTIONS(2206), - [anon_sym_var] = ACTIONS(2206), - [aux_sym_integer_token1] = ACTIONS(2206), - [aux_sym_integer_token2] = ACTIONS(2208), - [aux_sym_float_token1] = ACTIONS(2206), - [aux_sym_float_token2] = ACTIONS(2208), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [aux_sym_string_token1] = ACTIONS(2208), - [aux_sym_string_token3] = ACTIONS(2208), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2738), + [anon_sym_package] = ACTIONS(2736), + [anon_sym_import] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_using] = ACTIONS(2736), + [anon_sym_throw] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_cast] = ACTIONS(2736), + [anon_sym_DOLLARtype] = ACTIONS(2738), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_untyped] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_this] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_AT_COLON] = ACTIONS(2738), + [anon_sym_try] = ACTIONS(2736), + [anon_sym_catch] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_new] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_PERCENT] = ACTIONS(2738), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2738), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP_AMP] = ACTIONS(2738), + [anon_sym_PIPE_PIPE] = ACTIONS(2738), + [anon_sym_EQ_EQ] = ACTIONS(2738), + [anon_sym_BANG_EQ] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2738), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2738), + [anon_sym_EQ_GT] = ACTIONS(2738), + [anon_sym_QMARK_QMARK] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(2736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2738), + [anon_sym_null] = ACTIONS(2736), + [anon_sym_macro] = ACTIONS(2736), + [anon_sym_abstract] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_public] = ACTIONS(2736), + [anon_sym_private] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym_overload] = ACTIONS(2736), + [anon_sym_override] = ACTIONS(2736), + [anon_sym_final] = ACTIONS(2736), + [anon_sym_class] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(2736), + [anon_sym_var] = ACTIONS(2736), + [aux_sym_integer_token1] = ACTIONS(2736), + [aux_sym_integer_token2] = ACTIONS(2738), + [aux_sym_float_token1] = ACTIONS(2736), + [aux_sym_float_token2] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2736), + [anon_sym_false] = ACTIONS(2736), + [aux_sym_string_token1] = ACTIONS(2738), + [aux_sym_string_token3] = ACTIONS(2738), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2738), [sym__closing_brace_unmarker] = ACTIONS(3), }, [436] = { - [sym_identifier] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2212), - [anon_sym_package] = ACTIONS(2210), - [anon_sym_import] = ACTIONS(2210), - [anon_sym_STAR] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2210), - [anon_sym_throw] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_case] = ACTIONS(2210), - [anon_sym_default] = ACTIONS(2210), - [anon_sym_cast] = ACTIONS(2210), - [anon_sym_DOLLARtype] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_untyped] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_this] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_AT_COLON] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2210), - [anon_sym_catch] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2210), - [anon_sym_do] = ACTIONS(2210), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [anon_sym_PERCENT] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(2212), - [anon_sym_GT_GT] = ACTIONS(2210), - [anon_sym_GT_GT_GT] = ACTIONS(2212), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(2212), - [anon_sym_AMP_AMP] = ACTIONS(2212), - [anon_sym_PIPE_PIPE] = ACTIONS(2212), - [anon_sym_EQ_EQ] = ACTIONS(2212), - [anon_sym_BANG_EQ] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_LT_EQ] = ACTIONS(2212), - [anon_sym_GT] = ACTIONS(2210), - [anon_sym_GT_EQ] = ACTIONS(2212), - [anon_sym_EQ_GT] = ACTIONS(2212), - [anon_sym_QMARK_QMARK] = ACTIONS(2212), - [anon_sym_EQ] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2212), - [anon_sym_null] = ACTIONS(2210), - [anon_sym_macro] = ACTIONS(2210), - [anon_sym_abstract] = ACTIONS(2210), - [anon_sym_static] = ACTIONS(2210), - [anon_sym_public] = ACTIONS(2210), - [anon_sym_private] = ACTIONS(2210), - [anon_sym_extern] = ACTIONS(2210), - [anon_sym_inline] = ACTIONS(2210), - [anon_sym_overload] = ACTIONS(2210), - [anon_sym_override] = ACTIONS(2210), - [anon_sym_final] = ACTIONS(2210), - [anon_sym_class] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2210), - [anon_sym_function] = ACTIONS(2210), - [anon_sym_var] = ACTIONS(2210), - [aux_sym_integer_token1] = ACTIONS(2210), - [aux_sym_integer_token2] = ACTIONS(2212), - [aux_sym_float_token1] = ACTIONS(2210), - [aux_sym_float_token2] = ACTIONS(2212), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [aux_sym_string_token1] = ACTIONS(2212), - [aux_sym_string_token3] = ACTIONS(2212), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2742), + [anon_sym_package] = ACTIONS(2740), + [anon_sym_import] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_using] = ACTIONS(2740), + [anon_sym_throw] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_cast] = ACTIONS(2740), + [anon_sym_DOLLARtype] = ACTIONS(2742), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_untyped] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_this] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_AT_COLON] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2740), + [anon_sym_catch] = ACTIONS(2740), + [anon_sym_else] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_new] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2742), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2742), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2742), + [anon_sym_EQ_GT] = ACTIONS(2742), + [anon_sym_QMARK_QMARK] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2742), + [anon_sym_null] = ACTIONS(2740), + [anon_sym_macro] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_public] = ACTIONS(2740), + [anon_sym_private] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym_inline] = ACTIONS(2740), + [anon_sym_overload] = ACTIONS(2740), + [anon_sym_override] = ACTIONS(2740), + [anon_sym_final] = ACTIONS(2740), + [anon_sym_class] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_typedef] = ACTIONS(2740), + [anon_sym_function] = ACTIONS(2740), + [anon_sym_var] = ACTIONS(2740), + [aux_sym_integer_token1] = ACTIONS(2740), + [aux_sym_integer_token2] = ACTIONS(2742), + [aux_sym_float_token1] = ACTIONS(2740), + [aux_sym_float_token2] = ACTIONS(2742), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [aux_sym_string_token1] = ACTIONS(2742), + [aux_sym_string_token3] = ACTIONS(2742), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2742), [sym__closing_brace_unmarker] = ACTIONS(3), }, [437] = { - [sym_identifier] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(2216), - [anon_sym_package] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_case] = ACTIONS(2214), - [anon_sym_default] = ACTIONS(2214), - [anon_sym_cast] = ACTIONS(2214), - [anon_sym_DOLLARtype] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_untyped] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_this] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_AT_COLON] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_catch] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2214), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_GT] = ACTIONS(2214), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_EQ_GT] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_EQ] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2216), - [anon_sym_null] = ACTIONS(2214), - [anon_sym_macro] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_extern] = ACTIONS(2214), - [anon_sym_inline] = ACTIONS(2214), - [anon_sym_overload] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_final] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [anon_sym_typedef] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [aux_sym_integer_token1] = ACTIONS(2214), - [aux_sym_integer_token2] = ACTIONS(2216), - [aux_sym_float_token1] = ACTIONS(2214), - [aux_sym_float_token2] = ACTIONS(2216), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [aux_sym_string_token1] = ACTIONS(2216), - [aux_sym_string_token3] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_package] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_cast] = ACTIONS(2744), + [anon_sym_DOLLARtype] = ACTIONS(2746), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_untyped] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_this] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_AT_COLON] = ACTIONS(2746), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_catch] = ACTIONS(2744), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_PERCENT] = ACTIONS(2746), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_LT_LT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_GT_GT_GT] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_EQ_EQ] = ACTIONS(2746), + [anon_sym_BANG_EQ] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_LT_EQ] = ACTIONS(2746), + [anon_sym_GT] = ACTIONS(2744), + [anon_sym_GT_EQ] = ACTIONS(2746), + [anon_sym_EQ_GT] = ACTIONS(2746), + [anon_sym_QMARK_QMARK] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2746), + [anon_sym_null] = ACTIONS(2744), + [anon_sym_macro] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym_overload] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_final] = ACTIONS(2744), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [aux_sym_integer_token1] = ACTIONS(2744), + [aux_sym_integer_token2] = ACTIONS(2746), + [aux_sym_float_token1] = ACTIONS(2744), + [aux_sym_float_token2] = ACTIONS(2746), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [aux_sym_string_token1] = ACTIONS(2746), + [aux_sym_string_token3] = ACTIONS(2746), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2746), [sym__closing_brace_unmarker] = ACTIONS(3), }, [438] = { - [sym_identifier] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_package] = ACTIONS(2218), - [anon_sym_import] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2220), - [anon_sym_using] = ACTIONS(2218), - [anon_sym_throw] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_switch] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_case] = ACTIONS(2218), - [anon_sym_default] = ACTIONS(2218), - [anon_sym_cast] = ACTIONS(2218), - [anon_sym_DOLLARtype] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_untyped] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2220), - [anon_sym_this] = ACTIONS(2218), - [anon_sym_AT] = ACTIONS(2218), - [anon_sym_AT_COLON] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2218), - [anon_sym_catch] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [anon_sym_new] = ACTIONS(2218), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_PLUS_PLUS] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(2220), - [anon_sym_PERCENT] = ACTIONS(2220), - [anon_sym_SLASH] = ACTIONS(2218), - [anon_sym_PLUS] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(2220), - [anon_sym_GT_GT] = ACTIONS(2218), - [anon_sym_GT_GT_GT] = ACTIONS(2220), - [anon_sym_AMP] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_CARET] = ACTIONS(2220), - [anon_sym_AMP_AMP] = ACTIONS(2220), - [anon_sym_PIPE_PIPE] = ACTIONS(2220), - [anon_sym_EQ_EQ] = ACTIONS(2220), - [anon_sym_BANG_EQ] = ACTIONS(2220), - [anon_sym_LT] = ACTIONS(2218), - [anon_sym_LT_EQ] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2218), - [anon_sym_GT_EQ] = ACTIONS(2220), - [anon_sym_EQ_GT] = ACTIONS(2220), - [anon_sym_QMARK_QMARK] = ACTIONS(2220), - [anon_sym_EQ] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2218), - [anon_sym_macro] = ACTIONS(2218), - [anon_sym_abstract] = ACTIONS(2218), - [anon_sym_static] = ACTIONS(2218), - [anon_sym_public] = ACTIONS(2218), - [anon_sym_private] = ACTIONS(2218), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_inline] = ACTIONS(2218), - [anon_sym_overload] = ACTIONS(2218), - [anon_sym_override] = ACTIONS(2218), - [anon_sym_final] = ACTIONS(2218), - [anon_sym_class] = ACTIONS(2218), - [anon_sym_interface] = ACTIONS(2218), - [anon_sym_enum] = ACTIONS(2218), - [anon_sym_typedef] = ACTIONS(2218), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_var] = ACTIONS(2218), - [aux_sym_integer_token1] = ACTIONS(2218), - [aux_sym_integer_token2] = ACTIONS(2220), - [aux_sym_float_token1] = ACTIONS(2218), - [aux_sym_float_token2] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [aux_sym_string_token1] = ACTIONS(2220), - [aux_sym_string_token3] = ACTIONS(2220), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_package] = ACTIONS(2748), + [anon_sym_import] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_using] = ACTIONS(2748), + [anon_sym_throw] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_case] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_cast] = ACTIONS(2748), + [anon_sym_DOLLARtype] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_untyped] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_this] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_AT_COLON] = ACTIONS(2750), + [anon_sym_try] = ACTIONS(2748), + [anon_sym_catch] = ACTIONS(2748), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_new] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_EQ_GT] = ACTIONS(2750), + [anon_sym_QMARK_QMARK] = ACTIONS(2750), + [anon_sym_EQ] = ACTIONS(2748), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2748), + [anon_sym_macro] = ACTIONS(2748), + [anon_sym_abstract] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_public] = ACTIONS(2748), + [anon_sym_private] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym_inline] = ACTIONS(2748), + [anon_sym_overload] = ACTIONS(2748), + [anon_sym_override] = ACTIONS(2748), + [anon_sym_final] = ACTIONS(2748), + [anon_sym_class] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_typedef] = ACTIONS(2748), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_var] = ACTIONS(2748), + [aux_sym_integer_token1] = ACTIONS(2748), + [aux_sym_integer_token2] = ACTIONS(2750), + [aux_sym_float_token1] = ACTIONS(2748), + [aux_sym_float_token2] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2748), + [anon_sym_false] = ACTIONS(2748), + [aux_sym_string_token1] = ACTIONS(2750), + [aux_sym_string_token3] = ACTIONS(2750), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2750), [sym__closing_brace_unmarker] = ACTIONS(3), }, [439] = { - [sym_identifier] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(2224), - [anon_sym_package] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_case] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_cast] = ACTIONS(2222), - [anon_sym_DOLLARtype] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_untyped] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_this] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_AT_COLON] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_catch] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2222), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_GT] = ACTIONS(2222), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_EQ_GT] = ACTIONS(2224), - [anon_sym_QMARK_QMARK] = ACTIONS(2224), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_null] = ACTIONS(2222), - [anon_sym_macro] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_overload] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_final] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [aux_sym_integer_token1] = ACTIONS(2222), - [aux_sym_integer_token2] = ACTIONS(2224), - [aux_sym_float_token1] = ACTIONS(2222), - [aux_sym_float_token2] = ACTIONS(2224), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [aux_sym_string_token1] = ACTIONS(2224), - [aux_sym_string_token3] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2754), + [anon_sym_package] = ACTIONS(2752), + [anon_sym_import] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_cast] = ACTIONS(2752), + [anon_sym_DOLLARtype] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_untyped] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_this] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_AT_COLON] = ACTIONS(2754), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PERCENT] = ACTIONS(2754), + [anon_sym_SLASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_GT_GT_GT] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_EQ_EQ] = ACTIONS(2754), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_LT_EQ] = ACTIONS(2754), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_EQ] = ACTIONS(2754), + [anon_sym_EQ_GT] = ACTIONS(2754), + [anon_sym_QMARK_QMARK] = ACTIONS(2754), + [anon_sym_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_macro] = ACTIONS(2752), + [anon_sym_abstract] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym_overload] = ACTIONS(2752), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_final] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_interface] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_var] = ACTIONS(2752), + [aux_sym_integer_token1] = ACTIONS(2752), + [aux_sym_integer_token2] = ACTIONS(2754), + [aux_sym_float_token1] = ACTIONS(2752), + [aux_sym_float_token2] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [aux_sym_string_token1] = ACTIONS(2754), + [aux_sym_string_token3] = ACTIONS(2754), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2754), [sym__closing_brace_unmarker] = ACTIONS(3), }, [440] = { - [sym_identifier] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2228), - [anon_sym_package] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_case] = ACTIONS(2226), - [anon_sym_default] = ACTIONS(2226), - [anon_sym_cast] = ACTIONS(2226), - [anon_sym_DOLLARtype] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_untyped] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_this] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_AT_COLON] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_catch] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2226), - [anon_sym_GT_GT_GT] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_GT] = ACTIONS(2226), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_EQ_GT] = ACTIONS(2228), - [anon_sym_QMARK_QMARK] = ACTIONS(2228), - [anon_sym_EQ] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2226), - [anon_sym_macro] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_extern] = ACTIONS(2226), - [anon_sym_inline] = ACTIONS(2226), - [anon_sym_overload] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_final] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [anon_sym_typedef] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [aux_sym_integer_token1] = ACTIONS(2226), - [aux_sym_integer_token2] = ACTIONS(2228), - [aux_sym_float_token1] = ACTIONS(2226), - [aux_sym_float_token2] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(2226), - [anon_sym_false] = ACTIONS(2226), - [aux_sym_string_token1] = ACTIONS(2228), - [aux_sym_string_token3] = ACTIONS(2228), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_package] = ACTIONS(2756), + [anon_sym_import] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_using] = ACTIONS(2756), + [anon_sym_throw] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_cast] = ACTIONS(2756), + [anon_sym_DOLLARtype] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_untyped] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_this] = ACTIONS(2756), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_AT_COLON] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2756), + [anon_sym_catch] = ACTIONS(2756), + [anon_sym_else] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_SLASH] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_GT_GT_GT] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_LT_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_EQ_GT] = ACTIONS(2758), + [anon_sym_QMARK_QMARK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_null] = ACTIONS(2756), + [anon_sym_macro] = ACTIONS(2756), + [anon_sym_abstract] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_public] = ACTIONS(2756), + [anon_sym_private] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym_inline] = ACTIONS(2756), + [anon_sym_overload] = ACTIONS(2756), + [anon_sym_override] = ACTIONS(2756), + [anon_sym_final] = ACTIONS(2756), + [anon_sym_class] = ACTIONS(2756), + [anon_sym_interface] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2756), + [anon_sym_function] = ACTIONS(2756), + [anon_sym_var] = ACTIONS(2756), + [aux_sym_integer_token1] = ACTIONS(2756), + [aux_sym_integer_token2] = ACTIONS(2758), + [aux_sym_float_token1] = ACTIONS(2756), + [aux_sym_float_token2] = ACTIONS(2758), + [anon_sym_true] = ACTIONS(2756), + [anon_sym_false] = ACTIONS(2756), + [aux_sym_string_token1] = ACTIONS(2758), + [aux_sym_string_token3] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2758), [sym__closing_brace_unmarker] = ACTIONS(3), }, [441] = { - [sym_catch_statement] = STATE(585), - [aux_sym_try_statement_repeat1] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_catch] = ACTIONS(2232), - [anon_sym_else] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [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(2232), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), - [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2762), + [anon_sym_package] = ACTIONS(2760), + [anon_sym_import] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2760), + [anon_sym_throw] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_cast] = ACTIONS(2760), + [anon_sym_DOLLARtype] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_untyped] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_this] = ACTIONS(2760), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_AT_COLON] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2760), + [anon_sym_catch] = ACTIONS(2760), + [anon_sym_else] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_PERCENT] = ACTIONS(2762), + [anon_sym_SLASH] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_LT_LT] = ACTIONS(2762), + [anon_sym_GT_GT] = ACTIONS(2760), + [anon_sym_GT_GT_GT] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP_AMP] = ACTIONS(2762), + [anon_sym_PIPE_PIPE] = ACTIONS(2762), + [anon_sym_EQ_EQ] = ACTIONS(2762), + [anon_sym_BANG_EQ] = ACTIONS(2762), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_LT_EQ] = ACTIONS(2762), + [anon_sym_GT] = ACTIONS(2760), + [anon_sym_GT_EQ] = ACTIONS(2762), + [anon_sym_EQ_GT] = ACTIONS(2762), + [anon_sym_QMARK_QMARK] = ACTIONS(2762), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2762), + [anon_sym_null] = ACTIONS(2760), + [anon_sym_macro] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_public] = ACTIONS(2760), + [anon_sym_private] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym_inline] = ACTIONS(2760), + [anon_sym_overload] = ACTIONS(2760), + [anon_sym_override] = ACTIONS(2760), + [anon_sym_final] = ACTIONS(2760), + [anon_sym_class] = ACTIONS(2760), + [anon_sym_interface] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2760), + [anon_sym_var] = ACTIONS(2760), + [aux_sym_integer_token1] = ACTIONS(2760), + [aux_sym_integer_token2] = ACTIONS(2762), + [aux_sym_float_token1] = ACTIONS(2760), + [aux_sym_float_token2] = ACTIONS(2762), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [aux_sym_string_token1] = ACTIONS(2762), + [aux_sym_string_token3] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2762), [sym__closing_brace_unmarker] = ACTIONS(3), }, [442] = { - [sym_identifier] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2236), - [anon_sym_package] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2236), - [anon_sym_case] = ACTIONS(2234), - [anon_sym_default] = ACTIONS(2234), - [anon_sym_cast] = ACTIONS(2234), - [anon_sym_DOLLARtype] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_untyped] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_this] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_AT_COLON] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2236), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2236), - [anon_sym_PERCENT] = ACTIONS(2236), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_LT_LT] = ACTIONS(2236), - [anon_sym_GT_GT] = ACTIONS(2234), - [anon_sym_GT_GT_GT] = ACTIONS(2236), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_CARET] = ACTIONS(2236), - [anon_sym_AMP_AMP] = ACTIONS(2236), - [anon_sym_PIPE_PIPE] = ACTIONS(2236), - [anon_sym_EQ_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ] = ACTIONS(2236), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_LT_EQ] = ACTIONS(2236), - [anon_sym_GT] = ACTIONS(2234), - [anon_sym_GT_EQ] = ACTIONS(2236), - [anon_sym_EQ_GT] = ACTIONS(2236), - [anon_sym_QMARK_QMARK] = ACTIONS(2236), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2236), - [anon_sym_null] = ACTIONS(2234), - [anon_sym_macro] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_inline] = ACTIONS(2234), - [anon_sym_overload] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_final] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [aux_sym_integer_token1] = ACTIONS(2234), - [aux_sym_integer_token2] = ACTIONS(2236), - [aux_sym_float_token1] = ACTIONS(2234), - [aux_sym_float_token2] = ACTIONS(2236), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [aux_sym_string_token1] = ACTIONS(2236), - [aux_sym_string_token3] = ACTIONS(2236), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2766), + [anon_sym_package] = ACTIONS(2764), + [anon_sym_import] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2764), + [anon_sym_throw] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_cast] = ACTIONS(2764), + [anon_sym_DOLLARtype] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_untyped] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_this] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_AT_COLON] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2764), + [anon_sym_catch] = ACTIONS(2764), + [anon_sym_else] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_new] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PERCENT] = ACTIONS(2766), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_LT_LT] = ACTIONS(2766), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP_AMP] = ACTIONS(2766), + [anon_sym_PIPE_PIPE] = ACTIONS(2766), + [anon_sym_EQ_EQ] = ACTIONS(2766), + [anon_sym_BANG_EQ] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_LT_EQ] = ACTIONS(2766), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_GT_EQ] = ACTIONS(2766), + [anon_sym_EQ_GT] = ACTIONS(2766), + [anon_sym_QMARK_QMARK] = ACTIONS(2766), + [anon_sym_EQ] = ACTIONS(2764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2766), + [anon_sym_null] = ACTIONS(2764), + [anon_sym_macro] = ACTIONS(2764), + [anon_sym_abstract] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2764), + [anon_sym_private] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym_inline] = ACTIONS(2764), + [anon_sym_overload] = ACTIONS(2764), + [anon_sym_override] = ACTIONS(2764), + [anon_sym_final] = ACTIONS(2764), + [anon_sym_class] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2764), + [anon_sym_function] = ACTIONS(2764), + [anon_sym_var] = ACTIONS(2764), + [aux_sym_integer_token1] = ACTIONS(2764), + [aux_sym_integer_token2] = ACTIONS(2766), + [aux_sym_float_token1] = ACTIONS(2764), + [aux_sym_float_token2] = ACTIONS(2766), + [anon_sym_true] = ACTIONS(2764), + [anon_sym_false] = ACTIONS(2764), + [aux_sym_string_token1] = ACTIONS(2766), + [aux_sym_string_token3] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2766), [sym__closing_brace_unmarker] = ACTIONS(3), }, [443] = { - [sym_identifier] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(810), - [anon_sym_for] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_this] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(810), - [anon_sym_try] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_new] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(810), - [anon_sym_PERCENT] = ACTIONS(810), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(810), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_GT_GT_GT] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_EQ_GT] = ACTIONS(810), - [anon_sym_QMARK_QMARK] = ACTIONS(810), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(810), - [anon_sym_null] = ACTIONS(814), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_function] = ACTIONS(814), - [anon_sym_var] = ACTIONS(814), - [aux_sym_integer_token1] = ACTIONS(814), - [aux_sym_integer_token2] = ACTIONS(810), - [aux_sym_float_token1] = ACTIONS(814), - [aux_sym_float_token2] = ACTIONS(810), - [anon_sym_true] = ACTIONS(814), - [anon_sym_false] = ACTIONS(814), - [aux_sym_string_token1] = ACTIONS(810), - [aux_sym_string_token3] = ACTIONS(810), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(810), + [sym_identifier] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2770), + [anon_sym_package] = ACTIONS(2768), + [anon_sym_import] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_using] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_cast] = ACTIONS(2768), + [anon_sym_DOLLARtype] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_untyped] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_this] = ACTIONS(2768), + [anon_sym_AT] = ACTIONS(2768), + [anon_sym_AT_COLON] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_catch] = ACTIONS(2768), + [anon_sym_else] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_PERCENT] = ACTIONS(2770), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2770), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym_GT_GT_GT] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_EQ_EQ] = ACTIONS(2770), + [anon_sym_BANG_EQ] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_EQ] = ACTIONS(2770), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2770), + [anon_sym_EQ_GT] = ACTIONS(2770), + [anon_sym_QMARK_QMARK] = ACTIONS(2770), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_macro] = ACTIONS(2768), + [anon_sym_abstract] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_public] = ACTIONS(2768), + [anon_sym_private] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym_overload] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_interface] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_typedef] = ACTIONS(2768), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_var] = ACTIONS(2768), + [aux_sym_integer_token1] = ACTIONS(2768), + [aux_sym_integer_token2] = ACTIONS(2770), + [aux_sym_float_token1] = ACTIONS(2768), + [aux_sym_float_token2] = ACTIONS(2770), + [anon_sym_true] = ACTIONS(2768), + [anon_sym_false] = ACTIONS(2768), + [aux_sym_string_token1] = ACTIONS(2770), + [aux_sym_string_token3] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2770), [sym__closing_brace_unmarker] = ACTIONS(3), }, [444] = { - [sym_identifier] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(810), - [anon_sym_for] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_this] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(810), - [anon_sym_try] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_new] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(810), - [anon_sym_PERCENT] = ACTIONS(810), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(810), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_GT_GT_GT] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_EQ_GT] = ACTIONS(810), - [anon_sym_QMARK_QMARK] = ACTIONS(810), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(810), - [anon_sym_null] = ACTIONS(814), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_function] = ACTIONS(814), - [anon_sym_var] = ACTIONS(814), - [aux_sym_integer_token1] = ACTIONS(814), - [aux_sym_integer_token2] = ACTIONS(810), - [aux_sym_float_token1] = ACTIONS(814), - [aux_sym_float_token2] = ACTIONS(810), - [anon_sym_true] = ACTIONS(814), - [anon_sym_false] = ACTIONS(814), - [aux_sym_string_token1] = ACTIONS(810), - [aux_sym_string_token3] = ACTIONS(810), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(810), + [sym_identifier] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2774), + [anon_sym_package] = ACTIONS(2772), + [anon_sym_import] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_using] = ACTIONS(2772), + [anon_sym_throw] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_cast] = ACTIONS(2772), + [anon_sym_DOLLARtype] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_untyped] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_this] = ACTIONS(2772), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_AT_COLON] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2772), + [anon_sym_catch] = ACTIONS(2772), + [anon_sym_else] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_new] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_LT_LT] = ACTIONS(2774), + [anon_sym_GT_GT] = ACTIONS(2772), + [anon_sym_GT_GT_GT] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_EQ_EQ] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_LT_EQ] = ACTIONS(2774), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_EQ] = ACTIONS(2774), + [anon_sym_EQ_GT] = ACTIONS(2774), + [anon_sym_QMARK_QMARK] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2774), + [anon_sym_null] = ACTIONS(2772), + [anon_sym_macro] = ACTIONS(2772), + [anon_sym_abstract] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_public] = ACTIONS(2772), + [anon_sym_private] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym_overload] = ACTIONS(2772), + [anon_sym_override] = ACTIONS(2772), + [anon_sym_final] = ACTIONS(2772), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_interface] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(2772), + [anon_sym_var] = ACTIONS(2772), + [aux_sym_integer_token1] = ACTIONS(2772), + [aux_sym_integer_token2] = ACTIONS(2774), + [aux_sym_float_token1] = ACTIONS(2772), + [aux_sym_float_token2] = ACTIONS(2774), + [anon_sym_true] = ACTIONS(2772), + [anon_sym_false] = ACTIONS(2772), + [aux_sym_string_token1] = ACTIONS(2774), + [aux_sym_string_token3] = ACTIONS(2774), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2774), [sym__closing_brace_unmarker] = ACTIONS(3), }, [445] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2240), - [anon_sym_package] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_cast] = ACTIONS(2238), - [anon_sym_DOLLARtype] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_untyped] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_this] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_AT_COLON] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_catch] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_EQ_GT] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_EQ] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2240), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_macro] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_inline] = ACTIONS(2238), - [anon_sym_overload] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_final] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [anon_sym_typedef] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [aux_sym_integer_token1] = ACTIONS(2238), - [aux_sym_integer_token2] = ACTIONS(2240), - [aux_sym_float_token1] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [aux_sym_string_token1] = ACTIONS(2240), - [aux_sym_string_token3] = ACTIONS(2240), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2778), + [anon_sym_package] = ACTIONS(2776), + [anon_sym_import] = ACTIONS(2776), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_using] = ACTIONS(2776), + [anon_sym_throw] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_cast] = ACTIONS(2776), + [anon_sym_DOLLARtype] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_untyped] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_this] = ACTIONS(2776), + [anon_sym_AT] = ACTIONS(2776), + [anon_sym_AT_COLON] = ACTIONS(2778), + [anon_sym_try] = ACTIONS(2776), + [anon_sym_catch] = ACTIONS(2776), + [anon_sym_else] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_PERCENT] = ACTIONS(2778), + [anon_sym_SLASH] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_LT_LT] = ACTIONS(2778), + [anon_sym_GT_GT] = ACTIONS(2776), + [anon_sym_GT_GT_GT] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP_AMP] = ACTIONS(2778), + [anon_sym_PIPE_PIPE] = ACTIONS(2778), + [anon_sym_EQ_EQ] = ACTIONS(2778), + [anon_sym_BANG_EQ] = ACTIONS(2778), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_LT_EQ] = ACTIONS(2778), + [anon_sym_GT] = ACTIONS(2776), + [anon_sym_GT_EQ] = ACTIONS(2778), + [anon_sym_EQ_GT] = ACTIONS(2778), + [anon_sym_QMARK_QMARK] = ACTIONS(2778), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2778), + [anon_sym_null] = ACTIONS(2776), + [anon_sym_macro] = ACTIONS(2776), + [anon_sym_abstract] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_public] = ACTIONS(2776), + [anon_sym_private] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym_inline] = ACTIONS(2776), + [anon_sym_overload] = ACTIONS(2776), + [anon_sym_override] = ACTIONS(2776), + [anon_sym_final] = ACTIONS(2776), + [anon_sym_class] = ACTIONS(2776), + [anon_sym_interface] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2776), + [anon_sym_var] = ACTIONS(2776), + [aux_sym_integer_token1] = ACTIONS(2776), + [aux_sym_integer_token2] = ACTIONS(2778), + [aux_sym_float_token1] = ACTIONS(2776), + [aux_sym_float_token2] = ACTIONS(2778), + [anon_sym_true] = ACTIONS(2776), + [anon_sym_false] = ACTIONS(2776), + [aux_sym_string_token1] = ACTIONS(2778), + [aux_sym_string_token3] = ACTIONS(2778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2778), [sym__closing_brace_unmarker] = ACTIONS(3), }, [446] = { - [sym_else_clause] = STATE(791), - [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_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_identifier] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_package] = ACTIONS(2780), + [anon_sym_import] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_using] = ACTIONS(2780), + [anon_sym_throw] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_cast] = ACTIONS(2780), + [anon_sym_DOLLARtype] = ACTIONS(2782), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_untyped] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_this] = ACTIONS(2780), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_AT_COLON] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2780), + [anon_sym_catch] = ACTIONS(2780), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(2780), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_LT_LT] = ACTIONS(2782), + [anon_sym_GT_GT] = ACTIONS(2780), + [anon_sym_GT_GT_GT] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_CARET] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_EQ_EQ] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_LT_EQ] = ACTIONS(2782), + [anon_sym_GT] = ACTIONS(2780), + [anon_sym_GT_EQ] = ACTIONS(2782), + [anon_sym_EQ_GT] = ACTIONS(2782), + [anon_sym_QMARK_QMARK] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2782), + [anon_sym_null] = ACTIONS(2780), + [anon_sym_macro] = ACTIONS(2780), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_public] = ACTIONS(2780), + [anon_sym_private] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym_overload] = ACTIONS(2780), + [anon_sym_override] = ACTIONS(2780), + [anon_sym_final] = ACTIONS(2780), + [anon_sym_class] = ACTIONS(2780), + [anon_sym_interface] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(2780), + [anon_sym_var] = ACTIONS(2780), + [aux_sym_integer_token1] = ACTIONS(2780), + [aux_sym_integer_token2] = ACTIONS(2782), + [aux_sym_float_token1] = ACTIONS(2780), + [aux_sym_float_token2] = ACTIONS(2782), + [anon_sym_true] = ACTIONS(2780), + [anon_sym_false] = ACTIONS(2780), + [aux_sym_string_token1] = ACTIONS(2782), + [aux_sym_string_token3] = ACTIONS(2782), [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2242), + [sym__closing_brace_marker] = ACTIONS(2782), [sym__closing_brace_unmarker] = ACTIONS(3), }, [447] = { - [sym_identifier] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_package] = ACTIONS(2244), - [anon_sym_import] = ACTIONS(2244), - [anon_sym_STAR] = ACTIONS(2246), - [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_for] = ACTIONS(2244), - [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_try] = ACTIONS(2244), - [anon_sym_catch] = ACTIONS(2244), - [anon_sym_else] = ACTIONS(2244), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2244), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2784), + [anon_sym_POUND] = ACTIONS(2786), + [anon_sym_package] = ACTIONS(2784), + [anon_sym_import] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_using] = ACTIONS(2784), + [anon_sym_throw] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_cast] = ACTIONS(2784), + [anon_sym_DOLLARtype] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_untyped] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_this] = ACTIONS(2784), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_AT_COLON] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2784), + [anon_sym_catch] = ACTIONS(2784), + [anon_sym_else] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PERCENT] = ACTIONS(2786), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_LT_LT] = ACTIONS(2786), + [anon_sym_GT_GT] = ACTIONS(2784), + [anon_sym_GT_GT_GT] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP_AMP] = ACTIONS(2786), + [anon_sym_PIPE_PIPE] = ACTIONS(2786), + [anon_sym_EQ_EQ] = ACTIONS(2786), + [anon_sym_BANG_EQ] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_LT_EQ] = ACTIONS(2786), + [anon_sym_GT] = ACTIONS(2784), + [anon_sym_GT_EQ] = ACTIONS(2786), + [anon_sym_EQ_GT] = ACTIONS(2786), + [anon_sym_QMARK_QMARK] = ACTIONS(2786), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2786), + [anon_sym_null] = ACTIONS(2784), + [anon_sym_macro] = ACTIONS(2784), + [anon_sym_abstract] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym_inline] = ACTIONS(2784), + [anon_sym_overload] = ACTIONS(2784), + [anon_sym_override] = ACTIONS(2784), + [anon_sym_final] = ACTIONS(2784), + [anon_sym_class] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_typedef] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2784), + [anon_sym_var] = ACTIONS(2784), + [aux_sym_integer_token1] = ACTIONS(2784), + [aux_sym_integer_token2] = ACTIONS(2786), + [aux_sym_float_token1] = ACTIONS(2784), + [aux_sym_float_token2] = ACTIONS(2786), + [anon_sym_true] = ACTIONS(2784), + [anon_sym_false] = ACTIONS(2784), + [aux_sym_string_token1] = ACTIONS(2786), + [aux_sym_string_token3] = ACTIONS(2786), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2786), [sym__closing_brace_unmarker] = ACTIONS(3), }, [448] = { - [sym_identifier] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2250), - [anon_sym_package] = ACTIONS(2248), - [anon_sym_import] = ACTIONS(2248), - [anon_sym_STAR] = ACTIONS(2250), - [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_for] = ACTIONS(2248), - [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_try] = ACTIONS(2248), - [anon_sym_catch] = ACTIONS(2248), - [anon_sym_else] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2788), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_package] = ACTIONS(2788), + [anon_sym_import] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2788), + [anon_sym_throw] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_cast] = ACTIONS(2788), + [anon_sym_DOLLARtype] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_untyped] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_this] = ACTIONS(2788), + [anon_sym_AT] = ACTIONS(2788), + [anon_sym_AT_COLON] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2788), + [anon_sym_catch] = ACTIONS(2788), + [anon_sym_else] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_new] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2788), + [anon_sym_GT_GT_GT] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2790), + [anon_sym_BANG_EQ] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_LT_EQ] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2788), + [anon_sym_GT_EQ] = ACTIONS(2790), + [anon_sym_EQ_GT] = ACTIONS(2790), + [anon_sym_QMARK_QMARK] = ACTIONS(2790), + [anon_sym_EQ] = ACTIONS(2788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2790), + [anon_sym_null] = ACTIONS(2788), + [anon_sym_macro] = ACTIONS(2788), + [anon_sym_abstract] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2788), + [anon_sym_private] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym_inline] = ACTIONS(2788), + [anon_sym_overload] = ACTIONS(2788), + [anon_sym_override] = ACTIONS(2788), + [anon_sym_final] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(2788), + [anon_sym_interface] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_typedef] = ACTIONS(2788), + [anon_sym_function] = ACTIONS(2788), + [anon_sym_var] = ACTIONS(2788), + [aux_sym_integer_token1] = ACTIONS(2788), + [aux_sym_integer_token2] = ACTIONS(2790), + [aux_sym_float_token1] = ACTIONS(2788), + [aux_sym_float_token2] = ACTIONS(2790), + [anon_sym_true] = ACTIONS(2788), + [anon_sym_false] = ACTIONS(2788), + [aux_sym_string_token1] = ACTIONS(2790), + [aux_sym_string_token3] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2790), [sym__closing_brace_unmarker] = ACTIONS(3), }, [449] = { - [sym_identifier] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_package] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2254), - [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_for] = ACTIONS(2252), - [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_try] = ACTIONS(2252), - [anon_sym_catch] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2792), + [anon_sym_POUND] = ACTIONS(2794), + [anon_sym_package] = ACTIONS(2792), + [anon_sym_import] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_using] = ACTIONS(2792), + [anon_sym_throw] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_case] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_cast] = ACTIONS(2792), + [anon_sym_DOLLARtype] = ACTIONS(2794), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_untyped] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym_this] = ACTIONS(2792), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_AT_COLON] = ACTIONS(2794), + [anon_sym_try] = ACTIONS(2792), + [anon_sym_catch] = ACTIONS(2792), + [anon_sym_else] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_new] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), + [anon_sym_SLASH] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_LT_LT] = ACTIONS(2794), + [anon_sym_GT_GT] = ACTIONS(2792), + [anon_sym_GT_GT_GT] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2794), + [anon_sym_BANG_EQ] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2792), + [anon_sym_LT_EQ] = ACTIONS(2794), + [anon_sym_GT] = ACTIONS(2792), + [anon_sym_GT_EQ] = ACTIONS(2794), + [anon_sym_EQ_GT] = ACTIONS(2794), + [anon_sym_QMARK_QMARK] = ACTIONS(2794), + [anon_sym_EQ] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2794), + [anon_sym_null] = ACTIONS(2792), + [anon_sym_macro] = ACTIONS(2792), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_public] = ACTIONS(2792), + [anon_sym_private] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym_inline] = ACTIONS(2792), + [anon_sym_overload] = ACTIONS(2792), + [anon_sym_override] = ACTIONS(2792), + [anon_sym_final] = ACTIONS(2792), + [anon_sym_class] = ACTIONS(2792), + [anon_sym_interface] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_typedef] = ACTIONS(2792), + [anon_sym_function] = ACTIONS(2792), + [anon_sym_var] = ACTIONS(2792), + [aux_sym_integer_token1] = ACTIONS(2792), + [aux_sym_integer_token2] = ACTIONS(2794), + [aux_sym_float_token1] = ACTIONS(2792), + [aux_sym_float_token2] = ACTIONS(2794), + [anon_sym_true] = ACTIONS(2792), + [anon_sym_false] = ACTIONS(2792), + [aux_sym_string_token1] = ACTIONS(2794), + [aux_sym_string_token3] = ACTIONS(2794), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2794), [sym__closing_brace_unmarker] = ACTIONS(3), }, [450] = { - [sym_identifier] = ACTIONS(2256), - [anon_sym_POUND] = ACTIONS(2258), - [anon_sym_package] = ACTIONS(2256), - [anon_sym_import] = ACTIONS(2256), - [anon_sym_STAR] = ACTIONS(2258), - [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_for] = ACTIONS(2256), - [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_try] = ACTIONS(2256), - [anon_sym_catch] = ACTIONS(2256), - [anon_sym_else] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2256), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2796), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_package] = ACTIONS(2796), + [anon_sym_import] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_throw] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_case] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_cast] = ACTIONS(2796), + [anon_sym_DOLLARtype] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_untyped] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym_this] = ACTIONS(2796), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_AT_COLON] = ACTIONS(2798), + [anon_sym_try] = ACTIONS(2796), + [anon_sym_catch] = ACTIONS(2796), + [anon_sym_else] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_new] = ACTIONS(2796), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2796), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2796), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2796), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_EQ_GT] = ACTIONS(2798), + [anon_sym_QMARK_QMARK] = ACTIONS(2798), + [anon_sym_EQ] = ACTIONS(2796), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2796), + [anon_sym_macro] = ACTIONS(2796), + [anon_sym_abstract] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_public] = ACTIONS(2796), + [anon_sym_private] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym_overload] = ACTIONS(2796), + [anon_sym_override] = ACTIONS(2796), + [anon_sym_final] = ACTIONS(2796), + [anon_sym_class] = ACTIONS(2796), + [anon_sym_interface] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_typedef] = ACTIONS(2796), + [anon_sym_function] = ACTIONS(2796), + [anon_sym_var] = ACTIONS(2796), + [aux_sym_integer_token1] = ACTIONS(2796), + [aux_sym_integer_token2] = ACTIONS(2798), + [aux_sym_float_token1] = ACTIONS(2796), + [aux_sym_float_token2] = ACTIONS(2798), + [anon_sym_true] = ACTIONS(2796), + [anon_sym_false] = ACTIONS(2796), + [aux_sym_string_token1] = ACTIONS(2798), + [aux_sym_string_token3] = ACTIONS(2798), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2798), [sym__closing_brace_unmarker] = ACTIONS(3), }, [451] = { - [sym_identifier] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(2262), - [anon_sym_package] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2262), - [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_for] = ACTIONS(2260), - [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_try] = ACTIONS(2260), - [anon_sym_catch] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2800), + [anon_sym_POUND] = ACTIONS(2802), + [anon_sym_package] = ACTIONS(2800), + [anon_sym_import] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_cast] = ACTIONS(2800), + [anon_sym_DOLLARtype] = ACTIONS(2802), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_untyped] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_this] = ACTIONS(2800), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_AT_COLON] = ACTIONS(2802), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_catch] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(2802), + [anon_sym_SLASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_LT_LT] = ACTIONS(2802), + [anon_sym_GT_GT] = ACTIONS(2800), + [anon_sym_GT_GT_GT] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_PIPE_PIPE] = ACTIONS(2802), + [anon_sym_EQ_EQ] = ACTIONS(2802), + [anon_sym_BANG_EQ] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2800), + [anon_sym_LT_EQ] = ACTIONS(2802), + [anon_sym_GT] = ACTIONS(2800), + [anon_sym_GT_EQ] = ACTIONS(2802), + [anon_sym_EQ_GT] = ACTIONS(2802), + [anon_sym_QMARK_QMARK] = ACTIONS(2802), + [anon_sym_EQ] = ACTIONS(2800), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2802), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_macro] = ACTIONS(2800), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_public] = ACTIONS(2800), + [anon_sym_private] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym_overload] = ACTIONS(2800), + [anon_sym_override] = ACTIONS(2800), + [anon_sym_final] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_interface] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_function] = ACTIONS(2800), + [anon_sym_var] = ACTIONS(2800), + [aux_sym_integer_token1] = ACTIONS(2800), + [aux_sym_integer_token2] = ACTIONS(2802), + [aux_sym_float_token1] = ACTIONS(2800), + [aux_sym_float_token2] = ACTIONS(2802), + [anon_sym_true] = ACTIONS(2800), + [anon_sym_false] = ACTIONS(2800), + [aux_sym_string_token1] = ACTIONS(2802), + [aux_sym_string_token3] = ACTIONS(2802), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2802), [sym__closing_brace_unmarker] = ACTIONS(3), }, [452] = { - [sym_identifier] = ACTIONS(2264), - [anon_sym_POUND] = ACTIONS(2266), - [anon_sym_package] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2266), - [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_for] = ACTIONS(2264), - [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_try] = ACTIONS(2264), - [anon_sym_catch] = ACTIONS(2264), - [anon_sym_else] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2804), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_package] = ACTIONS(2804), + [anon_sym_import] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_cast] = ACTIONS(2804), + [anon_sym_DOLLARtype] = ACTIONS(2806), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_untyped] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_this] = ACTIONS(2804), + [anon_sym_AT] = ACTIONS(2804), + [anon_sym_AT_COLON] = ACTIONS(2806), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_catch] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2806), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_LT_LT] = ACTIONS(2806), + [anon_sym_GT_GT] = ACTIONS(2804), + [anon_sym_GT_GT_GT] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_PIPE] = ACTIONS(2804), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_PIPE_PIPE] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2806), + [anon_sym_BANG_EQ] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2804), + [anon_sym_LT_EQ] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2804), + [anon_sym_GT_EQ] = ACTIONS(2806), + [anon_sym_EQ_GT] = ACTIONS(2806), + [anon_sym_QMARK_QMARK] = ACTIONS(2806), + [anon_sym_EQ] = ACTIONS(2804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), + [anon_sym_null] = ACTIONS(2804), + [anon_sym_macro] = ACTIONS(2804), + [anon_sym_abstract] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym_overload] = ACTIONS(2804), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_final] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_interface] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_function] = ACTIONS(2804), + [anon_sym_var] = ACTIONS(2804), + [aux_sym_integer_token1] = ACTIONS(2804), + [aux_sym_integer_token2] = ACTIONS(2806), + [aux_sym_float_token1] = ACTIONS(2804), + [aux_sym_float_token2] = ACTIONS(2806), + [anon_sym_true] = ACTIONS(2804), + [anon_sym_false] = ACTIONS(2804), + [aux_sym_string_token1] = ACTIONS(2806), + [aux_sym_string_token3] = ACTIONS(2806), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2806), [sym__closing_brace_unmarker] = ACTIONS(3), }, [453] = { - [sym_identifier] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(2270), - [anon_sym_package] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2270), - [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_for] = ACTIONS(2268), - [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_try] = ACTIONS(2268), - [anon_sym_catch] = ACTIONS(2268), - [anon_sym_else] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2808), + [anon_sym_POUND] = ACTIONS(2810), + [anon_sym_package] = ACTIONS(2808), + [anon_sym_import] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_cast] = ACTIONS(2808), + [anon_sym_DOLLARtype] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_untyped] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_this] = ACTIONS(2808), + [anon_sym_AT] = ACTIONS(2808), + [anon_sym_AT_COLON] = ACTIONS(2810), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_catch] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PERCENT] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_LT_LT] = ACTIONS(2810), + [anon_sym_GT_GT] = ACTIONS(2808), + [anon_sym_GT_GT_GT] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_PIPE] = ACTIONS(2808), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2808), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT] = ACTIONS(2808), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_EQ_GT] = ACTIONS(2810), + [anon_sym_QMARK_QMARK] = ACTIONS(2810), + [anon_sym_EQ] = ACTIONS(2808), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2810), + [anon_sym_null] = ACTIONS(2808), + [anon_sym_macro] = ACTIONS(2808), + [anon_sym_abstract] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_public] = ACTIONS(2808), + [anon_sym_private] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym_overload] = ACTIONS(2808), + [anon_sym_override] = ACTIONS(2808), + [anon_sym_final] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_interface] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_function] = ACTIONS(2808), + [anon_sym_var] = ACTIONS(2808), + [aux_sym_integer_token1] = ACTIONS(2808), + [aux_sym_integer_token2] = ACTIONS(2810), + [aux_sym_float_token1] = ACTIONS(2808), + [aux_sym_float_token2] = ACTIONS(2810), + [anon_sym_true] = ACTIONS(2808), + [anon_sym_false] = ACTIONS(2808), + [aux_sym_string_token1] = ACTIONS(2810), + [aux_sym_string_token3] = ACTIONS(2810), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2810), [sym__closing_brace_unmarker] = ACTIONS(3), }, [454] = { - [sym_identifier] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_package] = ACTIONS(1964), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1966), - [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_for] = ACTIONS(1964), - [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_try] = ACTIONS(1964), - [anon_sym_catch] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_identifier] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_package] = ACTIONS(2812), + [anon_sym_import] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_cast] = ACTIONS(2812), + [anon_sym_DOLLARtype] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_untyped] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_this] = ACTIONS(2812), + [anon_sym_AT] = ACTIONS(2812), + [anon_sym_AT_COLON] = ACTIONS(2814), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_catch] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PERCENT] = ACTIONS(2814), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2814), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_PIPE_PIPE] = ACTIONS(2814), + [anon_sym_EQ_EQ] = ACTIONS(2814), + [anon_sym_BANG_EQ] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_LT_EQ] = ACTIONS(2814), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_GT_EQ] = ACTIONS(2814), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_QMARK_QMARK] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2814), + [anon_sym_null] = ACTIONS(2812), + [anon_sym_macro] = ACTIONS(2812), + [anon_sym_abstract] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_public] = ACTIONS(2812), + [anon_sym_private] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym_overload] = ACTIONS(2812), + [anon_sym_override] = ACTIONS(2812), + [anon_sym_final] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_interface] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_function] = ACTIONS(2812), + [anon_sym_var] = ACTIONS(2812), + [aux_sym_integer_token1] = ACTIONS(2812), + [aux_sym_integer_token2] = ACTIONS(2814), + [aux_sym_float_token1] = ACTIONS(2812), + [aux_sym_float_token2] = ACTIONS(2814), + [anon_sym_true] = ACTIONS(2812), + [anon_sym_false] = ACTIONS(2812), + [aux_sym_string_token1] = ACTIONS(2814), + [aux_sym_string_token3] = ACTIONS(2814), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2814), [sym__closing_brace_unmarker] = ACTIONS(3), }, [455] = { - [sym_identifier] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(2274), - [anon_sym_package] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2274), - [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_for] = ACTIONS(2272), - [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_try] = ACTIONS(2272), - [anon_sym_catch] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2816), + [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_package] = ACTIONS(2816), + [anon_sym_import] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_cast] = ACTIONS(2816), + [anon_sym_DOLLARtype] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_untyped] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_this] = ACTIONS(2816), + [anon_sym_AT] = ACTIONS(2816), + [anon_sym_AT_COLON] = ACTIONS(2818), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_catch] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_LT_LT] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2816), + [anon_sym_GT_GT_GT] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2816), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2816), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2816), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_EQ_GT] = ACTIONS(2818), + [anon_sym_QMARK_QMARK] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2818), + [anon_sym_null] = ACTIONS(2816), + [anon_sym_macro] = ACTIONS(2816), + [anon_sym_abstract] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_public] = ACTIONS(2816), + [anon_sym_private] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym_overload] = ACTIONS(2816), + [anon_sym_override] = ACTIONS(2816), + [anon_sym_final] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_interface] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_function] = ACTIONS(2816), + [anon_sym_var] = ACTIONS(2816), + [aux_sym_integer_token1] = ACTIONS(2816), + [aux_sym_integer_token2] = ACTIONS(2818), + [aux_sym_float_token1] = ACTIONS(2816), + [aux_sym_float_token2] = ACTIONS(2818), + [anon_sym_true] = ACTIONS(2816), + [anon_sym_false] = ACTIONS(2816), + [aux_sym_string_token1] = ACTIONS(2818), + [aux_sym_string_token3] = ACTIONS(2818), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2818), [sym__closing_brace_unmarker] = ACTIONS(3), }, [456] = { - [sym_identifier] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_package] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2278), - [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_for] = ACTIONS(2276), - [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_try] = ACTIONS(2276), - [anon_sym_catch] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2820), + [anon_sym_POUND] = ACTIONS(2822), + [anon_sym_package] = ACTIONS(2820), + [anon_sym_import] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_cast] = ACTIONS(2820), + [anon_sym_DOLLARtype] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_untyped] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_this] = ACTIONS(2820), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_AT_COLON] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_catch] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PERCENT] = ACTIONS(2822), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_LT_LT] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_GT_GT_GT] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_PIPE_PIPE] = ACTIONS(2822), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_LT_EQ] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2822), + [anon_sym_EQ_GT] = ACTIONS(2822), + [anon_sym_QMARK_QMARK] = ACTIONS(2822), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2822), + [anon_sym_null] = ACTIONS(2820), + [anon_sym_macro] = ACTIONS(2820), + [anon_sym_abstract] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_public] = ACTIONS(2820), + [anon_sym_private] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym_overload] = ACTIONS(2820), + [anon_sym_override] = ACTIONS(2820), + [anon_sym_final] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_function] = ACTIONS(2820), + [anon_sym_var] = ACTIONS(2820), + [aux_sym_integer_token1] = ACTIONS(2820), + [aux_sym_integer_token2] = ACTIONS(2822), + [aux_sym_float_token1] = ACTIONS(2820), + [aux_sym_float_token2] = ACTIONS(2822), + [anon_sym_true] = ACTIONS(2820), + [anon_sym_false] = ACTIONS(2820), + [aux_sym_string_token1] = ACTIONS(2822), + [aux_sym_string_token3] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2822), [sym__closing_brace_unmarker] = ACTIONS(3), }, [457] = { - [sym_identifier] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_package] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2282), - [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_for] = ACTIONS(2280), - [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_try] = ACTIONS(2280), - [anon_sym_catch] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2824), + [anon_sym_POUND] = ACTIONS(2826), + [anon_sym_package] = ACTIONS(2824), + [anon_sym_import] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_cast] = ACTIONS(2824), + [anon_sym_DOLLARtype] = ACTIONS(2826), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_untyped] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_this] = ACTIONS(2824), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_AT_COLON] = ACTIONS(2826), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_catch] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_LT_LT] = ACTIONS(2826), + [anon_sym_GT_GT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_PIPE_PIPE] = ACTIONS(2826), + [anon_sym_EQ_EQ] = ACTIONS(2826), + [anon_sym_BANG_EQ] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2824), + [anon_sym_LT_EQ] = ACTIONS(2826), + [anon_sym_GT] = ACTIONS(2824), + [anon_sym_GT_EQ] = ACTIONS(2826), + [anon_sym_EQ_GT] = ACTIONS(2826), + [anon_sym_QMARK_QMARK] = ACTIONS(2826), + [anon_sym_EQ] = ACTIONS(2824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2826), + [anon_sym_null] = ACTIONS(2824), + [anon_sym_macro] = ACTIONS(2824), + [anon_sym_abstract] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_private] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym_overload] = ACTIONS(2824), + [anon_sym_override] = ACTIONS(2824), + [anon_sym_final] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_interface] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_var] = ACTIONS(2824), + [aux_sym_integer_token1] = ACTIONS(2824), + [aux_sym_integer_token2] = ACTIONS(2826), + [aux_sym_float_token1] = ACTIONS(2824), + [aux_sym_float_token2] = ACTIONS(2826), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [aux_sym_string_token1] = ACTIONS(2826), + [aux_sym_string_token3] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2826), [sym__closing_brace_unmarker] = ACTIONS(3), }, [458] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_package] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2286), - [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_for] = ACTIONS(2284), - [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_try] = ACTIONS(2284), - [anon_sym_catch] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2828), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_package] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_cast] = ACTIONS(2828), + [anon_sym_DOLLARtype] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_untyped] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_this] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2828), + [anon_sym_AT_COLON] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_catch] = ACTIONS(2828), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_PERCENT] = ACTIONS(2830), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_LT_LT] = ACTIONS(2830), + [anon_sym_GT_GT] = ACTIONS(2828), + [anon_sym_GT_GT_GT] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP_AMP] = ACTIONS(2830), + [anon_sym_PIPE_PIPE] = ACTIONS(2830), + [anon_sym_EQ_EQ] = ACTIONS(2830), + [anon_sym_BANG_EQ] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_LT_EQ] = ACTIONS(2830), + [anon_sym_GT] = ACTIONS(2828), + [anon_sym_GT_EQ] = ACTIONS(2830), + [anon_sym_EQ_GT] = ACTIONS(2830), + [anon_sym_QMARK_QMARK] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), + [anon_sym_null] = ACTIONS(2828), + [anon_sym_macro] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym_overload] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_final] = ACTIONS(2828), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [aux_sym_integer_token1] = ACTIONS(2828), + [aux_sym_integer_token2] = ACTIONS(2830), + [aux_sym_float_token1] = ACTIONS(2828), + [aux_sym_float_token2] = ACTIONS(2830), + [anon_sym_true] = ACTIONS(2828), + [anon_sym_false] = ACTIONS(2828), + [aux_sym_string_token1] = ACTIONS(2830), + [aux_sym_string_token3] = ACTIONS(2830), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2830), [sym__closing_brace_unmarker] = ACTIONS(3), }, [459] = { - [sym_identifier] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_package] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_case] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_cast] = ACTIONS(2288), - [anon_sym_DOLLARtype] = ACTIONS(2290), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_untyped] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_this] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_AT_COLON] = ACTIONS(2290), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_EQ_GT] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_EQ] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2290), - [anon_sym_null] = ACTIONS(2288), - [anon_sym_macro] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_inline] = ACTIONS(2288), - [anon_sym_overload] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_final] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [anon_sym_typedef] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [aux_sym_integer_token1] = ACTIONS(2288), - [aux_sym_integer_token2] = ACTIONS(2290), - [aux_sym_float_token1] = ACTIONS(2288), - [aux_sym_float_token2] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [aux_sym_string_token1] = ACTIONS(2290), - [aux_sym_string_token3] = ACTIONS(2290), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_package] = ACTIONS(2832), + [anon_sym_import] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2832), + [anon_sym_throw] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_cast] = ACTIONS(2832), + [anon_sym_DOLLARtype] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_untyped] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_this] = ACTIONS(2832), + [anon_sym_AT] = ACTIONS(2832), + [anon_sym_AT_COLON] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_catch] = ACTIONS(2832), + [anon_sym_else] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_PERCENT] = ACTIONS(2834), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_LT_LT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2832), + [anon_sym_GT_GT_GT] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_EQ_EQ] = ACTIONS(2834), + [anon_sym_BANG_EQ] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_LT_EQ] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2832), + [anon_sym_GT_EQ] = ACTIONS(2834), + [anon_sym_EQ_GT] = ACTIONS(2834), + [anon_sym_QMARK_QMARK] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(2832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2834), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_macro] = ACTIONS(2832), + [anon_sym_abstract] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_public] = ACTIONS(2832), + [anon_sym_private] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_inline] = ACTIONS(2832), + [anon_sym_overload] = ACTIONS(2832), + [anon_sym_override] = ACTIONS(2832), + [anon_sym_final] = ACTIONS(2832), + [anon_sym_class] = ACTIONS(2832), + [anon_sym_interface] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_typedef] = ACTIONS(2832), + [anon_sym_function] = ACTIONS(2832), + [anon_sym_var] = ACTIONS(2832), + [aux_sym_integer_token1] = ACTIONS(2832), + [aux_sym_integer_token2] = ACTIONS(2834), + [aux_sym_float_token1] = ACTIONS(2832), + [aux_sym_float_token2] = ACTIONS(2834), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym_string_token1] = ACTIONS(2834), + [aux_sym_string_token3] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2834), [sym__closing_brace_unmarker] = ACTIONS(3), }, [460] = { - [sym_identifier] = ACTIONS(2292), - [anon_sym_POUND] = ACTIONS(2294), - [anon_sym_package] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(2294), - [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_for] = ACTIONS(2292), - [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_try] = ACTIONS(2292), - [anon_sym_catch] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2836), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_package] = ACTIONS(2836), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_cast] = ACTIONS(2836), + [anon_sym_DOLLARtype] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_untyped] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_this] = ACTIONS(2836), + [anon_sym_AT] = ACTIONS(2836), + [anon_sym_AT_COLON] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_catch] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PERCENT] = ACTIONS(2838), + [anon_sym_SLASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_LT_LT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2836), + [anon_sym_GT_GT_GT] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_PIPE_PIPE] = ACTIONS(2838), + [anon_sym_EQ_EQ] = ACTIONS(2838), + [anon_sym_BANG_EQ] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_LT_EQ] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2836), + [anon_sym_GT_EQ] = ACTIONS(2838), + [anon_sym_EQ_GT] = ACTIONS(2838), + [anon_sym_QMARK_QMARK] = ACTIONS(2838), + [anon_sym_EQ] = ACTIONS(2836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2836), + [anon_sym_macro] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_public] = ACTIONS(2836), + [anon_sym_private] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym_overload] = ACTIONS(2836), + [anon_sym_override] = ACTIONS(2836), + [anon_sym_final] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_interface] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_function] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2836), + [aux_sym_integer_token1] = ACTIONS(2836), + [aux_sym_integer_token2] = ACTIONS(2838), + [aux_sym_float_token1] = ACTIONS(2836), + [aux_sym_float_token2] = ACTIONS(2838), + [anon_sym_true] = ACTIONS(2836), + [anon_sym_false] = ACTIONS(2836), + [aux_sym_string_token1] = ACTIONS(2838), + [aux_sym_string_token3] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2838), [sym__closing_brace_unmarker] = ACTIONS(3), }, [461] = { - [sym_identifier] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(2298), - [anon_sym_package] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(2298), - [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_for] = ACTIONS(2296), - [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_try] = ACTIONS(2296), - [anon_sym_catch] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2840), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_package] = ACTIONS(2840), + [anon_sym_import] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_cast] = ACTIONS(2840), + [anon_sym_DOLLARtype] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_untyped] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_this] = ACTIONS(2840), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_AT_COLON] = ACTIONS(2842), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_catch] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2842), + [anon_sym_SLASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_LT_LT] = ACTIONS(2842), + [anon_sym_GT_GT] = ACTIONS(2840), + [anon_sym_GT_GT_GT] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_PIPE_PIPE] = ACTIONS(2842), + [anon_sym_EQ_EQ] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2842), + [anon_sym_EQ_GT] = ACTIONS(2842), + [anon_sym_QMARK_QMARK] = ACTIONS(2842), + [anon_sym_EQ] = ACTIONS(2840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2842), + [anon_sym_null] = ACTIONS(2840), + [anon_sym_macro] = ACTIONS(2840), + [anon_sym_abstract] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_public] = ACTIONS(2840), + [anon_sym_private] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym_overload] = ACTIONS(2840), + [anon_sym_override] = ACTIONS(2840), + [anon_sym_final] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_interface] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_function] = ACTIONS(2840), + [anon_sym_var] = ACTIONS(2840), + [aux_sym_integer_token1] = ACTIONS(2840), + [aux_sym_integer_token2] = ACTIONS(2842), + [aux_sym_float_token1] = ACTIONS(2840), + [aux_sym_float_token2] = ACTIONS(2842), + [anon_sym_true] = ACTIONS(2840), + [anon_sym_false] = ACTIONS(2840), + [aux_sym_string_token1] = ACTIONS(2842), + [aux_sym_string_token3] = ACTIONS(2842), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2842), [sym__closing_brace_unmarker] = ACTIONS(3), }, [462] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(2302), - [anon_sym_package] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_STAR] = ACTIONS(2302), - [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_for] = ACTIONS(2300), - [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_try] = ACTIONS(2300), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2844), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_package] = ACTIONS(2844), + [anon_sym_import] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_cast] = ACTIONS(2844), + [anon_sym_DOLLARtype] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_untyped] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_this] = ACTIONS(2844), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_AT_COLON] = ACTIONS(2846), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_catch] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2844), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2844), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2844), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_EQ_GT] = ACTIONS(2846), + [anon_sym_QMARK_QMARK] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2846), + [anon_sym_null] = ACTIONS(2844), + [anon_sym_macro] = ACTIONS(2844), + [anon_sym_abstract] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_public] = ACTIONS(2844), + [anon_sym_private] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym_overload] = ACTIONS(2844), + [anon_sym_override] = ACTIONS(2844), + [anon_sym_final] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_interface] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_function] = ACTIONS(2844), + [anon_sym_var] = ACTIONS(2844), + [aux_sym_integer_token1] = ACTIONS(2844), + [aux_sym_integer_token2] = ACTIONS(2846), + [aux_sym_float_token1] = ACTIONS(2844), + [aux_sym_float_token2] = ACTIONS(2846), + [anon_sym_true] = ACTIONS(2844), + [anon_sym_false] = ACTIONS(2844), + [aux_sym_string_token1] = ACTIONS(2846), + [aux_sym_string_token3] = ACTIONS(2846), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2846), [sym__closing_brace_unmarker] = ACTIONS(3), }, [463] = { - [sym_identifier] = ACTIONS(2304), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_package] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_STAR] = ACTIONS(2306), - [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_for] = ACTIONS(2304), - [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_try] = ACTIONS(2304), - [anon_sym_catch] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2848), + [anon_sym_POUND] = ACTIONS(2850), + [anon_sym_package] = ACTIONS(2848), + [anon_sym_import] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_cast] = ACTIONS(2848), + [anon_sym_DOLLARtype] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_untyped] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_this] = ACTIONS(2848), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_AT_COLON] = ACTIONS(2850), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_catch] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2850), + [anon_sym_SLASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_LT_LT] = ACTIONS(2850), + [anon_sym_GT_GT] = ACTIONS(2848), + [anon_sym_GT_GT_GT] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_PIPE_PIPE] = ACTIONS(2850), + [anon_sym_EQ_EQ] = ACTIONS(2850), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2848), + [anon_sym_LT_EQ] = ACTIONS(2850), + [anon_sym_GT] = ACTIONS(2848), + [anon_sym_GT_EQ] = ACTIONS(2850), + [anon_sym_EQ_GT] = ACTIONS(2850), + [anon_sym_QMARK_QMARK] = ACTIONS(2850), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_macro] = ACTIONS(2848), + [anon_sym_abstract] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym_overload] = ACTIONS(2848), + [anon_sym_override] = ACTIONS(2848), + [anon_sym_final] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_interface] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_var] = ACTIONS(2848), + [aux_sym_integer_token1] = ACTIONS(2848), + [aux_sym_integer_token2] = ACTIONS(2850), + [aux_sym_float_token1] = ACTIONS(2848), + [aux_sym_float_token2] = ACTIONS(2850), + [anon_sym_true] = ACTIONS(2848), + [anon_sym_false] = ACTIONS(2848), + [aux_sym_string_token1] = ACTIONS(2850), + [aux_sym_string_token3] = ACTIONS(2850), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2850), [sym__closing_brace_unmarker] = ACTIONS(3), }, [464] = { - [sym_identifier] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(872), - [anon_sym_package] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_using] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_case] = ACTIONS(874), - [anon_sym_default] = ACTIONS(874), - [anon_sym_cast] = ACTIONS(874), - [anon_sym_DOLLARtype] = ACTIONS(872), - [anon_sym_for] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_untyped] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_this] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_AT_COLON] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_catch] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_PERCENT] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(872), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(872), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_QMARK] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(872), - [anon_sym_null] = ACTIONS(874), - [anon_sym_macro] = ACTIONS(874), - [anon_sym_abstract] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_public] = ACTIONS(874), - [anon_sym_private] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(874), - [anon_sym_inline] = ACTIONS(874), - [anon_sym_overload] = ACTIONS(874), - [anon_sym_override] = ACTIONS(874), - [anon_sym_final] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_interface] = ACTIONS(874), - [anon_sym_enum] = ACTIONS(874), - [anon_sym_typedef] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [aux_sym_integer_token1] = ACTIONS(874), - [aux_sym_integer_token2] = ACTIONS(872), - [aux_sym_float_token1] = ACTIONS(874), - [aux_sym_float_token2] = ACTIONS(872), - [anon_sym_true] = ACTIONS(874), - [anon_sym_false] = ACTIONS(874), - [aux_sym_string_token1] = ACTIONS(872), - [aux_sym_string_token3] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(872), + [sym_identifier] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_package] = ACTIONS(2852), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_cast] = ACTIONS(2852), + [anon_sym_DOLLARtype] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_untyped] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_this] = ACTIONS(2852), + [anon_sym_AT] = ACTIONS(2852), + [anon_sym_AT_COLON] = ACTIONS(2854), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_catch] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2852), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2852), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_EQ_GT] = ACTIONS(2854), + [anon_sym_QMARK_QMARK] = ACTIONS(2854), + [anon_sym_EQ] = ACTIONS(2852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_macro] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym_overload] = ACTIONS(2852), + [anon_sym_override] = ACTIONS(2852), + [anon_sym_final] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2852), + [aux_sym_integer_token1] = ACTIONS(2852), + [aux_sym_integer_token2] = ACTIONS(2854), + [aux_sym_float_token1] = ACTIONS(2852), + [aux_sym_float_token2] = ACTIONS(2854), + [anon_sym_true] = ACTIONS(2852), + [anon_sym_false] = ACTIONS(2852), + [aux_sym_string_token1] = ACTIONS(2854), + [aux_sym_string_token3] = ACTIONS(2854), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2854), [sym__closing_brace_unmarker] = ACTIONS(3), }, [465] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_package] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_STAR] = ACTIONS(2310), - [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_for] = ACTIONS(2308), - [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_try] = ACTIONS(2308), - [anon_sym_catch] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2856), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_package] = ACTIONS(2856), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_cast] = ACTIONS(2856), + [anon_sym_DOLLARtype] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_untyped] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_this] = ACTIONS(2856), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_AT_COLON] = ACTIONS(2858), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_catch] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2856), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2856), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2856), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2856), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_EQ_GT] = ACTIONS(2858), + [anon_sym_QMARK_QMARK] = ACTIONS(2858), + [anon_sym_EQ] = ACTIONS(2856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_macro] = ACTIONS(2856), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym_overload] = ACTIONS(2856), + [anon_sym_override] = ACTIONS(2856), + [anon_sym_final] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2856), + [aux_sym_integer_token1] = ACTIONS(2856), + [aux_sym_integer_token2] = ACTIONS(2858), + [aux_sym_float_token1] = ACTIONS(2856), + [aux_sym_float_token2] = ACTIONS(2858), + [anon_sym_true] = ACTIONS(2856), + [anon_sym_false] = ACTIONS(2856), + [aux_sym_string_token1] = ACTIONS(2858), + [aux_sym_string_token3] = ACTIONS(2858), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2858), [sym__closing_brace_unmarker] = ACTIONS(3), }, [466] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_POUND] = ACTIONS(2314), - [anon_sym_package] = ACTIONS(2312), - [anon_sym_import] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(2314), - [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_for] = ACTIONS(2312), - [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_try] = ACTIONS(2312), - [anon_sym_catch] = ACTIONS(2312), - [anon_sym_else] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2860), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_package] = ACTIONS(2860), + [anon_sym_import] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_cast] = ACTIONS(2860), + [anon_sym_DOLLARtype] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_untyped] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_this] = ACTIONS(2860), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_AT_COLON] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_catch] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_LT_LT] = ACTIONS(2862), + [anon_sym_GT_GT] = ACTIONS(2860), + [anon_sym_GT_GT_GT] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2860), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_PIPE_PIPE] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2862), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2860), + [anon_sym_LT_EQ] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2860), + [anon_sym_GT_EQ] = ACTIONS(2862), + [anon_sym_EQ_GT] = ACTIONS(2862), + [anon_sym_QMARK_QMARK] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_macro] = ACTIONS(2860), + [anon_sym_abstract] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_public] = ACTIONS(2860), + [anon_sym_private] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym_overload] = ACTIONS(2860), + [anon_sym_override] = ACTIONS(2860), + [anon_sym_final] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_interface] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_var] = ACTIONS(2860), + [aux_sym_integer_token1] = ACTIONS(2860), + [aux_sym_integer_token2] = ACTIONS(2862), + [aux_sym_float_token1] = ACTIONS(2860), + [aux_sym_float_token2] = ACTIONS(2862), + [anon_sym_true] = ACTIONS(2860), + [anon_sym_false] = ACTIONS(2860), + [aux_sym_string_token1] = ACTIONS(2862), + [aux_sym_string_token3] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2862), [sym__closing_brace_unmarker] = ACTIONS(3), }, [467] = { - [sym_identifier] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_package] = ACTIONS(2316), - [anon_sym_import] = ACTIONS(2316), - [anon_sym_STAR] = ACTIONS(2318), - [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_for] = ACTIONS(2316), - [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_try] = ACTIONS(2316), - [anon_sym_catch] = ACTIONS(2316), - [anon_sym_else] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2864), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_package] = ACTIONS(2864), + [anon_sym_import] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_cast] = ACTIONS(2864), + [anon_sym_DOLLARtype] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_untyped] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_this] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(2864), + [anon_sym_AT_COLON] = ACTIONS(2866), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_catch] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PERCENT] = ACTIONS(2866), + [anon_sym_SLASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_LT_LT] = ACTIONS(2866), + [anon_sym_GT_GT] = ACTIONS(2864), + [anon_sym_GT_GT_GT] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_PIPE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_PIPE_PIPE] = ACTIONS(2866), + [anon_sym_EQ_EQ] = ACTIONS(2866), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2864), + [anon_sym_LT_EQ] = ACTIONS(2866), + [anon_sym_GT] = ACTIONS(2864), + [anon_sym_GT_EQ] = ACTIONS(2866), + [anon_sym_EQ_GT] = ACTIONS(2866), + [anon_sym_QMARK_QMARK] = ACTIONS(2866), + [anon_sym_EQ] = ACTIONS(2864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_macro] = ACTIONS(2864), + [anon_sym_abstract] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_public] = ACTIONS(2864), + [anon_sym_private] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym_overload] = ACTIONS(2864), + [anon_sym_override] = ACTIONS(2864), + [anon_sym_final] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_interface] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_var] = ACTIONS(2864), + [aux_sym_integer_token1] = ACTIONS(2864), + [aux_sym_integer_token2] = ACTIONS(2866), + [aux_sym_float_token1] = ACTIONS(2864), + [aux_sym_float_token2] = ACTIONS(2866), + [anon_sym_true] = ACTIONS(2864), + [anon_sym_false] = ACTIONS(2864), + [aux_sym_string_token1] = ACTIONS(2866), + [aux_sym_string_token3] = ACTIONS(2866), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2866), [sym__closing_brace_unmarker] = ACTIONS(3), }, [468] = { - [sym_identifier] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(2322), - [anon_sym_package] = ACTIONS(2320), - [anon_sym_import] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_using] = ACTIONS(2320), - [anon_sym_throw] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_switch] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_case] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_cast] = ACTIONS(2320), - [anon_sym_DOLLARtype] = ACTIONS(2322), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_untyped] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_this] = ACTIONS(2320), - [anon_sym_AT] = ACTIONS(2320), - [anon_sym_AT_COLON] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_new] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_EQ_GT] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_EQ] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_null] = ACTIONS(2320), - [anon_sym_macro] = ACTIONS(2320), - [anon_sym_abstract] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_public] = ACTIONS(2320), - [anon_sym_private] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_inline] = ACTIONS(2320), - [anon_sym_overload] = ACTIONS(2320), - [anon_sym_override] = ACTIONS(2320), - [anon_sym_final] = ACTIONS(2320), - [anon_sym_class] = ACTIONS(2320), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_typedef] = ACTIONS(2320), - [anon_sym_function] = ACTIONS(2320), - [anon_sym_var] = ACTIONS(2320), - [aux_sym_integer_token1] = ACTIONS(2320), - [aux_sym_integer_token2] = ACTIONS(2322), - [aux_sym_float_token1] = ACTIONS(2320), - [aux_sym_float_token2] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [aux_sym_string_token1] = ACTIONS(2322), - [aux_sym_string_token3] = ACTIONS(2322), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2322), + [sym_identifier] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_package] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_cast] = ACTIONS(2868), + [anon_sym_DOLLARtype] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_untyped] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_this] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2868), + [anon_sym_AT_COLON] = ACTIONS(2870), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_catch] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2868), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2868), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_EQ_GT] = ACTIONS(2870), + [anon_sym_QMARK_QMARK] = ACTIONS(2870), + [anon_sym_EQ] = ACTIONS(2868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_macro] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym_overload] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_final] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [aux_sym_integer_token1] = ACTIONS(2868), + [aux_sym_integer_token2] = ACTIONS(2870), + [aux_sym_float_token1] = ACTIONS(2868), + [aux_sym_float_token2] = ACTIONS(2870), + [anon_sym_true] = ACTIONS(2868), + [anon_sym_false] = ACTIONS(2868), + [aux_sym_string_token1] = ACTIONS(2870), + [aux_sym_string_token3] = ACTIONS(2870), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2870), [sym__closing_brace_unmarker] = ACTIONS(3), }, [469] = { - [sym_identifier] = ACTIONS(2324), - [anon_sym_POUND] = ACTIONS(2326), - [anon_sym_package] = ACTIONS(2324), - [anon_sym_import] = ACTIONS(2324), - [anon_sym_STAR] = ACTIONS(2326), - [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_for] = ACTIONS(2324), - [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_try] = ACTIONS(2324), - [anon_sym_catch] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2872), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_package] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_cast] = ACTIONS(2872), + [anon_sym_DOLLARtype] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_untyped] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_this] = ACTIONS(2872), + [anon_sym_AT] = ACTIONS(2872), + [anon_sym_AT_COLON] = ACTIONS(2874), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_catch] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_LT_LT] = ACTIONS(2874), + [anon_sym_GT_GT] = ACTIONS(2872), + [anon_sym_GT_GT_GT] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2874), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2872), + [anon_sym_LT_EQ] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2872), + [anon_sym_GT_EQ] = ACTIONS(2874), + [anon_sym_EQ_GT] = ACTIONS(2874), + [anon_sym_QMARK_QMARK] = ACTIONS(2874), + [anon_sym_EQ] = ACTIONS(2872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_macro] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_public] = ACTIONS(2872), + [anon_sym_private] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym_overload] = ACTIONS(2872), + [anon_sym_override] = ACTIONS(2872), + [anon_sym_final] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_interface] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_var] = ACTIONS(2872), + [aux_sym_integer_token1] = ACTIONS(2872), + [aux_sym_integer_token2] = ACTIONS(2874), + [aux_sym_float_token1] = ACTIONS(2872), + [aux_sym_float_token2] = ACTIONS(2874), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [aux_sym_string_token1] = ACTIONS(2874), + [aux_sym_string_token3] = ACTIONS(2874), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2874), [sym__closing_brace_unmarker] = ACTIONS(3), }, [470] = { - [sym_identifier] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(2330), - [anon_sym_package] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2330), - [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_for] = ACTIONS(2328), - [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_try] = ACTIONS(2328), - [anon_sym_catch] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2876), + [anon_sym_POUND] = ACTIONS(2878), + [anon_sym_package] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_cast] = ACTIONS(2876), + [anon_sym_DOLLARtype] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_untyped] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_this] = ACTIONS(2876), + [anon_sym_AT] = ACTIONS(2876), + [anon_sym_AT_COLON] = ACTIONS(2878), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_catch] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PERCENT] = ACTIONS(2878), + [anon_sym_SLASH] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2876), + [anon_sym_GT_GT_GT] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_CARET] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_LT_EQ] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2876), + [anon_sym_GT_EQ] = ACTIONS(2878), + [anon_sym_EQ_GT] = ACTIONS(2878), + [anon_sym_QMARK_QMARK] = ACTIONS(2878), + [anon_sym_EQ] = ACTIONS(2876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_macro] = ACTIONS(2876), + [anon_sym_abstract] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_public] = ACTIONS(2876), + [anon_sym_private] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym_overload] = ACTIONS(2876), + [anon_sym_override] = ACTIONS(2876), + [anon_sym_final] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_var] = ACTIONS(2876), + [aux_sym_integer_token1] = ACTIONS(2876), + [aux_sym_integer_token2] = ACTIONS(2878), + [aux_sym_float_token1] = ACTIONS(2876), + [aux_sym_float_token2] = ACTIONS(2878), + [anon_sym_true] = ACTIONS(2876), + [anon_sym_false] = ACTIONS(2876), + [aux_sym_string_token1] = ACTIONS(2878), + [aux_sym_string_token3] = ACTIONS(2878), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2878), [sym__closing_brace_unmarker] = ACTIONS(3), }, [471] = { - [sym_identifier] = ACTIONS(2332), - [anon_sym_POUND] = ACTIONS(2334), - [anon_sym_package] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2334), - [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_for] = ACTIONS(2332), - [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_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2880), + [anon_sym_POUND] = ACTIONS(2882), + [anon_sym_package] = ACTIONS(2880), + [anon_sym_import] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_cast] = ACTIONS(2880), + [anon_sym_DOLLARtype] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_untyped] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_this] = ACTIONS(2880), + [anon_sym_AT] = ACTIONS(2880), + [anon_sym_AT_COLON] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_catch] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_LT_LT] = ACTIONS(2882), + [anon_sym_GT_GT] = ACTIONS(2880), + [anon_sym_GT_GT_GT] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_CARET] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_PIPE_PIPE] = ACTIONS(2882), + [anon_sym_EQ_EQ] = ACTIONS(2882), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_LT_EQ] = ACTIONS(2882), + [anon_sym_GT] = ACTIONS(2880), + [anon_sym_GT_EQ] = ACTIONS(2882), + [anon_sym_EQ_GT] = ACTIONS(2882), + [anon_sym_QMARK_QMARK] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_macro] = ACTIONS(2880), + [anon_sym_abstract] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym_overload] = ACTIONS(2880), + [anon_sym_override] = ACTIONS(2880), + [anon_sym_final] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_var] = ACTIONS(2880), + [aux_sym_integer_token1] = ACTIONS(2880), + [aux_sym_integer_token2] = ACTIONS(2882), + [aux_sym_float_token1] = ACTIONS(2880), + [aux_sym_float_token2] = ACTIONS(2882), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [aux_sym_string_token1] = ACTIONS(2882), + [aux_sym_string_token3] = ACTIONS(2882), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2882), [sym__closing_brace_unmarker] = ACTIONS(3), }, [472] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2338), - [anon_sym_package] = ACTIONS(2336), - [anon_sym_import] = ACTIONS(2336), - [anon_sym_STAR] = ACTIONS(2338), - [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_for] = ACTIONS(2336), - [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_try] = ACTIONS(2336), - [anon_sym_catch] = ACTIONS(2336), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2612), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_package] = ACTIONS(2612), + [anon_sym_import] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_using] = ACTIONS(2612), + [anon_sym_throw] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_cast] = ACTIONS(2612), + [anon_sym_DOLLARtype] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_untyped] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_this] = ACTIONS(2612), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_AT_COLON] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2612), + [anon_sym_catch] = ACTIONS(2612), + [anon_sym_else] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_new] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PERCENT] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_LT_LT] = ACTIONS(2614), + [anon_sym_GT_GT] = ACTIONS(2612), + [anon_sym_GT_GT_GT] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(2614), + [anon_sym_PIPE_PIPE] = ACTIONS(2614), + [anon_sym_EQ_EQ] = ACTIONS(2614), + [anon_sym_BANG_EQ] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_LT_EQ] = ACTIONS(2614), + [anon_sym_GT] = ACTIONS(2612), + [anon_sym_GT_EQ] = ACTIONS(2614), + [anon_sym_EQ_GT] = ACTIONS(2614), + [anon_sym_QMARK_QMARK] = ACTIONS(2614), + [anon_sym_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), + [anon_sym_null] = ACTIONS(2612), + [anon_sym_macro] = ACTIONS(2612), + [anon_sym_abstract] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym_overload] = ACTIONS(2612), + [anon_sym_override] = ACTIONS(2612), + [anon_sym_final] = ACTIONS(2612), + [anon_sym_class] = ACTIONS(2612), + [anon_sym_interface] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_function] = ACTIONS(2612), + [anon_sym_var] = ACTIONS(2612), + [aux_sym_integer_token1] = ACTIONS(2612), + [aux_sym_integer_token2] = ACTIONS(2614), + [aux_sym_float_token1] = ACTIONS(2612), + [aux_sym_float_token2] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [aux_sym_string_token1] = ACTIONS(2614), + [aux_sym_string_token3] = ACTIONS(2614), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2614), [sym__closing_brace_unmarker] = ACTIONS(3), }, [473] = { - [sym_identifier] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_package] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_using] = ACTIONS(1432), - [anon_sym_throw] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_cast] = ACTIONS(1432), - [anon_sym_DOLLARtype] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_untyped] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_this] = ACTIONS(1432), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_AT_COLON] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1432), - [anon_sym_catch] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_new] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PERCENT] = ACTIONS(1434), - [anon_sym_SLASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_LT_LT] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(1432), - [anon_sym_GT_GT_GT] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_CARET] = ACTIONS(1434), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_PIPE_PIPE] = ACTIONS(1434), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_LT_EQ] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1432), - [anon_sym_GT_EQ] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_QMARK_QMARK] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_macro] = ACTIONS(1432), - [anon_sym_abstract] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_public] = ACTIONS(1432), - [anon_sym_private] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym_overload] = ACTIONS(1432), - [anon_sym_override] = ACTIONS(1432), - [anon_sym_final] = ACTIONS(1432), - [anon_sym_class] = ACTIONS(1432), - [anon_sym_interface] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [aux_sym_integer_token1] = ACTIONS(1432), - [aux_sym_integer_token2] = ACTIONS(1434), - [aux_sym_float_token1] = ACTIONS(1432), - [aux_sym_float_token2] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1434), - [aux_sym_string_token3] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1434), + [sym_identifier] = ACTIONS(2626), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_package] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_using] = ACTIONS(2626), + [anon_sym_throw] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2626), + [anon_sym_default] = ACTIONS(2626), + [anon_sym_cast] = ACTIONS(2626), + [anon_sym_DOLLARtype] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_untyped] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2626), + [anon_sym_continue] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_this] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2626), + [anon_sym_AT_COLON] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_catch] = ACTIONS(2626), + [anon_sym_else] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_do] = ACTIONS(2626), + [anon_sym_new] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_SLASH] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2626), + [anon_sym_LT_LT] = ACTIONS(2628), + [anon_sym_GT_GT] = ACTIONS(2626), + [anon_sym_GT_GT_GT] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_PIPE] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_EQ] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2626), + [anon_sym_LT_EQ] = ACTIONS(2628), + [anon_sym_GT] = ACTIONS(2626), + [anon_sym_GT_EQ] = ACTIONS(2628), + [anon_sym_EQ_GT] = ACTIONS(2628), + [anon_sym_QMARK_QMARK] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2626), + [anon_sym_macro] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2626), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_extern] = ACTIONS(2626), + [anon_sym_inline] = ACTIONS(2626), + [anon_sym_overload] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_final] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_interface] = ACTIONS(2626), + [anon_sym_enum] = ACTIONS(2626), + [anon_sym_typedef] = ACTIONS(2626), + [anon_sym_function] = ACTIONS(2626), + [anon_sym_var] = ACTIONS(2626), + [aux_sym_integer_token1] = ACTIONS(2626), + [aux_sym_integer_token2] = ACTIONS(2628), + [aux_sym_float_token1] = ACTIONS(2626), + [aux_sym_float_token2] = ACTIONS(2628), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [aux_sym_string_token1] = ACTIONS(2628), + [aux_sym_string_token3] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2628), [sym__closing_brace_unmarker] = ACTIONS(3), }, [474] = { - [sym_identifier] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_package] = ACTIONS(2340), - [anon_sym_import] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(2342), - [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_for] = ACTIONS(2340), - [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_try] = ACTIONS(2340), - [anon_sym_catch] = ACTIONS(2340), - [anon_sym_else] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2884), + [anon_sym_POUND] = ACTIONS(2887), + [anon_sym_package] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_cast] = ACTIONS(2884), + [anon_sym_DOLLARtype] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_untyped] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_this] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_AT_COLON] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_catch] = ACTIONS(2884), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2884), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [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(2884), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2884), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_EQ_GT] = ACTIONS(2887), + [anon_sym_QMARK_QMARK] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_macro] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym_overload] = ACTIONS(2884), + [anon_sym_override] = ACTIONS(2884), + [anon_sym_final] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [aux_sym_integer_token1] = ACTIONS(2884), + [aux_sym_integer_token2] = ACTIONS(2887), + [aux_sym_float_token1] = ACTIONS(2884), + [aux_sym_float_token2] = ACTIONS(2887), + [anon_sym_true] = ACTIONS(2884), + [anon_sym_false] = ACTIONS(2884), + [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), }, [475] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_POUND] = ACTIONS(2346), - [anon_sym_package] = ACTIONS(2344), - [anon_sym_import] = ACTIONS(2344), - [anon_sym_STAR] = ACTIONS(2346), - [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_for] = ACTIONS(2344), - [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_try] = ACTIONS(2344), - [anon_sym_catch] = ACTIONS(2344), - [anon_sym_else] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2890), + [anon_sym_POUND] = ACTIONS(2892), + [anon_sym_package] = ACTIONS(2890), + [anon_sym_import] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_using] = ACTIONS(2890), + [anon_sym_throw] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_switch] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_case] = ACTIONS(2890), + [anon_sym_default] = ACTIONS(2890), + [anon_sym_cast] = ACTIONS(2890), + [anon_sym_DOLLARtype] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_untyped] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_this] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_AT_COLON] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2890), + [anon_sym_catch] = ACTIONS(2890), + [anon_sym_else] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_while] = ACTIONS(2890), + [anon_sym_do] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2892), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2892), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2892), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2892), + [anon_sym_QMARK_QMARK] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2892), + [anon_sym_null] = ACTIONS(2890), + [anon_sym_macro] = ACTIONS(2890), + [anon_sym_abstract] = ACTIONS(2890), + [anon_sym_static] = ACTIONS(2890), + [anon_sym_public] = ACTIONS(2890), + [anon_sym_private] = ACTIONS(2890), + [anon_sym_extern] = ACTIONS(2890), + [anon_sym_inline] = ACTIONS(2890), + [anon_sym_overload] = ACTIONS(2890), + [anon_sym_override] = ACTIONS(2890), + [anon_sym_final] = ACTIONS(2890), + [anon_sym_class] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_typedef] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2890), + [anon_sym_var] = ACTIONS(2890), + [aux_sym_integer_token1] = ACTIONS(2890), + [aux_sym_integer_token2] = ACTIONS(2892), + [aux_sym_float_token1] = ACTIONS(2890), + [aux_sym_float_token2] = ACTIONS(2892), + [anon_sym_true] = ACTIONS(2890), + [anon_sym_false] = ACTIONS(2890), + [aux_sym_string_token1] = ACTIONS(2892), + [aux_sym_string_token3] = ACTIONS(2892), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2892), [sym__closing_brace_unmarker] = ACTIONS(3), }, [476] = { - [sym_identifier] = ACTIONS(2348), - [anon_sym_POUND] = ACTIONS(2350), - [anon_sym_package] = ACTIONS(2348), - [anon_sym_import] = ACTIONS(2348), - [anon_sym_STAR] = ACTIONS(2350), - [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_for] = ACTIONS(2348), - [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_try] = ACTIONS(2348), - [anon_sym_catch] = ACTIONS(2348), - [anon_sym_else] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2894), + [anon_sym_POUND] = ACTIONS(2896), + [anon_sym_package] = ACTIONS(2894), + [anon_sym_import] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_using] = ACTIONS(2894), + [anon_sym_throw] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_switch] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_case] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2894), + [anon_sym_cast] = ACTIONS(2894), + [anon_sym_DOLLARtype] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_untyped] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_this] = ACTIONS(2894), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_AT_COLON] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2894), + [anon_sym_catch] = ACTIONS(2894), + [anon_sym_else] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_while] = ACTIONS(2894), + [anon_sym_do] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2896), + [anon_sym_DASH_DASH] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_LT_LT] = ACTIONS(2896), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_EQ_EQ] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2896), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_GT_EQ] = ACTIONS(2896), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_QMARK_QMARK] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2896), + [anon_sym_null] = ACTIONS(2894), + [anon_sym_macro] = ACTIONS(2894), + [anon_sym_abstract] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(2894), + [anon_sym_public] = ACTIONS(2894), + [anon_sym_private] = ACTIONS(2894), + [anon_sym_extern] = ACTIONS(2894), + [anon_sym_inline] = ACTIONS(2894), + [anon_sym_overload] = ACTIONS(2894), + [anon_sym_override] = ACTIONS(2894), + [anon_sym_final] = ACTIONS(2894), + [anon_sym_class] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_typedef] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2894), + [anon_sym_var] = ACTIONS(2894), + [aux_sym_integer_token1] = ACTIONS(2894), + [aux_sym_integer_token2] = ACTIONS(2896), + [aux_sym_float_token1] = ACTIONS(2894), + [aux_sym_float_token2] = ACTIONS(2896), + [anon_sym_true] = ACTIONS(2894), + [anon_sym_false] = ACTIONS(2894), + [aux_sym_string_token1] = ACTIONS(2896), + [aux_sym_string_token3] = ACTIONS(2896), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2896), [sym__closing_brace_unmarker] = ACTIONS(3), }, [477] = { - [sym_identifier] = ACTIONS(2352), - [anon_sym_POUND] = ACTIONS(2354), - [anon_sym_package] = ACTIONS(2352), - [anon_sym_import] = ACTIONS(2352), - [anon_sym_STAR] = ACTIONS(2354), - [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_for] = ACTIONS(2352), - [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_try] = ACTIONS(2352), - [anon_sym_catch] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2898), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_package] = ACTIONS(2898), + [anon_sym_import] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2898), + [anon_sym_throw] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2898), + [anon_sym_default] = ACTIONS(2898), + [anon_sym_cast] = ACTIONS(2898), + [anon_sym_DOLLARtype] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_untyped] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_this] = ACTIONS(2898), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_AT_COLON] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2898), + [anon_sym_catch] = ACTIONS(2898), + [anon_sym_else] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_while] = ACTIONS(2898), + [anon_sym_do] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_LT_LT] = ACTIONS(2900), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_CARET] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2900), + [anon_sym_EQ_GT] = ACTIONS(2900), + [anon_sym_QMARK_QMARK] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2898), + [anon_sym_macro] = ACTIONS(2898), + [anon_sym_abstract] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2898), + [anon_sym_public] = ACTIONS(2898), + [anon_sym_private] = ACTIONS(2898), + [anon_sym_extern] = ACTIONS(2898), + [anon_sym_inline] = ACTIONS(2898), + [anon_sym_overload] = ACTIONS(2898), + [anon_sym_override] = ACTIONS(2898), + [anon_sym_final] = ACTIONS(2898), + [anon_sym_class] = ACTIONS(2898), + [anon_sym_interface] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_typedef] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2898), + [anon_sym_var] = ACTIONS(2898), + [aux_sym_integer_token1] = ACTIONS(2898), + [aux_sym_integer_token2] = ACTIONS(2900), + [aux_sym_float_token1] = ACTIONS(2898), + [aux_sym_float_token2] = ACTIONS(2900), + [anon_sym_true] = ACTIONS(2898), + [anon_sym_false] = ACTIONS(2898), + [aux_sym_string_token1] = ACTIONS(2900), + [aux_sym_string_token3] = ACTIONS(2900), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2900), [sym__closing_brace_unmarker] = ACTIONS(3), }, [478] = { - [sym_identifier] = ACTIONS(2356), - [anon_sym_POUND] = ACTIONS(2358), - [anon_sym_package] = ACTIONS(2356), - [anon_sym_import] = ACTIONS(2356), - [anon_sym_STAR] = ACTIONS(2358), - [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_for] = ACTIONS(2356), - [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_try] = ACTIONS(2356), - [anon_sym_catch] = ACTIONS(2356), - [anon_sym_else] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(2902), + [anon_sym_POUND] = ACTIONS(2904), + [anon_sym_package] = ACTIONS(2902), + [anon_sym_import] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(2902), + [anon_sym_throw] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_cast] = ACTIONS(2902), + [anon_sym_DOLLARtype] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_untyped] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_this] = ACTIONS(2902), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_AT_COLON] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_catch] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2904), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_GT_EQ] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(2904), + [anon_sym_QMARK_QMARK] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_macro] = ACTIONS(2902), + [anon_sym_abstract] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_public] = ACTIONS(2902), + [anon_sym_private] = ACTIONS(2902), + [anon_sym_extern] = ACTIONS(2902), + [anon_sym_inline] = ACTIONS(2902), + [anon_sym_overload] = ACTIONS(2902), + [anon_sym_override] = ACTIONS(2902), + [anon_sym_final] = ACTIONS(2902), + [anon_sym_class] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_var] = ACTIONS(2902), + [aux_sym_integer_token1] = ACTIONS(2902), + [aux_sym_integer_token2] = ACTIONS(2904), + [aux_sym_float_token1] = ACTIONS(2902), + [aux_sym_float_token2] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2902), + [anon_sym_false] = ACTIONS(2902), + [aux_sym_string_token1] = ACTIONS(2904), + [aux_sym_string_token3] = ACTIONS(2904), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2904), [sym__closing_brace_unmarker] = ACTIONS(3), }, [479] = { - [sym_identifier] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(2362), - [anon_sym_package] = ACTIONS(2360), - [anon_sym_import] = ACTIONS(2360), - [anon_sym_STAR] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2360), - [anon_sym_throw] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2360), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_case] = ACTIONS(2360), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_cast] = ACTIONS(2360), - [anon_sym_DOLLARtype] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2360), - [anon_sym_return] = ACTIONS(2360), - [anon_sym_untyped] = ACTIONS(2360), - [anon_sym_break] = ACTIONS(2360), - [anon_sym_continue] = ACTIONS(2360), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_this] = ACTIONS(2360), - [anon_sym_AT] = ACTIONS(2360), - [anon_sym_AT_COLON] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2360), - [anon_sym_catch] = ACTIONS(2360), - [anon_sym_else] = ACTIONS(2360), - [anon_sym_if] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2360), - [anon_sym_do] = ACTIONS(2360), - [anon_sym_new] = ACTIONS(2360), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2360), - [anon_sym_DASH] = ACTIONS(2360), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [anon_sym_PERCENT] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2360), - [anon_sym_PLUS] = ACTIONS(2360), - [anon_sym_LT_LT] = ACTIONS(2362), - [anon_sym_GT_GT] = ACTIONS(2360), - [anon_sym_GT_GT_GT] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_EQ_EQ] = ACTIONS(2362), - [anon_sym_BANG_EQ] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2360), - [anon_sym_LT_EQ] = ACTIONS(2362), - [anon_sym_GT] = ACTIONS(2360), - [anon_sym_GT_EQ] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(2362), - [anon_sym_QMARK_QMARK] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2362), - [anon_sym_null] = ACTIONS(2360), - [anon_sym_macro] = ACTIONS(2360), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_static] = ACTIONS(2360), - [anon_sym_public] = ACTIONS(2360), - [anon_sym_private] = ACTIONS(2360), - [anon_sym_extern] = ACTIONS(2360), - [anon_sym_inline] = ACTIONS(2360), - [anon_sym_overload] = ACTIONS(2360), - [anon_sym_override] = ACTIONS(2360), - [anon_sym_final] = ACTIONS(2360), - [anon_sym_class] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2360), - [anon_sym_enum] = ACTIONS(2360), - [anon_sym_typedef] = ACTIONS(2360), - [anon_sym_function] = ACTIONS(2360), - [anon_sym_var] = ACTIONS(2360), - [aux_sym_integer_token1] = ACTIONS(2360), - [aux_sym_integer_token2] = ACTIONS(2362), - [aux_sym_float_token1] = ACTIONS(2360), - [aux_sym_float_token2] = ACTIONS(2362), - [anon_sym_true] = ACTIONS(2360), - [anon_sym_false] = ACTIONS(2360), - [aux_sym_string_token1] = ACTIONS(2362), - [aux_sym_string_token3] = ACTIONS(2362), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2908), + [anon_sym_package] = ACTIONS(2906), + [anon_sym_import] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2908), + [anon_sym_using] = ACTIONS(2906), + [anon_sym_throw] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2906), + [anon_sym_default] = ACTIONS(2906), + [anon_sym_cast] = ACTIONS(2906), + [anon_sym_DOLLARtype] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_untyped] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_this] = ACTIONS(2906), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_AT_COLON] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_catch] = ACTIONS(2906), + [anon_sym_else] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_LT_LT] = ACTIONS(2908), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_EQ_EQ] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_LT_EQ] = ACTIONS(2908), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_GT_EQ] = ACTIONS(2908), + [anon_sym_EQ_GT] = ACTIONS(2908), + [anon_sym_QMARK_QMARK] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_macro] = ACTIONS(2906), + [anon_sym_abstract] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_public] = ACTIONS(2906), + [anon_sym_private] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_inline] = ACTIONS(2906), + [anon_sym_overload] = ACTIONS(2906), + [anon_sym_override] = ACTIONS(2906), + [anon_sym_final] = ACTIONS(2906), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_typedef] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_var] = ACTIONS(2906), + [aux_sym_integer_token1] = ACTIONS(2906), + [aux_sym_integer_token2] = ACTIONS(2908), + [aux_sym_float_token1] = ACTIONS(2906), + [aux_sym_float_token2] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(2908), + [aux_sym_string_token3] = ACTIONS(2908), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2908), [sym__closing_brace_unmarker] = ACTIONS(3), }, [480] = { - [sym_identifier] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(2366), - [anon_sym_package] = ACTIONS(2364), - [anon_sym_import] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2366), - [anon_sym_using] = ACTIONS(2364), - [anon_sym_throw] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_switch] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2366), - [anon_sym_case] = ACTIONS(2364), - [anon_sym_default] = ACTIONS(2364), - [anon_sym_cast] = ACTIONS(2364), - [anon_sym_DOLLARtype] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2364), - [anon_sym_return] = ACTIONS(2364), - [anon_sym_untyped] = ACTIONS(2364), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2364), - [anon_sym_LBRACK] = ACTIONS(2366), - [anon_sym_this] = ACTIONS(2364), - [anon_sym_AT] = ACTIONS(2364), - [anon_sym_AT_COLON] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2364), - [anon_sym_catch] = ACTIONS(2364), - [anon_sym_else] = ACTIONS(2364), - [anon_sym_if] = ACTIONS(2364), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2364), - [anon_sym_TILDE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_PLUS_PLUS] = ACTIONS(2366), - [anon_sym_DASH_DASH] = ACTIONS(2366), - [anon_sym_PERCENT] = ACTIONS(2366), - [anon_sym_SLASH] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2366), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_GT_GT_GT] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_CARET] = ACTIONS(2366), - [anon_sym_AMP_AMP] = ACTIONS(2366), - [anon_sym_PIPE_PIPE] = ACTIONS(2366), - [anon_sym_EQ_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_LT_EQ] = ACTIONS(2366), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_GT_EQ] = ACTIONS(2366), - [anon_sym_EQ_GT] = ACTIONS(2366), - [anon_sym_QMARK_QMARK] = ACTIONS(2366), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), - [anon_sym_null] = ACTIONS(2364), - [anon_sym_macro] = ACTIONS(2364), - [anon_sym_abstract] = ACTIONS(2364), - [anon_sym_static] = ACTIONS(2364), - [anon_sym_public] = ACTIONS(2364), - [anon_sym_private] = ACTIONS(2364), - [anon_sym_extern] = ACTIONS(2364), - [anon_sym_inline] = ACTIONS(2364), - [anon_sym_overload] = ACTIONS(2364), - [anon_sym_override] = ACTIONS(2364), - [anon_sym_final] = ACTIONS(2364), - [anon_sym_class] = ACTIONS(2364), - [anon_sym_interface] = ACTIONS(2364), - [anon_sym_enum] = ACTIONS(2364), - [anon_sym_typedef] = ACTIONS(2364), - [anon_sym_function] = ACTIONS(2364), - [anon_sym_var] = ACTIONS(2364), - [aux_sym_integer_token1] = ACTIONS(2364), - [aux_sym_integer_token2] = ACTIONS(2366), - [aux_sym_float_token1] = ACTIONS(2364), - [aux_sym_float_token2] = ACTIONS(2366), - [anon_sym_true] = ACTIONS(2364), - [anon_sym_false] = ACTIONS(2364), - [aux_sym_string_token1] = ACTIONS(2366), - [aux_sym_string_token3] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2912), + [anon_sym_package] = ACTIONS(2910), + [anon_sym_import] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_using] = ACTIONS(2910), + [anon_sym_throw] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2910), + [anon_sym_default] = ACTIONS(2910), + [anon_sym_cast] = ACTIONS(2910), + [anon_sym_DOLLARtype] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_untyped] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_this] = ACTIONS(2910), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_AT_COLON] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_catch] = ACTIONS(2910), + [anon_sym_else] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_LT_LT] = ACTIONS(2912), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2912), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_EQ_EQ] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_LT_EQ] = ACTIONS(2912), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_GT_EQ] = ACTIONS(2912), + [anon_sym_EQ_GT] = ACTIONS(2912), + [anon_sym_QMARK_QMARK] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2912), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_macro] = ACTIONS(2910), + [anon_sym_abstract] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2910), + [anon_sym_public] = ACTIONS(2910), + [anon_sym_private] = ACTIONS(2910), + [anon_sym_extern] = ACTIONS(2910), + [anon_sym_inline] = ACTIONS(2910), + [anon_sym_overload] = ACTIONS(2910), + [anon_sym_override] = ACTIONS(2910), + [anon_sym_final] = ACTIONS(2910), + [anon_sym_class] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_var] = ACTIONS(2910), + [aux_sym_integer_token1] = ACTIONS(2910), + [aux_sym_integer_token2] = ACTIONS(2912), + [aux_sym_float_token1] = ACTIONS(2910), + [aux_sym_float_token2] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2910), + [anon_sym_false] = ACTIONS(2910), + [aux_sym_string_token1] = ACTIONS(2912), + [aux_sym_string_token3] = ACTIONS(2912), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2912), [sym__closing_brace_unmarker] = ACTIONS(3), }, [481] = { - [sym_identifier] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(2370), - [anon_sym_package] = ACTIONS(2368), - [anon_sym_import] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_case] = ACTIONS(2368), - [anon_sym_default] = ACTIONS(2368), - [anon_sym_cast] = ACTIONS(2368), - [anon_sym_DOLLARtype] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_untyped] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_this] = ACTIONS(2368), - [anon_sym_AT] = ACTIONS(2368), - [anon_sym_AT_COLON] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2368), - [anon_sym_else] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_do] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PERCENT] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_LT_LT] = ACTIONS(2370), - [anon_sym_GT_GT] = ACTIONS(2368), - [anon_sym_GT_GT_GT] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2368), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(2368), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_EQ_GT] = ACTIONS(2370), - [anon_sym_QMARK_QMARK] = ACTIONS(2370), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [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_enum] = 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(2370), - [aux_sym_float_token1] = ACTIONS(2368), - [aux_sym_float_token2] = ACTIONS(2370), - [anon_sym_true] = ACTIONS(2368), - [anon_sym_false] = ACTIONS(2368), - [aux_sym_string_token1] = ACTIONS(2370), - [aux_sym_string_token3] = ACTIONS(2370), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2916), + [anon_sym_package] = ACTIONS(2914), + [anon_sym_import] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2914), + [anon_sym_throw] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2914), + [anon_sym_default] = ACTIONS(2914), + [anon_sym_cast] = ACTIONS(2914), + [anon_sym_DOLLARtype] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_untyped] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_this] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_AT_COLON] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2914), + [anon_sym_catch] = ACTIONS(2914), + [anon_sym_else] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_while] = ACTIONS(2914), + [anon_sym_do] = ACTIONS(2914), + [anon_sym_new] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2916), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2916), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_EQ_EQ] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2916), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2916), + [anon_sym_EQ_GT] = ACTIONS(2916), + [anon_sym_QMARK_QMARK] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2916), + [anon_sym_null] = ACTIONS(2914), + [anon_sym_macro] = ACTIONS(2914), + [anon_sym_abstract] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2914), + [anon_sym_public] = ACTIONS(2914), + [anon_sym_private] = ACTIONS(2914), + [anon_sym_extern] = ACTIONS(2914), + [anon_sym_inline] = ACTIONS(2914), + [anon_sym_overload] = ACTIONS(2914), + [anon_sym_override] = ACTIONS(2914), + [anon_sym_final] = ACTIONS(2914), + [anon_sym_class] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_typedef] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2914), + [anon_sym_var] = ACTIONS(2914), + [aux_sym_integer_token1] = ACTIONS(2914), + [aux_sym_integer_token2] = ACTIONS(2916), + [aux_sym_float_token1] = ACTIONS(2914), + [aux_sym_float_token2] = ACTIONS(2916), + [anon_sym_true] = ACTIONS(2914), + [anon_sym_false] = ACTIONS(2914), + [aux_sym_string_token1] = ACTIONS(2916), + [aux_sym_string_token3] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2916), [sym__closing_brace_unmarker] = ACTIONS(3), }, [482] = { - [sym_identifier] = ACTIONS(2372), - [anon_sym_POUND] = ACTIONS(2374), - [anon_sym_package] = ACTIONS(2372), - [anon_sym_import] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2372), - [anon_sym_throw] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_cast] = ACTIONS(2372), - [anon_sym_DOLLARtype] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_untyped] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_this] = ACTIONS(2372), - [anon_sym_AT] = ACTIONS(2372), - [anon_sym_AT_COLON] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2372), - [anon_sym_catch] = ACTIONS(2372), - [anon_sym_else] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2372), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PERCENT] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_LT_LT] = ACTIONS(2374), - [anon_sym_GT_GT] = ACTIONS(2372), - [anon_sym_GT_GT_GT] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_EQ_GT] = ACTIONS(2374), - [anon_sym_QMARK_QMARK] = ACTIONS(2374), - [anon_sym_EQ] = ACTIONS(2372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2374), - [anon_sym_null] = ACTIONS(2372), - [anon_sym_macro] = ACTIONS(2372), - [anon_sym_abstract] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_public] = ACTIONS(2372), - [anon_sym_private] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_inline] = ACTIONS(2372), - [anon_sym_overload] = ACTIONS(2372), - [anon_sym_override] = ACTIONS(2372), - [anon_sym_final] = ACTIONS(2372), - [anon_sym_class] = ACTIONS(2372), - [anon_sym_interface] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_typedef] = ACTIONS(2372), - [anon_sym_function] = ACTIONS(2372), - [anon_sym_var] = ACTIONS(2372), - [aux_sym_integer_token1] = ACTIONS(2372), - [aux_sym_integer_token2] = ACTIONS(2374), - [aux_sym_float_token1] = ACTIONS(2372), - [aux_sym_float_token2] = ACTIONS(2374), - [anon_sym_true] = ACTIONS(2372), - [anon_sym_false] = ACTIONS(2372), - [aux_sym_string_token1] = ACTIONS(2374), - [aux_sym_string_token3] = ACTIONS(2374), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2920), + [anon_sym_package] = ACTIONS(2918), + [anon_sym_import] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2918), + [anon_sym_throw] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2918), + [anon_sym_default] = ACTIONS(2918), + [anon_sym_cast] = ACTIONS(2918), + [anon_sym_DOLLARtype] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_untyped] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_this] = ACTIONS(2918), + [anon_sym_AT] = ACTIONS(2918), + [anon_sym_AT_COLON] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2918), + [anon_sym_catch] = ACTIONS(2918), + [anon_sym_else] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_while] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2920), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_EQ_EQ] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2920), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2920), + [anon_sym_EQ_GT] = ACTIONS(2920), + [anon_sym_QMARK_QMARK] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), + [anon_sym_null] = ACTIONS(2918), + [anon_sym_macro] = ACTIONS(2918), + [anon_sym_abstract] = ACTIONS(2918), + [anon_sym_static] = ACTIONS(2918), + [anon_sym_public] = ACTIONS(2918), + [anon_sym_private] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2918), + [anon_sym_inline] = ACTIONS(2918), + [anon_sym_overload] = ACTIONS(2918), + [anon_sym_override] = ACTIONS(2918), + [anon_sym_final] = ACTIONS(2918), + [anon_sym_class] = ACTIONS(2918), + [anon_sym_interface] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2918), + [anon_sym_var] = ACTIONS(2918), + [aux_sym_integer_token1] = ACTIONS(2918), + [aux_sym_integer_token2] = ACTIONS(2920), + [aux_sym_float_token1] = ACTIONS(2918), + [aux_sym_float_token2] = ACTIONS(2920), + [anon_sym_true] = ACTIONS(2918), + [anon_sym_false] = ACTIONS(2918), + [aux_sym_string_token1] = ACTIONS(2920), + [aux_sym_string_token3] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2920), [sym__closing_brace_unmarker] = ACTIONS(3), }, [483] = { - [sym_identifier] = ACTIONS(2376), - [anon_sym_POUND] = ACTIONS(2378), - [anon_sym_package] = ACTIONS(2376), - [anon_sym_import] = ACTIONS(2376), - [anon_sym_STAR] = ACTIONS(2378), - [anon_sym_using] = ACTIONS(2376), - [anon_sym_throw] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_switch] = ACTIONS(2376), - [anon_sym_LBRACE] = ACTIONS(2378), - [anon_sym_case] = ACTIONS(2376), - [anon_sym_default] = ACTIONS(2376), - [anon_sym_cast] = ACTIONS(2376), - [anon_sym_DOLLARtype] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2376), - [anon_sym_return] = ACTIONS(2376), - [anon_sym_untyped] = ACTIONS(2376), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2378), - [anon_sym_this] = ACTIONS(2376), - [anon_sym_AT] = ACTIONS(2376), - [anon_sym_AT_COLON] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2376), - [anon_sym_catch] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2376), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_while] = ACTIONS(2376), - [anon_sym_do] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2378), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2378), - [anon_sym_DASH_DASH] = ACTIONS(2378), - [anon_sym_PERCENT] = ACTIONS(2378), - [anon_sym_SLASH] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2378), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_GT_GT_GT] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2378), - [anon_sym_AMP_AMP] = ACTIONS(2378), - [anon_sym_PIPE_PIPE] = ACTIONS(2378), - [anon_sym_EQ_EQ] = ACTIONS(2378), - [anon_sym_BANG_EQ] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2378), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_GT_EQ] = ACTIONS(2378), - [anon_sym_EQ_GT] = ACTIONS(2378), - [anon_sym_QMARK_QMARK] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2378), - [anon_sym_null] = ACTIONS(2376), - [anon_sym_macro] = ACTIONS(2376), - [anon_sym_abstract] = ACTIONS(2376), - [anon_sym_static] = ACTIONS(2376), - [anon_sym_public] = ACTIONS(2376), - [anon_sym_private] = ACTIONS(2376), - [anon_sym_extern] = ACTIONS(2376), - [anon_sym_inline] = ACTIONS(2376), - [anon_sym_overload] = ACTIONS(2376), - [anon_sym_override] = ACTIONS(2376), - [anon_sym_final] = ACTIONS(2376), - [anon_sym_class] = ACTIONS(2376), - [anon_sym_interface] = ACTIONS(2376), - [anon_sym_enum] = ACTIONS(2376), - [anon_sym_typedef] = ACTIONS(2376), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_var] = ACTIONS(2376), - [aux_sym_integer_token1] = ACTIONS(2376), - [aux_sym_integer_token2] = ACTIONS(2378), - [aux_sym_float_token1] = ACTIONS(2376), - [aux_sym_float_token2] = ACTIONS(2378), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [aux_sym_string_token1] = ACTIONS(2378), - [aux_sym_string_token3] = ACTIONS(2378), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2922), + [anon_sym_POUND] = ACTIONS(2924), + [anon_sym_package] = ACTIONS(2922), + [anon_sym_import] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_using] = ACTIONS(2922), + [anon_sym_throw] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2922), + [anon_sym_default] = ACTIONS(2922), + [anon_sym_cast] = ACTIONS(2922), + [anon_sym_DOLLARtype] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_untyped] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_this] = ACTIONS(2922), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_AT_COLON] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2922), + [anon_sym_catch] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2924), + [anon_sym_PERCENT] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2924), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_GT_GT_GT] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_CARET] = ACTIONS(2924), + [anon_sym_AMP_AMP] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_EQ_EQ] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_LT_EQ] = ACTIONS(2924), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_GT_EQ] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(2924), + [anon_sym_QMARK_QMARK] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), + [anon_sym_null] = ACTIONS(2922), + [anon_sym_macro] = ACTIONS(2922), + [anon_sym_abstract] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_public] = ACTIONS(2922), + [anon_sym_private] = ACTIONS(2922), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym_overload] = ACTIONS(2922), + [anon_sym_override] = ACTIONS(2922), + [anon_sym_final] = ACTIONS(2922), + [anon_sym_class] = ACTIONS(2922), + [anon_sym_interface] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2922), + [anon_sym_var] = ACTIONS(2922), + [aux_sym_integer_token1] = ACTIONS(2922), + [aux_sym_integer_token2] = ACTIONS(2924), + [aux_sym_float_token1] = ACTIONS(2922), + [aux_sym_float_token2] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2922), + [anon_sym_false] = ACTIONS(2922), + [aux_sym_string_token1] = ACTIONS(2924), + [aux_sym_string_token3] = ACTIONS(2924), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2924), [sym__closing_brace_unmarker] = ACTIONS(3), }, [484] = { - [sym_identifier] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(2382), - [anon_sym_package] = ACTIONS(2380), - [anon_sym_import] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2380), - [anon_sym_throw] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2380), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2380), - [anon_sym_default] = ACTIONS(2380), - [anon_sym_cast] = ACTIONS(2380), - [anon_sym_DOLLARtype] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_untyped] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_this] = ACTIONS(2380), - [anon_sym_AT] = ACTIONS(2380), - [anon_sym_AT_COLON] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2380), - [anon_sym_catch] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_do] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2380), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_PERCENT] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_LT_LT] = ACTIONS(2382), - [anon_sym_GT_GT] = ACTIONS(2380), - [anon_sym_GT_GT_GT] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT] = ACTIONS(2380), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_EQ_GT] = ACTIONS(2382), - [anon_sym_QMARK_QMARK] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2382), - [anon_sym_null] = ACTIONS(2380), - [anon_sym_macro] = ACTIONS(2380), - [anon_sym_abstract] = ACTIONS(2380), - [anon_sym_static] = ACTIONS(2380), - [anon_sym_public] = ACTIONS(2380), - [anon_sym_private] = ACTIONS(2380), - [anon_sym_extern] = ACTIONS(2380), - [anon_sym_inline] = ACTIONS(2380), - [anon_sym_overload] = ACTIONS(2380), - [anon_sym_override] = ACTIONS(2380), - [anon_sym_final] = ACTIONS(2380), - [anon_sym_class] = ACTIONS(2380), - [anon_sym_interface] = ACTIONS(2380), - [anon_sym_enum] = ACTIONS(2380), - [anon_sym_typedef] = ACTIONS(2380), - [anon_sym_function] = ACTIONS(2380), - [anon_sym_var] = ACTIONS(2380), - [aux_sym_integer_token1] = ACTIONS(2380), - [aux_sym_integer_token2] = ACTIONS(2382), - [aux_sym_float_token1] = ACTIONS(2380), - [aux_sym_float_token2] = ACTIONS(2382), - [anon_sym_true] = ACTIONS(2380), - [anon_sym_false] = ACTIONS(2380), - [aux_sym_string_token1] = ACTIONS(2382), - [aux_sym_string_token3] = ACTIONS(2382), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2928), + [anon_sym_package] = ACTIONS(2926), + [anon_sym_import] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2926), + [anon_sym_throw] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2926), + [anon_sym_default] = ACTIONS(2926), + [anon_sym_cast] = ACTIONS(2926), + [anon_sym_DOLLARtype] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_untyped] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_this] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_AT_COLON] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2926), + [anon_sym_catch] = ACTIONS(2926), + [anon_sym_else] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_while] = ACTIONS(2926), + [anon_sym_do] = ACTIONS(2926), + [anon_sym_new] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2928), + [anon_sym_PERCENT] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_LT_LT] = ACTIONS(2928), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [anon_sym_EQ_EQ] = ACTIONS(2928), + [anon_sym_BANG_EQ] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_GT_EQ] = ACTIONS(2928), + [anon_sym_EQ_GT] = ACTIONS(2928), + [anon_sym_QMARK_QMARK] = ACTIONS(2928), + [anon_sym_EQ] = ACTIONS(2926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2926), + [anon_sym_macro] = ACTIONS(2926), + [anon_sym_abstract] = ACTIONS(2926), + [anon_sym_static] = ACTIONS(2926), + [anon_sym_public] = ACTIONS(2926), + [anon_sym_private] = ACTIONS(2926), + [anon_sym_extern] = ACTIONS(2926), + [anon_sym_inline] = ACTIONS(2926), + [anon_sym_overload] = ACTIONS(2926), + [anon_sym_override] = ACTIONS(2926), + [anon_sym_final] = ACTIONS(2926), + [anon_sym_class] = ACTIONS(2926), + [anon_sym_interface] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_typedef] = ACTIONS(2926), + [anon_sym_function] = ACTIONS(2926), + [anon_sym_var] = ACTIONS(2926), + [aux_sym_integer_token1] = ACTIONS(2926), + [aux_sym_integer_token2] = ACTIONS(2928), + [aux_sym_float_token1] = ACTIONS(2926), + [aux_sym_float_token2] = ACTIONS(2928), + [anon_sym_true] = ACTIONS(2926), + [anon_sym_false] = ACTIONS(2926), + [aux_sym_string_token1] = ACTIONS(2928), + [aux_sym_string_token3] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2928), [sym__closing_brace_unmarker] = ACTIONS(3), }, [485] = { - [sym_identifier] = ACTIONS(2384), - [anon_sym_POUND] = ACTIONS(2386), - [anon_sym_package] = ACTIONS(2384), - [anon_sym_import] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_using] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2386), - [anon_sym_switch] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_case] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2384), - [anon_sym_cast] = ACTIONS(2384), - [anon_sym_DOLLARtype] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_untyped] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2386), - [anon_sym_this] = ACTIONS(2384), - [anon_sym_AT] = ACTIONS(2384), - [anon_sym_AT_COLON] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_GT_GT_GT] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_EQ_GT] = ACTIONS(2386), - [anon_sym_QMARK_QMARK] = ACTIONS(2386), - [anon_sym_EQ] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_null] = ACTIONS(2384), - [anon_sym_macro] = ACTIONS(2384), - [anon_sym_abstract] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_public] = ACTIONS(2384), - [anon_sym_private] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym_inline] = ACTIONS(2384), - [anon_sym_overload] = ACTIONS(2384), - [anon_sym_override] = ACTIONS(2384), - [anon_sym_final] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_interface] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - [anon_sym_typedef] = ACTIONS(2384), - [anon_sym_function] = ACTIONS(2384), - [anon_sym_var] = ACTIONS(2384), - [aux_sym_integer_token1] = ACTIONS(2384), - [aux_sym_integer_token2] = ACTIONS(2386), - [aux_sym_float_token1] = ACTIONS(2384), - [aux_sym_float_token2] = ACTIONS(2386), - [anon_sym_true] = ACTIONS(2384), - [anon_sym_false] = ACTIONS(2384), - [aux_sym_string_token1] = ACTIONS(2386), - [aux_sym_string_token3] = ACTIONS(2386), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2930), + [anon_sym_POUND] = ACTIONS(2932), + [anon_sym_package] = ACTIONS(2930), + [anon_sym_import] = ACTIONS(2930), + [anon_sym_STAR] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2930), + [anon_sym_throw] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2930), + [anon_sym_default] = ACTIONS(2930), + [anon_sym_cast] = ACTIONS(2930), + [anon_sym_DOLLARtype] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_untyped] = ACTIONS(2930), + [anon_sym_break] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_this] = ACTIONS(2930), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_AT_COLON] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_catch] = ACTIONS(2930), + [anon_sym_else] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [anon_sym_do] = ACTIONS(2930), + [anon_sym_new] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PERCENT] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_GT_GT_GT] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2930), + [anon_sym_CARET] = ACTIONS(2932), + [anon_sym_AMP_AMP] = ACTIONS(2932), + [anon_sym_PIPE_PIPE] = ACTIONS(2932), + [anon_sym_EQ_EQ] = ACTIONS(2932), + [anon_sym_BANG_EQ] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2932), + [anon_sym_EQ_GT] = ACTIONS(2932), + [anon_sym_QMARK_QMARK] = ACTIONS(2932), + [anon_sym_EQ] = ACTIONS(2930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2930), + [anon_sym_macro] = ACTIONS(2930), + [anon_sym_abstract] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2930), + [anon_sym_public] = ACTIONS(2930), + [anon_sym_private] = ACTIONS(2930), + [anon_sym_extern] = ACTIONS(2930), + [anon_sym_inline] = ACTIONS(2930), + [anon_sym_overload] = ACTIONS(2930), + [anon_sym_override] = ACTIONS(2930), + [anon_sym_final] = ACTIONS(2930), + [anon_sym_class] = ACTIONS(2930), + [anon_sym_interface] = ACTIONS(2930), + [anon_sym_enum] = ACTIONS(2930), + [anon_sym_typedef] = ACTIONS(2930), + [anon_sym_function] = ACTIONS(2930), + [anon_sym_var] = ACTIONS(2930), + [aux_sym_integer_token1] = ACTIONS(2930), + [aux_sym_integer_token2] = ACTIONS(2932), + [aux_sym_float_token1] = ACTIONS(2930), + [aux_sym_float_token2] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2930), + [anon_sym_false] = ACTIONS(2930), + [aux_sym_string_token1] = ACTIONS(2932), + [aux_sym_string_token3] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2932), [sym__closing_brace_unmarker] = ACTIONS(3), }, [486] = { - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(2388), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(2390), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1046), + [sym_identifier] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(2936), + [anon_sym_package] = ACTIONS(2934), + [anon_sym_import] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2934), + [anon_sym_throw] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2934), + [anon_sym_default] = ACTIONS(2934), + [anon_sym_cast] = ACTIONS(2934), + [anon_sym_DOLLARtype] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_untyped] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_this] = ACTIONS(2934), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_AT_COLON] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_catch] = ACTIONS(2934), + [anon_sym_else] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2936), + [anon_sym_PERCENT] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_LT_LT] = ACTIONS(2936), + [anon_sym_GT_GT] = ACTIONS(2934), + [anon_sym_GT_GT_GT] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_EQ_EQ] = ACTIONS(2936), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_LT_EQ] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_GT_EQ] = ACTIONS(2936), + [anon_sym_EQ_GT] = ACTIONS(2936), + [anon_sym_QMARK_QMARK] = ACTIONS(2936), + [anon_sym_EQ] = ACTIONS(2934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_macro] = ACTIONS(2934), + [anon_sym_abstract] = ACTIONS(2934), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2934), + [anon_sym_inline] = ACTIONS(2934), + [anon_sym_overload] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_final] = ACTIONS(2934), + [anon_sym_class] = ACTIONS(2934), + [anon_sym_interface] = ACTIONS(2934), + [anon_sym_enum] = ACTIONS(2934), + [anon_sym_typedef] = ACTIONS(2934), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_var] = ACTIONS(2934), + [aux_sym_integer_token1] = ACTIONS(2934), + [aux_sym_integer_token2] = ACTIONS(2936), + [aux_sym_float_token1] = ACTIONS(2934), + [aux_sym_float_token2] = ACTIONS(2936), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [aux_sym_string_token1] = ACTIONS(2936), + [aux_sym_string_token3] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2936), [sym__closing_brace_unmarker] = ACTIONS(3), }, [487] = { - [sym_identifier] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2394), - [anon_sym_package] = ACTIONS(2392), - [anon_sym_import] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2392), - [anon_sym_throw] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_case] = ACTIONS(2392), - [anon_sym_default] = ACTIONS(2392), - [anon_sym_cast] = ACTIONS(2392), - [anon_sym_DOLLARtype] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_untyped] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_this] = ACTIONS(2392), - [anon_sym_AT] = ACTIONS(2392), - [anon_sym_AT_COLON] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2392), - [anon_sym_catch] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_do] = ACTIONS(2392), - [anon_sym_new] = ACTIONS(2392), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [anon_sym_PERCENT] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2392), - [anon_sym_PLUS] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2394), - [anon_sym_GT_GT] = ACTIONS(2392), - [anon_sym_GT_GT_GT] = ACTIONS(2394), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_CARET] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2394), - [anon_sym_PIPE_PIPE] = ACTIONS(2394), - [anon_sym_EQ_EQ] = ACTIONS(2394), - [anon_sym_BANG_EQ] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_LT_EQ] = ACTIONS(2394), - [anon_sym_GT] = ACTIONS(2392), - [anon_sym_GT_EQ] = ACTIONS(2394), - [anon_sym_EQ_GT] = ACTIONS(2394), - [anon_sym_QMARK_QMARK] = ACTIONS(2394), - [anon_sym_EQ] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2394), - [anon_sym_null] = ACTIONS(2392), - [anon_sym_macro] = ACTIONS(2392), - [anon_sym_abstract] = ACTIONS(2392), - [anon_sym_static] = ACTIONS(2392), - [anon_sym_public] = ACTIONS(2392), - [anon_sym_private] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2392), - [anon_sym_inline] = ACTIONS(2392), - [anon_sym_overload] = ACTIONS(2392), - [anon_sym_override] = ACTIONS(2392), - [anon_sym_final] = ACTIONS(2392), - [anon_sym_class] = ACTIONS(2392), - [anon_sym_interface] = ACTIONS(2392), - [anon_sym_enum] = ACTIONS(2392), - [anon_sym_typedef] = ACTIONS(2392), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_var] = ACTIONS(2392), - [aux_sym_integer_token1] = ACTIONS(2392), - [aux_sym_integer_token2] = ACTIONS(2394), - [aux_sym_float_token1] = ACTIONS(2392), - [aux_sym_float_token2] = ACTIONS(2394), - [anon_sym_true] = ACTIONS(2392), - [anon_sym_false] = ACTIONS(2392), - [aux_sym_string_token1] = ACTIONS(2394), - [aux_sym_string_token3] = ACTIONS(2394), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2938), + [anon_sym_POUND] = ACTIONS(2940), + [anon_sym_package] = ACTIONS(2938), + [anon_sym_import] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2938), + [anon_sym_throw] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2938), + [anon_sym_default] = ACTIONS(2938), + [anon_sym_cast] = ACTIONS(2938), + [anon_sym_DOLLARtype] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_untyped] = ACTIONS(2938), + [anon_sym_break] = ACTIONS(2938), + [anon_sym_continue] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_this] = ACTIONS(2938), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_AT_COLON] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_catch] = ACTIONS(2938), + [anon_sym_else] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2940), + [anon_sym_PERCENT] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_LT_LT] = ACTIONS(2940), + [anon_sym_GT_GT] = ACTIONS(2938), + [anon_sym_GT_GT_GT] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(2938), + [anon_sym_CARET] = ACTIONS(2940), + [anon_sym_AMP_AMP] = ACTIONS(2940), + [anon_sym_PIPE_PIPE] = ACTIONS(2940), + [anon_sym_EQ_EQ] = ACTIONS(2940), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_LT_EQ] = ACTIONS(2940), + [anon_sym_GT] = ACTIONS(2938), + [anon_sym_GT_EQ] = ACTIONS(2940), + [anon_sym_EQ_GT] = ACTIONS(2940), + [anon_sym_QMARK_QMARK] = ACTIONS(2940), + [anon_sym_EQ] = ACTIONS(2938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_macro] = ACTIONS(2938), + [anon_sym_abstract] = ACTIONS(2938), + [anon_sym_static] = ACTIONS(2938), + [anon_sym_public] = ACTIONS(2938), + [anon_sym_private] = ACTIONS(2938), + [anon_sym_extern] = ACTIONS(2938), + [anon_sym_inline] = ACTIONS(2938), + [anon_sym_overload] = ACTIONS(2938), + [anon_sym_override] = ACTIONS(2938), + [anon_sym_final] = ACTIONS(2938), + [anon_sym_class] = ACTIONS(2938), + [anon_sym_interface] = ACTIONS(2938), + [anon_sym_enum] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2938), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_var] = ACTIONS(2938), + [aux_sym_integer_token1] = ACTIONS(2938), + [aux_sym_integer_token2] = ACTIONS(2940), + [aux_sym_float_token1] = ACTIONS(2938), + [aux_sym_float_token2] = ACTIONS(2940), + [anon_sym_true] = ACTIONS(2938), + [anon_sym_false] = ACTIONS(2938), + [aux_sym_string_token1] = ACTIONS(2940), + [aux_sym_string_token3] = ACTIONS(2940), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2940), [sym__closing_brace_unmarker] = ACTIONS(3), }, [488] = { - [sym_identifier] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_package] = ACTIONS(1980), - [anon_sym_import] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1982), - [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_for] = ACTIONS(1980), - [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_try] = ACTIONS(1980), - [anon_sym_catch] = ACTIONS(1980), - [anon_sym_else] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [sym_identifier] = ACTIONS(2942), + [anon_sym_POUND] = ACTIONS(2944), + [anon_sym_package] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_case] = ACTIONS(2942), + [anon_sym_default] = ACTIONS(2942), + [anon_sym_cast] = ACTIONS(2942), + [anon_sym_DOLLARtype] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_untyped] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_this] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2942), + [anon_sym_AT_COLON] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_catch] = ACTIONS(2942), + [anon_sym_else] = ACTIONS(2942), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_LT_LT] = ACTIONS(2944), + [anon_sym_GT_GT] = ACTIONS(2942), + [anon_sym_GT_GT_GT] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_CARET] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT] = ACTIONS(2942), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_EQ_GT] = ACTIONS(2944), + [anon_sym_QMARK_QMARK] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2944), + [anon_sym_null] = ACTIONS(2942), + [anon_sym_macro] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_extern] = ACTIONS(2942), + [anon_sym_inline] = ACTIONS(2942), + [anon_sym_overload] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_final] = ACTIONS(2942), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [aux_sym_integer_token1] = ACTIONS(2942), + [aux_sym_integer_token2] = ACTIONS(2944), + [aux_sym_float_token1] = ACTIONS(2942), + [aux_sym_float_token2] = ACTIONS(2944), + [anon_sym_true] = ACTIONS(2942), + [anon_sym_false] = ACTIONS(2942), + [aux_sym_string_token1] = ACTIONS(2944), + [aux_sym_string_token3] = ACTIONS(2944), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2944), [sym__closing_brace_unmarker] = ACTIONS(3), }, [489] = { - [sym_identifier] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2398), - [anon_sym_package] = ACTIONS(2396), - [anon_sym_import] = ACTIONS(2396), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_using] = ACTIONS(2396), - [anon_sym_throw] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_case] = ACTIONS(2396), - [anon_sym_default] = ACTIONS(2396), - [anon_sym_cast] = ACTIONS(2396), - [anon_sym_DOLLARtype] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2396), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_untyped] = ACTIONS(2396), - [anon_sym_break] = ACTIONS(2396), - [anon_sym_continue] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_this] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2396), - [anon_sym_AT_COLON] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2396), - [anon_sym_catch] = ACTIONS(2396), - [anon_sym_else] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_while] = ACTIONS(2396), - [anon_sym_do] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2396), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_PERCENT] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_GT_GT_GT] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_BANG_EQ] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_LT_EQ] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2398), - [anon_sym_EQ_GT] = ACTIONS(2398), - [anon_sym_QMARK_QMARK] = ACTIONS(2398), - [anon_sym_EQ] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2396), - [anon_sym_macro] = ACTIONS(2396), - [anon_sym_abstract] = ACTIONS(2396), - [anon_sym_static] = ACTIONS(2396), - [anon_sym_public] = ACTIONS(2396), - [anon_sym_private] = ACTIONS(2396), - [anon_sym_extern] = ACTIONS(2396), - [anon_sym_inline] = ACTIONS(2396), - [anon_sym_overload] = ACTIONS(2396), - [anon_sym_override] = ACTIONS(2396), - [anon_sym_final] = ACTIONS(2396), - [anon_sym_class] = ACTIONS(2396), - [anon_sym_interface] = ACTIONS(2396), - [anon_sym_enum] = ACTIONS(2396), - [anon_sym_typedef] = ACTIONS(2396), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_var] = ACTIONS(2396), - [aux_sym_integer_token1] = ACTIONS(2396), - [aux_sym_integer_token2] = ACTIONS(2398), - [aux_sym_float_token1] = ACTIONS(2396), - [aux_sym_float_token2] = ACTIONS(2398), - [anon_sym_true] = ACTIONS(2396), - [anon_sym_false] = ACTIONS(2396), - [aux_sym_string_token1] = ACTIONS(2398), - [aux_sym_string_token3] = ACTIONS(2398), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2946), + [anon_sym_POUND] = ACTIONS(2948), + [anon_sym_package] = ACTIONS(2946), + [anon_sym_import] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2946), + [anon_sym_throw] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_case] = ACTIONS(2946), + [anon_sym_default] = ACTIONS(2946), + [anon_sym_cast] = ACTIONS(2946), + [anon_sym_DOLLARtype] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2946), + [anon_sym_return] = ACTIONS(2946), + [anon_sym_untyped] = ACTIONS(2946), + [anon_sym_break] = ACTIONS(2946), + [anon_sym_continue] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_this] = ACTIONS(2946), + [anon_sym_AT] = ACTIONS(2946), + [anon_sym_AT_COLON] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2946), + [anon_sym_catch] = ACTIONS(2946), + [anon_sym_else] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_while] = ACTIONS(2946), + [anon_sym_do] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2946), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_LT_LT] = ACTIONS(2948), + [anon_sym_GT_GT] = ACTIONS(2946), + [anon_sym_GT_GT_GT] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_CARET] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_LT_EQ] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_EQ] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(2948), + [anon_sym_QMARK_QMARK] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2948), + [anon_sym_null] = ACTIONS(2946), + [anon_sym_macro] = ACTIONS(2946), + [anon_sym_abstract] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_extern] = ACTIONS(2946), + [anon_sym_inline] = ACTIONS(2946), + [anon_sym_overload] = ACTIONS(2946), + [anon_sym_override] = ACTIONS(2946), + [anon_sym_final] = ACTIONS(2946), + [anon_sym_class] = ACTIONS(2946), + [anon_sym_interface] = ACTIONS(2946), + [anon_sym_enum] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2946), + [anon_sym_var] = ACTIONS(2946), + [aux_sym_integer_token1] = ACTIONS(2946), + [aux_sym_integer_token2] = ACTIONS(2948), + [aux_sym_float_token1] = ACTIONS(2946), + [aux_sym_float_token2] = ACTIONS(2948), + [anon_sym_true] = ACTIONS(2946), + [anon_sym_false] = ACTIONS(2946), + [aux_sym_string_token1] = ACTIONS(2948), + [aux_sym_string_token3] = ACTIONS(2948), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2948), [sym__closing_brace_unmarker] = ACTIONS(3), }, [490] = { - [sym_identifier] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2402), - [anon_sym_package] = ACTIONS(2400), - [anon_sym_import] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2400), - [anon_sym_throw] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_case] = ACTIONS(2400), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_cast] = ACTIONS(2400), - [anon_sym_DOLLARtype] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_untyped] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_this] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_AT_COLON] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2400), - [anon_sym_catch] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_do] = ACTIONS(2400), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(2402), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_EQ_EQ] = ACTIONS(2402), - [anon_sym_BANG_EQ] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_LT_EQ] = ACTIONS(2402), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_GT_EQ] = ACTIONS(2402), - [anon_sym_EQ_GT] = ACTIONS(2402), - [anon_sym_QMARK_QMARK] = ACTIONS(2402), - [anon_sym_EQ] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2402), - [anon_sym_null] = ACTIONS(2400), - [anon_sym_macro] = ACTIONS(2400), - [anon_sym_abstract] = ACTIONS(2400), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_inline] = ACTIONS(2400), - [anon_sym_overload] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_final] = ACTIONS(2400), - [anon_sym_class] = ACTIONS(2400), - [anon_sym_interface] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_typedef] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2400), - [anon_sym_var] = ACTIONS(2400), - [aux_sym_integer_token1] = ACTIONS(2400), - [aux_sym_integer_token2] = ACTIONS(2402), - [aux_sym_float_token1] = ACTIONS(2400), - [aux_sym_float_token2] = ACTIONS(2402), - [anon_sym_true] = ACTIONS(2400), - [anon_sym_false] = ACTIONS(2400), - [aux_sym_string_token1] = ACTIONS(2402), - [aux_sym_string_token3] = ACTIONS(2402), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(2952), + [anon_sym_package] = ACTIONS(2950), + [anon_sym_import] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_using] = ACTIONS(2950), + [anon_sym_throw] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2950), + [anon_sym_default] = ACTIONS(2950), + [anon_sym_cast] = ACTIONS(2950), + [anon_sym_DOLLARtype] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2950), + [anon_sym_untyped] = ACTIONS(2950), + [anon_sym_break] = ACTIONS(2950), + [anon_sym_continue] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_this] = ACTIONS(2950), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_AT_COLON] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2950), + [anon_sym_catch] = ACTIONS(2950), + [anon_sym_else] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_while] = ACTIONS(2950), + [anon_sym_do] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_PERCENT] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2950), + [anon_sym_PLUS] = ACTIONS(2950), + [anon_sym_LT_LT] = ACTIONS(2952), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_GT_GT_GT] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_CARET] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_EQ_GT] = ACTIONS(2952), + [anon_sym_QMARK_QMARK] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2952), + [anon_sym_null] = ACTIONS(2950), + [anon_sym_macro] = ACTIONS(2950), + [anon_sym_abstract] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_public] = ACTIONS(2950), + [anon_sym_private] = ACTIONS(2950), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_overload] = ACTIONS(2950), + [anon_sym_override] = ACTIONS(2950), + [anon_sym_final] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_interface] = ACTIONS(2950), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2950), + [anon_sym_var] = ACTIONS(2950), + [aux_sym_integer_token1] = ACTIONS(2950), + [aux_sym_integer_token2] = ACTIONS(2952), + [aux_sym_float_token1] = ACTIONS(2950), + [aux_sym_float_token2] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2950), + [anon_sym_false] = ACTIONS(2950), + [aux_sym_string_token1] = ACTIONS(2952), + [aux_sym_string_token3] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2952), [sym__closing_brace_unmarker] = ACTIONS(3), }, [491] = { - [sym_identifier] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_package] = ACTIONS(2404), - [anon_sym_import] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_using] = ACTIONS(2404), - [anon_sym_throw] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_switch] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_case] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2404), - [anon_sym_cast] = ACTIONS(2404), - [anon_sym_DOLLARtype] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_untyped] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2406), - [anon_sym_this] = ACTIONS(2404), - [anon_sym_AT] = ACTIONS(2404), - [anon_sym_AT_COLON] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2406), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_GT_GT_GT] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_EQ_GT] = ACTIONS(2406), - [anon_sym_QMARK_QMARK] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2406), - [anon_sym_null] = ACTIONS(2404), - [anon_sym_macro] = ACTIONS(2404), - [anon_sym_abstract] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_public] = ACTIONS(2404), - [anon_sym_private] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym_inline] = ACTIONS(2404), - [anon_sym_overload] = ACTIONS(2404), - [anon_sym_override] = ACTIONS(2404), - [anon_sym_final] = ACTIONS(2404), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_interface] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_typedef] = ACTIONS(2404), - [anon_sym_function] = ACTIONS(2404), - [anon_sym_var] = ACTIONS(2404), - [aux_sym_integer_token1] = ACTIONS(2404), - [aux_sym_integer_token2] = ACTIONS(2406), - [aux_sym_float_token1] = ACTIONS(2404), - [aux_sym_float_token2] = ACTIONS(2406), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [aux_sym_string_token1] = ACTIONS(2406), - [aux_sym_string_token3] = ACTIONS(2406), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_package] = ACTIONS(2954), + [anon_sym_import] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_using] = ACTIONS(2954), + [anon_sym_throw] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2954), + [anon_sym_default] = ACTIONS(2954), + [anon_sym_cast] = ACTIONS(2954), + [anon_sym_DOLLARtype] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2954), + [anon_sym_untyped] = ACTIONS(2954), + [anon_sym_break] = ACTIONS(2954), + [anon_sym_continue] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_this] = ACTIONS(2954), + [anon_sym_AT] = ACTIONS(2954), + [anon_sym_AT_COLON] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2954), + [anon_sym_catch] = ACTIONS(2954), + [anon_sym_else] = ACTIONS(2954), + [anon_sym_if] = ACTIONS(2954), + [anon_sym_while] = ACTIONS(2954), + [anon_sym_do] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2954), + [anon_sym_GT_GT_GT] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_EQ_EQ] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_LT_EQ] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2954), + [anon_sym_GT_EQ] = ACTIONS(2956), + [anon_sym_EQ_GT] = ACTIONS(2956), + [anon_sym_QMARK_QMARK] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2954), + [anon_sym_macro] = ACTIONS(2954), + [anon_sym_abstract] = ACTIONS(2954), + [anon_sym_static] = ACTIONS(2954), + [anon_sym_public] = ACTIONS(2954), + [anon_sym_private] = ACTIONS(2954), + [anon_sym_extern] = ACTIONS(2954), + [anon_sym_inline] = ACTIONS(2954), + [anon_sym_overload] = ACTIONS(2954), + [anon_sym_override] = ACTIONS(2954), + [anon_sym_final] = ACTIONS(2954), + [anon_sym_class] = ACTIONS(2954), + [anon_sym_interface] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2954), + [anon_sym_typedef] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2954), + [anon_sym_var] = ACTIONS(2954), + [aux_sym_integer_token1] = ACTIONS(2954), + [aux_sym_integer_token2] = ACTIONS(2956), + [aux_sym_float_token1] = ACTIONS(2954), + [aux_sym_float_token2] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2954), + [anon_sym_false] = ACTIONS(2954), + [aux_sym_string_token1] = ACTIONS(2956), + [aux_sym_string_token3] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2956), [sym__closing_brace_unmarker] = ACTIONS(3), }, [492] = { - [sym_identifier] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_package] = ACTIONS(1986), - [anon_sym_import] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1986), - [anon_sym_throw] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_cast] = ACTIONS(1986), - [anon_sym_DOLLARtype] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_untyped] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_AT_COLON] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1986), - [anon_sym_catch] = ACTIONS(1986), - [anon_sym_else] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_LT_LT] = ACTIONS(1988), - [anon_sym_GT_GT] = ACTIONS(1986), - [anon_sym_GT_GT_GT] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_CARET] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1988), - [anon_sym_PIPE_PIPE] = ACTIONS(1988), - [anon_sym_EQ_EQ] = ACTIONS(1988), - [anon_sym_BANG_EQ] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_LT_EQ] = ACTIONS(1988), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_EQ] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(1988), - [anon_sym_QMARK_QMARK] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(1986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1988), - [anon_sym_null] = ACTIONS(1986), - [anon_sym_macro] = ACTIONS(1986), - [anon_sym_abstract] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_public] = ACTIONS(1986), - [anon_sym_private] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), - [anon_sym_overload] = ACTIONS(1986), - [anon_sym_override] = ACTIONS(1986), - [anon_sym_final] = ACTIONS(1986), - [anon_sym_class] = ACTIONS(1986), - [anon_sym_interface] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_function] = ACTIONS(1986), - [anon_sym_var] = ACTIONS(1986), - [aux_sym_integer_token1] = ACTIONS(1986), - [aux_sym_integer_token2] = ACTIONS(1988), - [aux_sym_float_token1] = ACTIONS(1986), - [aux_sym_float_token2] = ACTIONS(1988), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [aux_sym_string_token1] = ACTIONS(1988), - [aux_sym_string_token3] = ACTIONS(1988), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1988), + [sym_identifier] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2960), + [anon_sym_package] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_using] = ACTIONS(2958), + [anon_sym_throw] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym_switch] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_case] = ACTIONS(2958), + [anon_sym_default] = ACTIONS(2958), + [anon_sym_cast] = ACTIONS(2958), + [anon_sym_DOLLARtype] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2958), + [anon_sym_return] = ACTIONS(2958), + [anon_sym_untyped] = ACTIONS(2958), + [anon_sym_break] = ACTIONS(2958), + [anon_sym_continue] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_this] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_AT_COLON] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2958), + [anon_sym_catch] = ACTIONS(2958), + [anon_sym_else] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_while] = ACTIONS(2958), + [anon_sym_do] = ACTIONS(2958), + [anon_sym_new] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2958), + [anon_sym_PLUS] = ACTIONS(2958), + [anon_sym_LT_LT] = ACTIONS(2960), + [anon_sym_GT_GT] = ACTIONS(2958), + [anon_sym_GT_GT_GT] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_PIPE_PIPE] = ACTIONS(2960), + [anon_sym_EQ_EQ] = ACTIONS(2960), + [anon_sym_BANG_EQ] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_LT_EQ] = ACTIONS(2960), + [anon_sym_GT] = ACTIONS(2958), + [anon_sym_GT_EQ] = ACTIONS(2960), + [anon_sym_EQ_GT] = ACTIONS(2960), + [anon_sym_QMARK_QMARK] = ACTIONS(2960), + [anon_sym_EQ] = ACTIONS(2958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2958), + [anon_sym_macro] = ACTIONS(2958), + [anon_sym_abstract] = ACTIONS(2958), + [anon_sym_static] = ACTIONS(2958), + [anon_sym_public] = ACTIONS(2958), + [anon_sym_private] = ACTIONS(2958), + [anon_sym_extern] = ACTIONS(2958), + [anon_sym_inline] = ACTIONS(2958), + [anon_sym_overload] = ACTIONS(2958), + [anon_sym_override] = ACTIONS(2958), + [anon_sym_final] = ACTIONS(2958), + [anon_sym_class] = ACTIONS(2958), + [anon_sym_interface] = ACTIONS(2958), + [anon_sym_enum] = ACTIONS(2958), + [anon_sym_typedef] = ACTIONS(2958), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_var] = ACTIONS(2958), + [aux_sym_integer_token1] = ACTIONS(2958), + [aux_sym_integer_token2] = ACTIONS(2960), + [aux_sym_float_token1] = ACTIONS(2958), + [aux_sym_float_token2] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2958), + [anon_sym_false] = ACTIONS(2958), + [aux_sym_string_token1] = ACTIONS(2960), + [aux_sym_string_token3] = ACTIONS(2960), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2960), [sym__closing_brace_unmarker] = ACTIONS(3), }, [493] = { - [sym_identifier] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_package] = ACTIONS(2408), - [anon_sym_import] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_using] = ACTIONS(2408), - [anon_sym_throw] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_case] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_cast] = ACTIONS(2408), - [anon_sym_DOLLARtype] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_untyped] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_this] = ACTIONS(2408), - [anon_sym_AT] = ACTIONS(2408), - [anon_sym_AT_COLON] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2408), - [anon_sym_catch] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_new] = ACTIONS(2408), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_LT_LT] = ACTIONS(2410), - [anon_sym_GT_GT] = ACTIONS(2408), - [anon_sym_GT_GT_GT] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_AMP_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2410), - [anon_sym_EQ_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_LT_EQ] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2410), - [anon_sym_EQ_GT] = ACTIONS(2410), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2410), - [anon_sym_null] = ACTIONS(2408), - [anon_sym_macro] = ACTIONS(2408), - [anon_sym_abstract] = ACTIONS(2408), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_public] = ACTIONS(2408), - [anon_sym_private] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_inline] = ACTIONS(2408), - [anon_sym_overload] = ACTIONS(2408), - [anon_sym_override] = ACTIONS(2408), - [anon_sym_final] = ACTIONS(2408), - [anon_sym_class] = ACTIONS(2408), - [anon_sym_interface] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_typedef] = ACTIONS(2408), - [anon_sym_function] = ACTIONS(2408), - [anon_sym_var] = ACTIONS(2408), - [aux_sym_integer_token1] = ACTIONS(2408), - [aux_sym_integer_token2] = ACTIONS(2410), - [aux_sym_float_token1] = ACTIONS(2408), - [aux_sym_float_token2] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2408), - [anon_sym_false] = ACTIONS(2408), - [aux_sym_string_token1] = ACTIONS(2410), - [aux_sym_string_token3] = ACTIONS(2410), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(2964), + [anon_sym_package] = ACTIONS(2962), + [anon_sym_import] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_using] = ACTIONS(2962), + [anon_sym_throw] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_case] = ACTIONS(2962), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_cast] = ACTIONS(2962), + [anon_sym_DOLLARtype] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_untyped] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_this] = ACTIONS(2962), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_AT_COLON] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_catch] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_LT_LT] = ACTIONS(2964), + [anon_sym_GT_GT] = ACTIONS(2962), + [anon_sym_GT_GT_GT] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2962), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_EQ_GT] = ACTIONS(2964), + [anon_sym_QMARK_QMARK] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_macro] = ACTIONS(2962), + [anon_sym_abstract] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_public] = ACTIONS(2962), + [anon_sym_private] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_overload] = ACTIONS(2962), + [anon_sym_override] = ACTIONS(2962), + [anon_sym_final] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_interface] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_var] = ACTIONS(2962), + [aux_sym_integer_token1] = ACTIONS(2962), + [aux_sym_integer_token2] = ACTIONS(2964), + [aux_sym_float_token1] = ACTIONS(2962), + [aux_sym_float_token2] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2962), + [anon_sym_false] = ACTIONS(2962), + [aux_sym_string_token1] = ACTIONS(2964), + [aux_sym_string_token3] = ACTIONS(2964), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2964), [sym__closing_brace_unmarker] = ACTIONS(3), }, [494] = { - [sym_identifier] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(2414), - [anon_sym_package] = ACTIONS(2412), - [anon_sym_import] = ACTIONS(2412), - [anon_sym_STAR] = ACTIONS(2414), - [anon_sym_using] = ACTIONS(2412), - [anon_sym_throw] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_switch] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2414), - [anon_sym_case] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_cast] = ACTIONS(2412), - [anon_sym_DOLLARtype] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_untyped] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_this] = ACTIONS(2412), - [anon_sym_AT] = ACTIONS(2412), - [anon_sym_AT_COLON] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2412), - [anon_sym_catch] = ACTIONS(2412), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_do] = ACTIONS(2412), - [anon_sym_new] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_PLUS_PLUS] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2414), - [anon_sym_PERCENT] = ACTIONS(2414), - [anon_sym_SLASH] = ACTIONS(2412), - [anon_sym_PLUS] = ACTIONS(2412), - [anon_sym_LT_LT] = ACTIONS(2414), - [anon_sym_GT_GT] = ACTIONS(2412), - [anon_sym_GT_GT_GT] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_CARET] = ACTIONS(2414), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE_PIPE] = ACTIONS(2414), - [anon_sym_EQ_EQ] = ACTIONS(2414), - [anon_sym_BANG_EQ] = ACTIONS(2414), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_LT_EQ] = ACTIONS(2414), - [anon_sym_GT] = ACTIONS(2412), - [anon_sym_GT_EQ] = ACTIONS(2414), - [anon_sym_EQ_GT] = ACTIONS(2414), - [anon_sym_QMARK_QMARK] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2414), - [anon_sym_null] = ACTIONS(2412), - [anon_sym_macro] = ACTIONS(2412), - [anon_sym_abstract] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_public] = ACTIONS(2412), - [anon_sym_private] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_inline] = ACTIONS(2412), - [anon_sym_overload] = ACTIONS(2412), - [anon_sym_override] = ACTIONS(2412), - [anon_sym_final] = ACTIONS(2412), - [anon_sym_class] = ACTIONS(2412), - [anon_sym_interface] = ACTIONS(2412), - [anon_sym_enum] = ACTIONS(2412), - [anon_sym_typedef] = ACTIONS(2412), - [anon_sym_function] = ACTIONS(2412), - [anon_sym_var] = ACTIONS(2412), - [aux_sym_integer_token1] = ACTIONS(2412), - [aux_sym_integer_token2] = ACTIONS(2414), - [aux_sym_float_token1] = ACTIONS(2412), - [aux_sym_float_token2] = ACTIONS(2414), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [aux_sym_string_token1] = ACTIONS(2414), - [aux_sym_string_token3] = ACTIONS(2414), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2966), + [anon_sym_POUND] = ACTIONS(2968), + [anon_sym_package] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_case] = ACTIONS(2966), + [anon_sym_default] = ACTIONS(2966), + [anon_sym_cast] = ACTIONS(2966), + [anon_sym_DOLLARtype] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_untyped] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym_this] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_AT_COLON] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_catch] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PERCENT] = ACTIONS(2968), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2968), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_GT_GT_GT] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_AMP_AMP] = ACTIONS(2968), + [anon_sym_PIPE_PIPE] = ACTIONS(2968), + [anon_sym_EQ_EQ] = ACTIONS(2968), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2968), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2968), + [anon_sym_EQ_GT] = ACTIONS(2968), + [anon_sym_QMARK_QMARK] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_macro] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_overload] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_final] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_typedef] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [aux_sym_integer_token1] = ACTIONS(2966), + [aux_sym_integer_token2] = ACTIONS(2968), + [aux_sym_float_token1] = ACTIONS(2966), + [aux_sym_float_token2] = ACTIONS(2968), + [anon_sym_true] = ACTIONS(2966), + [anon_sym_false] = ACTIONS(2966), + [aux_sym_string_token1] = ACTIONS(2968), + [aux_sym_string_token3] = ACTIONS(2968), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2968), [sym__closing_brace_unmarker] = ACTIONS(3), }, [495] = { - [sym_identifier] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(2418), - [anon_sym_package] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_case] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_cast] = ACTIONS(2416), - [anon_sym_DOLLARtype] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_untyped] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_this] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_AT_COLON] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_catch] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2418), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2416), - [anon_sym_GT_GT_GT] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_LT_EQ] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2416), - [anon_sym_GT_EQ] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(2418), - [anon_sym_QMARK_QMARK] = ACTIONS(2418), - [anon_sym_EQ] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2416), - [anon_sym_macro] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_inline] = ACTIONS(2416), - [anon_sym_overload] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_final] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [anon_sym_typedef] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [aux_sym_integer_token1] = ACTIONS(2416), - [aux_sym_integer_token2] = ACTIONS(2418), - [aux_sym_float_token1] = ACTIONS(2416), - [aux_sym_float_token2] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [aux_sym_string_token1] = ACTIONS(2418), - [aux_sym_string_token3] = ACTIONS(2418), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2972), + [anon_sym_package] = ACTIONS(2970), + [anon_sym_import] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_using] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_switch] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2970), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_cast] = ACTIONS(2970), + [anon_sym_DOLLARtype] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_untyped] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_this] = ACTIONS(2970), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_AT_COLON] = ACTIONS(2972), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_catch] = ACTIONS(2970), + [anon_sym_else] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PERCENT] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_LT_LT] = ACTIONS(2972), + [anon_sym_GT_GT] = ACTIONS(2970), + [anon_sym_GT_GT_GT] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(2972), + [anon_sym_PIPE_PIPE] = ACTIONS(2972), + [anon_sym_EQ_EQ] = ACTIONS(2972), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_LT_EQ] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2970), + [anon_sym_GT_EQ] = ACTIONS(2972), + [anon_sym_EQ_GT] = ACTIONS(2972), + [anon_sym_QMARK_QMARK] = ACTIONS(2972), + [anon_sym_EQ] = ACTIONS(2970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_macro] = ACTIONS(2970), + [anon_sym_abstract] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_public] = ACTIONS(2970), + [anon_sym_private] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym_overload] = ACTIONS(2970), + [anon_sym_override] = ACTIONS(2970), + [anon_sym_final] = ACTIONS(2970), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_interface] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_typedef] = ACTIONS(2970), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_var] = ACTIONS(2970), + [aux_sym_integer_token1] = ACTIONS(2970), + [aux_sym_integer_token2] = ACTIONS(2972), + [aux_sym_float_token1] = ACTIONS(2970), + [aux_sym_float_token2] = ACTIONS(2972), + [anon_sym_true] = ACTIONS(2970), + [anon_sym_false] = ACTIONS(2970), + [aux_sym_string_token1] = ACTIONS(2972), + [aux_sym_string_token3] = ACTIONS(2972), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2972), [sym__closing_brace_unmarker] = ACTIONS(3), }, [496] = { - [sym_identifier] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(2422), - [anon_sym_package] = ACTIONS(2420), - [anon_sym_import] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_using] = ACTIONS(2420), - [anon_sym_throw] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_switch] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_case] = ACTIONS(2420), - [anon_sym_default] = ACTIONS(2420), - [anon_sym_cast] = ACTIONS(2420), - [anon_sym_DOLLARtype] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_untyped] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2422), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_AT] = ACTIONS(2420), - [anon_sym_AT_COLON] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2420), - [anon_sym_catch] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_TILDE] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2422), - [anon_sym_DASH_DASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2422), - [anon_sym_GT_GT] = ACTIONS(2420), - [anon_sym_GT_GT_GT] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2420), - [anon_sym_CARET] = ACTIONS(2422), - [anon_sym_AMP_AMP] = ACTIONS(2422), - [anon_sym_PIPE_PIPE] = ACTIONS(2422), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2422), - [anon_sym_EQ_GT] = ACTIONS(2422), - [anon_sym_QMARK_QMARK] = ACTIONS(2422), - [anon_sym_EQ] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2420), - [anon_sym_macro] = ACTIONS(2420), - [anon_sym_abstract] = ACTIONS(2420), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_public] = ACTIONS(2420), - [anon_sym_private] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_inline] = ACTIONS(2420), - [anon_sym_overload] = ACTIONS(2420), - [anon_sym_override] = ACTIONS(2420), - [anon_sym_final] = ACTIONS(2420), - [anon_sym_class] = ACTIONS(2420), - [anon_sym_interface] = ACTIONS(2420), - [anon_sym_enum] = ACTIONS(2420), - [anon_sym_typedef] = ACTIONS(2420), - [anon_sym_function] = ACTIONS(2420), - [anon_sym_var] = ACTIONS(2420), - [aux_sym_integer_token1] = ACTIONS(2420), - [aux_sym_integer_token2] = ACTIONS(2422), - [aux_sym_float_token1] = ACTIONS(2420), - [aux_sym_float_token2] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [aux_sym_string_token1] = ACTIONS(2422), - [aux_sym_string_token3] = ACTIONS(2422), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2974), + [anon_sym_POUND] = ACTIONS(2976), + [anon_sym_package] = ACTIONS(2974), + [anon_sym_import] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2976), + [anon_sym_using] = ACTIONS(2974), + [anon_sym_throw] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_case] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2974), + [anon_sym_cast] = ACTIONS(2974), + [anon_sym_DOLLARtype] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_untyped] = ACTIONS(2974), + [anon_sym_break] = ACTIONS(2974), + [anon_sym_continue] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_this] = ACTIONS(2974), + [anon_sym_AT] = ACTIONS(2974), + [anon_sym_AT_COLON] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_catch] = ACTIONS(2974), + [anon_sym_else] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2976), + [anon_sym_PERCENT] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_LT_LT] = ACTIONS(2976), + [anon_sym_GT_GT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_CARET] = ACTIONS(2976), + [anon_sym_AMP_AMP] = ACTIONS(2976), + [anon_sym_PIPE_PIPE] = ACTIONS(2976), + [anon_sym_EQ_EQ] = ACTIONS(2976), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2976), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2976), + [anon_sym_QMARK_QMARK] = ACTIONS(2976), + [anon_sym_EQ] = ACTIONS(2974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_macro] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2974), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_public] = ACTIONS(2974), + [anon_sym_private] = ACTIONS(2974), + [anon_sym_extern] = ACTIONS(2974), + [anon_sym_inline] = ACTIONS(2974), + [anon_sym_overload] = ACTIONS(2974), + [anon_sym_override] = ACTIONS(2974), + [anon_sym_final] = ACTIONS(2974), + [anon_sym_class] = ACTIONS(2974), + [anon_sym_interface] = ACTIONS(2974), + [anon_sym_enum] = ACTIONS(2974), + [anon_sym_typedef] = ACTIONS(2974), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_var] = ACTIONS(2974), + [aux_sym_integer_token1] = ACTIONS(2974), + [aux_sym_integer_token2] = ACTIONS(2976), + [aux_sym_float_token1] = ACTIONS(2974), + [aux_sym_float_token2] = ACTIONS(2976), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [aux_sym_string_token1] = ACTIONS(2976), + [aux_sym_string_token3] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2976), [sym__closing_brace_unmarker] = ACTIONS(3), }, [497] = { - [sym_identifier] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_package] = ACTIONS(2424), - [anon_sym_import] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_using] = ACTIONS(2424), - [anon_sym_throw] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_switch] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_case] = ACTIONS(2424), - [anon_sym_default] = ACTIONS(2424), - [anon_sym_cast] = ACTIONS(2424), - [anon_sym_DOLLARtype] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_untyped] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_this] = ACTIONS(2424), - [anon_sym_AT] = ACTIONS(2424), - [anon_sym_AT_COLON] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2424), - [anon_sym_catch] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_do] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2426), - [anon_sym_DASH_DASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2424), - [anon_sym_PLUS] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2424), - [anon_sym_GT_GT_GT] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_CARET] = ACTIONS(2426), - [anon_sym_AMP_AMP] = ACTIONS(2426), - [anon_sym_PIPE_PIPE] = ACTIONS(2426), - [anon_sym_EQ_EQ] = ACTIONS(2426), - [anon_sym_BANG_EQ] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_LT_EQ] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2426), - [anon_sym_EQ_GT] = ACTIONS(2426), - [anon_sym_QMARK_QMARK] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2426), - [anon_sym_null] = ACTIONS(2424), - [anon_sym_macro] = ACTIONS(2424), - [anon_sym_abstract] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_inline] = ACTIONS(2424), - [anon_sym_overload] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_final] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2424), - [anon_sym_interface] = ACTIONS(2424), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_typedef] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2424), - [anon_sym_var] = ACTIONS(2424), - [aux_sym_integer_token1] = ACTIONS(2424), - [aux_sym_integer_token2] = ACTIONS(2426), - [aux_sym_float_token1] = ACTIONS(2424), - [aux_sym_float_token2] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [aux_sym_string_token1] = ACTIONS(2426), - [aux_sym_string_token3] = ACTIONS(2426), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_package] = ACTIONS(2978), + [anon_sym_import] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_using] = ACTIONS(2978), + [anon_sym_throw] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2978), + [anon_sym_default] = ACTIONS(2978), + [anon_sym_cast] = ACTIONS(2978), + [anon_sym_DOLLARtype] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_untyped] = ACTIONS(2978), + [anon_sym_break] = ACTIONS(2978), + [anon_sym_continue] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_this] = ACTIONS(2978), + [anon_sym_AT] = ACTIONS(2978), + [anon_sym_AT_COLON] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_catch] = ACTIONS(2978), + [anon_sym_else] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [anon_sym_PERCENT] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_LT_LT] = ACTIONS(2980), + [anon_sym_GT_GT] = ACTIONS(2978), + [anon_sym_GT_GT_GT] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_CARET] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT] = ACTIONS(2978), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(2980), + [anon_sym_QMARK_QMARK] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_macro] = ACTIONS(2978), + [anon_sym_abstract] = ACTIONS(2978), + [anon_sym_static] = ACTIONS(2978), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_extern] = ACTIONS(2978), + [anon_sym_inline] = ACTIONS(2978), + [anon_sym_overload] = ACTIONS(2978), + [anon_sym_override] = ACTIONS(2978), + [anon_sym_final] = ACTIONS(2978), + [anon_sym_class] = ACTIONS(2978), + [anon_sym_interface] = ACTIONS(2978), + [anon_sym_enum] = ACTIONS(2978), + [anon_sym_typedef] = ACTIONS(2978), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_var] = ACTIONS(2978), + [aux_sym_integer_token1] = ACTIONS(2978), + [aux_sym_integer_token2] = ACTIONS(2980), + [aux_sym_float_token1] = ACTIONS(2978), + [aux_sym_float_token2] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2978), + [anon_sym_false] = ACTIONS(2978), + [aux_sym_string_token1] = ACTIONS(2980), + [aux_sym_string_token3] = ACTIONS(2980), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2980), [sym__closing_brace_unmarker] = ACTIONS(3), }, [498] = { - [sym_identifier] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2428), - [anon_sym_import] = ACTIONS(2428), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_using] = ACTIONS(2428), - [anon_sym_throw] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_switch] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2430), - [anon_sym_case] = ACTIONS(2428), - [anon_sym_default] = ACTIONS(2428), - [anon_sym_cast] = ACTIONS(2428), - [anon_sym_DOLLARtype] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_untyped] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2428), - [anon_sym_AT] = ACTIONS(2428), - [anon_sym_AT_COLON] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2428), - [anon_sym_catch] = ACTIONS(2428), - [anon_sym_else] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_do] = ACTIONS(2428), - [anon_sym_new] = ACTIONS(2428), - [anon_sym_TILDE] = ACTIONS(2430), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_PLUS_PLUS] = ACTIONS(2430), - [anon_sym_DASH_DASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2428), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(2430), - [anon_sym_GT_GT] = ACTIONS(2428), - [anon_sym_GT_GT_GT] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_CARET] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_LT_EQ] = ACTIONS(2430), - [anon_sym_GT] = ACTIONS(2428), - [anon_sym_GT_EQ] = ACTIONS(2430), - [anon_sym_EQ_GT] = ACTIONS(2430), - [anon_sym_QMARK_QMARK] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2428), - [anon_sym_macro] = ACTIONS(2428), - [anon_sym_abstract] = ACTIONS(2428), - [anon_sym_static] = ACTIONS(2428), - [anon_sym_public] = ACTIONS(2428), - [anon_sym_private] = ACTIONS(2428), - [anon_sym_extern] = ACTIONS(2428), - [anon_sym_inline] = ACTIONS(2428), - [anon_sym_overload] = ACTIONS(2428), - [anon_sym_override] = ACTIONS(2428), - [anon_sym_final] = ACTIONS(2428), - [anon_sym_class] = ACTIONS(2428), - [anon_sym_interface] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2428), - [anon_sym_typedef] = ACTIONS(2428), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_var] = ACTIONS(2428), - [aux_sym_integer_token1] = ACTIONS(2428), - [aux_sym_integer_token2] = ACTIONS(2430), - [aux_sym_float_token1] = ACTIONS(2428), - [aux_sym_float_token2] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2428), - [anon_sym_false] = ACTIONS(2428), - [aux_sym_string_token1] = ACTIONS(2430), - [aux_sym_string_token3] = ACTIONS(2430), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2982), + [anon_sym_POUND] = ACTIONS(2984), + [anon_sym_package] = ACTIONS(2982), + [anon_sym_import] = ACTIONS(2982), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_using] = ACTIONS(2982), + [anon_sym_throw] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_case] = ACTIONS(2982), + [anon_sym_default] = ACTIONS(2982), + [anon_sym_cast] = ACTIONS(2982), + [anon_sym_DOLLARtype] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_untyped] = ACTIONS(2982), + [anon_sym_break] = ACTIONS(2982), + [anon_sym_continue] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_this] = ACTIONS(2982), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_AT_COLON] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_catch] = ACTIONS(2982), + [anon_sym_else] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_LT_LT] = ACTIONS(2984), + [anon_sym_GT_GT] = ACTIONS(2982), + [anon_sym_GT_GT_GT] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP_AMP] = ACTIONS(2984), + [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2984), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_EQ] = ACTIONS(2984), + [anon_sym_EQ_GT] = ACTIONS(2984), + [anon_sym_QMARK_QMARK] = ACTIONS(2984), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_macro] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2982), + [anon_sym_static] = ACTIONS(2982), + [anon_sym_public] = ACTIONS(2982), + [anon_sym_private] = ACTIONS(2982), + [anon_sym_extern] = ACTIONS(2982), + [anon_sym_inline] = ACTIONS(2982), + [anon_sym_overload] = ACTIONS(2982), + [anon_sym_override] = ACTIONS(2982), + [anon_sym_final] = ACTIONS(2982), + [anon_sym_class] = ACTIONS(2982), + [anon_sym_interface] = ACTIONS(2982), + [anon_sym_enum] = ACTIONS(2982), + [anon_sym_typedef] = ACTIONS(2982), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_var] = ACTIONS(2982), + [aux_sym_integer_token1] = ACTIONS(2982), + [aux_sym_integer_token2] = ACTIONS(2984), + [aux_sym_float_token1] = ACTIONS(2982), + [aux_sym_float_token2] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2982), + [anon_sym_false] = ACTIONS(2982), + [aux_sym_string_token1] = ACTIONS(2984), + [aux_sym_string_token3] = ACTIONS(2984), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2984), [sym__closing_brace_unmarker] = ACTIONS(3), }, [499] = { - [sym_identifier] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(2434), - [anon_sym_package] = ACTIONS(2432), - [anon_sym_import] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_using] = ACTIONS(2432), - [anon_sym_throw] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_switch] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_cast] = ACTIONS(2432), - [anon_sym_DOLLARtype] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_untyped] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_this] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(2432), - [anon_sym_AT_COLON] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2432), - [anon_sym_catch] = ACTIONS(2432), - [anon_sym_else] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_do] = ACTIONS(2432), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [anon_sym_PERCENT] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2432), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2434), - [anon_sym_GT_GT] = ACTIONS(2432), - [anon_sym_GT_GT_GT] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2432), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2434), - [anon_sym_EQ_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_LT_EQ] = ACTIONS(2434), - [anon_sym_GT] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2434), - [anon_sym_EQ_GT] = ACTIONS(2434), - [anon_sym_QMARK_QMARK] = ACTIONS(2434), - [anon_sym_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_macro] = ACTIONS(2432), - [anon_sym_abstract] = ACTIONS(2432), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_inline] = ACTIONS(2432), - [anon_sym_overload] = ACTIONS(2432), - [anon_sym_override] = ACTIONS(2432), - [anon_sym_final] = ACTIONS(2432), - [anon_sym_class] = ACTIONS(2432), - [anon_sym_interface] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_typedef] = ACTIONS(2432), - [anon_sym_function] = ACTIONS(2432), - [anon_sym_var] = ACTIONS(2432), - [aux_sym_integer_token1] = ACTIONS(2432), - [aux_sym_integer_token2] = ACTIONS(2434), - [aux_sym_float_token1] = ACTIONS(2432), - [aux_sym_float_token2] = ACTIONS(2434), - [anon_sym_true] = ACTIONS(2432), - [anon_sym_false] = ACTIONS(2432), - [aux_sym_string_token1] = ACTIONS(2434), - [aux_sym_string_token3] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2986), + [anon_sym_POUND] = ACTIONS(2988), + [anon_sym_package] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_using] = ACTIONS(2986), + [anon_sym_throw] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2986), + [anon_sym_default] = ACTIONS(2986), + [anon_sym_cast] = ACTIONS(2986), + [anon_sym_DOLLARtype] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2986), + [anon_sym_return] = ACTIONS(2986), + [anon_sym_untyped] = ACTIONS(2986), + [anon_sym_break] = ACTIONS(2986), + [anon_sym_continue] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2986), + [anon_sym_AT] = ACTIONS(2986), + [anon_sym_AT_COLON] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2986), + [anon_sym_catch] = ACTIONS(2986), + [anon_sym_else] = ACTIONS(2986), + [anon_sym_if] = ACTIONS(2986), + [anon_sym_while] = ACTIONS(2986), + [anon_sym_do] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2986), + [anon_sym_LT_LT] = ACTIONS(2988), + [anon_sym_GT_GT] = ACTIONS(2986), + [anon_sym_GT_GT_GT] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2986), + [anon_sym_PIPE] = ACTIONS(2986), + [anon_sym_CARET] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_LT_EQ] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2986), + [anon_sym_GT_EQ] = ACTIONS(2988), + [anon_sym_EQ_GT] = ACTIONS(2988), + [anon_sym_QMARK_QMARK] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2986), + [anon_sym_macro] = ACTIONS(2986), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_public] = ACTIONS(2986), + [anon_sym_private] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(2986), + [anon_sym_inline] = ACTIONS(2986), + [anon_sym_overload] = ACTIONS(2986), + [anon_sym_override] = ACTIONS(2986), + [anon_sym_final] = ACTIONS(2986), + [anon_sym_class] = ACTIONS(2986), + [anon_sym_interface] = ACTIONS(2986), + [anon_sym_enum] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_var] = ACTIONS(2986), + [aux_sym_integer_token1] = ACTIONS(2986), + [aux_sym_integer_token2] = ACTIONS(2988), + [aux_sym_float_token1] = ACTIONS(2986), + [aux_sym_float_token2] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2986), + [anon_sym_false] = ACTIONS(2986), + [aux_sym_string_token1] = ACTIONS(2988), + [aux_sym_string_token3] = ACTIONS(2988), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2988), [sym__closing_brace_unmarker] = ACTIONS(3), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1050), - [anon_sym_package] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_import] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_using] = ACTIONS(1054), - [anon_sym_throw] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_cast] = ACTIONS(1054), - [anon_sym_DOLLARtype] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_this] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1054), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_AT_COLON] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PERCENT] = ACTIONS(1050), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1050), - [anon_sym_PIPE_PIPE] = ACTIONS(1050), - [anon_sym_EQ_EQ] = ACTIONS(1050), - [anon_sym_BANG_EQ] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1050), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1050), - [anon_sym_EQ_GT] = ACTIONS(1050), - [anon_sym_QMARK_QMARK] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_macro] = ACTIONS(1054), - [anon_sym_abstract] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_public] = ACTIONS(1054), - [anon_sym_private] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_inline] = ACTIONS(1054), - [anon_sym_overload] = ACTIONS(1054), - [anon_sym_override] = ACTIONS(1054), - [anon_sym_final] = ACTIONS(1054), - [anon_sym_class] = ACTIONS(1054), - [anon_sym_interface] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(1054), - [anon_sym_var] = ACTIONS(1054), - [aux_sym_integer_token1] = ACTIONS(1054), - [aux_sym_integer_token2] = ACTIONS(1050), - [aux_sym_float_token1] = ACTIONS(1054), - [aux_sym_float_token2] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym_string_token1] = ACTIONS(1050), - [aux_sym_string_token3] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2990), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_package] = ACTIONS(2990), + [anon_sym_import] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2990), + [anon_sym_throw] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2990), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_case] = ACTIONS(2990), + [anon_sym_default] = ACTIONS(2990), + [anon_sym_cast] = ACTIONS(2990), + [anon_sym_DOLLARtype] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2990), + [anon_sym_return] = ACTIONS(2990), + [anon_sym_untyped] = ACTIONS(2990), + [anon_sym_break] = ACTIONS(2990), + [anon_sym_continue] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_this] = ACTIONS(2990), + [anon_sym_AT] = ACTIONS(2990), + [anon_sym_AT_COLON] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2990), + [anon_sym_catch] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2990), + [anon_sym_if] = ACTIONS(2990), + [anon_sym_while] = ACTIONS(2990), + [anon_sym_do] = ACTIONS(2990), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2992), + [anon_sym_PERCENT] = ACTIONS(2992), + [anon_sym_SLASH] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(2990), + [anon_sym_LT_LT] = ACTIONS(2992), + [anon_sym_GT_GT] = ACTIONS(2990), + [anon_sym_GT_GT_GT] = ACTIONS(2992), + [anon_sym_AMP] = ACTIONS(2990), + [anon_sym_PIPE] = ACTIONS(2990), + [anon_sym_CARET] = ACTIONS(2992), + [anon_sym_AMP_AMP] = ACTIONS(2992), + [anon_sym_PIPE_PIPE] = ACTIONS(2992), + [anon_sym_EQ_EQ] = ACTIONS(2992), + [anon_sym_BANG_EQ] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2992), + [anon_sym_EQ_GT] = ACTIONS(2992), + [anon_sym_QMARK_QMARK] = ACTIONS(2992), + [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2992), + [anon_sym_null] = ACTIONS(2990), + [anon_sym_macro] = ACTIONS(2990), + [anon_sym_abstract] = ACTIONS(2990), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_extern] = ACTIONS(2990), + [anon_sym_inline] = ACTIONS(2990), + [anon_sym_overload] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_final] = ACTIONS(2990), + [anon_sym_class] = ACTIONS(2990), + [anon_sym_interface] = ACTIONS(2990), + [anon_sym_enum] = ACTIONS(2990), + [anon_sym_typedef] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2990), + [anon_sym_var] = ACTIONS(2990), + [aux_sym_integer_token1] = ACTIONS(2990), + [aux_sym_integer_token2] = ACTIONS(2992), + [aux_sym_float_token1] = ACTIONS(2990), + [aux_sym_float_token2] = ACTIONS(2992), + [anon_sym_true] = ACTIONS(2990), + [anon_sym_false] = ACTIONS(2990), + [aux_sym_string_token1] = ACTIONS(2992), + [aux_sym_string_token3] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2992), [sym__closing_brace_unmarker] = ACTIONS(3), }, [501] = { - [sym_identifier] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2438), - [anon_sym_package] = ACTIONS(2436), - [anon_sym_import] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_using] = ACTIONS(2436), - [anon_sym_throw] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_case] = ACTIONS(2436), - [anon_sym_default] = ACTIONS(2436), - [anon_sym_cast] = ACTIONS(2436), - [anon_sym_DOLLARtype] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_untyped] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_this] = ACTIONS(2436), - [anon_sym_AT] = ACTIONS(2436), - [anon_sym_AT_COLON] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2436), - [anon_sym_catch] = ACTIONS(2436), - [anon_sym_else] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_do] = ACTIONS(2436), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), - [anon_sym_PERCENT] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2436), - [anon_sym_PLUS] = ACTIONS(2436), - [anon_sym_LT_LT] = ACTIONS(2438), - [anon_sym_GT_GT] = ACTIONS(2436), - [anon_sym_GT_GT_GT] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2436), - [anon_sym_PIPE] = ACTIONS(2436), - [anon_sym_CARET] = ACTIONS(2438), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE_PIPE] = ACTIONS(2438), - [anon_sym_EQ_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_LT_EQ] = ACTIONS(2438), - [anon_sym_GT] = ACTIONS(2436), - [anon_sym_GT_EQ] = ACTIONS(2438), - [anon_sym_EQ_GT] = ACTIONS(2438), - [anon_sym_QMARK_QMARK] = ACTIONS(2438), - [anon_sym_EQ] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), - [anon_sym_null] = ACTIONS(2436), - [anon_sym_macro] = ACTIONS(2436), - [anon_sym_abstract] = ACTIONS(2436), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_inline] = ACTIONS(2436), - [anon_sym_overload] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_final] = ACTIONS(2436), - [anon_sym_class] = ACTIONS(2436), - [anon_sym_interface] = ACTIONS(2436), - [anon_sym_enum] = ACTIONS(2436), - [anon_sym_typedef] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_var] = ACTIONS(2436), - [aux_sym_integer_token1] = ACTIONS(2436), - [aux_sym_integer_token2] = ACTIONS(2438), - [aux_sym_float_token1] = ACTIONS(2436), - [aux_sym_float_token2] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(2436), - [anon_sym_false] = ACTIONS(2436), - [aux_sym_string_token1] = ACTIONS(2438), - [aux_sym_string_token3] = ACTIONS(2438), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2994), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_package] = ACTIONS(2994), + [anon_sym_import] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_using] = ACTIONS(2994), + [anon_sym_throw] = ACTIONS(2994), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2994), + [anon_sym_default] = ACTIONS(2994), + [anon_sym_cast] = ACTIONS(2994), + [anon_sym_DOLLARtype] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2994), + [anon_sym_return] = ACTIONS(2994), + [anon_sym_untyped] = ACTIONS(2994), + [anon_sym_break] = ACTIONS(2994), + [anon_sym_continue] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_this] = ACTIONS(2994), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_AT_COLON] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2994), + [anon_sym_catch] = ACTIONS(2994), + [anon_sym_else] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2994), + [anon_sym_while] = ACTIONS(2994), + [anon_sym_do] = ACTIONS(2994), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2996), + [anon_sym_PERCENT] = ACTIONS(2996), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_LT_LT] = ACTIONS(2996), + [anon_sym_GT_GT] = ACTIONS(2994), + [anon_sym_GT_GT_GT] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_AMP_AMP] = ACTIONS(2996), + [anon_sym_PIPE_PIPE] = ACTIONS(2996), + [anon_sym_EQ_EQ] = ACTIONS(2996), + [anon_sym_BANG_EQ] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2996), + [anon_sym_GT] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2996), + [anon_sym_EQ_GT] = ACTIONS(2996), + [anon_sym_QMARK_QMARK] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(2994), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2996), + [anon_sym_null] = ACTIONS(2994), + [anon_sym_macro] = ACTIONS(2994), + [anon_sym_abstract] = ACTIONS(2994), + [anon_sym_static] = ACTIONS(2994), + [anon_sym_public] = ACTIONS(2994), + [anon_sym_private] = ACTIONS(2994), + [anon_sym_extern] = ACTIONS(2994), + [anon_sym_inline] = ACTIONS(2994), + [anon_sym_overload] = ACTIONS(2994), + [anon_sym_override] = ACTIONS(2994), + [anon_sym_final] = ACTIONS(2994), + [anon_sym_class] = ACTIONS(2994), + [anon_sym_interface] = ACTIONS(2994), + [anon_sym_enum] = ACTIONS(2994), + [anon_sym_typedef] = ACTIONS(2994), + [anon_sym_function] = ACTIONS(2994), + [anon_sym_var] = ACTIONS(2994), + [aux_sym_integer_token1] = ACTIONS(2994), + [aux_sym_integer_token2] = ACTIONS(2996), + [aux_sym_float_token1] = ACTIONS(2994), + [aux_sym_float_token2] = ACTIONS(2996), + [anon_sym_true] = ACTIONS(2994), + [anon_sym_false] = ACTIONS(2994), + [aux_sym_string_token1] = ACTIONS(2996), + [aux_sym_string_token3] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2996), [sym__closing_brace_unmarker] = ACTIONS(3), }, [502] = { - [sym_identifier] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2442), - [anon_sym_package] = ACTIONS(2440), - [anon_sym_import] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2440), - [anon_sym_throw] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_case] = ACTIONS(2440), - [anon_sym_default] = ACTIONS(2440), - [anon_sym_cast] = ACTIONS(2440), - [anon_sym_DOLLARtype] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2440), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_untyped] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2440), - [anon_sym_continue] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_this] = ACTIONS(2440), - [anon_sym_AT] = ACTIONS(2440), - [anon_sym_AT_COLON] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2440), - [anon_sym_catch] = ACTIONS(2440), - [anon_sym_else] = ACTIONS(2440), - [anon_sym_if] = ACTIONS(2440), - [anon_sym_while] = ACTIONS(2440), - [anon_sym_do] = ACTIONS(2440), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(2440), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2440), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2440), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_GT] = ACTIONS(2440), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_EQ_GT] = ACTIONS(2442), - [anon_sym_QMARK_QMARK] = ACTIONS(2442), - [anon_sym_EQ] = ACTIONS(2440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2442), - [anon_sym_null] = ACTIONS(2440), - [anon_sym_macro] = ACTIONS(2440), - [anon_sym_abstract] = ACTIONS(2440), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_extern] = ACTIONS(2440), - [anon_sym_inline] = ACTIONS(2440), - [anon_sym_overload] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_final] = ACTIONS(2440), - [anon_sym_class] = ACTIONS(2440), - [anon_sym_interface] = ACTIONS(2440), - [anon_sym_enum] = ACTIONS(2440), - [anon_sym_typedef] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2440), - [anon_sym_var] = ACTIONS(2440), - [aux_sym_integer_token1] = ACTIONS(2440), - [aux_sym_integer_token2] = ACTIONS(2442), - [aux_sym_float_token1] = ACTIONS(2440), - [aux_sym_float_token2] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2440), - [anon_sym_false] = ACTIONS(2440), - [aux_sym_string_token1] = ACTIONS(2442), - [aux_sym_string_token3] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(3000), + [anon_sym_package] = ACTIONS(2998), + [anon_sym_import] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_using] = ACTIONS(2998), + [anon_sym_throw] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_switch] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_case] = ACTIONS(2998), + [anon_sym_default] = ACTIONS(2998), + [anon_sym_cast] = ACTIONS(2998), + [anon_sym_DOLLARtype] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_untyped] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_this] = ACTIONS(2998), + [anon_sym_AT] = ACTIONS(2998), + [anon_sym_AT_COLON] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_catch] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_new] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3000), + [anon_sym_PERCENT] = ACTIONS(3000), + [anon_sym_SLASH] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_LT_LT] = ACTIONS(3000), + [anon_sym_GT_GT] = ACTIONS(2998), + [anon_sym_GT_GT_GT] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2998), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(3000), + [anon_sym_AMP_AMP] = ACTIONS(3000), + [anon_sym_PIPE_PIPE] = ACTIONS(3000), + [anon_sym_EQ_EQ] = ACTIONS(3000), + [anon_sym_BANG_EQ] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2998), + [anon_sym_LT_EQ] = ACTIONS(3000), + [anon_sym_GT] = ACTIONS(2998), + [anon_sym_GT_EQ] = ACTIONS(3000), + [anon_sym_EQ_GT] = ACTIONS(3000), + [anon_sym_QMARK_QMARK] = ACTIONS(3000), + [anon_sym_EQ] = ACTIONS(2998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_macro] = ACTIONS(2998), + [anon_sym_abstract] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2998), + [anon_sym_public] = ACTIONS(2998), + [anon_sym_private] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_inline] = ACTIONS(2998), + [anon_sym_overload] = ACTIONS(2998), + [anon_sym_override] = ACTIONS(2998), + [anon_sym_final] = ACTIONS(2998), + [anon_sym_class] = ACTIONS(2998), + [anon_sym_interface] = ACTIONS(2998), + [anon_sym_enum] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2998), + [anon_sym_function] = ACTIONS(2998), + [anon_sym_var] = ACTIONS(2998), + [aux_sym_integer_token1] = ACTIONS(2998), + [aux_sym_integer_token2] = ACTIONS(3000), + [aux_sym_float_token1] = ACTIONS(2998), + [aux_sym_float_token2] = ACTIONS(3000), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym_string_token1] = ACTIONS(3000), + [aux_sym_string_token3] = ACTIONS(3000), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3000), [sym__closing_brace_unmarker] = ACTIONS(3), }, [503] = { - [sym_identifier] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(2446), - [anon_sym_package] = ACTIONS(2444), - [anon_sym_import] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_using] = ACTIONS(2444), - [anon_sym_throw] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_switch] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_case] = ACTIONS(2444), - [anon_sym_default] = ACTIONS(2444), - [anon_sym_cast] = ACTIONS(2444), - [anon_sym_DOLLARtype] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_untyped] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_this] = ACTIONS(2444), - [anon_sym_AT] = ACTIONS(2444), - [anon_sym_AT_COLON] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_catch] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_do] = ACTIONS(2444), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2446), - [anon_sym_DASH_DASH] = ACTIONS(2446), - [anon_sym_PERCENT] = ACTIONS(2446), - [anon_sym_SLASH] = ACTIONS(2444), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2446), - [anon_sym_GT_GT] = ACTIONS(2444), - [anon_sym_GT_GT_GT] = ACTIONS(2446), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2446), - [anon_sym_AMP_AMP] = ACTIONS(2446), - [anon_sym_PIPE_PIPE] = ACTIONS(2446), - [anon_sym_EQ_EQ] = ACTIONS(2446), - [anon_sym_BANG_EQ] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_LT_EQ] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2446), - [anon_sym_EQ_GT] = ACTIONS(2446), - [anon_sym_QMARK_QMARK] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2446), - [anon_sym_null] = ACTIONS(2444), - [anon_sym_macro] = ACTIONS(2444), - [anon_sym_abstract] = ACTIONS(2444), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_private] = ACTIONS(2444), - [anon_sym_extern] = ACTIONS(2444), - [anon_sym_inline] = ACTIONS(2444), - [anon_sym_overload] = ACTIONS(2444), - [anon_sym_override] = ACTIONS(2444), - [anon_sym_final] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2444), - [anon_sym_interface] = ACTIONS(2444), - [anon_sym_enum] = ACTIONS(2444), - [anon_sym_typedef] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(2444), - [anon_sym_var] = ACTIONS(2444), - [aux_sym_integer_token1] = ACTIONS(2444), - [aux_sym_integer_token2] = ACTIONS(2446), - [aux_sym_float_token1] = ACTIONS(2444), - [aux_sym_float_token2] = ACTIONS(2446), - [anon_sym_true] = ACTIONS(2444), - [anon_sym_false] = ACTIONS(2444), - [aux_sym_string_token1] = ACTIONS(2446), - [aux_sym_string_token3] = ACTIONS(2446), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2446), + [sym_identifier] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(3004), + [anon_sym_package] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3002), + [anon_sym_default] = ACTIONS(3002), + [anon_sym_cast] = ACTIONS(3002), + [anon_sym_DOLLARtype] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_untyped] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_AT_COLON] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_catch] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_do] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3004), + [anon_sym_PERCENT] = ACTIONS(3004), + [anon_sym_SLASH] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_LT_LT] = ACTIONS(3004), + [anon_sym_GT_GT] = ACTIONS(3002), + [anon_sym_GT_GT_GT] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_CARET] = ACTIONS(3004), + [anon_sym_AMP_AMP] = ACTIONS(3004), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_EQ_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_LT_EQ] = ACTIONS(3004), + [anon_sym_GT] = ACTIONS(3002), + [anon_sym_GT_EQ] = ACTIONS(3004), + [anon_sym_EQ_GT] = ACTIONS(3004), + [anon_sym_QMARK_QMARK] = ACTIONS(3004), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_macro] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_extern] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_overload] = ACTIONS(3002), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_class] = ACTIONS(3002), + [anon_sym_interface] = ACTIONS(3002), + [anon_sym_enum] = ACTIONS(3002), + [anon_sym_typedef] = ACTIONS(3002), + [anon_sym_function] = ACTIONS(3002), + [anon_sym_var] = ACTIONS(3002), + [aux_sym_integer_token1] = ACTIONS(3002), + [aux_sym_integer_token2] = ACTIONS(3004), + [aux_sym_float_token1] = ACTIONS(3002), + [aux_sym_float_token2] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [aux_sym_string_token1] = ACTIONS(3004), + [aux_sym_string_token3] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3004), [sym__closing_brace_unmarker] = ACTIONS(3), }, [504] = { - [sym_identifier] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(2450), - [anon_sym_package] = ACTIONS(2448), - [anon_sym_import] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_using] = ACTIONS(2448), - [anon_sym_throw] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_case] = ACTIONS(2448), - [anon_sym_default] = ACTIONS(2448), - [anon_sym_cast] = ACTIONS(2448), - [anon_sym_DOLLARtype] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2448), - [anon_sym_return] = ACTIONS(2448), - [anon_sym_untyped] = ACTIONS(2448), - [anon_sym_break] = ACTIONS(2448), - [anon_sym_continue] = ACTIONS(2448), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_this] = ACTIONS(2448), - [anon_sym_AT] = ACTIONS(2448), - [anon_sym_AT_COLON] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2448), - [anon_sym_catch] = ACTIONS(2448), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_if] = ACTIONS(2448), - [anon_sym_while] = ACTIONS(2448), - [anon_sym_do] = ACTIONS(2448), - [anon_sym_new] = ACTIONS(2448), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_SLASH] = ACTIONS(2448), - [anon_sym_PLUS] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2448), - [anon_sym_GT_GT_GT] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_PIPE] = ACTIONS(2448), - [anon_sym_CARET] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2450), - [anon_sym_PIPE_PIPE] = ACTIONS(2450), - [anon_sym_EQ_EQ] = ACTIONS(2450), - [anon_sym_BANG_EQ] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_LT_EQ] = ACTIONS(2450), - [anon_sym_GT] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2450), - [anon_sym_EQ_GT] = ACTIONS(2450), - [anon_sym_QMARK_QMARK] = ACTIONS(2450), - [anon_sym_EQ] = ACTIONS(2448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2450), - [anon_sym_null] = ACTIONS(2448), - [anon_sym_macro] = ACTIONS(2448), - [anon_sym_abstract] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2448), - [anon_sym_public] = ACTIONS(2448), - [anon_sym_private] = ACTIONS(2448), - [anon_sym_extern] = ACTIONS(2448), - [anon_sym_inline] = ACTIONS(2448), - [anon_sym_overload] = ACTIONS(2448), - [anon_sym_override] = ACTIONS(2448), - [anon_sym_final] = ACTIONS(2448), - [anon_sym_class] = ACTIONS(2448), - [anon_sym_interface] = ACTIONS(2448), - [anon_sym_enum] = ACTIONS(2448), - [anon_sym_typedef] = ACTIONS(2448), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_var] = ACTIONS(2448), - [aux_sym_integer_token1] = ACTIONS(2448), - [aux_sym_integer_token2] = ACTIONS(2450), - [aux_sym_float_token1] = ACTIONS(2448), - [aux_sym_float_token2] = ACTIONS(2450), - [anon_sym_true] = ACTIONS(2448), - [anon_sym_false] = ACTIONS(2448), - [aux_sym_string_token1] = ACTIONS(2450), - [aux_sym_string_token3] = ACTIONS(2450), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2450), + [sym_identifier] = ACTIONS(3006), + [anon_sym_POUND] = ACTIONS(3008), + [anon_sym_package] = ACTIONS(3006), + [anon_sym_import] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_case] = ACTIONS(3006), + [anon_sym_default] = ACTIONS(3006), + [anon_sym_cast] = ACTIONS(3006), + [anon_sym_DOLLARtype] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_untyped] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(3006), + [anon_sym_AT_COLON] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_catch] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_do] = ACTIONS(3006), + [anon_sym_new] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [anon_sym_PERCENT] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3006), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(3006), + [anon_sym_GT_GT_GT] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_CARET] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_EQ_GT] = ACTIONS(3008), + [anon_sym_QMARK_QMARK] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_macro] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_extern] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_overload] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_class] = ACTIONS(3006), + [anon_sym_interface] = ACTIONS(3006), + [anon_sym_enum] = ACTIONS(3006), + [anon_sym_typedef] = ACTIONS(3006), + [anon_sym_function] = ACTIONS(3006), + [anon_sym_var] = ACTIONS(3006), + [aux_sym_integer_token1] = ACTIONS(3006), + [aux_sym_integer_token2] = ACTIONS(3008), + [aux_sym_float_token1] = ACTIONS(3006), + [aux_sym_float_token2] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [aux_sym_string_token1] = ACTIONS(3008), + [aux_sym_string_token3] = ACTIONS(3008), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3008), [sym__closing_brace_unmarker] = ACTIONS(3), }, [505] = { - [sym_identifier] = ACTIONS(2452), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_package] = ACTIONS(2452), - [anon_sym_import] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_using] = ACTIONS(2452), - [anon_sym_throw] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_switch] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_case] = ACTIONS(2452), - [anon_sym_default] = ACTIONS(2452), - [anon_sym_cast] = ACTIONS(2452), - [anon_sym_DOLLARtype] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_untyped] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_this] = ACTIONS(2452), - [anon_sym_AT] = ACTIONS(2452), - [anon_sym_AT_COLON] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_catch] = ACTIONS(2452), - [anon_sym_else] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [anon_sym_PERCENT] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2454), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_GT_GT_GT] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_CARET] = ACTIONS(2454), - [anon_sym_AMP_AMP] = ACTIONS(2454), - [anon_sym_PIPE_PIPE] = ACTIONS(2454), - [anon_sym_EQ_EQ] = ACTIONS(2454), - [anon_sym_BANG_EQ] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_LT_EQ] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_GT_EQ] = ACTIONS(2454), - [anon_sym_EQ_GT] = ACTIONS(2454), - [anon_sym_QMARK_QMARK] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), - [anon_sym_null] = ACTIONS(2452), - [anon_sym_macro] = ACTIONS(2452), - [anon_sym_abstract] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_inline] = ACTIONS(2452), - [anon_sym_overload] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_final] = ACTIONS(2452), - [anon_sym_class] = ACTIONS(2452), - [anon_sym_interface] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2452), - [anon_sym_typedef] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2452), - [anon_sym_var] = ACTIONS(2452), - [aux_sym_integer_token1] = ACTIONS(2452), - [aux_sym_integer_token2] = ACTIONS(2454), - [aux_sym_float_token1] = ACTIONS(2452), - [aux_sym_float_token2] = ACTIONS(2454), - [anon_sym_true] = ACTIONS(2452), - [anon_sym_false] = ACTIONS(2452), - [aux_sym_string_token1] = ACTIONS(2454), - [aux_sym_string_token3] = ACTIONS(2454), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2454), + [sym_identifier] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3012), + [anon_sym_package] = ACTIONS(3010), + [anon_sym_import] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3010), + [anon_sym_throw] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3010), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_cast] = ACTIONS(3010), + [anon_sym_DOLLARtype] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_untyped] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3010), + [anon_sym_continue] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_this] = ACTIONS(3010), + [anon_sym_AT] = ACTIONS(3010), + [anon_sym_AT_COLON] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3010), + [anon_sym_catch] = ACTIONS(3010), + [anon_sym_else] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_while] = ACTIONS(3010), + [anon_sym_do] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_LT_LT] = ACTIONS(3012), + [anon_sym_GT_GT] = ACTIONS(3010), + [anon_sym_GT_GT_GT] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_CARET] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_EQ_EQ] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_LT_EQ] = ACTIONS(3012), + [anon_sym_GT] = ACTIONS(3010), + [anon_sym_GT_EQ] = ACTIONS(3012), + [anon_sym_EQ_GT] = ACTIONS(3012), + [anon_sym_QMARK_QMARK] = ACTIONS(3012), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3010), + [anon_sym_macro] = ACTIONS(3010), + [anon_sym_abstract] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_extern] = ACTIONS(3010), + [anon_sym_inline] = ACTIONS(3010), + [anon_sym_overload] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_final] = ACTIONS(3010), + [anon_sym_class] = ACTIONS(3010), + [anon_sym_interface] = ACTIONS(3010), + [anon_sym_enum] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3010), + [anon_sym_var] = ACTIONS(3010), + [aux_sym_integer_token1] = ACTIONS(3010), + [aux_sym_integer_token2] = ACTIONS(3012), + [aux_sym_float_token1] = ACTIONS(3010), + [aux_sym_float_token2] = ACTIONS(3012), + [anon_sym_true] = ACTIONS(3010), + [anon_sym_false] = ACTIONS(3010), + [aux_sym_string_token1] = ACTIONS(3012), + [aux_sym_string_token3] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3012), [sym__closing_brace_unmarker] = ACTIONS(3), }, [506] = { - [sym_identifier] = ACTIONS(2456), - [anon_sym_POUND] = ACTIONS(2458), - [anon_sym_package] = ACTIONS(2456), - [anon_sym_import] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2456), - [anon_sym_throw] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_case] = ACTIONS(2456), - [anon_sym_default] = ACTIONS(2456), - [anon_sym_cast] = ACTIONS(2456), - [anon_sym_DOLLARtype] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_untyped] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_AT] = ACTIONS(2456), - [anon_sym_AT_COLON] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_catch] = ACTIONS(2456), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), - [anon_sym_PERCENT] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(2456), - [anon_sym_LT_LT] = ACTIONS(2458), - [anon_sym_GT_GT] = ACTIONS(2456), - [anon_sym_GT_GT_GT] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_PIPE] = ACTIONS(2456), - [anon_sym_CARET] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2458), - [anon_sym_EQ_EQ] = ACTIONS(2458), - [anon_sym_BANG_EQ] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_LT_EQ] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2456), - [anon_sym_GT_EQ] = ACTIONS(2458), - [anon_sym_EQ_GT] = ACTIONS(2458), - [anon_sym_QMARK_QMARK] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2458), - [anon_sym_null] = ACTIONS(2456), - [anon_sym_macro] = ACTIONS(2456), - [anon_sym_abstract] = ACTIONS(2456), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_public] = ACTIONS(2456), - [anon_sym_private] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_inline] = ACTIONS(2456), - [anon_sym_overload] = ACTIONS(2456), - [anon_sym_override] = ACTIONS(2456), - [anon_sym_final] = ACTIONS(2456), - [anon_sym_class] = ACTIONS(2456), - [anon_sym_interface] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), - [anon_sym_typedef] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2456), - [anon_sym_var] = ACTIONS(2456), - [aux_sym_integer_token1] = ACTIONS(2456), - [aux_sym_integer_token2] = ACTIONS(2458), - [aux_sym_float_token1] = ACTIONS(2456), - [aux_sym_float_token2] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(2456), - [anon_sym_false] = ACTIONS(2456), - [aux_sym_string_token1] = ACTIONS(2458), - [aux_sym_string_token3] = ACTIONS(2458), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2458), + [sym_identifier] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(3016), + [anon_sym_package] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3014), + [anon_sym_throw] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3014), + [anon_sym_default] = ACTIONS(3014), + [anon_sym_cast] = ACTIONS(3014), + [anon_sym_DOLLARtype] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3014), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_untyped] = ACTIONS(3014), + [anon_sym_break] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_this] = ACTIONS(3014), + [anon_sym_AT] = ACTIONS(3014), + [anon_sym_AT_COLON] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3014), + [anon_sym_catch] = ACTIONS(3014), + [anon_sym_else] = ACTIONS(3014), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_while] = ACTIONS(3014), + [anon_sym_do] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3016), + [anon_sym_PERCENT] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_LT_LT] = ACTIONS(3016), + [anon_sym_GT_GT] = ACTIONS(3014), + [anon_sym_GT_GT_GT] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_CARET] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3014), + [anon_sym_LT_EQ] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3014), + [anon_sym_GT_EQ] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(3016), + [anon_sym_QMARK_QMARK] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(3014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3016), + [anon_sym_null] = ACTIONS(3014), + [anon_sym_macro] = ACTIONS(3014), + [anon_sym_abstract] = ACTIONS(3014), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_public] = ACTIONS(3014), + [anon_sym_private] = ACTIONS(3014), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_overload] = ACTIONS(3014), + [anon_sym_override] = ACTIONS(3014), + [anon_sym_final] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_interface] = ACTIONS(3014), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_typedef] = ACTIONS(3014), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_var] = ACTIONS(3014), + [aux_sym_integer_token1] = ACTIONS(3014), + [aux_sym_integer_token2] = ACTIONS(3016), + [aux_sym_float_token1] = ACTIONS(3014), + [aux_sym_float_token2] = ACTIONS(3016), + [anon_sym_true] = ACTIONS(3014), + [anon_sym_false] = ACTIONS(3014), + [aux_sym_string_token1] = ACTIONS(3016), + [aux_sym_string_token3] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3016), [sym__closing_brace_unmarker] = ACTIONS(3), }, [507] = { - [sym_identifier] = ACTIONS(2460), - [anon_sym_POUND] = ACTIONS(2462), - [anon_sym_package] = ACTIONS(2460), - [anon_sym_import] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2460), - [anon_sym_throw] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_switch] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_case] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2460), - [anon_sym_cast] = ACTIONS(2460), - [anon_sym_DOLLARtype] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_untyped] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_this] = ACTIONS(2460), - [anon_sym_AT] = ACTIONS(2460), - [anon_sym_AT_COLON] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_catch] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_PLUS_PLUS] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2462), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_GT_GT_GT] = ACTIONS(2462), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2462), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE_PIPE] = ACTIONS(2462), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_LT_EQ] = ACTIONS(2462), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_GT_EQ] = ACTIONS(2462), - [anon_sym_EQ_GT] = ACTIONS(2462), - [anon_sym_QMARK_QMARK] = ACTIONS(2462), - [anon_sym_EQ] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2462), - [anon_sym_null] = ACTIONS(2460), - [anon_sym_macro] = ACTIONS(2460), - [anon_sym_abstract] = ACTIONS(2460), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_inline] = ACTIONS(2460), - [anon_sym_overload] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_final] = ACTIONS(2460), - [anon_sym_class] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2460), - [anon_sym_typedef] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2460), - [anon_sym_var] = ACTIONS(2460), - [aux_sym_integer_token1] = ACTIONS(2460), - [aux_sym_integer_token2] = ACTIONS(2462), - [aux_sym_float_token1] = ACTIONS(2460), - [aux_sym_float_token2] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2460), - [anon_sym_false] = ACTIONS(2460), - [aux_sym_string_token1] = ACTIONS(2462), - [aux_sym_string_token3] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3018), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_package] = ACTIONS(3018), + [anon_sym_import] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3018), + [anon_sym_throw] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3018), + [anon_sym_default] = ACTIONS(3018), + [anon_sym_cast] = ACTIONS(3018), + [anon_sym_DOLLARtype] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3018), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_untyped] = ACTIONS(3018), + [anon_sym_break] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_this] = ACTIONS(3018), + [anon_sym_AT] = ACTIONS(3018), + [anon_sym_AT_COLON] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3018), + [anon_sym_catch] = ACTIONS(3018), + [anon_sym_else] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3018), + [anon_sym_while] = ACTIONS(3018), + [anon_sym_do] = ACTIONS(3018), + [anon_sym_new] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3018), + [anon_sym_PLUS] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_EQ_GT] = ACTIONS(3020), + [anon_sym_QMARK_QMARK] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3020), + [anon_sym_null] = ACTIONS(3018), + [anon_sym_macro] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3018), + [anon_sym_public] = ACTIONS(3018), + [anon_sym_private] = ACTIONS(3018), + [anon_sym_extern] = ACTIONS(3018), + [anon_sym_inline] = ACTIONS(3018), + [anon_sym_overload] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3018), + [anon_sym_final] = ACTIONS(3018), + [anon_sym_class] = ACTIONS(3018), + [anon_sym_interface] = ACTIONS(3018), + [anon_sym_enum] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3018), + [anon_sym_function] = ACTIONS(3018), + [anon_sym_var] = ACTIONS(3018), + [aux_sym_integer_token1] = ACTIONS(3018), + [aux_sym_integer_token2] = ACTIONS(3020), + [aux_sym_float_token1] = ACTIONS(3018), + [aux_sym_float_token2] = ACTIONS(3020), + [anon_sym_true] = ACTIONS(3018), + [anon_sym_false] = ACTIONS(3018), + [aux_sym_string_token1] = ACTIONS(3020), + [aux_sym_string_token3] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3020), [sym__closing_brace_unmarker] = ACTIONS(3), }, [508] = { - [sym_identifier] = ACTIONS(2464), - [anon_sym_POUND] = ACTIONS(2466), - [anon_sym_package] = ACTIONS(2464), - [anon_sym_import] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2464), - [anon_sym_throw] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_cast] = ACTIONS(2464), - [anon_sym_DOLLARtype] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_untyped] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_this] = ACTIONS(2464), - [anon_sym_AT] = ACTIONS(2464), - [anon_sym_AT_COLON] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [anon_sym_PERCENT] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2464), - [anon_sym_PLUS] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2466), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_GT_GT_GT] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_PIPE_PIPE] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2466), - [anon_sym_EQ_GT] = ACTIONS(2466), - [anon_sym_QMARK_QMARK] = ACTIONS(2466), - [anon_sym_EQ] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - [anon_sym_null] = ACTIONS(2464), - [anon_sym_macro] = ACTIONS(2464), - [anon_sym_abstract] = ACTIONS(2464), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_inline] = ACTIONS(2464), - [anon_sym_overload] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_final] = ACTIONS(2464), - [anon_sym_class] = ACTIONS(2464), - [anon_sym_interface] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2464), - [anon_sym_var] = ACTIONS(2464), - [aux_sym_integer_token1] = ACTIONS(2464), - [aux_sym_integer_token2] = ACTIONS(2466), - [aux_sym_float_token1] = ACTIONS(2464), - [aux_sym_float_token2] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(2464), - [anon_sym_false] = ACTIONS(2464), - [aux_sym_string_token1] = ACTIONS(2466), - [aux_sym_string_token3] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2466), + [sym_identifier] = ACTIONS(3022), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_package] = ACTIONS(3022), + [anon_sym_import] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3022), + [anon_sym_throw] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3022), + [anon_sym_default] = ACTIONS(3022), + [anon_sym_cast] = ACTIONS(3022), + [anon_sym_DOLLARtype] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3022), + [anon_sym_untyped] = ACTIONS(3022), + [anon_sym_break] = ACTIONS(3022), + [anon_sym_continue] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3022), + [anon_sym_AT] = ACTIONS(3022), + [anon_sym_AT_COLON] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3022), + [anon_sym_catch] = ACTIONS(3022), + [anon_sym_else] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_while] = ACTIONS(3022), + [anon_sym_do] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(3024), + [anon_sym_QMARK_QMARK] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3022), + [anon_sym_macro] = ACTIONS(3022), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_public] = ACTIONS(3022), + [anon_sym_private] = ACTIONS(3022), + [anon_sym_extern] = ACTIONS(3022), + [anon_sym_inline] = ACTIONS(3022), + [anon_sym_overload] = ACTIONS(3022), + [anon_sym_override] = ACTIONS(3022), + [anon_sym_final] = ACTIONS(3022), + [anon_sym_class] = ACTIONS(3022), + [anon_sym_interface] = ACTIONS(3022), + [anon_sym_enum] = ACTIONS(3022), + [anon_sym_typedef] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3022), + [anon_sym_var] = ACTIONS(3022), + [aux_sym_integer_token1] = ACTIONS(3022), + [aux_sym_integer_token2] = ACTIONS(3024), + [aux_sym_float_token1] = ACTIONS(3022), + [aux_sym_float_token2] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3022), + [anon_sym_false] = ACTIONS(3022), + [aux_sym_string_token1] = ACTIONS(3024), + [aux_sym_string_token3] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3024), [sym__closing_brace_unmarker] = ACTIONS(3), }, [509] = { - [sym_identifier] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2470), - [anon_sym_package] = ACTIONS(2468), - [anon_sym_import] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2468), - [anon_sym_throw] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_case] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2468), - [anon_sym_cast] = ACTIONS(2468), - [anon_sym_DOLLARtype] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_untyped] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_this] = ACTIONS(2468), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_AT_COLON] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2468), - [anon_sym_catch] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_new] = ACTIONS(2468), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2470), - [anon_sym_PERCENT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2470), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_GT_GT_GT] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP_AMP] = ACTIONS(2470), - [anon_sym_PIPE_PIPE] = ACTIONS(2470), - [anon_sym_EQ_EQ] = ACTIONS(2470), - [anon_sym_BANG_EQ] = ACTIONS(2470), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_LT_EQ] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2470), - [anon_sym_EQ_GT] = ACTIONS(2470), - [anon_sym_QMARK_QMARK] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2470), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_macro] = ACTIONS(2468), - [anon_sym_abstract] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_public] = ACTIONS(2468), - [anon_sym_private] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_inline] = ACTIONS(2468), - [anon_sym_overload] = ACTIONS(2468), - [anon_sym_override] = ACTIONS(2468), - [anon_sym_final] = ACTIONS(2468), - [anon_sym_class] = ACTIONS(2468), - [anon_sym_interface] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - [anon_sym_typedef] = ACTIONS(2468), - [anon_sym_function] = ACTIONS(2468), - [anon_sym_var] = ACTIONS(2468), - [aux_sym_integer_token1] = ACTIONS(2468), - [aux_sym_integer_token2] = ACTIONS(2470), - [aux_sym_float_token1] = ACTIONS(2468), - [aux_sym_float_token2] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2468), - [anon_sym_false] = ACTIONS(2468), - [aux_sym_string_token1] = ACTIONS(2470), - [aux_sym_string_token3] = ACTIONS(2470), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2470), + [sym_identifier] = ACTIONS(3026), + [anon_sym_POUND] = ACTIONS(3028), + [anon_sym_package] = ACTIONS(3026), + [anon_sym_import] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3026), + [anon_sym_throw] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3026), + [anon_sym_default] = ACTIONS(3026), + [anon_sym_cast] = ACTIONS(3026), + [anon_sym_DOLLARtype] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_untyped] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_this] = ACTIONS(3026), + [anon_sym_AT] = ACTIONS(3026), + [anon_sym_AT_COLON] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3026), + [anon_sym_catch] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_do] = ACTIONS(3026), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3028), + [anon_sym_PERCENT] = ACTIONS(3028), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3028), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_GT_GT_GT] = ACTIONS(3028), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3028), + [anon_sym_AMP_AMP] = ACTIONS(3028), + [anon_sym_PIPE_PIPE] = ACTIONS(3028), + [anon_sym_EQ_EQ] = ACTIONS(3028), + [anon_sym_BANG_EQ] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3028), + [anon_sym_EQ_GT] = ACTIONS(3028), + [anon_sym_QMARK_QMARK] = ACTIONS(3028), + [anon_sym_EQ] = ACTIONS(3026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3028), + [anon_sym_null] = ACTIONS(3026), + [anon_sym_macro] = ACTIONS(3026), + [anon_sym_abstract] = ACTIONS(3026), + [anon_sym_static] = ACTIONS(3026), + [anon_sym_public] = ACTIONS(3026), + [anon_sym_private] = ACTIONS(3026), + [anon_sym_extern] = ACTIONS(3026), + [anon_sym_inline] = ACTIONS(3026), + [anon_sym_overload] = ACTIONS(3026), + [anon_sym_override] = ACTIONS(3026), + [anon_sym_final] = ACTIONS(3026), + [anon_sym_class] = ACTIONS(3026), + [anon_sym_interface] = ACTIONS(3026), + [anon_sym_enum] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3026), + [anon_sym_function] = ACTIONS(3026), + [anon_sym_var] = ACTIONS(3026), + [aux_sym_integer_token1] = ACTIONS(3026), + [aux_sym_integer_token2] = ACTIONS(3028), + [aux_sym_float_token1] = ACTIONS(3026), + [aux_sym_float_token2] = ACTIONS(3028), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [aux_sym_string_token1] = ACTIONS(3028), + [aux_sym_string_token3] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3028), [sym__closing_brace_unmarker] = ACTIONS(3), }, [510] = { - [sym_identifier] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(2474), - [anon_sym_package] = ACTIONS(2472), - [anon_sym_import] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2472), - [anon_sym_throw] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2472), - [anon_sym_default] = ACTIONS(2472), - [anon_sym_cast] = ACTIONS(2472), - [anon_sym_DOLLARtype] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2472), - [anon_sym_return] = ACTIONS(2472), - [anon_sym_untyped] = ACTIONS(2472), - [anon_sym_break] = ACTIONS(2472), - [anon_sym_continue] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_this] = ACTIONS(2472), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_AT_COLON] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2472), - [anon_sym_catch] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2472), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_while] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2472), - [anon_sym_new] = ACTIONS(2472), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_DASH] = ACTIONS(2472), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2472), - [anon_sym_PLUS] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_GT_GT_GT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2472), - [anon_sym_PIPE] = ACTIONS(2472), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_EQ_GT] = ACTIONS(2474), - [anon_sym_QMARK_QMARK] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_null] = ACTIONS(2472), - [anon_sym_macro] = ACTIONS(2472), - [anon_sym_abstract] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_public] = ACTIONS(2472), - [anon_sym_private] = ACTIONS(2472), - [anon_sym_extern] = ACTIONS(2472), - [anon_sym_inline] = ACTIONS(2472), - [anon_sym_overload] = ACTIONS(2472), - [anon_sym_override] = ACTIONS(2472), - [anon_sym_final] = ACTIONS(2472), - [anon_sym_class] = ACTIONS(2472), - [anon_sym_interface] = ACTIONS(2472), - [anon_sym_enum] = ACTIONS(2472), - [anon_sym_typedef] = ACTIONS(2472), - [anon_sym_function] = ACTIONS(2472), - [anon_sym_var] = ACTIONS(2472), - [aux_sym_integer_token1] = ACTIONS(2472), - [aux_sym_integer_token2] = ACTIONS(2474), - [aux_sym_float_token1] = ACTIONS(2472), - [aux_sym_float_token2] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2472), - [anon_sym_false] = ACTIONS(2472), - [aux_sym_string_token1] = ACTIONS(2474), - [aux_sym_string_token3] = ACTIONS(2474), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2474), + [sym_identifier] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3032), + [anon_sym_package] = ACTIONS(3030), + [anon_sym_import] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_using] = ACTIONS(3030), + [anon_sym_throw] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_case] = ACTIONS(3030), + [anon_sym_default] = ACTIONS(3030), + [anon_sym_cast] = ACTIONS(3030), + [anon_sym_DOLLARtype] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_untyped] = ACTIONS(3030), + [anon_sym_break] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_this] = ACTIONS(3030), + [anon_sym_AT] = ACTIONS(3030), + [anon_sym_AT_COLON] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3030), + [anon_sym_catch] = ACTIONS(3030), + [anon_sym_else] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_while] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_GT_GT_GT] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_CARET] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_EQ_GT] = ACTIONS(3032), + [anon_sym_QMARK_QMARK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3030), + [anon_sym_macro] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3030), + [anon_sym_static] = ACTIONS(3030), + [anon_sym_public] = ACTIONS(3030), + [anon_sym_private] = ACTIONS(3030), + [anon_sym_extern] = ACTIONS(3030), + [anon_sym_inline] = ACTIONS(3030), + [anon_sym_overload] = ACTIONS(3030), + [anon_sym_override] = ACTIONS(3030), + [anon_sym_final] = ACTIONS(3030), + [anon_sym_class] = ACTIONS(3030), + [anon_sym_interface] = ACTIONS(3030), + [anon_sym_enum] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3030), + [anon_sym_var] = ACTIONS(3030), + [aux_sym_integer_token1] = ACTIONS(3030), + [aux_sym_integer_token2] = ACTIONS(3032), + [aux_sym_float_token1] = ACTIONS(3030), + [aux_sym_float_token2] = ACTIONS(3032), + [anon_sym_true] = ACTIONS(3030), + [anon_sym_false] = ACTIONS(3030), + [aux_sym_string_token1] = ACTIONS(3032), + [aux_sym_string_token3] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3032), [sym__closing_brace_unmarker] = ACTIONS(3), }, [511] = { - [sym_identifier] = ACTIONS(2476), - [anon_sym_POUND] = ACTIONS(2478), - [anon_sym_package] = ACTIONS(2476), - [anon_sym_import] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2476), - [anon_sym_cast] = ACTIONS(2476), - [anon_sym_DOLLARtype] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2476), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_untyped] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2476), - [anon_sym_continue] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(2476), - [anon_sym_AT] = ACTIONS(2476), - [anon_sym_AT_COLON] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(2476), - [anon_sym_else] = ACTIONS(2476), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), - [anon_sym_do] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_LT_LT] = ACTIONS(2478), - [anon_sym_GT_GT] = ACTIONS(2476), - [anon_sym_GT_GT_GT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_PIPE] = ACTIONS(2476), - [anon_sym_CARET] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2478), - [anon_sym_PIPE_PIPE] = ACTIONS(2478), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_LT_EQ] = ACTIONS(2478), - [anon_sym_GT] = ACTIONS(2476), - [anon_sym_GT_EQ] = ACTIONS(2478), - [anon_sym_EQ_GT] = ACTIONS(2478), - [anon_sym_QMARK_QMARK] = ACTIONS(2478), - [anon_sym_EQ] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_null] = ACTIONS(2476), - [anon_sym_macro] = ACTIONS(2476), - [anon_sym_abstract] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_public] = ACTIONS(2476), - [anon_sym_private] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym_inline] = ACTIONS(2476), - [anon_sym_overload] = ACTIONS(2476), - [anon_sym_override] = ACTIONS(2476), - [anon_sym_final] = ACTIONS(2476), - [anon_sym_class] = ACTIONS(2476), - [anon_sym_interface] = ACTIONS(2476), - [anon_sym_enum] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2476), - [anon_sym_function] = ACTIONS(2476), - [anon_sym_var] = ACTIONS(2476), - [aux_sym_integer_token1] = ACTIONS(2476), - [aux_sym_integer_token2] = ACTIONS(2478), - [aux_sym_float_token1] = ACTIONS(2476), - [aux_sym_float_token2] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2476), - [anon_sym_false] = ACTIONS(2476), - [aux_sym_string_token1] = ACTIONS(2478), - [aux_sym_string_token3] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2478), + [sym_identifier] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3036), + [anon_sym_package] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(3034), + [anon_sym_STAR] = ACTIONS(3036), + [anon_sym_using] = ACTIONS(3034), + [anon_sym_throw] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3034), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_case] = ACTIONS(3034), + [anon_sym_default] = ACTIONS(3034), + [anon_sym_cast] = ACTIONS(3034), + [anon_sym_DOLLARtype] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3034), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_untyped] = ACTIONS(3034), + [anon_sym_break] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_this] = ACTIONS(3034), + [anon_sym_AT] = ACTIONS(3034), + [anon_sym_AT_COLON] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3034), + [anon_sym_catch] = ACTIONS(3034), + [anon_sym_else] = ACTIONS(3034), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_while] = ACTIONS(3034), + [anon_sym_do] = ACTIONS(3034), + [anon_sym_new] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_SLASH] = ACTIONS(3034), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3034), + [anon_sym_GT_GT_GT] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_EQ_GT] = ACTIONS(3036), + [anon_sym_QMARK_QMARK] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3036), + [anon_sym_null] = ACTIONS(3034), + [anon_sym_macro] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3034), + [anon_sym_static] = ACTIONS(3034), + [anon_sym_public] = ACTIONS(3034), + [anon_sym_private] = ACTIONS(3034), + [anon_sym_extern] = ACTIONS(3034), + [anon_sym_inline] = ACTIONS(3034), + [anon_sym_overload] = ACTIONS(3034), + [anon_sym_override] = ACTIONS(3034), + [anon_sym_final] = ACTIONS(3034), + [anon_sym_class] = ACTIONS(3034), + [anon_sym_interface] = ACTIONS(3034), + [anon_sym_enum] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3034), + [anon_sym_function] = ACTIONS(3034), + [anon_sym_var] = ACTIONS(3034), + [aux_sym_integer_token1] = ACTIONS(3034), + [aux_sym_integer_token2] = ACTIONS(3036), + [aux_sym_float_token1] = ACTIONS(3034), + [aux_sym_float_token2] = ACTIONS(3036), + [anon_sym_true] = ACTIONS(3034), + [anon_sym_false] = ACTIONS(3034), + [aux_sym_string_token1] = ACTIONS(3036), + [aux_sym_string_token3] = ACTIONS(3036), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3036), [sym__closing_brace_unmarker] = ACTIONS(3), }, [512] = { - [sym_identifier] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(2482), - [anon_sym_package] = ACTIONS(2480), - [anon_sym_import] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_using] = ACTIONS(2480), - [anon_sym_throw] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_switch] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_case] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2480), - [anon_sym_cast] = ACTIONS(2480), - [anon_sym_DOLLARtype] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_untyped] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_this] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2480), - [anon_sym_AT_COLON] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2480), - [anon_sym_catch] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(2480), - [anon_sym_new] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2482), - [anon_sym_GT_GT] = ACTIONS(2480), - [anon_sym_GT_GT_GT] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_CARET] = ACTIONS(2482), - [anon_sym_AMP_AMP] = ACTIONS(2482), - [anon_sym_PIPE_PIPE] = ACTIONS(2482), - [anon_sym_EQ_EQ] = ACTIONS(2482), - [anon_sym_BANG_EQ] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(2480), - [anon_sym_LT_EQ] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2482), - [anon_sym_EQ_GT] = ACTIONS(2482), - [anon_sym_QMARK_QMARK] = ACTIONS(2482), - [anon_sym_EQ] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2482), - [anon_sym_null] = ACTIONS(2480), - [anon_sym_macro] = ACTIONS(2480), - [anon_sym_abstract] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_public] = ACTIONS(2480), - [anon_sym_private] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_inline] = ACTIONS(2480), - [anon_sym_overload] = ACTIONS(2480), - [anon_sym_override] = ACTIONS(2480), - [anon_sym_final] = ACTIONS(2480), - [anon_sym_class] = ACTIONS(2480), - [anon_sym_interface] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2480), - [anon_sym_function] = ACTIONS(2480), - [anon_sym_var] = ACTIONS(2480), - [aux_sym_integer_token1] = ACTIONS(2480), - [aux_sym_integer_token2] = ACTIONS(2482), - [aux_sym_float_token1] = ACTIONS(2480), - [aux_sym_float_token2] = ACTIONS(2482), - [anon_sym_true] = ACTIONS(2480), - [anon_sym_false] = ACTIONS(2480), - [aux_sym_string_token1] = ACTIONS(2482), - [aux_sym_string_token3] = ACTIONS(2482), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2482), + [sym_identifier] = ACTIONS(3038), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_package] = ACTIONS(3038), + [anon_sym_import] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_using] = ACTIONS(3038), + [anon_sym_throw] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_case] = ACTIONS(3038), + [anon_sym_default] = ACTIONS(3038), + [anon_sym_cast] = ACTIONS(3038), + [anon_sym_DOLLARtype] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3038), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_untyped] = ACTIONS(3038), + [anon_sym_break] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_this] = ACTIONS(3038), + [anon_sym_AT] = ACTIONS(3038), + [anon_sym_AT_COLON] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3038), + [anon_sym_catch] = ACTIONS(3038), + [anon_sym_else] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_while] = ACTIONS(3038), + [anon_sym_do] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3038), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_EQ_GT] = ACTIONS(3040), + [anon_sym_QMARK_QMARK] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3038), + [anon_sym_macro] = ACTIONS(3038), + [anon_sym_abstract] = ACTIONS(3038), + [anon_sym_static] = ACTIONS(3038), + [anon_sym_public] = ACTIONS(3038), + [anon_sym_private] = ACTIONS(3038), + [anon_sym_extern] = ACTIONS(3038), + [anon_sym_inline] = ACTIONS(3038), + [anon_sym_overload] = ACTIONS(3038), + [anon_sym_override] = ACTIONS(3038), + [anon_sym_final] = ACTIONS(3038), + [anon_sym_class] = ACTIONS(3038), + [anon_sym_interface] = ACTIONS(3038), + [anon_sym_enum] = ACTIONS(3038), + [anon_sym_typedef] = ACTIONS(3038), + [anon_sym_function] = ACTIONS(3038), + [anon_sym_var] = ACTIONS(3038), + [aux_sym_integer_token1] = ACTIONS(3038), + [aux_sym_integer_token2] = ACTIONS(3040), + [aux_sym_float_token1] = ACTIONS(3038), + [aux_sym_float_token2] = ACTIONS(3040), + [anon_sym_true] = ACTIONS(3038), + [anon_sym_false] = ACTIONS(3038), + [aux_sym_string_token1] = ACTIONS(3040), + [aux_sym_string_token3] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3040), [sym__closing_brace_unmarker] = ACTIONS(3), }, [513] = { - [sym_identifier] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(2486), - [anon_sym_package] = ACTIONS(2484), - [anon_sym_import] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_using] = ACTIONS(2484), - [anon_sym_throw] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_switch] = ACTIONS(2484), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_case] = ACTIONS(2484), - [anon_sym_default] = ACTIONS(2484), - [anon_sym_cast] = ACTIONS(2484), - [anon_sym_DOLLARtype] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2484), - [anon_sym_return] = ACTIONS(2484), - [anon_sym_untyped] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_this] = ACTIONS(2484), - [anon_sym_AT] = ACTIONS(2484), - [anon_sym_AT_COLON] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2484), - [anon_sym_catch] = ACTIONS(2484), - [anon_sym_else] = ACTIONS(2484), - [anon_sym_if] = ACTIONS(2484), - [anon_sym_while] = ACTIONS(2484), - [anon_sym_do] = ACTIONS(2484), - [anon_sym_new] = ACTIONS(2484), - [anon_sym_TILDE] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(2484), - [anon_sym_DASH] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2486), - [anon_sym_DASH_DASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2484), - [anon_sym_PLUS] = ACTIONS(2484), - [anon_sym_LT_LT] = ACTIONS(2486), - [anon_sym_GT_GT] = ACTIONS(2484), - [anon_sym_GT_GT_GT] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2484), - [anon_sym_PIPE] = ACTIONS(2484), - [anon_sym_CARET] = ACTIONS(2486), - [anon_sym_AMP_AMP] = ACTIONS(2486), - [anon_sym_PIPE_PIPE] = ACTIONS(2486), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_LT] = ACTIONS(2484), - [anon_sym_LT_EQ] = ACTIONS(2486), - [anon_sym_GT] = ACTIONS(2484), - [anon_sym_GT_EQ] = ACTIONS(2486), - [anon_sym_EQ_GT] = ACTIONS(2486), - [anon_sym_QMARK_QMARK] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2486), - [anon_sym_null] = ACTIONS(2484), - [anon_sym_macro] = ACTIONS(2484), - [anon_sym_abstract] = ACTIONS(2484), - [anon_sym_static] = ACTIONS(2484), - [anon_sym_public] = ACTIONS(2484), - [anon_sym_private] = ACTIONS(2484), - [anon_sym_extern] = ACTIONS(2484), - [anon_sym_inline] = ACTIONS(2484), - [anon_sym_overload] = ACTIONS(2484), - [anon_sym_override] = ACTIONS(2484), - [anon_sym_final] = ACTIONS(2484), - [anon_sym_class] = ACTIONS(2484), - [anon_sym_interface] = ACTIONS(2484), - [anon_sym_enum] = ACTIONS(2484), - [anon_sym_typedef] = ACTIONS(2484), - [anon_sym_function] = ACTIONS(2484), - [anon_sym_var] = ACTIONS(2484), - [aux_sym_integer_token1] = ACTIONS(2484), - [aux_sym_integer_token2] = ACTIONS(2486), - [aux_sym_float_token1] = ACTIONS(2484), - [aux_sym_float_token2] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2484), - [anon_sym_false] = ACTIONS(2484), - [aux_sym_string_token1] = ACTIONS(2486), - [aux_sym_string_token3] = ACTIONS(2486), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2486), + [sym_identifier] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_package] = ACTIONS(3042), + [anon_sym_import] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_using] = ACTIONS(3042), + [anon_sym_throw] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3042), + [anon_sym_default] = ACTIONS(3042), + [anon_sym_cast] = ACTIONS(3042), + [anon_sym_DOLLARtype] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_untyped] = ACTIONS(3042), + [anon_sym_break] = ACTIONS(3042), + [anon_sym_continue] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_this] = ACTIONS(3042), + [anon_sym_AT] = ACTIONS(3042), + [anon_sym_AT_COLON] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_catch] = ACTIONS(3042), + [anon_sym_else] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3042), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_EQ_GT] = ACTIONS(3044), + [anon_sym_QMARK_QMARK] = ACTIONS(3044), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_macro] = ACTIONS(3042), + [anon_sym_abstract] = ACTIONS(3042), + [anon_sym_static] = ACTIONS(3042), + [anon_sym_public] = ACTIONS(3042), + [anon_sym_private] = ACTIONS(3042), + [anon_sym_extern] = ACTIONS(3042), + [anon_sym_inline] = ACTIONS(3042), + [anon_sym_overload] = ACTIONS(3042), + [anon_sym_override] = ACTIONS(3042), + [anon_sym_final] = ACTIONS(3042), + [anon_sym_class] = ACTIONS(3042), + [anon_sym_interface] = ACTIONS(3042), + [anon_sym_enum] = ACTIONS(3042), + [anon_sym_typedef] = ACTIONS(3042), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_var] = ACTIONS(3042), + [aux_sym_integer_token1] = ACTIONS(3042), + [aux_sym_integer_token2] = ACTIONS(3044), + [aux_sym_float_token1] = ACTIONS(3042), + [aux_sym_float_token2] = ACTIONS(3044), + [anon_sym_true] = ACTIONS(3042), + [anon_sym_false] = ACTIONS(3042), + [aux_sym_string_token1] = ACTIONS(3044), + [aux_sym_string_token3] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3044), [sym__closing_brace_unmarker] = ACTIONS(3), }, [514] = { - [sym_identifier] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(2490), - [anon_sym_package] = ACTIONS(2488), - [anon_sym_import] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_using] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_case] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_cast] = ACTIONS(2488), - [anon_sym_DOLLARtype] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_untyped] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2490), - [anon_sym_this] = ACTIONS(2488), - [anon_sym_AT] = ACTIONS(2488), - [anon_sym_AT_COLON] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_catch] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2488), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2490), - [anon_sym_GT_GT] = ACTIONS(2488), - [anon_sym_GT_GT_GT] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_CARET] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_PIPE_PIPE] = ACTIONS(2490), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_LT_EQ] = ACTIONS(2490), - [anon_sym_GT] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2490), - [anon_sym_EQ_GT] = ACTIONS(2490), - [anon_sym_QMARK_QMARK] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2490), - [anon_sym_null] = ACTIONS(2488), - [anon_sym_macro] = ACTIONS(2488), - [anon_sym_abstract] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_overload] = ACTIONS(2488), - [anon_sym_override] = ACTIONS(2488), - [anon_sym_final] = ACTIONS(2488), - [anon_sym_class] = ACTIONS(2488), - [anon_sym_interface] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_typedef] = ACTIONS(2488), - [anon_sym_function] = ACTIONS(2488), - [anon_sym_var] = ACTIONS(2488), - [aux_sym_integer_token1] = ACTIONS(2488), - [aux_sym_integer_token2] = ACTIONS(2490), - [aux_sym_float_token1] = ACTIONS(2488), - [aux_sym_float_token2] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2488), - [anon_sym_false] = ACTIONS(2488), - [aux_sym_string_token1] = ACTIONS(2490), - [aux_sym_string_token3] = ACTIONS(2490), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2490), + [sym_identifier] = ACTIONS(3046), + [anon_sym_POUND] = ACTIONS(3048), + [anon_sym_package] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_cast] = ACTIONS(3046), + [anon_sym_DOLLARtype] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_untyped] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3046), + [anon_sym_AT] = ACTIONS(3046), + [anon_sym_AT_COLON] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(3048), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_EQ_EQ] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3048), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_GT_EQ] = ACTIONS(3048), + [anon_sym_EQ_GT] = ACTIONS(3048), + [anon_sym_QMARK_QMARK] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_macro] = ACTIONS(3046), + [anon_sym_abstract] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym_overload] = ACTIONS(3046), + [anon_sym_override] = ACTIONS(3046), + [anon_sym_final] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_var] = ACTIONS(3046), + [aux_sym_integer_token1] = ACTIONS(3046), + [aux_sym_integer_token2] = ACTIONS(3048), + [aux_sym_float_token1] = ACTIONS(3046), + [aux_sym_float_token2] = ACTIONS(3048), + [anon_sym_true] = ACTIONS(3046), + [anon_sym_false] = ACTIONS(3046), + [aux_sym_string_token1] = ACTIONS(3048), + [aux_sym_string_token3] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3048), [sym__closing_brace_unmarker] = ACTIONS(3), }, [515] = { - [sym_identifier] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(2494), - [anon_sym_package] = ACTIONS(2492), - [anon_sym_import] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_using] = ACTIONS(2492), - [anon_sym_throw] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_switch] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_case] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_cast] = ACTIONS(2492), - [anon_sym_DOLLARtype] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_untyped] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_this] = ACTIONS(2492), - [anon_sym_AT] = ACTIONS(2492), - [anon_sym_AT_COLON] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_catch] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2494), - [anon_sym_GT_GT] = ACTIONS(2492), - [anon_sym_GT_GT_GT] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_CARET] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_PIPE_PIPE] = ACTIONS(2494), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_LT_EQ] = ACTIONS(2494), - [anon_sym_GT] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2494), - [anon_sym_EQ_GT] = ACTIONS(2494), - [anon_sym_QMARK_QMARK] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_macro] = ACTIONS(2492), - [anon_sym_abstract] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_public] = ACTIONS(2492), - [anon_sym_private] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_inline] = ACTIONS(2492), - [anon_sym_overload] = ACTIONS(2492), - [anon_sym_override] = ACTIONS(2492), - [anon_sym_final] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2492), - [anon_sym_interface] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_typedef] = ACTIONS(2492), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_var] = ACTIONS(2492), - [aux_sym_integer_token1] = ACTIONS(2492), - [aux_sym_integer_token2] = ACTIONS(2494), - [aux_sym_float_token1] = ACTIONS(2492), - [aux_sym_float_token2] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2492), - [anon_sym_false] = ACTIONS(2492), - [aux_sym_string_token1] = ACTIONS(2494), - [aux_sym_string_token3] = ACTIONS(2494), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2494), + [sym_identifier] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_package] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3050), + [anon_sym_default] = ACTIONS(3050), + [anon_sym_cast] = ACTIONS(3050), + [anon_sym_DOLLARtype] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_untyped] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(3050), + [anon_sym_AT_COLON] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_catch] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_EQ_GT] = ACTIONS(3052), + [anon_sym_QMARK_QMARK] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_macro] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_static] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_overload] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_class] = ACTIONS(3050), + [anon_sym_interface] = ACTIONS(3050), + [anon_sym_enum] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3050), + [anon_sym_var] = ACTIONS(3050), + [aux_sym_integer_token1] = ACTIONS(3050), + [aux_sym_integer_token2] = ACTIONS(3052), + [aux_sym_float_token1] = ACTIONS(3050), + [aux_sym_float_token2] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [aux_sym_string_token1] = ACTIONS(3052), + [aux_sym_string_token3] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3052), [sym__closing_brace_unmarker] = ACTIONS(3), }, [516] = { - [sym_identifier] = ACTIONS(2496), - [anon_sym_POUND] = ACTIONS(2498), - [anon_sym_package] = ACTIONS(2496), - [anon_sym_import] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_using] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_case] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_cast] = ACTIONS(2496), - [anon_sym_DOLLARtype] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_untyped] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2498), - [anon_sym_this] = ACTIONS(2496), - [anon_sym_AT] = ACTIONS(2496), - [anon_sym_AT_COLON] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_catch] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2498), - [anon_sym_GT_GT] = ACTIONS(2496), - [anon_sym_GT_GT_GT] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2496), - [anon_sym_CARET] = ACTIONS(2498), - [anon_sym_AMP_AMP] = ACTIONS(2498), - [anon_sym_PIPE_PIPE] = ACTIONS(2498), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_LT_EQ] = ACTIONS(2498), - [anon_sym_GT] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2498), - [anon_sym_EQ_GT] = ACTIONS(2498), - [anon_sym_QMARK_QMARK] = ACTIONS(2498), - [anon_sym_EQ] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2496), - [anon_sym_macro] = ACTIONS(2496), - [anon_sym_abstract] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_public] = ACTIONS(2496), - [anon_sym_private] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_overload] = ACTIONS(2496), - [anon_sym_override] = ACTIONS(2496), - [anon_sym_final] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_interface] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_typedef] = ACTIONS(2496), - [anon_sym_function] = ACTIONS(2496), - [anon_sym_var] = ACTIONS(2496), - [aux_sym_integer_token1] = ACTIONS(2496), - [aux_sym_integer_token2] = ACTIONS(2498), - [aux_sym_float_token1] = ACTIONS(2496), - [aux_sym_float_token2] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2496), - [anon_sym_false] = ACTIONS(2496), - [aux_sym_string_token1] = ACTIONS(2498), - [aux_sym_string_token3] = ACTIONS(2498), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2498), + [sym_identifier] = ACTIONS(3054), + [anon_sym_POUND] = ACTIONS(3056), + [anon_sym_package] = ACTIONS(3054), + [anon_sym_import] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_case] = ACTIONS(3054), + [anon_sym_default] = ACTIONS(3054), + [anon_sym_cast] = ACTIONS(3054), + [anon_sym_DOLLARtype] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_untyped] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_AT] = ACTIONS(3054), + [anon_sym_AT_COLON] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_catch] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_EQ_GT] = ACTIONS(3056), + [anon_sym_QMARK_QMARK] = ACTIONS(3056), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_macro] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_extern] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_overload] = ACTIONS(3054), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_class] = ACTIONS(3054), + [anon_sym_interface] = ACTIONS(3054), + [anon_sym_enum] = ACTIONS(3054), + [anon_sym_typedef] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_var] = ACTIONS(3054), + [aux_sym_integer_token1] = ACTIONS(3054), + [aux_sym_integer_token2] = ACTIONS(3056), + [aux_sym_float_token1] = ACTIONS(3054), + [aux_sym_float_token2] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [aux_sym_string_token1] = ACTIONS(3056), + [aux_sym_string_token3] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3056), [sym__closing_brace_unmarker] = ACTIONS(3), }, [517] = { - [sym_identifier] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(2502), - [anon_sym_package] = ACTIONS(2500), - [anon_sym_import] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_cast] = ACTIONS(2500), - [anon_sym_DOLLARtype] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_untyped] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_this] = ACTIONS(2500), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_AT_COLON] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_catch] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2502), - [anon_sym_GT_GT] = ACTIONS(2500), - [anon_sym_GT_GT_GT] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2500), - [anon_sym_CARET] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_PIPE_PIPE] = ACTIONS(2502), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2500), - [anon_sym_LT_EQ] = ACTIONS(2502), - [anon_sym_GT] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2502), - [anon_sym_EQ_GT] = ACTIONS(2502), - [anon_sym_QMARK_QMARK] = ACTIONS(2502), - [anon_sym_EQ] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), - [anon_sym_null] = ACTIONS(2500), - [anon_sym_macro] = ACTIONS(2500), - [anon_sym_abstract] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_public] = ACTIONS(2500), - [anon_sym_private] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_overload] = ACTIONS(2500), - [anon_sym_override] = ACTIONS(2500), - [anon_sym_final] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_interface] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_function] = ACTIONS(2500), - [anon_sym_var] = ACTIONS(2500), - [aux_sym_integer_token1] = ACTIONS(2500), - [aux_sym_integer_token2] = ACTIONS(2502), - [aux_sym_float_token1] = ACTIONS(2500), - [aux_sym_float_token2] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2500), - [anon_sym_false] = ACTIONS(2500), - [aux_sym_string_token1] = ACTIONS(2502), - [aux_sym_string_token3] = ACTIONS(2502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2502), + [sym_identifier] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3060), + [anon_sym_package] = ACTIONS(3058), + [anon_sym_import] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3058), + [anon_sym_default] = ACTIONS(3058), + [anon_sym_cast] = ACTIONS(3058), + [anon_sym_DOLLARtype] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_untyped] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_AT] = ACTIONS(3058), + [anon_sym_AT_COLON] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_catch] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_EQ_GT] = ACTIONS(3060), + [anon_sym_QMARK_QMARK] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_macro] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_static] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_extern] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_overload] = ACTIONS(3058), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_typedef] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_var] = ACTIONS(3058), + [aux_sym_integer_token1] = ACTIONS(3058), + [aux_sym_integer_token2] = ACTIONS(3060), + [aux_sym_float_token1] = ACTIONS(3058), + [aux_sym_float_token2] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [aux_sym_string_token1] = ACTIONS(3060), + [aux_sym_string_token3] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3060), [sym__closing_brace_unmarker] = ACTIONS(3), }, [518] = { - [sym_identifier] = ACTIONS(2504), - [anon_sym_POUND] = ACTIONS(2506), - [anon_sym_package] = ACTIONS(2504), - [anon_sym_import] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_using] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_case] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_cast] = ACTIONS(2504), - [anon_sym_DOLLARtype] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_untyped] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2506), - [anon_sym_this] = ACTIONS(2504), - [anon_sym_AT] = ACTIONS(2504), - [anon_sym_AT_COLON] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_catch] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(2504), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2506), - [anon_sym_GT_GT] = ACTIONS(2504), - [anon_sym_GT_GT_GT] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2504), - [anon_sym_CARET] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_PIPE_PIPE] = ACTIONS(2506), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_LT_EQ] = ACTIONS(2506), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2506), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_QMARK_QMARK] = ACTIONS(2506), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2506), - [anon_sym_null] = ACTIONS(2504), - [anon_sym_macro] = ACTIONS(2504), - [anon_sym_abstract] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_public] = ACTIONS(2504), - [anon_sym_private] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_overload] = ACTIONS(2504), - [anon_sym_override] = ACTIONS(2504), - [anon_sym_final] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2504), - [anon_sym_interface] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_typedef] = ACTIONS(2504), - [anon_sym_function] = ACTIONS(2504), - [anon_sym_var] = ACTIONS(2504), - [aux_sym_integer_token1] = ACTIONS(2504), - [aux_sym_integer_token2] = ACTIONS(2506), - [aux_sym_float_token1] = ACTIONS(2504), - [aux_sym_float_token2] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2504), - [anon_sym_false] = ACTIONS(2504), - [aux_sym_string_token1] = ACTIONS(2506), - [aux_sym_string_token3] = ACTIONS(2506), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2506), + [sym_identifier] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3064), + [anon_sym_package] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_using] = ACTIONS(3062), + [anon_sym_throw] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3064), + [anon_sym_switch] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3064), + [anon_sym_case] = ACTIONS(3062), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_cast] = ACTIONS(3062), + [anon_sym_DOLLARtype] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_untyped] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3062), + [anon_sym_continue] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_this] = ACTIONS(3062), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_AT_COLON] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_catch] = ACTIONS(3062), + [anon_sym_else] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(3064), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_PIPE_PIPE] = ACTIONS(3064), + [anon_sym_EQ_EQ] = ACTIONS(3064), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_LT_EQ] = ACTIONS(3064), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3064), + [anon_sym_EQ_GT] = ACTIONS(3064), + [anon_sym_QMARK_QMARK] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(3062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_macro] = ACTIONS(3062), + [anon_sym_abstract] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3062), + [anon_sym_public] = ACTIONS(3062), + [anon_sym_private] = ACTIONS(3062), + [anon_sym_extern] = ACTIONS(3062), + [anon_sym_inline] = ACTIONS(3062), + [anon_sym_overload] = ACTIONS(3062), + [anon_sym_override] = ACTIONS(3062), + [anon_sym_final] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3062), + [anon_sym_interface] = ACTIONS(3062), + [anon_sym_enum] = ACTIONS(3062), + [anon_sym_typedef] = ACTIONS(3062), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_var] = ACTIONS(3062), + [aux_sym_integer_token1] = ACTIONS(3062), + [aux_sym_integer_token2] = ACTIONS(3064), + [aux_sym_float_token1] = ACTIONS(3062), + [aux_sym_float_token2] = ACTIONS(3064), + [anon_sym_true] = ACTIONS(3062), + [anon_sym_false] = ACTIONS(3062), + [aux_sym_string_token1] = ACTIONS(3064), + [aux_sym_string_token3] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3064), [sym__closing_brace_unmarker] = ACTIONS(3), }, [519] = { - [sym_identifier] = ACTIONS(2508), - [anon_sym_POUND] = ACTIONS(2510), - [anon_sym_package] = ACTIONS(2508), - [anon_sym_import] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2508), - [anon_sym_throw] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2508), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_cast] = ACTIONS(2508), - [anon_sym_DOLLARtype] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_untyped] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_this] = ACTIONS(2508), - [anon_sym_AT] = ACTIONS(2508), - [anon_sym_AT_COLON] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_catch] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_do] = ACTIONS(2508), - [anon_sym_new] = ACTIONS(2508), - [anon_sym_TILDE] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2510), - [anon_sym_GT_GT] = ACTIONS(2508), - [anon_sym_GT_GT_GT] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_CARET] = ACTIONS(2510), - [anon_sym_AMP_AMP] = ACTIONS(2510), - [anon_sym_PIPE_PIPE] = ACTIONS(2510), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_LT_EQ] = ACTIONS(2510), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2510), - [anon_sym_EQ_GT] = ACTIONS(2510), - [anon_sym_QMARK_QMARK] = ACTIONS(2510), - [anon_sym_EQ] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2508), - [anon_sym_macro] = ACTIONS(2508), - [anon_sym_abstract] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_public] = ACTIONS(2508), - [anon_sym_private] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_inline] = ACTIONS(2508), - [anon_sym_overload] = ACTIONS(2508), - [anon_sym_override] = ACTIONS(2508), - [anon_sym_final] = ACTIONS(2508), - [anon_sym_class] = ACTIONS(2508), - [anon_sym_interface] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2508), - [anon_sym_typedef] = ACTIONS(2508), - [anon_sym_function] = ACTIONS(2508), - [anon_sym_var] = ACTIONS(2508), - [aux_sym_integer_token1] = ACTIONS(2508), - [aux_sym_integer_token2] = ACTIONS(2510), - [aux_sym_float_token1] = ACTIONS(2508), - [aux_sym_float_token2] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [aux_sym_string_token1] = ACTIONS(2510), - [aux_sym_string_token3] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2510), + [sym_identifier] = ACTIONS(3066), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_package] = ACTIONS(3066), + [anon_sym_import] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_using] = ACTIONS(3066), + [anon_sym_throw] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_case] = ACTIONS(3066), + [anon_sym_default] = ACTIONS(3066), + [anon_sym_cast] = ACTIONS(3066), + [anon_sym_DOLLARtype] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_untyped] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_this] = ACTIONS(3066), + [anon_sym_AT] = ACTIONS(3066), + [anon_sym_AT_COLON] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3066), + [anon_sym_catch] = ACTIONS(3066), + [anon_sym_else] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_while] = ACTIONS(3066), + [anon_sym_do] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_EQ_GT] = ACTIONS(3068), + [anon_sym_QMARK_QMARK] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3066), + [anon_sym_macro] = ACTIONS(3066), + [anon_sym_abstract] = ACTIONS(3066), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_extern] = ACTIONS(3066), + [anon_sym_inline] = ACTIONS(3066), + [anon_sym_overload] = ACTIONS(3066), + [anon_sym_override] = ACTIONS(3066), + [anon_sym_final] = ACTIONS(3066), + [anon_sym_class] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), + [anon_sym_typedef] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3066), + [anon_sym_var] = ACTIONS(3066), + [aux_sym_integer_token1] = ACTIONS(3066), + [aux_sym_integer_token2] = ACTIONS(3068), + [aux_sym_float_token1] = ACTIONS(3066), + [aux_sym_float_token2] = ACTIONS(3068), + [anon_sym_true] = ACTIONS(3066), + [anon_sym_false] = ACTIONS(3066), + [aux_sym_string_token1] = ACTIONS(3068), + [aux_sym_string_token3] = ACTIONS(3068), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3068), [sym__closing_brace_unmarker] = ACTIONS(3), }, [520] = { - [sym_identifier] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(2514), - [anon_sym_package] = ACTIONS(2512), - [anon_sym_import] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_using] = ACTIONS(2512), - [anon_sym_throw] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2514), - [anon_sym_case] = ACTIONS(2512), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_cast] = ACTIONS(2512), - [anon_sym_DOLLARtype] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_untyped] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_this] = ACTIONS(2512), - [anon_sym_AT] = ACTIONS(2512), - [anon_sym_AT_COLON] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2512), - [anon_sym_catch] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_do] = ACTIONS(2512), - [anon_sym_new] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2514), - [anon_sym_GT_GT] = ACTIONS(2512), - [anon_sym_GT_GT_GT] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2512), - [anon_sym_CARET] = ACTIONS(2514), - [anon_sym_AMP_AMP] = ACTIONS(2514), - [anon_sym_PIPE_PIPE] = ACTIONS(2514), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2512), - [anon_sym_LT_EQ] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2514), - [anon_sym_EQ_GT] = ACTIONS(2514), - [anon_sym_QMARK_QMARK] = ACTIONS(2514), - [anon_sym_EQ] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2514), - [anon_sym_null] = ACTIONS(2512), - [anon_sym_macro] = ACTIONS(2512), - [anon_sym_abstract] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_public] = ACTIONS(2512), - [anon_sym_private] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_overload] = ACTIONS(2512), - [anon_sym_override] = ACTIONS(2512), - [anon_sym_final] = ACTIONS(2512), - [anon_sym_class] = ACTIONS(2512), - [anon_sym_interface] = ACTIONS(2512), - [anon_sym_enum] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2512), - [anon_sym_function] = ACTIONS(2512), - [anon_sym_var] = ACTIONS(2512), - [aux_sym_integer_token1] = ACTIONS(2512), - [aux_sym_integer_token2] = ACTIONS(2514), - [aux_sym_float_token1] = ACTIONS(2512), - [aux_sym_float_token2] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2512), - [anon_sym_false] = ACTIONS(2512), - [aux_sym_string_token1] = ACTIONS(2514), - [aux_sym_string_token3] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2514), + [sym_identifier] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_package] = ACTIONS(3070), + [anon_sym_import] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_switch] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_case] = ACTIONS(3070), + [anon_sym_default] = ACTIONS(3070), + [anon_sym_cast] = ACTIONS(3070), + [anon_sym_DOLLARtype] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_untyped] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3070), + [anon_sym_AT_COLON] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_catch] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3070), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3070), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_EQ_GT] = ACTIONS(3072), + [anon_sym_QMARK_QMARK] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_macro] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_extern] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_overload] = ACTIONS(3070), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_class] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [anon_sym_typedef] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_var] = ACTIONS(3070), + [aux_sym_integer_token1] = ACTIONS(3070), + [aux_sym_integer_token2] = ACTIONS(3072), + [aux_sym_float_token1] = ACTIONS(3070), + [aux_sym_float_token2] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [aux_sym_string_token1] = ACTIONS(3072), + [aux_sym_string_token3] = ACTIONS(3072), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3072), [sym__closing_brace_unmarker] = ACTIONS(3), }, [521] = { - [sym_identifier] = ACTIONS(2516), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_package] = ACTIONS(2516), - [anon_sym_import] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_using] = ACTIONS(2516), - [anon_sym_throw] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2516), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2516), - [anon_sym_default] = ACTIONS(2516), - [anon_sym_cast] = ACTIONS(2516), - [anon_sym_DOLLARtype] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_untyped] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_this] = ACTIONS(2516), - [anon_sym_AT] = ACTIONS(2516), - [anon_sym_AT_COLON] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2516), - [anon_sym_catch] = ACTIONS(2516), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_do] = ACTIONS(2516), - [anon_sym_new] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2516), - [anon_sym_PLUS] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2518), - [anon_sym_GT_GT] = ACTIONS(2516), - [anon_sym_GT_GT_GT] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2516), - [anon_sym_CARET] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2516), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_EQ_GT] = ACTIONS(2518), - [anon_sym_QMARK_QMARK] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), - [anon_sym_null] = ACTIONS(2516), - [anon_sym_macro] = ACTIONS(2516), - [anon_sym_abstract] = ACTIONS(2516), - [anon_sym_static] = ACTIONS(2516), - [anon_sym_public] = ACTIONS(2516), - [anon_sym_private] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_inline] = ACTIONS(2516), - [anon_sym_overload] = ACTIONS(2516), - [anon_sym_override] = ACTIONS(2516), - [anon_sym_final] = ACTIONS(2516), - [anon_sym_class] = ACTIONS(2516), - [anon_sym_interface] = ACTIONS(2516), - [anon_sym_enum] = ACTIONS(2516), - [anon_sym_typedef] = ACTIONS(2516), - [anon_sym_function] = ACTIONS(2516), - [anon_sym_var] = ACTIONS(2516), - [aux_sym_integer_token1] = ACTIONS(2516), - [aux_sym_integer_token2] = ACTIONS(2518), - [aux_sym_float_token1] = ACTIONS(2516), - [aux_sym_float_token2] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2516), - [anon_sym_false] = ACTIONS(2516), - [aux_sym_string_token1] = ACTIONS(2518), - [aux_sym_string_token3] = ACTIONS(2518), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2518), + [sym_identifier] = ACTIONS(3074), + [anon_sym_POUND] = ACTIONS(3076), + [anon_sym_package] = ACTIONS(3074), + [anon_sym_import] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_switch] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_case] = ACTIONS(3074), + [anon_sym_default] = ACTIONS(3074), + [anon_sym_cast] = ACTIONS(3074), + [anon_sym_DOLLARtype] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_untyped] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_AT_COLON] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_catch] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_do] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_LT_LT] = ACTIONS(3076), + [anon_sym_GT_GT] = ACTIONS(3074), + [anon_sym_GT_GT_GT] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_PIPE] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_EQ_GT] = ACTIONS(3076), + [anon_sym_QMARK_QMARK] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_macro] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_extern] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_overload] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_class] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [anon_sym_typedef] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_var] = ACTIONS(3074), + [aux_sym_integer_token1] = ACTIONS(3074), + [aux_sym_integer_token2] = ACTIONS(3076), + [aux_sym_float_token1] = ACTIONS(3074), + [aux_sym_float_token2] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [aux_sym_string_token1] = ACTIONS(3076), + [aux_sym_string_token3] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3076), [sym__closing_brace_unmarker] = ACTIONS(3), }, [522] = { - [sym_identifier] = ACTIONS(2520), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_package] = ACTIONS(2520), - [anon_sym_import] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2520), - [anon_sym_throw] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_cast] = ACTIONS(2520), - [anon_sym_DOLLARtype] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_untyped] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_this] = ACTIONS(2520), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_AT_COLON] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_catch] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2522), - [anon_sym_GT_GT] = ACTIONS(2520), - [anon_sym_GT_GT_GT] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_CARET] = ACTIONS(2522), - [anon_sym_AMP_AMP] = ACTIONS(2522), - [anon_sym_PIPE_PIPE] = ACTIONS(2522), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_LT_EQ] = ACTIONS(2522), - [anon_sym_GT] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2522), - [anon_sym_EQ_GT] = ACTIONS(2522), - [anon_sym_QMARK_QMARK] = ACTIONS(2522), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2522), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_macro] = ACTIONS(2520), - [anon_sym_abstract] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_public] = ACTIONS(2520), - [anon_sym_private] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_inline] = ACTIONS(2520), - [anon_sym_overload] = ACTIONS(2520), - [anon_sym_override] = ACTIONS(2520), - [anon_sym_final] = ACTIONS(2520), - [anon_sym_class] = ACTIONS(2520), - [anon_sym_interface] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_var] = ACTIONS(2520), - [aux_sym_integer_token1] = ACTIONS(2520), - [aux_sym_integer_token2] = ACTIONS(2522), - [aux_sym_float_token1] = ACTIONS(2520), - [aux_sym_float_token2] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [aux_sym_string_token1] = ACTIONS(2522), - [aux_sym_string_token3] = ACTIONS(2522), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2522), + [sym_identifier] = ACTIONS(3078), + [anon_sym_POUND] = ACTIONS(3080), + [anon_sym_package] = ACTIONS(3078), + [anon_sym_import] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_switch] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_case] = ACTIONS(3078), + [anon_sym_default] = ACTIONS(3078), + [anon_sym_cast] = ACTIONS(3078), + [anon_sym_DOLLARtype] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_untyped] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_this] = ACTIONS(3078), + [anon_sym_AT] = ACTIONS(3078), + [anon_sym_AT_COLON] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_catch] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(3080), + [anon_sym_QMARK_QMARK] = ACTIONS(3080), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_macro] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_overload] = ACTIONS(3078), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_interface] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_var] = ACTIONS(3078), + [aux_sym_integer_token1] = ACTIONS(3078), + [aux_sym_integer_token2] = ACTIONS(3080), + [aux_sym_float_token1] = ACTIONS(3078), + [aux_sym_float_token2] = ACTIONS(3080), + [anon_sym_true] = ACTIONS(3078), + [anon_sym_false] = ACTIONS(3078), + [aux_sym_string_token1] = ACTIONS(3080), + [aux_sym_string_token3] = ACTIONS(3080), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3080), [sym__closing_brace_unmarker] = ACTIONS(3), }, [523] = { - [sym_identifier] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(2526), - [anon_sym_package] = ACTIONS(2524), - [anon_sym_import] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2524), - [anon_sym_throw] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_cast] = ACTIONS(2524), - [anon_sym_DOLLARtype] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_untyped] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_this] = ACTIONS(2524), - [anon_sym_AT] = ACTIONS(2524), - [anon_sym_AT_COLON] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_catch] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_do] = ACTIONS(2524), - [anon_sym_new] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2526), - [anon_sym_GT_GT] = ACTIONS(2524), - [anon_sym_GT_GT_GT] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2524), - [anon_sym_CARET] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_PIPE_PIPE] = ACTIONS(2526), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_LT_EQ] = ACTIONS(2526), - [anon_sym_GT] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2526), - [anon_sym_EQ_GT] = ACTIONS(2526), - [anon_sym_QMARK_QMARK] = ACTIONS(2526), - [anon_sym_EQ] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2524), - [anon_sym_macro] = ACTIONS(2524), - [anon_sym_abstract] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_public] = ACTIONS(2524), - [anon_sym_private] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_inline] = ACTIONS(2524), - [anon_sym_overload] = ACTIONS(2524), - [anon_sym_override] = ACTIONS(2524), - [anon_sym_final] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2524), - [anon_sym_interface] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2524), - [anon_sym_function] = ACTIONS(2524), - [anon_sym_var] = ACTIONS(2524), - [aux_sym_integer_token1] = ACTIONS(2524), - [aux_sym_integer_token2] = ACTIONS(2526), - [aux_sym_float_token1] = ACTIONS(2524), - [aux_sym_float_token2] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [aux_sym_string_token1] = ACTIONS(2526), - [aux_sym_string_token3] = ACTIONS(2526), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2526), + [sym_identifier] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(3084), + [anon_sym_package] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_case] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_cast] = ACTIONS(3082), + [anon_sym_DOLLARtype] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_untyped] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_this] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_AT_COLON] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_catch] = ACTIONS(3082), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3082), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3082), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_EQ_GT] = ACTIONS(3084), + [anon_sym_QMARK_QMARK] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), + [anon_sym_null] = ACTIONS(3082), + [anon_sym_macro] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_overload] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_var] = ACTIONS(3082), + [aux_sym_integer_token1] = ACTIONS(3082), + [aux_sym_integer_token2] = ACTIONS(3084), + [aux_sym_float_token1] = ACTIONS(3082), + [aux_sym_float_token2] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3082), + [anon_sym_false] = ACTIONS(3082), + [aux_sym_string_token1] = ACTIONS(3084), + [aux_sym_string_token3] = ACTIONS(3084), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3084), [sym__closing_brace_unmarker] = ACTIONS(3), }, [524] = { - [sym_identifier] = ACTIONS(2528), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_package] = ACTIONS(2528), - [anon_sym_import] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_using] = ACTIONS(2528), - [anon_sym_throw] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_switch] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_case] = ACTIONS(2528), - [anon_sym_default] = ACTIONS(2528), - [anon_sym_cast] = ACTIONS(2528), - [anon_sym_DOLLARtype] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_untyped] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_this] = ACTIONS(2528), - [anon_sym_AT] = ACTIONS(2528), - [anon_sym_AT_COLON] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_catch] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2528), - [anon_sym_GT_GT_GT] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_AMP_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_LT_EQ] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2530), - [anon_sym_EQ_GT] = ACTIONS(2530), - [anon_sym_QMARK_QMARK] = ACTIONS(2530), - [anon_sym_EQ] = ACTIONS(2528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_macro] = ACTIONS(2528), - [anon_sym_abstract] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_public] = ACTIONS(2528), - [anon_sym_private] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_inline] = ACTIONS(2528), - [anon_sym_overload] = ACTIONS(2528), - [anon_sym_override] = ACTIONS(2528), - [anon_sym_final] = ACTIONS(2528), - [anon_sym_class] = ACTIONS(2528), - [anon_sym_interface] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2528), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_var] = ACTIONS(2528), - [aux_sym_integer_token1] = ACTIONS(2528), - [aux_sym_integer_token2] = ACTIONS(2530), - [aux_sym_float_token1] = ACTIONS(2528), - [aux_sym_float_token2] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2528), - [anon_sym_false] = ACTIONS(2528), - [aux_sym_string_token1] = ACTIONS(2530), - [aux_sym_string_token3] = ACTIONS(2530), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2530), + [sym_identifier] = ACTIONS(3086), + [anon_sym_POUND] = ACTIONS(3088), + [anon_sym_package] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_case] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(3086), + [anon_sym_cast] = ACTIONS(3086), + [anon_sym_DOLLARtype] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_untyped] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_this] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_AT_COLON] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_catch] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_LT_LT] = ACTIONS(3088), + [anon_sym_GT_GT] = ACTIONS(3086), + [anon_sym_GT_GT_GT] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_CARET] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_EQ_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3088), + [anon_sym_GT] = ACTIONS(3086), + [anon_sym_GT_EQ] = ACTIONS(3088), + [anon_sym_EQ_GT] = ACTIONS(3088), + [anon_sym_QMARK_QMARK] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3086), + [anon_sym_macro] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_extern] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym_overload] = ACTIONS(3086), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_final] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_typedef] = ACTIONS(3086), + [anon_sym_function] = ACTIONS(3086), + [anon_sym_var] = ACTIONS(3086), + [aux_sym_integer_token1] = ACTIONS(3086), + [aux_sym_integer_token2] = ACTIONS(3088), + [aux_sym_float_token1] = ACTIONS(3086), + [aux_sym_float_token2] = ACTIONS(3088), + [anon_sym_true] = ACTIONS(3086), + [anon_sym_false] = ACTIONS(3086), + [aux_sym_string_token1] = ACTIONS(3088), + [aux_sym_string_token3] = ACTIONS(3088), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3088), [sym__closing_brace_unmarker] = ACTIONS(3), }, [525] = { - [sym_identifier] = ACTIONS(2532), - [anon_sym_POUND] = ACTIONS(2534), - [anon_sym_package] = ACTIONS(2532), - [anon_sym_import] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_using] = ACTIONS(2532), - [anon_sym_throw] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_switch] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_case] = ACTIONS(2532), - [anon_sym_default] = ACTIONS(2532), - [anon_sym_cast] = ACTIONS(2532), - [anon_sym_DOLLARtype] = ACTIONS(2534), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_untyped] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_this] = ACTIONS(2532), - [anon_sym_AT] = ACTIONS(2532), - [anon_sym_AT_COLON] = ACTIONS(2534), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_catch] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_do] = ACTIONS(2532), - [anon_sym_new] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2534), - [anon_sym_DASH_DASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2534), - [anon_sym_GT_GT] = ACTIONS(2532), - [anon_sym_GT_GT_GT] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2532), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_EQ_GT] = ACTIONS(2534), - [anon_sym_QMARK_QMARK] = ACTIONS(2534), - [anon_sym_EQ] = ACTIONS(2532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2534), - [anon_sym_null] = ACTIONS(2532), - [anon_sym_macro] = ACTIONS(2532), - [anon_sym_abstract] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_public] = ACTIONS(2532), - [anon_sym_private] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_inline] = ACTIONS(2532), - [anon_sym_overload] = ACTIONS(2532), - [anon_sym_override] = ACTIONS(2532), - [anon_sym_final] = ACTIONS(2532), - [anon_sym_class] = ACTIONS(2532), - [anon_sym_interface] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_typedef] = ACTIONS(2532), - [anon_sym_function] = ACTIONS(2532), - [anon_sym_var] = ACTIONS(2532), - [aux_sym_integer_token1] = ACTIONS(2532), - [aux_sym_integer_token2] = ACTIONS(2534), - [aux_sym_float_token1] = ACTIONS(2532), - [aux_sym_float_token2] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [aux_sym_string_token1] = ACTIONS(2534), - [aux_sym_string_token3] = ACTIONS(2534), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2534), + [sym_identifier] = ACTIONS(3090), + [anon_sym_POUND] = ACTIONS(3092), + [anon_sym_package] = ACTIONS(3090), + [anon_sym_import] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_using] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_case] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_cast] = ACTIONS(3090), + [anon_sym_DOLLARtype] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_untyped] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_AT] = ACTIONS(3090), + [anon_sym_AT_COLON] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_catch] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_SLASH] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_LT_LT] = ACTIONS(3092), + [anon_sym_GT_GT] = ACTIONS(3090), + [anon_sym_GT_GT_GT] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3090), + [anon_sym_GT_EQ] = ACTIONS(3092), + [anon_sym_EQ_GT] = ACTIONS(3092), + [anon_sym_QMARK_QMARK] = ACTIONS(3092), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_macro] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_overload] = ACTIONS(3090), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_class] = ACTIONS(3090), + [anon_sym_interface] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3090), + [anon_sym_var] = ACTIONS(3090), + [aux_sym_integer_token1] = ACTIONS(3090), + [aux_sym_integer_token2] = ACTIONS(3092), + [aux_sym_float_token1] = ACTIONS(3090), + [aux_sym_float_token2] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [aux_sym_string_token1] = ACTIONS(3092), + [aux_sym_string_token3] = ACTIONS(3092), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3092), [sym__closing_brace_unmarker] = ACTIONS(3), }, [526] = { - [sym_identifier] = ACTIONS(2536), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_package] = ACTIONS(2536), - [anon_sym_import] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_using] = ACTIONS(2536), - [anon_sym_throw] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_switch] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_case] = ACTIONS(2536), - [anon_sym_default] = ACTIONS(2536), - [anon_sym_cast] = ACTIONS(2536), - [anon_sym_DOLLARtype] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_untyped] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_this] = ACTIONS(2536), - [anon_sym_AT] = ACTIONS(2536), - [anon_sym_AT_COLON] = ACTIONS(2538), - [anon_sym_try] = ACTIONS(2536), - [anon_sym_catch] = ACTIONS(2536), - [anon_sym_else] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_while] = ACTIONS(2536), - [anon_sym_do] = ACTIONS(2536), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_TILDE] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2538), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_GT_GT_GT] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2538), - [anon_sym_AMP_AMP] = ACTIONS(2538), - [anon_sym_PIPE_PIPE] = ACTIONS(2538), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2538), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2538), - [anon_sym_EQ_GT] = ACTIONS(2538), - [anon_sym_QMARK_QMARK] = ACTIONS(2538), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2538), - [anon_sym_null] = ACTIONS(2536), - [anon_sym_macro] = ACTIONS(2536), - [anon_sym_abstract] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_public] = ACTIONS(2536), - [anon_sym_private] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym_inline] = ACTIONS(2536), - [anon_sym_overload] = ACTIONS(2536), - [anon_sym_override] = ACTIONS(2536), - [anon_sym_final] = ACTIONS(2536), - [anon_sym_class] = ACTIONS(2536), - [anon_sym_interface] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_typedef] = ACTIONS(2536), - [anon_sym_function] = ACTIONS(2536), - [anon_sym_var] = ACTIONS(2536), - [aux_sym_integer_token1] = ACTIONS(2536), - [aux_sym_integer_token2] = ACTIONS(2538), - [aux_sym_float_token1] = ACTIONS(2536), - [aux_sym_float_token2] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [aux_sym_string_token1] = ACTIONS(2538), - [aux_sym_string_token3] = ACTIONS(2538), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2538), + [sym_identifier] = ACTIONS(3094), + [anon_sym_POUND] = ACTIONS(3096), + [anon_sym_package] = ACTIONS(3094), + [anon_sym_import] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_using] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_case] = ACTIONS(3094), + [anon_sym_default] = ACTIONS(3094), + [anon_sym_cast] = ACTIONS(3094), + [anon_sym_DOLLARtype] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_untyped] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_AT_COLON] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_catch] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_DASH_DASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_LT_LT] = ACTIONS(3096), + [anon_sym_GT_GT] = ACTIONS(3094), + [anon_sym_GT_GT_GT] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3094), + [anon_sym_PIPE] = ACTIONS(3094), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_EQ_GT] = ACTIONS(3096), + [anon_sym_QMARK_QMARK] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_macro] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_extern] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_overload] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_class] = ACTIONS(3094), + [anon_sym_interface] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), + [anon_sym_typedef] = ACTIONS(3094), + [anon_sym_function] = ACTIONS(3094), + [anon_sym_var] = ACTIONS(3094), + [aux_sym_integer_token1] = ACTIONS(3094), + [aux_sym_integer_token2] = ACTIONS(3096), + [aux_sym_float_token1] = ACTIONS(3094), + [aux_sym_float_token2] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [aux_sym_string_token1] = ACTIONS(3096), + [aux_sym_string_token3] = ACTIONS(3096), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3096), [sym__closing_brace_unmarker] = ACTIONS(3), }, [527] = { - [sym_identifier] = ACTIONS(2540), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_package] = ACTIONS(2540), - [anon_sym_import] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2540), - [anon_sym_throw] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2540), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2540), - [anon_sym_default] = ACTIONS(2540), - [anon_sym_cast] = ACTIONS(2540), - [anon_sym_DOLLARtype] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2540), - [anon_sym_return] = ACTIONS(2540), - [anon_sym_untyped] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_this] = ACTIONS(2540), - [anon_sym_AT] = ACTIONS(2540), - [anon_sym_AT_COLON] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2540), - [anon_sym_catch] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2540), - [anon_sym_while] = ACTIONS(2540), - [anon_sym_do] = ACTIONS(2540), - [anon_sym_new] = ACTIONS(2540), - [anon_sym_TILDE] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_DASH] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2542), - [anon_sym_GT_GT] = ACTIONS(2540), - [anon_sym_GT_GT_GT] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_CARET] = ACTIONS(2542), - [anon_sym_AMP_AMP] = ACTIONS(2542), - [anon_sym_PIPE_PIPE] = ACTIONS(2542), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_LT_EQ] = ACTIONS(2542), - [anon_sym_GT] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2542), - [anon_sym_EQ_GT] = ACTIONS(2542), - [anon_sym_QMARK_QMARK] = ACTIONS(2542), - [anon_sym_EQ] = ACTIONS(2540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2542), - [anon_sym_null] = ACTIONS(2540), - [anon_sym_macro] = ACTIONS(2540), - [anon_sym_abstract] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_public] = ACTIONS(2540), - [anon_sym_private] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym_inline] = ACTIONS(2540), - [anon_sym_overload] = ACTIONS(2540), - [anon_sym_override] = ACTIONS(2540), - [anon_sym_final] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2540), - [anon_sym_interface] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_typedef] = ACTIONS(2540), - [anon_sym_function] = ACTIONS(2540), - [anon_sym_var] = ACTIONS(2540), - [aux_sym_integer_token1] = ACTIONS(2540), - [aux_sym_integer_token2] = ACTIONS(2542), - [aux_sym_float_token1] = ACTIONS(2540), - [aux_sym_float_token2] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2540), - [anon_sym_false] = ACTIONS(2540), - [aux_sym_string_token1] = ACTIONS(2542), - [aux_sym_string_token3] = ACTIONS(2542), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2542), + [sym_identifier] = ACTIONS(3098), + [anon_sym_POUND] = ACTIONS(3100), + [anon_sym_package] = ACTIONS(3098), + [anon_sym_import] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_case] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3098), + [anon_sym_cast] = ACTIONS(3098), + [anon_sym_DOLLARtype] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_untyped] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_AT_COLON] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_catch] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_LT_LT] = ACTIONS(3100), + [anon_sym_GT_GT] = ACTIONS(3098), + [anon_sym_GT_GT_GT] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_CARET] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3100), + [anon_sym_EQ_GT] = ACTIONS(3100), + [anon_sym_QMARK_QMARK] = ACTIONS(3100), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_macro] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_overload] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_interface] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3098), + [anon_sym_var] = ACTIONS(3098), + [aux_sym_integer_token1] = ACTIONS(3098), + [aux_sym_integer_token2] = ACTIONS(3100), + [aux_sym_float_token1] = ACTIONS(3098), + [aux_sym_float_token2] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [aux_sym_string_token1] = ACTIONS(3100), + [aux_sym_string_token3] = ACTIONS(3100), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3100), [sym__closing_brace_unmarker] = ACTIONS(3), }, [528] = { - [sym_identifier] = ACTIONS(2544), - [anon_sym_POUND] = ACTIONS(2546), - [anon_sym_package] = ACTIONS(2544), - [anon_sym_import] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2544), - [anon_sym_throw] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2544), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_cast] = ACTIONS(2544), - [anon_sym_DOLLARtype] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_untyped] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2546), - [anon_sym_this] = ACTIONS(2544), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_AT_COLON] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2544), - [anon_sym_catch] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_while] = ACTIONS(2544), - [anon_sym_do] = ACTIONS(2544), - [anon_sym_new] = ACTIONS(2544), - [anon_sym_TILDE] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2544), - [anon_sym_PLUS_PLUS] = ACTIONS(2546), - [anon_sym_DASH_DASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2544), - [anon_sym_PLUS] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2546), - [anon_sym_GT_GT] = ACTIONS(2544), - [anon_sym_GT_GT_GT] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_AMP_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2544), - [anon_sym_LT_EQ] = ACTIONS(2546), - [anon_sym_GT] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(2546), - [anon_sym_QMARK_QMARK] = ACTIONS(2546), - [anon_sym_EQ] = ACTIONS(2544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2544), - [anon_sym_macro] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_public] = ACTIONS(2544), - [anon_sym_private] = ACTIONS(2544), - [anon_sym_extern] = ACTIONS(2544), - [anon_sym_inline] = ACTIONS(2544), - [anon_sym_overload] = ACTIONS(2544), - [anon_sym_override] = ACTIONS(2544), - [anon_sym_final] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_interface] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2544), - [anon_sym_typedef] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2544), - [anon_sym_var] = ACTIONS(2544), - [aux_sym_integer_token1] = ACTIONS(2544), - [aux_sym_integer_token2] = ACTIONS(2546), - [aux_sym_float_token1] = ACTIONS(2544), - [aux_sym_float_token2] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [aux_sym_string_token1] = ACTIONS(2546), - [aux_sym_string_token3] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2546), + [sym_identifier] = ACTIONS(3102), + [anon_sym_POUND] = ACTIONS(3104), + [anon_sym_package] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_case] = ACTIONS(3102), + [anon_sym_default] = ACTIONS(3102), + [anon_sym_cast] = ACTIONS(3102), + [anon_sym_DOLLARtype] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_untyped] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_AT_COLON] = ACTIONS(3104), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_catch] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3104), + [anon_sym_PERCENT] = ACTIONS(3104), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_LT_LT] = ACTIONS(3104), + [anon_sym_GT_GT] = ACTIONS(3102), + [anon_sym_GT_GT_GT] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3102), + [anon_sym_CARET] = ACTIONS(3104), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_EQ_GT] = ACTIONS(3104), + [anon_sym_QMARK_QMARK] = ACTIONS(3104), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_macro] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_extern] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_overload] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), + [anon_sym_typedef] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [aux_sym_integer_token1] = ACTIONS(3102), + [aux_sym_integer_token2] = ACTIONS(3104), + [aux_sym_float_token1] = ACTIONS(3102), + [aux_sym_float_token2] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [aux_sym_string_token1] = ACTIONS(3104), + [aux_sym_string_token3] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3104), [sym__closing_brace_unmarker] = ACTIONS(3), }, [529] = { - [sym_identifier] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2550), - [anon_sym_package] = ACTIONS(2548), - [anon_sym_import] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_using] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_switch] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_case] = ACTIONS(2548), - [anon_sym_default] = ACTIONS(2548), - [anon_sym_cast] = ACTIONS(2548), - [anon_sym_DOLLARtype] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2548), - [anon_sym_untyped] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2550), - [anon_sym_this] = ACTIONS(2548), - [anon_sym_AT] = ACTIONS(2548), - [anon_sym_AT_COLON] = ACTIONS(2550), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_catch] = ACTIONS(2548), - [anon_sym_else] = ACTIONS(2548), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_while] = ACTIONS(2548), - [anon_sym_do] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2550), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2550), - [anon_sym_DASH_DASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2548), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2550), - [anon_sym_GT_GT] = ACTIONS(2548), - [anon_sym_GT_GT_GT] = ACTIONS(2550), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2550), - [anon_sym_AMP_AMP] = ACTIONS(2550), - [anon_sym_PIPE_PIPE] = ACTIONS(2550), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_LT] = ACTIONS(2548), - [anon_sym_LT_EQ] = ACTIONS(2550), - [anon_sym_GT] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2550), - [anon_sym_EQ_GT] = ACTIONS(2550), - [anon_sym_QMARK_QMARK] = ACTIONS(2550), - [anon_sym_EQ] = ACTIONS(2548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_null] = ACTIONS(2548), - [anon_sym_macro] = ACTIONS(2548), - [anon_sym_abstract] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_public] = ACTIONS(2548), - [anon_sym_private] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym_inline] = ACTIONS(2548), - [anon_sym_overload] = ACTIONS(2548), - [anon_sym_override] = ACTIONS(2548), - [anon_sym_final] = ACTIONS(2548), - [anon_sym_class] = ACTIONS(2548), - [anon_sym_interface] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_typedef] = ACTIONS(2548), - [anon_sym_function] = ACTIONS(2548), - [anon_sym_var] = ACTIONS(2548), - [aux_sym_integer_token1] = ACTIONS(2548), - [aux_sym_integer_token2] = ACTIONS(2550), - [aux_sym_float_token1] = ACTIONS(2548), - [aux_sym_float_token2] = ACTIONS(2550), - [anon_sym_true] = ACTIONS(2548), - [anon_sym_false] = ACTIONS(2548), - [aux_sym_string_token1] = ACTIONS(2550), - [aux_sym_string_token3] = ACTIONS(2550), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2550), + [sym_identifier] = ACTIONS(3106), + [anon_sym_POUND] = ACTIONS(3108), + [anon_sym_package] = ACTIONS(3106), + [anon_sym_import] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_case] = ACTIONS(3106), + [anon_sym_default] = ACTIONS(3106), + [anon_sym_cast] = ACTIONS(3106), + [anon_sym_DOLLARtype] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_untyped] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_AT_COLON] = ACTIONS(3108), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_catch] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_GT_GT_GT] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_PIPE] = ACTIONS(3106), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3106), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_EQ_GT] = ACTIONS(3108), + [anon_sym_QMARK_QMARK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_null] = ACTIONS(3106), + [anon_sym_macro] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_extern] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_overload] = ACTIONS(3106), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_typedef] = ACTIONS(3106), + [anon_sym_function] = ACTIONS(3106), + [anon_sym_var] = ACTIONS(3106), + [aux_sym_integer_token1] = ACTIONS(3106), + [aux_sym_integer_token2] = ACTIONS(3108), + [aux_sym_float_token1] = ACTIONS(3106), + [aux_sym_float_token2] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [aux_sym_string_token1] = ACTIONS(3108), + [aux_sym_string_token3] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3108), [sym__closing_brace_unmarker] = ACTIONS(3), }, [530] = { - [sym_identifier] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2554), - [anon_sym_package] = ACTIONS(2552), - [anon_sym_import] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_using] = ACTIONS(2552), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_switch] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2554), - [anon_sym_case] = ACTIONS(2552), - [anon_sym_default] = ACTIONS(2552), - [anon_sym_cast] = ACTIONS(2552), - [anon_sym_DOLLARtype] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2552), - [anon_sym_return] = ACTIONS(2552), - [anon_sym_untyped] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2554), - [anon_sym_this] = ACTIONS(2552), - [anon_sym_AT] = ACTIONS(2552), - [anon_sym_AT_COLON] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2552), - [anon_sym_catch] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2552), - [anon_sym_if] = ACTIONS(2552), - [anon_sym_while] = ACTIONS(2552), - [anon_sym_do] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_TILDE] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_PLUS_PLUS] = ACTIONS(2554), - [anon_sym_DASH_DASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2552), - [anon_sym_PLUS] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2554), - [anon_sym_GT_GT] = ACTIONS(2552), - [anon_sym_GT_GT_GT] = ACTIONS(2554), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_CARET] = ACTIONS(2554), - [anon_sym_AMP_AMP] = ACTIONS(2554), - [anon_sym_PIPE_PIPE] = ACTIONS(2554), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_LT_EQ] = ACTIONS(2554), - [anon_sym_GT] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2554), - [anon_sym_EQ_GT] = ACTIONS(2554), - [anon_sym_QMARK_QMARK] = ACTIONS(2554), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2554), - [anon_sym_null] = ACTIONS(2552), - [anon_sym_macro] = ACTIONS(2552), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_public] = ACTIONS(2552), - [anon_sym_private] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym_inline] = ACTIONS(2552), - [anon_sym_overload] = ACTIONS(2552), - [anon_sym_override] = ACTIONS(2552), - [anon_sym_final] = ACTIONS(2552), - [anon_sym_class] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_typedef] = ACTIONS(2552), - [anon_sym_function] = ACTIONS(2552), - [anon_sym_var] = ACTIONS(2552), - [aux_sym_integer_token1] = ACTIONS(2552), - [aux_sym_integer_token2] = ACTIONS(2554), - [aux_sym_float_token1] = ACTIONS(2552), - [aux_sym_float_token2] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [aux_sym_string_token1] = ACTIONS(2554), - [aux_sym_string_token3] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2554), + [sym_identifier] = ACTIONS(3110), + [anon_sym_POUND] = ACTIONS(3112), + [anon_sym_package] = ACTIONS(3110), + [anon_sym_import] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_case] = ACTIONS(3110), + [anon_sym_default] = ACTIONS(3110), + [anon_sym_cast] = ACTIONS(3110), + [anon_sym_DOLLARtype] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_untyped] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_AT_COLON] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_catch] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_do] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [anon_sym_PERCENT] = ACTIONS(3112), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_LT_LT] = ACTIONS(3112), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_CARET] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_EQ_GT] = ACTIONS(3112), + [anon_sym_QMARK_QMARK] = ACTIONS(3112), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_macro] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_overload] = ACTIONS(3110), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_interface] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_function] = ACTIONS(3110), + [anon_sym_var] = ACTIONS(3110), + [aux_sym_integer_token1] = ACTIONS(3110), + [aux_sym_integer_token2] = ACTIONS(3112), + [aux_sym_float_token1] = ACTIONS(3110), + [aux_sym_float_token2] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [aux_sym_string_token1] = ACTIONS(3112), + [aux_sym_string_token3] = ACTIONS(3112), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3112), [sym__closing_brace_unmarker] = ACTIONS(3), }, [531] = { - [sym_identifier] = ACTIONS(2556), - [anon_sym_POUND] = ACTIONS(2558), - [anon_sym_package] = ACTIONS(2556), - [anon_sym_import] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_using] = ACTIONS(2556), - [anon_sym_throw] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2558), - [anon_sym_switch] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_case] = ACTIONS(2556), - [anon_sym_default] = ACTIONS(2556), - [anon_sym_cast] = ACTIONS(2556), - [anon_sym_DOLLARtype] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_return] = ACTIONS(2556), - [anon_sym_untyped] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2558), - [anon_sym_this] = ACTIONS(2556), - [anon_sym_AT] = ACTIONS(2556), - [anon_sym_AT_COLON] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2556), - [anon_sym_catch] = ACTIONS(2556), - [anon_sym_else] = ACTIONS(2556), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_while] = ACTIONS(2556), - [anon_sym_do] = ACTIONS(2556), - [anon_sym_new] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_DASH] = ACTIONS(2556), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2556), - [anon_sym_PLUS] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2558), - [anon_sym_GT_GT] = ACTIONS(2556), - [anon_sym_GT_GT_GT] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2556), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_LT_EQ] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2558), - [anon_sym_EQ_GT] = ACTIONS(2558), - [anon_sym_QMARK_QMARK] = ACTIONS(2558), - [anon_sym_EQ] = ACTIONS(2556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2558), - [anon_sym_null] = ACTIONS(2556), - [anon_sym_macro] = ACTIONS(2556), - [anon_sym_abstract] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_public] = ACTIONS(2556), - [anon_sym_private] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym_inline] = ACTIONS(2556), - [anon_sym_overload] = ACTIONS(2556), - [anon_sym_override] = ACTIONS(2556), - [anon_sym_final] = ACTIONS(2556), - [anon_sym_class] = ACTIONS(2556), - [anon_sym_interface] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_typedef] = ACTIONS(2556), - [anon_sym_function] = ACTIONS(2556), - [anon_sym_var] = ACTIONS(2556), - [aux_sym_integer_token1] = ACTIONS(2556), - [aux_sym_integer_token2] = ACTIONS(2558), - [aux_sym_float_token1] = ACTIONS(2556), - [aux_sym_float_token2] = ACTIONS(2558), - [anon_sym_true] = ACTIONS(2556), - [anon_sym_false] = ACTIONS(2556), - [aux_sym_string_token1] = ACTIONS(2558), - [aux_sym_string_token3] = ACTIONS(2558), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2558), + [sym_identifier] = ACTIONS(3114), + [anon_sym_POUND] = ACTIONS(3116), + [anon_sym_package] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_case] = ACTIONS(3114), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_cast] = ACTIONS(3114), + [anon_sym_DOLLARtype] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_untyped] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_AT] = ACTIONS(3114), + [anon_sym_AT_COLON] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_catch] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_do] = ACTIONS(3114), + [anon_sym_new] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3114), + [anon_sym_GT_GT_GT] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3114), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3114), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_EQ_GT] = ACTIONS(3116), + [anon_sym_QMARK_QMARK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3114), + [anon_sym_macro] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_overload] = ACTIONS(3114), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_class] = ACTIONS(3114), + [anon_sym_interface] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_typedef] = ACTIONS(3114), + [anon_sym_function] = ACTIONS(3114), + [anon_sym_var] = ACTIONS(3114), + [aux_sym_integer_token1] = ACTIONS(3114), + [aux_sym_integer_token2] = ACTIONS(3116), + [aux_sym_float_token1] = ACTIONS(3114), + [aux_sym_float_token2] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [aux_sym_string_token1] = ACTIONS(3116), + [aux_sym_string_token3] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3116), [sym__closing_brace_unmarker] = ACTIONS(3), }, [532] = { - [sym_identifier] = ACTIONS(2560), - [anon_sym_POUND] = ACTIONS(2562), - [anon_sym_package] = ACTIONS(2560), - [anon_sym_import] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2560), - [anon_sym_throw] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2560), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_cast] = ACTIONS(2560), - [anon_sym_DOLLARtype] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2560), - [anon_sym_return] = ACTIONS(2560), - [anon_sym_untyped] = ACTIONS(2560), - [anon_sym_break] = ACTIONS(2560), - [anon_sym_continue] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_this] = ACTIONS(2560), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_AT_COLON] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2560), - [anon_sym_catch] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2560), - [anon_sym_if] = ACTIONS(2560), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_do] = ACTIONS(2560), - [anon_sym_new] = ACTIONS(2560), - [anon_sym_TILDE] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(2560), - [anon_sym_PLUS_PLUS] = ACTIONS(2562), - [anon_sym_DASH_DASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2560), - [anon_sym_PLUS] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2562), - [anon_sym_GT_GT] = ACTIONS(2560), - [anon_sym_GT_GT_GT] = ACTIONS(2562), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_CARET] = ACTIONS(2562), - [anon_sym_AMP_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2562), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_LT_EQ] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2562), - [anon_sym_EQ_GT] = ACTIONS(2562), - [anon_sym_QMARK_QMARK] = ACTIONS(2562), - [anon_sym_EQ] = ACTIONS(2560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), - [anon_sym_null] = ACTIONS(2560), - [anon_sym_macro] = ACTIONS(2560), - [anon_sym_abstract] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_public] = ACTIONS(2560), - [anon_sym_private] = ACTIONS(2560), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_overload] = ACTIONS(2560), - [anon_sym_override] = ACTIONS(2560), - [anon_sym_final] = ACTIONS(2560), - [anon_sym_class] = ACTIONS(2560), - [anon_sym_interface] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2560), - [anon_sym_typedef] = ACTIONS(2560), - [anon_sym_function] = ACTIONS(2560), - [anon_sym_var] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2560), - [aux_sym_integer_token2] = ACTIONS(2562), - [aux_sym_float_token1] = ACTIONS(2560), - [aux_sym_float_token2] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2560), - [anon_sym_false] = ACTIONS(2560), - [aux_sym_string_token1] = ACTIONS(2562), - [aux_sym_string_token3] = ACTIONS(2562), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2562), + [sym_identifier] = ACTIONS(3118), + [anon_sym_POUND] = ACTIONS(3120), + [anon_sym_package] = ACTIONS(3118), + [anon_sym_import] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_switch] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3118), + [anon_sym_default] = ACTIONS(3118), + [anon_sym_cast] = ACTIONS(3118), + [anon_sym_DOLLARtype] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_untyped] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_AT_COLON] = ACTIONS(3120), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_catch] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_do] = ACTIONS(3118), + [anon_sym_new] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_PERCENT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3120), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_EQ_GT] = ACTIONS(3120), + [anon_sym_QMARK_QMARK] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3120), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_macro] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_overload] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_interface] = ACTIONS(3118), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_typedef] = ACTIONS(3118), + [anon_sym_function] = ACTIONS(3118), + [anon_sym_var] = ACTIONS(3118), + [aux_sym_integer_token1] = ACTIONS(3118), + [aux_sym_integer_token2] = ACTIONS(3120), + [aux_sym_float_token1] = ACTIONS(3118), + [aux_sym_float_token2] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [aux_sym_string_token1] = ACTIONS(3120), + [aux_sym_string_token3] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3120), [sym__closing_brace_unmarker] = ACTIONS(3), }, [533] = { - [sym_identifier] = ACTIONS(2564), - [anon_sym_POUND] = ACTIONS(2566), - [anon_sym_package] = ACTIONS(2564), - [anon_sym_import] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_using] = ACTIONS(2564), - [anon_sym_throw] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2566), - [anon_sym_switch] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_case] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_cast] = ACTIONS(2564), - [anon_sym_DOLLARtype] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_untyped] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_this] = ACTIONS(2564), - [anon_sym_AT] = ACTIONS(2564), - [anon_sym_AT_COLON] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2564), - [anon_sym_catch] = ACTIONS(2564), - [anon_sym_else] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_do] = ACTIONS(2564), - [anon_sym_new] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2566), - [anon_sym_DASH_DASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2564), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2566), - [anon_sym_GT_GT] = ACTIONS(2564), - [anon_sym_GT_GT_GT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2564), - [anon_sym_CARET] = ACTIONS(2566), - [anon_sym_AMP_AMP] = ACTIONS(2566), - [anon_sym_PIPE_PIPE] = ACTIONS(2566), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_LT_EQ] = ACTIONS(2566), - [anon_sym_GT] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2566), - [anon_sym_EQ_GT] = ACTIONS(2566), - [anon_sym_QMARK_QMARK] = ACTIONS(2566), - [anon_sym_EQ] = ACTIONS(2564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_null] = ACTIONS(2564), - [anon_sym_macro] = ACTIONS(2564), - [anon_sym_abstract] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_public] = ACTIONS(2564), - [anon_sym_private] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_inline] = ACTIONS(2564), - [anon_sym_overload] = ACTIONS(2564), - [anon_sym_override] = ACTIONS(2564), - [anon_sym_final] = ACTIONS(2564), - [anon_sym_class] = ACTIONS(2564), - [anon_sym_interface] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_typedef] = ACTIONS(2564), - [anon_sym_function] = ACTIONS(2564), - [anon_sym_var] = ACTIONS(2564), - [aux_sym_integer_token1] = ACTIONS(2564), - [aux_sym_integer_token2] = ACTIONS(2566), - [aux_sym_float_token1] = ACTIONS(2564), - [aux_sym_float_token2] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2564), - [anon_sym_false] = ACTIONS(2564), - [aux_sym_string_token1] = ACTIONS(2566), - [aux_sym_string_token3] = ACTIONS(2566), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2566), + [sym_identifier] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(3124), + [anon_sym_package] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_cast] = ACTIONS(3122), + [anon_sym_DOLLARtype] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_untyped] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3122), + [anon_sym_AT_COLON] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_catch] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_LT_LT] = ACTIONS(3124), + [anon_sym_GT_GT] = ACTIONS(3122), + [anon_sym_GT_GT_GT] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_EQ_GT] = ACTIONS(3124), + [anon_sym_QMARK_QMARK] = ACTIONS(3124), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_macro] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_overload] = ACTIONS(3122), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [aux_sym_integer_token1] = ACTIONS(3122), + [aux_sym_integer_token2] = ACTIONS(3124), + [aux_sym_float_token1] = ACTIONS(3122), + [aux_sym_float_token2] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [aux_sym_string_token1] = ACTIONS(3124), + [aux_sym_string_token3] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3124), [sym__closing_brace_unmarker] = ACTIONS(3), }, [534] = { - [sym_identifier] = ACTIONS(2568), - [anon_sym_POUND] = ACTIONS(2570), - [anon_sym_package] = ACTIONS(2568), - [anon_sym_import] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_using] = ACTIONS(2568), - [anon_sym_throw] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_switch] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_case] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_cast] = ACTIONS(2568), - [anon_sym_DOLLARtype] = ACTIONS(2570), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_untyped] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(2570), - [anon_sym_this] = ACTIONS(2568), - [anon_sym_AT] = ACTIONS(2568), - [anon_sym_AT_COLON] = ACTIONS(2570), - [anon_sym_try] = ACTIONS(2568), - [anon_sym_catch] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_do] = ACTIONS(2568), - [anon_sym_new] = ACTIONS(2568), - [anon_sym_TILDE] = ACTIONS(2570), - [anon_sym_BANG] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2568), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2570), - [anon_sym_GT_GT] = ACTIONS(2568), - [anon_sym_GT_GT_GT] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2568), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_AMP_AMP] = ACTIONS(2570), - [anon_sym_PIPE_PIPE] = ACTIONS(2570), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_LT] = ACTIONS(2568), - [anon_sym_LT_EQ] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2570), - [anon_sym_EQ_GT] = ACTIONS(2570), - [anon_sym_QMARK_QMARK] = ACTIONS(2570), - [anon_sym_EQ] = ACTIONS(2568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2570), - [anon_sym_null] = ACTIONS(2568), - [anon_sym_macro] = ACTIONS(2568), - [anon_sym_abstract] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_public] = ACTIONS(2568), - [anon_sym_private] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_overload] = ACTIONS(2568), - [anon_sym_override] = ACTIONS(2568), - [anon_sym_final] = ACTIONS(2568), - [anon_sym_class] = ACTIONS(2568), - [anon_sym_interface] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_function] = ACTIONS(2568), - [anon_sym_var] = ACTIONS(2568), - [aux_sym_integer_token1] = ACTIONS(2568), - [aux_sym_integer_token2] = ACTIONS(2570), - [aux_sym_float_token1] = ACTIONS(2568), - [aux_sym_float_token2] = ACTIONS(2570), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [aux_sym_string_token1] = ACTIONS(2570), - [aux_sym_string_token3] = ACTIONS(2570), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2570), + [sym_identifier] = ACTIONS(3126), + [anon_sym_POUND] = ACTIONS(3128), + [anon_sym_package] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_cast] = ACTIONS(3126), + [anon_sym_DOLLARtype] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_untyped] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_AT_COLON] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_catch] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym_GT_GT_GT] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3128), + [anon_sym_EQ_GT] = ACTIONS(3128), + [anon_sym_QMARK_QMARK] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3128), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_macro] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_overload] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [aux_sym_integer_token1] = ACTIONS(3126), + [aux_sym_integer_token2] = ACTIONS(3128), + [aux_sym_float_token1] = ACTIONS(3126), + [aux_sym_float_token2] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [aux_sym_string_token1] = ACTIONS(3128), + [aux_sym_string_token3] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3128), [sym__closing_brace_unmarker] = ACTIONS(3), }, [535] = { - [sym_identifier] = ACTIONS(2572), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_package] = ACTIONS(2572), - [anon_sym_import] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_using] = ACTIONS(2572), - [anon_sym_throw] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_switch] = ACTIONS(2572), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_case] = ACTIONS(2572), - [anon_sym_default] = ACTIONS(2572), - [anon_sym_cast] = ACTIONS(2572), - [anon_sym_DOLLARtype] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2572), - [anon_sym_return] = ACTIONS(2572), - [anon_sym_untyped] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_this] = ACTIONS(2572), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_AT_COLON] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2572), - [anon_sym_catch] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_while] = ACTIONS(2572), - [anon_sym_do] = ACTIONS(2572), - [anon_sym_new] = ACTIONS(2572), - [anon_sym_TILDE] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2574), - [anon_sym_DASH_DASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2574), - [anon_sym_GT_GT] = ACTIONS(2572), - [anon_sym_GT_GT_GT] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2572), - [anon_sym_CARET] = ACTIONS(2574), - [anon_sym_AMP_AMP] = ACTIONS(2574), - [anon_sym_PIPE_PIPE] = ACTIONS(2574), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2572), - [anon_sym_LT_EQ] = ACTIONS(2574), - [anon_sym_GT] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2574), - [anon_sym_EQ_GT] = ACTIONS(2574), - [anon_sym_QMARK_QMARK] = ACTIONS(2574), - [anon_sym_EQ] = ACTIONS(2572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2574), - [anon_sym_null] = ACTIONS(2572), - [anon_sym_macro] = ACTIONS(2572), - [anon_sym_abstract] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_public] = ACTIONS(2572), - [anon_sym_private] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym_inline] = ACTIONS(2572), - [anon_sym_overload] = ACTIONS(2572), - [anon_sym_override] = ACTIONS(2572), - [anon_sym_final] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2572), - [anon_sym_interface] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_typedef] = ACTIONS(2572), - [anon_sym_function] = ACTIONS(2572), - [anon_sym_var] = ACTIONS(2572), - [aux_sym_integer_token1] = ACTIONS(2572), - [aux_sym_integer_token2] = ACTIONS(2574), - [aux_sym_float_token1] = ACTIONS(2572), - [aux_sym_float_token2] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2572), - [anon_sym_false] = ACTIONS(2572), - [aux_sym_string_token1] = ACTIONS(2574), - [aux_sym_string_token3] = ACTIONS(2574), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2574), + [sym_identifier] = ACTIONS(3130), + [anon_sym_POUND] = ACTIONS(3132), + [anon_sym_package] = ACTIONS(3130), + [anon_sym_import] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_cast] = ACTIONS(3130), + [anon_sym_DOLLARtype] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_untyped] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_AT] = ACTIONS(3130), + [anon_sym_AT_COLON] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_catch] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_LT_LT] = ACTIONS(3132), + [anon_sym_GT_GT] = ACTIONS(3130), + [anon_sym_GT_GT_GT] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3130), + [anon_sym_PIPE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3130), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_EQ_GT] = ACTIONS(3132), + [anon_sym_QMARK_QMARK] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_macro] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_extern] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_overload] = ACTIONS(3130), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_interface] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), + [anon_sym_typedef] = ACTIONS(3130), + [anon_sym_function] = ACTIONS(3130), + [anon_sym_var] = ACTIONS(3130), + [aux_sym_integer_token1] = ACTIONS(3130), + [aux_sym_integer_token2] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3130), + [aux_sym_float_token2] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [aux_sym_string_token1] = ACTIONS(3132), + [aux_sym_string_token3] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3132), [sym__closing_brace_unmarker] = ACTIONS(3), }, [536] = { - [sym_identifier] = ACTIONS(2576), - [anon_sym_POUND] = ACTIONS(2578), - [anon_sym_package] = ACTIONS(2576), - [anon_sym_import] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_using] = ACTIONS(2576), - [anon_sym_throw] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2578), - [anon_sym_switch] = ACTIONS(2576), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_case] = ACTIONS(2576), - [anon_sym_default] = ACTIONS(2576), - [anon_sym_cast] = ACTIONS(2576), - [anon_sym_DOLLARtype] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2576), - [anon_sym_return] = ACTIONS(2576), - [anon_sym_untyped] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_this] = ACTIONS(2576), - [anon_sym_AT] = ACTIONS(2576), - [anon_sym_AT_COLON] = ACTIONS(2578), - [anon_sym_try] = ACTIONS(2576), - [anon_sym_catch] = ACTIONS(2576), - [anon_sym_else] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_while] = ACTIONS(2576), - [anon_sym_do] = ACTIONS(2576), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_TILDE] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2576), - [anon_sym_PLUS_PLUS] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2576), - [anon_sym_PLUS] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2578), - [anon_sym_GT_GT] = ACTIONS(2576), - [anon_sym_GT_GT_GT] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_CARET] = ACTIONS(2578), - [anon_sym_AMP_AMP] = ACTIONS(2578), - [anon_sym_PIPE_PIPE] = ACTIONS(2578), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2576), - [anon_sym_LT_EQ] = ACTIONS(2578), - [anon_sym_GT] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2578), - [anon_sym_EQ_GT] = ACTIONS(2578), - [anon_sym_QMARK_QMARK] = ACTIONS(2578), - [anon_sym_EQ] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2578), - [anon_sym_null] = ACTIONS(2576), - [anon_sym_macro] = ACTIONS(2576), - [anon_sym_abstract] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_public] = ACTIONS(2576), - [anon_sym_private] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym_inline] = ACTIONS(2576), - [anon_sym_overload] = ACTIONS(2576), - [anon_sym_override] = ACTIONS(2576), - [anon_sym_final] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2576), - [anon_sym_interface] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_typedef] = ACTIONS(2576), - [anon_sym_function] = ACTIONS(2576), - [anon_sym_var] = ACTIONS(2576), - [aux_sym_integer_token1] = ACTIONS(2576), - [aux_sym_integer_token2] = ACTIONS(2578), - [aux_sym_float_token1] = ACTIONS(2576), - [aux_sym_float_token2] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2576), - [anon_sym_false] = ACTIONS(2576), - [aux_sym_string_token1] = ACTIONS(2578), - [aux_sym_string_token3] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2578), + [sym_identifier] = ACTIONS(3134), + [anon_sym_POUND] = ACTIONS(3136), + [anon_sym_package] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_cast] = ACTIONS(3134), + [anon_sym_DOLLARtype] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_untyped] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_this] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3134), + [anon_sym_AT_COLON] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_catch] = ACTIONS(3134), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PERCENT] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_LT_LT] = ACTIONS(3136), + [anon_sym_GT_GT] = ACTIONS(3134), + [anon_sym_GT_GT_GT] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_PIPE] = ACTIONS(3134), + [anon_sym_CARET] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_PIPE_PIPE] = ACTIONS(3136), + [anon_sym_EQ_EQ] = ACTIONS(3136), + [anon_sym_BANG_EQ] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_LT_EQ] = ACTIONS(3136), + [anon_sym_GT] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3136), + [anon_sym_EQ_GT] = ACTIONS(3136), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3136), + [anon_sym_null] = ACTIONS(3134), + [anon_sym_macro] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym_overload] = ACTIONS(3134), + [anon_sym_override] = ACTIONS(3134), + [anon_sym_final] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [aux_sym_integer_token1] = ACTIONS(3134), + [aux_sym_integer_token2] = ACTIONS(3136), + [aux_sym_float_token1] = ACTIONS(3134), + [aux_sym_float_token2] = ACTIONS(3136), + [anon_sym_true] = ACTIONS(3134), + [anon_sym_false] = ACTIONS(3134), + [aux_sym_string_token1] = ACTIONS(3136), + [aux_sym_string_token3] = ACTIONS(3136), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3136), [sym__closing_brace_unmarker] = ACTIONS(3), }, [537] = { - [sym_identifier] = ACTIONS(2580), - [anon_sym_POUND] = ACTIONS(2582), - [anon_sym_package] = ACTIONS(2580), - [anon_sym_import] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2580), - [anon_sym_throw] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2582), - [anon_sym_switch] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_case] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_cast] = ACTIONS(2580), - [anon_sym_DOLLARtype] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_untyped] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_this] = ACTIONS(2580), - [anon_sym_AT] = ACTIONS(2580), - [anon_sym_AT_COLON] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2580), - [anon_sym_catch] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_do] = ACTIONS(2580), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_TILDE] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_PERCENT] = ACTIONS(2582), - [anon_sym_SLASH] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2582), - [anon_sym_GT_GT] = ACTIONS(2580), - [anon_sym_GT_GT_GT] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2580), - [anon_sym_CARET] = ACTIONS(2582), - [anon_sym_AMP_AMP] = ACTIONS(2582), - [anon_sym_PIPE_PIPE] = ACTIONS(2582), - [anon_sym_EQ_EQ] = ACTIONS(2582), - [anon_sym_BANG_EQ] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2580), - [anon_sym_LT_EQ] = ACTIONS(2582), - [anon_sym_GT] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2582), - [anon_sym_EQ_GT] = ACTIONS(2582), - [anon_sym_QMARK_QMARK] = ACTIONS(2582), - [anon_sym_EQ] = ACTIONS(2580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2582), - [anon_sym_null] = ACTIONS(2580), - [anon_sym_macro] = ACTIONS(2580), - [anon_sym_abstract] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_public] = ACTIONS(2580), - [anon_sym_private] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym_inline] = ACTIONS(2580), - [anon_sym_overload] = ACTIONS(2580), - [anon_sym_override] = ACTIONS(2580), - [anon_sym_final] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2580), - [anon_sym_interface] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_typedef] = ACTIONS(2580), - [anon_sym_function] = ACTIONS(2580), - [anon_sym_var] = ACTIONS(2580), - [aux_sym_integer_token1] = ACTIONS(2580), - [aux_sym_integer_token2] = ACTIONS(2582), - [aux_sym_float_token1] = ACTIONS(2580), - [aux_sym_float_token2] = ACTIONS(2582), - [anon_sym_true] = ACTIONS(2580), - [anon_sym_false] = ACTIONS(2580), - [aux_sym_string_token1] = ACTIONS(2582), - [aux_sym_string_token3] = ACTIONS(2582), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2582), + [sym_identifier] = ACTIONS(3138), + [anon_sym_POUND] = ACTIONS(3140), + [anon_sym_package] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_cast] = ACTIONS(3138), + [anon_sym_DOLLARtype] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_untyped] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_this] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_AT_COLON] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_catch] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_GT_GT_GT] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_EQ_GT] = ACTIONS(3140), + [anon_sym_QMARK_QMARK] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3140), + [anon_sym_null] = ACTIONS(3138), + [anon_sym_macro] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(3138), + [anon_sym_inline] = ACTIONS(3138), + [anon_sym_overload] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_final] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [anon_sym_typedef] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [aux_sym_integer_token1] = ACTIONS(3138), + [aux_sym_integer_token2] = ACTIONS(3140), + [aux_sym_float_token1] = ACTIONS(3138), + [aux_sym_float_token2] = ACTIONS(3140), + [anon_sym_true] = ACTIONS(3138), + [anon_sym_false] = ACTIONS(3138), + [aux_sym_string_token1] = ACTIONS(3140), + [aux_sym_string_token3] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3140), [sym__closing_brace_unmarker] = ACTIONS(3), }, [538] = { - [sym_identifier] = ACTIONS(2584), - [anon_sym_POUND] = ACTIONS(2586), - [anon_sym_package] = ACTIONS(2584), - [anon_sym_import] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2584), - [anon_sym_throw] = ACTIONS(2584), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_switch] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_case] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_cast] = ACTIONS(2584), - [anon_sym_DOLLARtype] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_untyped] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_this] = ACTIONS(2584), - [anon_sym_AT] = ACTIONS(2584), - [anon_sym_AT_COLON] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2584), - [anon_sym_catch] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_do] = ACTIONS(2584), - [anon_sym_new] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [anon_sym_PERCENT] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(2584), - [anon_sym_LT_LT] = ACTIONS(2586), - [anon_sym_GT_GT] = ACTIONS(2584), - [anon_sym_GT_GT_GT] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_CARET] = ACTIONS(2586), - [anon_sym_AMP_AMP] = ACTIONS(2586), - [anon_sym_PIPE_PIPE] = ACTIONS(2586), - [anon_sym_EQ_EQ] = ACTIONS(2586), - [anon_sym_BANG_EQ] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_LT_EQ] = ACTIONS(2586), - [anon_sym_GT] = ACTIONS(2584), - [anon_sym_GT_EQ] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(2586), - [anon_sym_QMARK_QMARK] = ACTIONS(2586), - [anon_sym_EQ] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2586), - [anon_sym_null] = ACTIONS(2584), - [anon_sym_macro] = ACTIONS(2584), - [anon_sym_abstract] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_public] = ACTIONS(2584), - [anon_sym_private] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym_inline] = ACTIONS(2584), - [anon_sym_overload] = ACTIONS(2584), - [anon_sym_override] = ACTIONS(2584), - [anon_sym_final] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2584), - [anon_sym_interface] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_typedef] = ACTIONS(2584), - [anon_sym_function] = ACTIONS(2584), - [anon_sym_var] = ACTIONS(2584), - [aux_sym_integer_token1] = ACTIONS(2584), - [aux_sym_integer_token2] = ACTIONS(2586), - [aux_sym_float_token1] = ACTIONS(2584), - [aux_sym_float_token2] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2584), - [anon_sym_false] = ACTIONS(2584), - [aux_sym_string_token1] = ACTIONS(2586), - [aux_sym_string_token3] = ACTIONS(2586), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2586), + [sym_identifier] = ACTIONS(3142), + [anon_sym_POUND] = ACTIONS(3144), + [anon_sym_package] = ACTIONS(3142), + [anon_sym_import] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_using] = ACTIONS(3142), + [anon_sym_throw] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_case] = ACTIONS(3142), + [anon_sym_default] = ACTIONS(3142), + [anon_sym_cast] = ACTIONS(3142), + [anon_sym_DOLLARtype] = ACTIONS(3144), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_untyped] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_this] = ACTIONS(3142), + [anon_sym_AT] = ACTIONS(3142), + [anon_sym_AT_COLON] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_catch] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_LT_LT] = ACTIONS(3144), + [anon_sym_GT_GT] = ACTIONS(3142), + [anon_sym_GT_GT_GT] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3142), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3144), + [anon_sym_GT] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3144), + [anon_sym_EQ_GT] = ACTIONS(3144), + [anon_sym_QMARK_QMARK] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3144), + [anon_sym_null] = ACTIONS(3142), + [anon_sym_macro] = ACTIONS(3142), + [anon_sym_abstract] = ACTIONS(3142), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_extern] = ACTIONS(3142), + [anon_sym_inline] = ACTIONS(3142), + [anon_sym_overload] = ACTIONS(3142), + [anon_sym_override] = ACTIONS(3142), + [anon_sym_final] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_interface] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_typedef] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3142), + [anon_sym_var] = ACTIONS(3142), + [aux_sym_integer_token1] = ACTIONS(3142), + [aux_sym_integer_token2] = ACTIONS(3144), + [aux_sym_float_token1] = ACTIONS(3142), + [aux_sym_float_token2] = ACTIONS(3144), + [anon_sym_true] = ACTIONS(3142), + [anon_sym_false] = ACTIONS(3142), + [aux_sym_string_token1] = ACTIONS(3144), + [aux_sym_string_token3] = ACTIONS(3144), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3144), [sym__closing_brace_unmarker] = ACTIONS(3), }, [539] = { - [sym_identifier] = ACTIONS(2588), - [anon_sym_POUND] = ACTIONS(2590), - [anon_sym_package] = ACTIONS(2588), - [anon_sym_import] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_cast] = ACTIONS(2588), - [anon_sym_DOLLARtype] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_untyped] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_this] = ACTIONS(2588), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_AT_COLON] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PERCENT] = ACTIONS(2590), - [anon_sym_SLASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_LT_LT] = ACTIONS(2590), - [anon_sym_GT_GT] = ACTIONS(2588), - [anon_sym_GT_GT_GT] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_CARET] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_PIPE_PIPE] = ACTIONS(2590), - [anon_sym_EQ_EQ] = ACTIONS(2590), - [anon_sym_BANG_EQ] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_LT_EQ] = ACTIONS(2590), - [anon_sym_GT] = ACTIONS(2588), - [anon_sym_GT_EQ] = ACTIONS(2590), - [anon_sym_EQ_GT] = ACTIONS(2590), - [anon_sym_QMARK_QMARK] = ACTIONS(2590), - [anon_sym_EQ] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2590), - [anon_sym_null] = ACTIONS(2588), - [anon_sym_macro] = ACTIONS(2588), - [anon_sym_abstract] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym_overload] = ACTIONS(2588), - [anon_sym_override] = ACTIONS(2588), - [anon_sym_final] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_interface] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_function] = ACTIONS(2588), - [anon_sym_var] = ACTIONS(2588), - [aux_sym_integer_token1] = ACTIONS(2588), - [aux_sym_integer_token2] = ACTIONS(2590), - [aux_sym_float_token1] = ACTIONS(2588), - [aux_sym_float_token2] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2588), - [anon_sym_false] = ACTIONS(2588), - [aux_sym_string_token1] = ACTIONS(2590), - [aux_sym_string_token3] = ACTIONS(2590), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2590), + [sym_identifier] = ACTIONS(3146), + [anon_sym_POUND] = ACTIONS(3148), + [anon_sym_package] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_cast] = ACTIONS(3146), + [anon_sym_DOLLARtype] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_untyped] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_AT_COLON] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_catch] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_LT_LT] = ACTIONS(3148), + [anon_sym_GT_GT] = ACTIONS(3146), + [anon_sym_GT_GT_GT] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_CARET] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_PIPE_PIPE] = ACTIONS(3148), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3148), + [anon_sym_GT] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3148), + [anon_sym_EQ_GT] = ACTIONS(3148), + [anon_sym_QMARK_QMARK] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3146), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3148), + [anon_sym_null] = ACTIONS(3146), + [anon_sym_macro] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_extern] = ACTIONS(3146), + [anon_sym_inline] = ACTIONS(3146), + [anon_sym_overload] = ACTIONS(3146), + [anon_sym_override] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_typedef] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [aux_sym_integer_token1] = ACTIONS(3146), + [aux_sym_integer_token2] = ACTIONS(3148), + [aux_sym_float_token1] = ACTIONS(3146), + [aux_sym_float_token2] = ACTIONS(3148), + [anon_sym_true] = ACTIONS(3146), + [anon_sym_false] = ACTIONS(3146), + [aux_sym_string_token1] = ACTIONS(3148), + [aux_sym_string_token3] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3148), [sym__closing_brace_unmarker] = ACTIONS(3), }, [540] = { - [sym_identifier] = ACTIONS(2592), - [anon_sym_POUND] = ACTIONS(2594), - [anon_sym_package] = ACTIONS(2592), - [anon_sym_import] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2592), - [anon_sym_throw] = ACTIONS(2592), - [anon_sym_LPAREN] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2592), - [anon_sym_default] = ACTIONS(2592), - [anon_sym_cast] = ACTIONS(2592), - [anon_sym_DOLLARtype] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_untyped] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_this] = ACTIONS(2592), - [anon_sym_AT] = ACTIONS(2592), - [anon_sym_AT_COLON] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2592), - [anon_sym_catch] = ACTIONS(2592), - [anon_sym_else] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_do] = ACTIONS(2592), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2592), - [anon_sym_PLUS_PLUS] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2594), - [anon_sym_PERCENT] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2592), - [anon_sym_PLUS] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2592), - [anon_sym_GT_GT_GT] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2592), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2594), - [anon_sym_BANG_EQ] = ACTIONS(2594), - [anon_sym_LT] = ACTIONS(2592), - [anon_sym_LT_EQ] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2594), - [anon_sym_EQ_GT] = ACTIONS(2594), - [anon_sym_QMARK_QMARK] = ACTIONS(2594), - [anon_sym_EQ] = ACTIONS(2592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2594), - [anon_sym_null] = ACTIONS(2592), - [anon_sym_macro] = ACTIONS(2592), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_public] = ACTIONS(2592), - [anon_sym_private] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_inline] = ACTIONS(2592), - [anon_sym_overload] = ACTIONS(2592), - [anon_sym_override] = ACTIONS(2592), - [anon_sym_final] = ACTIONS(2592), - [anon_sym_class] = ACTIONS(2592), - [anon_sym_interface] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [anon_sym_typedef] = ACTIONS(2592), - [anon_sym_function] = ACTIONS(2592), - [anon_sym_var] = ACTIONS(2592), - [aux_sym_integer_token1] = ACTIONS(2592), - [aux_sym_integer_token2] = ACTIONS(2594), - [aux_sym_float_token1] = ACTIONS(2592), - [aux_sym_float_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [aux_sym_string_token1] = ACTIONS(2594), - [aux_sym_string_token3] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2594), + [sym_identifier] = ACTIONS(3150), + [anon_sym_POUND] = ACTIONS(3152), + [anon_sym_package] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_cast] = ACTIONS(3150), + [anon_sym_DOLLARtype] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_untyped] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_AT_COLON] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_catch] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_GT_GT] = ACTIONS(3150), + [anon_sym_GT_GT_GT] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_PIPE_PIPE] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3150), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_EQ_GT] = ACTIONS(3152), + [anon_sym_QMARK_QMARK] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3150), + [anon_sym_macro] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3150), + [anon_sym_overload] = ACTIONS(3150), + [anon_sym_override] = ACTIONS(3150), + [anon_sym_final] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [aux_sym_integer_token1] = ACTIONS(3150), + [aux_sym_integer_token2] = ACTIONS(3152), + [aux_sym_float_token1] = ACTIONS(3150), + [aux_sym_float_token2] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3150), + [anon_sym_false] = ACTIONS(3150), + [aux_sym_string_token1] = ACTIONS(3152), + [aux_sym_string_token3] = ACTIONS(3152), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3152), [sym__closing_brace_unmarker] = ACTIONS(3), }, [541] = { - [sym_identifier] = ACTIONS(2596), - [anon_sym_POUND] = ACTIONS(2598), - [anon_sym_package] = ACTIONS(2596), - [anon_sym_import] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_using] = ACTIONS(2596), - [anon_sym_throw] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_switch] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2596), - [anon_sym_cast] = ACTIONS(2596), - [anon_sym_DOLLARtype] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_untyped] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_this] = ACTIONS(2596), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_AT_COLON] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_catch] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_PERCENT] = ACTIONS(2598), - [anon_sym_SLASH] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2596), - [anon_sym_LT_LT] = ACTIONS(2598), - [anon_sym_GT_GT] = ACTIONS(2596), - [anon_sym_GT_GT_GT] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_CARET] = ACTIONS(2598), - [anon_sym_AMP_AMP] = ACTIONS(2598), - [anon_sym_PIPE_PIPE] = ACTIONS(2598), - [anon_sym_EQ_EQ] = ACTIONS(2598), - [anon_sym_BANG_EQ] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_LT_EQ] = ACTIONS(2598), - [anon_sym_GT] = ACTIONS(2596), - [anon_sym_GT_EQ] = ACTIONS(2598), - [anon_sym_EQ_GT] = ACTIONS(2598), - [anon_sym_QMARK_QMARK] = ACTIONS(2598), - [anon_sym_EQ] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2598), - [anon_sym_null] = ACTIONS(2596), - [anon_sym_macro] = ACTIONS(2596), - [anon_sym_abstract] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_public] = ACTIONS(2596), - [anon_sym_private] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym_inline] = ACTIONS(2596), - [anon_sym_overload] = ACTIONS(2596), - [anon_sym_override] = ACTIONS(2596), - [anon_sym_final] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2596), - [anon_sym_interface] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_typedef] = ACTIONS(2596), - [anon_sym_function] = ACTIONS(2596), - [anon_sym_var] = ACTIONS(2596), - [aux_sym_integer_token1] = ACTIONS(2596), - [aux_sym_integer_token2] = ACTIONS(2598), - [aux_sym_float_token1] = ACTIONS(2596), - [aux_sym_float_token2] = ACTIONS(2598), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [aux_sym_string_token1] = ACTIONS(2598), - [aux_sym_string_token3] = ACTIONS(2598), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2598), + [sym_identifier] = ACTIONS(3154), + [anon_sym_POUND] = ACTIONS(3156), + [anon_sym_package] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_cast] = ACTIONS(3154), + [anon_sym_DOLLARtype] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_untyped] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_this] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_AT_COLON] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_LT_LT] = ACTIONS(3156), + [anon_sym_GT_GT] = ACTIONS(3154), + [anon_sym_GT_GT_GT] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(3154), + [anon_sym_CARET] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_EQ_GT] = ACTIONS(3156), + [anon_sym_QMARK_QMARK] = ACTIONS(3156), + [anon_sym_EQ] = ACTIONS(3154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_macro] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_overload] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_final] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [aux_sym_integer_token1] = ACTIONS(3154), + [aux_sym_integer_token2] = ACTIONS(3156), + [aux_sym_float_token1] = ACTIONS(3154), + [aux_sym_float_token2] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [aux_sym_string_token1] = ACTIONS(3156), + [aux_sym_string_token3] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3156), [sym__closing_brace_unmarker] = ACTIONS(3), }, [542] = { - [sym_identifier] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2602), - [anon_sym_package] = ACTIONS(2600), - [anon_sym_import] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2600), - [anon_sym_throw] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2602), - [anon_sym_switch] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2602), - [anon_sym_case] = ACTIONS(2600), - [anon_sym_default] = ACTIONS(2600), - [anon_sym_cast] = ACTIONS(2600), - [anon_sym_DOLLARtype] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_untyped] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2602), - [anon_sym_this] = ACTIONS(2600), - [anon_sym_AT] = ACTIONS(2600), - [anon_sym_AT_COLON] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_catch] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS_PLUS] = ACTIONS(2602), - [anon_sym_DASH_DASH] = ACTIONS(2602), - [anon_sym_PERCENT] = ACTIONS(2602), - [anon_sym_SLASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_LT_LT] = ACTIONS(2602), - [anon_sym_GT_GT] = ACTIONS(2600), - [anon_sym_GT_GT_GT] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_CARET] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_LT_EQ] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2600), - [anon_sym_GT_EQ] = ACTIONS(2602), - [anon_sym_EQ_GT] = ACTIONS(2602), - [anon_sym_QMARK_QMARK] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2602), - [anon_sym_null] = ACTIONS(2600), - [anon_sym_macro] = ACTIONS(2600), - [anon_sym_abstract] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_public] = ACTIONS(2600), - [anon_sym_private] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2600), - [anon_sym_inline] = ACTIONS(2600), - [anon_sym_overload] = ACTIONS(2600), - [anon_sym_override] = ACTIONS(2600), - [anon_sym_final] = ACTIONS(2600), - [anon_sym_class] = ACTIONS(2600), - [anon_sym_interface] = ACTIONS(2600), - [anon_sym_enum] = ACTIONS(2600), - [anon_sym_typedef] = ACTIONS(2600), - [anon_sym_function] = ACTIONS(2600), - [anon_sym_var] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2600), - [aux_sym_integer_token2] = ACTIONS(2602), - [aux_sym_float_token1] = ACTIONS(2600), - [aux_sym_float_token2] = ACTIONS(2602), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [aux_sym_string_token1] = ACTIONS(2602), - [aux_sym_string_token3] = ACTIONS(2602), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2602), + [sym_identifier] = ACTIONS(3158), + [anon_sym_POUND] = ACTIONS(3160), + [anon_sym_package] = ACTIONS(3158), + [anon_sym_import] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3158), + [anon_sym_throw] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3158), + [anon_sym_default] = ACTIONS(3158), + [anon_sym_cast] = ACTIONS(3158), + [anon_sym_DOLLARtype] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_untyped] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3158), + [anon_sym_AT_COLON] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3158), + [anon_sym_catch] = ACTIONS(3158), + [anon_sym_else] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_while] = ACTIONS(3158), + [anon_sym_do] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_GT_GT_GT] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP_AMP] = ACTIONS(3160), + [anon_sym_PIPE_PIPE] = ACTIONS(3160), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3160), + [anon_sym_EQ_GT] = ACTIONS(3160), + [anon_sym_QMARK_QMARK] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3160), + [anon_sym_null] = ACTIONS(3158), + [anon_sym_macro] = ACTIONS(3158), + [anon_sym_abstract] = ACTIONS(3158), + [anon_sym_static] = ACTIONS(3158), + [anon_sym_public] = ACTIONS(3158), + [anon_sym_private] = ACTIONS(3158), + [anon_sym_extern] = ACTIONS(3158), + [anon_sym_inline] = ACTIONS(3158), + [anon_sym_overload] = ACTIONS(3158), + [anon_sym_override] = ACTIONS(3158), + [anon_sym_final] = ACTIONS(3158), + [anon_sym_class] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), + [anon_sym_typedef] = ACTIONS(3158), + [anon_sym_function] = ACTIONS(3158), + [anon_sym_var] = ACTIONS(3158), + [aux_sym_integer_token1] = ACTIONS(3158), + [aux_sym_integer_token2] = ACTIONS(3160), + [aux_sym_float_token1] = ACTIONS(3158), + [aux_sym_float_token2] = ACTIONS(3160), + [anon_sym_true] = ACTIONS(3158), + [anon_sym_false] = ACTIONS(3158), + [aux_sym_string_token1] = ACTIONS(3160), + [aux_sym_string_token3] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3160), [sym__closing_brace_unmarker] = ACTIONS(3), }, [543] = { - [sym_identifier] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2606), - [anon_sym_package] = ACTIONS(2604), - [anon_sym_import] = ACTIONS(2604), - [anon_sym_STAR] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2604), - [anon_sym_throw] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_switch] = ACTIONS(2604), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_case] = ACTIONS(2604), - [anon_sym_default] = ACTIONS(2604), - [anon_sym_cast] = ACTIONS(2604), - [anon_sym_DOLLARtype] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2604), - [anon_sym_untyped] = ACTIONS(2604), - [anon_sym_break] = ACTIONS(2604), - [anon_sym_continue] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_this] = ACTIONS(2604), - [anon_sym_AT] = ACTIONS(2604), - [anon_sym_AT_COLON] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2604), - [anon_sym_catch] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2604), - [anon_sym_if] = ACTIONS(2604), - [anon_sym_while] = ACTIONS(2604), - [anon_sym_do] = ACTIONS(2604), - [anon_sym_new] = ACTIONS(2604), - [anon_sym_TILDE] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_PLUS_PLUS] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2606), - [anon_sym_PERCENT] = ACTIONS(2606), - [anon_sym_SLASH] = ACTIONS(2604), - [anon_sym_PLUS] = ACTIONS(2604), - [anon_sym_LT_LT] = ACTIONS(2606), - [anon_sym_GT_GT] = ACTIONS(2604), - [anon_sym_GT_GT_GT] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_EQ_EQ] = ACTIONS(2606), - [anon_sym_BANG_EQ] = ACTIONS(2606), - [anon_sym_LT] = ACTIONS(2604), - [anon_sym_LT_EQ] = ACTIONS(2606), - [anon_sym_GT] = ACTIONS(2604), - [anon_sym_GT_EQ] = ACTIONS(2606), - [anon_sym_EQ_GT] = ACTIONS(2606), - [anon_sym_QMARK_QMARK] = ACTIONS(2606), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2606), - [anon_sym_null] = ACTIONS(2604), - [anon_sym_macro] = ACTIONS(2604), - [anon_sym_abstract] = ACTIONS(2604), - [anon_sym_static] = ACTIONS(2604), - [anon_sym_public] = ACTIONS(2604), - [anon_sym_private] = ACTIONS(2604), - [anon_sym_extern] = ACTIONS(2604), - [anon_sym_inline] = ACTIONS(2604), - [anon_sym_overload] = ACTIONS(2604), - [anon_sym_override] = ACTIONS(2604), - [anon_sym_final] = ACTIONS(2604), - [anon_sym_class] = ACTIONS(2604), - [anon_sym_interface] = ACTIONS(2604), - [anon_sym_enum] = ACTIONS(2604), - [anon_sym_typedef] = ACTIONS(2604), - [anon_sym_function] = ACTIONS(2604), - [anon_sym_var] = ACTIONS(2604), - [aux_sym_integer_token1] = ACTIONS(2604), - [aux_sym_integer_token2] = ACTIONS(2606), - [aux_sym_float_token1] = ACTIONS(2604), - [aux_sym_float_token2] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [aux_sym_string_token1] = ACTIONS(2606), - [aux_sym_string_token3] = ACTIONS(2606), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2606), + [sym_identifier] = ACTIONS(3162), + [anon_sym_POUND] = ACTIONS(3164), + [anon_sym_package] = ACTIONS(3162), + [anon_sym_import] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3162), + [anon_sym_default] = ACTIONS(3162), + [anon_sym_cast] = ACTIONS(3162), + [anon_sym_DOLLARtype] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_untyped] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_AT_COLON] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_catch] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_do] = ACTIONS(3162), + [anon_sym_new] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [anon_sym_PERCENT] = ACTIONS(3164), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_LT_LT] = ACTIONS(3164), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_CARET] = ACTIONS(3164), + [anon_sym_AMP_AMP] = ACTIONS(3164), + [anon_sym_PIPE_PIPE] = ACTIONS(3164), + [anon_sym_EQ_EQ] = ACTIONS(3164), + [anon_sym_BANG_EQ] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3164), + [anon_sym_EQ_GT] = ACTIONS(3164), + [anon_sym_QMARK_QMARK] = ACTIONS(3164), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3164), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_macro] = ACTIONS(3162), + [anon_sym_abstract] = ACTIONS(3162), + [anon_sym_static] = ACTIONS(3162), + [anon_sym_public] = ACTIONS(3162), + [anon_sym_private] = ACTIONS(3162), + [anon_sym_extern] = ACTIONS(3162), + [anon_sym_inline] = ACTIONS(3162), + [anon_sym_overload] = ACTIONS(3162), + [anon_sym_override] = ACTIONS(3162), + [anon_sym_final] = ACTIONS(3162), + [anon_sym_class] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), + [anon_sym_typedef] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(3162), + [anon_sym_var] = ACTIONS(3162), + [aux_sym_integer_token1] = ACTIONS(3162), + [aux_sym_integer_token2] = ACTIONS(3164), + [aux_sym_float_token1] = ACTIONS(3162), + [aux_sym_float_token2] = ACTIONS(3164), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [aux_sym_string_token1] = ACTIONS(3164), + [aux_sym_string_token3] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3164), [sym__closing_brace_unmarker] = ACTIONS(3), }, [544] = { - [sym_identifier] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(2610), - [anon_sym_package] = ACTIONS(2608), - [anon_sym_import] = ACTIONS(2608), - [anon_sym_STAR] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2608), - [anon_sym_throw] = ACTIONS(2608), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2608), - [anon_sym_default] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2608), - [anon_sym_DOLLARtype] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_untyped] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_this] = ACTIONS(2608), - [anon_sym_AT] = ACTIONS(2608), - [anon_sym_AT_COLON] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2608), - [anon_sym_catch] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_do] = ACTIONS(2608), - [anon_sym_new] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(2610), - [anon_sym_PERCENT] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2608), - [anon_sym_PLUS] = ACTIONS(2608), - [anon_sym_LT_LT] = ACTIONS(2610), - [anon_sym_GT_GT] = ACTIONS(2608), - [anon_sym_GT_GT_GT] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_CARET] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_LT_EQ] = ACTIONS(2610), - [anon_sym_GT] = ACTIONS(2608), - [anon_sym_GT_EQ] = ACTIONS(2610), - [anon_sym_EQ_GT] = ACTIONS(2610), - [anon_sym_QMARK_QMARK] = ACTIONS(2610), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2610), - [anon_sym_null] = ACTIONS(2608), - [anon_sym_macro] = ACTIONS(2608), - [anon_sym_abstract] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2608), - [anon_sym_public] = ACTIONS(2608), - [anon_sym_private] = ACTIONS(2608), - [anon_sym_extern] = ACTIONS(2608), - [anon_sym_inline] = ACTIONS(2608), - [anon_sym_overload] = ACTIONS(2608), - [anon_sym_override] = ACTIONS(2608), - [anon_sym_final] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2608), - [anon_sym_interface] = ACTIONS(2608), - [anon_sym_enum] = ACTIONS(2608), - [anon_sym_typedef] = ACTIONS(2608), - [anon_sym_function] = ACTIONS(2608), - [anon_sym_var] = ACTIONS(2608), - [aux_sym_integer_token1] = ACTIONS(2608), - [aux_sym_integer_token2] = ACTIONS(2610), - [aux_sym_float_token1] = ACTIONS(2608), - [aux_sym_float_token2] = ACTIONS(2610), - [anon_sym_true] = ACTIONS(2608), - [anon_sym_false] = ACTIONS(2608), - [aux_sym_string_token1] = ACTIONS(2610), - [aux_sym_string_token3] = ACTIONS(2610), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2610), + [sym_identifier] = ACTIONS(3166), + [anon_sym_POUND] = ACTIONS(3168), + [anon_sym_package] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3166), + [anon_sym_default] = ACTIONS(3166), + [anon_sym_cast] = ACTIONS(3166), + [anon_sym_DOLLARtype] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_untyped] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_this] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3166), + [anon_sym_AT_COLON] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_catch] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3168), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3168), + [anon_sym_PERCENT] = ACTIONS(3168), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_LT_LT] = ACTIONS(3168), + [anon_sym_GT_GT] = ACTIONS(3166), + [anon_sym_GT_GT_GT] = ACTIONS(3168), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_PIPE] = ACTIONS(3166), + [anon_sym_CARET] = ACTIONS(3168), + [anon_sym_AMP_AMP] = ACTIONS(3168), + [anon_sym_PIPE_PIPE] = ACTIONS(3168), + [anon_sym_EQ_EQ] = ACTIONS(3168), + [anon_sym_BANG_EQ] = ACTIONS(3168), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3168), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3168), + [anon_sym_EQ_GT] = ACTIONS(3168), + [anon_sym_QMARK_QMARK] = ACTIONS(3168), + [anon_sym_EQ] = ACTIONS(3166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3168), + [anon_sym_null] = ACTIONS(3166), + [anon_sym_macro] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_extern] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_overload] = ACTIONS(3166), + [anon_sym_override] = ACTIONS(3166), + [anon_sym_final] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), + [anon_sym_typedef] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [aux_sym_integer_token1] = ACTIONS(3166), + [aux_sym_integer_token2] = ACTIONS(3168), + [aux_sym_float_token1] = ACTIONS(3166), + [aux_sym_float_token2] = ACTIONS(3168), + [anon_sym_true] = ACTIONS(3166), + [anon_sym_false] = ACTIONS(3166), + [aux_sym_string_token1] = ACTIONS(3168), + [aux_sym_string_token3] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3168), [sym__closing_brace_unmarker] = ACTIONS(3), }, [545] = { - [sym_identifier] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_package] = ACTIONS(2612), - [anon_sym_import] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2612), - [anon_sym_throw] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2612), - [anon_sym_default] = ACTIONS(2612), - [anon_sym_cast] = ACTIONS(2612), - [anon_sym_DOLLARtype] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_untyped] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_this] = ACTIONS(2612), - [anon_sym_AT] = ACTIONS(2612), - [anon_sym_AT_COLON] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2612), - [anon_sym_catch] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_do] = ACTIONS(2612), - [anon_sym_new] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2614), - [anon_sym_PERCENT] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2612), - [anon_sym_PLUS] = ACTIONS(2612), - [anon_sym_LT_LT] = ACTIONS(2614), - [anon_sym_GT_GT] = ACTIONS(2612), - [anon_sym_GT_GT_GT] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT] = ACTIONS(2612), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_EQ_GT] = ACTIONS(2614), - [anon_sym_QMARK_QMARK] = ACTIONS(2614), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2612), - [anon_sym_macro] = ACTIONS(2612), - [anon_sym_abstract] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_inline] = ACTIONS(2612), - [anon_sym_overload] = ACTIONS(2612), - [anon_sym_override] = ACTIONS(2612), - [anon_sym_final] = ACTIONS(2612), - [anon_sym_class] = ACTIONS(2612), - [anon_sym_interface] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2612), - [anon_sym_function] = ACTIONS(2612), - [anon_sym_var] = ACTIONS(2612), - [aux_sym_integer_token1] = ACTIONS(2612), - [aux_sym_integer_token2] = ACTIONS(2614), - [aux_sym_float_token1] = ACTIONS(2612), - [aux_sym_float_token2] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [aux_sym_string_token1] = ACTIONS(2614), - [aux_sym_string_token3] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(3172), + [anon_sym_package] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_cast] = ACTIONS(3170), + [anon_sym_DOLLARtype] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_untyped] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_this] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_AT_COLON] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_PERCENT] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_LT_LT] = ACTIONS(3172), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_CARET] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_PIPE_PIPE] = ACTIONS(3172), + [anon_sym_EQ_EQ] = ACTIONS(3172), + [anon_sym_BANG_EQ] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_LT_EQ] = ACTIONS(3172), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_GT_EQ] = ACTIONS(3172), + [anon_sym_EQ_GT] = ACTIONS(3172), + [anon_sym_QMARK_QMARK] = ACTIONS(3172), + [anon_sym_EQ] = ACTIONS(3170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3172), + [anon_sym_null] = ACTIONS(3170), + [anon_sym_macro] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym_overload] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_final] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [aux_sym_integer_token1] = ACTIONS(3170), + [aux_sym_integer_token2] = ACTIONS(3172), + [aux_sym_float_token1] = ACTIONS(3170), + [aux_sym_float_token2] = ACTIONS(3172), + [anon_sym_true] = ACTIONS(3170), + [anon_sym_false] = ACTIONS(3170), + [aux_sym_string_token1] = ACTIONS(3172), + [aux_sym_string_token3] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3172), [sym__closing_brace_unmarker] = ACTIONS(3), }, [546] = { - [sym_identifier] = ACTIONS(2616), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_package] = ACTIONS(2616), - [anon_sym_import] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_using] = ACTIONS(2616), - [anon_sym_throw] = ACTIONS(2616), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_switch] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2616), - [anon_sym_default] = ACTIONS(2616), - [anon_sym_cast] = ACTIONS(2616), - [anon_sym_DOLLARtype] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2616), - [anon_sym_return] = ACTIONS(2616), - [anon_sym_untyped] = ACTIONS(2616), - [anon_sym_break] = ACTIONS(2616), - [anon_sym_continue] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_this] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_AT_COLON] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2616), - [anon_sym_catch] = ACTIONS(2616), - [anon_sym_else] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_while] = ACTIONS(2616), - [anon_sym_do] = ACTIONS(2616), - [anon_sym_new] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PERCENT] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2616), - [anon_sym_LT_LT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2616), - [anon_sym_GT_GT_GT] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_QMARK_QMARK] = ACTIONS(2618), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), - [anon_sym_null] = ACTIONS(2616), - [anon_sym_macro] = ACTIONS(2616), - [anon_sym_abstract] = ACTIONS(2616), - [anon_sym_static] = ACTIONS(2616), - [anon_sym_public] = ACTIONS(2616), - [anon_sym_private] = ACTIONS(2616), - [anon_sym_extern] = ACTIONS(2616), - [anon_sym_inline] = ACTIONS(2616), - [anon_sym_overload] = ACTIONS(2616), - [anon_sym_override] = ACTIONS(2616), - [anon_sym_final] = ACTIONS(2616), - [anon_sym_class] = ACTIONS(2616), - [anon_sym_interface] = ACTIONS(2616), - [anon_sym_enum] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2616), - [anon_sym_function] = ACTIONS(2616), - [anon_sym_var] = ACTIONS(2616), - [aux_sym_integer_token1] = ACTIONS(2616), - [aux_sym_integer_token2] = ACTIONS(2618), - [aux_sym_float_token1] = ACTIONS(2616), - [aux_sym_float_token2] = ACTIONS(2618), - [anon_sym_true] = ACTIONS(2616), - [anon_sym_false] = ACTIONS(2616), - [aux_sym_string_token1] = ACTIONS(2618), - [aux_sym_string_token3] = ACTIONS(2618), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2618), + [sym_identifier] = ACTIONS(3174), + [anon_sym_POUND] = ACTIONS(3176), + [anon_sym_package] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3174), + [anon_sym_default] = ACTIONS(3174), + [anon_sym_cast] = ACTIONS(3174), + [anon_sym_DOLLARtype] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_untyped] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_this] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_AT_COLON] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_catch] = ACTIONS(3174), + [anon_sym_else] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [anon_sym_PERCENT] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_LT_LT] = ACTIONS(3176), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_PIPE_PIPE] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_GT_EQ] = ACTIONS(3176), + [anon_sym_EQ_GT] = ACTIONS(3176), + [anon_sym_QMARK_QMARK] = ACTIONS(3176), + [anon_sym_EQ] = ACTIONS(3174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_macro] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3174), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_public] = ACTIONS(3174), + [anon_sym_private] = ACTIONS(3174), + [anon_sym_extern] = ACTIONS(3174), + [anon_sym_inline] = ACTIONS(3174), + [anon_sym_overload] = ACTIONS(3174), + [anon_sym_override] = ACTIONS(3174), + [anon_sym_final] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), + [anon_sym_typedef] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [aux_sym_integer_token1] = ACTIONS(3174), + [aux_sym_integer_token2] = ACTIONS(3176), + [aux_sym_float_token1] = ACTIONS(3174), + [aux_sym_float_token2] = ACTIONS(3176), + [anon_sym_true] = ACTIONS(3174), + [anon_sym_false] = ACTIONS(3174), + [aux_sym_string_token1] = ACTIONS(3176), + [aux_sym_string_token3] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3176), [sym__closing_brace_unmarker] = ACTIONS(3), }, [547] = { - [sym_identifier] = ACTIONS(2620), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_package] = ACTIONS(2620), - [anon_sym_import] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_using] = ACTIONS(2620), - [anon_sym_throw] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_cast] = ACTIONS(2620), - [anon_sym_DOLLARtype] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_untyped] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2620), - [anon_sym_continue] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_this] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_AT_COLON] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_catch] = ACTIONS(2620), - [anon_sym_else] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_PLUS] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2622), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(2622), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_GT_GT_GT] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_PIPE_PIPE] = ACTIONS(2622), - [anon_sym_EQ_EQ] = ACTIONS(2622), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2622), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_GT_EQ] = ACTIONS(2622), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_QMARK_QMARK] = ACTIONS(2622), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_macro] = ACTIONS(2620), - [anon_sym_abstract] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_extern] = ACTIONS(2620), - [anon_sym_inline] = ACTIONS(2620), - [anon_sym_overload] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_interface] = ACTIONS(2620), - [anon_sym_enum] = ACTIONS(2620), - [anon_sym_typedef] = ACTIONS(2620), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_var] = ACTIONS(2620), - [aux_sym_integer_token1] = ACTIONS(2620), - [aux_sym_integer_token2] = ACTIONS(2622), - [aux_sym_float_token1] = ACTIONS(2620), - [aux_sym_float_token2] = ACTIONS(2622), - [anon_sym_true] = ACTIONS(2620), - [anon_sym_false] = ACTIONS(2620), - [aux_sym_string_token1] = ACTIONS(2622), - [aux_sym_string_token3] = ACTIONS(2622), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2622), + [sym_identifier] = ACTIONS(3178), + [anon_sym_POUND] = ACTIONS(3180), + [anon_sym_package] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_cast] = ACTIONS(3178), + [anon_sym_DOLLARtype] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_untyped] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_this] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_AT_COLON] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(3178), + [anon_sym_else] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_PERCENT] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3180), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_PIPE_PIPE] = ACTIONS(3180), + [anon_sym_EQ_EQ] = ACTIONS(3180), + [anon_sym_BANG_EQ] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3180), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3180), + [anon_sym_EQ_GT] = ACTIONS(3180), + [anon_sym_QMARK_QMARK] = ACTIONS(3180), + [anon_sym_EQ] = ACTIONS(3178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_macro] = ACTIONS(3178), + [anon_sym_abstract] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_overload] = ACTIONS(3178), + [anon_sym_override] = ACTIONS(3178), + [anon_sym_final] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [aux_sym_integer_token1] = ACTIONS(3178), + [aux_sym_integer_token2] = ACTIONS(3180), + [aux_sym_float_token1] = ACTIONS(3178), + [aux_sym_float_token2] = ACTIONS(3180), + [anon_sym_true] = ACTIONS(3178), + [anon_sym_false] = ACTIONS(3178), + [aux_sym_string_token1] = ACTIONS(3180), + [aux_sym_string_token3] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3180), [sym__closing_brace_unmarker] = ACTIONS(3), }, [548] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3182), + [anon_sym_POUND] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_cast] = ACTIONS(3182), + [anon_sym_DOLLARtype] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_untyped] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_AT_COLON] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PERCENT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3184), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_CARET] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_PIPE_PIPE] = ACTIONS(3184), + [anon_sym_EQ_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_LT_EQ] = ACTIONS(3184), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3184), + [anon_sym_EQ_GT] = ACTIONS(3184), + [anon_sym_QMARK_QMARK] = ACTIONS(3184), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_macro] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_overload] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [aux_sym_integer_token1] = ACTIONS(3182), + [aux_sym_integer_token2] = ACTIONS(3184), + [aux_sym_float_token1] = ACTIONS(3182), + [aux_sym_float_token2] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [aux_sym_string_token1] = ACTIONS(3184), + [aux_sym_string_token3] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3184), [sym__closing_brace_unmarker] = ACTIONS(3), }, [549] = { - [sym_identifier] = ACTIONS(2628), - [anon_sym_POUND] = ACTIONS(2630), - [anon_sym_package] = ACTIONS(2628), - [anon_sym_import] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2628), - [anon_sym_throw] = ACTIONS(2628), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2628), - [anon_sym_default] = ACTIONS(2628), - [anon_sym_cast] = ACTIONS(2628), - [anon_sym_DOLLARtype] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2628), - [anon_sym_untyped] = ACTIONS(2628), - [anon_sym_break] = ACTIONS(2628), - [anon_sym_continue] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_this] = ACTIONS(2628), - [anon_sym_AT] = ACTIONS(2628), - [anon_sym_AT_COLON] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2628), - [anon_sym_catch] = ACTIONS(2628), - [anon_sym_else] = ACTIONS(2628), - [anon_sym_if] = ACTIONS(2628), - [anon_sym_while] = ACTIONS(2628), - [anon_sym_do] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_PLUS_PLUS] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2630), - [anon_sym_PERCENT] = ACTIONS(2630), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_LT_LT] = ACTIONS(2630), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_GT_GT_GT] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP_AMP] = ACTIONS(2630), - [anon_sym_PIPE_PIPE] = ACTIONS(2630), - [anon_sym_EQ_EQ] = ACTIONS(2630), - [anon_sym_BANG_EQ] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2630), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_GT_EQ] = ACTIONS(2630), - [anon_sym_EQ_GT] = ACTIONS(2630), - [anon_sym_QMARK_QMARK] = ACTIONS(2630), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), - [anon_sym_null] = ACTIONS(2628), - [anon_sym_macro] = ACTIONS(2628), - [anon_sym_abstract] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_public] = ACTIONS(2628), - [anon_sym_private] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym_inline] = ACTIONS(2628), - [anon_sym_overload] = ACTIONS(2628), - [anon_sym_override] = ACTIONS(2628), - [anon_sym_final] = ACTIONS(2628), - [anon_sym_class] = ACTIONS(2628), - [anon_sym_interface] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_typedef] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2628), - [anon_sym_var] = ACTIONS(2628), - [aux_sym_integer_token1] = ACTIONS(2628), - [aux_sym_integer_token2] = ACTIONS(2630), - [aux_sym_float_token1] = ACTIONS(2628), - [aux_sym_float_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2628), - [anon_sym_false] = ACTIONS(2628), - [aux_sym_string_token1] = ACTIONS(2630), - [aux_sym_string_token3] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2630), + [sym_identifier] = ACTIONS(3186), + [anon_sym_POUND] = ACTIONS(3188), + [anon_sym_package] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_cast] = ACTIONS(3186), + [anon_sym_DOLLARtype] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_untyped] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_AT_COLON] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_catch] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3188), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_EQ_GT] = ACTIONS(3188), + [anon_sym_QMARK_QMARK] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_macro] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_extern] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_overload] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_typedef] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [aux_sym_integer_token1] = ACTIONS(3186), + [aux_sym_integer_token2] = ACTIONS(3188), + [aux_sym_float_token1] = ACTIONS(3186), + [aux_sym_float_token2] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [aux_sym_string_token1] = ACTIONS(3188), + [aux_sym_string_token3] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3188), [sym__closing_brace_unmarker] = ACTIONS(3), }, [550] = { - [sym_identifier] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_package] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(2632), - [anon_sym_throw] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_cast] = ACTIONS(2632), - [anon_sym_DOLLARtype] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_untyped] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_this] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2632), - [anon_sym_AT_COLON] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2632), - [anon_sym_catch] = ACTIONS(2632), - [anon_sym_else] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_do] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2634), - [anon_sym_DASH_DASH] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_SLASH] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2632), - [anon_sym_LT_LT] = ACTIONS(2634), - [anon_sym_GT_GT] = ACTIONS(2632), - [anon_sym_GT_GT_GT] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_CARET] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_EQ_EQ] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_LT_EQ] = ACTIONS(2634), - [anon_sym_GT] = ACTIONS(2632), - [anon_sym_GT_EQ] = ACTIONS(2634), - [anon_sym_EQ_GT] = ACTIONS(2634), - [anon_sym_QMARK_QMARK] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2634), - [anon_sym_null] = ACTIONS(2632), - [anon_sym_macro] = ACTIONS(2632), - [anon_sym_abstract] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym_inline] = ACTIONS(2632), - [anon_sym_overload] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_interface] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [aux_sym_integer_token1] = ACTIONS(2632), - [aux_sym_integer_token2] = ACTIONS(2634), - [aux_sym_float_token1] = ACTIONS(2632), - [aux_sym_float_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [aux_sym_string_token1] = ACTIONS(2634), - [aux_sym_string_token3] = ACTIONS(2634), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2634), + [sym_identifier] = ACTIONS(3190), + [anon_sym_POUND] = ACTIONS(3192), + [anon_sym_package] = ACTIONS(3190), + [anon_sym_import] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3190), + [anon_sym_default] = ACTIONS(3190), + [anon_sym_cast] = ACTIONS(3190), + [anon_sym_DOLLARtype] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_untyped] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3190), + [anon_sym_AT_COLON] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_catch] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_PERCENT] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_LT_LT] = ACTIONS(3192), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3192), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3192), + [anon_sym_AMP_AMP] = ACTIONS(3192), + [anon_sym_PIPE_PIPE] = ACTIONS(3192), + [anon_sym_EQ_EQ] = ACTIONS(3192), + [anon_sym_BANG_EQ] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_LT_EQ] = ACTIONS(3192), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_GT_EQ] = ACTIONS(3192), + [anon_sym_EQ_GT] = ACTIONS(3192), + [anon_sym_QMARK_QMARK] = ACTIONS(3192), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3192), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_macro] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_static] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_extern] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_overload] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_class] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_typedef] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3190), + [anon_sym_var] = ACTIONS(3190), + [aux_sym_integer_token1] = ACTIONS(3190), + [aux_sym_integer_token2] = ACTIONS(3192), + [aux_sym_float_token1] = ACTIONS(3190), + [aux_sym_float_token2] = ACTIONS(3192), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [aux_sym_string_token1] = ACTIONS(3192), + [aux_sym_string_token3] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3192), [sym__closing_brace_unmarker] = ACTIONS(3), }, [551] = { - [sym_identifier] = ACTIONS(2636), - [anon_sym_POUND] = ACTIONS(2638), - [anon_sym_package] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(2636), - [anon_sym_STAR] = ACTIONS(2638), - [anon_sym_using] = ACTIONS(2636), - [anon_sym_throw] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2636), - [anon_sym_default] = ACTIONS(2636), - [anon_sym_cast] = ACTIONS(2636), - [anon_sym_DOLLARtype] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2636), - [anon_sym_return] = ACTIONS(2636), - [anon_sym_untyped] = ACTIONS(2636), - [anon_sym_break] = ACTIONS(2636), - [anon_sym_continue] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_this] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2636), - [anon_sym_AT_COLON] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2636), - [anon_sym_catch] = ACTIONS(2636), - [anon_sym_else] = ACTIONS(2636), - [anon_sym_if] = ACTIONS(2636), - [anon_sym_while] = ACTIONS(2636), - [anon_sym_do] = ACTIONS(2636), - [anon_sym_new] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2638), - [anon_sym_DASH_DASH] = ACTIONS(2638), - [anon_sym_PERCENT] = ACTIONS(2638), - [anon_sym_SLASH] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2636), - [anon_sym_LT_LT] = ACTIONS(2638), - [anon_sym_GT_GT] = ACTIONS(2636), - [anon_sym_GT_GT_GT] = ACTIONS(2638), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2636), - [anon_sym_CARET] = ACTIONS(2638), - [anon_sym_AMP_AMP] = ACTIONS(2638), - [anon_sym_PIPE_PIPE] = ACTIONS(2638), - [anon_sym_EQ_EQ] = ACTIONS(2638), - [anon_sym_BANG_EQ] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2636), - [anon_sym_LT_EQ] = ACTIONS(2638), - [anon_sym_GT] = ACTIONS(2636), - [anon_sym_GT_EQ] = ACTIONS(2638), - [anon_sym_EQ_GT] = ACTIONS(2638), - [anon_sym_QMARK_QMARK] = ACTIONS(2638), - [anon_sym_EQ] = ACTIONS(2636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2638), - [anon_sym_null] = ACTIONS(2636), - [anon_sym_macro] = ACTIONS(2636), - [anon_sym_abstract] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_extern] = ACTIONS(2636), - [anon_sym_inline] = ACTIONS(2636), - [anon_sym_overload] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_final] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_interface] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_typedef] = ACTIONS(2636), - [anon_sym_function] = ACTIONS(2636), - [anon_sym_var] = ACTIONS(2636), - [aux_sym_integer_token1] = ACTIONS(2636), - [aux_sym_integer_token2] = ACTIONS(2638), - [aux_sym_float_token1] = ACTIONS(2636), - [aux_sym_float_token2] = ACTIONS(2638), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym_string_token1] = ACTIONS(2638), - [aux_sym_string_token3] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2638), + [sym_identifier] = ACTIONS(3194), + [anon_sym_POUND] = ACTIONS(3196), + [anon_sym_package] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_cast] = ACTIONS(3194), + [anon_sym_DOLLARtype] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_untyped] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_AT_COLON] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_catch] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_LT_LT] = ACTIONS(3196), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3196), + [anon_sym_AMP_AMP] = ACTIONS(3196), + [anon_sym_PIPE_PIPE] = ACTIONS(3196), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3196), + [anon_sym_EQ_GT] = ACTIONS(3196), + [anon_sym_QMARK_QMARK] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3194), + [anon_sym_macro] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_extern] = ACTIONS(3194), + [anon_sym_inline] = ACTIONS(3194), + [anon_sym_overload] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_final] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_typedef] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [aux_sym_integer_token1] = ACTIONS(3194), + [aux_sym_integer_token2] = ACTIONS(3196), + [aux_sym_float_token1] = ACTIONS(3194), + [aux_sym_float_token2] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [aux_sym_string_token1] = ACTIONS(3196), + [aux_sym_string_token3] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3196), [sym__closing_brace_unmarker] = ACTIONS(3), }, [552] = { - [sym_identifier] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_package] = ACTIONS(1992), - [anon_sym_import] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1994), - [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_for] = ACTIONS(1992), - [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_try] = ACTIONS(1992), - [anon_sym_catch] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [sym_identifier] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3200), + [anon_sym_package] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_cast] = ACTIONS(3198), + [anon_sym_DOLLARtype] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_untyped] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_AT_COLON] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_catch] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3200), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_EQ_GT] = ACTIONS(3200), + [anon_sym_QMARK_QMARK] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_macro] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym_overload] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_final] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [aux_sym_integer_token1] = ACTIONS(3198), + [aux_sym_integer_token2] = ACTIONS(3200), + [aux_sym_float_token1] = ACTIONS(3198), + [aux_sym_float_token2] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym_string_token1] = ACTIONS(3200), + [aux_sym_string_token3] = ACTIONS(3200), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3200), [sym__closing_brace_unmarker] = ACTIONS(3), }, [553] = { - [sym_identifier] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_package] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_case] = ACTIONS(2640), - [anon_sym_default] = ACTIONS(2640), - [anon_sym_cast] = ACTIONS(2640), - [anon_sym_DOLLARtype] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_untyped] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_AT_COLON] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_catch] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_LT_LT] = ACTIONS(2642), - [anon_sym_GT_GT] = ACTIONS(2640), - [anon_sym_GT_GT_GT] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2642), - [anon_sym_AMP_AMP] = ACTIONS(2642), - [anon_sym_PIPE_PIPE] = ACTIONS(2642), - [anon_sym_EQ_EQ] = ACTIONS(2642), - [anon_sym_BANG_EQ] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_LT_EQ] = ACTIONS(2642), - [anon_sym_GT] = ACTIONS(2640), - [anon_sym_GT_EQ] = ACTIONS(2642), - [anon_sym_EQ_GT] = ACTIONS(2642), - [anon_sym_QMARK_QMARK] = ACTIONS(2642), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2640), - [anon_sym_macro] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_inline] = ACTIONS(2640), - [anon_sym_overload] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_final] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [aux_sym_integer_token1] = ACTIONS(2640), - [aux_sym_integer_token2] = ACTIONS(2642), - [aux_sym_float_token1] = ACTIONS(2640), - [aux_sym_float_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [aux_sym_string_token1] = ACTIONS(2642), - [aux_sym_string_token3] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2642), + [sym_identifier] = ACTIONS(3202), + [anon_sym_POUND] = ACTIONS(3204), + [anon_sym_package] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_cast] = ACTIONS(3202), + [anon_sym_DOLLARtype] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_untyped] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_AT_COLON] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_catch] = ACTIONS(3202), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3204), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_PIPE_PIPE] = ACTIONS(3204), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3204), + [anon_sym_EQ_GT] = ACTIONS(3204), + [anon_sym_QMARK_QMARK] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_macro] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym_overload] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_final] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [aux_sym_integer_token1] = ACTIONS(3202), + [aux_sym_integer_token2] = ACTIONS(3204), + [aux_sym_float_token1] = ACTIONS(3202), + [aux_sym_float_token2] = ACTIONS(3204), + [anon_sym_true] = ACTIONS(3202), + [anon_sym_false] = ACTIONS(3202), + [aux_sym_string_token1] = ACTIONS(3204), + [aux_sym_string_token3] = ACTIONS(3204), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3204), [sym__closing_brace_unmarker] = ACTIONS(3), }, [554] = { - [sym_identifier] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_package] = ACTIONS(2644), - [anon_sym_import] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2644), - [anon_sym_throw] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_cast] = ACTIONS(2644), - [anon_sym_DOLLARtype] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_untyped] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_this] = ACTIONS(2644), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_AT_COLON] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_catch] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2644), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2644), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2644), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_EQ_GT] = ACTIONS(2647), - [anon_sym_QMARK_QMARK] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), - [anon_sym_null] = ACTIONS(2644), - [anon_sym_macro] = ACTIONS(2644), - [anon_sym_abstract] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_public] = ACTIONS(2644), - [anon_sym_private] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_inline] = ACTIONS(2644), - [anon_sym_overload] = ACTIONS(2644), - [anon_sym_override] = ACTIONS(2644), - [anon_sym_final] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2644), - [anon_sym_interface] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(2644), - [anon_sym_var] = ACTIONS(2644), - [aux_sym_integer_token1] = ACTIONS(2644), - [aux_sym_integer_token2] = ACTIONS(2647), - [aux_sym_float_token1] = ACTIONS(2644), - [aux_sym_float_token2] = ACTIONS(2647), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [aux_sym_string_token1] = ACTIONS(2647), - [aux_sym_string_token3] = ACTIONS(2647), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2647), + [sym_identifier] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(3208), + [anon_sym_package] = ACTIONS(3206), + [anon_sym_import] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3206), + [anon_sym_throw] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3206), + [anon_sym_default] = ACTIONS(3206), + [anon_sym_cast] = ACTIONS(3206), + [anon_sym_DOLLARtype] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_untyped] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_this] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_AT_COLON] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_catch] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_LT_LT] = ACTIONS(3208), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_EQ_GT] = ACTIONS(3208), + [anon_sym_QMARK_QMARK] = ACTIONS(3208), + [anon_sym_EQ] = ACTIONS(3206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3206), + [anon_sym_macro] = ACTIONS(3206), + [anon_sym_abstract] = ACTIONS(3206), + [anon_sym_static] = ACTIONS(3206), + [anon_sym_public] = ACTIONS(3206), + [anon_sym_private] = ACTIONS(3206), + [anon_sym_extern] = ACTIONS(3206), + [anon_sym_inline] = ACTIONS(3206), + [anon_sym_overload] = ACTIONS(3206), + [anon_sym_override] = ACTIONS(3206), + [anon_sym_final] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), + [anon_sym_typedef] = ACTIONS(3206), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_var] = ACTIONS(3206), + [aux_sym_integer_token1] = ACTIONS(3206), + [aux_sym_integer_token2] = ACTIONS(3208), + [aux_sym_float_token1] = ACTIONS(3206), + [aux_sym_float_token2] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3206), + [anon_sym_false] = ACTIONS(3206), + [aux_sym_string_token1] = ACTIONS(3208), + [aux_sym_string_token3] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3208), [sym__closing_brace_unmarker] = ACTIONS(3), }, [555] = { - [sym_identifier] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2652), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_case] = ACTIONS(2650), - [anon_sym_default] = ACTIONS(2650), - [anon_sym_cast] = ACTIONS(2650), - [anon_sym_DOLLARtype] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_untyped] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2650), - [anon_sym_AT_COLON] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_catch] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_PERCENT] = ACTIONS(2652), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_LT_LT] = ACTIONS(2652), - [anon_sym_GT_GT] = ACTIONS(2650), - [anon_sym_GT_GT_GT] = ACTIONS(2652), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_CARET] = ACTIONS(2652), - [anon_sym_AMP_AMP] = ACTIONS(2652), - [anon_sym_PIPE_PIPE] = ACTIONS(2652), - [anon_sym_EQ_EQ] = ACTIONS(2652), - [anon_sym_BANG_EQ] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_LT_EQ] = ACTIONS(2652), - [anon_sym_GT] = ACTIONS(2650), - [anon_sym_GT_EQ] = ACTIONS(2652), - [anon_sym_EQ_GT] = ACTIONS(2652), - [anon_sym_QMARK_QMARK] = ACTIONS(2652), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_macro] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_extern] = ACTIONS(2650), - [anon_sym_inline] = ACTIONS(2650), - [anon_sym_overload] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [anon_sym_typedef] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [aux_sym_integer_token1] = ACTIONS(2650), - [aux_sym_integer_token2] = ACTIONS(2652), - [aux_sym_float_token1] = ACTIONS(2650), - [aux_sym_float_token2] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [aux_sym_string_token3] = ACTIONS(2652), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2652), + [sym_identifier] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3212), + [anon_sym_package] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3210), + [anon_sym_default] = ACTIONS(3210), + [anon_sym_cast] = ACTIONS(3210), + [anon_sym_DOLLARtype] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_untyped] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_this] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_AT_COLON] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_catch] = ACTIONS(3210), + [anon_sym_else] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_LT_LT] = ACTIONS(3212), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_CARET] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_EQ_EQ] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_LT_EQ] = ACTIONS(3212), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_GT_EQ] = ACTIONS(3212), + [anon_sym_EQ_GT] = ACTIONS(3212), + [anon_sym_QMARK_QMARK] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3210), + [anon_sym_macro] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_extern] = ACTIONS(3210), + [anon_sym_inline] = ACTIONS(3210), + [anon_sym_overload] = ACTIONS(3210), + [anon_sym_override] = ACTIONS(3210), + [anon_sym_final] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), + [anon_sym_typedef] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [aux_sym_integer_token1] = ACTIONS(3210), + [aux_sym_integer_token2] = ACTIONS(3212), + [aux_sym_float_token1] = ACTIONS(3210), + [aux_sym_float_token2] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3210), + [anon_sym_false] = ACTIONS(3210), + [aux_sym_string_token1] = ACTIONS(3212), + [aux_sym_string_token3] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3212), [sym__closing_brace_unmarker] = ACTIONS(3), }, [556] = { + [sym_identifier] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3216), + [anon_sym_package] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3214), + [anon_sym_default] = ACTIONS(3214), + [anon_sym_cast] = ACTIONS(3214), + [anon_sym_DOLLARtype] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_untyped] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_AT_COLON] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_catch] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), + [anon_sym_PERCENT] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_LT_LT] = ACTIONS(3216), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3216), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3216), + [anon_sym_AMP_AMP] = ACTIONS(3216), + [anon_sym_PIPE_PIPE] = ACTIONS(3216), + [anon_sym_EQ_EQ] = ACTIONS(3216), + [anon_sym_BANG_EQ] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_LT_EQ] = ACTIONS(3216), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_GT_EQ] = ACTIONS(3216), + [anon_sym_EQ_GT] = ACTIONS(3216), + [anon_sym_QMARK_QMARK] = ACTIONS(3216), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3214), + [anon_sym_macro] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_extern] = ACTIONS(3214), + [anon_sym_inline] = ACTIONS(3214), + [anon_sym_overload] = ACTIONS(3214), + [anon_sym_override] = ACTIONS(3214), + [anon_sym_final] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), + [anon_sym_typedef] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [aux_sym_integer_token1] = ACTIONS(3214), + [aux_sym_integer_token2] = ACTIONS(3216), + [aux_sym_float_token1] = ACTIONS(3214), + [aux_sym_float_token2] = ACTIONS(3216), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym_string_token1] = ACTIONS(3216), + [aux_sym_string_token3] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3216), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [557] = { + [sym_identifier] = ACTIONS(3218), + [anon_sym_POUND] = ACTIONS(3220), + [anon_sym_package] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_case] = ACTIONS(3218), + [anon_sym_default] = ACTIONS(3218), + [anon_sym_cast] = ACTIONS(3218), + [anon_sym_DOLLARtype] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_untyped] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_AT_COLON] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_catch] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [anon_sym_PERCENT] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_LT_LT] = ACTIONS(3220), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3220), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3220), + [anon_sym_AMP_AMP] = ACTIONS(3220), + [anon_sym_PIPE_PIPE] = ACTIONS(3220), + [anon_sym_EQ_EQ] = ACTIONS(3220), + [anon_sym_BANG_EQ] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3220), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3220), + [anon_sym_EQ_GT] = ACTIONS(3220), + [anon_sym_QMARK_QMARK] = ACTIONS(3220), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3220), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_macro] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_extern] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_overload] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [anon_sym_typedef] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [aux_sym_integer_token1] = ACTIONS(3218), + [aux_sym_integer_token2] = ACTIONS(3220), + [aux_sym_float_token1] = ACTIONS(3218), + [aux_sym_float_token2] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [aux_sym_string_token1] = ACTIONS(3220), + [aux_sym_string_token3] = ACTIONS(3220), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3220), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [558] = { + [sym_identifier] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(3224), + [anon_sym_package] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3222), + [anon_sym_default] = ACTIONS(3222), + [anon_sym_cast] = ACTIONS(3222), + [anon_sym_DOLLARtype] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_untyped] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_this] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_AT_COLON] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_catch] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [anon_sym_PERCENT] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_LT_LT] = ACTIONS(3224), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP_AMP] = ACTIONS(3224), + [anon_sym_PIPE_PIPE] = ACTIONS(3224), + [anon_sym_EQ_EQ] = ACTIONS(3224), + [anon_sym_BANG_EQ] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3224), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3224), + [anon_sym_EQ_GT] = ACTIONS(3224), + [anon_sym_QMARK_QMARK] = ACTIONS(3224), + [anon_sym_EQ] = ACTIONS(3222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3224), + [anon_sym_null] = ACTIONS(3222), + [anon_sym_macro] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_extern] = ACTIONS(3222), + [anon_sym_inline] = ACTIONS(3222), + [anon_sym_overload] = ACTIONS(3222), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_final] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [anon_sym_typedef] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [aux_sym_integer_token1] = ACTIONS(3222), + [aux_sym_integer_token2] = ACTIONS(3224), + [aux_sym_float_token1] = ACTIONS(3222), + [aux_sym_float_token2] = ACTIONS(3224), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym_string_token1] = ACTIONS(3224), + [aux_sym_string_token3] = ACTIONS(3224), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3224), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [559] = { + [sym_identifier] = ACTIONS(3226), + [anon_sym_POUND] = ACTIONS(3228), + [anon_sym_package] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_cast] = ACTIONS(3226), + [anon_sym_DOLLARtype] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_untyped] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_AT_COLON] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_catch] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_LT_LT] = ACTIONS(3228), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_CARET] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_LT_EQ] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_GT_EQ] = ACTIONS(3228), + [anon_sym_EQ_GT] = ACTIONS(3228), + [anon_sym_QMARK_QMARK] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3228), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_macro] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_extern] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_overload] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_typedef] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [aux_sym_integer_token1] = ACTIONS(3226), + [aux_sym_integer_token2] = ACTIONS(3228), + [aux_sym_float_token1] = ACTIONS(3226), + [aux_sym_float_token2] = ACTIONS(3228), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [aux_sym_string_token1] = ACTIONS(3228), + [aux_sym_string_token3] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3228), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [560] = { + [sym_identifier] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3232), + [anon_sym_package] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_cast] = ACTIONS(3230), + [anon_sym_DOLLARtype] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_untyped] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_this] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_AT_COLON] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_catch] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3232), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_EQ_GT] = ACTIONS(3232), + [anon_sym_QMARK_QMARK] = ACTIONS(3232), + [anon_sym_EQ] = ACTIONS(3230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_macro] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_extern] = ACTIONS(3230), + [anon_sym_inline] = ACTIONS(3230), + [anon_sym_overload] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_final] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_typedef] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [aux_sym_integer_token1] = ACTIONS(3230), + [aux_sym_integer_token2] = ACTIONS(3232), + [aux_sym_float_token1] = ACTIONS(3230), + [aux_sym_float_token2] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3230), + [anon_sym_false] = ACTIONS(3230), + [aux_sym_string_token1] = ACTIONS(3232), + [aux_sym_string_token3] = ACTIONS(3232), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3232), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [561] = { + [sym_identifier] = ACTIONS(3234), + [anon_sym_POUND] = ACTIONS(3236), + [anon_sym_package] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_cast] = ACTIONS(3234), + [anon_sym_DOLLARtype] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_untyped] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT_COLON] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_catch] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_LT_LT] = ACTIONS(3236), + [anon_sym_GT_GT] = ACTIONS(3234), + [anon_sym_GT_GT_GT] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_CARET] = ACTIONS(3236), + [anon_sym_AMP_AMP] = ACTIONS(3236), + [anon_sym_PIPE_PIPE] = ACTIONS(3236), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_LT_EQ] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_GT_EQ] = ACTIONS(3236), + [anon_sym_EQ_GT] = ACTIONS(3236), + [anon_sym_QMARK_QMARK] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_macro] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_overload] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_final] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [aux_sym_integer_token1] = ACTIONS(3234), + [aux_sym_integer_token2] = ACTIONS(3236), + [aux_sym_float_token1] = ACTIONS(3234), + [aux_sym_float_token2] = ACTIONS(3236), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [aux_sym_string_token1] = ACTIONS(3236), + [aux_sym_string_token3] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3236), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [562] = { + [sym_identifier] = ACTIONS(3238), + [anon_sym_POUND] = ACTIONS(3240), + [anon_sym_package] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_cast] = ACTIONS(3238), + [anon_sym_DOLLARtype] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_untyped] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_this] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_AT_COLON] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_catch] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_GT_GT_GT] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_PIPE] = ACTIONS(3238), + [anon_sym_CARET] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_QMARK_QMARK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_macro] = ACTIONS(3238), + [anon_sym_abstract] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_extern] = ACTIONS(3238), + [anon_sym_inline] = ACTIONS(3238), + [anon_sym_overload] = ACTIONS(3238), + [anon_sym_override] = ACTIONS(3238), + [anon_sym_final] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_typedef] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [aux_sym_integer_token1] = ACTIONS(3238), + [aux_sym_integer_token2] = ACTIONS(3240), + [aux_sym_float_token1] = ACTIONS(3238), + [aux_sym_float_token2] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3238), + [anon_sym_false] = ACTIONS(3238), + [aux_sym_string_token1] = ACTIONS(3240), + [aux_sym_string_token3] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3240), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [563] = { + [sym_identifier] = ACTIONS(3242), + [anon_sym_POUND] = ACTIONS(3244), + [anon_sym_package] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_cast] = ACTIONS(3242), + [anon_sym_DOLLARtype] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_untyped] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_AT_COLON] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_catch] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3242), + [anon_sym_GT_GT_GT] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_GT_EQ] = ACTIONS(3244), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_QMARK_QMARK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_macro] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_extern] = ACTIONS(3242), + [anon_sym_inline] = ACTIONS(3242), + [anon_sym_overload] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_final] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_typedef] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [aux_sym_integer_token1] = ACTIONS(3242), + [aux_sym_integer_token2] = ACTIONS(3244), + [aux_sym_float_token1] = ACTIONS(3242), + [aux_sym_float_token2] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [aux_sym_string_token1] = ACTIONS(3244), + [aux_sym_string_token3] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3244), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [564] = { + [sym_identifier] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3248), + [anon_sym_package] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_cast] = ACTIONS(3246), + [anon_sym_DOLLARtype] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_untyped] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_this] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_AT_COLON] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_catch] = ACTIONS(3246), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_QMARK_QMARK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3246), + [anon_sym_macro] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_extern] = ACTIONS(3246), + [anon_sym_inline] = ACTIONS(3246), + [anon_sym_overload] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_final] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_typedef] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [aux_sym_integer_token1] = ACTIONS(3246), + [aux_sym_integer_token2] = ACTIONS(3248), + [aux_sym_float_token1] = ACTIONS(3246), + [aux_sym_float_token2] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [aux_sym_string_token1] = ACTIONS(3248), + [aux_sym_string_token3] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3248), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [565] = { + [sym_identifier] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3252), + [anon_sym_package] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3250), + [anon_sym_default] = ACTIONS(3250), + [anon_sym_cast] = ACTIONS(3250), + [anon_sym_DOLLARtype] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_untyped] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_AT_COLON] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_catch] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_QMARK_QMARK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3252), + [anon_sym_null] = ACTIONS(3250), + [anon_sym_macro] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_extern] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_overload] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [anon_sym_typedef] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [aux_sym_integer_token1] = ACTIONS(3250), + [aux_sym_integer_token2] = ACTIONS(3252), + [aux_sym_float_token1] = ACTIONS(3250), + [aux_sym_float_token2] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [aux_sym_string_token1] = ACTIONS(3252), + [aux_sym_string_token3] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3252), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [566] = { + [sym_identifier] = ACTIONS(3254), + [anon_sym_POUND] = ACTIONS(3256), + [anon_sym_package] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3254), + [anon_sym_default] = ACTIONS(3254), + [anon_sym_cast] = ACTIONS(3254), + [anon_sym_DOLLARtype] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_untyped] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_this] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_AT_COLON] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_catch] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3254), + [anon_sym_GT_GT_GT] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP_AMP] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3256), + [anon_sym_BANG_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_EQ_GT] = ACTIONS(3256), + [anon_sym_QMARK_QMARK] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), + [anon_sym_null] = ACTIONS(3254), + [anon_sym_macro] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_extern] = ACTIONS(3254), + [anon_sym_inline] = ACTIONS(3254), + [anon_sym_overload] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_final] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), + [anon_sym_typedef] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [aux_sym_integer_token1] = ACTIONS(3254), + [aux_sym_integer_token2] = ACTIONS(3256), + [aux_sym_float_token1] = ACTIONS(3254), + [aux_sym_float_token2] = ACTIONS(3256), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [aux_sym_string_token1] = ACTIONS(3256), + [aux_sym_string_token3] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3256), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [567] = { + [sym_identifier] = ACTIONS(3258), + [anon_sym_POUND] = ACTIONS(3260), + [anon_sym_package] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_cast] = ACTIONS(3258), + [anon_sym_DOLLARtype] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_untyped] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_this] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_AT_COLON] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_catch] = ACTIONS(3258), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_GT_GT_GT] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3258), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3260), + [anon_sym_BANG_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_GT] = ACTIONS(3258), + [anon_sym_GT_EQ] = ACTIONS(3260), + [anon_sym_EQ_GT] = ACTIONS(3260), + [anon_sym_QMARK_QMARK] = ACTIONS(3260), + [anon_sym_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3258), + [anon_sym_macro] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_extern] = ACTIONS(3258), + [anon_sym_inline] = ACTIONS(3258), + [anon_sym_overload] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_final] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_typedef] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [aux_sym_integer_token1] = ACTIONS(3258), + [aux_sym_integer_token2] = ACTIONS(3260), + [aux_sym_float_token1] = ACTIONS(3258), + [aux_sym_float_token2] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3258), + [anon_sym_false] = ACTIONS(3258), + [aux_sym_string_token1] = ACTIONS(3260), + [aux_sym_string_token3] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3260), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [568] = { + [sym_else_clause] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_catch] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3262), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [569] = { + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3264), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1778), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [570] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_package] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_cast] = ACTIONS(1784), + [anon_sym_DOLLARtype] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_untyped] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_this] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1784), + [anon_sym_AT_COLON] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_catch] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_LT_LT] = ACTIONS(1782), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [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(1784), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_EQ_GT] = ACTIONS(1782), + [anon_sym_QMARK_QMARK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), + [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_enum] = 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(1782), + [aux_sym_float_token1] = ACTIONS(1784), + [aux_sym_float_token2] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [aux_sym_string_token1] = ACTIONS(1782), + [aux_sym_string_token3] = ACTIONS(1782), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [571] = { + [sym_identifier] = ACTIONS(3268), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_package] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_cast] = ACTIONS(3268), + [anon_sym_DOLLARtype] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_untyped] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_AT_COLON] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_catch] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym_GT_GT_GT] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3270), + [anon_sym_QMARK_QMARK] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_macro] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_overload] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [aux_sym_integer_token1] = ACTIONS(3268), + [aux_sym_integer_token2] = ACTIONS(3270), + [aux_sym_float_token1] = ACTIONS(3268), + [aux_sym_float_token2] = ACTIONS(3270), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [aux_sym_string_token1] = ACTIONS(3270), + [aux_sym_string_token3] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3270), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [572] = { + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [573] = { + [sym_identifier] = ACTIONS(3276), + [anon_sym_POUND] = ACTIONS(3278), + [anon_sym_package] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3276), + [anon_sym_cast] = ACTIONS(3276), + [anon_sym_DOLLARtype] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_untyped] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_AT_COLON] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_catch] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_LT_LT] = ACTIONS(3278), + [anon_sym_GT_GT] = ACTIONS(3276), + [anon_sym_GT_GT_GT] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3276), + [anon_sym_CARET] = ACTIONS(3278), + [anon_sym_AMP_AMP] = ACTIONS(3278), + [anon_sym_PIPE_PIPE] = ACTIONS(3278), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3278), + [anon_sym_EQ_GT] = ACTIONS(3278), + [anon_sym_QMARK_QMARK] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3276), + [anon_sym_macro] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_extern] = ACTIONS(3276), + [anon_sym_inline] = ACTIONS(3276), + [anon_sym_overload] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_final] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [aux_sym_integer_token1] = ACTIONS(3276), + [aux_sym_integer_token2] = ACTIONS(3278), + [aux_sym_float_token1] = ACTIONS(3276), + [aux_sym_float_token2] = ACTIONS(3278), + [anon_sym_true] = ACTIONS(3276), + [anon_sym_false] = ACTIONS(3276), + [aux_sym_string_token1] = ACTIONS(3278), + [aux_sym_string_token3] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3278), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [574] = { + [sym_identifier] = ACTIONS(3280), + [anon_sym_POUND] = ACTIONS(3282), + [anon_sym_package] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3280), + [anon_sym_default] = ACTIONS(3280), + [anon_sym_cast] = ACTIONS(3280), + [anon_sym_DOLLARtype] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_untyped] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_AT_COLON] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_catch] = ACTIONS(3280), + [anon_sym_else] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_LT_LT] = ACTIONS(3282), + [anon_sym_GT_GT] = ACTIONS(3280), + [anon_sym_GT_GT_GT] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_CARET] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_EQ_GT] = ACTIONS(3282), + [anon_sym_QMARK_QMARK] = ACTIONS(3282), + [anon_sym_EQ] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_macro] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_extern] = ACTIONS(3280), + [anon_sym_inline] = ACTIONS(3280), + [anon_sym_overload] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_final] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [aux_sym_integer_token1] = ACTIONS(3280), + [aux_sym_integer_token2] = ACTIONS(3282), + [aux_sym_float_token1] = ACTIONS(3280), + [aux_sym_float_token2] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3280), + [anon_sym_false] = ACTIONS(3280), + [aux_sym_string_token1] = ACTIONS(3282), + [aux_sym_string_token3] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3282), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [575] = { + [sym_identifier] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_package] = ACTIONS(1452), + [anon_sym_import] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_throw] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_this] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AT_COLON] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_GT_GT_GT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [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(1452), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_QMARK_QMARK] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_null] = ACTIONS(1452), + [anon_sym_macro] = ACTIONS(1452), + [anon_sym_abstract] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_public] = ACTIONS(1452), + [anon_sym_private] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym_overload] = ACTIONS(1452), + [anon_sym_override] = ACTIONS(1452), + [anon_sym_final] = ACTIONS(1452), + [anon_sym_class] = ACTIONS(1452), + [anon_sym_interface] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_function] = ACTIONS(1452), + [anon_sym_var] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1452), + [aux_sym_integer_token2] = ACTIONS(1448), + [aux_sym_float_token1] = ACTIONS(1452), + [aux_sym_float_token2] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1448), + [aux_sym_string_token3] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1448), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [576] = { + [sym_identifier] = ACTIONS(3284), + [anon_sym_POUND] = ACTIONS(3286), + [anon_sym_package] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3284), + [anon_sym_default] = ACTIONS(3284), + [anon_sym_cast] = ACTIONS(3284), + [anon_sym_DOLLARtype] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_untyped] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_AT_COLON] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_catch] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_LT_LT] = ACTIONS(3286), + [anon_sym_GT_GT] = ACTIONS(3284), + [anon_sym_GT_GT_GT] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3284), + [anon_sym_PIPE] = ACTIONS(3284), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_EQ_GT] = ACTIONS(3286), + [anon_sym_QMARK_QMARK] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_macro] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_extern] = ACTIONS(3284), + [anon_sym_inline] = ACTIONS(3284), + [anon_sym_overload] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_final] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [aux_sym_integer_token1] = ACTIONS(3284), + [aux_sym_integer_token2] = ACTIONS(3286), + [aux_sym_float_token1] = ACTIONS(3284), + [aux_sym_float_token2] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [aux_sym_string_token1] = ACTIONS(3286), + [aux_sym_string_token3] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3286), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [577] = { + [sym_identifier] = ACTIONS(3288), + [anon_sym_POUND] = ACTIONS(3290), + [anon_sym_package] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_cast] = ACTIONS(3288), + [anon_sym_DOLLARtype] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_untyped] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_this] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_AT_COLON] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_catch] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_LT_LT] = ACTIONS(3290), + [anon_sym_GT_GT] = ACTIONS(3288), + [anon_sym_GT_GT_GT] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3288), + [anon_sym_PIPE] = ACTIONS(3288), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT] = ACTIONS(3288), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_EQ_GT] = ACTIONS(3290), + [anon_sym_QMARK_QMARK] = ACTIONS(3290), + [anon_sym_EQ] = ACTIONS(3288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3288), + [anon_sym_macro] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_extern] = ACTIONS(3288), + [anon_sym_inline] = ACTIONS(3288), + [anon_sym_overload] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_final] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), + [anon_sym_typedef] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [aux_sym_integer_token1] = ACTIONS(3288), + [aux_sym_integer_token2] = ACTIONS(3290), + [aux_sym_float_token1] = ACTIONS(3288), + [aux_sym_float_token2] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3288), + [anon_sym_false] = ACTIONS(3288), + [aux_sym_string_token1] = ACTIONS(3290), + [aux_sym_string_token3] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3290), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [578] = { + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(3294), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1778), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [579] = { + [sym_identifier] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3298), + [anon_sym_package] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3296), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_cast] = ACTIONS(3296), + [anon_sym_DOLLARtype] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_untyped] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_AT_COLON] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_catch] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_GT_GT_GT] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_EQ_GT] = ACTIONS(3298), + [anon_sym_QMARK_QMARK] = ACTIONS(3298), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_macro] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_extern] = ACTIONS(3296), + [anon_sym_inline] = ACTIONS(3296), + [anon_sym_overload] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_final] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [anon_sym_typedef] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [aux_sym_integer_token1] = ACTIONS(3296), + [aux_sym_integer_token2] = ACTIONS(3298), + [aux_sym_float_token1] = ACTIONS(3296), + [aux_sym_float_token2] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [aux_sym_string_token1] = ACTIONS(3298), + [aux_sym_string_token3] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3298), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [580] = { + [sym_identifier] = ACTIONS(3300), + [anon_sym_POUND] = ACTIONS(3302), + [anon_sym_package] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_cast] = ACTIONS(3300), + [anon_sym_DOLLARtype] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_untyped] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_this] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_AT_COLON] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_catch] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_LT_LT] = ACTIONS(3302), + [anon_sym_GT_GT] = ACTIONS(3300), + [anon_sym_GT_GT_GT] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_PIPE_PIPE] = ACTIONS(3302), + [anon_sym_EQ_EQ] = ACTIONS(3302), + [anon_sym_BANG_EQ] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_LT_EQ] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_GT_EQ] = ACTIONS(3302), + [anon_sym_EQ_GT] = ACTIONS(3302), + [anon_sym_QMARK_QMARK] = ACTIONS(3302), + [anon_sym_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_macro] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym_inline] = ACTIONS(3300), + [anon_sym_overload] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_final] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_typedef] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [aux_sym_integer_token1] = ACTIONS(3300), + [aux_sym_integer_token2] = ACTIONS(3302), + [aux_sym_float_token1] = ACTIONS(3300), + [aux_sym_float_token2] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3300), + [anon_sym_false] = ACTIONS(3300), + [aux_sym_string_token1] = ACTIONS(3302), + [aux_sym_string_token3] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3302), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [581] = { + [sym_identifier] = ACTIONS(3304), + [anon_sym_POUND] = ACTIONS(3306), + [anon_sym_package] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_cast] = ACTIONS(3304), + [anon_sym_DOLLARtype] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_untyped] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_this] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_AT_COLON] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_catch] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_LT_LT] = ACTIONS(3306), + [anon_sym_GT_GT] = ACTIONS(3304), + [anon_sym_GT_GT_GT] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3304), + [anon_sym_CARET] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_EQ_EQ] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_LT_EQ] = ACTIONS(3306), + [anon_sym_GT] = ACTIONS(3304), + [anon_sym_GT_EQ] = ACTIONS(3306), + [anon_sym_EQ_GT] = ACTIONS(3306), + [anon_sym_QMARK_QMARK] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_macro] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym_overload] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_final] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_typedef] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [aux_sym_integer_token1] = ACTIONS(3304), + [aux_sym_integer_token2] = ACTIONS(3306), + [aux_sym_float_token1] = ACTIONS(3304), + [aux_sym_float_token2] = ACTIONS(3306), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym_string_token1] = ACTIONS(3306), + [aux_sym_string_token3] = ACTIONS(3306), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3306), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [582] = { + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_package] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_cast] = ACTIONS(1780), + [anon_sym_DOLLARtype] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_untyped] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_AT_COLON] = ACTIONS(1778), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_catch] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_new] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(1778), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_GT_GT_GT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_QMARK_QMARK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), + [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_enum] = 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(1778), + [aux_sym_float_token1] = ACTIONS(1780), + [aux_sym_float_token2] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [aux_sym_string_token1] = ACTIONS(1778), + [aux_sym_string_token3] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [583] = { + [sym_else_clause] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_catch] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3314), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [584] = { [sym_identifier] = ACTIONS(2654), [anon_sym_POUND] = ACTIONS(2656), [anon_sym_package] = ACTIONS(2654), @@ -65042,6736 +69317,4291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_marker] = ACTIONS(2656), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [557] = { - [sym_identifier] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2660), - [anon_sym_package] = ACTIONS(2658), - [anon_sym_import] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2660), - [anon_sym_using] = ACTIONS(2658), - [anon_sym_throw] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_switch] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_case] = ACTIONS(2658), - [anon_sym_default] = ACTIONS(2658), - [anon_sym_cast] = ACTIONS(2658), - [anon_sym_DOLLARtype] = ACTIONS(2660), - [anon_sym_for] = ACTIONS(2658), - [anon_sym_return] = ACTIONS(2658), - [anon_sym_untyped] = ACTIONS(2658), - [anon_sym_break] = ACTIONS(2658), - [anon_sym_continue] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_this] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2658), - [anon_sym_AT_COLON] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2658), - [anon_sym_catch] = ACTIONS(2658), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_while] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2660), - [anon_sym_DASH_DASH] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_LT_LT] = ACTIONS(2660), - [anon_sym_GT_GT] = ACTIONS(2658), - [anon_sym_GT_GT_GT] = ACTIONS(2660), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_CARET] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_EQ_EQ] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_LT_EQ] = ACTIONS(2660), - [anon_sym_GT] = ACTIONS(2658), - [anon_sym_GT_EQ] = ACTIONS(2660), - [anon_sym_EQ_GT] = ACTIONS(2660), - [anon_sym_QMARK_QMARK] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2660), - [anon_sym_null] = ACTIONS(2658), - [anon_sym_macro] = ACTIONS(2658), - [anon_sym_abstract] = ACTIONS(2658), - [anon_sym_static] = ACTIONS(2658), - [anon_sym_public] = ACTIONS(2658), - [anon_sym_private] = ACTIONS(2658), - [anon_sym_extern] = ACTIONS(2658), - [anon_sym_inline] = ACTIONS(2658), - [anon_sym_overload] = ACTIONS(2658), - [anon_sym_override] = ACTIONS(2658), - [anon_sym_final] = ACTIONS(2658), - [anon_sym_class] = ACTIONS(2658), - [anon_sym_interface] = ACTIONS(2658), - [anon_sym_enum] = ACTIONS(2658), - [anon_sym_typedef] = ACTIONS(2658), - [anon_sym_function] = ACTIONS(2658), - [anon_sym_var] = ACTIONS(2658), - [aux_sym_integer_token1] = ACTIONS(2658), - [aux_sym_integer_token2] = ACTIONS(2660), - [aux_sym_float_token1] = ACTIONS(2658), - [aux_sym_float_token2] = ACTIONS(2660), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [aux_sym_string_token1] = ACTIONS(2660), - [aux_sym_string_token3] = ACTIONS(2660), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2660), + [585] = { + [sym_identifier] = ACTIONS(3316), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_package] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_cast] = ACTIONS(3316), + [anon_sym_DOLLARtype] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_untyped] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_this] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_AT_COLON] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_catch] = ACTIONS(3316), + [anon_sym_else] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3316), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3316), + [anon_sym_PIPE] = ACTIONS(3316), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3316), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_QMARK_QMARK] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_macro] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym_inline] = ACTIONS(3316), + [anon_sym_overload] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_final] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_typedef] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [aux_sym_integer_token1] = ACTIONS(3316), + [aux_sym_integer_token2] = ACTIONS(3318), + [aux_sym_float_token1] = ACTIONS(3316), + [aux_sym_float_token2] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3316), + [anon_sym_false] = ACTIONS(3316), + [aux_sym_string_token1] = ACTIONS(3318), + [aux_sym_string_token3] = ACTIONS(3318), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3318), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [558] = { - [sym_identifier] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2664), - [anon_sym_package] = ACTIONS(2662), - [anon_sym_import] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_using] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_cast] = ACTIONS(2662), - [anon_sym_DOLLARtype] = ACTIONS(2664), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_untyped] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2664), - [anon_sym_this] = ACTIONS(2662), - [anon_sym_AT] = ACTIONS(2662), - [anon_sym_AT_COLON] = ACTIONS(2664), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_catch] = ACTIONS(2662), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_TILDE] = ACTIONS(2664), - [anon_sym_BANG] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_PLUS_PLUS] = ACTIONS(2664), - [anon_sym_DASH_DASH] = ACTIONS(2664), - [anon_sym_PERCENT] = ACTIONS(2664), - [anon_sym_SLASH] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_LT_LT] = ACTIONS(2664), - [anon_sym_GT_GT] = ACTIONS(2662), - [anon_sym_GT_GT_GT] = ACTIONS(2664), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_AMP_AMP] = ACTIONS(2664), - [anon_sym_PIPE_PIPE] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2664), - [anon_sym_BANG_EQ] = ACTIONS(2664), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_LT_EQ] = ACTIONS(2664), - [anon_sym_GT] = ACTIONS(2662), - [anon_sym_GT_EQ] = ACTIONS(2664), - [anon_sym_EQ_GT] = ACTIONS(2664), - [anon_sym_QMARK_QMARK] = ACTIONS(2664), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), - [anon_sym_null] = ACTIONS(2662), - [anon_sym_macro] = ACTIONS(2662), - [anon_sym_abstract] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_public] = ACTIONS(2662), - [anon_sym_private] = ACTIONS(2662), - [anon_sym_extern] = ACTIONS(2662), - [anon_sym_inline] = ACTIONS(2662), - [anon_sym_overload] = ACTIONS(2662), - [anon_sym_override] = ACTIONS(2662), - [anon_sym_final] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_interface] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), - [anon_sym_typedef] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2662), - [anon_sym_var] = ACTIONS(2662), - [aux_sym_integer_token1] = ACTIONS(2662), - [aux_sym_integer_token2] = ACTIONS(2664), - [aux_sym_float_token1] = ACTIONS(2662), - [aux_sym_float_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [aux_sym_string_token1] = ACTIONS(2664), - [aux_sym_string_token3] = ACTIONS(2664), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2664), + [586] = { + [sym_identifier] = ACTIONS(3320), + [anon_sym_POUND] = ACTIONS(3322), + [anon_sym_package] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_cast] = ACTIONS(3320), + [anon_sym_DOLLARtype] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_untyped] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_this] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_AT_COLON] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_catch] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3320), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3320), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_QMARK_QMARK] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3320), + [anon_sym_macro] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_extern] = ACTIONS(3320), + [anon_sym_inline] = ACTIONS(3320), + [anon_sym_overload] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_final] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), + [anon_sym_typedef] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [aux_sym_integer_token1] = ACTIONS(3320), + [aux_sym_integer_token2] = ACTIONS(3322), + [aux_sym_float_token1] = ACTIONS(3320), + [aux_sym_float_token2] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3320), + [anon_sym_false] = ACTIONS(3320), + [aux_sym_string_token1] = ACTIONS(3322), + [aux_sym_string_token3] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3322), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [559] = { - [sym_identifier] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(2668), - [anon_sym_package] = ACTIONS(2666), - [anon_sym_import] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_using] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_case] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_cast] = ACTIONS(2666), - [anon_sym_DOLLARtype] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_untyped] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2668), - [anon_sym_this] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_AT_COLON] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_catch] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_PERCENT] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2668), - [anon_sym_GT_GT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_PIPE_PIPE] = ACTIONS(2668), - [anon_sym_EQ_EQ] = ACTIONS(2668), - [anon_sym_BANG_EQ] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2668), - [anon_sym_EQ_GT] = ACTIONS(2668), - [anon_sym_QMARK_QMARK] = ACTIONS(2668), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2668), - [anon_sym_null] = ACTIONS(2666), - [anon_sym_macro] = ACTIONS(2666), - [anon_sym_abstract] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_public] = ACTIONS(2666), - [anon_sym_private] = ACTIONS(2666), - [anon_sym_extern] = ACTIONS(2666), - [anon_sym_inline] = ACTIONS(2666), - [anon_sym_overload] = ACTIONS(2666), - [anon_sym_override] = ACTIONS(2666), - [anon_sym_final] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_interface] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - [anon_sym_typedef] = ACTIONS(2666), - [anon_sym_function] = ACTIONS(2666), - [anon_sym_var] = ACTIONS(2666), - [aux_sym_integer_token1] = ACTIONS(2666), - [aux_sym_integer_token2] = ACTIONS(2668), - [aux_sym_float_token1] = ACTIONS(2666), - [aux_sym_float_token2] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [aux_sym_string_token1] = ACTIONS(2668), - [aux_sym_string_token3] = ACTIONS(2668), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2668), + [587] = { + [sym_identifier] = ACTIONS(3324), + [anon_sym_POUND] = ACTIONS(3326), + [anon_sym_package] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_cast] = ACTIONS(3324), + [anon_sym_DOLLARtype] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_untyped] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_this] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_AT_COLON] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_catch] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3324), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_QMARK_QMARK] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_macro] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_extern] = ACTIONS(3324), + [anon_sym_inline] = ACTIONS(3324), + [anon_sym_overload] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_final] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), + [anon_sym_typedef] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [aux_sym_integer_token1] = ACTIONS(3324), + [aux_sym_integer_token2] = ACTIONS(3326), + [aux_sym_float_token1] = ACTIONS(3324), + [aux_sym_float_token2] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [aux_sym_string_token1] = ACTIONS(3326), + [aux_sym_string_token3] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3326), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [560] = { - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(2670), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(2672), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1046), + [588] = { + [sym_identifier] = ACTIONS(3328), + [anon_sym_POUND] = ACTIONS(3330), + [anon_sym_package] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_cast] = ACTIONS(3328), + [anon_sym_DOLLARtype] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_untyped] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_this] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT_COLON] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_catch] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_EQ_GT] = ACTIONS(3330), + [anon_sym_QMARK_QMARK] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), + [anon_sym_null] = ACTIONS(3328), + [anon_sym_macro] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(3328), + [anon_sym_inline] = ACTIONS(3328), + [anon_sym_overload] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_final] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_typedef] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [aux_sym_integer_token1] = ACTIONS(3328), + [aux_sym_integer_token2] = ACTIONS(3330), + [aux_sym_float_token1] = ACTIONS(3328), + [aux_sym_float_token2] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3328), + [anon_sym_false] = ACTIONS(3328), + [aux_sym_string_token1] = ACTIONS(3330), + [aux_sym_string_token3] = ACTIONS(3330), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3330), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [561] = { - [sym_identifier] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2676), - [anon_sym_package] = ACTIONS(2674), - [anon_sym_import] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_using] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_cast] = ACTIONS(2674), - [anon_sym_DOLLARtype] = ACTIONS(2676), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_untyped] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_this] = ACTIONS(2674), - [anon_sym_AT] = ACTIONS(2674), - [anon_sym_AT_COLON] = ACTIONS(2676), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_catch] = ACTIONS(2674), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_LT_LT] = ACTIONS(2676), - [anon_sym_GT_GT] = ACTIONS(2674), - [anon_sym_GT_GT_GT] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_PIPE_PIPE] = ACTIONS(2676), - [anon_sym_EQ_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_LT_EQ] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2674), - [anon_sym_GT_EQ] = ACTIONS(2676), - [anon_sym_EQ_GT] = ACTIONS(2676), - [anon_sym_QMARK_QMARK] = ACTIONS(2676), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2676), - [anon_sym_null] = ACTIONS(2674), - [anon_sym_macro] = ACTIONS(2674), - [anon_sym_abstract] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_public] = ACTIONS(2674), - [anon_sym_private] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(2674), - [anon_sym_inline] = ACTIONS(2674), - [anon_sym_overload] = ACTIONS(2674), - [anon_sym_override] = ACTIONS(2674), - [anon_sym_final] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_interface] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - [anon_sym_typedef] = ACTIONS(2674), - [anon_sym_function] = ACTIONS(2674), - [anon_sym_var] = ACTIONS(2674), - [aux_sym_integer_token1] = ACTIONS(2674), - [aux_sym_integer_token2] = ACTIONS(2676), - [aux_sym_float_token1] = ACTIONS(2674), - [aux_sym_float_token2] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [aux_sym_string_token1] = ACTIONS(2676), - [aux_sym_string_token3] = ACTIONS(2676), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2676), + [589] = { + [sym_identifier] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_package] = ACTIONS(1550), + [anon_sym_import] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1548), + [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_DOLLARtype] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1550), + [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_AT] = ACTIONS(1550), + [anon_sym_AT_COLON] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1550), + [anon_sym_catch] = ACTIONS(1550), + [anon_sym_else] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__closing_brace_unmarker] = ACTIONS(3), }, - [562] = { - [sym_identifier] = ACTIONS(2678), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_package] = ACTIONS(2678), - [anon_sym_import] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2678), - [anon_sym_throw] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_cast] = ACTIONS(2678), - [anon_sym_DOLLARtype] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_untyped] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_this] = ACTIONS(2678), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_AT_COLON] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_catch] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_do] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2678), - [anon_sym_PLUS] = ACTIONS(2678), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_GT_GT_GT] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [anon_sym_EQ_EQ] = ACTIONS(2680), - [anon_sym_BANG_EQ] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_EQ_GT] = ACTIONS(2680), - [anon_sym_QMARK_QMARK] = ACTIONS(2680), - [anon_sym_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), - [anon_sym_null] = ACTIONS(2678), - [anon_sym_macro] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_public] = ACTIONS(2678), - [anon_sym_private] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym_inline] = ACTIONS(2678), - [anon_sym_overload] = ACTIONS(2678), - [anon_sym_override] = ACTIONS(2678), - [anon_sym_final] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2678), - [anon_sym_interface] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - [anon_sym_typedef] = ACTIONS(2678), - [anon_sym_function] = ACTIONS(2678), - [anon_sym_var] = ACTIONS(2678), - [aux_sym_integer_token1] = ACTIONS(2678), - [aux_sym_integer_token2] = ACTIONS(2680), - [aux_sym_float_token1] = ACTIONS(2678), - [aux_sym_float_token2] = ACTIONS(2680), - [anon_sym_true] = ACTIONS(2678), - [anon_sym_false] = ACTIONS(2678), - [aux_sym_string_token1] = ACTIONS(2680), - [aux_sym_string_token3] = ACTIONS(2680), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2680), + [590] = { + [sym_identifier] = ACTIONS(3332), + [anon_sym_POUND] = ACTIONS(3334), + [anon_sym_package] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_cast] = ACTIONS(3332), + [anon_sym_DOLLARtype] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_untyped] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_AT_COLON] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_catch] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_QMARK_QMARK] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [anon_sym_null] = ACTIONS(3332), + [anon_sym_macro] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_overload] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_final] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [aux_sym_integer_token1] = ACTIONS(3332), + [aux_sym_integer_token2] = ACTIONS(3334), + [aux_sym_float_token1] = ACTIONS(3332), + [aux_sym_float_token2] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym_string_token1] = ACTIONS(3334), + [aux_sym_string_token3] = ACTIONS(3334), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3334), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [563] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_package] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_cast] = ACTIONS(2682), - [anon_sym_DOLLARtype] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_untyped] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_this] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2682), - [anon_sym_AT_COLON] = ACTIONS(2684), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_catch] = ACTIONS(2682), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PERCENT] = ACTIONS(2684), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_LT_LT] = ACTIONS(2684), - [anon_sym_GT_GT] = ACTIONS(2682), - [anon_sym_GT_GT_GT] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2682), - [anon_sym_CARET] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [anon_sym_EQ_EQ] = ACTIONS(2684), - [anon_sym_BANG_EQ] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_LT_EQ] = ACTIONS(2684), - [anon_sym_GT] = ACTIONS(2682), - [anon_sym_GT_EQ] = ACTIONS(2684), - [anon_sym_EQ_GT] = ACTIONS(2684), - [anon_sym_QMARK_QMARK] = ACTIONS(2684), - [anon_sym_EQ] = ACTIONS(2682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2684), - [anon_sym_null] = ACTIONS(2682), - [anon_sym_macro] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_overload] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_final] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [aux_sym_integer_token1] = ACTIONS(2682), - [aux_sym_integer_token2] = ACTIONS(2684), - [aux_sym_float_token1] = ACTIONS(2682), - [aux_sym_float_token2] = ACTIONS(2684), - [anon_sym_true] = ACTIONS(2682), - [anon_sym_false] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [aux_sym_string_token3] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2684), + [591] = { + [sym_identifier] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(3338), + [anon_sym_package] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_cast] = ACTIONS(3336), + [anon_sym_DOLLARtype] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_untyped] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_this] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_AT_COLON] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_catch] = ACTIONS(3336), + [anon_sym_else] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_EQ_GT] = ACTIONS(3338), + [anon_sym_QMARK_QMARK] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_macro] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_extern] = ACTIONS(3336), + [anon_sym_inline] = ACTIONS(3336), + [anon_sym_overload] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_final] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_typedef] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [aux_sym_integer_token1] = ACTIONS(3336), + [aux_sym_integer_token2] = ACTIONS(3338), + [aux_sym_float_token1] = ACTIONS(3336), + [aux_sym_float_token2] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3336), + [anon_sym_false] = ACTIONS(3336), + [aux_sym_string_token1] = ACTIONS(3338), + [aux_sym_string_token3] = ACTIONS(3338), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3338), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [564] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_package] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(2686), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_using] = ACTIONS(1048), - [anon_sym_throw] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_cast] = ACTIONS(1048), - [anon_sym_DOLLARtype] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_this] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_AT_COLON] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_new] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_GT_GT_GT] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_QMARK_QMARK] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1048), - [anon_sym_macro] = ACTIONS(1048), - [anon_sym_abstract] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_overload] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_final] = ACTIONS(1048), - [anon_sym_class] = ACTIONS(1048), - [anon_sym_interface] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(1048), - [anon_sym_var] = ACTIONS(1048), - [aux_sym_integer_token1] = ACTIONS(1048), - [aux_sym_integer_token2] = ACTIONS(1046), - [aux_sym_float_token1] = ACTIONS(1048), - [aux_sym_float_token2] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1046), - [aux_sym_string_token3] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), + [592] = { + [sym_identifier] = ACTIONS(3340), + [anon_sym_POUND] = ACTIONS(3342), + [anon_sym_package] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3340), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_cast] = ACTIONS(3340), + [anon_sym_DOLLARtype] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_untyped] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_AT_COLON] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_catch] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_EQ_GT] = ACTIONS(3342), + [anon_sym_QMARK_QMARK] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_macro] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_overload] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_final] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_typedef] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [aux_sym_integer_token1] = ACTIONS(3340), + [aux_sym_integer_token2] = ACTIONS(3342), + [aux_sym_float_token1] = ACTIONS(3340), + [aux_sym_float_token2] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym_string_token1] = ACTIONS(3342), + [aux_sym_string_token3] = ACTIONS(3342), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3342), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [565] = { - [sym_identifier] = ACTIONS(2690), - [anon_sym_POUND] = ACTIONS(2692), - [anon_sym_package] = ACTIONS(2690), - [anon_sym_import] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_using] = ACTIONS(2690), - [anon_sym_throw] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_case] = ACTIONS(2690), - [anon_sym_default] = ACTIONS(2690), - [anon_sym_cast] = ACTIONS(2690), - [anon_sym_DOLLARtype] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_untyped] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_this] = ACTIONS(2690), - [anon_sym_AT] = ACTIONS(2690), - [anon_sym_AT_COLON] = ACTIONS(2692), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_catch] = ACTIONS(2690), - [anon_sym_else] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_PERCENT] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_LT_LT] = ACTIONS(2692), - [anon_sym_GT_GT] = ACTIONS(2690), - [anon_sym_GT_GT_GT] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT] = ACTIONS(2690), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_EQ_GT] = ACTIONS(2692), - [anon_sym_QMARK_QMARK] = ACTIONS(2692), - [anon_sym_EQ] = ACTIONS(2690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2692), - [anon_sym_null] = ACTIONS(2690), - [anon_sym_macro] = ACTIONS(2690), - [anon_sym_abstract] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_public] = ACTIONS(2690), - [anon_sym_private] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym_inline] = ACTIONS(2690), - [anon_sym_overload] = ACTIONS(2690), - [anon_sym_override] = ACTIONS(2690), - [anon_sym_final] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2690), - [anon_sym_interface] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), - [anon_sym_typedef] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2690), - [anon_sym_var] = ACTIONS(2690), - [aux_sym_integer_token1] = ACTIONS(2690), - [aux_sym_integer_token2] = ACTIONS(2692), - [aux_sym_float_token1] = ACTIONS(2690), - [aux_sym_float_token2] = ACTIONS(2692), - [anon_sym_true] = ACTIONS(2690), - [anon_sym_false] = ACTIONS(2690), - [aux_sym_string_token1] = ACTIONS(2692), - [aux_sym_string_token3] = ACTIONS(2692), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2692), + [593] = { + [sym_identifier] = ACTIONS(3344), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_package] = ACTIONS(3344), + [anon_sym_import] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_case] = ACTIONS(3344), + [anon_sym_default] = ACTIONS(3344), + [anon_sym_cast] = ACTIONS(3344), + [anon_sym_DOLLARtype] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_untyped] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_AT_COLON] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_catch] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_EQ_GT] = ACTIONS(3346), + [anon_sym_QMARK_QMARK] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_macro] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_overload] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_final] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3344), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_var] = ACTIONS(3344), + [aux_sym_integer_token1] = ACTIONS(3344), + [aux_sym_integer_token2] = ACTIONS(3346), + [aux_sym_float_token1] = ACTIONS(3344), + [aux_sym_float_token2] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym_string_token1] = ACTIONS(3346), + [aux_sym_string_token3] = ACTIONS(3346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3346), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [566] = { - [sym_identifier] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_package] = ACTIONS(2694), - [anon_sym_import] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_using] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_case] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_cast] = ACTIONS(2694), - [anon_sym_DOLLARtype] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_untyped] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_this] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_AT_COLON] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_catch] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_PERCENT] = ACTIONS(2696), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_PIPE_PIPE] = ACTIONS(2696), - [anon_sym_EQ_EQ] = ACTIONS(2696), - [anon_sym_BANG_EQ] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2696), - [anon_sym_EQ_GT] = ACTIONS(2696), - [anon_sym_QMARK_QMARK] = ACTIONS(2696), - [anon_sym_EQ] = ACTIONS(2694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2694), - [anon_sym_macro] = ACTIONS(2694), - [anon_sym_abstract] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_public] = ACTIONS(2694), - [anon_sym_private] = ACTIONS(2694), - [anon_sym_extern] = ACTIONS(2694), - [anon_sym_inline] = ACTIONS(2694), - [anon_sym_overload] = ACTIONS(2694), - [anon_sym_override] = ACTIONS(2694), - [anon_sym_final] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_typedef] = ACTIONS(2694), - [anon_sym_function] = ACTIONS(2694), - [anon_sym_var] = ACTIONS(2694), - [aux_sym_integer_token1] = ACTIONS(2694), - [aux_sym_integer_token2] = ACTIONS(2696), - [aux_sym_float_token1] = ACTIONS(2694), - [aux_sym_float_token2] = ACTIONS(2696), - [anon_sym_true] = ACTIONS(2694), - [anon_sym_false] = ACTIONS(2694), - [aux_sym_string_token1] = ACTIONS(2696), - [aux_sym_string_token3] = ACTIONS(2696), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2696), + [594] = { + [sym_else_clause] = STATE(606), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_catch] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3350), + [sym__closing_brace_marker] = ACTIONS(2608), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [567] = { - [sym_identifier] = ACTIONS(2698), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_package] = ACTIONS(2698), - [anon_sym_import] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_using] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_cast] = ACTIONS(2698), - [anon_sym_DOLLARtype] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_untyped] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_this] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_AT_COLON] = ACTIONS(2700), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_catch] = ACTIONS(2698), - [anon_sym_else] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2698), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_EQ_GT] = ACTIONS(2700), - [anon_sym_QMARK_QMARK] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_macro] = ACTIONS(2698), - [anon_sym_abstract] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_public] = ACTIONS(2698), - [anon_sym_private] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym_inline] = ACTIONS(2698), - [anon_sym_overload] = ACTIONS(2698), - [anon_sym_override] = ACTIONS(2698), - [anon_sym_final] = ACTIONS(2698), - [anon_sym_class] = ACTIONS(2698), - [anon_sym_interface] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_typedef] = ACTIONS(2698), - [anon_sym_function] = ACTIONS(2698), - [anon_sym_var] = ACTIONS(2698), - [aux_sym_integer_token1] = ACTIONS(2698), - [aux_sym_integer_token2] = ACTIONS(2700), - [aux_sym_float_token1] = ACTIONS(2698), - [aux_sym_float_token2] = ACTIONS(2700), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [aux_sym_string_token1] = ACTIONS(2700), - [aux_sym_string_token3] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2700), + [595] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_package] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_cast] = ACTIONS(3354), + [anon_sym_DOLLARtype] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_untyped] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_AT_COLON] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_EQ_GT] = ACTIONS(3352), + [anon_sym_QMARK_QMARK] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_macro] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_overload] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_final] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [aux_sym_integer_token1] = ACTIONS(3354), + [aux_sym_integer_token2] = ACTIONS(3352), + [aux_sym_float_token1] = ACTIONS(3354), + [aux_sym_float_token2] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym_string_token1] = ACTIONS(3352), + [aux_sym_string_token3] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [568] = { - [sym_identifier] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_package] = ACTIONS(2702), - [anon_sym_import] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_using] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_cast] = ACTIONS(2702), - [anon_sym_DOLLARtype] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_untyped] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_this] = ACTIONS(2702), - [anon_sym_AT] = ACTIONS(2702), - [anon_sym_AT_COLON] = ACTIONS(2704), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_catch] = ACTIONS(2702), - [anon_sym_else] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2702), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_EQ_GT] = ACTIONS(2704), - [anon_sym_QMARK_QMARK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_null] = ACTIONS(2702), - [anon_sym_macro] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_public] = ACTIONS(2702), - [anon_sym_private] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym_inline] = ACTIONS(2702), - [anon_sym_overload] = ACTIONS(2702), - [anon_sym_override] = ACTIONS(2702), - [anon_sym_final] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(2702), - [anon_sym_interface] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_typedef] = ACTIONS(2702), - [anon_sym_function] = ACTIONS(2702), - [anon_sym_var] = ACTIONS(2702), - [aux_sym_integer_token1] = ACTIONS(2702), - [aux_sym_integer_token2] = ACTIONS(2704), - [aux_sym_float_token1] = ACTIONS(2702), - [aux_sym_float_token2] = ACTIONS(2704), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [aux_sym_string_token1] = ACTIONS(2704), - [aux_sym_string_token3] = ACTIONS(2704), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2704), + [596] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_cast] = ACTIONS(3360), + [anon_sym_DOLLARtype] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_untyped] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_this] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_AT_COLON] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_catch] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3360), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_QMARK_QMARK] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_macro] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_inline] = ACTIONS(3360), + [anon_sym_overload] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [aux_sym_integer_token1] = ACTIONS(3360), + [aux_sym_integer_token2] = ACTIONS(3358), + [aux_sym_float_token1] = ACTIONS(3360), + [aux_sym_float_token2] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [aux_sym_string_token1] = ACTIONS(3358), + [aux_sym_string_token3] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [569] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(2708), - [anon_sym_package] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_cast] = ACTIONS(2706), - [anon_sym_DOLLARtype] = ACTIONS(2708), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_untyped] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2706), - [anon_sym_AT_COLON] = ACTIONS(2708), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_catch] = ACTIONS(2706), - [anon_sym_else] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_PERCENT] = ACTIONS(2708), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_LT_LT] = ACTIONS(2708), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_GT_GT_GT] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2708), - [anon_sym_AMP_AMP] = ACTIONS(2708), - [anon_sym_PIPE_PIPE] = ACTIONS(2708), - [anon_sym_EQ_EQ] = ACTIONS(2708), - [anon_sym_BANG_EQ] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2708), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_GT_EQ] = ACTIONS(2708), - [anon_sym_EQ_GT] = ACTIONS(2708), - [anon_sym_QMARK_QMARK] = ACTIONS(2708), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2708), - [anon_sym_null] = ACTIONS(2706), - [anon_sym_macro] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_extern] = ACTIONS(2706), - [anon_sym_inline] = ACTIONS(2706), - [anon_sym_overload] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_final] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - [anon_sym_typedef] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [aux_sym_integer_token1] = ACTIONS(2706), - [aux_sym_integer_token2] = ACTIONS(2708), - [aux_sym_float_token1] = ACTIONS(2706), - [aux_sym_float_token2] = ACTIONS(2708), - [anon_sym_true] = ACTIONS(2706), - [anon_sym_false] = ACTIONS(2706), - [aux_sym_string_token1] = ACTIONS(2708), - [aux_sym_string_token3] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2708), + [597] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_package] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_cast] = ACTIONS(3364), + [anon_sym_DOLLARtype] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_untyped] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_this] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_AT_COLON] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_catch] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_EQ_GT] = ACTIONS(3362), + [anon_sym_QMARK_QMARK] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_macro] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_overload] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_final] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [aux_sym_integer_token1] = ACTIONS(3364), + [aux_sym_integer_token2] = ACTIONS(3362), + [aux_sym_float_token1] = ACTIONS(3364), + [aux_sym_float_token2] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3364), + [anon_sym_false] = ACTIONS(3364), + [aux_sym_string_token1] = ACTIONS(3362), + [aux_sym_string_token3] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [570] = { - [sym_else_clause] = STATE(791), - [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_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [598] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3371), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_package] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_cast] = ACTIONS(3371), + [anon_sym_DOLLARtype] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_untyped] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_AT_COLON] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_catch] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_LT_LT] = ACTIONS(3369), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_GT_GT_GT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3369), + [anon_sym_QMARK_QMARK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_null] = ACTIONS(3371), + [anon_sym_macro] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_overload] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_final] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_typedef] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [aux_sym_integer_token1] = ACTIONS(3371), + [aux_sym_integer_token2] = ACTIONS(3369), + [aux_sym_float_token1] = ACTIONS(3371), + [aux_sym_float_token2] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [aux_sym_string_token1] = ACTIONS(3369), + [aux_sym_string_token3] = ACTIONS(3369), [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2712), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [571] = { - [sym_identifier] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2716), - [anon_sym_package] = ACTIONS(2714), - [anon_sym_import] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_using] = ACTIONS(2714), - [anon_sym_throw] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_switch] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_case] = ACTIONS(2714), - [anon_sym_default] = ACTIONS(2714), - [anon_sym_cast] = ACTIONS(2714), - [anon_sym_DOLLARtype] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_untyped] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_this] = ACTIONS(2714), - [anon_sym_AT] = ACTIONS(2714), - [anon_sym_AT_COLON] = ACTIONS(2716), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_catch] = ACTIONS(2714), - [anon_sym_else] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_LT_LT] = ACTIONS(2716), - [anon_sym_GT_GT] = ACTIONS(2714), - [anon_sym_GT_GT_GT] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_AMP_AMP] = ACTIONS(2716), - [anon_sym_PIPE_PIPE] = ACTIONS(2716), - [anon_sym_EQ_EQ] = ACTIONS(2716), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_LT_EQ] = ACTIONS(2716), - [anon_sym_GT] = ACTIONS(2714), - [anon_sym_GT_EQ] = ACTIONS(2716), - [anon_sym_EQ_GT] = ACTIONS(2716), - [anon_sym_QMARK_QMARK] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(2714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_macro] = ACTIONS(2714), - [anon_sym_abstract] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [anon_sym_extern] = ACTIONS(2714), - [anon_sym_inline] = ACTIONS(2714), - [anon_sym_overload] = ACTIONS(2714), - [anon_sym_override] = ACTIONS(2714), - [anon_sym_final] = ACTIONS(2714), - [anon_sym_class] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - [anon_sym_typedef] = ACTIONS(2714), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_var] = ACTIONS(2714), - [aux_sym_integer_token1] = ACTIONS(2714), - [aux_sym_integer_token2] = ACTIONS(2716), - [aux_sym_float_token1] = ACTIONS(2714), - [aux_sym_float_token2] = ACTIONS(2716), - [anon_sym_true] = ACTIONS(2714), - [anon_sym_false] = ACTIONS(2714), - [aux_sym_string_token1] = ACTIONS(2716), - [aux_sym_string_token3] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2716), + [599] = { + [sym_catch_statement] = STATE(601), + [aux_sym_try_statement_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_package] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_cast] = ACTIONS(3354), + [anon_sym_DOLLARtype] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_untyped] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_AT_COLON] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3373), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_EQ_GT] = ACTIONS(3352), + [anon_sym_QMARK_QMARK] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_macro] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_overload] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_final] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [aux_sym_integer_token1] = ACTIONS(3354), + [aux_sym_integer_token2] = ACTIONS(3352), + [aux_sym_float_token1] = ACTIONS(3354), + [aux_sym_float_token2] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym_string_token1] = ACTIONS(3352), + [aux_sym_string_token3] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3352), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [572] = { - [sym_else_clause] = STATE(470), - [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2720), - [sym__closing_brace_marker] = ACTIONS(1950), + [600] = { + [sym_catch_statement] = STATE(601), + [aux_sym_try_statement_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_cast] = ACTIONS(3360), + [anon_sym_DOLLARtype] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_untyped] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_this] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_AT_COLON] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_catch] = ACTIONS(3373), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3360), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_QMARK_QMARK] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_macro] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_inline] = ACTIONS(3360), + [anon_sym_overload] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [aux_sym_integer_token1] = ACTIONS(3360), + [aux_sym_integer_token2] = ACTIONS(3358), + [aux_sym_float_token1] = ACTIONS(3360), + [aux_sym_float_token2] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [aux_sym_string_token1] = ACTIONS(3358), + [aux_sym_string_token3] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3358), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [573] = { - [sym_catch_statement] = STATE(585), - [aux_sym_try_statement_repeat1] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2726), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), + [601] = { + [sym_catch_statement] = STATE(601), + [aux_sym_try_statement_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_package] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_cast] = ACTIONS(3364), + [anon_sym_DOLLARtype] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_untyped] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_this] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_AT_COLON] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_catch] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_EQ_GT] = ACTIONS(3362), + [anon_sym_QMARK_QMARK] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_macro] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_overload] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_final] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [aux_sym_integer_token1] = ACTIONS(3364), + [aux_sym_integer_token2] = ACTIONS(3362), + [aux_sym_float_token1] = ACTIONS(3364), + [aux_sym_float_token2] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3364), + [anon_sym_false] = ACTIONS(3364), + [aux_sym_string_token1] = ACTIONS(3362), + [aux_sym_string_token3] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3362), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [574] = { - [sym_catch_statement] = STATE(585), - [aux_sym_try_statement_repeat1] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2730), - [anon_sym_DOLLARtype] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_untyped] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_AT_COLON] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_catch] = ACTIONS(2726), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2728), - [anon_sym_QMARK_QMARK] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2730), - [anon_sym_macro] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_overload] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_final] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [aux_sym_integer_token1] = ACTIONS(2730), - [aux_sym_integer_token2] = ACTIONS(2728), - [aux_sym_float_token1] = ACTIONS(2730), - [aux_sym_float_token2] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [aux_sym_string_token1] = ACTIONS(2728), - [aux_sym_string_token3] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), + [602] = { + [sym_catch_statement] = STATE(601), + [aux_sym_try_statement_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(3371), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_package] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_cast] = ACTIONS(3371), + [anon_sym_DOLLARtype] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_untyped] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_AT_COLON] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_catch] = ACTIONS(3373), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_LT_LT] = ACTIONS(3369), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_GT_GT_GT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3369), + [anon_sym_QMARK_QMARK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_null] = ACTIONS(3371), + [anon_sym_macro] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_overload] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_final] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_typedef] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [aux_sym_integer_token1] = ACTIONS(3371), + [aux_sym_integer_token2] = ACTIONS(3369), + [aux_sym_float_token1] = ACTIONS(3371), + [aux_sym_float_token2] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [aux_sym_string_token1] = ACTIONS(3369), + [aux_sym_string_token3] = ACTIONS(3369), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3369), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [575] = { - [sym_catch_statement] = STATE(585), - [aux_sym_try_statement_repeat1] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_catch] = ACTIONS(2726), - [anon_sym_else] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [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(2232), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), - [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), + [603] = { + [sym_catch_statement] = STATE(601), + [aux_sym_try_statement_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_package] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_cast] = ACTIONS(3354), + [anon_sym_DOLLARtype] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_untyped] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_AT_COLON] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_EQ_GT] = ACTIONS(3352), + [anon_sym_QMARK_QMARK] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_macro] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_overload] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_final] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [aux_sym_integer_token1] = ACTIONS(3354), + [aux_sym_integer_token2] = ACTIONS(3352), + [aux_sym_float_token1] = ACTIONS(3354), + [aux_sym_float_token2] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym_string_token1] = ACTIONS(3352), + [aux_sym_string_token3] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3352), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [576] = { - [sym_catch_statement] = STATE(578), - [aux_sym_try_statement_repeat1] = STATE(578), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2722), + [604] = { + [sym_catch_statement] = STATE(601), + [aux_sym_try_statement_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_cast] = ACTIONS(3360), + [anon_sym_DOLLARtype] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_untyped] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_this] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_AT_COLON] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_catch] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3360), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_QMARK_QMARK] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_macro] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_inline] = ACTIONS(3360), + [anon_sym_overload] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [aux_sym_integer_token1] = ACTIONS(3360), + [aux_sym_integer_token2] = ACTIONS(3358), + [aux_sym_float_token1] = ACTIONS(3360), + [aux_sym_float_token2] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [aux_sym_string_token1] = ACTIONS(3358), + [aux_sym_string_token3] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3358), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [577] = { - [sym_catch_statement] = STATE(578), - [aux_sym_try_statement_repeat1] = STATE(578), - [sym_identifier] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2730), - [anon_sym_DOLLARtype] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_untyped] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_AT_COLON] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_catch] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2728), - [anon_sym_QMARK_QMARK] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2730), - [anon_sym_macro] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_overload] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_final] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [aux_sym_integer_token1] = ACTIONS(2730), - [aux_sym_integer_token2] = ACTIONS(2728), - [aux_sym_float_token1] = ACTIONS(2730), - [aux_sym_float_token2] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [aux_sym_string_token1] = ACTIONS(2728), - [aux_sym_string_token3] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2728), + [605] = { + [sym_catch_statement] = STATE(601), + [aux_sym_try_statement_repeat1] = STATE(601), + [sym_identifier] = ACTIONS(3371), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_package] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_cast] = ACTIONS(3371), + [anon_sym_DOLLARtype] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_untyped] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_AT_COLON] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_catch] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_LT_LT] = ACTIONS(3369), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_GT_GT_GT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3369), + [anon_sym_QMARK_QMARK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_null] = ACTIONS(3371), + [anon_sym_macro] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_overload] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_final] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_typedef] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [aux_sym_integer_token1] = ACTIONS(3371), + [aux_sym_integer_token2] = ACTIONS(3369), + [aux_sym_float_token1] = ACTIONS(3371), + [aux_sym_float_token2] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [aux_sym_string_token1] = ACTIONS(3369), + [aux_sym_string_token3] = ACTIONS(3369), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3369), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [578] = { - [sym_catch_statement] = STATE(578), - [aux_sym_try_statement_repeat1] = STATE(578), - [sym_identifier] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_package] = ACTIONS(2734), - [anon_sym_import] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_cast] = ACTIONS(2734), - [anon_sym_DOLLARtype] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_untyped] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_this] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_AT_COLON] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_catch] = ACTIONS(2738), - [anon_sym_else] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_EQ_GT] = ACTIONS(2736), - [anon_sym_QMARK_QMARK] = ACTIONS(2736), - [anon_sym_EQ] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2734), - [anon_sym_macro] = ACTIONS(2734), - [anon_sym_abstract] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_public] = ACTIONS(2734), - [anon_sym_private] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym_inline] = ACTIONS(2734), - [anon_sym_overload] = ACTIONS(2734), - [anon_sym_override] = ACTIONS(2734), - [anon_sym_final] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_typedef] = ACTIONS(2734), - [anon_sym_function] = ACTIONS(2734), - [anon_sym_var] = ACTIONS(2734), - [aux_sym_integer_token1] = ACTIONS(2734), - [aux_sym_integer_token2] = ACTIONS(2736), - [aux_sym_float_token1] = ACTIONS(2734), - [aux_sym_float_token2] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [aux_sym_string_token1] = ACTIONS(2736), - [aux_sym_string_token3] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2736), + [606] = { + [sym_identifier] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3380), + [anon_sym_package] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_cast] = ACTIONS(3378), + [anon_sym_DOLLARtype] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_untyped] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_this] = ACTIONS(3378), + [anon_sym_AT] = ACTIONS(3378), + [anon_sym_AT_COLON] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_catch] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3380), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3380), + [anon_sym_AMP_AMP] = ACTIONS(3380), + [anon_sym_PIPE_PIPE] = ACTIONS(3380), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3380), + [anon_sym_EQ_GT] = ACTIONS(3380), + [anon_sym_QMARK_QMARK] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3380), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_macro] = ACTIONS(3378), + [anon_sym_abstract] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_public] = ACTIONS(3378), + [anon_sym_private] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3378), + [anon_sym_inline] = ACTIONS(3378), + [anon_sym_overload] = ACTIONS(3378), + [anon_sym_override] = ACTIONS(3378), + [anon_sym_final] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3378), + [anon_sym_function] = ACTIONS(3378), + [anon_sym_var] = ACTIONS(3378), + [aux_sym_integer_token1] = ACTIONS(3378), + [aux_sym_integer_token2] = ACTIONS(3380), + [aux_sym_float_token1] = ACTIONS(3378), + [aux_sym_float_token2] = ACTIONS(3380), + [anon_sym_true] = ACTIONS(3378), + [anon_sym_false] = ACTIONS(3378), + [aux_sym_string_token1] = ACTIONS(3380), + [aux_sym_string_token3] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3380), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [579] = { - [sym_catch_statement] = STATE(578), - [aux_sym_try_statement_repeat1] = STATE(578), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_catch] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [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(2232), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), - [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2230), + [607] = { + [sym_identifier] = ACTIONS(3382), + [anon_sym_POUND] = ACTIONS(3384), + [anon_sym_package] = ACTIONS(3382), + [anon_sym_import] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3382), + [anon_sym_throw] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_cast] = ACTIONS(3382), + [anon_sym_DOLLARtype] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_untyped] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_this] = ACTIONS(3382), + [anon_sym_AT] = ACTIONS(3382), + [anon_sym_AT_COLON] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3382), + [anon_sym_catch] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_new] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_PERCENT] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_LT_LT] = ACTIONS(3384), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_CARET] = ACTIONS(3384), + [anon_sym_AMP_AMP] = ACTIONS(3384), + [anon_sym_PIPE_PIPE] = ACTIONS(3384), + [anon_sym_EQ_EQ] = ACTIONS(3384), + [anon_sym_BANG_EQ] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3384), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3384), + [anon_sym_EQ_GT] = ACTIONS(3384), + [anon_sym_QMARK_QMARK] = ACTIONS(3384), + [anon_sym_EQ] = ACTIONS(3382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3384), + [anon_sym_null] = ACTIONS(3382), + [anon_sym_macro] = ACTIONS(3382), + [anon_sym_abstract] = ACTIONS(3382), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_public] = ACTIONS(3382), + [anon_sym_private] = ACTIONS(3382), + [anon_sym_extern] = ACTIONS(3382), + [anon_sym_inline] = ACTIONS(3382), + [anon_sym_overload] = ACTIONS(3382), + [anon_sym_override] = ACTIONS(3382), + [anon_sym_final] = ACTIONS(3382), + [anon_sym_class] = ACTIONS(3382), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_typedef] = ACTIONS(3382), + [anon_sym_function] = ACTIONS(3382), + [anon_sym_var] = ACTIONS(3382), + [aux_sym_integer_token1] = ACTIONS(3382), + [aux_sym_integer_token2] = ACTIONS(3384), + [aux_sym_float_token1] = ACTIONS(3382), + [aux_sym_float_token2] = ACTIONS(3384), + [anon_sym_true] = ACTIONS(3382), + [anon_sym_false] = ACTIONS(3382), + [aux_sym_string_token1] = ACTIONS(3384), + [aux_sym_string_token3] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3384), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [580] = { - [sym_catch_statement] = STATE(578), - [aux_sym_try_statement_repeat1] = STATE(578), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2724), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), + [608] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_package] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_cast] = ACTIONS(3354), + [anon_sym_DOLLARtype] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_untyped] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_AT_COLON] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_EQ_GT] = ACTIONS(3352), + [anon_sym_QMARK_QMARK] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_macro] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_overload] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_final] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [aux_sym_integer_token1] = ACTIONS(3354), + [aux_sym_integer_token2] = ACTIONS(3352), + [aux_sym_float_token1] = ACTIONS(3354), + [aux_sym_float_token2] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym_string_token1] = ACTIONS(3352), + [aux_sym_string_token3] = ACTIONS(3352), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2722), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [581] = { - [sym_catch_statement] = STATE(578), - [aux_sym_try_statement_repeat1] = STATE(578), - [sym_identifier] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2730), - [anon_sym_DOLLARtype] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_untyped] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_AT_COLON] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_catch] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2728), - [anon_sym_QMARK_QMARK] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2730), - [anon_sym_macro] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_overload] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_final] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [aux_sym_integer_token1] = ACTIONS(2730), - [aux_sym_integer_token2] = ACTIONS(2728), - [aux_sym_float_token1] = ACTIONS(2730), - [aux_sym_float_token2] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [aux_sym_string_token1] = ACTIONS(2728), - [aux_sym_string_token3] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2728), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [582] = { - [sym_catch_statement] = STATE(578), - [aux_sym_try_statement_repeat1] = STATE(578), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_catch] = ACTIONS(2232), - [anon_sym_else] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [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(2232), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), - [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2230), + [609] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_cast] = ACTIONS(3360), + [anon_sym_DOLLARtype] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_untyped] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_this] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_AT_COLON] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_catch] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3360), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_QMARK_QMARK] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_macro] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_inline] = ACTIONS(3360), + [anon_sym_overload] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [aux_sym_integer_token1] = ACTIONS(3360), + [aux_sym_integer_token2] = ACTIONS(3358), + [aux_sym_float_token1] = ACTIONS(3360), + [aux_sym_float_token2] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [aux_sym_string_token1] = ACTIONS(3358), + [aux_sym_string_token3] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [583] = { - [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), + [610] = { + [sym_catch_statement] = STATE(597), + [aux_sym_try_statement_repeat1] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3371), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_package] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_cast] = ACTIONS(3371), + [anon_sym_DOLLARtype] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_untyped] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_AT_COLON] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_catch] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_LT_LT] = ACTIONS(3369), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_GT_GT_GT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3369), + [anon_sym_QMARK_QMARK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_null] = ACTIONS(3371), + [anon_sym_macro] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_overload] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_final] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_typedef] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [aux_sym_integer_token1] = ACTIONS(3371), + [aux_sym_integer_token2] = ACTIONS(3369), + [aux_sym_float_token1] = ACTIONS(3371), + [aux_sym_float_token2] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [aux_sym_string_token1] = ACTIONS(3369), + [aux_sym_string_token3] = ACTIONS(3369), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [584] = { - [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), + [611] = { + [sym_identifier] = ACTIONS(3386), + [anon_sym_POUND] = ACTIONS(3388), + [anon_sym_package] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_case] = ACTIONS(3386), + [anon_sym_default] = ACTIONS(3386), + [anon_sym_cast] = ACTIONS(3386), + [anon_sym_DOLLARtype] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_untyped] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_this] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3386), + [anon_sym_AT_COLON] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_catch] = ACTIONS(3386), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_PERCENT] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_LT_LT] = ACTIONS(3388), + [anon_sym_GT_GT] = ACTIONS(3386), + [anon_sym_GT_GT_GT] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_PIPE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_EQ_GT] = ACTIONS(3388), + [anon_sym_QMARK_QMARK] = ACTIONS(3388), + [anon_sym_EQ] = ACTIONS(3386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3388), + [anon_sym_null] = ACTIONS(3386), + [anon_sym_macro] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_extern] = ACTIONS(3386), + [anon_sym_inline] = ACTIONS(3386), + [anon_sym_overload] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_final] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + [anon_sym_typedef] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [aux_sym_integer_token1] = ACTIONS(3386), + [aux_sym_integer_token2] = ACTIONS(3388), + [aux_sym_float_token1] = ACTIONS(3386), + [aux_sym_float_token2] = ACTIONS(3388), + [anon_sym_true] = ACTIONS(3386), + [anon_sym_false] = ACTIONS(3386), + [aux_sym_string_token1] = ACTIONS(3388), + [aux_sym_string_token3] = ACTIONS(3388), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3388), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [585] = { - [sym_catch_statement] = STATE(585), - [aux_sym_try_statement_repeat1] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2736), - [sym_identifier] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_package] = ACTIONS(2734), - [anon_sym_import] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_cast] = ACTIONS(2734), - [anon_sym_DOLLARtype] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_untyped] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_this] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_AT_COLON] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_catch] = ACTIONS(2749), - [anon_sym_else] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_EQ_GT] = ACTIONS(2736), - [anon_sym_QMARK_QMARK] = ACTIONS(2736), - [anon_sym_EQ] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2734), - [anon_sym_macro] = ACTIONS(2734), - [anon_sym_abstract] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_public] = ACTIONS(2734), - [anon_sym_private] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym_inline] = ACTIONS(2734), - [anon_sym_overload] = ACTIONS(2734), - [anon_sym_override] = ACTIONS(2734), - [anon_sym_final] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_typedef] = ACTIONS(2734), - [anon_sym_function] = ACTIONS(2734), - [anon_sym_var] = ACTIONS(2734), - [aux_sym_integer_token1] = ACTIONS(2734), - [aux_sym_integer_token2] = ACTIONS(2736), - [aux_sym_float_token1] = ACTIONS(2734), - [aux_sym_float_token2] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [aux_sym_string_token1] = ACTIONS(2736), - [aux_sym_string_token3] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), + [612] = { + [sym_identifier] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2604), + [anon_sym_package] = ACTIONS(2602), + [anon_sym_import] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_using] = ACTIONS(2602), + [anon_sym_throw] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_case] = ACTIONS(2602), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_cast] = ACTIONS(2602), + [anon_sym_DOLLARtype] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_untyped] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym_this] = ACTIONS(2602), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_AT_COLON] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2602), + [anon_sym_catch] = ACTIONS(2602), + [anon_sym_else] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_new] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_PLUS_PLUS] = ACTIONS(2604), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_PERCENT] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_LT_LT] = ACTIONS(2604), + [anon_sym_GT_GT] = ACTIONS(2602), + [anon_sym_GT_GT_GT] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2604), + [anon_sym_AMP_AMP] = ACTIONS(2604), + [anon_sym_PIPE_PIPE] = ACTIONS(2604), + [anon_sym_EQ_EQ] = ACTIONS(2604), + [anon_sym_BANG_EQ] = ACTIONS(2604), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_LT_EQ] = ACTIONS(2604), + [anon_sym_GT] = ACTIONS(2602), + [anon_sym_GT_EQ] = ACTIONS(2604), + [anon_sym_EQ_GT] = ACTIONS(2604), + [anon_sym_QMARK_QMARK] = ACTIONS(2604), + [anon_sym_EQ] = ACTIONS(2602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2604), + [anon_sym_null] = ACTIONS(2602), + [anon_sym_macro] = ACTIONS(2602), + [anon_sym_abstract] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_public] = ACTIONS(2602), + [anon_sym_private] = ACTIONS(2602), + [anon_sym_extern] = ACTIONS(2602), + [anon_sym_inline] = ACTIONS(2602), + [anon_sym_overload] = ACTIONS(2602), + [anon_sym_override] = ACTIONS(2602), + [anon_sym_final] = ACTIONS(2602), + [anon_sym_class] = ACTIONS(2602), + [anon_sym_interface] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), + [anon_sym_typedef] = ACTIONS(2602), + [anon_sym_function] = ACTIONS(2602), + [anon_sym_var] = ACTIONS(2602), + [aux_sym_integer_token1] = ACTIONS(2602), + [aux_sym_integer_token2] = ACTIONS(2604), + [aux_sym_float_token1] = ACTIONS(2602), + [aux_sym_float_token2] = ACTIONS(2604), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [aux_sym_string_token1] = ACTIONS(2604), + [aux_sym_string_token3] = ACTIONS(2604), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2604), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [586] = { - [sym_catch_statement] = STATE(585), - [aux_sym_try_statement_repeat1] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2724), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), + [613] = { + [sym_identifier] = ACTIONS(3390), + [anon_sym_POUND] = ACTIONS(3392), + [anon_sym_package] = ACTIONS(3390), + [anon_sym_import] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3390), + [anon_sym_throw] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3390), + [anon_sym_default] = ACTIONS(3390), + [anon_sym_cast] = ACTIONS(3390), + [anon_sym_DOLLARtype] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3390), + [anon_sym_return] = ACTIONS(3390), + [anon_sym_untyped] = ACTIONS(3390), + [anon_sym_break] = ACTIONS(3390), + [anon_sym_continue] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3390), + [anon_sym_AT] = ACTIONS(3390), + [anon_sym_AT_COLON] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3390), + [anon_sym_catch] = ACTIONS(3390), + [anon_sym_else] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_while] = ACTIONS(3390), + [anon_sym_do] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_LT_LT] = ACTIONS(3392), + [anon_sym_GT_GT] = ACTIONS(3390), + [anon_sym_GT_GT_GT] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3390), + [anon_sym_PIPE] = ACTIONS(3390), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_EQ_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_LT_EQ] = ACTIONS(3392), + [anon_sym_GT] = ACTIONS(3390), + [anon_sym_GT_EQ] = ACTIONS(3392), + [anon_sym_EQ_GT] = ACTIONS(3392), + [anon_sym_QMARK_QMARK] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3392), + [anon_sym_null] = ACTIONS(3390), + [anon_sym_macro] = ACTIONS(3390), + [anon_sym_abstract] = ACTIONS(3390), + [anon_sym_static] = ACTIONS(3390), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_extern] = ACTIONS(3390), + [anon_sym_inline] = ACTIONS(3390), + [anon_sym_overload] = ACTIONS(3390), + [anon_sym_override] = ACTIONS(3390), + [anon_sym_final] = ACTIONS(3390), + [anon_sym_class] = ACTIONS(3390), + [anon_sym_interface] = ACTIONS(3390), + [anon_sym_enum] = ACTIONS(3390), + [anon_sym_typedef] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3390), + [anon_sym_var] = ACTIONS(3390), + [aux_sym_integer_token1] = ACTIONS(3390), + [aux_sym_integer_token2] = ACTIONS(3392), + [aux_sym_float_token1] = ACTIONS(3390), + [aux_sym_float_token2] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3390), + [anon_sym_false] = ACTIONS(3390), + [aux_sym_string_token1] = ACTIONS(3392), + [aux_sym_string_token3] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3392), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [587] = { - [sym_catch_statement] = STATE(585), - [aux_sym_try_statement_repeat1] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2730), - [anon_sym_DOLLARtype] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_untyped] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_AT_COLON] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_catch] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2728), - [anon_sym_QMARK_QMARK] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2730), - [anon_sym_macro] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_overload] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_final] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [aux_sym_integer_token1] = ACTIONS(2730), - [aux_sym_integer_token2] = ACTIONS(2728), - [aux_sym_float_token1] = ACTIONS(2730), - [aux_sym_float_token2] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [aux_sym_string_token1] = ACTIONS(2728), - [aux_sym_string_token3] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), + [614] = { + [sym_identifier] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(3396), + [anon_sym_package] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_case] = ACTIONS(3394), + [anon_sym_default] = ACTIONS(3394), + [anon_sym_cast] = ACTIONS(3394), + [anon_sym_DOLLARtype] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_untyped] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3394), + [anon_sym_AT_COLON] = ACTIONS(3396), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_catch] = ACTIONS(3394), + [anon_sym_else] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_PERCENT] = ACTIONS(3396), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3396), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_GT_GT_GT] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_AMP_AMP] = ACTIONS(3396), + [anon_sym_PIPE_PIPE] = ACTIONS(3396), + [anon_sym_EQ_EQ] = ACTIONS(3396), + [anon_sym_BANG_EQ] = ACTIONS(3396), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_LT_EQ] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_EQ] = ACTIONS(3396), + [anon_sym_EQ_GT] = ACTIONS(3396), + [anon_sym_QMARK_QMARK] = ACTIONS(3396), + [anon_sym_EQ] = ACTIONS(3394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3396), + [anon_sym_null] = ACTIONS(3394), + [anon_sym_macro] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_extern] = ACTIONS(3394), + [anon_sym_inline] = ACTIONS(3394), + [anon_sym_overload] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_final] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), + [anon_sym_typedef] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [aux_sym_integer_token1] = ACTIONS(3394), + [aux_sym_integer_token2] = ACTIONS(3396), + [aux_sym_float_token1] = ACTIONS(3394), + [aux_sym_float_token2] = ACTIONS(3396), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym_string_token1] = ACTIONS(3396), + [aux_sym_string_token3] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3396), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [588] = { - [sym_identifier] = ACTIONS(2752), - [anon_sym_POUND] = ACTIONS(2754), - [anon_sym_package] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2752), - [anon_sym_throw] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2752), - [anon_sym_default] = ACTIONS(2752), - [anon_sym_cast] = ACTIONS(2752), - [anon_sym_DOLLARtype] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_untyped] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_this] = ACTIONS(2752), - [anon_sym_AT] = ACTIONS(2752), - [anon_sym_AT_COLON] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2752), - [anon_sym_catch] = ACTIONS(2752), - [anon_sym_else] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_do] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2752), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_GT_GT_GT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_EQ_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LT_EQ] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2754), - [anon_sym_EQ_GT] = ACTIONS(2754), - [anon_sym_QMARK_QMARK] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(2752), - [anon_sym_macro] = ACTIONS(2752), - [anon_sym_abstract] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_extern] = ACTIONS(2752), - [anon_sym_inline] = ACTIONS(2752), - [anon_sym_overload] = ACTIONS(2752), - [anon_sym_override] = ACTIONS(2752), - [anon_sym_final] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2752), - [anon_sym_interface] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), - [anon_sym_typedef] = ACTIONS(2752), - [anon_sym_function] = ACTIONS(2752), - [anon_sym_var] = ACTIONS(2752), - [aux_sym_integer_token1] = ACTIONS(2752), - [aux_sym_integer_token2] = ACTIONS(2754), - [aux_sym_float_token1] = ACTIONS(2752), - [aux_sym_float_token2] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2752), - [anon_sym_false] = ACTIONS(2752), - [aux_sym_string_token1] = ACTIONS(2754), - [aux_sym_string_token3] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2754), + [615] = { + [sym_identifier] = ACTIONS(3398), + [anon_sym_POUND] = ACTIONS(3400), + [anon_sym_package] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3400), + [anon_sym_using] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_case] = ACTIONS(3398), + [anon_sym_default] = ACTIONS(3398), + [anon_sym_cast] = ACTIONS(3398), + [anon_sym_DOLLARtype] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_untyped] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3398), + [anon_sym_AT] = ACTIONS(3398), + [anon_sym_AT_COLON] = ACTIONS(3400), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_catch] = ACTIONS(3398), + [anon_sym_else] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_PERCENT] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_LT_LT] = ACTIONS(3400), + [anon_sym_GT_GT] = ACTIONS(3398), + [anon_sym_GT_GT_GT] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_EQ_EQ] = ACTIONS(3400), + [anon_sym_BANG_EQ] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_LT_EQ] = ACTIONS(3400), + [anon_sym_GT] = ACTIONS(3398), + [anon_sym_GT_EQ] = ACTIONS(3400), + [anon_sym_EQ_GT] = ACTIONS(3400), + [anon_sym_QMARK_QMARK] = ACTIONS(3400), + [anon_sym_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3400), + [anon_sym_null] = ACTIONS(3398), + [anon_sym_macro] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_extern] = ACTIONS(3398), + [anon_sym_inline] = ACTIONS(3398), + [anon_sym_overload] = ACTIONS(3398), + [anon_sym_override] = ACTIONS(3398), + [anon_sym_final] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), + [anon_sym_typedef] = ACTIONS(3398), + [anon_sym_function] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [aux_sym_integer_token1] = ACTIONS(3398), + [aux_sym_integer_token2] = ACTIONS(3400), + [aux_sym_float_token1] = ACTIONS(3398), + [aux_sym_float_token2] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3398), + [anon_sym_false] = ACTIONS(3398), + [aux_sym_string_token1] = ACTIONS(3400), + [aux_sym_string_token3] = ACTIONS(3400), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3400), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [589] = { - [sym_else_clause] = STATE(470), - [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2758), - [sym__closing_brace_marker] = ACTIONS(1950), + [616] = { + [sym_identifier] = ACTIONS(3402), + [anon_sym_POUND] = ACTIONS(3404), + [anon_sym_package] = ACTIONS(3402), + [anon_sym_import] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_cast] = ACTIONS(3402), + [anon_sym_DOLLARtype] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_untyped] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_this] = ACTIONS(3402), + [anon_sym_AT] = ACTIONS(3402), + [anon_sym_AT_COLON] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_catch] = ACTIONS(3402), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_GT_GT_GT] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_LT_EQ] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_EQ] = ACTIONS(3404), + [anon_sym_EQ_GT] = ACTIONS(3404), + [anon_sym_QMARK_QMARK] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3402), + [anon_sym_macro] = ACTIONS(3402), + [anon_sym_abstract] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_public] = ACTIONS(3402), + [anon_sym_private] = ACTIONS(3402), + [anon_sym_extern] = ACTIONS(3402), + [anon_sym_inline] = ACTIONS(3402), + [anon_sym_overload] = ACTIONS(3402), + [anon_sym_override] = ACTIONS(3402), + [anon_sym_final] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_typedef] = ACTIONS(3402), + [anon_sym_function] = ACTIONS(3402), + [anon_sym_var] = ACTIONS(3402), + [aux_sym_integer_token1] = ACTIONS(3402), + [aux_sym_integer_token2] = ACTIONS(3404), + [aux_sym_float_token1] = ACTIONS(3402), + [aux_sym_float_token2] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym_string_token1] = ACTIONS(3404), + [aux_sym_string_token3] = ACTIONS(3404), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3404), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [590] = { - [sym_else_clause] = STATE(709), - [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_STAR] = ACTIONS(1978), - [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_for] = ACTIONS(1976), - [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_try] = ACTIONS(1976), - [anon_sym_catch] = ACTIONS(1976), - [anon_sym_else] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [617] = { + [sym_identifier] = ACTIONS(3406), + [anon_sym_POUND] = ACTIONS(3408), + [anon_sym_package] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_cast] = ACTIONS(3406), + [anon_sym_DOLLARtype] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_untyped] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_this] = ACTIONS(3406), + [anon_sym_AT] = ACTIONS(3406), + [anon_sym_AT_COLON] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_catch] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PERCENT] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_LT_LT] = ACTIONS(3408), + [anon_sym_GT_GT] = ACTIONS(3406), + [anon_sym_GT_GT_GT] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_PIPE_PIPE] = ACTIONS(3408), + [anon_sym_EQ_EQ] = ACTIONS(3408), + [anon_sym_BANG_EQ] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_LT_EQ] = ACTIONS(3408), + [anon_sym_GT] = ACTIONS(3406), + [anon_sym_GT_EQ] = ACTIONS(3408), + [anon_sym_EQ_GT] = ACTIONS(3408), + [anon_sym_QMARK_QMARK] = ACTIONS(3408), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3406), + [anon_sym_macro] = ACTIONS(3406), + [anon_sym_abstract] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_public] = ACTIONS(3406), + [anon_sym_private] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym_overload] = ACTIONS(3406), + [anon_sym_override] = ACTIONS(3406), + [anon_sym_final] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3406), + [anon_sym_var] = ACTIONS(3406), + [aux_sym_integer_token1] = ACTIONS(3406), + [aux_sym_integer_token2] = ACTIONS(3408), + [aux_sym_float_token1] = ACTIONS(3406), + [aux_sym_float_token2] = ACTIONS(3408), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym_string_token1] = ACTIONS(3408), + [aux_sym_string_token3] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3408), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [591] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2730), - [anon_sym_DOLLARtype] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_untyped] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_AT_COLON] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_catch] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2728), - [anon_sym_QMARK_QMARK] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2730), - [anon_sym_macro] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_overload] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_final] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [aux_sym_integer_token1] = ACTIONS(2730), - [aux_sym_integer_token2] = ACTIONS(2728), - [aux_sym_float_token1] = ACTIONS(2730), - [aux_sym_float_token2] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [aux_sym_string_token1] = ACTIONS(2728), - [aux_sym_string_token3] = ACTIONS(2728), + [618] = { + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_package] = ACTIONS(2644), + [anon_sym_import] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(2644), + [anon_sym_throw] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_cast] = ACTIONS(2644), + [anon_sym_DOLLARtype] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_untyped] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_this] = ACTIONS(2644), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_AT_COLON] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_catch] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_SLASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_LT_LT] = ACTIONS(2646), + [anon_sym_GT_GT] = ACTIONS(2644), + [anon_sym_GT_GT_GT] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_EQ_EQ] = ACTIONS(2646), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_LT_EQ] = ACTIONS(2646), + [anon_sym_GT] = ACTIONS(2644), + [anon_sym_GT_EQ] = ACTIONS(2646), + [anon_sym_EQ_GT] = ACTIONS(2646), + [anon_sym_QMARK_QMARK] = ACTIONS(2646), + [anon_sym_EQ] = ACTIONS(2644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_macro] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym_overload] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_final] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_var] = ACTIONS(2644), + [aux_sym_integer_token1] = ACTIONS(2644), + [aux_sym_integer_token2] = ACTIONS(2646), + [aux_sym_float_token1] = ACTIONS(2644), + [aux_sym_float_token2] = ACTIONS(2646), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym_string_token1] = ACTIONS(2646), + [aux_sym_string_token3] = ACTIONS(2646), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3410), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [592] = { - [sym_else_clause] = STATE(791), - [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_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [619] = { + [sym_else_clause] = STATE(824), + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_package] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_cast] = ACTIONS(2650), + [anon_sym_DOLLARtype] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_untyped] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_this] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2650), + [anon_sym_AT_COLON] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_catch] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_LT_LT] = ACTIONS(2652), + [anon_sym_GT_GT] = ACTIONS(2650), + [anon_sym_GT_GT_GT] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_EQ_EQ] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_LT_EQ] = ACTIONS(2652), + [anon_sym_GT] = ACTIONS(2650), + [anon_sym_GT_EQ] = ACTIONS(2652), + [anon_sym_EQ_GT] = ACTIONS(2652), + [anon_sym_QMARK_QMARK] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_null] = ACTIONS(2650), + [anon_sym_macro] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_overload] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_final] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_typedef] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [aux_sym_integer_token1] = ACTIONS(2650), + [aux_sym_integer_token2] = ACTIONS(2652), + [aux_sym_float_token1] = ACTIONS(2650), + [aux_sym_float_token2] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [aux_sym_string_token1] = ACTIONS(2652), + [aux_sym_string_token3] = ACTIONS(2652), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [593] = { - [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_STAR] = ACTIONS(1966), - [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_for] = ACTIONS(1964), - [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_try] = ACTIONS(1964), - [anon_sym_catch] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [620] = { + [sym_else_clause] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_cast] = ACTIONS(2640), + [anon_sym_DOLLARtype] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_untyped] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_AT_COLON] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_catch] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_LT_LT] = ACTIONS(2642), + [anon_sym_GT_GT] = ACTIONS(2640), + [anon_sym_GT_GT_GT] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_PIPE_PIPE] = ACTIONS(2642), + [anon_sym_EQ_EQ] = ACTIONS(2642), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_LT_EQ] = ACTIONS(2642), + [anon_sym_GT] = ACTIONS(2640), + [anon_sym_GT_EQ] = ACTIONS(2642), + [anon_sym_EQ_GT] = ACTIONS(2642), + [anon_sym_QMARK_QMARK] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_macro] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym_overload] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_final] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [aux_sym_integer_token1] = ACTIONS(2640), + [aux_sym_integer_token2] = ACTIONS(2642), + [aux_sym_float_token1] = ACTIONS(2640), + [aux_sym_float_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [aux_sym_string_token1] = ACTIONS(2642), + [aux_sym_string_token3] = ACTIONS(2642), [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2762), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [594] = { - [sym_else_clause] = STATE(669), - [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_STAR] = ACTIONS(1974), - [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_for] = ACTIONS(1972), - [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_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [621] = { + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_package] = ACTIONS(2612), + [anon_sym_import] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_using] = ACTIONS(2612), + [anon_sym_throw] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_cast] = ACTIONS(2612), + [anon_sym_DOLLARtype] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_untyped] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_this] = ACTIONS(2612), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_AT_COLON] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2612), + [anon_sym_catch] = ACTIONS(2612), + [anon_sym_else] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_new] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PERCENT] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_LT_LT] = ACTIONS(2614), + [anon_sym_GT_GT] = ACTIONS(2612), + [anon_sym_GT_GT_GT] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(2614), + [anon_sym_PIPE_PIPE] = ACTIONS(2614), + [anon_sym_EQ_EQ] = ACTIONS(2614), + [anon_sym_BANG_EQ] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_LT_EQ] = ACTIONS(2614), + [anon_sym_GT] = ACTIONS(2612), + [anon_sym_GT_EQ] = ACTIONS(2614), + [anon_sym_EQ_GT] = ACTIONS(2614), + [anon_sym_QMARK_QMARK] = ACTIONS(2614), + [anon_sym_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), + [anon_sym_null] = ACTIONS(2612), + [anon_sym_macro] = ACTIONS(2612), + [anon_sym_abstract] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym_overload] = ACTIONS(2612), + [anon_sym_override] = ACTIONS(2612), + [anon_sym_final] = ACTIONS(2612), + [anon_sym_class] = ACTIONS(2612), + [anon_sym_interface] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_function] = ACTIONS(2612), + [anon_sym_var] = ACTIONS(2612), + [aux_sym_integer_token1] = ACTIONS(2612), + [aux_sym_integer_token2] = ACTIONS(2614), + [aux_sym_float_token1] = ACTIONS(2612), + [aux_sym_float_token2] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [aux_sym_string_token1] = ACTIONS(2614), + [aux_sym_string_token3] = ACTIONS(2614), [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3412), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [595] = { - [sym_else_clause] = STATE(791), - [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_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [622] = { + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2626), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_package] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_using] = ACTIONS(2626), + [anon_sym_throw] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_cast] = ACTIONS(2626), + [anon_sym_DOLLARtype] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_untyped] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2626), + [anon_sym_continue] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_this] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2626), + [anon_sym_AT_COLON] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_catch] = ACTIONS(2626), + [anon_sym_else] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_do] = ACTIONS(2626), + [anon_sym_new] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_SLASH] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2626), + [anon_sym_LT_LT] = ACTIONS(2628), + [anon_sym_GT_GT] = ACTIONS(2626), + [anon_sym_GT_GT_GT] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_PIPE] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_EQ] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2626), + [anon_sym_LT_EQ] = ACTIONS(2628), + [anon_sym_GT] = ACTIONS(2626), + [anon_sym_GT_EQ] = ACTIONS(2628), + [anon_sym_EQ_GT] = ACTIONS(2628), + [anon_sym_QMARK_QMARK] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2626), + [anon_sym_macro] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2626), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_extern] = ACTIONS(2626), + [anon_sym_inline] = ACTIONS(2626), + [anon_sym_overload] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_final] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_interface] = ACTIONS(2626), + [anon_sym_enum] = ACTIONS(2626), + [anon_sym_typedef] = ACTIONS(2626), + [anon_sym_function] = ACTIONS(2626), + [anon_sym_var] = ACTIONS(2626), + [aux_sym_integer_token1] = ACTIONS(2626), + [aux_sym_integer_token2] = ACTIONS(2628), + [aux_sym_float_token1] = ACTIONS(2626), + [aux_sym_float_token2] = ACTIONS(2628), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [aux_sym_string_token1] = ACTIONS(2628), + [aux_sym_string_token3] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3414), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [596] = { - [sym_else_clause] = STATE(470), - [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [623] = { + [sym_catch_statement] = STATE(646), + [aux_sym_try_statement_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_package] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_cast] = ACTIONS(3354), + [anon_sym_DOLLARtype] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_untyped] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_AT_COLON] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_EQ_GT] = ACTIONS(3352), + [anon_sym_QMARK_QMARK] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_macro] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_overload] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_final] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [aux_sym_integer_token1] = ACTIONS(3354), + [aux_sym_integer_token2] = ACTIONS(3352), + [aux_sym_float_token1] = ACTIONS(3354), + [aux_sym_float_token2] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym_string_token1] = ACTIONS(3352), + [aux_sym_string_token3] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3352), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [597] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2736), - [sym_identifier] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_package] = ACTIONS(2734), - [anon_sym_import] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_cast] = ACTIONS(2734), - [anon_sym_DOLLARtype] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_untyped] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_this] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_AT_COLON] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_catch] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_EQ_GT] = ACTIONS(2736), - [anon_sym_QMARK_QMARK] = ACTIONS(2736), - [anon_sym_EQ] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2734), - [anon_sym_macro] = ACTIONS(2734), - [anon_sym_abstract] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_public] = ACTIONS(2734), - [anon_sym_private] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym_inline] = ACTIONS(2734), - [anon_sym_overload] = ACTIONS(2734), - [anon_sym_override] = ACTIONS(2734), - [anon_sym_final] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_typedef] = ACTIONS(2734), - [anon_sym_function] = ACTIONS(2734), - [anon_sym_var] = ACTIONS(2734), - [aux_sym_integer_token1] = ACTIONS(2734), - [aux_sym_integer_token2] = ACTIONS(2736), - [aux_sym_float_token1] = ACTIONS(2734), - [aux_sym_float_token2] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [aux_sym_string_token1] = ACTIONS(2736), - [aux_sym_string_token3] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), + [624] = { + [sym_catch_statement] = STATE(646), + [aux_sym_try_statement_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_cast] = ACTIONS(3360), + [anon_sym_DOLLARtype] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_untyped] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_this] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_AT_COLON] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_catch] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3360), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_QMARK_QMARK] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_macro] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_inline] = ACTIONS(3360), + [anon_sym_overload] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [aux_sym_integer_token1] = ACTIONS(3360), + [aux_sym_integer_token2] = ACTIONS(3358), + [aux_sym_float_token1] = ACTIONS(3360), + [aux_sym_float_token2] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [aux_sym_string_token1] = ACTIONS(3358), + [aux_sym_string_token3] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3358), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [598] = { - [sym_else_clause] = STATE(491), - [sym_identifier] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1974), - [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_for] = ACTIONS(1972), - [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_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [625] = { + [sym_catch_statement] = STATE(646), + [aux_sym_try_statement_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(3371), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_package] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_cast] = ACTIONS(3371), + [anon_sym_DOLLARtype] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_untyped] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_AT_COLON] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_catch] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_LT_LT] = ACTIONS(3369), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_GT_GT_GT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3369), + [anon_sym_QMARK_QMARK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_null] = ACTIONS(3371), + [anon_sym_macro] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_overload] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_final] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_typedef] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [aux_sym_integer_token1] = ACTIONS(3371), + [aux_sym_integer_token2] = ACTIONS(3369), + [aux_sym_float_token1] = ACTIONS(3371), + [aux_sym_float_token2] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [aux_sym_string_token1] = ACTIONS(3369), + [aux_sym_string_token3] = ACTIONS(3369), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3369), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [626] = { + [sym_catch_statement] = STATE(632), + [aux_sym_try_statement_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_package] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_cast] = ACTIONS(3354), + [anon_sym_DOLLARtype] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_untyped] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_AT_COLON] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_EQ_GT] = ACTIONS(3352), + [anon_sym_QMARK_QMARK] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_macro] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_overload] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_final] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [aux_sym_integer_token1] = ACTIONS(3354), + [aux_sym_integer_token2] = ACTIONS(3352), + [aux_sym_float_token1] = ACTIONS(3354), + [aux_sym_float_token2] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym_string_token1] = ACTIONS(3352), + [aux_sym_string_token3] = ACTIONS(3352), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1974), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [599] = { - [sym_else_clause] = STATE(520), - [sym_identifier] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_package] = ACTIONS(1976), - [anon_sym_import] = ACTIONS(1976), - [anon_sym_STAR] = ACTIONS(1978), - [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_for] = ACTIONS(1976), - [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_try] = ACTIONS(1976), - [anon_sym_catch] = ACTIONS(1976), - [anon_sym_else] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [627] = { + [sym_else_clause] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3420), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [600] = { - [sym_catch_statement] = STATE(614), - [aux_sym_try_statement_repeat1] = STATE(614), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_catch] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [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(2232), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), - [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2230), + [628] = { + [ts_builtin_sym_end] = ACTIONS(2656), + [sym_identifier] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_package] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_using] = ACTIONS(2654), + [anon_sym_throw] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_cast] = ACTIONS(2654), + [anon_sym_DOLLARtype] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_untyped] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_this] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_AT_COLON] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2654), + [anon_sym_catch] = ACTIONS(2654), + [anon_sym_else] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_do] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT] = ACTIONS(2654), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_PIPE] = ACTIONS(2654), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2654), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_EQ_GT] = ACTIONS(2656), + [anon_sym_QMARK_QMARK] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [anon_sym_null] = ACTIONS(2654), + [anon_sym_macro] = ACTIONS(2654), + [anon_sym_abstract] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_public] = ACTIONS(2654), + [anon_sym_private] = ACTIONS(2654), + [anon_sym_extern] = ACTIONS(2654), + [anon_sym_inline] = ACTIONS(2654), + [anon_sym_overload] = ACTIONS(2654), + [anon_sym_override] = ACTIONS(2654), + [anon_sym_final] = ACTIONS(2654), + [anon_sym_class] = ACTIONS(2654), + [anon_sym_interface] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), + [anon_sym_typedef] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2654), + [anon_sym_var] = ACTIONS(2654), + [aux_sym_integer_token1] = ACTIONS(2654), + [aux_sym_integer_token2] = ACTIONS(2656), + [aux_sym_float_token1] = ACTIONS(2654), + [aux_sym_float_token2] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2654), + [anon_sym_false] = ACTIONS(2654), + [aux_sym_string_token1] = ACTIONS(2656), + [aux_sym_string_token3] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3422), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [601] = { - [sym_else_clause] = STATE(709), - [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_STAR] = ACTIONS(1978), - [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_for] = ACTIONS(1976), - [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_try] = ACTIONS(1976), - [anon_sym_catch] = ACTIONS(1976), - [anon_sym_else] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [629] = { + [sym_else_clause] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_cast] = ACTIONS(2640), + [anon_sym_DOLLARtype] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_untyped] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_AT_COLON] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_catch] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_LT_LT] = ACTIONS(2642), + [anon_sym_GT_GT] = ACTIONS(2640), + [anon_sym_GT_GT_GT] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_PIPE_PIPE] = ACTIONS(2642), + [anon_sym_EQ_EQ] = ACTIONS(2642), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_LT_EQ] = ACTIONS(2642), + [anon_sym_GT] = ACTIONS(2640), + [anon_sym_GT_EQ] = ACTIONS(2642), + [anon_sym_EQ_GT] = ACTIONS(2642), + [anon_sym_QMARK_QMARK] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_macro] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym_overload] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_final] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [aux_sym_integer_token1] = ACTIONS(2640), + [aux_sym_integer_token2] = ACTIONS(2642), + [aux_sym_float_token1] = ACTIONS(2640), + [aux_sym_float_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [aux_sym_string_token1] = ACTIONS(2642), + [aux_sym_string_token3] = ACTIONS(2642), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [602] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), + [630] = { + [sym_catch_statement] = STATE(646), + [aux_sym_try_statement_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(3371), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_package] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_cast] = ACTIONS(3371), + [anon_sym_DOLLARtype] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_untyped] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_AT_COLON] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_catch] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_LT_LT] = ACTIONS(3369), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_GT_GT_GT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3369), + [anon_sym_QMARK_QMARK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_null] = ACTIONS(3371), + [anon_sym_macro] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_overload] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_final] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_typedef] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [aux_sym_integer_token1] = ACTIONS(3371), + [aux_sym_integer_token2] = ACTIONS(3369), + [aux_sym_float_token1] = ACTIONS(3371), + [aux_sym_float_token2] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [aux_sym_string_token1] = ACTIONS(3369), + [aux_sym_string_token3] = ACTIONS(3369), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3369), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [631] = { + [sym_catch_statement] = STATE(632), + [aux_sym_try_statement_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_cast] = ACTIONS(3360), + [anon_sym_DOLLARtype] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_untyped] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_this] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_AT_COLON] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_catch] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3360), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_QMARK_QMARK] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_macro] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_inline] = ACTIONS(3360), + [anon_sym_overload] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [aux_sym_integer_token1] = ACTIONS(3360), + [aux_sym_integer_token2] = ACTIONS(3358), + [aux_sym_float_token1] = ACTIONS(3360), + [aux_sym_float_token2] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [aux_sym_string_token1] = ACTIONS(3358), + [aux_sym_string_token3] = ACTIONS(3358), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [603] = { - [sym_else_clause] = STATE(669), - [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_STAR] = ACTIONS(1974), - [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_for] = ACTIONS(1972), - [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_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [632] = { + [sym_catch_statement] = STATE(632), + [aux_sym_try_statement_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_package] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_cast] = ACTIONS(3364), + [anon_sym_DOLLARtype] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_untyped] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_this] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_AT_COLON] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_catch] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_EQ_GT] = ACTIONS(3362), + [anon_sym_QMARK_QMARK] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_macro] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_overload] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_final] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [aux_sym_integer_token1] = ACTIONS(3364), + [aux_sym_integer_token2] = ACTIONS(3362), + [aux_sym_float_token1] = ACTIONS(3364), + [aux_sym_float_token2] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3364), + [anon_sym_false] = ACTIONS(3364), + [aux_sym_string_token1] = ACTIONS(3362), + [aux_sym_string_token3] = ACTIONS(3362), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [604] = { - [sym_catch_statement] = STATE(614), - [aux_sym_try_statement_repeat1] = STATE(614), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_catch] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [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(2232), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), - [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2230), + [633] = { + [sym_catch_statement] = STATE(646), + [aux_sym_try_statement_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_package] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_cast] = ACTIONS(3354), + [anon_sym_DOLLARtype] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_untyped] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_AT_COLON] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_EQ_GT] = ACTIONS(3352), + [anon_sym_QMARK_QMARK] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_macro] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_overload] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_final] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [aux_sym_integer_token1] = ACTIONS(3354), + [aux_sym_integer_token2] = ACTIONS(3352), + [aux_sym_float_token1] = ACTIONS(3354), + [aux_sym_float_token2] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym_string_token1] = ACTIONS(3352), + [aux_sym_string_token3] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3352), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [605] = { - [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_STAR] = ACTIONS(1982), - [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_for] = ACTIONS(1980), - [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_try] = ACTIONS(1980), - [anon_sym_catch] = ACTIONS(1980), - [anon_sym_else] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2769), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [606] = { - [sym_else_clause] = STATE(791), - [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_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2773), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [607] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [608] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2730), - [anon_sym_DOLLARtype] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_untyped] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_AT_COLON] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_catch] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2728), - [anon_sym_QMARK_QMARK] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2730), - [anon_sym_macro] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_overload] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_final] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [aux_sym_integer_token1] = ACTIONS(2730), - [aux_sym_integer_token2] = ACTIONS(2728), - [aux_sym_float_token1] = ACTIONS(2730), - [aux_sym_float_token2] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [aux_sym_string_token1] = ACTIONS(2728), - [aux_sym_string_token3] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [609] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_catch] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [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(2232), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), - [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [610] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2232), - [anon_sym_catch] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [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(2232), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2230), - [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_enum] = 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(2230), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [611] = { - [ts_builtin_sym_end] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_package] = ACTIONS(1986), - [anon_sym_import] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1986), - [anon_sym_throw] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_cast] = ACTIONS(1986), - [anon_sym_DOLLARtype] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_untyped] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_AT_COLON] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1986), - [anon_sym_catch] = ACTIONS(1986), - [anon_sym_else] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_LT_LT] = ACTIONS(1988), - [anon_sym_GT_GT] = ACTIONS(1986), - [anon_sym_GT_GT_GT] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_CARET] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1988), - [anon_sym_PIPE_PIPE] = ACTIONS(1988), - [anon_sym_EQ_EQ] = ACTIONS(1988), - [anon_sym_BANG_EQ] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_LT_EQ] = ACTIONS(1988), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_EQ] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(1988), - [anon_sym_QMARK_QMARK] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(1986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1988), - [anon_sym_null] = ACTIONS(1986), - [anon_sym_macro] = ACTIONS(1986), - [anon_sym_abstract] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_public] = ACTIONS(1986), - [anon_sym_private] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), - [anon_sym_overload] = ACTIONS(1986), - [anon_sym_override] = ACTIONS(1986), - [anon_sym_final] = ACTIONS(1986), - [anon_sym_class] = ACTIONS(1986), - [anon_sym_interface] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_function] = ACTIONS(1986), - [anon_sym_var] = ACTIONS(1986), - [aux_sym_integer_token1] = ACTIONS(1986), - [aux_sym_integer_token2] = ACTIONS(1988), - [aux_sym_float_token1] = ACTIONS(1986), - [aux_sym_float_token2] = ACTIONS(1988), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [aux_sym_string_token1] = ACTIONS(1988), - [aux_sym_string_token3] = ACTIONS(1988), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2775), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [612] = { - [sym_catch_statement] = STATE(614), - [aux_sym_try_statement_repeat1] = STATE(614), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2722), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [613] = { - [sym_catch_statement] = STATE(614), - [aux_sym_try_statement_repeat1] = STATE(614), - [sym_identifier] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2730), - [anon_sym_DOLLARtype] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_untyped] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_AT_COLON] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_catch] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2728), - [anon_sym_QMARK_QMARK] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2730), - [anon_sym_macro] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_overload] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_final] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [aux_sym_integer_token1] = ACTIONS(2730), - [aux_sym_integer_token2] = ACTIONS(2728), - [aux_sym_float_token1] = ACTIONS(2730), - [aux_sym_float_token2] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [aux_sym_string_token1] = ACTIONS(2728), - [aux_sym_string_token3] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2728), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [614] = { - [sym_catch_statement] = STATE(614), - [aux_sym_try_statement_repeat1] = STATE(614), - [sym_identifier] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_package] = ACTIONS(2734), - [anon_sym_import] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_cast] = ACTIONS(2734), - [anon_sym_DOLLARtype] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_untyped] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_this] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_AT_COLON] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_catch] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_EQ_GT] = ACTIONS(2736), - [anon_sym_QMARK_QMARK] = ACTIONS(2736), - [anon_sym_EQ] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2734), - [anon_sym_macro] = ACTIONS(2734), - [anon_sym_abstract] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_public] = ACTIONS(2734), - [anon_sym_private] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym_inline] = ACTIONS(2734), - [anon_sym_overload] = ACTIONS(2734), - [anon_sym_override] = ACTIONS(2734), - [anon_sym_final] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_typedef] = ACTIONS(2734), - [anon_sym_function] = ACTIONS(2734), - [anon_sym_var] = ACTIONS(2734), - [aux_sym_integer_token1] = ACTIONS(2734), - [aux_sym_integer_token2] = ACTIONS(2736), - [aux_sym_float_token1] = ACTIONS(2734), - [aux_sym_float_token2] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [aux_sym_string_token1] = ACTIONS(2736), - [aux_sym_string_token3] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2736), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [615] = { - [sym_catch_statement] = STATE(614), - [aux_sym_try_statement_repeat1] = STATE(614), - [sym_identifier] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2730), - [anon_sym_DOLLARtype] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_untyped] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_AT_COLON] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_catch] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2728), - [anon_sym_QMARK_QMARK] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2730), - [anon_sym_macro] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_overload] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_final] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [aux_sym_integer_token1] = ACTIONS(2730), - [aux_sym_integer_token2] = ACTIONS(2728), - [aux_sym_float_token1] = ACTIONS(2730), - [aux_sym_float_token2] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [aux_sym_string_token1] = ACTIONS(2728), - [aux_sym_string_token3] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2728), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [616] = { - [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_STAR] = ACTIONS(1994), - [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_for] = ACTIONS(1992), - [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_try] = ACTIONS(1992), - [anon_sym_catch] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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__lookback_semicolon] = ACTIONS(2780), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [617] = { - [sym_catch_statement] = STATE(614), - [aux_sym_try_statement_repeat1] = STATE(614), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2722), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [618] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2104), - [anon_sym_package] = ACTIONS(2102), - [anon_sym_import] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_using] = ACTIONS(2102), - [anon_sym_throw] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_switch] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_cast] = ACTIONS(2102), - [anon_sym_DOLLARtype] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_untyped] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_AT] = ACTIONS(2102), - [anon_sym_AT_COLON] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_catch] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_new] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_PLUS_PLUS] = ACTIONS(2104), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_PERCENT] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_GT_GT_GT] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_EQ_EQ] = ACTIONS(2104), - [anon_sym_BANG_EQ] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_LT_EQ] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2102), - [anon_sym_GT_EQ] = ACTIONS(2104), - [anon_sym_EQ_GT] = ACTIONS(2104), - [anon_sym_QMARK_QMARK] = ACTIONS(2104), - [anon_sym_EQ] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2104), - [anon_sym_null] = ACTIONS(2102), - [anon_sym_macro] = ACTIONS(2102), - [anon_sym_abstract] = ACTIONS(2102), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_public] = ACTIONS(2102), - [anon_sym_private] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_inline] = ACTIONS(2102), - [anon_sym_overload] = ACTIONS(2102), - [anon_sym_override] = ACTIONS(2102), - [anon_sym_final] = ACTIONS(2102), - [anon_sym_class] = ACTIONS(2102), - [anon_sym_interface] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_typedef] = ACTIONS(2102), - [anon_sym_function] = ACTIONS(2102), - [anon_sym_var] = ACTIONS(2102), - [aux_sym_integer_token1] = ACTIONS(2102), - [aux_sym_integer_token2] = ACTIONS(2104), - [aux_sym_float_token1] = ACTIONS(2102), - [aux_sym_float_token2] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2102), - [anon_sym_false] = ACTIONS(2102), - [aux_sym_string_token1] = ACTIONS(2104), - [aux_sym_string_token3] = ACTIONS(2104), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [619] = { - [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_STAR] = ACTIONS(2262), - [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_for] = ACTIONS(2260), - [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_try] = ACTIONS(2260), - [anon_sym_catch] = ACTIONS(2260), - [anon_sym_else] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [620] = { - [ts_builtin_sym_end] = ACTIONS(810), - [sym_identifier] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(810), - [anon_sym_for] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_this] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(810), - [anon_sym_try] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_new] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(810), - [anon_sym_PERCENT] = ACTIONS(810), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(810), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_GT_GT_GT] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_EQ_GT] = ACTIONS(810), - [anon_sym_QMARK_QMARK] = ACTIONS(810), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(810), - [anon_sym_null] = ACTIONS(814), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_function] = ACTIONS(814), - [anon_sym_var] = ACTIONS(814), - [aux_sym_integer_token1] = ACTIONS(814), - [aux_sym_integer_token2] = ACTIONS(810), - [aux_sym_float_token1] = ACTIONS(814), - [aux_sym_float_token2] = ACTIONS(810), - [anon_sym_true] = ACTIONS(814), - [anon_sym_false] = ACTIONS(814), - [aux_sym_string_token1] = ACTIONS(810), - [aux_sym_string_token3] = ACTIONS(810), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [621] = { - [ts_builtin_sym_end] = ACTIONS(2240), - [sym_identifier] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2240), - [anon_sym_package] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_cast] = ACTIONS(2238), - [anon_sym_DOLLARtype] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_untyped] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_this] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_AT_COLON] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_catch] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_EQ_GT] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_EQ] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2240), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_macro] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_inline] = ACTIONS(2238), - [anon_sym_overload] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_final] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [anon_sym_typedef] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [aux_sym_integer_token1] = ACTIONS(2238), - [aux_sym_integer_token2] = ACTIONS(2240), - [aux_sym_float_token1] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [aux_sym_string_token1] = ACTIONS(2240), - [aux_sym_string_token3] = ACTIONS(2240), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [622] = { - [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_STAR] = ACTIONS(2246), - [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_for] = ACTIONS(2244), - [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_try] = ACTIONS(2244), - [anon_sym_catch] = ACTIONS(2244), - [anon_sym_else] = ACTIONS(2244), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2244), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [623] = { - [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_STAR] = ACTIONS(2250), - [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_for] = ACTIONS(2248), - [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_try] = ACTIONS(2248), - [anon_sym_catch] = ACTIONS(2248), - [anon_sym_else] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(2422), - [anon_sym_package] = ACTIONS(2420), - [anon_sym_import] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_using] = ACTIONS(2420), - [anon_sym_throw] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_switch] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_cast] = ACTIONS(2420), - [anon_sym_DOLLARtype] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_untyped] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2422), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_AT] = ACTIONS(2420), - [anon_sym_AT_COLON] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2420), - [anon_sym_catch] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_TILDE] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2422), - [anon_sym_DASH_DASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2422), - [anon_sym_GT_GT] = ACTIONS(2420), - [anon_sym_GT_GT_GT] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2420), - [anon_sym_CARET] = ACTIONS(2422), - [anon_sym_AMP_AMP] = ACTIONS(2422), - [anon_sym_PIPE_PIPE] = ACTIONS(2422), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2422), - [anon_sym_EQ_GT] = ACTIONS(2422), - [anon_sym_QMARK_QMARK] = ACTIONS(2422), - [anon_sym_EQ] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2420), - [anon_sym_macro] = ACTIONS(2420), - [anon_sym_abstract] = ACTIONS(2420), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_public] = ACTIONS(2420), - [anon_sym_private] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_inline] = ACTIONS(2420), - [anon_sym_overload] = ACTIONS(2420), - [anon_sym_override] = ACTIONS(2420), - [anon_sym_final] = ACTIONS(2420), - [anon_sym_class] = ACTIONS(2420), - [anon_sym_interface] = ACTIONS(2420), - [anon_sym_enum] = ACTIONS(2420), - [anon_sym_typedef] = ACTIONS(2420), - [anon_sym_function] = ACTIONS(2420), - [anon_sym_var] = ACTIONS(2420), - [aux_sym_integer_token1] = ACTIONS(2420), - [aux_sym_integer_token2] = ACTIONS(2422), - [aux_sym_float_token1] = ACTIONS(2420), - [aux_sym_float_token2] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [aux_sym_string_token1] = ACTIONS(2422), - [aux_sym_string_token3] = ACTIONS(2422), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [625] = { - [ts_builtin_sym_end] = ACTIONS(2426), - [sym_identifier] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_package] = ACTIONS(2424), - [anon_sym_import] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_using] = ACTIONS(2424), - [anon_sym_throw] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_switch] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_cast] = ACTIONS(2424), - [anon_sym_DOLLARtype] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_untyped] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_this] = ACTIONS(2424), - [anon_sym_AT] = ACTIONS(2424), - [anon_sym_AT_COLON] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2424), - [anon_sym_catch] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_do] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2426), - [anon_sym_DASH_DASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2424), - [anon_sym_PLUS] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2424), - [anon_sym_GT_GT_GT] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_CARET] = ACTIONS(2426), - [anon_sym_AMP_AMP] = ACTIONS(2426), - [anon_sym_PIPE_PIPE] = ACTIONS(2426), - [anon_sym_EQ_EQ] = ACTIONS(2426), - [anon_sym_BANG_EQ] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_LT_EQ] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2426), - [anon_sym_EQ_GT] = ACTIONS(2426), - [anon_sym_QMARK_QMARK] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2426), - [anon_sym_null] = ACTIONS(2424), - [anon_sym_macro] = ACTIONS(2424), - [anon_sym_abstract] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_inline] = ACTIONS(2424), - [anon_sym_overload] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_final] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2424), - [anon_sym_interface] = ACTIONS(2424), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_typedef] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2424), - [anon_sym_var] = ACTIONS(2424), - [aux_sym_integer_token1] = ACTIONS(2424), - [aux_sym_integer_token2] = ACTIONS(2426), - [aux_sym_float_token1] = ACTIONS(2424), - [aux_sym_float_token2] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [aux_sym_string_token1] = ACTIONS(2426), - [aux_sym_string_token3] = ACTIONS(2426), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [626] = { - [ts_builtin_sym_end] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2452), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_package] = ACTIONS(2452), - [anon_sym_import] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_using] = ACTIONS(2452), - [anon_sym_throw] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_switch] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_cast] = ACTIONS(2452), - [anon_sym_DOLLARtype] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_untyped] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_this] = ACTIONS(2452), - [anon_sym_AT] = ACTIONS(2452), - [anon_sym_AT_COLON] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_catch] = ACTIONS(2452), - [anon_sym_else] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [anon_sym_PERCENT] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2454), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_GT_GT_GT] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_CARET] = ACTIONS(2454), - [anon_sym_AMP_AMP] = ACTIONS(2454), - [anon_sym_PIPE_PIPE] = ACTIONS(2454), - [anon_sym_EQ_EQ] = ACTIONS(2454), - [anon_sym_BANG_EQ] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_LT_EQ] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_GT_EQ] = ACTIONS(2454), - [anon_sym_EQ_GT] = ACTIONS(2454), - [anon_sym_QMARK_QMARK] = ACTIONS(2454), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), - [anon_sym_null] = ACTIONS(2452), - [anon_sym_macro] = ACTIONS(2452), - [anon_sym_abstract] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_inline] = ACTIONS(2452), - [anon_sym_overload] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_final] = ACTIONS(2452), - [anon_sym_class] = ACTIONS(2452), - [anon_sym_interface] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2452), - [anon_sym_typedef] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2452), - [anon_sym_var] = ACTIONS(2452), - [aux_sym_integer_token1] = ACTIONS(2452), - [aux_sym_integer_token2] = ACTIONS(2454), - [aux_sym_float_token1] = ACTIONS(2452), - [aux_sym_float_token2] = ACTIONS(2454), - [anon_sym_true] = ACTIONS(2452), - [anon_sym_false] = ACTIONS(2452), - [aux_sym_string_token1] = ACTIONS(2454), - [aux_sym_string_token3] = ACTIONS(2454), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [627] = { - [ts_builtin_sym_end] = ACTIONS(2466), - [sym_identifier] = ACTIONS(2464), - [anon_sym_POUND] = ACTIONS(2466), - [anon_sym_package] = ACTIONS(2464), - [anon_sym_import] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2464), - [anon_sym_throw] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_cast] = ACTIONS(2464), - [anon_sym_DOLLARtype] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_untyped] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_this] = ACTIONS(2464), - [anon_sym_AT] = ACTIONS(2464), - [anon_sym_AT_COLON] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [anon_sym_PERCENT] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2464), - [anon_sym_PLUS] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2466), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_GT_GT_GT] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2466), - [anon_sym_PIPE_PIPE] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2466), - [anon_sym_EQ_GT] = ACTIONS(2466), - [anon_sym_QMARK_QMARK] = ACTIONS(2466), - [anon_sym_EQ] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - [anon_sym_null] = ACTIONS(2464), - [anon_sym_macro] = ACTIONS(2464), - [anon_sym_abstract] = ACTIONS(2464), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_inline] = ACTIONS(2464), - [anon_sym_overload] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_final] = ACTIONS(2464), - [anon_sym_class] = ACTIONS(2464), - [anon_sym_interface] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2464), - [anon_sym_var] = ACTIONS(2464), - [aux_sym_integer_token1] = ACTIONS(2464), - [aux_sym_integer_token2] = ACTIONS(2466), - [aux_sym_float_token1] = ACTIONS(2464), - [aux_sym_float_token2] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(2464), - [anon_sym_false] = ACTIONS(2464), - [aux_sym_string_token1] = ACTIONS(2466), - [aux_sym_string_token3] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_package] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_using] = ACTIONS(1432), - [anon_sym_throw] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_cast] = ACTIONS(1432), - [anon_sym_DOLLARtype] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_untyped] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_this] = ACTIONS(1432), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_AT_COLON] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1432), - [anon_sym_catch] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_new] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PERCENT] = ACTIONS(1434), - [anon_sym_SLASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_LT_LT] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(1432), - [anon_sym_GT_GT_GT] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_CARET] = ACTIONS(1434), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_PIPE_PIPE] = ACTIONS(1434), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_LT_EQ] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1432), - [anon_sym_GT_EQ] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_QMARK_QMARK] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_macro] = ACTIONS(1432), - [anon_sym_abstract] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_public] = ACTIONS(1432), - [anon_sym_private] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym_overload] = ACTIONS(1432), - [anon_sym_override] = ACTIONS(1432), - [anon_sym_final] = ACTIONS(1432), - [anon_sym_class] = ACTIONS(1432), - [anon_sym_interface] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [aux_sym_integer_token1] = ACTIONS(1432), - [aux_sym_integer_token2] = ACTIONS(1434), - [aux_sym_float_token1] = ACTIONS(1432), - [aux_sym_float_token2] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1434), - [aux_sym_string_token3] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [629] = { - [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_STAR] = ACTIONS(2258), - [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_for] = ACTIONS(2256), - [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_try] = ACTIONS(2256), - [anon_sym_catch] = ACTIONS(2256), - [anon_sym_else] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2256), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [630] = { - [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_STAR] = ACTIONS(2294), - [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_for] = ACTIONS(2292), - [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_try] = ACTIONS(2292), - [anon_sym_catch] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(2630), - [sym_identifier] = ACTIONS(2628), - [anon_sym_POUND] = ACTIONS(2630), - [anon_sym_package] = ACTIONS(2628), - [anon_sym_import] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2628), - [anon_sym_throw] = ACTIONS(2628), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_cast] = ACTIONS(2628), - [anon_sym_DOLLARtype] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2628), - [anon_sym_untyped] = ACTIONS(2628), - [anon_sym_break] = ACTIONS(2628), - [anon_sym_continue] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_this] = ACTIONS(2628), - [anon_sym_AT] = ACTIONS(2628), - [anon_sym_AT_COLON] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2628), - [anon_sym_catch] = ACTIONS(2628), - [anon_sym_else] = ACTIONS(2628), - [anon_sym_if] = ACTIONS(2628), - [anon_sym_while] = ACTIONS(2628), - [anon_sym_do] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_PLUS_PLUS] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2630), - [anon_sym_PERCENT] = ACTIONS(2630), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_LT_LT] = ACTIONS(2630), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_GT_GT_GT] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP_AMP] = ACTIONS(2630), - [anon_sym_PIPE_PIPE] = ACTIONS(2630), - [anon_sym_EQ_EQ] = ACTIONS(2630), - [anon_sym_BANG_EQ] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2630), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_GT_EQ] = ACTIONS(2630), - [anon_sym_EQ_GT] = ACTIONS(2630), - [anon_sym_QMARK_QMARK] = ACTIONS(2630), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), - [anon_sym_null] = ACTIONS(2628), - [anon_sym_macro] = ACTIONS(2628), - [anon_sym_abstract] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_public] = ACTIONS(2628), - [anon_sym_private] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym_inline] = ACTIONS(2628), - [anon_sym_overload] = ACTIONS(2628), - [anon_sym_override] = ACTIONS(2628), - [anon_sym_final] = ACTIONS(2628), - [anon_sym_class] = ACTIONS(2628), - [anon_sym_interface] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_typedef] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2628), - [anon_sym_var] = ACTIONS(2628), - [aux_sym_integer_token1] = ACTIONS(2628), - [aux_sym_integer_token2] = ACTIONS(2630), - [aux_sym_float_token1] = ACTIONS(2628), - [aux_sym_float_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2628), - [anon_sym_false] = ACTIONS(2628), - [aux_sym_string_token1] = ACTIONS(2630), - [aux_sym_string_token3] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [632] = { - [ts_builtin_sym_end] = ACTIONS(2634), - [sym_identifier] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_package] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(2632), - [anon_sym_throw] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_cast] = ACTIONS(2632), - [anon_sym_DOLLARtype] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_untyped] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_this] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2632), - [anon_sym_AT_COLON] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2632), - [anon_sym_catch] = ACTIONS(2632), - [anon_sym_else] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_do] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2634), - [anon_sym_DASH_DASH] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_SLASH] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2632), - [anon_sym_LT_LT] = ACTIONS(2634), - [anon_sym_GT_GT] = ACTIONS(2632), - [anon_sym_GT_GT_GT] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_CARET] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_EQ_EQ] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_LT_EQ] = ACTIONS(2634), - [anon_sym_GT] = ACTIONS(2632), - [anon_sym_GT_EQ] = ACTIONS(2634), - [anon_sym_EQ_GT] = ACTIONS(2634), - [anon_sym_QMARK_QMARK] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2634), - [anon_sym_null] = ACTIONS(2632), - [anon_sym_macro] = ACTIONS(2632), - [anon_sym_abstract] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym_inline] = ACTIONS(2632), - [anon_sym_overload] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_interface] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [aux_sym_integer_token1] = ACTIONS(2632), - [aux_sym_integer_token2] = ACTIONS(2634), - [aux_sym_float_token1] = ACTIONS(2632), - [aux_sym_float_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [aux_sym_string_token1] = ACTIONS(2634), - [aux_sym_string_token3] = ACTIONS(2634), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [633] = { - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_package] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_cast] = ACTIONS(2640), - [anon_sym_DOLLARtype] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_untyped] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_AT_COLON] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_catch] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_LT_LT] = ACTIONS(2642), - [anon_sym_GT_GT] = ACTIONS(2640), - [anon_sym_GT_GT_GT] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2642), - [anon_sym_AMP_AMP] = ACTIONS(2642), - [anon_sym_PIPE_PIPE] = ACTIONS(2642), - [anon_sym_EQ_EQ] = ACTIONS(2642), - [anon_sym_BANG_EQ] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_LT_EQ] = ACTIONS(2642), - [anon_sym_GT] = ACTIONS(2640), - [anon_sym_GT_EQ] = ACTIONS(2642), - [anon_sym_EQ_GT] = ACTIONS(2642), - [anon_sym_QMARK_QMARK] = ACTIONS(2642), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2640), - [anon_sym_macro] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_inline] = ACTIONS(2640), - [anon_sym_overload] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_final] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [aux_sym_integer_token1] = ACTIONS(2640), - [aux_sym_integer_token2] = ACTIONS(2642), - [aux_sym_float_token1] = ACTIONS(2640), - [aux_sym_float_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [aux_sym_string_token1] = ACTIONS(2642), - [aux_sym_string_token3] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [634] = { - [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_STAR] = ACTIONS(2306), - [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_for] = ACTIONS(2304), - [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_try] = ACTIONS(2304), - [anon_sym_catch] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [634] = { + [sym_else_clause] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_catch] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [635] = { - [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_STAR] = ACTIONS(2270), - [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_for] = ACTIONS(2268), - [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_try] = ACTIONS(2268), - [anon_sym_catch] = ACTIONS(2268), - [anon_sym_else] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [636] = { + [sym_else_clause] = STATE(824), [ts_builtin_sym_end] = ACTIONS(2652), [sym_identifier] = ACTIONS(2650), [anon_sym_POUND] = ACTIONS(2652), @@ -71796,7 +73626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_COLON] = ACTIONS(2652), [anon_sym_try] = ACTIONS(2650), [anon_sym_catch] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(3312), [anon_sym_if] = ACTIONS(2650), [anon_sym_while] = ACTIONS(2650), [anon_sym_do] = ACTIONS(2650), @@ -71855,7 +73685,3799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, + [636] = { + [sym_else_clause] = STATE(606), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3431), + [sym__closing_brace_marker] = ACTIONS(2608), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, [637] = { + [sym__rangeOperator] = STATE(2469), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_package] = ACTIONS(1452), + [anon_sym_import] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_throw] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_this] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AT_COLON] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_GT_GT_GT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [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(1452), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_QMARK_QMARK] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1452), + [anon_sym_macro] = ACTIONS(1452), + [anon_sym_abstract] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_public] = ACTIONS(1452), + [anon_sym_private] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym_overload] = ACTIONS(1452), + [anon_sym_override] = ACTIONS(1452), + [anon_sym_final] = ACTIONS(1452), + [anon_sym_class] = ACTIONS(1452), + [anon_sym_interface] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_function] = ACTIONS(1452), + [anon_sym_var] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1452), + [aux_sym_integer_token2] = ACTIONS(1448), + [aux_sym_float_token1] = ACTIONS(1452), + [aux_sym_float_token2] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1448), + [aux_sym_string_token3] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [638] = { + [sym_catch_statement] = STATE(632), + [aux_sym_try_statement_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3371), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_package] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_cast] = ACTIONS(3371), + [anon_sym_DOLLARtype] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_untyped] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_AT_COLON] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_catch] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_LT_LT] = ACTIONS(3369), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_GT_GT_GT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3369), + [anon_sym_QMARK_QMARK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_null] = ACTIONS(3371), + [anon_sym_macro] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_overload] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_final] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_typedef] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [aux_sym_integer_token1] = ACTIONS(3371), + [aux_sym_integer_token2] = ACTIONS(3369), + [aux_sym_float_token1] = ACTIONS(3371), + [aux_sym_float_token2] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [aux_sym_string_token1] = ACTIONS(3369), + [aux_sym_string_token3] = ACTIONS(3369), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [639] = { + [sym_else_clause] = STATE(606), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_catch] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2608), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [640] = { + [sym_catch_statement] = STATE(646), + [aux_sym_try_statement_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_cast] = ACTIONS(3360), + [anon_sym_DOLLARtype] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_untyped] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_this] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_AT_COLON] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_catch] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3360), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_QMARK_QMARK] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_macro] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_inline] = ACTIONS(3360), + [anon_sym_overload] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [aux_sym_integer_token1] = ACTIONS(3360), + [aux_sym_integer_token2] = ACTIONS(3358), + [aux_sym_float_token1] = ACTIONS(3360), + [aux_sym_float_token2] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [aux_sym_string_token1] = ACTIONS(3358), + [aux_sym_string_token3] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3358), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [641] = { + [sym_else_clause] = STATE(422), + [sym_identifier] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_package] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_cast] = ACTIONS(2650), + [anon_sym_DOLLARtype] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_untyped] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_this] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2650), + [anon_sym_AT_COLON] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_catch] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_LT_LT] = ACTIONS(2652), + [anon_sym_GT_GT] = ACTIONS(2650), + [anon_sym_GT_GT_GT] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_EQ_EQ] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_LT_EQ] = ACTIONS(2652), + [anon_sym_GT] = ACTIONS(2650), + [anon_sym_GT_EQ] = ACTIONS(2652), + [anon_sym_EQ_GT] = ACTIONS(2652), + [anon_sym_QMARK_QMARK] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_null] = ACTIONS(2650), + [anon_sym_macro] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_overload] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_final] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_typedef] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [aux_sym_integer_token1] = ACTIONS(2650), + [aux_sym_integer_token2] = ACTIONS(2652), + [aux_sym_float_token1] = ACTIONS(2650), + [aux_sym_float_token2] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [aux_sym_string_token1] = ACTIONS(2652), + [aux_sym_string_token3] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2652), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [642] = { + [sym_else_clause] = STATE(444), + [sym_identifier] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_cast] = ACTIONS(2640), + [anon_sym_DOLLARtype] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_untyped] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_AT_COLON] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_catch] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_LT_LT] = ACTIONS(2642), + [anon_sym_GT_GT] = ACTIONS(2640), + [anon_sym_GT_GT_GT] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_PIPE_PIPE] = ACTIONS(2642), + [anon_sym_EQ_EQ] = ACTIONS(2642), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_LT_EQ] = ACTIONS(2642), + [anon_sym_GT] = ACTIONS(2640), + [anon_sym_GT_EQ] = ACTIONS(2642), + [anon_sym_EQ_GT] = ACTIONS(2642), + [anon_sym_QMARK_QMARK] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_macro] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym_overload] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_final] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [aux_sym_integer_token1] = ACTIONS(2640), + [aux_sym_integer_token2] = ACTIONS(2642), + [aux_sym_float_token1] = ACTIONS(2640), + [aux_sym_float_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [aux_sym_string_token1] = ACTIONS(2642), + [aux_sym_string_token3] = ACTIONS(2642), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2642), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [643] = { + [sym_catch_statement] = STATE(632), + [aux_sym_try_statement_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_package] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_cast] = ACTIONS(3354), + [anon_sym_DOLLARtype] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_untyped] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_this] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_AT_COLON] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_EQ_GT] = ACTIONS(3352), + [anon_sym_QMARK_QMARK] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_null] = ACTIONS(3354), + [anon_sym_macro] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_overload] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_final] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [aux_sym_integer_token1] = ACTIONS(3354), + [aux_sym_integer_token2] = ACTIONS(3352), + [aux_sym_float_token1] = ACTIONS(3354), + [aux_sym_float_token2] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym_string_token1] = ACTIONS(3352), + [aux_sym_string_token3] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [644] = { + [sym_catch_statement] = STATE(632), + [aux_sym_try_statement_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_import] = ACTIONS(3360), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3360), + [anon_sym_throw] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_cast] = ACTIONS(3360), + [anon_sym_DOLLARtype] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_untyped] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_this] = ACTIONS(3360), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_AT_COLON] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3360), + [anon_sym_catch] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_new] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3360), + [anon_sym_PLUS] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3360), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_QMARK_QMARK] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_macro] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_inline] = ACTIONS(3360), + [anon_sym_overload] = ACTIONS(3360), + [anon_sym_override] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_class] = ACTIONS(3360), + [anon_sym_interface] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3360), + [anon_sym_function] = ACTIONS(3360), + [anon_sym_var] = ACTIONS(3360), + [aux_sym_integer_token1] = ACTIONS(3360), + [aux_sym_integer_token2] = ACTIONS(3358), + [aux_sym_float_token1] = ACTIONS(3360), + [aux_sym_float_token2] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [aux_sym_string_token1] = ACTIONS(3358), + [aux_sym_string_token3] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [645] = { + [sym_catch_statement] = STATE(632), + [aux_sym_try_statement_repeat1] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3371), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_package] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_cast] = ACTIONS(3371), + [anon_sym_DOLLARtype] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_untyped] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_AT_COLON] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_catch] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_LT_LT] = ACTIONS(3369), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_GT_GT_GT] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3369), + [anon_sym_QMARK_QMARK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_null] = ACTIONS(3371), + [anon_sym_macro] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_overload] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_final] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_typedef] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [aux_sym_integer_token1] = ACTIONS(3371), + [aux_sym_integer_token2] = ACTIONS(3369), + [aux_sym_float_token1] = ACTIONS(3371), + [aux_sym_float_token2] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [aux_sym_string_token1] = ACTIONS(3369), + [aux_sym_string_token3] = ACTIONS(3369), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [646] = { + [sym_catch_statement] = STATE(646), + [aux_sym_try_statement_repeat1] = STATE(646), + [sym_identifier] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_package] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_cast] = ACTIONS(3364), + [anon_sym_DOLLARtype] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_untyped] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_this] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_AT_COLON] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_catch] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_EQ_GT] = ACTIONS(3362), + [anon_sym_QMARK_QMARK] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_macro] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_overload] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_final] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [aux_sym_integer_token1] = ACTIONS(3364), + [aux_sym_integer_token2] = ACTIONS(3362), + [aux_sym_float_token1] = ACTIONS(3364), + [aux_sym_float_token2] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3364), + [anon_sym_false] = ACTIONS(3364), + [aux_sym_string_token1] = ACTIONS(3362), + [aux_sym_string_token3] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3362), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [647] = { + [sym_else_clause] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_catch] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [648] = { + [ts_builtin_sym_end] = ACTIONS(3112), + [sym_identifier] = ACTIONS(3110), + [anon_sym_POUND] = ACTIONS(3112), + [anon_sym_package] = ACTIONS(3110), + [anon_sym_import] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_cast] = ACTIONS(3110), + [anon_sym_DOLLARtype] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_untyped] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_AT_COLON] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_catch] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_do] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [anon_sym_PERCENT] = ACTIONS(3112), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_LT_LT] = ACTIONS(3112), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_CARET] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_EQ_GT] = ACTIONS(3112), + [anon_sym_QMARK_QMARK] = ACTIONS(3112), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_macro] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_overload] = ACTIONS(3110), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_interface] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_function] = ACTIONS(3110), + [anon_sym_var] = ACTIONS(3110), + [aux_sym_integer_token1] = ACTIONS(3110), + [aux_sym_integer_token2] = ACTIONS(3112), + [aux_sym_float_token1] = ACTIONS(3110), + [aux_sym_float_token2] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [aux_sym_string_token1] = ACTIONS(3112), + [aux_sym_string_token3] = ACTIONS(3112), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [649] = { + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(2878), + [anon_sym_package] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_cast] = ACTIONS(2876), + [anon_sym_DOLLARtype] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_untyped] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_this] = ACTIONS(2876), + [anon_sym_AT] = ACTIONS(2876), + [anon_sym_AT_COLON] = ACTIONS(2878), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_catch] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PERCENT] = ACTIONS(2878), + [anon_sym_SLASH] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2876), + [anon_sym_GT_GT_GT] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_CARET] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_LT_EQ] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2876), + [anon_sym_GT_EQ] = ACTIONS(2878), + [anon_sym_EQ_GT] = ACTIONS(2878), + [anon_sym_QMARK_QMARK] = ACTIONS(2878), + [anon_sym_EQ] = ACTIONS(2876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_macro] = ACTIONS(2876), + [anon_sym_abstract] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_public] = ACTIONS(2876), + [anon_sym_private] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym_overload] = ACTIONS(2876), + [anon_sym_override] = ACTIONS(2876), + [anon_sym_final] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_var] = ACTIONS(2876), + [aux_sym_integer_token1] = ACTIONS(2876), + [aux_sym_integer_token2] = ACTIONS(2878), + [aux_sym_float_token1] = ACTIONS(2876), + [aux_sym_float_token2] = ACTIONS(2878), + [anon_sym_true] = ACTIONS(2876), + [anon_sym_false] = ACTIONS(2876), + [aux_sym_string_token1] = ACTIONS(2878), + [aux_sym_string_token3] = ACTIONS(2878), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [650] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2882), + [anon_sym_package] = ACTIONS(2880), + [anon_sym_import] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_cast] = ACTIONS(2880), + [anon_sym_DOLLARtype] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_untyped] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_this] = ACTIONS(2880), + [anon_sym_AT] = ACTIONS(2880), + [anon_sym_AT_COLON] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_catch] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_LT_LT] = ACTIONS(2882), + [anon_sym_GT_GT] = ACTIONS(2880), + [anon_sym_GT_GT_GT] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_CARET] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_PIPE_PIPE] = ACTIONS(2882), + [anon_sym_EQ_EQ] = ACTIONS(2882), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_LT_EQ] = ACTIONS(2882), + [anon_sym_GT] = ACTIONS(2880), + [anon_sym_GT_EQ] = ACTIONS(2882), + [anon_sym_EQ_GT] = ACTIONS(2882), + [anon_sym_QMARK_QMARK] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_macro] = ACTIONS(2880), + [anon_sym_abstract] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym_inline] = ACTIONS(2880), + [anon_sym_overload] = ACTIONS(2880), + [anon_sym_override] = ACTIONS(2880), + [anon_sym_final] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_typedef] = ACTIONS(2880), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_var] = ACTIONS(2880), + [aux_sym_integer_token1] = ACTIONS(2880), + [aux_sym_integer_token2] = ACTIONS(2882), + [aux_sym_float_token1] = ACTIONS(2880), + [aux_sym_float_token2] = ACTIONS(2882), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [aux_sym_string_token1] = ACTIONS(2882), + [aux_sym_string_token3] = ACTIONS(2882), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [651] = { + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_package] = ACTIONS(2612), + [anon_sym_import] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_using] = ACTIONS(2612), + [anon_sym_throw] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_cast] = ACTIONS(2612), + [anon_sym_DOLLARtype] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_untyped] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_this] = ACTIONS(2612), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_AT_COLON] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2612), + [anon_sym_catch] = ACTIONS(2612), + [anon_sym_else] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_new] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_PERCENT] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_LT_LT] = ACTIONS(2614), + [anon_sym_GT_GT] = ACTIONS(2612), + [anon_sym_GT_GT_GT] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(2614), + [anon_sym_PIPE_PIPE] = ACTIONS(2614), + [anon_sym_EQ_EQ] = ACTIONS(2614), + [anon_sym_BANG_EQ] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_LT_EQ] = ACTIONS(2614), + [anon_sym_GT] = ACTIONS(2612), + [anon_sym_GT_EQ] = ACTIONS(2614), + [anon_sym_EQ_GT] = ACTIONS(2614), + [anon_sym_QMARK_QMARK] = ACTIONS(2614), + [anon_sym_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), + [anon_sym_null] = ACTIONS(2612), + [anon_sym_macro] = ACTIONS(2612), + [anon_sym_abstract] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_inline] = ACTIONS(2612), + [anon_sym_overload] = ACTIONS(2612), + [anon_sym_override] = ACTIONS(2612), + [anon_sym_final] = ACTIONS(2612), + [anon_sym_class] = ACTIONS(2612), + [anon_sym_interface] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_typedef] = ACTIONS(2612), + [anon_sym_function] = ACTIONS(2612), + [anon_sym_var] = ACTIONS(2612), + [aux_sym_integer_token1] = ACTIONS(2612), + [aux_sym_integer_token2] = ACTIONS(2614), + [aux_sym_float_token1] = ACTIONS(2612), + [aux_sym_float_token2] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [aux_sym_string_token1] = ACTIONS(2614), + [aux_sym_string_token3] = ACTIONS(2614), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [652] = { + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_package] = ACTIONS(2720), + [anon_sym_import] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2720), + [anon_sym_throw] = ACTIONS(2720), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_cast] = ACTIONS(2720), + [anon_sym_DOLLARtype] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_untyped] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_this] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_AT_COLON] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2720), + [anon_sym_catch] = ACTIONS(2720), + [anon_sym_else] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2720), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_PERCENT] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_LT_LT] = ACTIONS(2722), + [anon_sym_GT_GT] = ACTIONS(2720), + [anon_sym_GT_GT_GT] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_CARET] = ACTIONS(2722), + [anon_sym_AMP_AMP] = ACTIONS(2722), + [anon_sym_PIPE_PIPE] = ACTIONS(2722), + [anon_sym_EQ_EQ] = ACTIONS(2722), + [anon_sym_BANG_EQ] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_LT_EQ] = ACTIONS(2722), + [anon_sym_GT] = ACTIONS(2720), + [anon_sym_GT_EQ] = ACTIONS(2722), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_QMARK_QMARK] = ACTIONS(2722), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), + [anon_sym_null] = ACTIONS(2720), + [anon_sym_macro] = ACTIONS(2720), + [anon_sym_abstract] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym_inline] = ACTIONS(2720), + [anon_sym_overload] = ACTIONS(2720), + [anon_sym_override] = ACTIONS(2720), + [anon_sym_final] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(2720), + [anon_sym_interface] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_typedef] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2720), + [anon_sym_var] = ACTIONS(2720), + [aux_sym_integer_token1] = ACTIONS(2720), + [aux_sym_integer_token2] = ACTIONS(2722), + [aux_sym_float_token1] = ACTIONS(2720), + [aux_sym_float_token2] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2720), + [anon_sym_false] = ACTIONS(2720), + [aux_sym_string_token1] = ACTIONS(2722), + [aux_sym_string_token3] = ACTIONS(2722), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [653] = { + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2626), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_package] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_using] = ACTIONS(2626), + [anon_sym_throw] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_cast] = ACTIONS(2626), + [anon_sym_DOLLARtype] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_untyped] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2626), + [anon_sym_continue] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_this] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2626), + [anon_sym_AT_COLON] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_catch] = ACTIONS(2626), + [anon_sym_else] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_do] = ACTIONS(2626), + [anon_sym_new] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_SLASH] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2626), + [anon_sym_LT_LT] = ACTIONS(2628), + [anon_sym_GT_GT] = ACTIONS(2626), + [anon_sym_GT_GT_GT] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_PIPE] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_EQ_EQ] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2626), + [anon_sym_LT_EQ] = ACTIONS(2628), + [anon_sym_GT] = ACTIONS(2626), + [anon_sym_GT_EQ] = ACTIONS(2628), + [anon_sym_EQ_GT] = ACTIONS(2628), + [anon_sym_QMARK_QMARK] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2626), + [anon_sym_macro] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2626), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_extern] = ACTIONS(2626), + [anon_sym_inline] = ACTIONS(2626), + [anon_sym_overload] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_final] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_interface] = ACTIONS(2626), + [anon_sym_enum] = ACTIONS(2626), + [anon_sym_typedef] = ACTIONS(2626), + [anon_sym_function] = ACTIONS(2626), + [anon_sym_var] = ACTIONS(2626), + [aux_sym_integer_token1] = ACTIONS(2626), + [aux_sym_integer_token2] = ACTIONS(2628), + [aux_sym_float_token1] = ACTIONS(2626), + [aux_sym_float_token2] = ACTIONS(2628), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [aux_sym_string_token1] = ACTIONS(2628), + [aux_sym_string_token3] = ACTIONS(2628), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [654] = { + [ts_builtin_sym_end] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2804), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_package] = ACTIONS(2804), + [anon_sym_import] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_cast] = ACTIONS(2804), + [anon_sym_DOLLARtype] = ACTIONS(2806), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_untyped] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_this] = ACTIONS(2804), + [anon_sym_AT] = ACTIONS(2804), + [anon_sym_AT_COLON] = ACTIONS(2806), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_catch] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2806), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_LT_LT] = ACTIONS(2806), + [anon_sym_GT_GT] = ACTIONS(2804), + [anon_sym_GT_GT_GT] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_PIPE] = ACTIONS(2804), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_PIPE_PIPE] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2806), + [anon_sym_BANG_EQ] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2804), + [anon_sym_LT_EQ] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2804), + [anon_sym_GT_EQ] = ACTIONS(2806), + [anon_sym_EQ_GT] = ACTIONS(2806), + [anon_sym_QMARK_QMARK] = ACTIONS(2806), + [anon_sym_EQ] = ACTIONS(2804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), + [anon_sym_null] = ACTIONS(2804), + [anon_sym_macro] = ACTIONS(2804), + [anon_sym_abstract] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym_inline] = ACTIONS(2804), + [anon_sym_overload] = ACTIONS(2804), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_final] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_interface] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_function] = ACTIONS(2804), + [anon_sym_var] = ACTIONS(2804), + [aux_sym_integer_token1] = ACTIONS(2804), + [aux_sym_integer_token2] = ACTIONS(2806), + [aux_sym_float_token1] = ACTIONS(2804), + [aux_sym_float_token2] = ACTIONS(2806), + [anon_sym_true] = ACTIONS(2804), + [anon_sym_false] = ACTIONS(2804), + [aux_sym_string_token1] = ACTIONS(2806), + [aux_sym_string_token3] = ACTIONS(2806), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [655] = { + [ts_builtin_sym_end] = ACTIONS(2887), + [sym_identifier] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(2887), + [anon_sym_package] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_cast] = ACTIONS(2884), + [anon_sym_DOLLARtype] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_untyped] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_this] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_AT_COLON] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_catch] = ACTIONS(2884), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2884), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [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(2884), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2884), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_EQ_GT] = ACTIONS(2887), + [anon_sym_QMARK_QMARK] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_macro] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym_inline] = ACTIONS(2884), + [anon_sym_overload] = ACTIONS(2884), + [anon_sym_override] = ACTIONS(2884), + [anon_sym_final] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_typedef] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [aux_sym_integer_token1] = ACTIONS(2884), + [aux_sym_integer_token2] = ACTIONS(2887), + [aux_sym_float_token1] = ACTIONS(2884), + [aux_sym_float_token2] = ACTIONS(2887), + [anon_sym_true] = ACTIONS(2884), + [anon_sym_false] = ACTIONS(2884), + [aux_sym_string_token1] = ACTIONS(2887), + [aux_sym_string_token3] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [656] = { + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2892), + [anon_sym_package] = ACTIONS(2890), + [anon_sym_import] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_using] = ACTIONS(2890), + [anon_sym_throw] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_switch] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_cast] = ACTIONS(2890), + [anon_sym_DOLLARtype] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_untyped] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_this] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_AT_COLON] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2890), + [anon_sym_catch] = ACTIONS(2890), + [anon_sym_else] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_while] = ACTIONS(2890), + [anon_sym_do] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2892), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2892), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2892), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2892), + [anon_sym_QMARK_QMARK] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2892), + [anon_sym_null] = ACTIONS(2890), + [anon_sym_macro] = ACTIONS(2890), + [anon_sym_abstract] = ACTIONS(2890), + [anon_sym_static] = ACTIONS(2890), + [anon_sym_public] = ACTIONS(2890), + [anon_sym_private] = ACTIONS(2890), + [anon_sym_extern] = ACTIONS(2890), + [anon_sym_inline] = ACTIONS(2890), + [anon_sym_overload] = ACTIONS(2890), + [anon_sym_override] = ACTIONS(2890), + [anon_sym_final] = ACTIONS(2890), + [anon_sym_class] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_typedef] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2890), + [anon_sym_var] = ACTIONS(2890), + [aux_sym_integer_token1] = ACTIONS(2890), + [aux_sym_integer_token2] = ACTIONS(2892), + [aux_sym_float_token1] = ACTIONS(2890), + [aux_sym_float_token2] = ACTIONS(2892), + [anon_sym_true] = ACTIONS(2890), + [anon_sym_false] = ACTIONS(2890), + [aux_sym_string_token1] = ACTIONS(2892), + [aux_sym_string_token3] = ACTIONS(2892), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [657] = { + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2808), + [anon_sym_POUND] = ACTIONS(2810), + [anon_sym_package] = ACTIONS(2808), + [anon_sym_import] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_cast] = ACTIONS(2808), + [anon_sym_DOLLARtype] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_untyped] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_this] = ACTIONS(2808), + [anon_sym_AT] = ACTIONS(2808), + [anon_sym_AT_COLON] = ACTIONS(2810), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_catch] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_PERCENT] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_LT_LT] = ACTIONS(2810), + [anon_sym_GT_GT] = ACTIONS(2808), + [anon_sym_GT_GT_GT] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_PIPE] = ACTIONS(2808), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2808), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT] = ACTIONS(2808), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_EQ_GT] = ACTIONS(2810), + [anon_sym_QMARK_QMARK] = ACTIONS(2810), + [anon_sym_EQ] = ACTIONS(2808), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2810), + [anon_sym_null] = ACTIONS(2808), + [anon_sym_macro] = ACTIONS(2808), + [anon_sym_abstract] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_public] = ACTIONS(2808), + [anon_sym_private] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym_inline] = ACTIONS(2808), + [anon_sym_overload] = ACTIONS(2808), + [anon_sym_override] = ACTIONS(2808), + [anon_sym_final] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_interface] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_typedef] = ACTIONS(2808), + [anon_sym_function] = ACTIONS(2808), + [anon_sym_var] = ACTIONS(2808), + [aux_sym_integer_token1] = ACTIONS(2808), + [aux_sym_integer_token2] = ACTIONS(2810), + [aux_sym_float_token1] = ACTIONS(2808), + [aux_sym_float_token2] = ACTIONS(2810), + [anon_sym_true] = ACTIONS(2808), + [anon_sym_false] = ACTIONS(2808), + [aux_sym_string_token1] = ACTIONS(2810), + [aux_sym_string_token3] = ACTIONS(2810), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [658] = { + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2896), + [anon_sym_package] = ACTIONS(2894), + [anon_sym_import] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_using] = ACTIONS(2894), + [anon_sym_throw] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_switch] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_cast] = ACTIONS(2894), + [anon_sym_DOLLARtype] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_untyped] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_this] = ACTIONS(2894), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_AT_COLON] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2894), + [anon_sym_catch] = ACTIONS(2894), + [anon_sym_else] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_while] = ACTIONS(2894), + [anon_sym_do] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2896), + [anon_sym_DASH_DASH] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_LT_LT] = ACTIONS(2896), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_EQ_EQ] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2896), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_GT_EQ] = ACTIONS(2896), + [anon_sym_EQ_GT] = ACTIONS(2896), + [anon_sym_QMARK_QMARK] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2896), + [anon_sym_null] = ACTIONS(2894), + [anon_sym_macro] = ACTIONS(2894), + [anon_sym_abstract] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(2894), + [anon_sym_public] = ACTIONS(2894), + [anon_sym_private] = ACTIONS(2894), + [anon_sym_extern] = ACTIONS(2894), + [anon_sym_inline] = ACTIONS(2894), + [anon_sym_overload] = ACTIONS(2894), + [anon_sym_override] = ACTIONS(2894), + [anon_sym_final] = ACTIONS(2894), + [anon_sym_class] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_typedef] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2894), + [anon_sym_var] = ACTIONS(2894), + [aux_sym_integer_token1] = ACTIONS(2894), + [aux_sym_integer_token2] = ACTIONS(2896), + [aux_sym_float_token1] = ACTIONS(2894), + [aux_sym_float_token2] = ACTIONS(2896), + [anon_sym_true] = ACTIONS(2894), + [anon_sym_false] = ACTIONS(2894), + [aux_sym_string_token1] = ACTIONS(2896), + [aux_sym_string_token3] = ACTIONS(2896), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [659] = { + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_package] = ACTIONS(2898), + [anon_sym_import] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2898), + [anon_sym_throw] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_cast] = ACTIONS(2898), + [anon_sym_DOLLARtype] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_untyped] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_this] = ACTIONS(2898), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_AT_COLON] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2898), + [anon_sym_catch] = ACTIONS(2898), + [anon_sym_else] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_while] = ACTIONS(2898), + [anon_sym_do] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_LT_LT] = ACTIONS(2900), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_CARET] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2900), + [anon_sym_EQ_GT] = ACTIONS(2900), + [anon_sym_QMARK_QMARK] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2898), + [anon_sym_macro] = ACTIONS(2898), + [anon_sym_abstract] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2898), + [anon_sym_public] = ACTIONS(2898), + [anon_sym_private] = ACTIONS(2898), + [anon_sym_extern] = ACTIONS(2898), + [anon_sym_inline] = ACTIONS(2898), + [anon_sym_overload] = ACTIONS(2898), + [anon_sym_override] = ACTIONS(2898), + [anon_sym_final] = ACTIONS(2898), + [anon_sym_class] = ACTIONS(2898), + [anon_sym_interface] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_typedef] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2898), + [anon_sym_var] = ACTIONS(2898), + [aux_sym_integer_token1] = ACTIONS(2898), + [aux_sym_integer_token2] = ACTIONS(2900), + [aux_sym_float_token1] = ACTIONS(2898), + [aux_sym_float_token2] = ACTIONS(2900), + [anon_sym_true] = ACTIONS(2898), + [anon_sym_false] = ACTIONS(2898), + [aux_sym_string_token1] = ACTIONS(2900), + [aux_sym_string_token3] = ACTIONS(2900), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [660] = { + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2904), + [anon_sym_package] = ACTIONS(2902), + [anon_sym_import] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(2902), + [anon_sym_throw] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_cast] = ACTIONS(2902), + [anon_sym_DOLLARtype] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_untyped] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_this] = ACTIONS(2902), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_AT_COLON] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_catch] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2904), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_GT_EQ] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(2904), + [anon_sym_QMARK_QMARK] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(2902), + [anon_sym_macro] = ACTIONS(2902), + [anon_sym_abstract] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_public] = ACTIONS(2902), + [anon_sym_private] = ACTIONS(2902), + [anon_sym_extern] = ACTIONS(2902), + [anon_sym_inline] = ACTIONS(2902), + [anon_sym_overload] = ACTIONS(2902), + [anon_sym_override] = ACTIONS(2902), + [anon_sym_final] = ACTIONS(2902), + [anon_sym_class] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_var] = ACTIONS(2902), + [aux_sym_integer_token1] = ACTIONS(2902), + [aux_sym_integer_token2] = ACTIONS(2904), + [aux_sym_float_token1] = ACTIONS(2902), + [aux_sym_float_token2] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2902), + [anon_sym_false] = ACTIONS(2902), + [aux_sym_string_token1] = ACTIONS(2904), + [aux_sym_string_token3] = ACTIONS(2904), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [661] = { + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_package] = ACTIONS(2812), + [anon_sym_import] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_cast] = ACTIONS(2812), + [anon_sym_DOLLARtype] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_untyped] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_this] = ACTIONS(2812), + [anon_sym_AT] = ACTIONS(2812), + [anon_sym_AT_COLON] = ACTIONS(2814), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_catch] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_PERCENT] = ACTIONS(2814), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2814), + [anon_sym_GT_GT] = ACTIONS(2812), + [anon_sym_GT_GT_GT] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_PIPE_PIPE] = ACTIONS(2814), + [anon_sym_EQ_EQ] = ACTIONS(2814), + [anon_sym_BANG_EQ] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_LT_EQ] = ACTIONS(2814), + [anon_sym_GT] = ACTIONS(2812), + [anon_sym_GT_EQ] = ACTIONS(2814), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_QMARK_QMARK] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2814), + [anon_sym_null] = ACTIONS(2812), + [anon_sym_macro] = ACTIONS(2812), + [anon_sym_abstract] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_public] = ACTIONS(2812), + [anon_sym_private] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym_inline] = ACTIONS(2812), + [anon_sym_overload] = ACTIONS(2812), + [anon_sym_override] = ACTIONS(2812), + [anon_sym_final] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_interface] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2812), + [anon_sym_function] = ACTIONS(2812), + [anon_sym_var] = ACTIONS(2812), + [aux_sym_integer_token1] = ACTIONS(2812), + [aux_sym_integer_token2] = ACTIONS(2814), + [aux_sym_float_token1] = ACTIONS(2812), + [aux_sym_float_token2] = ACTIONS(2814), + [anon_sym_true] = ACTIONS(2812), + [anon_sym_false] = ACTIONS(2812), + [aux_sym_string_token1] = ACTIONS(2814), + [aux_sym_string_token3] = ACTIONS(2814), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [662] = { + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2908), + [anon_sym_package] = ACTIONS(2906), + [anon_sym_import] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2908), + [anon_sym_using] = ACTIONS(2906), + [anon_sym_throw] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_cast] = ACTIONS(2906), + [anon_sym_DOLLARtype] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_untyped] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_this] = ACTIONS(2906), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_AT_COLON] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_catch] = ACTIONS(2906), + [anon_sym_else] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_LT_LT] = ACTIONS(2908), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_EQ_EQ] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_LT_EQ] = ACTIONS(2908), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_GT_EQ] = ACTIONS(2908), + [anon_sym_EQ_GT] = ACTIONS(2908), + [anon_sym_QMARK_QMARK] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2906), + [anon_sym_macro] = ACTIONS(2906), + [anon_sym_abstract] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_public] = ACTIONS(2906), + [anon_sym_private] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_inline] = ACTIONS(2906), + [anon_sym_overload] = ACTIONS(2906), + [anon_sym_override] = ACTIONS(2906), + [anon_sym_final] = ACTIONS(2906), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_typedef] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_var] = ACTIONS(2906), + [aux_sym_integer_token1] = ACTIONS(2906), + [aux_sym_integer_token2] = ACTIONS(2908), + [aux_sym_float_token1] = ACTIONS(2906), + [aux_sym_float_token2] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(2908), + [aux_sym_string_token3] = ACTIONS(2908), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [663] = { + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2912), + [anon_sym_package] = ACTIONS(2910), + [anon_sym_import] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_using] = ACTIONS(2910), + [anon_sym_throw] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_cast] = ACTIONS(2910), + [anon_sym_DOLLARtype] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_untyped] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_this] = ACTIONS(2910), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_AT_COLON] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_catch] = ACTIONS(2910), + [anon_sym_else] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_LT_LT] = ACTIONS(2912), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2912), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_EQ_EQ] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_LT_EQ] = ACTIONS(2912), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_GT_EQ] = ACTIONS(2912), + [anon_sym_EQ_GT] = ACTIONS(2912), + [anon_sym_QMARK_QMARK] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2912), + [anon_sym_null] = ACTIONS(2910), + [anon_sym_macro] = ACTIONS(2910), + [anon_sym_abstract] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2910), + [anon_sym_public] = ACTIONS(2910), + [anon_sym_private] = ACTIONS(2910), + [anon_sym_extern] = ACTIONS(2910), + [anon_sym_inline] = ACTIONS(2910), + [anon_sym_overload] = ACTIONS(2910), + [anon_sym_override] = ACTIONS(2910), + [anon_sym_final] = ACTIONS(2910), + [anon_sym_class] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_var] = ACTIONS(2910), + [aux_sym_integer_token1] = ACTIONS(2910), + [aux_sym_integer_token2] = ACTIONS(2912), + [aux_sym_float_token1] = ACTIONS(2910), + [aux_sym_float_token2] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2910), + [anon_sym_false] = ACTIONS(2910), + [aux_sym_string_token1] = ACTIONS(2912), + [aux_sym_string_token3] = ACTIONS(2912), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [664] = { + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2816), + [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_package] = ACTIONS(2816), + [anon_sym_import] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_cast] = ACTIONS(2816), + [anon_sym_DOLLARtype] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_untyped] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_this] = ACTIONS(2816), + [anon_sym_AT] = ACTIONS(2816), + [anon_sym_AT_COLON] = ACTIONS(2818), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_catch] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_LT_LT] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2816), + [anon_sym_GT_GT_GT] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2816), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2816), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2816), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_EQ_GT] = ACTIONS(2818), + [anon_sym_QMARK_QMARK] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2818), + [anon_sym_null] = ACTIONS(2816), + [anon_sym_macro] = ACTIONS(2816), + [anon_sym_abstract] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_public] = ACTIONS(2816), + [anon_sym_private] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym_inline] = ACTIONS(2816), + [anon_sym_overload] = ACTIONS(2816), + [anon_sym_override] = ACTIONS(2816), + [anon_sym_final] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_interface] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2816), + [anon_sym_function] = ACTIONS(2816), + [anon_sym_var] = ACTIONS(2816), + [aux_sym_integer_token1] = ACTIONS(2816), + [aux_sym_integer_token2] = ACTIONS(2818), + [aux_sym_float_token1] = ACTIONS(2816), + [aux_sym_float_token2] = ACTIONS(2818), + [anon_sym_true] = ACTIONS(2816), + [anon_sym_false] = ACTIONS(2816), + [aux_sym_string_token1] = ACTIONS(2818), + [aux_sym_string_token3] = ACTIONS(2818), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [665] = { + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2916), + [anon_sym_package] = ACTIONS(2914), + [anon_sym_import] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2914), + [anon_sym_throw] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_cast] = ACTIONS(2914), + [anon_sym_DOLLARtype] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_untyped] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_this] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_AT_COLON] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2914), + [anon_sym_catch] = ACTIONS(2914), + [anon_sym_else] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_while] = ACTIONS(2914), + [anon_sym_do] = ACTIONS(2914), + [anon_sym_new] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2916), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2916), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_EQ_EQ] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2916), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2916), + [anon_sym_EQ_GT] = ACTIONS(2916), + [anon_sym_QMARK_QMARK] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2916), + [anon_sym_null] = ACTIONS(2914), + [anon_sym_macro] = ACTIONS(2914), + [anon_sym_abstract] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2914), + [anon_sym_public] = ACTIONS(2914), + [anon_sym_private] = ACTIONS(2914), + [anon_sym_extern] = ACTIONS(2914), + [anon_sym_inline] = ACTIONS(2914), + [anon_sym_overload] = ACTIONS(2914), + [anon_sym_override] = ACTIONS(2914), + [anon_sym_final] = ACTIONS(2914), + [anon_sym_class] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_typedef] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2914), + [anon_sym_var] = ACTIONS(2914), + [aux_sym_integer_token1] = ACTIONS(2914), + [aux_sym_integer_token2] = ACTIONS(2916), + [aux_sym_float_token1] = ACTIONS(2914), + [aux_sym_float_token2] = ACTIONS(2916), + [anon_sym_true] = ACTIONS(2914), + [anon_sym_false] = ACTIONS(2914), + [aux_sym_string_token1] = ACTIONS(2916), + [aux_sym_string_token3] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [666] = { + [ts_builtin_sym_end] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2920), + [anon_sym_package] = ACTIONS(2918), + [anon_sym_import] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2918), + [anon_sym_throw] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_cast] = ACTIONS(2918), + [anon_sym_DOLLARtype] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_untyped] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_this] = ACTIONS(2918), + [anon_sym_AT] = ACTIONS(2918), + [anon_sym_AT_COLON] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2918), + [anon_sym_catch] = ACTIONS(2918), + [anon_sym_else] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_while] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2920), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_EQ_EQ] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2920), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2920), + [anon_sym_EQ_GT] = ACTIONS(2920), + [anon_sym_QMARK_QMARK] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), + [anon_sym_null] = ACTIONS(2918), + [anon_sym_macro] = ACTIONS(2918), + [anon_sym_abstract] = ACTIONS(2918), + [anon_sym_static] = ACTIONS(2918), + [anon_sym_public] = ACTIONS(2918), + [anon_sym_private] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2918), + [anon_sym_inline] = ACTIONS(2918), + [anon_sym_overload] = ACTIONS(2918), + [anon_sym_override] = ACTIONS(2918), + [anon_sym_final] = ACTIONS(2918), + [anon_sym_class] = ACTIONS(2918), + [anon_sym_interface] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2918), + [anon_sym_var] = ACTIONS(2918), + [aux_sym_integer_token1] = ACTIONS(2918), + [aux_sym_integer_token2] = ACTIONS(2920), + [aux_sym_float_token1] = ACTIONS(2918), + [aux_sym_float_token2] = ACTIONS(2920), + [anon_sym_true] = ACTIONS(2918), + [anon_sym_false] = ACTIONS(2918), + [aux_sym_string_token1] = ACTIONS(2920), + [aux_sym_string_token3] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [667] = { + [ts_builtin_sym_end] = ACTIONS(2924), + [sym_identifier] = ACTIONS(2922), + [anon_sym_POUND] = ACTIONS(2924), + [anon_sym_package] = ACTIONS(2922), + [anon_sym_import] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_using] = ACTIONS(2922), + [anon_sym_throw] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_cast] = ACTIONS(2922), + [anon_sym_DOLLARtype] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_untyped] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_this] = ACTIONS(2922), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_AT_COLON] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2922), + [anon_sym_catch] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2924), + [anon_sym_PERCENT] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2924), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_GT_GT_GT] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_CARET] = ACTIONS(2924), + [anon_sym_AMP_AMP] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_EQ_EQ] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_LT_EQ] = ACTIONS(2924), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_GT_EQ] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(2924), + [anon_sym_QMARK_QMARK] = ACTIONS(2924), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), + [anon_sym_null] = ACTIONS(2922), + [anon_sym_macro] = ACTIONS(2922), + [anon_sym_abstract] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_public] = ACTIONS(2922), + [anon_sym_private] = ACTIONS(2922), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym_inline] = ACTIONS(2922), + [anon_sym_overload] = ACTIONS(2922), + [anon_sym_override] = ACTIONS(2922), + [anon_sym_final] = ACTIONS(2922), + [anon_sym_class] = ACTIONS(2922), + [anon_sym_interface] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2922), + [anon_sym_var] = ACTIONS(2922), + [aux_sym_integer_token1] = ACTIONS(2922), + [aux_sym_integer_token2] = ACTIONS(2924), + [aux_sym_float_token1] = ACTIONS(2922), + [aux_sym_float_token2] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2922), + [anon_sym_false] = ACTIONS(2922), + [aux_sym_string_token1] = ACTIONS(2924), + [aux_sym_string_token3] = ACTIONS(2924), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [668] = { + [ts_builtin_sym_end] = ACTIONS(2928), + [sym_identifier] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2928), + [anon_sym_package] = ACTIONS(2926), + [anon_sym_import] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2926), + [anon_sym_throw] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2928), + [anon_sym_cast] = ACTIONS(2926), + [anon_sym_DOLLARtype] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_untyped] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_this] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_AT_COLON] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2926), + [anon_sym_catch] = ACTIONS(2926), + [anon_sym_else] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_while] = ACTIONS(2926), + [anon_sym_do] = ACTIONS(2926), + [anon_sym_new] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2928), + [anon_sym_PERCENT] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_LT_LT] = ACTIONS(2928), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [anon_sym_EQ_EQ] = ACTIONS(2928), + [anon_sym_BANG_EQ] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(2928), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_GT_EQ] = ACTIONS(2928), + [anon_sym_EQ_GT] = ACTIONS(2928), + [anon_sym_QMARK_QMARK] = ACTIONS(2928), + [anon_sym_EQ] = ACTIONS(2926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2926), + [anon_sym_macro] = ACTIONS(2926), + [anon_sym_abstract] = ACTIONS(2926), + [anon_sym_static] = ACTIONS(2926), + [anon_sym_public] = ACTIONS(2926), + [anon_sym_private] = ACTIONS(2926), + [anon_sym_extern] = ACTIONS(2926), + [anon_sym_inline] = ACTIONS(2926), + [anon_sym_overload] = ACTIONS(2926), + [anon_sym_override] = ACTIONS(2926), + [anon_sym_final] = ACTIONS(2926), + [anon_sym_class] = ACTIONS(2926), + [anon_sym_interface] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_typedef] = ACTIONS(2926), + [anon_sym_function] = ACTIONS(2926), + [anon_sym_var] = ACTIONS(2926), + [aux_sym_integer_token1] = ACTIONS(2926), + [aux_sym_integer_token2] = ACTIONS(2928), + [aux_sym_float_token1] = ACTIONS(2926), + [aux_sym_float_token2] = ACTIONS(2928), + [anon_sym_true] = ACTIONS(2926), + [anon_sym_false] = ACTIONS(2926), + [aux_sym_string_token1] = ACTIONS(2928), + [aux_sym_string_token3] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [669] = { + [ts_builtin_sym_end] = ACTIONS(2932), + [sym_identifier] = ACTIONS(2930), + [anon_sym_POUND] = ACTIONS(2932), + [anon_sym_package] = ACTIONS(2930), + [anon_sym_import] = ACTIONS(2930), + [anon_sym_STAR] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2930), + [anon_sym_throw] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_cast] = ACTIONS(2930), + [anon_sym_DOLLARtype] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_untyped] = ACTIONS(2930), + [anon_sym_break] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_this] = ACTIONS(2930), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_AT_COLON] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_catch] = ACTIONS(2930), + [anon_sym_else] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [anon_sym_do] = ACTIONS(2930), + [anon_sym_new] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_PERCENT] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_GT_GT_GT] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2930), + [anon_sym_CARET] = ACTIONS(2932), + [anon_sym_AMP_AMP] = ACTIONS(2932), + [anon_sym_PIPE_PIPE] = ACTIONS(2932), + [anon_sym_EQ_EQ] = ACTIONS(2932), + [anon_sym_BANG_EQ] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2932), + [anon_sym_EQ_GT] = ACTIONS(2932), + [anon_sym_QMARK_QMARK] = ACTIONS(2932), + [anon_sym_EQ] = ACTIONS(2930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2930), + [anon_sym_macro] = ACTIONS(2930), + [anon_sym_abstract] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2930), + [anon_sym_public] = ACTIONS(2930), + [anon_sym_private] = ACTIONS(2930), + [anon_sym_extern] = ACTIONS(2930), + [anon_sym_inline] = ACTIONS(2930), + [anon_sym_overload] = ACTIONS(2930), + [anon_sym_override] = ACTIONS(2930), + [anon_sym_final] = ACTIONS(2930), + [anon_sym_class] = ACTIONS(2930), + [anon_sym_interface] = ACTIONS(2930), + [anon_sym_enum] = ACTIONS(2930), + [anon_sym_typedef] = ACTIONS(2930), + [anon_sym_function] = ACTIONS(2930), + [anon_sym_var] = ACTIONS(2930), + [aux_sym_integer_token1] = ACTIONS(2930), + [aux_sym_integer_token2] = ACTIONS(2932), + [aux_sym_float_token1] = ACTIONS(2930), + [aux_sym_float_token2] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2930), + [anon_sym_false] = ACTIONS(2930), + [aux_sym_string_token1] = ACTIONS(2932), + [aux_sym_string_token3] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [670] = { + [sym_else_clause] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [671] = { + [ts_builtin_sym_end] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(2936), + [anon_sym_package] = ACTIONS(2934), + [anon_sym_import] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2934), + [anon_sym_throw] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_cast] = ACTIONS(2934), + [anon_sym_DOLLARtype] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_untyped] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_this] = ACTIONS(2934), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_AT_COLON] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_catch] = ACTIONS(2934), + [anon_sym_else] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2936), + [anon_sym_PERCENT] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_LT_LT] = ACTIONS(2936), + [anon_sym_GT_GT] = ACTIONS(2934), + [anon_sym_GT_GT_GT] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_EQ_EQ] = ACTIONS(2936), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_LT_EQ] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_GT_EQ] = ACTIONS(2936), + [anon_sym_EQ_GT] = ACTIONS(2936), + [anon_sym_QMARK_QMARK] = ACTIONS(2936), + [anon_sym_EQ] = ACTIONS(2934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_macro] = ACTIONS(2934), + [anon_sym_abstract] = ACTIONS(2934), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2934), + [anon_sym_inline] = ACTIONS(2934), + [anon_sym_overload] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_final] = ACTIONS(2934), + [anon_sym_class] = ACTIONS(2934), + [anon_sym_interface] = ACTIONS(2934), + [anon_sym_enum] = ACTIONS(2934), + [anon_sym_typedef] = ACTIONS(2934), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_var] = ACTIONS(2934), + [aux_sym_integer_token1] = ACTIONS(2934), + [aux_sym_integer_token2] = ACTIONS(2936), + [aux_sym_float_token1] = ACTIONS(2934), + [aux_sym_float_token2] = ACTIONS(2936), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [aux_sym_string_token1] = ACTIONS(2936), + [aux_sym_string_token3] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [672] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2822), + [anon_sym_package] = ACTIONS(2820), + [anon_sym_import] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_cast] = ACTIONS(2820), + [anon_sym_DOLLARtype] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_untyped] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_this] = ACTIONS(2820), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_AT_COLON] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_catch] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_PERCENT] = ACTIONS(2822), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_LT_LT] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_GT_GT_GT] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_PIPE_PIPE] = ACTIONS(2822), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_LT_EQ] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2822), + [anon_sym_EQ_GT] = ACTIONS(2822), + [anon_sym_QMARK_QMARK] = ACTIONS(2822), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2822), + [anon_sym_null] = ACTIONS(2820), + [anon_sym_macro] = ACTIONS(2820), + [anon_sym_abstract] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_public] = ACTIONS(2820), + [anon_sym_private] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_inline] = ACTIONS(2820), + [anon_sym_overload] = ACTIONS(2820), + [anon_sym_override] = ACTIONS(2820), + [anon_sym_final] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2820), + [anon_sym_function] = ACTIONS(2820), + [anon_sym_var] = ACTIONS(2820), + [aux_sym_integer_token1] = ACTIONS(2820), + [aux_sym_integer_token2] = ACTIONS(2822), + [aux_sym_float_token1] = ACTIONS(2820), + [aux_sym_float_token2] = ACTIONS(2822), + [anon_sym_true] = ACTIONS(2820), + [anon_sym_false] = ACTIONS(2820), + [aux_sym_string_token1] = ACTIONS(2822), + [aux_sym_string_token3] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [673] = { + [ts_builtin_sym_end] = ACTIONS(2940), + [sym_identifier] = ACTIONS(2938), + [anon_sym_POUND] = ACTIONS(2940), + [anon_sym_package] = ACTIONS(2938), + [anon_sym_import] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2938), + [anon_sym_throw] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_cast] = ACTIONS(2938), + [anon_sym_DOLLARtype] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_untyped] = ACTIONS(2938), + [anon_sym_break] = ACTIONS(2938), + [anon_sym_continue] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_this] = ACTIONS(2938), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_AT_COLON] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_catch] = ACTIONS(2938), + [anon_sym_else] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2940), + [anon_sym_PERCENT] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_LT_LT] = ACTIONS(2940), + [anon_sym_GT_GT] = ACTIONS(2938), + [anon_sym_GT_GT_GT] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(2938), + [anon_sym_CARET] = ACTIONS(2940), + [anon_sym_AMP_AMP] = ACTIONS(2940), + [anon_sym_PIPE_PIPE] = ACTIONS(2940), + [anon_sym_EQ_EQ] = ACTIONS(2940), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_LT_EQ] = ACTIONS(2940), + [anon_sym_GT] = ACTIONS(2938), + [anon_sym_GT_EQ] = ACTIONS(2940), + [anon_sym_EQ_GT] = ACTIONS(2940), + [anon_sym_QMARK_QMARK] = ACTIONS(2940), + [anon_sym_EQ] = ACTIONS(2938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_macro] = ACTIONS(2938), + [anon_sym_abstract] = ACTIONS(2938), + [anon_sym_static] = ACTIONS(2938), + [anon_sym_public] = ACTIONS(2938), + [anon_sym_private] = ACTIONS(2938), + [anon_sym_extern] = ACTIONS(2938), + [anon_sym_inline] = ACTIONS(2938), + [anon_sym_overload] = ACTIONS(2938), + [anon_sym_override] = ACTIONS(2938), + [anon_sym_final] = ACTIONS(2938), + [anon_sym_class] = ACTIONS(2938), + [anon_sym_interface] = ACTIONS(2938), + [anon_sym_enum] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2938), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_var] = ACTIONS(2938), + [aux_sym_integer_token1] = ACTIONS(2938), + [aux_sym_integer_token2] = ACTIONS(2940), + [aux_sym_float_token1] = ACTIONS(2938), + [aux_sym_float_token2] = ACTIONS(2940), + [anon_sym_true] = ACTIONS(2938), + [anon_sym_false] = ACTIONS(2938), + [aux_sym_string_token1] = ACTIONS(2940), + [aux_sym_string_token3] = ACTIONS(2940), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [674] = { + [ts_builtin_sym_end] = ACTIONS(2944), + [sym_identifier] = ACTIONS(2942), + [anon_sym_POUND] = ACTIONS(2944), + [anon_sym_package] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_cast] = ACTIONS(2942), + [anon_sym_DOLLARtype] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_untyped] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_this] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2942), + [anon_sym_AT_COLON] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_catch] = ACTIONS(2942), + [anon_sym_else] = ACTIONS(2942), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_LT_LT] = ACTIONS(2944), + [anon_sym_GT_GT] = ACTIONS(2942), + [anon_sym_GT_GT_GT] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_CARET] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT] = ACTIONS(2942), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_EQ_GT] = ACTIONS(2944), + [anon_sym_QMARK_QMARK] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2944), + [anon_sym_null] = ACTIONS(2942), + [anon_sym_macro] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_extern] = ACTIONS(2942), + [anon_sym_inline] = ACTIONS(2942), + [anon_sym_overload] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_final] = ACTIONS(2942), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [aux_sym_integer_token1] = ACTIONS(2942), + [aux_sym_integer_token2] = ACTIONS(2944), + [aux_sym_float_token1] = ACTIONS(2942), + [aux_sym_float_token2] = ACTIONS(2944), + [anon_sym_true] = ACTIONS(2942), + [anon_sym_false] = ACTIONS(2942), + [aux_sym_string_token1] = ACTIONS(2944), + [aux_sym_string_token3] = ACTIONS(2944), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [675] = { + [ts_builtin_sym_end] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2946), + [anon_sym_POUND] = ACTIONS(2948), + [anon_sym_package] = ACTIONS(2946), + [anon_sym_import] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2946), + [anon_sym_throw] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_cast] = ACTIONS(2946), + [anon_sym_DOLLARtype] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2946), + [anon_sym_return] = ACTIONS(2946), + [anon_sym_untyped] = ACTIONS(2946), + [anon_sym_break] = ACTIONS(2946), + [anon_sym_continue] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_this] = ACTIONS(2946), + [anon_sym_AT] = ACTIONS(2946), + [anon_sym_AT_COLON] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2946), + [anon_sym_catch] = ACTIONS(2946), + [anon_sym_else] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_while] = ACTIONS(2946), + [anon_sym_do] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2946), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_LT_LT] = ACTIONS(2948), + [anon_sym_GT_GT] = ACTIONS(2946), + [anon_sym_GT_GT_GT] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_CARET] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_LT_EQ] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_EQ] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(2948), + [anon_sym_QMARK_QMARK] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2948), + [anon_sym_null] = ACTIONS(2946), + [anon_sym_macro] = ACTIONS(2946), + [anon_sym_abstract] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_extern] = ACTIONS(2946), + [anon_sym_inline] = ACTIONS(2946), + [anon_sym_overload] = ACTIONS(2946), + [anon_sym_override] = ACTIONS(2946), + [anon_sym_final] = ACTIONS(2946), + [anon_sym_class] = ACTIONS(2946), + [anon_sym_interface] = ACTIONS(2946), + [anon_sym_enum] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2946), + [anon_sym_var] = ACTIONS(2946), + [aux_sym_integer_token1] = ACTIONS(2946), + [aux_sym_integer_token2] = ACTIONS(2948), + [aux_sym_float_token1] = ACTIONS(2946), + [aux_sym_float_token2] = ACTIONS(2948), + [anon_sym_true] = ACTIONS(2946), + [anon_sym_false] = ACTIONS(2946), + [aux_sym_string_token1] = ACTIONS(2948), + [aux_sym_string_token3] = ACTIONS(2948), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [676] = { + [ts_builtin_sym_end] = ACTIONS(2952), + [sym_identifier] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(2952), + [anon_sym_package] = ACTIONS(2950), + [anon_sym_import] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_using] = ACTIONS(2950), + [anon_sym_throw] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_cast] = ACTIONS(2950), + [anon_sym_DOLLARtype] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2950), + [anon_sym_untyped] = ACTIONS(2950), + [anon_sym_break] = ACTIONS(2950), + [anon_sym_continue] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_this] = ACTIONS(2950), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_AT_COLON] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2950), + [anon_sym_catch] = ACTIONS(2950), + [anon_sym_else] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_while] = ACTIONS(2950), + [anon_sym_do] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_PERCENT] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2950), + [anon_sym_PLUS] = ACTIONS(2950), + [anon_sym_LT_LT] = ACTIONS(2952), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_GT_GT_GT] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_CARET] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_EQ_GT] = ACTIONS(2952), + [anon_sym_QMARK_QMARK] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2952), + [anon_sym_null] = ACTIONS(2950), + [anon_sym_macro] = ACTIONS(2950), + [anon_sym_abstract] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_public] = ACTIONS(2950), + [anon_sym_private] = ACTIONS(2950), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym_inline] = ACTIONS(2950), + [anon_sym_overload] = ACTIONS(2950), + [anon_sym_override] = ACTIONS(2950), + [anon_sym_final] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2950), + [anon_sym_interface] = ACTIONS(2950), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2950), + [anon_sym_var] = ACTIONS(2950), + [aux_sym_integer_token1] = ACTIONS(2950), + [aux_sym_integer_token2] = ACTIONS(2952), + [aux_sym_float_token1] = ACTIONS(2950), + [aux_sym_float_token2] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2950), + [anon_sym_false] = ACTIONS(2950), + [aux_sym_string_token1] = ACTIONS(2952), + [aux_sym_string_token3] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [677] = { + [ts_builtin_sym_end] = ACTIONS(2956), + [sym_identifier] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_package] = ACTIONS(2954), + [anon_sym_import] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_using] = ACTIONS(2954), + [anon_sym_throw] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_cast] = ACTIONS(2954), + [anon_sym_DOLLARtype] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2954), + [anon_sym_untyped] = ACTIONS(2954), + [anon_sym_break] = ACTIONS(2954), + [anon_sym_continue] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_this] = ACTIONS(2954), + [anon_sym_AT] = ACTIONS(2954), + [anon_sym_AT_COLON] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2954), + [anon_sym_catch] = ACTIONS(2954), + [anon_sym_else] = ACTIONS(2954), + [anon_sym_if] = ACTIONS(2954), + [anon_sym_while] = ACTIONS(2954), + [anon_sym_do] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2954), + [anon_sym_GT_GT_GT] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_EQ_EQ] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_LT_EQ] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2954), + [anon_sym_GT_EQ] = ACTIONS(2956), + [anon_sym_EQ_GT] = ACTIONS(2956), + [anon_sym_QMARK_QMARK] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2954), + [anon_sym_macro] = ACTIONS(2954), + [anon_sym_abstract] = ACTIONS(2954), + [anon_sym_static] = ACTIONS(2954), + [anon_sym_public] = ACTIONS(2954), + [anon_sym_private] = ACTIONS(2954), + [anon_sym_extern] = ACTIONS(2954), + [anon_sym_inline] = ACTIONS(2954), + [anon_sym_overload] = ACTIONS(2954), + [anon_sym_override] = ACTIONS(2954), + [anon_sym_final] = ACTIONS(2954), + [anon_sym_class] = ACTIONS(2954), + [anon_sym_interface] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2954), + [anon_sym_typedef] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2954), + [anon_sym_var] = ACTIONS(2954), + [aux_sym_integer_token1] = ACTIONS(2954), + [aux_sym_integer_token2] = ACTIONS(2956), + [aux_sym_float_token1] = ACTIONS(2954), + [aux_sym_float_token2] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2954), + [anon_sym_false] = ACTIONS(2954), + [aux_sym_string_token1] = ACTIONS(2956), + [aux_sym_string_token3] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [678] = { + [ts_builtin_sym_end] = ACTIONS(2960), + [sym_identifier] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2960), + [anon_sym_package] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_using] = ACTIONS(2958), + [anon_sym_throw] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym_switch] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_cast] = ACTIONS(2958), + [anon_sym_DOLLARtype] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2958), + [anon_sym_return] = ACTIONS(2958), + [anon_sym_untyped] = ACTIONS(2958), + [anon_sym_break] = ACTIONS(2958), + [anon_sym_continue] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_this] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_AT_COLON] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2958), + [anon_sym_catch] = ACTIONS(2958), + [anon_sym_else] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_while] = ACTIONS(2958), + [anon_sym_do] = ACTIONS(2958), + [anon_sym_new] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2958), + [anon_sym_PLUS] = ACTIONS(2958), + [anon_sym_LT_LT] = ACTIONS(2960), + [anon_sym_GT_GT] = ACTIONS(2958), + [anon_sym_GT_GT_GT] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_PIPE_PIPE] = ACTIONS(2960), + [anon_sym_EQ_EQ] = ACTIONS(2960), + [anon_sym_BANG_EQ] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_LT_EQ] = ACTIONS(2960), + [anon_sym_GT] = ACTIONS(2958), + [anon_sym_GT_EQ] = ACTIONS(2960), + [anon_sym_EQ_GT] = ACTIONS(2960), + [anon_sym_QMARK_QMARK] = ACTIONS(2960), + [anon_sym_EQ] = ACTIONS(2958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2958), + [anon_sym_macro] = ACTIONS(2958), + [anon_sym_abstract] = ACTIONS(2958), + [anon_sym_static] = ACTIONS(2958), + [anon_sym_public] = ACTIONS(2958), + [anon_sym_private] = ACTIONS(2958), + [anon_sym_extern] = ACTIONS(2958), + [anon_sym_inline] = ACTIONS(2958), + [anon_sym_overload] = ACTIONS(2958), + [anon_sym_override] = ACTIONS(2958), + [anon_sym_final] = ACTIONS(2958), + [anon_sym_class] = ACTIONS(2958), + [anon_sym_interface] = ACTIONS(2958), + [anon_sym_enum] = ACTIONS(2958), + [anon_sym_typedef] = ACTIONS(2958), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_var] = ACTIONS(2958), + [aux_sym_integer_token1] = ACTIONS(2958), + [aux_sym_integer_token2] = ACTIONS(2960), + [aux_sym_float_token1] = ACTIONS(2958), + [aux_sym_float_token2] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2958), + [anon_sym_false] = ACTIONS(2958), + [aux_sym_string_token1] = ACTIONS(2960), + [aux_sym_string_token3] = ACTIONS(2960), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [679] = { + [ts_builtin_sym_end] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(2964), + [anon_sym_package] = ACTIONS(2962), + [anon_sym_import] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_using] = ACTIONS(2962), + [anon_sym_throw] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_cast] = ACTIONS(2962), + [anon_sym_DOLLARtype] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_untyped] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_this] = ACTIONS(2962), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_AT_COLON] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_catch] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_LT_LT] = ACTIONS(2964), + [anon_sym_GT_GT] = ACTIONS(2962), + [anon_sym_GT_GT_GT] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2962), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_EQ_GT] = ACTIONS(2964), + [anon_sym_QMARK_QMARK] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_macro] = ACTIONS(2962), + [anon_sym_abstract] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_public] = ACTIONS(2962), + [anon_sym_private] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_overload] = ACTIONS(2962), + [anon_sym_override] = ACTIONS(2962), + [anon_sym_final] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_interface] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_var] = ACTIONS(2962), + [aux_sym_integer_token1] = ACTIONS(2962), + [aux_sym_integer_token2] = ACTIONS(2964), + [aux_sym_float_token1] = ACTIONS(2962), + [aux_sym_float_token2] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2962), + [anon_sym_false] = ACTIONS(2962), + [aux_sym_string_token1] = ACTIONS(2964), + [aux_sym_string_token3] = ACTIONS(2964), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [680] = { + [ts_builtin_sym_end] = ACTIONS(2968), + [sym_identifier] = ACTIONS(2966), + [anon_sym_POUND] = ACTIONS(2968), + [anon_sym_package] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_cast] = ACTIONS(2966), + [anon_sym_DOLLARtype] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_untyped] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym_this] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_AT_COLON] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_catch] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PERCENT] = ACTIONS(2968), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2968), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_GT_GT_GT] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_AMP_AMP] = ACTIONS(2968), + [anon_sym_PIPE_PIPE] = ACTIONS(2968), + [anon_sym_EQ_EQ] = ACTIONS(2968), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2968), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2968), + [anon_sym_EQ_GT] = ACTIONS(2968), + [anon_sym_QMARK_QMARK] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_macro] = ACTIONS(2966), + [anon_sym_abstract] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_public] = ACTIONS(2966), + [anon_sym_private] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_overload] = ACTIONS(2966), + [anon_sym_override] = ACTIONS(2966), + [anon_sym_final] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_typedef] = ACTIONS(2966), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_var] = ACTIONS(2966), + [aux_sym_integer_token1] = ACTIONS(2966), + [aux_sym_integer_token2] = ACTIONS(2968), + [aux_sym_float_token1] = ACTIONS(2966), + [aux_sym_float_token2] = ACTIONS(2968), + [anon_sym_true] = ACTIONS(2966), + [anon_sym_false] = ACTIONS(2966), + [aux_sym_string_token1] = ACTIONS(2968), + [aux_sym_string_token3] = ACTIONS(2968), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [681] = { [ts_builtin_sym_end] = ACTIONS(2656), [sym_identifier] = ACTIONS(2654), [anon_sym_POUND] = ACTIONS(2656), @@ -71939,14254 +77561,12158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(2668), - [sym_identifier] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(2668), - [anon_sym_package] = ACTIONS(2666), - [anon_sym_import] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_using] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_cast] = ACTIONS(2666), - [anon_sym_DOLLARtype] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_untyped] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2668), - [anon_sym_this] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_AT_COLON] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_catch] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_PERCENT] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2668), - [anon_sym_GT_GT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_PIPE_PIPE] = ACTIONS(2668), - [anon_sym_EQ_EQ] = ACTIONS(2668), - [anon_sym_BANG_EQ] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2668), - [anon_sym_EQ_GT] = ACTIONS(2668), - [anon_sym_QMARK_QMARK] = ACTIONS(2668), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2668), - [anon_sym_null] = ACTIONS(2666), - [anon_sym_macro] = ACTIONS(2666), - [anon_sym_abstract] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_public] = ACTIONS(2666), - [anon_sym_private] = ACTIONS(2666), - [anon_sym_extern] = ACTIONS(2666), - [anon_sym_inline] = ACTIONS(2666), - [anon_sym_overload] = ACTIONS(2666), - [anon_sym_override] = ACTIONS(2666), - [anon_sym_final] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_interface] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - [anon_sym_typedef] = ACTIONS(2666), - [anon_sym_function] = ACTIONS(2666), - [anon_sym_var] = ACTIONS(2666), - [aux_sym_integer_token1] = ACTIONS(2666), - [aux_sym_integer_token2] = ACTIONS(2668), - [aux_sym_float_token1] = ACTIONS(2666), - [aux_sym_float_token2] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [aux_sym_string_token1] = ACTIONS(2668), - [aux_sym_string_token3] = ACTIONS(2668), + [682] = { + [ts_builtin_sym_end] = ACTIONS(2972), + [sym_identifier] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2972), + [anon_sym_package] = ACTIONS(2970), + [anon_sym_import] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_using] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_switch] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_cast] = ACTIONS(2970), + [anon_sym_DOLLARtype] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_untyped] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_this] = ACTIONS(2970), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_AT_COLON] = ACTIONS(2972), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_catch] = ACTIONS(2970), + [anon_sym_else] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PERCENT] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_LT_LT] = ACTIONS(2972), + [anon_sym_GT_GT] = ACTIONS(2970), + [anon_sym_GT_GT_GT] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(2972), + [anon_sym_PIPE_PIPE] = ACTIONS(2972), + [anon_sym_EQ_EQ] = ACTIONS(2972), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_LT_EQ] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2970), + [anon_sym_GT_EQ] = ACTIONS(2972), + [anon_sym_EQ_GT] = ACTIONS(2972), + [anon_sym_QMARK_QMARK] = ACTIONS(2972), + [anon_sym_EQ] = ACTIONS(2970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_macro] = ACTIONS(2970), + [anon_sym_abstract] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_public] = ACTIONS(2970), + [anon_sym_private] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym_overload] = ACTIONS(2970), + [anon_sym_override] = ACTIONS(2970), + [anon_sym_final] = ACTIONS(2970), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_interface] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_typedef] = ACTIONS(2970), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_var] = ACTIONS(2970), + [aux_sym_integer_token1] = ACTIONS(2970), + [aux_sym_integer_token2] = ACTIONS(2972), + [aux_sym_float_token1] = ACTIONS(2970), + [aux_sym_float_token2] = ACTIONS(2972), + [anon_sym_true] = ACTIONS(2970), + [anon_sym_false] = ACTIONS(2970), + [aux_sym_string_token1] = ACTIONS(2972), + [aux_sym_string_token3] = ACTIONS(2972), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [639] = { - [ts_builtin_sym_end] = ACTIONS(2684), - [sym_identifier] = ACTIONS(2682), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_package] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_cast] = ACTIONS(2682), - [anon_sym_DOLLARtype] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_untyped] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_this] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2682), - [anon_sym_AT_COLON] = ACTIONS(2684), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_catch] = ACTIONS(2682), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PERCENT] = ACTIONS(2684), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_LT_LT] = ACTIONS(2684), - [anon_sym_GT_GT] = ACTIONS(2682), - [anon_sym_GT_GT_GT] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2682), - [anon_sym_CARET] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [anon_sym_EQ_EQ] = ACTIONS(2684), - [anon_sym_BANG_EQ] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_LT_EQ] = ACTIONS(2684), - [anon_sym_GT] = ACTIONS(2682), - [anon_sym_GT_EQ] = ACTIONS(2684), - [anon_sym_EQ_GT] = ACTIONS(2684), - [anon_sym_QMARK_QMARK] = ACTIONS(2684), - [anon_sym_EQ] = ACTIONS(2682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2684), - [anon_sym_null] = ACTIONS(2682), - [anon_sym_macro] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_overload] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_final] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [aux_sym_integer_token1] = ACTIONS(2682), - [aux_sym_integer_token2] = ACTIONS(2684), - [aux_sym_float_token1] = ACTIONS(2682), - [aux_sym_float_token2] = ACTIONS(2684), - [anon_sym_true] = ACTIONS(2682), - [anon_sym_false] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [aux_sym_string_token3] = ACTIONS(2684), + [683] = { + [ts_builtin_sym_end] = ACTIONS(2976), + [sym_identifier] = ACTIONS(2974), + [anon_sym_POUND] = ACTIONS(2976), + [anon_sym_package] = ACTIONS(2974), + [anon_sym_import] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2976), + [anon_sym_using] = ACTIONS(2974), + [anon_sym_throw] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_cast] = ACTIONS(2974), + [anon_sym_DOLLARtype] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_untyped] = ACTIONS(2974), + [anon_sym_break] = ACTIONS(2974), + [anon_sym_continue] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_this] = ACTIONS(2974), + [anon_sym_AT] = ACTIONS(2974), + [anon_sym_AT_COLON] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_catch] = ACTIONS(2974), + [anon_sym_else] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2976), + [anon_sym_PERCENT] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_LT_LT] = ACTIONS(2976), + [anon_sym_GT_GT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_CARET] = ACTIONS(2976), + [anon_sym_AMP_AMP] = ACTIONS(2976), + [anon_sym_PIPE_PIPE] = ACTIONS(2976), + [anon_sym_EQ_EQ] = ACTIONS(2976), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2976), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2976), + [anon_sym_QMARK_QMARK] = ACTIONS(2976), + [anon_sym_EQ] = ACTIONS(2974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_macro] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2974), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_public] = ACTIONS(2974), + [anon_sym_private] = ACTIONS(2974), + [anon_sym_extern] = ACTIONS(2974), + [anon_sym_inline] = ACTIONS(2974), + [anon_sym_overload] = ACTIONS(2974), + [anon_sym_override] = ACTIONS(2974), + [anon_sym_final] = ACTIONS(2974), + [anon_sym_class] = ACTIONS(2974), + [anon_sym_interface] = ACTIONS(2974), + [anon_sym_enum] = ACTIONS(2974), + [anon_sym_typedef] = ACTIONS(2974), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_var] = ACTIONS(2974), + [aux_sym_integer_token1] = ACTIONS(2974), + [aux_sym_integer_token2] = ACTIONS(2976), + [aux_sym_float_token1] = ACTIONS(2974), + [aux_sym_float_token2] = ACTIONS(2976), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [aux_sym_string_token1] = ACTIONS(2976), + [aux_sym_string_token3] = ACTIONS(2976), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [640] = { - [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_STAR] = ACTIONS(2326), - [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_for] = ACTIONS(2324), - [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_try] = ACTIONS(2324), - [anon_sym_catch] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [684] = { + [ts_builtin_sym_end] = ACTIONS(2980), + [sym_identifier] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_package] = ACTIONS(2978), + [anon_sym_import] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_using] = ACTIONS(2978), + [anon_sym_throw] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_cast] = ACTIONS(2978), + [anon_sym_DOLLARtype] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_untyped] = ACTIONS(2978), + [anon_sym_break] = ACTIONS(2978), + [anon_sym_continue] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_this] = ACTIONS(2978), + [anon_sym_AT] = ACTIONS(2978), + [anon_sym_AT_COLON] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_catch] = ACTIONS(2978), + [anon_sym_else] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [anon_sym_PERCENT] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_LT_LT] = ACTIONS(2980), + [anon_sym_GT_GT] = ACTIONS(2978), + [anon_sym_GT_GT_GT] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_CARET] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT] = ACTIONS(2978), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_EQ_GT] = ACTIONS(2980), + [anon_sym_QMARK_QMARK] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_macro] = ACTIONS(2978), + [anon_sym_abstract] = ACTIONS(2978), + [anon_sym_static] = ACTIONS(2978), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_extern] = ACTIONS(2978), + [anon_sym_inline] = ACTIONS(2978), + [anon_sym_overload] = ACTIONS(2978), + [anon_sym_override] = ACTIONS(2978), + [anon_sym_final] = ACTIONS(2978), + [anon_sym_class] = ACTIONS(2978), + [anon_sym_interface] = ACTIONS(2978), + [anon_sym_enum] = ACTIONS(2978), + [anon_sym_typedef] = ACTIONS(2978), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_var] = ACTIONS(2978), + [aux_sym_integer_token1] = ACTIONS(2978), + [aux_sym_integer_token2] = ACTIONS(2980), + [aux_sym_float_token1] = ACTIONS(2978), + [aux_sym_float_token2] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2978), + [anon_sym_false] = ACTIONS(2978), + [aux_sym_string_token1] = ACTIONS(2980), + [aux_sym_string_token3] = ACTIONS(2980), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [641] = { - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2716), - [anon_sym_package] = ACTIONS(2714), - [anon_sym_import] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_using] = ACTIONS(2714), - [anon_sym_throw] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_switch] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_cast] = ACTIONS(2714), - [anon_sym_DOLLARtype] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_untyped] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_this] = ACTIONS(2714), - [anon_sym_AT] = ACTIONS(2714), - [anon_sym_AT_COLON] = ACTIONS(2716), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_catch] = ACTIONS(2714), - [anon_sym_else] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_LT_LT] = ACTIONS(2716), - [anon_sym_GT_GT] = ACTIONS(2714), - [anon_sym_GT_GT_GT] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_AMP_AMP] = ACTIONS(2716), - [anon_sym_PIPE_PIPE] = ACTIONS(2716), - [anon_sym_EQ_EQ] = ACTIONS(2716), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_LT_EQ] = ACTIONS(2716), - [anon_sym_GT] = ACTIONS(2714), - [anon_sym_GT_EQ] = ACTIONS(2716), - [anon_sym_EQ_GT] = ACTIONS(2716), - [anon_sym_QMARK_QMARK] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(2714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_macro] = ACTIONS(2714), - [anon_sym_abstract] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [anon_sym_extern] = ACTIONS(2714), - [anon_sym_inline] = ACTIONS(2714), - [anon_sym_overload] = ACTIONS(2714), - [anon_sym_override] = ACTIONS(2714), - [anon_sym_final] = ACTIONS(2714), - [anon_sym_class] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - [anon_sym_typedef] = ACTIONS(2714), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_var] = ACTIONS(2714), - [aux_sym_integer_token1] = ACTIONS(2714), - [aux_sym_integer_token2] = ACTIONS(2716), - [aux_sym_float_token1] = ACTIONS(2714), - [aux_sym_float_token2] = ACTIONS(2716), - [anon_sym_true] = ACTIONS(2714), - [anon_sym_false] = ACTIONS(2714), - [aux_sym_string_token1] = ACTIONS(2716), - [aux_sym_string_token3] = ACTIONS(2716), + [685] = { + [ts_builtin_sym_end] = ACTIONS(2984), + [sym_identifier] = ACTIONS(2982), + [anon_sym_POUND] = ACTIONS(2984), + [anon_sym_package] = ACTIONS(2982), + [anon_sym_import] = ACTIONS(2982), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_using] = ACTIONS(2982), + [anon_sym_throw] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_cast] = ACTIONS(2982), + [anon_sym_DOLLARtype] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_untyped] = ACTIONS(2982), + [anon_sym_break] = ACTIONS(2982), + [anon_sym_continue] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_this] = ACTIONS(2982), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_AT_COLON] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_catch] = ACTIONS(2982), + [anon_sym_else] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_LT_LT] = ACTIONS(2984), + [anon_sym_GT_GT] = ACTIONS(2982), + [anon_sym_GT_GT_GT] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP_AMP] = ACTIONS(2984), + [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2984), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_EQ] = ACTIONS(2984), + [anon_sym_EQ_GT] = ACTIONS(2984), + [anon_sym_QMARK_QMARK] = ACTIONS(2984), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_macro] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2982), + [anon_sym_static] = ACTIONS(2982), + [anon_sym_public] = ACTIONS(2982), + [anon_sym_private] = ACTIONS(2982), + [anon_sym_extern] = ACTIONS(2982), + [anon_sym_inline] = ACTIONS(2982), + [anon_sym_overload] = ACTIONS(2982), + [anon_sym_override] = ACTIONS(2982), + [anon_sym_final] = ACTIONS(2982), + [anon_sym_class] = ACTIONS(2982), + [anon_sym_interface] = ACTIONS(2982), + [anon_sym_enum] = ACTIONS(2982), + [anon_sym_typedef] = ACTIONS(2982), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_var] = ACTIONS(2982), + [aux_sym_integer_token1] = ACTIONS(2982), + [aux_sym_integer_token2] = ACTIONS(2984), + [aux_sym_float_token1] = ACTIONS(2982), + [aux_sym_float_token2] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2982), + [anon_sym_false] = ACTIONS(2982), + [aux_sym_string_token1] = ACTIONS(2984), + [aux_sym_string_token3] = ACTIONS(2984), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [642] = { - [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_STAR] = ACTIONS(2298), - [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_for] = ACTIONS(2296), - [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_try] = ACTIONS(2296), - [anon_sym_catch] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [686] = { + [ts_builtin_sym_end] = ACTIONS(2988), + [sym_identifier] = ACTIONS(2986), + [anon_sym_POUND] = ACTIONS(2988), + [anon_sym_package] = ACTIONS(2986), + [anon_sym_import] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_using] = ACTIONS(2986), + [anon_sym_throw] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_cast] = ACTIONS(2986), + [anon_sym_DOLLARtype] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2986), + [anon_sym_return] = ACTIONS(2986), + [anon_sym_untyped] = ACTIONS(2986), + [anon_sym_break] = ACTIONS(2986), + [anon_sym_continue] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2986), + [anon_sym_AT] = ACTIONS(2986), + [anon_sym_AT_COLON] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2986), + [anon_sym_catch] = ACTIONS(2986), + [anon_sym_else] = ACTIONS(2986), + [anon_sym_if] = ACTIONS(2986), + [anon_sym_while] = ACTIONS(2986), + [anon_sym_do] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2986), + [anon_sym_PLUS] = ACTIONS(2986), + [anon_sym_LT_LT] = ACTIONS(2988), + [anon_sym_GT_GT] = ACTIONS(2986), + [anon_sym_GT_GT_GT] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2986), + [anon_sym_PIPE] = ACTIONS(2986), + [anon_sym_CARET] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_LT_EQ] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2986), + [anon_sym_GT_EQ] = ACTIONS(2988), + [anon_sym_EQ_GT] = ACTIONS(2988), + [anon_sym_QMARK_QMARK] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2986), + [anon_sym_macro] = ACTIONS(2986), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_public] = ACTIONS(2986), + [anon_sym_private] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(2986), + [anon_sym_inline] = ACTIONS(2986), + [anon_sym_overload] = ACTIONS(2986), + [anon_sym_override] = ACTIONS(2986), + [anon_sym_final] = ACTIONS(2986), + [anon_sym_class] = ACTIONS(2986), + [anon_sym_interface] = ACTIONS(2986), + [anon_sym_enum] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_var] = ACTIONS(2986), + [aux_sym_integer_token1] = ACTIONS(2986), + [aux_sym_integer_token2] = ACTIONS(2988), + [aux_sym_float_token1] = ACTIONS(2986), + [aux_sym_float_token2] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2986), + [anon_sym_false] = ACTIONS(2986), + [aux_sym_string_token1] = ACTIONS(2988), + [aux_sym_string_token3] = ACTIONS(2988), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [643] = { - [ts_builtin_sym_end] = ACTIONS(2012), - [sym_identifier] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2012), - [anon_sym_package] = ACTIONS(2010), - [anon_sym_import] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_using] = ACTIONS(2010), - [anon_sym_throw] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2012), - [anon_sym_switch] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_cast] = ACTIONS(2010), - [anon_sym_DOLLARtype] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2010), - [anon_sym_untyped] = ACTIONS(2010), - [anon_sym_break] = ACTIONS(2010), - [anon_sym_continue] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_this] = ACTIONS(2010), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_AT_COLON] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2010), - [anon_sym_catch] = ACTIONS(2010), - [anon_sym_else] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_do] = ACTIONS(2010), - [anon_sym_new] = ACTIONS(2010), - [anon_sym_TILDE] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_PLUS_PLUS] = ACTIONS(2012), - [anon_sym_DASH_DASH] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2012), - [anon_sym_SLASH] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_LT_LT] = ACTIONS(2012), - [anon_sym_GT_GT] = ACTIONS(2010), - [anon_sym_GT_GT_GT] = ACTIONS(2012), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_CARET] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2012), - [anon_sym_PIPE_PIPE] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2012), - [anon_sym_BANG_EQ] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_LT_EQ] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_GT_EQ] = ACTIONS(2012), - [anon_sym_EQ_GT] = ACTIONS(2012), - [anon_sym_QMARK_QMARK] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(2010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2012), - [anon_sym_null] = ACTIONS(2010), - [anon_sym_macro] = ACTIONS(2010), - [anon_sym_abstract] = ACTIONS(2010), - [anon_sym_static] = ACTIONS(2010), - [anon_sym_public] = ACTIONS(2010), - [anon_sym_private] = ACTIONS(2010), - [anon_sym_extern] = ACTIONS(2010), - [anon_sym_inline] = ACTIONS(2010), - [anon_sym_overload] = ACTIONS(2010), - [anon_sym_override] = ACTIONS(2010), - [anon_sym_final] = ACTIONS(2010), - [anon_sym_class] = ACTIONS(2010), - [anon_sym_interface] = ACTIONS(2010), - [anon_sym_enum] = ACTIONS(2010), - [anon_sym_typedef] = ACTIONS(2010), - [anon_sym_function] = ACTIONS(2010), - [anon_sym_var] = ACTIONS(2010), - [aux_sym_integer_token1] = ACTIONS(2010), - [aux_sym_integer_token2] = ACTIONS(2012), - [aux_sym_float_token1] = ACTIONS(2010), - [aux_sym_float_token2] = ACTIONS(2012), - [anon_sym_true] = ACTIONS(2010), - [anon_sym_false] = ACTIONS(2010), - [aux_sym_string_token1] = ACTIONS(2012), - [aux_sym_string_token3] = ACTIONS(2012), + [687] = { + [ts_builtin_sym_end] = ACTIONS(2992), + [sym_identifier] = ACTIONS(2990), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_package] = ACTIONS(2990), + [anon_sym_import] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2990), + [anon_sym_throw] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2990), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_cast] = ACTIONS(2990), + [anon_sym_DOLLARtype] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2990), + [anon_sym_return] = ACTIONS(2990), + [anon_sym_untyped] = ACTIONS(2990), + [anon_sym_break] = ACTIONS(2990), + [anon_sym_continue] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_this] = ACTIONS(2990), + [anon_sym_AT] = ACTIONS(2990), + [anon_sym_AT_COLON] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2990), + [anon_sym_catch] = ACTIONS(2990), + [anon_sym_else] = ACTIONS(2990), + [anon_sym_if] = ACTIONS(2990), + [anon_sym_while] = ACTIONS(2990), + [anon_sym_do] = ACTIONS(2990), + [anon_sym_new] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2992), + [anon_sym_PERCENT] = ACTIONS(2992), + [anon_sym_SLASH] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(2990), + [anon_sym_LT_LT] = ACTIONS(2992), + [anon_sym_GT_GT] = ACTIONS(2990), + [anon_sym_GT_GT_GT] = ACTIONS(2992), + [anon_sym_AMP] = ACTIONS(2990), + [anon_sym_PIPE] = ACTIONS(2990), + [anon_sym_CARET] = ACTIONS(2992), + [anon_sym_AMP_AMP] = ACTIONS(2992), + [anon_sym_PIPE_PIPE] = ACTIONS(2992), + [anon_sym_EQ_EQ] = ACTIONS(2992), + [anon_sym_BANG_EQ] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2992), + [anon_sym_EQ_GT] = ACTIONS(2992), + [anon_sym_QMARK_QMARK] = ACTIONS(2992), + [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2992), + [anon_sym_null] = ACTIONS(2990), + [anon_sym_macro] = ACTIONS(2990), + [anon_sym_abstract] = ACTIONS(2990), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_extern] = ACTIONS(2990), + [anon_sym_inline] = ACTIONS(2990), + [anon_sym_overload] = ACTIONS(2990), + [anon_sym_override] = ACTIONS(2990), + [anon_sym_final] = ACTIONS(2990), + [anon_sym_class] = ACTIONS(2990), + [anon_sym_interface] = ACTIONS(2990), + [anon_sym_enum] = ACTIONS(2990), + [anon_sym_typedef] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2990), + [anon_sym_var] = ACTIONS(2990), + [aux_sym_integer_token1] = ACTIONS(2990), + [aux_sym_integer_token2] = ACTIONS(2992), + [aux_sym_float_token1] = ACTIONS(2990), + [aux_sym_float_token2] = ACTIONS(2992), + [anon_sym_true] = ACTIONS(2990), + [anon_sym_false] = ACTIONS(2990), + [aux_sym_string_token1] = ACTIONS(2992), + [aux_sym_string_token3] = ACTIONS(2992), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [644] = { - [ts_builtin_sym_end] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2016), - [anon_sym_package] = ACTIONS(2014), - [anon_sym_import] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_using] = ACTIONS(2014), - [anon_sym_throw] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2016), - [anon_sym_switch] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_cast] = ACTIONS(2014), - [anon_sym_DOLLARtype] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_untyped] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_this] = ACTIONS(2014), - [anon_sym_AT] = ACTIONS(2014), - [anon_sym_AT_COLON] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2014), - [anon_sym_catch] = ACTIONS(2014), - [anon_sym_else] = ACTIONS(2014), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2016), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_SLASH] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_LT_LT] = ACTIONS(2016), - [anon_sym_GT_GT] = ACTIONS(2014), - [anon_sym_GT_GT_GT] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_LT_EQ] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_EQ_GT] = ACTIONS(2016), - [anon_sym_QMARK_QMARK] = ACTIONS(2016), - [anon_sym_EQ] = ACTIONS(2014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(2014), - [anon_sym_macro] = ACTIONS(2014), - [anon_sym_abstract] = ACTIONS(2014), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_public] = ACTIONS(2014), - [anon_sym_private] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [anon_sym_overload] = ACTIONS(2014), - [anon_sym_override] = ACTIONS(2014), - [anon_sym_final] = ACTIONS(2014), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_interface] = ACTIONS(2014), - [anon_sym_enum] = ACTIONS(2014), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_function] = ACTIONS(2014), - [anon_sym_var] = ACTIONS(2014), - [aux_sym_integer_token1] = ACTIONS(2014), - [aux_sym_integer_token2] = ACTIONS(2016), - [aux_sym_float_token1] = ACTIONS(2014), - [aux_sym_float_token2] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2014), - [anon_sym_false] = ACTIONS(2014), - [aux_sym_string_token1] = ACTIONS(2016), - [aux_sym_string_token3] = ACTIONS(2016), + [688] = { + [ts_builtin_sym_end] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2994), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_package] = ACTIONS(2994), + [anon_sym_import] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_using] = ACTIONS(2994), + [anon_sym_throw] = ACTIONS(2994), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_cast] = ACTIONS(2994), + [anon_sym_DOLLARtype] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2994), + [anon_sym_return] = ACTIONS(2994), + [anon_sym_untyped] = ACTIONS(2994), + [anon_sym_break] = ACTIONS(2994), + [anon_sym_continue] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_this] = ACTIONS(2994), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_AT_COLON] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2994), + [anon_sym_catch] = ACTIONS(2994), + [anon_sym_else] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2994), + [anon_sym_while] = ACTIONS(2994), + [anon_sym_do] = ACTIONS(2994), + [anon_sym_new] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2996), + [anon_sym_PERCENT] = ACTIONS(2996), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_LT_LT] = ACTIONS(2996), + [anon_sym_GT_GT] = ACTIONS(2994), + [anon_sym_GT_GT_GT] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_AMP_AMP] = ACTIONS(2996), + [anon_sym_PIPE_PIPE] = ACTIONS(2996), + [anon_sym_EQ_EQ] = ACTIONS(2996), + [anon_sym_BANG_EQ] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2996), + [anon_sym_GT] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2996), + [anon_sym_EQ_GT] = ACTIONS(2996), + [anon_sym_QMARK_QMARK] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(2994), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2996), + [anon_sym_null] = ACTIONS(2994), + [anon_sym_macro] = ACTIONS(2994), + [anon_sym_abstract] = ACTIONS(2994), + [anon_sym_static] = ACTIONS(2994), + [anon_sym_public] = ACTIONS(2994), + [anon_sym_private] = ACTIONS(2994), + [anon_sym_extern] = ACTIONS(2994), + [anon_sym_inline] = ACTIONS(2994), + [anon_sym_overload] = ACTIONS(2994), + [anon_sym_override] = ACTIONS(2994), + [anon_sym_final] = ACTIONS(2994), + [anon_sym_class] = ACTIONS(2994), + [anon_sym_interface] = ACTIONS(2994), + [anon_sym_enum] = ACTIONS(2994), + [anon_sym_typedef] = ACTIONS(2994), + [anon_sym_function] = ACTIONS(2994), + [anon_sym_var] = ACTIONS(2994), + [aux_sym_integer_token1] = ACTIONS(2994), + [aux_sym_integer_token2] = ACTIONS(2996), + [aux_sym_float_token1] = ACTIONS(2994), + [aux_sym_float_token2] = ACTIONS(2996), + [anon_sym_true] = ACTIONS(2994), + [anon_sym_false] = ACTIONS(2994), + [aux_sym_string_token1] = ACTIONS(2996), + [aux_sym_string_token3] = ACTIONS(2996), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [645] = { - [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_STAR] = ACTIONS(2342), - [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_for] = ACTIONS(2340), - [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_try] = ACTIONS(2340), - [anon_sym_catch] = ACTIONS(2340), - [anon_sym_else] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [689] = { + [ts_builtin_sym_end] = ACTIONS(3000), + [sym_identifier] = ACTIONS(2998), + [anon_sym_POUND] = ACTIONS(3000), + [anon_sym_package] = ACTIONS(2998), + [anon_sym_import] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_using] = ACTIONS(2998), + [anon_sym_throw] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_switch] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_cast] = ACTIONS(2998), + [anon_sym_DOLLARtype] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_untyped] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_this] = ACTIONS(2998), + [anon_sym_AT] = ACTIONS(2998), + [anon_sym_AT_COLON] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_catch] = ACTIONS(2998), + [anon_sym_else] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_do] = ACTIONS(2998), + [anon_sym_new] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3000), + [anon_sym_PERCENT] = ACTIONS(3000), + [anon_sym_SLASH] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2998), + [anon_sym_LT_LT] = ACTIONS(3000), + [anon_sym_GT_GT] = ACTIONS(2998), + [anon_sym_GT_GT_GT] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(2998), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(3000), + [anon_sym_AMP_AMP] = ACTIONS(3000), + [anon_sym_PIPE_PIPE] = ACTIONS(3000), + [anon_sym_EQ_EQ] = ACTIONS(3000), + [anon_sym_BANG_EQ] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(2998), + [anon_sym_LT_EQ] = ACTIONS(3000), + [anon_sym_GT] = ACTIONS(2998), + [anon_sym_GT_EQ] = ACTIONS(3000), + [anon_sym_EQ_GT] = ACTIONS(3000), + [anon_sym_QMARK_QMARK] = ACTIONS(3000), + [anon_sym_EQ] = ACTIONS(2998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3000), + [anon_sym_null] = ACTIONS(2998), + [anon_sym_macro] = ACTIONS(2998), + [anon_sym_abstract] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2998), + [anon_sym_public] = ACTIONS(2998), + [anon_sym_private] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_inline] = ACTIONS(2998), + [anon_sym_overload] = ACTIONS(2998), + [anon_sym_override] = ACTIONS(2998), + [anon_sym_final] = ACTIONS(2998), + [anon_sym_class] = ACTIONS(2998), + [anon_sym_interface] = ACTIONS(2998), + [anon_sym_enum] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2998), + [anon_sym_function] = ACTIONS(2998), + [anon_sym_var] = ACTIONS(2998), + [aux_sym_integer_token1] = ACTIONS(2998), + [aux_sym_integer_token2] = ACTIONS(3000), + [aux_sym_float_token1] = ACTIONS(2998), + [aux_sym_float_token2] = ACTIONS(3000), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [aux_sym_string_token1] = ACTIONS(3000), + [aux_sym_string_token3] = ACTIONS(3000), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [646] = { - [sym_else_clause] = STATE(791), - [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_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [690] = { + [ts_builtin_sym_end] = ACTIONS(3004), + [sym_identifier] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(3004), + [anon_sym_package] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3002), + [anon_sym_throw] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3004), + [anon_sym_cast] = ACTIONS(3002), + [anon_sym_DOLLARtype] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_untyped] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_this] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_AT_COLON] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3002), + [anon_sym_catch] = ACTIONS(3002), + [anon_sym_else] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_do] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3004), + [anon_sym_PERCENT] = ACTIONS(3004), + [anon_sym_SLASH] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_LT_LT] = ACTIONS(3004), + [anon_sym_GT_GT] = ACTIONS(3002), + [anon_sym_GT_GT_GT] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_CARET] = ACTIONS(3004), + [anon_sym_AMP_AMP] = ACTIONS(3004), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_EQ_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_LT_EQ] = ACTIONS(3004), + [anon_sym_GT] = ACTIONS(3002), + [anon_sym_GT_EQ] = ACTIONS(3004), + [anon_sym_EQ_GT] = ACTIONS(3004), + [anon_sym_QMARK_QMARK] = ACTIONS(3004), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), + [anon_sym_null] = ACTIONS(3002), + [anon_sym_macro] = ACTIONS(3002), + [anon_sym_abstract] = ACTIONS(3002), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_extern] = ACTIONS(3002), + [anon_sym_inline] = ACTIONS(3002), + [anon_sym_overload] = ACTIONS(3002), + [anon_sym_override] = ACTIONS(3002), + [anon_sym_final] = ACTIONS(3002), + [anon_sym_class] = ACTIONS(3002), + [anon_sym_interface] = ACTIONS(3002), + [anon_sym_enum] = ACTIONS(3002), + [anon_sym_typedef] = ACTIONS(3002), + [anon_sym_function] = ACTIONS(3002), + [anon_sym_var] = ACTIONS(3002), + [aux_sym_integer_token1] = ACTIONS(3002), + [aux_sym_integer_token2] = ACTIONS(3004), + [aux_sym_float_token1] = ACTIONS(3002), + [aux_sym_float_token2] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [aux_sym_string_token1] = ACTIONS(3004), + [aux_sym_string_token3] = ACTIONS(3004), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [647] = { - [ts_builtin_sym_end] = ACTIONS(2020), - [sym_identifier] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2020), - [anon_sym_package] = ACTIONS(2018), - [anon_sym_import] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_using] = ACTIONS(2018), - [anon_sym_throw] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_switch] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_cast] = ACTIONS(2018), - [anon_sym_DOLLARtype] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_untyped] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_this] = ACTIONS(2018), - [anon_sym_AT] = ACTIONS(2018), - [anon_sym_AT_COLON] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2018), - [anon_sym_catch] = ACTIONS(2018), - [anon_sym_else] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_new] = ACTIONS(2018), - [anon_sym_TILDE] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2018), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_LT_EQ] = ACTIONS(2020), - [anon_sym_GT] = ACTIONS(2018), - [anon_sym_GT_EQ] = ACTIONS(2020), - [anon_sym_EQ_GT] = ACTIONS(2020), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_EQ] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2020), - [anon_sym_null] = ACTIONS(2018), - [anon_sym_macro] = ACTIONS(2018), - [anon_sym_abstract] = ACTIONS(2018), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_public] = ACTIONS(2018), - [anon_sym_private] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [anon_sym_overload] = ACTIONS(2018), - [anon_sym_override] = ACTIONS(2018), - [anon_sym_final] = ACTIONS(2018), - [anon_sym_class] = ACTIONS(2018), - [anon_sym_interface] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_function] = ACTIONS(2018), - [anon_sym_var] = ACTIONS(2018), - [aux_sym_integer_token1] = ACTIONS(2018), - [aux_sym_integer_token2] = ACTIONS(2020), - [aux_sym_float_token1] = ACTIONS(2018), - [aux_sym_float_token2] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [aux_sym_string_token1] = ACTIONS(2020), - [aux_sym_string_token3] = ACTIONS(2020), + [691] = { + [ts_builtin_sym_end] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3006), + [anon_sym_POUND] = ACTIONS(3008), + [anon_sym_package] = ACTIONS(3006), + [anon_sym_import] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3006), + [anon_sym_throw] = ACTIONS(3006), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_cast] = ACTIONS(3006), + [anon_sym_DOLLARtype] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_untyped] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_this] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(3006), + [anon_sym_AT_COLON] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3006), + [anon_sym_catch] = ACTIONS(3006), + [anon_sym_else] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_do] = ACTIONS(3006), + [anon_sym_new] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [anon_sym_PERCENT] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3006), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(3006), + [anon_sym_GT_GT_GT] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_CARET] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_EQ_GT] = ACTIONS(3008), + [anon_sym_QMARK_QMARK] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3008), + [anon_sym_null] = ACTIONS(3006), + [anon_sym_macro] = ACTIONS(3006), + [anon_sym_abstract] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_extern] = ACTIONS(3006), + [anon_sym_inline] = ACTIONS(3006), + [anon_sym_overload] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_final] = ACTIONS(3006), + [anon_sym_class] = ACTIONS(3006), + [anon_sym_interface] = ACTIONS(3006), + [anon_sym_enum] = ACTIONS(3006), + [anon_sym_typedef] = ACTIONS(3006), + [anon_sym_function] = ACTIONS(3006), + [anon_sym_var] = ACTIONS(3006), + [aux_sym_integer_token1] = ACTIONS(3006), + [aux_sym_integer_token2] = ACTIONS(3008), + [aux_sym_float_token1] = ACTIONS(3006), + [aux_sym_float_token2] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [aux_sym_string_token1] = ACTIONS(3008), + [aux_sym_string_token3] = ACTIONS(3008), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [648] = { - [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_STAR] = ACTIONS(1966), - [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_for] = ACTIONS(1964), - [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_try] = ACTIONS(1964), - [anon_sym_catch] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [692] = { + [ts_builtin_sym_end] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3012), + [anon_sym_package] = ACTIONS(3010), + [anon_sym_import] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3010), + [anon_sym_throw] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_cast] = ACTIONS(3010), + [anon_sym_DOLLARtype] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_untyped] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3010), + [anon_sym_continue] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_this] = ACTIONS(3010), + [anon_sym_AT] = ACTIONS(3010), + [anon_sym_AT_COLON] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3010), + [anon_sym_catch] = ACTIONS(3010), + [anon_sym_else] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_while] = ACTIONS(3010), + [anon_sym_do] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_LT_LT] = ACTIONS(3012), + [anon_sym_GT_GT] = ACTIONS(3010), + [anon_sym_GT_GT_GT] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_CARET] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_EQ_EQ] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_LT_EQ] = ACTIONS(3012), + [anon_sym_GT] = ACTIONS(3010), + [anon_sym_GT_EQ] = ACTIONS(3012), + [anon_sym_EQ_GT] = ACTIONS(3012), + [anon_sym_QMARK_QMARK] = ACTIONS(3012), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3010), + [anon_sym_macro] = ACTIONS(3010), + [anon_sym_abstract] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_public] = ACTIONS(3010), + [anon_sym_private] = ACTIONS(3010), + [anon_sym_extern] = ACTIONS(3010), + [anon_sym_inline] = ACTIONS(3010), + [anon_sym_overload] = ACTIONS(3010), + [anon_sym_override] = ACTIONS(3010), + [anon_sym_final] = ACTIONS(3010), + [anon_sym_class] = ACTIONS(3010), + [anon_sym_interface] = ACTIONS(3010), + [anon_sym_enum] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3010), + [anon_sym_var] = ACTIONS(3010), + [aux_sym_integer_token1] = ACTIONS(3010), + [aux_sym_integer_token2] = ACTIONS(3012), + [aux_sym_float_token1] = ACTIONS(3010), + [aux_sym_float_token2] = ACTIONS(3012), + [anon_sym_true] = ACTIONS(3010), + [anon_sym_false] = ACTIONS(3010), + [aux_sym_string_token1] = ACTIONS(3012), + [aux_sym_string_token3] = ACTIONS(3012), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [649] = { - [ts_builtin_sym_end] = ACTIONS(2024), - [sym_identifier] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2024), - [anon_sym_package] = ACTIONS(2022), - [anon_sym_import] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_using] = ACTIONS(2022), - [anon_sym_throw] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2024), - [anon_sym_switch] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_cast] = ACTIONS(2022), - [anon_sym_DOLLARtype] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2022), - [anon_sym_untyped] = ACTIONS(2022), - [anon_sym_break] = ACTIONS(2022), - [anon_sym_continue] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_this] = ACTIONS(2022), - [anon_sym_AT] = ACTIONS(2022), - [anon_sym_AT_COLON] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2022), - [anon_sym_catch] = ACTIONS(2022), - [anon_sym_else] = ACTIONS(2022), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_while] = ACTIONS(2022), - [anon_sym_do] = ACTIONS(2022), - [anon_sym_new] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PLUS_PLUS] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_GT_GT_GT] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2024), - [anon_sym_BANG_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2024), - [anon_sym_EQ_GT] = ACTIONS(2024), - [anon_sym_QMARK_QMARK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2022), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2024), - [anon_sym_null] = ACTIONS(2022), - [anon_sym_macro] = ACTIONS(2022), - [anon_sym_abstract] = ACTIONS(2022), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_public] = ACTIONS(2022), - [anon_sym_private] = ACTIONS(2022), - [anon_sym_extern] = ACTIONS(2022), - [anon_sym_inline] = ACTIONS(2022), - [anon_sym_overload] = ACTIONS(2022), - [anon_sym_override] = ACTIONS(2022), - [anon_sym_final] = ACTIONS(2022), - [anon_sym_class] = ACTIONS(2022), - [anon_sym_interface] = ACTIONS(2022), - [anon_sym_enum] = ACTIONS(2022), - [anon_sym_typedef] = ACTIONS(2022), - [anon_sym_function] = ACTIONS(2022), - [anon_sym_var] = ACTIONS(2022), - [aux_sym_integer_token1] = ACTIONS(2022), - [aux_sym_integer_token2] = ACTIONS(2024), - [aux_sym_float_token1] = ACTIONS(2022), - [aux_sym_float_token2] = ACTIONS(2024), - [anon_sym_true] = ACTIONS(2022), - [anon_sym_false] = ACTIONS(2022), - [aux_sym_string_token1] = ACTIONS(2024), - [aux_sym_string_token3] = ACTIONS(2024), + [693] = { + [ts_builtin_sym_end] = ACTIONS(3016), + [sym_identifier] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(3016), + [anon_sym_package] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3014), + [anon_sym_throw] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_cast] = ACTIONS(3014), + [anon_sym_DOLLARtype] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3014), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_untyped] = ACTIONS(3014), + [anon_sym_break] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_this] = ACTIONS(3014), + [anon_sym_AT] = ACTIONS(3014), + [anon_sym_AT_COLON] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3014), + [anon_sym_catch] = ACTIONS(3014), + [anon_sym_else] = ACTIONS(3014), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_while] = ACTIONS(3014), + [anon_sym_do] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3016), + [anon_sym_PERCENT] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_LT_LT] = ACTIONS(3016), + [anon_sym_GT_GT] = ACTIONS(3014), + [anon_sym_GT_GT_GT] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_CARET] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3014), + [anon_sym_LT_EQ] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3014), + [anon_sym_GT_EQ] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(3016), + [anon_sym_QMARK_QMARK] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(3014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3016), + [anon_sym_null] = ACTIONS(3014), + [anon_sym_macro] = ACTIONS(3014), + [anon_sym_abstract] = ACTIONS(3014), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_public] = ACTIONS(3014), + [anon_sym_private] = ACTIONS(3014), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_overload] = ACTIONS(3014), + [anon_sym_override] = ACTIONS(3014), + [anon_sym_final] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_interface] = ACTIONS(3014), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_typedef] = ACTIONS(3014), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_var] = ACTIONS(3014), + [aux_sym_integer_token1] = ACTIONS(3014), + [aux_sym_integer_token2] = ACTIONS(3016), + [aux_sym_float_token1] = ACTIONS(3014), + [aux_sym_float_token2] = ACTIONS(3016), + [anon_sym_true] = ACTIONS(3014), + [anon_sym_false] = ACTIONS(3014), + [aux_sym_string_token1] = ACTIONS(3016), + [aux_sym_string_token3] = ACTIONS(3016), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [650] = { - [sym_else_clause] = STATE(470), - [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), - [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_for] = ACTIONS(1948), - [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_try] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [694] = { + [ts_builtin_sym_end] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3018), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_package] = ACTIONS(3018), + [anon_sym_import] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3018), + [anon_sym_throw] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_cast] = ACTIONS(3018), + [anon_sym_DOLLARtype] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3018), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_untyped] = ACTIONS(3018), + [anon_sym_break] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_this] = ACTIONS(3018), + [anon_sym_AT] = ACTIONS(3018), + [anon_sym_AT_COLON] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3018), + [anon_sym_catch] = ACTIONS(3018), + [anon_sym_else] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3018), + [anon_sym_while] = ACTIONS(3018), + [anon_sym_do] = ACTIONS(3018), + [anon_sym_new] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3018), + [anon_sym_PLUS] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_EQ_GT] = ACTIONS(3020), + [anon_sym_QMARK_QMARK] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3020), + [anon_sym_null] = ACTIONS(3018), + [anon_sym_macro] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3018), + [anon_sym_public] = ACTIONS(3018), + [anon_sym_private] = ACTIONS(3018), + [anon_sym_extern] = ACTIONS(3018), + [anon_sym_inline] = ACTIONS(3018), + [anon_sym_overload] = ACTIONS(3018), + [anon_sym_override] = ACTIONS(3018), + [anon_sym_final] = ACTIONS(3018), + [anon_sym_class] = ACTIONS(3018), + [anon_sym_interface] = ACTIONS(3018), + [anon_sym_enum] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3018), + [anon_sym_function] = ACTIONS(3018), + [anon_sym_var] = ACTIONS(3018), + [aux_sym_integer_token1] = ACTIONS(3018), + [aux_sym_integer_token2] = ACTIONS(3020), + [aux_sym_float_token1] = ACTIONS(3018), + [aux_sym_float_token2] = ACTIONS(3020), + [anon_sym_true] = ACTIONS(3018), + [anon_sym_false] = ACTIONS(3018), + [aux_sym_string_token1] = ACTIONS(3020), + [aux_sym_string_token3] = ACTIONS(3020), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1950), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [651] = { - [ts_builtin_sym_end] = ACTIONS(2028), - [sym_identifier] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2028), - [anon_sym_package] = ACTIONS(2026), - [anon_sym_import] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_using] = ACTIONS(2026), - [anon_sym_throw] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2028), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_cast] = ACTIONS(2026), - [anon_sym_DOLLARtype] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_untyped] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_this] = ACTIONS(2026), - [anon_sym_AT] = ACTIONS(2026), - [anon_sym_AT_COLON] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2026), - [anon_sym_catch] = ACTIONS(2026), - [anon_sym_else] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_new] = ACTIONS(2026), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2028), - [anon_sym_SLASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_LT_LT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_GT_GT_GT] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_EQ_EQ] = ACTIONS(2028), - [anon_sym_BANG_EQ] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2026), - [anon_sym_GT_EQ] = ACTIONS(2028), - [anon_sym_EQ_GT] = ACTIONS(2028), - [anon_sym_QMARK_QMARK] = ACTIONS(2028), - [anon_sym_EQ] = ACTIONS(2026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2028), - [anon_sym_null] = ACTIONS(2026), - [anon_sym_macro] = ACTIONS(2026), - [anon_sym_abstract] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_public] = ACTIONS(2026), - [anon_sym_private] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [anon_sym_overload] = ACTIONS(2026), - [anon_sym_override] = ACTIONS(2026), - [anon_sym_final] = ACTIONS(2026), - [anon_sym_class] = ACTIONS(2026), - [anon_sym_interface] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_function] = ACTIONS(2026), - [anon_sym_var] = ACTIONS(2026), - [aux_sym_integer_token1] = ACTIONS(2026), - [aux_sym_integer_token2] = ACTIONS(2028), - [aux_sym_float_token1] = ACTIONS(2026), - [aux_sym_float_token2] = ACTIONS(2028), - [anon_sym_true] = ACTIONS(2026), - [anon_sym_false] = ACTIONS(2026), - [aux_sym_string_token1] = ACTIONS(2028), - [aux_sym_string_token3] = ACTIONS(2028), + [695] = { + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3022), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_package] = ACTIONS(3022), + [anon_sym_import] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3022), + [anon_sym_throw] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_cast] = ACTIONS(3022), + [anon_sym_DOLLARtype] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3022), + [anon_sym_untyped] = ACTIONS(3022), + [anon_sym_break] = ACTIONS(3022), + [anon_sym_continue] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3022), + [anon_sym_AT] = ACTIONS(3022), + [anon_sym_AT_COLON] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3022), + [anon_sym_catch] = ACTIONS(3022), + [anon_sym_else] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_while] = ACTIONS(3022), + [anon_sym_do] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(3024), + [anon_sym_QMARK_QMARK] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3022), + [anon_sym_macro] = ACTIONS(3022), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_public] = ACTIONS(3022), + [anon_sym_private] = ACTIONS(3022), + [anon_sym_extern] = ACTIONS(3022), + [anon_sym_inline] = ACTIONS(3022), + [anon_sym_overload] = ACTIONS(3022), + [anon_sym_override] = ACTIONS(3022), + [anon_sym_final] = ACTIONS(3022), + [anon_sym_class] = ACTIONS(3022), + [anon_sym_interface] = ACTIONS(3022), + [anon_sym_enum] = ACTIONS(3022), + [anon_sym_typedef] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3022), + [anon_sym_var] = ACTIONS(3022), + [aux_sym_integer_token1] = ACTIONS(3022), + [aux_sym_integer_token2] = ACTIONS(3024), + [aux_sym_float_token1] = ACTIONS(3022), + [aux_sym_float_token2] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3022), + [anon_sym_false] = ACTIONS(3022), + [aux_sym_string_token1] = ACTIONS(3024), + [aux_sym_string_token3] = ACTIONS(3024), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(2032), - [sym_identifier] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2032), - [anon_sym_package] = ACTIONS(2030), - [anon_sym_import] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2032), - [anon_sym_using] = ACTIONS(2030), - [anon_sym_throw] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2032), - [anon_sym_switch] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_cast] = ACTIONS(2030), - [anon_sym_DOLLARtype] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_untyped] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_this] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2030), - [anon_sym_AT_COLON] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2030), - [anon_sym_catch] = ACTIONS(2030), - [anon_sym_else] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [anon_sym_do] = ACTIONS(2030), - [anon_sym_new] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2032), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_PERCENT] = ACTIONS(2032), - [anon_sym_SLASH] = ACTIONS(2030), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_GT_GT_GT] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_CARET] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_EQ_EQ] = ACTIONS(2032), - [anon_sym_BANG_EQ] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_LT_EQ] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2030), - [anon_sym_GT_EQ] = ACTIONS(2032), - [anon_sym_EQ_GT] = ACTIONS(2032), - [anon_sym_QMARK_QMARK] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(2030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2032), - [anon_sym_null] = ACTIONS(2030), - [anon_sym_macro] = ACTIONS(2030), - [anon_sym_abstract] = ACTIONS(2030), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_public] = ACTIONS(2030), - [anon_sym_private] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2030), - [anon_sym_inline] = ACTIONS(2030), - [anon_sym_overload] = ACTIONS(2030), - [anon_sym_override] = ACTIONS(2030), - [anon_sym_final] = ACTIONS(2030), - [anon_sym_class] = ACTIONS(2030), - [anon_sym_interface] = ACTIONS(2030), - [anon_sym_enum] = ACTIONS(2030), - [anon_sym_typedef] = ACTIONS(2030), - [anon_sym_function] = ACTIONS(2030), - [anon_sym_var] = ACTIONS(2030), - [aux_sym_integer_token1] = ACTIONS(2030), - [aux_sym_integer_token2] = ACTIONS(2032), - [aux_sym_float_token1] = ACTIONS(2030), - [aux_sym_float_token2] = ACTIONS(2032), - [anon_sym_true] = ACTIONS(2030), - [anon_sym_false] = ACTIONS(2030), - [aux_sym_string_token1] = ACTIONS(2032), - [aux_sym_string_token3] = ACTIONS(2032), + [696] = { + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3026), + [anon_sym_POUND] = ACTIONS(3028), + [anon_sym_package] = ACTIONS(3026), + [anon_sym_import] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3026), + [anon_sym_throw] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_cast] = ACTIONS(3026), + [anon_sym_DOLLARtype] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_untyped] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_this] = ACTIONS(3026), + [anon_sym_AT] = ACTIONS(3026), + [anon_sym_AT_COLON] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3026), + [anon_sym_catch] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_do] = ACTIONS(3026), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3028), + [anon_sym_PERCENT] = ACTIONS(3028), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3028), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_GT_GT_GT] = ACTIONS(3028), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3028), + [anon_sym_AMP_AMP] = ACTIONS(3028), + [anon_sym_PIPE_PIPE] = ACTIONS(3028), + [anon_sym_EQ_EQ] = ACTIONS(3028), + [anon_sym_BANG_EQ] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3028), + [anon_sym_EQ_GT] = ACTIONS(3028), + [anon_sym_QMARK_QMARK] = ACTIONS(3028), + [anon_sym_EQ] = ACTIONS(3026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3028), + [anon_sym_null] = ACTIONS(3026), + [anon_sym_macro] = ACTIONS(3026), + [anon_sym_abstract] = ACTIONS(3026), + [anon_sym_static] = ACTIONS(3026), + [anon_sym_public] = ACTIONS(3026), + [anon_sym_private] = ACTIONS(3026), + [anon_sym_extern] = ACTIONS(3026), + [anon_sym_inline] = ACTIONS(3026), + [anon_sym_overload] = ACTIONS(3026), + [anon_sym_override] = ACTIONS(3026), + [anon_sym_final] = ACTIONS(3026), + [anon_sym_class] = ACTIONS(3026), + [anon_sym_interface] = ACTIONS(3026), + [anon_sym_enum] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3026), + [anon_sym_function] = ACTIONS(3026), + [anon_sym_var] = ACTIONS(3026), + [aux_sym_integer_token1] = ACTIONS(3026), + [aux_sym_integer_token2] = ACTIONS(3028), + [aux_sym_float_token1] = ACTIONS(3026), + [aux_sym_float_token2] = ACTIONS(3028), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [aux_sym_string_token1] = ACTIONS(3028), + [aux_sym_string_token3] = ACTIONS(3028), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(2036), - [sym_identifier] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2036), - [anon_sym_package] = ACTIONS(2034), - [anon_sym_import] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2034), - [anon_sym_throw] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2036), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_cast] = ACTIONS(2034), - [anon_sym_DOLLARtype] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_untyped] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_this] = ACTIONS(2034), - [anon_sym_AT] = ACTIONS(2034), - [anon_sym_AT_COLON] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2034), - [anon_sym_catch] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_new] = ACTIONS(2034), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_PERCENT] = ACTIONS(2036), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_GT_GT_GT] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2034), - [anon_sym_GT_EQ] = ACTIONS(2036), - [anon_sym_EQ_GT] = ACTIONS(2036), - [anon_sym_QMARK_QMARK] = ACTIONS(2036), - [anon_sym_EQ] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2034), - [anon_sym_macro] = ACTIONS(2034), - [anon_sym_abstract] = ACTIONS(2034), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym_inline] = ACTIONS(2034), - [anon_sym_overload] = ACTIONS(2034), - [anon_sym_override] = ACTIONS(2034), - [anon_sym_final] = ACTIONS(2034), - [anon_sym_class] = ACTIONS(2034), - [anon_sym_interface] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_typedef] = ACTIONS(2034), - [anon_sym_function] = ACTIONS(2034), - [anon_sym_var] = ACTIONS(2034), - [aux_sym_integer_token1] = ACTIONS(2034), - [aux_sym_integer_token2] = ACTIONS(2036), - [aux_sym_float_token1] = ACTIONS(2034), - [aux_sym_float_token2] = ACTIONS(2036), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [aux_sym_string_token1] = ACTIONS(2036), - [aux_sym_string_token3] = ACTIONS(2036), + [697] = { + [ts_builtin_sym_end] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3032), + [anon_sym_package] = ACTIONS(3030), + [anon_sym_import] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_using] = ACTIONS(3030), + [anon_sym_throw] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_cast] = ACTIONS(3030), + [anon_sym_DOLLARtype] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_untyped] = ACTIONS(3030), + [anon_sym_break] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_this] = ACTIONS(3030), + [anon_sym_AT] = ACTIONS(3030), + [anon_sym_AT_COLON] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3030), + [anon_sym_catch] = ACTIONS(3030), + [anon_sym_else] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_while] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_GT_GT_GT] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_CARET] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_EQ_GT] = ACTIONS(3032), + [anon_sym_QMARK_QMARK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3030), + [anon_sym_macro] = ACTIONS(3030), + [anon_sym_abstract] = ACTIONS(3030), + [anon_sym_static] = ACTIONS(3030), + [anon_sym_public] = ACTIONS(3030), + [anon_sym_private] = ACTIONS(3030), + [anon_sym_extern] = ACTIONS(3030), + [anon_sym_inline] = ACTIONS(3030), + [anon_sym_overload] = ACTIONS(3030), + [anon_sym_override] = ACTIONS(3030), + [anon_sym_final] = ACTIONS(3030), + [anon_sym_class] = ACTIONS(3030), + [anon_sym_interface] = ACTIONS(3030), + [anon_sym_enum] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3030), + [anon_sym_var] = ACTIONS(3030), + [aux_sym_integer_token1] = ACTIONS(3030), + [aux_sym_integer_token2] = ACTIONS(3032), + [aux_sym_float_token1] = ACTIONS(3030), + [aux_sym_float_token2] = ACTIONS(3032), + [anon_sym_true] = ACTIONS(3030), + [anon_sym_false] = ACTIONS(3030), + [aux_sym_string_token1] = ACTIONS(3032), + [aux_sym_string_token3] = ACTIONS(3032), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [654] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2040), - [anon_sym_package] = ACTIONS(2038), - [anon_sym_import] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_using] = ACTIONS(2038), - [anon_sym_throw] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_cast] = ACTIONS(2038), - [anon_sym_DOLLARtype] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_untyped] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(2038), - [anon_sym_AT] = ACTIONS(2038), - [anon_sym_AT_COLON] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2038), - [anon_sym_catch] = ACTIONS(2038), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_new] = ACTIONS(2038), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PERCENT] = ACTIONS(2040), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_GT_GT] = ACTIONS(2038), - [anon_sym_GT_GT_GT] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP_AMP] = ACTIONS(2040), - [anon_sym_PIPE_PIPE] = ACTIONS(2040), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2040), - [anon_sym_EQ_GT] = ACTIONS(2040), - [anon_sym_QMARK_QMARK] = ACTIONS(2040), - [anon_sym_EQ] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2040), - [anon_sym_null] = ACTIONS(2038), - [anon_sym_macro] = ACTIONS(2038), - [anon_sym_abstract] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_public] = ACTIONS(2038), - [anon_sym_private] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [anon_sym_overload] = ACTIONS(2038), - [anon_sym_override] = ACTIONS(2038), - [anon_sym_final] = ACTIONS(2038), - [anon_sym_class] = ACTIONS(2038), - [anon_sym_interface] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_function] = ACTIONS(2038), - [anon_sym_var] = ACTIONS(2038), - [aux_sym_integer_token1] = ACTIONS(2038), - [aux_sym_integer_token2] = ACTIONS(2040), - [aux_sym_float_token1] = ACTIONS(2038), - [aux_sym_float_token2] = ACTIONS(2040), - [anon_sym_true] = ACTIONS(2038), - [anon_sym_false] = ACTIONS(2038), - [aux_sym_string_token1] = ACTIONS(2040), - [aux_sym_string_token3] = ACTIONS(2040), + [698] = { + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3036), + [anon_sym_package] = ACTIONS(3034), + [anon_sym_import] = ACTIONS(3034), + [anon_sym_STAR] = ACTIONS(3036), + [anon_sym_using] = ACTIONS(3034), + [anon_sym_throw] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3034), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_cast] = ACTIONS(3034), + [anon_sym_DOLLARtype] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3034), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_untyped] = ACTIONS(3034), + [anon_sym_break] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_this] = ACTIONS(3034), + [anon_sym_AT] = ACTIONS(3034), + [anon_sym_AT_COLON] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3034), + [anon_sym_catch] = ACTIONS(3034), + [anon_sym_else] = ACTIONS(3034), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_while] = ACTIONS(3034), + [anon_sym_do] = ACTIONS(3034), + [anon_sym_new] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_SLASH] = ACTIONS(3034), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3034), + [anon_sym_GT_GT_GT] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_EQ_GT] = ACTIONS(3036), + [anon_sym_QMARK_QMARK] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3036), + [anon_sym_null] = ACTIONS(3034), + [anon_sym_macro] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3034), + [anon_sym_static] = ACTIONS(3034), + [anon_sym_public] = ACTIONS(3034), + [anon_sym_private] = ACTIONS(3034), + [anon_sym_extern] = ACTIONS(3034), + [anon_sym_inline] = ACTIONS(3034), + [anon_sym_overload] = ACTIONS(3034), + [anon_sym_override] = ACTIONS(3034), + [anon_sym_final] = ACTIONS(3034), + [anon_sym_class] = ACTIONS(3034), + [anon_sym_interface] = ACTIONS(3034), + [anon_sym_enum] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3034), + [anon_sym_function] = ACTIONS(3034), + [anon_sym_var] = ACTIONS(3034), + [aux_sym_integer_token1] = ACTIONS(3034), + [aux_sym_integer_token2] = ACTIONS(3036), + [aux_sym_float_token1] = ACTIONS(3034), + [aux_sym_float_token2] = ACTIONS(3036), + [anon_sym_true] = ACTIONS(3034), + [anon_sym_false] = ACTIONS(3034), + [aux_sym_string_token1] = ACTIONS(3036), + [aux_sym_string_token3] = ACTIONS(3036), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [655] = { - [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_STAR] = ACTIONS(2350), - [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_for] = ACTIONS(2348), - [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_try] = ACTIONS(2348), - [anon_sym_catch] = ACTIONS(2348), - [anon_sym_else] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [699] = { + [ts_builtin_sym_end] = ACTIONS(3318), + [sym_identifier] = ACTIONS(3316), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_package] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_cast] = ACTIONS(3316), + [anon_sym_DOLLARtype] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_untyped] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_this] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_AT_COLON] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_catch] = ACTIONS(3316), + [anon_sym_else] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3316), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3316), + [anon_sym_PIPE] = ACTIONS(3316), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3316), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_QMARK_QMARK] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_macro] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym_inline] = ACTIONS(3316), + [anon_sym_overload] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_final] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_typedef] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [aux_sym_integer_token1] = ACTIONS(3316), + [aux_sym_integer_token2] = ACTIONS(3318), + [aux_sym_float_token1] = ACTIONS(3316), + [aux_sym_float_token2] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3316), + [anon_sym_false] = ACTIONS(3316), + [aux_sym_string_token1] = ACTIONS(3318), + [aux_sym_string_token3] = ACTIONS(3318), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [656] = { - [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_STAR] = ACTIONS(2354), - [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_for] = ACTIONS(2352), - [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_try] = ACTIONS(2352), - [anon_sym_catch] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [700] = { + [ts_builtin_sym_end] = ACTIONS(3040), + [sym_identifier] = ACTIONS(3038), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_package] = ACTIONS(3038), + [anon_sym_import] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_using] = ACTIONS(3038), + [anon_sym_throw] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_cast] = ACTIONS(3038), + [anon_sym_DOLLARtype] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3038), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_untyped] = ACTIONS(3038), + [anon_sym_break] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_this] = ACTIONS(3038), + [anon_sym_AT] = ACTIONS(3038), + [anon_sym_AT_COLON] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3038), + [anon_sym_catch] = ACTIONS(3038), + [anon_sym_else] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_while] = ACTIONS(3038), + [anon_sym_do] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3038), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_EQ_GT] = ACTIONS(3040), + [anon_sym_QMARK_QMARK] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3038), + [anon_sym_macro] = ACTIONS(3038), + [anon_sym_abstract] = ACTIONS(3038), + [anon_sym_static] = ACTIONS(3038), + [anon_sym_public] = ACTIONS(3038), + [anon_sym_private] = ACTIONS(3038), + [anon_sym_extern] = ACTIONS(3038), + [anon_sym_inline] = ACTIONS(3038), + [anon_sym_overload] = ACTIONS(3038), + [anon_sym_override] = ACTIONS(3038), + [anon_sym_final] = ACTIONS(3038), + [anon_sym_class] = ACTIONS(3038), + [anon_sym_interface] = ACTIONS(3038), + [anon_sym_enum] = ACTIONS(3038), + [anon_sym_typedef] = ACTIONS(3038), + [anon_sym_function] = ACTIONS(3038), + [anon_sym_var] = ACTIONS(3038), + [aux_sym_integer_token1] = ACTIONS(3038), + [aux_sym_integer_token2] = ACTIONS(3040), + [aux_sym_float_token1] = ACTIONS(3038), + [aux_sym_float_token2] = ACTIONS(3040), + [anon_sym_true] = ACTIONS(3038), + [anon_sym_false] = ACTIONS(3038), + [aux_sym_string_token1] = ACTIONS(3040), + [aux_sym_string_token3] = ACTIONS(3040), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [657] = { - [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_STAR] = ACTIONS(2358), - [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_for] = ACTIONS(2356), - [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_try] = ACTIONS(2356), - [anon_sym_catch] = ACTIONS(2356), - [anon_sym_else] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [701] = { + [ts_builtin_sym_end] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3268), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_package] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_cast] = ACTIONS(3268), + [anon_sym_DOLLARtype] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_untyped] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_AT_COLON] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_catch] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3268), + [anon_sym_GT_GT_GT] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_PIPE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3270), + [anon_sym_QMARK_QMARK] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_macro] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_overload] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [aux_sym_integer_token1] = ACTIONS(3268), + [aux_sym_integer_token2] = ACTIONS(3270), + [aux_sym_float_token1] = ACTIONS(3268), + [aux_sym_float_token2] = ACTIONS(3270), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [aux_sym_string_token1] = ACTIONS(3270), + [aux_sym_string_token3] = ACTIONS(3270), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [658] = { - [ts_builtin_sym_end] = ACTIONS(2362), - [sym_identifier] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(2362), - [anon_sym_package] = ACTIONS(2360), - [anon_sym_import] = ACTIONS(2360), - [anon_sym_STAR] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2360), - [anon_sym_throw] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2360), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_cast] = ACTIONS(2360), - [anon_sym_DOLLARtype] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2360), - [anon_sym_return] = ACTIONS(2360), - [anon_sym_untyped] = ACTIONS(2360), - [anon_sym_break] = ACTIONS(2360), - [anon_sym_continue] = ACTIONS(2360), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_this] = ACTIONS(2360), - [anon_sym_AT] = ACTIONS(2360), - [anon_sym_AT_COLON] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2360), - [anon_sym_catch] = ACTIONS(2360), - [anon_sym_else] = ACTIONS(2360), - [anon_sym_if] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2360), - [anon_sym_do] = ACTIONS(2360), - [anon_sym_new] = ACTIONS(2360), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2360), - [anon_sym_DASH] = ACTIONS(2360), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [anon_sym_PERCENT] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2360), - [anon_sym_PLUS] = ACTIONS(2360), - [anon_sym_LT_LT] = ACTIONS(2362), - [anon_sym_GT_GT] = ACTIONS(2360), - [anon_sym_GT_GT_GT] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2362), - [anon_sym_PIPE_PIPE] = ACTIONS(2362), - [anon_sym_EQ_EQ] = ACTIONS(2362), - [anon_sym_BANG_EQ] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2360), - [anon_sym_LT_EQ] = ACTIONS(2362), - [anon_sym_GT] = ACTIONS(2360), - [anon_sym_GT_EQ] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(2362), - [anon_sym_QMARK_QMARK] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2362), - [anon_sym_null] = ACTIONS(2360), - [anon_sym_macro] = ACTIONS(2360), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_static] = ACTIONS(2360), - [anon_sym_public] = ACTIONS(2360), - [anon_sym_private] = ACTIONS(2360), - [anon_sym_extern] = ACTIONS(2360), - [anon_sym_inline] = ACTIONS(2360), - [anon_sym_overload] = ACTIONS(2360), - [anon_sym_override] = ACTIONS(2360), - [anon_sym_final] = ACTIONS(2360), - [anon_sym_class] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2360), - [anon_sym_enum] = ACTIONS(2360), - [anon_sym_typedef] = ACTIONS(2360), - [anon_sym_function] = ACTIONS(2360), - [anon_sym_var] = ACTIONS(2360), - [aux_sym_integer_token1] = ACTIONS(2360), - [aux_sym_integer_token2] = ACTIONS(2362), - [aux_sym_float_token1] = ACTIONS(2360), - [aux_sym_float_token2] = ACTIONS(2362), - [anon_sym_true] = ACTIONS(2360), - [anon_sym_false] = ACTIONS(2360), - [aux_sym_string_token1] = ACTIONS(2362), - [aux_sym_string_token3] = ACTIONS(2362), + [702] = { + [ts_builtin_sym_end] = ACTIONS(3044), + [sym_identifier] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_package] = ACTIONS(3042), + [anon_sym_import] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_using] = ACTIONS(3042), + [anon_sym_throw] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_cast] = ACTIONS(3042), + [anon_sym_DOLLARtype] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_untyped] = ACTIONS(3042), + [anon_sym_break] = ACTIONS(3042), + [anon_sym_continue] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_this] = ACTIONS(3042), + [anon_sym_AT] = ACTIONS(3042), + [anon_sym_AT_COLON] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3042), + [anon_sym_catch] = ACTIONS(3042), + [anon_sym_else] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_do] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3042), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_EQ_GT] = ACTIONS(3044), + [anon_sym_QMARK_QMARK] = ACTIONS(3044), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3042), + [anon_sym_macro] = ACTIONS(3042), + [anon_sym_abstract] = ACTIONS(3042), + [anon_sym_static] = ACTIONS(3042), + [anon_sym_public] = ACTIONS(3042), + [anon_sym_private] = ACTIONS(3042), + [anon_sym_extern] = ACTIONS(3042), + [anon_sym_inline] = ACTIONS(3042), + [anon_sym_overload] = ACTIONS(3042), + [anon_sym_override] = ACTIONS(3042), + [anon_sym_final] = ACTIONS(3042), + [anon_sym_class] = ACTIONS(3042), + [anon_sym_interface] = ACTIONS(3042), + [anon_sym_enum] = ACTIONS(3042), + [anon_sym_typedef] = ACTIONS(3042), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_var] = ACTIONS(3042), + [aux_sym_integer_token1] = ACTIONS(3042), + [aux_sym_integer_token2] = ACTIONS(3044), + [aux_sym_float_token1] = ACTIONS(3042), + [aux_sym_float_token2] = ACTIONS(3044), + [anon_sym_true] = ACTIONS(3042), + [anon_sym_false] = ACTIONS(3042), + [aux_sym_string_token1] = ACTIONS(3044), + [aux_sym_string_token3] = ACTIONS(3044), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [659] = { - [ts_builtin_sym_end] = ACTIONS(2366), - [sym_identifier] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(2366), - [anon_sym_package] = ACTIONS(2364), - [anon_sym_import] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2366), - [anon_sym_using] = ACTIONS(2364), - [anon_sym_throw] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_switch] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2366), - [anon_sym_cast] = ACTIONS(2364), - [anon_sym_DOLLARtype] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2364), - [anon_sym_return] = ACTIONS(2364), - [anon_sym_untyped] = ACTIONS(2364), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2364), - [anon_sym_LBRACK] = ACTIONS(2366), - [anon_sym_this] = ACTIONS(2364), - [anon_sym_AT] = ACTIONS(2364), - [anon_sym_AT_COLON] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2364), - [anon_sym_catch] = ACTIONS(2364), - [anon_sym_else] = ACTIONS(2364), - [anon_sym_if] = ACTIONS(2364), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2364), - [anon_sym_TILDE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_PLUS_PLUS] = ACTIONS(2366), - [anon_sym_DASH_DASH] = ACTIONS(2366), - [anon_sym_PERCENT] = ACTIONS(2366), - [anon_sym_SLASH] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2366), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_GT_GT_GT] = ACTIONS(2366), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_CARET] = ACTIONS(2366), - [anon_sym_AMP_AMP] = ACTIONS(2366), - [anon_sym_PIPE_PIPE] = ACTIONS(2366), - [anon_sym_EQ_EQ] = ACTIONS(2366), - [anon_sym_BANG_EQ] = ACTIONS(2366), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_LT_EQ] = ACTIONS(2366), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_GT_EQ] = ACTIONS(2366), - [anon_sym_EQ_GT] = ACTIONS(2366), - [anon_sym_QMARK_QMARK] = ACTIONS(2366), - [anon_sym_EQ] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), - [anon_sym_null] = ACTIONS(2364), - [anon_sym_macro] = ACTIONS(2364), - [anon_sym_abstract] = ACTIONS(2364), - [anon_sym_static] = ACTIONS(2364), - [anon_sym_public] = ACTIONS(2364), - [anon_sym_private] = ACTIONS(2364), - [anon_sym_extern] = ACTIONS(2364), - [anon_sym_inline] = ACTIONS(2364), - [anon_sym_overload] = ACTIONS(2364), - [anon_sym_override] = ACTIONS(2364), - [anon_sym_final] = ACTIONS(2364), - [anon_sym_class] = ACTIONS(2364), - [anon_sym_interface] = ACTIONS(2364), - [anon_sym_enum] = ACTIONS(2364), - [anon_sym_typedef] = ACTIONS(2364), - [anon_sym_function] = ACTIONS(2364), - [anon_sym_var] = ACTIONS(2364), - [aux_sym_integer_token1] = ACTIONS(2364), - [aux_sym_integer_token2] = ACTIONS(2366), - [aux_sym_float_token1] = ACTIONS(2364), - [aux_sym_float_token2] = ACTIONS(2366), - [anon_sym_true] = ACTIONS(2364), - [anon_sym_false] = ACTIONS(2364), - [aux_sym_string_token1] = ACTIONS(2366), - [aux_sym_string_token3] = ACTIONS(2366), + [703] = { + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_identifier] = ACTIONS(3046), + [anon_sym_POUND] = ACTIONS(3048), + [anon_sym_package] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3046), + [anon_sym_throw] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_cast] = ACTIONS(3046), + [anon_sym_DOLLARtype] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_untyped] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3046), + [anon_sym_AT] = ACTIONS(3046), + [anon_sym_AT_COLON] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3046), + [anon_sym_catch] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_do] = ACTIONS(3046), + [anon_sym_new] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(3048), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_EQ_EQ] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3048), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_GT_EQ] = ACTIONS(3048), + [anon_sym_EQ_GT] = ACTIONS(3048), + [anon_sym_QMARK_QMARK] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3046), + [anon_sym_macro] = ACTIONS(3046), + [anon_sym_abstract] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym_inline] = ACTIONS(3046), + [anon_sym_overload] = ACTIONS(3046), + [anon_sym_override] = ACTIONS(3046), + [anon_sym_final] = ACTIONS(3046), + [anon_sym_class] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3046), + [anon_sym_var] = ACTIONS(3046), + [aux_sym_integer_token1] = ACTIONS(3046), + [aux_sym_integer_token2] = ACTIONS(3048), + [aux_sym_float_token1] = ACTIONS(3046), + [aux_sym_float_token2] = ACTIONS(3048), + [anon_sym_true] = ACTIONS(3046), + [anon_sym_false] = ACTIONS(3046), + [aux_sym_string_token1] = ACTIONS(3048), + [aux_sym_string_token3] = ACTIONS(3048), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [660] = { - [ts_builtin_sym_end] = ACTIONS(2044), - [sym_identifier] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2044), - [anon_sym_package] = ACTIONS(2042), - [anon_sym_import] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_using] = ACTIONS(2042), - [anon_sym_throw] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_switch] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_cast] = ACTIONS(2042), - [anon_sym_DOLLARtype] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_untyped] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_this] = ACTIONS(2042), - [anon_sym_AT] = ACTIONS(2042), - [anon_sym_AT_COLON] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2042), - [anon_sym_catch] = ACTIONS(2042), - [anon_sym_else] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_do] = ACTIONS(2042), - [anon_sym_new] = ACTIONS(2042), - [anon_sym_TILDE] = ACTIONS(2044), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_PLUS_PLUS] = ACTIONS(2044), - [anon_sym_DASH_DASH] = ACTIONS(2044), - [anon_sym_PERCENT] = ACTIONS(2044), - [anon_sym_SLASH] = ACTIONS(2042), - [anon_sym_PLUS] = ACTIONS(2042), - [anon_sym_LT_LT] = ACTIONS(2044), - [anon_sym_GT_GT] = ACTIONS(2042), - [anon_sym_GT_GT_GT] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_CARET] = ACTIONS(2044), - [anon_sym_AMP_AMP] = ACTIONS(2044), - [anon_sym_PIPE_PIPE] = ACTIONS(2044), - [anon_sym_EQ_EQ] = ACTIONS(2044), - [anon_sym_BANG_EQ] = ACTIONS(2044), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_LT_EQ] = ACTIONS(2044), - [anon_sym_GT] = ACTIONS(2042), - [anon_sym_GT_EQ] = ACTIONS(2044), - [anon_sym_EQ_GT] = ACTIONS(2044), - [anon_sym_QMARK_QMARK] = ACTIONS(2044), - [anon_sym_EQ] = ACTIONS(2042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2044), - [anon_sym_null] = ACTIONS(2042), - [anon_sym_macro] = ACTIONS(2042), - [anon_sym_abstract] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_public] = ACTIONS(2042), - [anon_sym_private] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym_inline] = ACTIONS(2042), - [anon_sym_overload] = ACTIONS(2042), - [anon_sym_override] = ACTIONS(2042), - [anon_sym_final] = ACTIONS(2042), - [anon_sym_class] = ACTIONS(2042), - [anon_sym_interface] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_typedef] = ACTIONS(2042), - [anon_sym_function] = ACTIONS(2042), - [anon_sym_var] = ACTIONS(2042), - [aux_sym_integer_token1] = ACTIONS(2042), - [aux_sym_integer_token2] = ACTIONS(2044), - [aux_sym_float_token1] = ACTIONS(2042), - [aux_sym_float_token2] = ACTIONS(2044), - [anon_sym_true] = ACTIONS(2042), - [anon_sym_false] = ACTIONS(2042), - [aux_sym_string_token1] = ACTIONS(2044), - [aux_sym_string_token3] = ACTIONS(2044), + [704] = { + [ts_builtin_sym_end] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_package] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_cast] = ACTIONS(3050), + [anon_sym_DOLLARtype] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_untyped] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(3050), + [anon_sym_AT_COLON] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_catch] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_do] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_EQ_GT] = ACTIONS(3052), + [anon_sym_QMARK_QMARK] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_macro] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_static] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_overload] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_class] = ACTIONS(3050), + [anon_sym_interface] = ACTIONS(3050), + [anon_sym_enum] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3050), + [anon_sym_var] = ACTIONS(3050), + [aux_sym_integer_token1] = ACTIONS(3050), + [aux_sym_integer_token2] = ACTIONS(3052), + [aux_sym_float_token1] = ACTIONS(3050), + [aux_sym_float_token2] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [aux_sym_string_token1] = ACTIONS(3052), + [aux_sym_string_token3] = ACTIONS(3052), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [661] = { - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(2370), - [anon_sym_package] = ACTIONS(2368), - [anon_sym_import] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_cast] = ACTIONS(2368), - [anon_sym_DOLLARtype] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2368), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_untyped] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_this] = ACTIONS(2368), - [anon_sym_AT] = ACTIONS(2368), - [anon_sym_AT_COLON] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2368), - [anon_sym_else] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_while] = ACTIONS(2368), - [anon_sym_do] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PERCENT] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_LT_LT] = ACTIONS(2370), - [anon_sym_GT_GT] = ACTIONS(2368), - [anon_sym_GT_GT_GT] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2368), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(2368), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_EQ_GT] = ACTIONS(2370), - [anon_sym_QMARK_QMARK] = ACTIONS(2370), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [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_enum] = 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(2370), - [aux_sym_float_token1] = ACTIONS(2368), - [aux_sym_float_token2] = ACTIONS(2370), - [anon_sym_true] = ACTIONS(2368), - [anon_sym_false] = ACTIONS(2368), - [aux_sym_string_token1] = ACTIONS(2370), - [aux_sym_string_token3] = ACTIONS(2370), + [705] = { + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3054), + [anon_sym_POUND] = ACTIONS(3056), + [anon_sym_package] = ACTIONS(3054), + [anon_sym_import] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_using] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_cast] = ACTIONS(3054), + [anon_sym_DOLLARtype] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_untyped] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_AT] = ACTIONS(3054), + [anon_sym_AT_COLON] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_catch] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_EQ_GT] = ACTIONS(3056), + [anon_sym_QMARK_QMARK] = ACTIONS(3056), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_macro] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_extern] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_overload] = ACTIONS(3054), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_class] = ACTIONS(3054), + [anon_sym_interface] = ACTIONS(3054), + [anon_sym_enum] = ACTIONS(3054), + [anon_sym_typedef] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_var] = ACTIONS(3054), + [aux_sym_integer_token1] = ACTIONS(3054), + [aux_sym_integer_token2] = ACTIONS(3056), + [aux_sym_float_token1] = ACTIONS(3054), + [aux_sym_float_token2] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [aux_sym_string_token1] = ACTIONS(3056), + [aux_sym_string_token3] = ACTIONS(3056), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [662] = { - [ts_builtin_sym_end] = ACTIONS(2374), - [sym_identifier] = ACTIONS(2372), - [anon_sym_POUND] = ACTIONS(2374), - [anon_sym_package] = ACTIONS(2372), - [anon_sym_import] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2372), - [anon_sym_throw] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_cast] = ACTIONS(2372), - [anon_sym_DOLLARtype] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_untyped] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_this] = ACTIONS(2372), - [anon_sym_AT] = ACTIONS(2372), - [anon_sym_AT_COLON] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2372), - [anon_sym_catch] = ACTIONS(2372), - [anon_sym_else] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2372), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PERCENT] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_LT_LT] = ACTIONS(2374), - [anon_sym_GT_GT] = ACTIONS(2372), - [anon_sym_GT_GT_GT] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_CARET] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2374), - [anon_sym_PIPE_PIPE] = ACTIONS(2374), - [anon_sym_EQ_EQ] = ACTIONS(2374), - [anon_sym_BANG_EQ] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_LT_EQ] = ACTIONS(2374), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_GT_EQ] = ACTIONS(2374), - [anon_sym_EQ_GT] = ACTIONS(2374), - [anon_sym_QMARK_QMARK] = ACTIONS(2374), - [anon_sym_EQ] = ACTIONS(2372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2374), - [anon_sym_null] = ACTIONS(2372), - [anon_sym_macro] = ACTIONS(2372), - [anon_sym_abstract] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_public] = ACTIONS(2372), - [anon_sym_private] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_inline] = ACTIONS(2372), - [anon_sym_overload] = ACTIONS(2372), - [anon_sym_override] = ACTIONS(2372), - [anon_sym_final] = ACTIONS(2372), - [anon_sym_class] = ACTIONS(2372), - [anon_sym_interface] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_typedef] = ACTIONS(2372), - [anon_sym_function] = ACTIONS(2372), - [anon_sym_var] = ACTIONS(2372), - [aux_sym_integer_token1] = ACTIONS(2372), - [aux_sym_integer_token2] = ACTIONS(2374), - [aux_sym_float_token1] = ACTIONS(2372), - [aux_sym_float_token2] = ACTIONS(2374), - [anon_sym_true] = ACTIONS(2372), - [anon_sym_false] = ACTIONS(2372), - [aux_sym_string_token1] = ACTIONS(2374), - [aux_sym_string_token3] = ACTIONS(2374), + [706] = { + [ts_builtin_sym_end] = ACTIONS(3060), + [sym_identifier] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3060), + [anon_sym_package] = ACTIONS(3058), + [anon_sym_import] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_cast] = ACTIONS(3058), + [anon_sym_DOLLARtype] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_untyped] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_AT] = ACTIONS(3058), + [anon_sym_AT_COLON] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_catch] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_EQ_GT] = ACTIONS(3060), + [anon_sym_QMARK_QMARK] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_macro] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_static] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_extern] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_overload] = ACTIONS(3058), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_typedef] = ACTIONS(3058), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_var] = ACTIONS(3058), + [aux_sym_integer_token1] = ACTIONS(3058), + [aux_sym_integer_token2] = ACTIONS(3060), + [aux_sym_float_token1] = ACTIONS(3058), + [aux_sym_float_token2] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [aux_sym_string_token1] = ACTIONS(3060), + [aux_sym_string_token3] = ACTIONS(3060), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [663] = { - [ts_builtin_sym_end] = ACTIONS(2378), - [sym_identifier] = ACTIONS(2376), - [anon_sym_POUND] = ACTIONS(2378), - [anon_sym_package] = ACTIONS(2376), - [anon_sym_import] = ACTIONS(2376), - [anon_sym_STAR] = ACTIONS(2378), - [anon_sym_using] = ACTIONS(2376), - [anon_sym_throw] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_switch] = ACTIONS(2376), - [anon_sym_LBRACE] = ACTIONS(2378), - [anon_sym_cast] = ACTIONS(2376), - [anon_sym_DOLLARtype] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2376), - [anon_sym_return] = ACTIONS(2376), - [anon_sym_untyped] = ACTIONS(2376), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2378), - [anon_sym_this] = ACTIONS(2376), - [anon_sym_AT] = ACTIONS(2376), - [anon_sym_AT_COLON] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2376), - [anon_sym_catch] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2376), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_while] = ACTIONS(2376), - [anon_sym_do] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2378), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2378), - [anon_sym_DASH_DASH] = ACTIONS(2378), - [anon_sym_PERCENT] = ACTIONS(2378), - [anon_sym_SLASH] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2378), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_GT_GT_GT] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2378), - [anon_sym_AMP_AMP] = ACTIONS(2378), - [anon_sym_PIPE_PIPE] = ACTIONS(2378), - [anon_sym_EQ_EQ] = ACTIONS(2378), - [anon_sym_BANG_EQ] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2378), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_GT_EQ] = ACTIONS(2378), - [anon_sym_EQ_GT] = ACTIONS(2378), - [anon_sym_QMARK_QMARK] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2378), - [anon_sym_null] = ACTIONS(2376), - [anon_sym_macro] = ACTIONS(2376), - [anon_sym_abstract] = ACTIONS(2376), - [anon_sym_static] = ACTIONS(2376), - [anon_sym_public] = ACTIONS(2376), - [anon_sym_private] = ACTIONS(2376), - [anon_sym_extern] = ACTIONS(2376), - [anon_sym_inline] = ACTIONS(2376), - [anon_sym_overload] = ACTIONS(2376), - [anon_sym_override] = ACTIONS(2376), - [anon_sym_final] = ACTIONS(2376), - [anon_sym_class] = ACTIONS(2376), - [anon_sym_interface] = ACTIONS(2376), - [anon_sym_enum] = ACTIONS(2376), - [anon_sym_typedef] = ACTIONS(2376), - [anon_sym_function] = ACTIONS(2376), - [anon_sym_var] = ACTIONS(2376), - [aux_sym_integer_token1] = ACTIONS(2376), - [aux_sym_integer_token2] = ACTIONS(2378), - [aux_sym_float_token1] = ACTIONS(2376), - [aux_sym_float_token2] = ACTIONS(2378), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [aux_sym_string_token1] = ACTIONS(2378), - [aux_sym_string_token3] = ACTIONS(2378), + [707] = { + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3064), + [anon_sym_package] = ACTIONS(3062), + [anon_sym_import] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_using] = ACTIONS(3062), + [anon_sym_throw] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3064), + [anon_sym_switch] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3064), + [anon_sym_cast] = ACTIONS(3062), + [anon_sym_DOLLARtype] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_untyped] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3062), + [anon_sym_continue] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_this] = ACTIONS(3062), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_AT_COLON] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_catch] = ACTIONS(3062), + [anon_sym_else] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(3064), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_PIPE_PIPE] = ACTIONS(3064), + [anon_sym_EQ_EQ] = ACTIONS(3064), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_LT_EQ] = ACTIONS(3064), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3064), + [anon_sym_EQ_GT] = ACTIONS(3064), + [anon_sym_QMARK_QMARK] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(3062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_macro] = ACTIONS(3062), + [anon_sym_abstract] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3062), + [anon_sym_public] = ACTIONS(3062), + [anon_sym_private] = ACTIONS(3062), + [anon_sym_extern] = ACTIONS(3062), + [anon_sym_inline] = ACTIONS(3062), + [anon_sym_overload] = ACTIONS(3062), + [anon_sym_override] = ACTIONS(3062), + [anon_sym_final] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3062), + [anon_sym_interface] = ACTIONS(3062), + [anon_sym_enum] = ACTIONS(3062), + [anon_sym_typedef] = ACTIONS(3062), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_var] = ACTIONS(3062), + [aux_sym_integer_token1] = ACTIONS(3062), + [aux_sym_integer_token2] = ACTIONS(3064), + [aux_sym_float_token1] = ACTIONS(3062), + [aux_sym_float_token2] = ACTIONS(3064), + [anon_sym_true] = ACTIONS(3062), + [anon_sym_false] = ACTIONS(3062), + [aux_sym_string_token1] = ACTIONS(3064), + [aux_sym_string_token3] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(2386), - [sym_identifier] = ACTIONS(2384), - [anon_sym_POUND] = ACTIONS(2386), - [anon_sym_package] = ACTIONS(2384), - [anon_sym_import] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_using] = ACTIONS(2384), - [anon_sym_throw] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2386), - [anon_sym_switch] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2386), - [anon_sym_cast] = ACTIONS(2384), - [anon_sym_DOLLARtype] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_untyped] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2386), - [anon_sym_this] = ACTIONS(2384), - [anon_sym_AT] = ACTIONS(2384), - [anon_sym_AT_COLON] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_GT_GT_GT] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_EQ_GT] = ACTIONS(2386), - [anon_sym_QMARK_QMARK] = ACTIONS(2386), - [anon_sym_EQ] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_null] = ACTIONS(2384), - [anon_sym_macro] = ACTIONS(2384), - [anon_sym_abstract] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2384), - [anon_sym_public] = ACTIONS(2384), - [anon_sym_private] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym_inline] = ACTIONS(2384), - [anon_sym_overload] = ACTIONS(2384), - [anon_sym_override] = ACTIONS(2384), - [anon_sym_final] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2384), - [anon_sym_interface] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2384), - [anon_sym_typedef] = ACTIONS(2384), - [anon_sym_function] = ACTIONS(2384), - [anon_sym_var] = ACTIONS(2384), - [aux_sym_integer_token1] = ACTIONS(2384), - [aux_sym_integer_token2] = ACTIONS(2386), - [aux_sym_float_token1] = ACTIONS(2384), - [aux_sym_float_token2] = ACTIONS(2386), - [anon_sym_true] = ACTIONS(2384), - [anon_sym_false] = ACTIONS(2384), - [aux_sym_string_token1] = ACTIONS(2386), - [aux_sym_string_token3] = ACTIONS(2386), + [708] = { + [ts_builtin_sym_end] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3066), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_package] = ACTIONS(3066), + [anon_sym_import] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_using] = ACTIONS(3066), + [anon_sym_throw] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_cast] = ACTIONS(3066), + [anon_sym_DOLLARtype] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_untyped] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_this] = ACTIONS(3066), + [anon_sym_AT] = ACTIONS(3066), + [anon_sym_AT_COLON] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3066), + [anon_sym_catch] = ACTIONS(3066), + [anon_sym_else] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_while] = ACTIONS(3066), + [anon_sym_do] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_EQ_GT] = ACTIONS(3068), + [anon_sym_QMARK_QMARK] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3066), + [anon_sym_macro] = ACTIONS(3066), + [anon_sym_abstract] = ACTIONS(3066), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_extern] = ACTIONS(3066), + [anon_sym_inline] = ACTIONS(3066), + [anon_sym_overload] = ACTIONS(3066), + [anon_sym_override] = ACTIONS(3066), + [anon_sym_final] = ACTIONS(3066), + [anon_sym_class] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), + [anon_sym_typedef] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3066), + [anon_sym_var] = ACTIONS(3066), + [aux_sym_integer_token1] = ACTIONS(3066), + [aux_sym_integer_token2] = ACTIONS(3068), + [aux_sym_float_token1] = ACTIONS(3066), + [aux_sym_float_token2] = ACTIONS(3068), + [anon_sym_true] = ACTIONS(3066), + [anon_sym_false] = ACTIONS(3066), + [aux_sym_string_token1] = ACTIONS(3068), + [aux_sym_string_token3] = ACTIONS(3068), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [665] = { - [ts_builtin_sym_end] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2394), - [anon_sym_package] = ACTIONS(2392), - [anon_sym_import] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2392), - [anon_sym_throw] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_cast] = ACTIONS(2392), - [anon_sym_DOLLARtype] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_untyped] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_this] = ACTIONS(2392), - [anon_sym_AT] = ACTIONS(2392), - [anon_sym_AT_COLON] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2392), - [anon_sym_catch] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_do] = ACTIONS(2392), - [anon_sym_new] = ACTIONS(2392), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [anon_sym_PERCENT] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2392), - [anon_sym_PLUS] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2394), - [anon_sym_GT_GT] = ACTIONS(2392), - [anon_sym_GT_GT_GT] = ACTIONS(2394), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_CARET] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2394), - [anon_sym_PIPE_PIPE] = ACTIONS(2394), - [anon_sym_EQ_EQ] = ACTIONS(2394), - [anon_sym_BANG_EQ] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_LT_EQ] = ACTIONS(2394), - [anon_sym_GT] = ACTIONS(2392), - [anon_sym_GT_EQ] = ACTIONS(2394), - [anon_sym_EQ_GT] = ACTIONS(2394), - [anon_sym_QMARK_QMARK] = ACTIONS(2394), - [anon_sym_EQ] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2394), - [anon_sym_null] = ACTIONS(2392), - [anon_sym_macro] = ACTIONS(2392), - [anon_sym_abstract] = ACTIONS(2392), - [anon_sym_static] = ACTIONS(2392), - [anon_sym_public] = ACTIONS(2392), - [anon_sym_private] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2392), - [anon_sym_inline] = ACTIONS(2392), - [anon_sym_overload] = ACTIONS(2392), - [anon_sym_override] = ACTIONS(2392), - [anon_sym_final] = ACTIONS(2392), - [anon_sym_class] = ACTIONS(2392), - [anon_sym_interface] = ACTIONS(2392), - [anon_sym_enum] = ACTIONS(2392), - [anon_sym_typedef] = ACTIONS(2392), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_var] = ACTIONS(2392), - [aux_sym_integer_token1] = ACTIONS(2392), - [aux_sym_integer_token2] = ACTIONS(2394), - [aux_sym_float_token1] = ACTIONS(2392), - [aux_sym_float_token2] = ACTIONS(2394), - [anon_sym_true] = ACTIONS(2392), - [anon_sym_false] = ACTIONS(2392), - [aux_sym_string_token1] = ACTIONS(2394), - [aux_sym_string_token3] = ACTIONS(2394), + [709] = { + [ts_builtin_sym_end] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3276), + [anon_sym_POUND] = ACTIONS(3278), + [anon_sym_package] = ACTIONS(3276), + [anon_sym_import] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3276), + [anon_sym_throw] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_cast] = ACTIONS(3276), + [anon_sym_DOLLARtype] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_untyped] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_this] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_AT_COLON] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3276), + [anon_sym_catch] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_do] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [anon_sym_PERCENT] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3276), + [anon_sym_LT_LT] = ACTIONS(3278), + [anon_sym_GT_GT] = ACTIONS(3276), + [anon_sym_GT_GT_GT] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(3276), + [anon_sym_CARET] = ACTIONS(3278), + [anon_sym_AMP_AMP] = ACTIONS(3278), + [anon_sym_PIPE_PIPE] = ACTIONS(3278), + [anon_sym_EQ_EQ] = ACTIONS(3278), + [anon_sym_BANG_EQ] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3278), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3278), + [anon_sym_EQ_GT] = ACTIONS(3278), + [anon_sym_QMARK_QMARK] = ACTIONS(3278), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3276), + [anon_sym_macro] = ACTIONS(3276), + [anon_sym_abstract] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3276), + [anon_sym_private] = ACTIONS(3276), + [anon_sym_extern] = ACTIONS(3276), + [anon_sym_inline] = ACTIONS(3276), + [anon_sym_overload] = ACTIONS(3276), + [anon_sym_override] = ACTIONS(3276), + [anon_sym_final] = ACTIONS(3276), + [anon_sym_class] = ACTIONS(3276), + [anon_sym_interface] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_var] = ACTIONS(3276), + [aux_sym_integer_token1] = ACTIONS(3276), + [aux_sym_integer_token2] = ACTIONS(3278), + [aux_sym_float_token1] = ACTIONS(3276), + [aux_sym_float_token2] = ACTIONS(3278), + [anon_sym_true] = ACTIONS(3276), + [anon_sym_false] = ACTIONS(3276), + [aux_sym_string_token1] = ACTIONS(3278), + [aux_sym_string_token3] = ACTIONS(3278), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [666] = { - [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_STAR] = ACTIONS(2282), - [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_for] = ACTIONS(2280), - [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_try] = ACTIONS(2280), - [anon_sym_catch] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [710] = { + [ts_builtin_sym_end] = ACTIONS(3072), + [sym_identifier] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_package] = ACTIONS(3070), + [anon_sym_import] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_switch] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_cast] = ACTIONS(3070), + [anon_sym_DOLLARtype] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_untyped] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_this] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3070), + [anon_sym_AT_COLON] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_catch] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3070), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3070), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_EQ_GT] = ACTIONS(3072), + [anon_sym_QMARK_QMARK] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), + [anon_sym_null] = ACTIONS(3070), + [anon_sym_macro] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_extern] = ACTIONS(3070), + [anon_sym_inline] = ACTIONS(3070), + [anon_sym_overload] = ACTIONS(3070), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_final] = ACTIONS(3070), + [anon_sym_class] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [anon_sym_typedef] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_var] = ACTIONS(3070), + [aux_sym_integer_token1] = ACTIONS(3070), + [aux_sym_integer_token2] = ACTIONS(3072), + [aux_sym_float_token1] = ACTIONS(3070), + [aux_sym_float_token2] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [aux_sym_string_token1] = ACTIONS(3072), + [aux_sym_string_token3] = ACTIONS(3072), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [667] = { - [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_STAR] = ACTIONS(1982), - [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_for] = ACTIONS(1980), - [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_try] = ACTIONS(1980), - [anon_sym_catch] = ACTIONS(1980), - [anon_sym_else] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [711] = { + [ts_builtin_sym_end] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3320), + [anon_sym_POUND] = ACTIONS(3322), + [anon_sym_package] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_cast] = ACTIONS(3320), + [anon_sym_DOLLARtype] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_untyped] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_this] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_AT_COLON] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_catch] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3320), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3320), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_QMARK_QMARK] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3320), + [anon_sym_macro] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_extern] = ACTIONS(3320), + [anon_sym_inline] = ACTIONS(3320), + [anon_sym_overload] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_final] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), + [anon_sym_typedef] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [aux_sym_integer_token1] = ACTIONS(3320), + [aux_sym_integer_token2] = ACTIONS(3322), + [aux_sym_float_token1] = ACTIONS(3320), + [aux_sym_float_token2] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3320), + [anon_sym_false] = ACTIONS(3320), + [aux_sym_string_token1] = ACTIONS(3322), + [aux_sym_string_token3] = ACTIONS(3322), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2048), - [anon_sym_package] = ACTIONS(2046), - [anon_sym_import] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_using] = ACTIONS(2046), - [anon_sym_throw] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_switch] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_cast] = ACTIONS(2046), - [anon_sym_DOLLARtype] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_untyped] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2046), - [anon_sym_continue] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_this] = ACTIONS(2046), - [anon_sym_AT] = ACTIONS(2046), - [anon_sym_AT_COLON] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2046), - [anon_sym_catch] = ACTIONS(2046), - [anon_sym_else] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_do] = ACTIONS(2046), - [anon_sym_new] = ACTIONS(2046), - [anon_sym_TILDE] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_PLUS_PLUS] = ACTIONS(2048), - [anon_sym_DASH_DASH] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH] = ACTIONS(2046), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2046), - [anon_sym_GT_GT_GT] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_LT_EQ] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2046), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_QMARK_QMARK] = ACTIONS(2048), - [anon_sym_EQ] = ACTIONS(2046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_null] = ACTIONS(2046), - [anon_sym_macro] = ACTIONS(2046), - [anon_sym_abstract] = ACTIONS(2046), - [anon_sym_static] = ACTIONS(2046), - [anon_sym_public] = ACTIONS(2046), - [anon_sym_private] = ACTIONS(2046), - [anon_sym_extern] = ACTIONS(2046), - [anon_sym_inline] = ACTIONS(2046), - [anon_sym_overload] = ACTIONS(2046), - [anon_sym_override] = ACTIONS(2046), - [anon_sym_final] = ACTIONS(2046), - [anon_sym_class] = ACTIONS(2046), - [anon_sym_interface] = ACTIONS(2046), - [anon_sym_enum] = ACTIONS(2046), - [anon_sym_typedef] = ACTIONS(2046), - [anon_sym_function] = ACTIONS(2046), - [anon_sym_var] = ACTIONS(2046), - [aux_sym_integer_token1] = ACTIONS(2046), - [aux_sym_integer_token2] = ACTIONS(2048), - [aux_sym_float_token1] = ACTIONS(2046), - [aux_sym_float_token2] = ACTIONS(2048), - [anon_sym_true] = ACTIONS(2046), - [anon_sym_false] = ACTIONS(2046), - [aux_sym_string_token1] = ACTIONS(2048), - [aux_sym_string_token3] = ACTIONS(2048), + [712] = { + [ts_builtin_sym_end] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3074), + [anon_sym_POUND] = ACTIONS(3076), + [anon_sym_package] = ACTIONS(3074), + [anon_sym_import] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_switch] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_cast] = ACTIONS(3074), + [anon_sym_DOLLARtype] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_untyped] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_this] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_AT_COLON] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_catch] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_do] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_LT_LT] = ACTIONS(3076), + [anon_sym_GT_GT] = ACTIONS(3074), + [anon_sym_GT_GT_GT] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_PIPE] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_EQ_GT] = ACTIONS(3076), + [anon_sym_QMARK_QMARK] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3074), + [anon_sym_macro] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_extern] = ACTIONS(3074), + [anon_sym_inline] = ACTIONS(3074), + [anon_sym_overload] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_final] = ACTIONS(3074), + [anon_sym_class] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [anon_sym_typedef] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_var] = ACTIONS(3074), + [aux_sym_integer_token1] = ACTIONS(3074), + [aux_sym_integer_token2] = ACTIONS(3076), + [aux_sym_float_token1] = ACTIONS(3074), + [aux_sym_float_token2] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [aux_sym_string_token1] = ACTIONS(3076), + [aux_sym_string_token3] = ACTIONS(3076), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [669] = { - [ts_builtin_sym_end] = ACTIONS(2406), - [sym_identifier] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_package] = ACTIONS(2404), - [anon_sym_import] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_using] = ACTIONS(2404), - [anon_sym_throw] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_switch] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_cast] = ACTIONS(2404), - [anon_sym_DOLLARtype] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_untyped] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2406), - [anon_sym_this] = ACTIONS(2404), - [anon_sym_AT] = ACTIONS(2404), - [anon_sym_AT_COLON] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2406), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_GT_GT_GT] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_EQ_GT] = ACTIONS(2406), - [anon_sym_QMARK_QMARK] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2406), - [anon_sym_null] = ACTIONS(2404), - [anon_sym_macro] = ACTIONS(2404), - [anon_sym_abstract] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_public] = ACTIONS(2404), - [anon_sym_private] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym_inline] = ACTIONS(2404), - [anon_sym_overload] = ACTIONS(2404), - [anon_sym_override] = ACTIONS(2404), - [anon_sym_final] = ACTIONS(2404), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_interface] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_typedef] = ACTIONS(2404), - [anon_sym_function] = ACTIONS(2404), - [anon_sym_var] = ACTIONS(2404), - [aux_sym_integer_token1] = ACTIONS(2404), - [aux_sym_integer_token2] = ACTIONS(2406), - [aux_sym_float_token1] = ACTIONS(2404), - [aux_sym_float_token2] = ACTIONS(2406), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [aux_sym_string_token1] = ACTIONS(2406), - [aux_sym_string_token3] = ACTIONS(2406), + [713] = { + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3078), + [anon_sym_POUND] = ACTIONS(3080), + [anon_sym_package] = ACTIONS(3078), + [anon_sym_import] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_switch] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_cast] = ACTIONS(3078), + [anon_sym_DOLLARtype] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_untyped] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_this] = ACTIONS(3078), + [anon_sym_AT] = ACTIONS(3078), + [anon_sym_AT_COLON] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_catch] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_EQ_GT] = ACTIONS(3080), + [anon_sym_QMARK_QMARK] = ACTIONS(3080), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3078), + [anon_sym_macro] = ACTIONS(3078), + [anon_sym_abstract] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym_overload] = ACTIONS(3078), + [anon_sym_override] = ACTIONS(3078), + [anon_sym_final] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_interface] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_function] = ACTIONS(3078), + [anon_sym_var] = ACTIONS(3078), + [aux_sym_integer_token1] = ACTIONS(3078), + [aux_sym_integer_token2] = ACTIONS(3080), + [aux_sym_float_token1] = ACTIONS(3078), + [aux_sym_float_token2] = ACTIONS(3080), + [anon_sym_true] = ACTIONS(3078), + [anon_sym_false] = ACTIONS(3078), + [aux_sym_string_token1] = ACTIONS(3080), + [aux_sym_string_token3] = ACTIONS(3080), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [670] = { - [sym_else_clause] = STATE(709), - [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_STAR] = ACTIONS(1978), - [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_for] = ACTIONS(1976), - [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_try] = ACTIONS(1976), - [anon_sym_else] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [714] = { + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(3084), + [anon_sym_package] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_cast] = ACTIONS(3082), + [anon_sym_DOLLARtype] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_untyped] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_this] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_AT_COLON] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_catch] = ACTIONS(3082), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3082), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3082), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_EQ_GT] = ACTIONS(3084), + [anon_sym_QMARK_QMARK] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), + [anon_sym_null] = ACTIONS(3082), + [anon_sym_macro] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym_overload] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_final] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_var] = ACTIONS(3082), + [aux_sym_integer_token1] = ACTIONS(3082), + [aux_sym_integer_token2] = ACTIONS(3084), + [aux_sym_float_token1] = ACTIONS(3082), + [aux_sym_float_token2] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3082), + [anon_sym_false] = ACTIONS(3082), + [aux_sym_string_token1] = ACTIONS(3084), + [aux_sym_string_token3] = ACTIONS(3084), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [671] = { - [ts_builtin_sym_end] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_package] = ACTIONS(1986), - [anon_sym_import] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1986), - [anon_sym_throw] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_cast] = ACTIONS(1986), - [anon_sym_DOLLARtype] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_untyped] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_this] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_AT_COLON] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1986), - [anon_sym_catch] = ACTIONS(1986), - [anon_sym_else] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_LT_LT] = ACTIONS(1988), - [anon_sym_GT_GT] = ACTIONS(1986), - [anon_sym_GT_GT_GT] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_CARET] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1988), - [anon_sym_PIPE_PIPE] = ACTIONS(1988), - [anon_sym_EQ_EQ] = ACTIONS(1988), - [anon_sym_BANG_EQ] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_LT_EQ] = ACTIONS(1988), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_GT_EQ] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(1988), - [anon_sym_QMARK_QMARK] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(1986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1988), - [anon_sym_null] = ACTIONS(1986), - [anon_sym_macro] = ACTIONS(1986), - [anon_sym_abstract] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_public] = ACTIONS(1986), - [anon_sym_private] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), - [anon_sym_overload] = ACTIONS(1986), - [anon_sym_override] = ACTIONS(1986), - [anon_sym_final] = ACTIONS(1986), - [anon_sym_class] = ACTIONS(1986), - [anon_sym_interface] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_function] = ACTIONS(1986), - [anon_sym_var] = ACTIONS(1986), - [aux_sym_integer_token1] = ACTIONS(1986), - [aux_sym_integer_token2] = ACTIONS(1988), - [aux_sym_float_token1] = ACTIONS(1986), - [aux_sym_float_token2] = ACTIONS(1988), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [aux_sym_string_token1] = ACTIONS(1988), - [aux_sym_string_token3] = ACTIONS(1988), + [715] = { + [ts_builtin_sym_end] = ACTIONS(3088), + [sym_identifier] = ACTIONS(3086), + [anon_sym_POUND] = ACTIONS(3088), + [anon_sym_package] = ACTIONS(3086), + [anon_sym_import] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_cast] = ACTIONS(3086), + [anon_sym_DOLLARtype] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_untyped] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_this] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_AT_COLON] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_catch] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_LT_LT] = ACTIONS(3088), + [anon_sym_GT_GT] = ACTIONS(3086), + [anon_sym_GT_GT_GT] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_CARET] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_EQ_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3088), + [anon_sym_GT] = ACTIONS(3086), + [anon_sym_GT_EQ] = ACTIONS(3088), + [anon_sym_EQ_GT] = ACTIONS(3088), + [anon_sym_QMARK_QMARK] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3086), + [anon_sym_macro] = ACTIONS(3086), + [anon_sym_abstract] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_public] = ACTIONS(3086), + [anon_sym_private] = ACTIONS(3086), + [anon_sym_extern] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym_overload] = ACTIONS(3086), + [anon_sym_override] = ACTIONS(3086), + [anon_sym_final] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_typedef] = ACTIONS(3086), + [anon_sym_function] = ACTIONS(3086), + [anon_sym_var] = ACTIONS(3086), + [aux_sym_integer_token1] = ACTIONS(3086), + [aux_sym_integer_token2] = ACTIONS(3088), + [aux_sym_float_token1] = ACTIONS(3086), + [aux_sym_float_token2] = ACTIONS(3088), + [anon_sym_true] = ACTIONS(3086), + [anon_sym_false] = ACTIONS(3086), + [aux_sym_string_token1] = ACTIONS(3088), + [aux_sym_string_token3] = ACTIONS(3088), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [672] = { - [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_STAR] = ACTIONS(2286), - [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_for] = ACTIONS(2284), - [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_try] = ACTIONS(2284), - [anon_sym_catch] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [716] = { + [ts_builtin_sym_end] = ACTIONS(3092), + [sym_identifier] = ACTIONS(3090), + [anon_sym_POUND] = ACTIONS(3092), + [anon_sym_package] = ACTIONS(3090), + [anon_sym_import] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_using] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_cast] = ACTIONS(3090), + [anon_sym_DOLLARtype] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_untyped] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3090), + [anon_sym_AT] = ACTIONS(3090), + [anon_sym_AT_COLON] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_catch] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_SLASH] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_LT_LT] = ACTIONS(3092), + [anon_sym_GT_GT] = ACTIONS(3090), + [anon_sym_GT_GT_GT] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3090), + [anon_sym_GT_EQ] = ACTIONS(3092), + [anon_sym_EQ_GT] = ACTIONS(3092), + [anon_sym_QMARK_QMARK] = ACTIONS(3092), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_macro] = ACTIONS(3090), + [anon_sym_abstract] = ACTIONS(3090), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_public] = ACTIONS(3090), + [anon_sym_private] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym_overload] = ACTIONS(3090), + [anon_sym_override] = ACTIONS(3090), + [anon_sym_final] = ACTIONS(3090), + [anon_sym_class] = ACTIONS(3090), + [anon_sym_interface] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3090), + [anon_sym_var] = ACTIONS(3090), + [aux_sym_integer_token1] = ACTIONS(3090), + [aux_sym_integer_token2] = ACTIONS(3092), + [aux_sym_float_token1] = ACTIONS(3090), + [aux_sym_float_token2] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [aux_sym_string_token1] = ACTIONS(3092), + [aux_sym_string_token3] = ACTIONS(3092), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_package] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_cast] = ACTIONS(2288), - [anon_sym_DOLLARtype] = ACTIONS(2290), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_untyped] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_this] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_AT_COLON] = ACTIONS(2290), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_EQ_GT] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_EQ] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2290), - [anon_sym_null] = ACTIONS(2288), - [anon_sym_macro] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_inline] = ACTIONS(2288), - [anon_sym_overload] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_final] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [anon_sym_typedef] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [aux_sym_integer_token1] = ACTIONS(2288), - [aux_sym_integer_token2] = ACTIONS(2290), - [aux_sym_float_token1] = ACTIONS(2288), - [aux_sym_float_token2] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [aux_sym_string_token1] = ACTIONS(2290), - [aux_sym_string_token3] = ACTIONS(2290), + [717] = { + [ts_builtin_sym_end] = ACTIONS(3096), + [sym_identifier] = ACTIONS(3094), + [anon_sym_POUND] = ACTIONS(3096), + [anon_sym_package] = ACTIONS(3094), + [anon_sym_import] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_using] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_cast] = ACTIONS(3094), + [anon_sym_DOLLARtype] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_untyped] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_AT_COLON] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_catch] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_DASH_DASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_LT_LT] = ACTIONS(3096), + [anon_sym_GT_GT] = ACTIONS(3094), + [anon_sym_GT_GT_GT] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3094), + [anon_sym_PIPE] = ACTIONS(3094), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_EQ_GT] = ACTIONS(3096), + [anon_sym_QMARK_QMARK] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3094), + [anon_sym_macro] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_extern] = ACTIONS(3094), + [anon_sym_inline] = ACTIONS(3094), + [anon_sym_overload] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_final] = ACTIONS(3094), + [anon_sym_class] = ACTIONS(3094), + [anon_sym_interface] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), + [anon_sym_typedef] = ACTIONS(3094), + [anon_sym_function] = ACTIONS(3094), + [anon_sym_var] = ACTIONS(3094), + [aux_sym_integer_token1] = ACTIONS(3094), + [aux_sym_integer_token2] = ACTIONS(3096), + [aux_sym_float_token1] = ACTIONS(3094), + [aux_sym_float_token2] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3094), + [anon_sym_false] = ACTIONS(3094), + [aux_sym_string_token1] = ACTIONS(3096), + [aux_sym_string_token3] = ACTIONS(3096), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [674] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2052), - [anon_sym_package] = ACTIONS(2050), - [anon_sym_import] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_using] = ACTIONS(2050), - [anon_sym_throw] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_cast] = ACTIONS(2050), - [anon_sym_DOLLARtype] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_untyped] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_this] = ACTIONS(2050), - [anon_sym_AT] = ACTIONS(2050), - [anon_sym_AT_COLON] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2050), - [anon_sym_catch] = ACTIONS(2050), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PERCENT] = ACTIONS(2052), - [anon_sym_SLASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_LT_LT] = ACTIONS(2052), - [anon_sym_GT_GT] = ACTIONS(2050), - [anon_sym_GT_GT_GT] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_EQ_EQ] = ACTIONS(2052), - [anon_sym_BANG_EQ] = ACTIONS(2052), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_LT_EQ] = ACTIONS(2052), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2052), - [anon_sym_EQ_GT] = ACTIONS(2052), - [anon_sym_QMARK_QMARK] = ACTIONS(2052), - [anon_sym_EQ] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2052), - [anon_sym_null] = ACTIONS(2050), - [anon_sym_macro] = ACTIONS(2050), - [anon_sym_abstract] = ACTIONS(2050), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_public] = ACTIONS(2050), - [anon_sym_private] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [anon_sym_overload] = ACTIONS(2050), - [anon_sym_override] = ACTIONS(2050), - [anon_sym_final] = ACTIONS(2050), - [anon_sym_class] = ACTIONS(2050), - [anon_sym_interface] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_function] = ACTIONS(2050), - [anon_sym_var] = ACTIONS(2050), - [aux_sym_integer_token1] = ACTIONS(2050), - [aux_sym_integer_token2] = ACTIONS(2052), - [aux_sym_float_token1] = ACTIONS(2050), - [aux_sym_float_token2] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2050), - [anon_sym_false] = ACTIONS(2050), - [aux_sym_string_token1] = ACTIONS(2052), - [aux_sym_string_token3] = ACTIONS(2052), + [718] = { + [ts_builtin_sym_end] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3098), + [anon_sym_POUND] = ACTIONS(3100), + [anon_sym_package] = ACTIONS(3098), + [anon_sym_import] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_cast] = ACTIONS(3098), + [anon_sym_DOLLARtype] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_untyped] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_AT_COLON] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_catch] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_LT_LT] = ACTIONS(3100), + [anon_sym_GT_GT] = ACTIONS(3098), + [anon_sym_GT_GT_GT] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_CARET] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3100), + [anon_sym_EQ_GT] = ACTIONS(3100), + [anon_sym_QMARK_QMARK] = ACTIONS(3100), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_macro] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_overload] = ACTIONS(3098), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_interface] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_function] = ACTIONS(3098), + [anon_sym_var] = ACTIONS(3098), + [aux_sym_integer_token1] = ACTIONS(3098), + [aux_sym_integer_token2] = ACTIONS(3100), + [aux_sym_float_token1] = ACTIONS(3098), + [aux_sym_float_token2] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [aux_sym_string_token1] = ACTIONS(3100), + [aux_sym_string_token3] = ACTIONS(3100), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [675] = { - [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_STAR] = ACTIONS(2302), - [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_for] = ACTIONS(2300), - [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_try] = ACTIONS(2300), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [719] = { + [ts_builtin_sym_end] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3102), + [anon_sym_POUND] = ACTIONS(3104), + [anon_sym_package] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_cast] = ACTIONS(3102), + [anon_sym_DOLLARtype] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_untyped] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_AT_COLON] = ACTIONS(3104), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_catch] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3104), + [anon_sym_PERCENT] = ACTIONS(3104), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_LT_LT] = ACTIONS(3104), + [anon_sym_GT_GT] = ACTIONS(3102), + [anon_sym_GT_GT_GT] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3102), + [anon_sym_CARET] = ACTIONS(3104), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_EQ_GT] = ACTIONS(3104), + [anon_sym_QMARK_QMARK] = ACTIONS(3104), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_macro] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_extern] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_overload] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), + [anon_sym_typedef] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [aux_sym_integer_token1] = ACTIONS(3102), + [aux_sym_integer_token2] = ACTIONS(3104), + [aux_sym_float_token1] = ACTIONS(3102), + [aux_sym_float_token2] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [aux_sym_string_token1] = ACTIONS(3104), + [aux_sym_string_token3] = ACTIONS(3104), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [676] = { - [ts_builtin_sym_end] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(2414), - [anon_sym_package] = ACTIONS(2412), - [anon_sym_import] = ACTIONS(2412), - [anon_sym_STAR] = ACTIONS(2414), - [anon_sym_using] = ACTIONS(2412), - [anon_sym_throw] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_switch] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2414), - [anon_sym_cast] = ACTIONS(2412), - [anon_sym_DOLLARtype] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_untyped] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_this] = ACTIONS(2412), - [anon_sym_AT] = ACTIONS(2412), - [anon_sym_AT_COLON] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2412), - [anon_sym_catch] = ACTIONS(2412), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_do] = ACTIONS(2412), - [anon_sym_new] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_PLUS_PLUS] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2414), - [anon_sym_PERCENT] = ACTIONS(2414), - [anon_sym_SLASH] = ACTIONS(2412), - [anon_sym_PLUS] = ACTIONS(2412), - [anon_sym_LT_LT] = ACTIONS(2414), - [anon_sym_GT_GT] = ACTIONS(2412), - [anon_sym_GT_GT_GT] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_CARET] = ACTIONS(2414), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE_PIPE] = ACTIONS(2414), - [anon_sym_EQ_EQ] = ACTIONS(2414), - [anon_sym_BANG_EQ] = ACTIONS(2414), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_LT_EQ] = ACTIONS(2414), - [anon_sym_GT] = ACTIONS(2412), - [anon_sym_GT_EQ] = ACTIONS(2414), - [anon_sym_EQ_GT] = ACTIONS(2414), - [anon_sym_QMARK_QMARK] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2414), - [anon_sym_null] = ACTIONS(2412), - [anon_sym_macro] = ACTIONS(2412), - [anon_sym_abstract] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_public] = ACTIONS(2412), - [anon_sym_private] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_inline] = ACTIONS(2412), - [anon_sym_overload] = ACTIONS(2412), - [anon_sym_override] = ACTIONS(2412), - [anon_sym_final] = ACTIONS(2412), - [anon_sym_class] = ACTIONS(2412), - [anon_sym_interface] = ACTIONS(2412), - [anon_sym_enum] = ACTIONS(2412), - [anon_sym_typedef] = ACTIONS(2412), - [anon_sym_function] = ACTIONS(2412), - [anon_sym_var] = ACTIONS(2412), - [aux_sym_integer_token1] = ACTIONS(2412), - [aux_sym_integer_token2] = ACTIONS(2414), - [aux_sym_float_token1] = ACTIONS(2412), - [aux_sym_float_token2] = ACTIONS(2414), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [aux_sym_string_token1] = ACTIONS(2414), - [aux_sym_string_token3] = ACTIONS(2414), + [720] = { + [ts_builtin_sym_end] = ACTIONS(3108), + [sym_identifier] = ACTIONS(3106), + [anon_sym_POUND] = ACTIONS(3108), + [anon_sym_package] = ACTIONS(3106), + [anon_sym_import] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_cast] = ACTIONS(3106), + [anon_sym_DOLLARtype] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_untyped] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_AT_COLON] = ACTIONS(3108), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_catch] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_GT_GT_GT] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_PIPE] = ACTIONS(3106), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3106), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_EQ_GT] = ACTIONS(3108), + [anon_sym_QMARK_QMARK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_null] = ACTIONS(3106), + [anon_sym_macro] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_extern] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_overload] = ACTIONS(3106), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_typedef] = ACTIONS(3106), + [anon_sym_function] = ACTIONS(3106), + [anon_sym_var] = ACTIONS(3106), + [aux_sym_integer_token1] = ACTIONS(3106), + [aux_sym_integer_token2] = ACTIONS(3108), + [aux_sym_float_token1] = ACTIONS(3106), + [aux_sym_float_token2] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [aux_sym_string_token1] = ACTIONS(3108), + [aux_sym_string_token3] = ACTIONS(3108), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [677] = { - [ts_builtin_sym_end] = ACTIONS(2418), - [sym_identifier] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(2418), - [anon_sym_package] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_cast] = ACTIONS(2416), - [anon_sym_DOLLARtype] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_untyped] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_this] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_AT_COLON] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_catch] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2418), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2416), - [anon_sym_GT_GT_GT] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_LT_EQ] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2416), - [anon_sym_GT_EQ] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(2418), - [anon_sym_QMARK_QMARK] = ACTIONS(2418), - [anon_sym_EQ] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2416), - [anon_sym_macro] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_inline] = ACTIONS(2416), - [anon_sym_overload] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_final] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [anon_sym_typedef] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [aux_sym_integer_token1] = ACTIONS(2416), - [aux_sym_integer_token2] = ACTIONS(2418), - [aux_sym_float_token1] = ACTIONS(2416), - [aux_sym_float_token2] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [aux_sym_string_token1] = ACTIONS(2418), - [aux_sym_string_token3] = ACTIONS(2418), + [721] = { + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_identifier] = ACTIONS(3114), + [anon_sym_POUND] = ACTIONS(3116), + [anon_sym_package] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_cast] = ACTIONS(3114), + [anon_sym_DOLLARtype] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_untyped] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_AT] = ACTIONS(3114), + [anon_sym_AT_COLON] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_catch] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_do] = ACTIONS(3114), + [anon_sym_new] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3114), + [anon_sym_GT_GT_GT] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3114), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3114), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_EQ_GT] = ACTIONS(3116), + [anon_sym_QMARK_QMARK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_null] = ACTIONS(3114), + [anon_sym_macro] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_overload] = ACTIONS(3114), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_class] = ACTIONS(3114), + [anon_sym_interface] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_typedef] = ACTIONS(3114), + [anon_sym_function] = ACTIONS(3114), + [anon_sym_var] = ACTIONS(3114), + [aux_sym_integer_token1] = ACTIONS(3114), + [aux_sym_integer_token2] = ACTIONS(3116), + [aux_sym_float_token1] = ACTIONS(3114), + [aux_sym_float_token2] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [aux_sym_string_token1] = ACTIONS(3116), + [aux_sym_string_token3] = ACTIONS(3116), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [678] = { - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2752), - [anon_sym_POUND] = ACTIONS(2754), - [anon_sym_package] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2752), - [anon_sym_throw] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_cast] = ACTIONS(2752), - [anon_sym_DOLLARtype] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_untyped] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_this] = ACTIONS(2752), - [anon_sym_AT] = ACTIONS(2752), - [anon_sym_AT_COLON] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2752), - [anon_sym_catch] = ACTIONS(2752), - [anon_sym_else] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_do] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2752), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_GT_GT_GT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_EQ_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LT_EQ] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2754), - [anon_sym_EQ_GT] = ACTIONS(2754), - [anon_sym_QMARK_QMARK] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(2752), - [anon_sym_macro] = ACTIONS(2752), - [anon_sym_abstract] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_extern] = ACTIONS(2752), - [anon_sym_inline] = ACTIONS(2752), - [anon_sym_overload] = ACTIONS(2752), - [anon_sym_override] = ACTIONS(2752), - [anon_sym_final] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2752), - [anon_sym_interface] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), - [anon_sym_typedef] = ACTIONS(2752), - [anon_sym_function] = ACTIONS(2752), - [anon_sym_var] = ACTIONS(2752), - [aux_sym_integer_token1] = ACTIONS(2752), - [aux_sym_integer_token2] = ACTIONS(2754), - [aux_sym_float_token1] = ACTIONS(2752), - [aux_sym_float_token2] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2752), - [anon_sym_false] = ACTIONS(2752), - [aux_sym_string_token1] = ACTIONS(2754), - [aux_sym_string_token3] = ACTIONS(2754), + [722] = { + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3118), + [anon_sym_POUND] = ACTIONS(3120), + [anon_sym_package] = ACTIONS(3118), + [anon_sym_import] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_using] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_switch] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_cast] = ACTIONS(3118), + [anon_sym_DOLLARtype] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_untyped] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_AT_COLON] = ACTIONS(3120), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_catch] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_do] = ACTIONS(3118), + [anon_sym_new] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_PERCENT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3120), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_EQ_GT] = ACTIONS(3120), + [anon_sym_QMARK_QMARK] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3120), + [anon_sym_null] = ACTIONS(3118), + [anon_sym_macro] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_overload] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_interface] = ACTIONS(3118), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_typedef] = ACTIONS(3118), + [anon_sym_function] = ACTIONS(3118), + [anon_sym_var] = ACTIONS(3118), + [aux_sym_integer_token1] = ACTIONS(3118), + [aux_sym_integer_token2] = ACTIONS(3120), + [aux_sym_float_token1] = ACTIONS(3118), + [aux_sym_float_token2] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [aux_sym_string_token1] = ACTIONS(3120), + [aux_sym_string_token3] = ACTIONS(3120), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [679] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2056), - [anon_sym_package] = ACTIONS(2054), - [anon_sym_import] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_using] = ACTIONS(2054), - [anon_sym_throw] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_switch] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_cast] = ACTIONS(2054), - [anon_sym_DOLLARtype] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2054), - [anon_sym_untyped] = ACTIONS(2054), - [anon_sym_break] = ACTIONS(2054), - [anon_sym_continue] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(2054), - [anon_sym_AT] = ACTIONS(2054), - [anon_sym_AT_COLON] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2054), - [anon_sym_catch] = ACTIONS(2054), - [anon_sym_else] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_do] = ACTIONS(2054), - [anon_sym_new] = ACTIONS(2054), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_PLUS_PLUS] = ACTIONS(2056), - [anon_sym_DASH_DASH] = ACTIONS(2056), - [anon_sym_PERCENT] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2054), - [anon_sym_PLUS] = ACTIONS(2054), - [anon_sym_LT_LT] = ACTIONS(2056), - [anon_sym_GT_GT] = ACTIONS(2054), - [anon_sym_GT_GT_GT] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_EQ_EQ] = ACTIONS(2056), - [anon_sym_BANG_EQ] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_LT_EQ] = ACTIONS(2056), - [anon_sym_GT] = ACTIONS(2054), - [anon_sym_GT_EQ] = ACTIONS(2056), - [anon_sym_EQ_GT] = ACTIONS(2056), - [anon_sym_QMARK_QMARK] = ACTIONS(2056), - [anon_sym_EQ] = ACTIONS(2054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2054), - [anon_sym_macro] = ACTIONS(2054), - [anon_sym_abstract] = ACTIONS(2054), - [anon_sym_static] = ACTIONS(2054), - [anon_sym_public] = ACTIONS(2054), - [anon_sym_private] = ACTIONS(2054), - [anon_sym_extern] = ACTIONS(2054), - [anon_sym_inline] = ACTIONS(2054), - [anon_sym_overload] = ACTIONS(2054), - [anon_sym_override] = ACTIONS(2054), - [anon_sym_final] = ACTIONS(2054), - [anon_sym_class] = ACTIONS(2054), - [anon_sym_interface] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), - [anon_sym_typedef] = ACTIONS(2054), - [anon_sym_function] = ACTIONS(2054), - [anon_sym_var] = ACTIONS(2054), - [aux_sym_integer_token1] = ACTIONS(2054), - [aux_sym_integer_token2] = ACTIONS(2056), - [aux_sym_float_token1] = ACTIONS(2054), - [aux_sym_float_token2] = ACTIONS(2056), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [aux_sym_string_token1] = ACTIONS(2056), - [aux_sym_string_token3] = ACTIONS(2056), + [723] = { + [ts_builtin_sym_end] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(3124), + [anon_sym_package] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_cast] = ACTIONS(3122), + [anon_sym_DOLLARtype] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_untyped] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3122), + [anon_sym_AT_COLON] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_catch] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_LT_LT] = ACTIONS(3124), + [anon_sym_GT_GT] = ACTIONS(3122), + [anon_sym_GT_GT_GT] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_EQ_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_EQ_GT] = ACTIONS(3124), + [anon_sym_QMARK_QMARK] = ACTIONS(3124), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3124), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_macro] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_overload] = ACTIONS(3122), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [aux_sym_integer_token1] = ACTIONS(3122), + [aux_sym_integer_token2] = ACTIONS(3124), + [aux_sym_float_token1] = ACTIONS(3122), + [aux_sym_float_token2] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [aux_sym_string_token1] = ACTIONS(3124), + [aux_sym_string_token3] = ACTIONS(3124), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [680] = { - [ts_builtin_sym_end] = ACTIONS(2434), - [sym_identifier] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(2434), - [anon_sym_package] = ACTIONS(2432), - [anon_sym_import] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_using] = ACTIONS(2432), - [anon_sym_throw] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_switch] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_cast] = ACTIONS(2432), - [anon_sym_DOLLARtype] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_untyped] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_this] = ACTIONS(2432), - [anon_sym_AT] = ACTIONS(2432), - [anon_sym_AT_COLON] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2432), - [anon_sym_catch] = ACTIONS(2432), - [anon_sym_else] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_do] = ACTIONS(2432), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [anon_sym_PERCENT] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2432), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2434), - [anon_sym_GT_GT] = ACTIONS(2432), - [anon_sym_GT_GT_GT] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2432), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2434), - [anon_sym_EQ_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_LT_EQ] = ACTIONS(2434), - [anon_sym_GT] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2434), - [anon_sym_EQ_GT] = ACTIONS(2434), - [anon_sym_QMARK_QMARK] = ACTIONS(2434), - [anon_sym_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_macro] = ACTIONS(2432), - [anon_sym_abstract] = ACTIONS(2432), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_inline] = ACTIONS(2432), - [anon_sym_overload] = ACTIONS(2432), - [anon_sym_override] = ACTIONS(2432), - [anon_sym_final] = ACTIONS(2432), - [anon_sym_class] = ACTIONS(2432), - [anon_sym_interface] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_typedef] = ACTIONS(2432), - [anon_sym_function] = ACTIONS(2432), - [anon_sym_var] = ACTIONS(2432), - [aux_sym_integer_token1] = ACTIONS(2432), - [aux_sym_integer_token2] = ACTIONS(2434), - [aux_sym_float_token1] = ACTIONS(2432), - [aux_sym_float_token2] = ACTIONS(2434), - [anon_sym_true] = ACTIONS(2432), - [anon_sym_false] = ACTIONS(2432), - [aux_sym_string_token1] = ACTIONS(2434), - [aux_sym_string_token3] = ACTIONS(2434), + [724] = { + [ts_builtin_sym_end] = ACTIONS(3128), + [sym_identifier] = ACTIONS(3126), + [anon_sym_POUND] = ACTIONS(3128), + [anon_sym_package] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_cast] = ACTIONS(3126), + [anon_sym_DOLLARtype] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_untyped] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_AT_COLON] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_catch] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym_GT_GT_GT] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3128), + [anon_sym_EQ_GT] = ACTIONS(3128), + [anon_sym_QMARK_QMARK] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3128), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_macro] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_overload] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [aux_sym_integer_token1] = ACTIONS(3126), + [aux_sym_integer_token2] = ACTIONS(3128), + [aux_sym_float_token1] = ACTIONS(3126), + [aux_sym_float_token2] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [aux_sym_string_token1] = ACTIONS(3128), + [aux_sym_string_token3] = ACTIONS(3128), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [681] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2060), - [anon_sym_package] = ACTIONS(2058), - [anon_sym_import] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_using] = ACTIONS(2058), - [anon_sym_throw] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_cast] = ACTIONS(2058), - [anon_sym_DOLLARtype] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_untyped] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_this] = ACTIONS(2058), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_AT_COLON] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2058), - [anon_sym_catch] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_new] = ACTIONS(2058), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_GT_GT_GT] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_EQ_GT] = ACTIONS(2060), - [anon_sym_QMARK_QMARK] = ACTIONS(2060), - [anon_sym_EQ] = ACTIONS(2058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2060), - [anon_sym_null] = ACTIONS(2058), - [anon_sym_macro] = ACTIONS(2058), - [anon_sym_abstract] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_public] = ACTIONS(2058), - [anon_sym_private] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [anon_sym_overload] = ACTIONS(2058), - [anon_sym_override] = ACTIONS(2058), - [anon_sym_final] = ACTIONS(2058), - [anon_sym_class] = ACTIONS(2058), - [anon_sym_interface] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_function] = ACTIONS(2058), - [anon_sym_var] = ACTIONS(2058), - [aux_sym_integer_token1] = ACTIONS(2058), - [aux_sym_integer_token2] = ACTIONS(2060), - [aux_sym_float_token1] = ACTIONS(2058), - [aux_sym_float_token2] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [aux_sym_string_token1] = ACTIONS(2060), - [aux_sym_string_token3] = ACTIONS(2060), + [725] = { + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3130), + [anon_sym_POUND] = ACTIONS(3132), + [anon_sym_package] = ACTIONS(3130), + [anon_sym_import] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_cast] = ACTIONS(3130), + [anon_sym_DOLLARtype] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_untyped] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_AT] = ACTIONS(3130), + [anon_sym_AT_COLON] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_catch] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_LT_LT] = ACTIONS(3132), + [anon_sym_GT_GT] = ACTIONS(3130), + [anon_sym_GT_GT_GT] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3130), + [anon_sym_PIPE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3130), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_EQ_GT] = ACTIONS(3132), + [anon_sym_QMARK_QMARK] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_macro] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_extern] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_overload] = ACTIONS(3130), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_interface] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), + [anon_sym_typedef] = ACTIONS(3130), + [anon_sym_function] = ACTIONS(3130), + [anon_sym_var] = ACTIONS(3130), + [aux_sym_integer_token1] = ACTIONS(3130), + [aux_sym_integer_token2] = ACTIONS(3132), + [aux_sym_float_token1] = ACTIONS(3130), + [aux_sym_float_token2] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [aux_sym_string_token1] = ACTIONS(3132), + [aux_sym_string_token3] = ACTIONS(3132), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [682] = { - [ts_builtin_sym_end] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2008), - [anon_sym_package] = ACTIONS(2006), - [anon_sym_import] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_using] = ACTIONS(2006), - [anon_sym_throw] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_switch] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_cast] = ACTIONS(2006), - [anon_sym_DOLLARtype] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_untyped] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_this] = ACTIONS(2006), - [anon_sym_AT] = ACTIONS(2006), - [anon_sym_AT_COLON] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2006), - [anon_sym_catch] = ACTIONS(2006), - [anon_sym_else] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_do] = ACTIONS(2006), - [anon_sym_new] = ACTIONS(2006), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PERCENT] = ACTIONS(2008), - [anon_sym_SLASH] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_LT_LT] = ACTIONS(2008), - [anon_sym_GT_GT] = ACTIONS(2006), - [anon_sym_GT_GT_GT] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP_AMP] = ACTIONS(2008), - [anon_sym_PIPE_PIPE] = ACTIONS(2008), - [anon_sym_EQ_EQ] = ACTIONS(2008), - [anon_sym_BANG_EQ] = ACTIONS(2008), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_LT_EQ] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2006), - [anon_sym_GT_EQ] = ACTIONS(2008), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_QMARK_QMARK] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2008), - [anon_sym_null] = ACTIONS(2006), - [anon_sym_macro] = ACTIONS(2006), - [anon_sym_abstract] = ACTIONS(2006), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_public] = ACTIONS(2006), - [anon_sym_private] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym_inline] = ACTIONS(2006), - [anon_sym_overload] = ACTIONS(2006), - [anon_sym_override] = ACTIONS(2006), - [anon_sym_final] = ACTIONS(2006), - [anon_sym_class] = ACTIONS(2006), - [anon_sym_interface] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_typedef] = ACTIONS(2006), - [anon_sym_function] = ACTIONS(2006), - [anon_sym_var] = ACTIONS(2006), - [aux_sym_integer_token1] = ACTIONS(2006), - [aux_sym_integer_token2] = ACTIONS(2008), - [aux_sym_float_token1] = ACTIONS(2006), - [aux_sym_float_token2] = ACTIONS(2008), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [aux_sym_string_token1] = ACTIONS(2008), - [aux_sym_string_token3] = ACTIONS(2008), + [726] = { + [ts_builtin_sym_end] = ACTIONS(3136), + [sym_identifier] = ACTIONS(3134), + [anon_sym_POUND] = ACTIONS(3136), + [anon_sym_package] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_cast] = ACTIONS(3134), + [anon_sym_DOLLARtype] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_untyped] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_this] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3134), + [anon_sym_AT_COLON] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_catch] = ACTIONS(3134), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PERCENT] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_LT_LT] = ACTIONS(3136), + [anon_sym_GT_GT] = ACTIONS(3134), + [anon_sym_GT_GT_GT] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_PIPE] = ACTIONS(3134), + [anon_sym_CARET] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_PIPE_PIPE] = ACTIONS(3136), + [anon_sym_EQ_EQ] = ACTIONS(3136), + [anon_sym_BANG_EQ] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_LT_EQ] = ACTIONS(3136), + [anon_sym_GT] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3136), + [anon_sym_EQ_GT] = ACTIONS(3136), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_EQ] = ACTIONS(3134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3136), + [anon_sym_null] = ACTIONS(3134), + [anon_sym_macro] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym_overload] = ACTIONS(3134), + [anon_sym_override] = ACTIONS(3134), + [anon_sym_final] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [aux_sym_integer_token1] = ACTIONS(3134), + [aux_sym_integer_token2] = ACTIONS(3136), + [aux_sym_float_token1] = ACTIONS(3134), + [aux_sym_float_token2] = ACTIONS(3136), + [anon_sym_true] = ACTIONS(3134), + [anon_sym_false] = ACTIONS(3134), + [aux_sym_string_token1] = ACTIONS(3136), + [aux_sym_string_token3] = ACTIONS(3136), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [683] = { - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2442), - [anon_sym_package] = ACTIONS(2440), - [anon_sym_import] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2440), - [anon_sym_throw] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_cast] = ACTIONS(2440), - [anon_sym_DOLLARtype] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2440), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_untyped] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2440), - [anon_sym_continue] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_this] = ACTIONS(2440), - [anon_sym_AT] = ACTIONS(2440), - [anon_sym_AT_COLON] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2440), - [anon_sym_catch] = ACTIONS(2440), - [anon_sym_else] = ACTIONS(2440), - [anon_sym_if] = ACTIONS(2440), - [anon_sym_while] = ACTIONS(2440), - [anon_sym_do] = ACTIONS(2440), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(2440), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2440), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2440), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_GT] = ACTIONS(2440), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_EQ_GT] = ACTIONS(2442), - [anon_sym_QMARK_QMARK] = ACTIONS(2442), - [anon_sym_EQ] = ACTIONS(2440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2442), - [anon_sym_null] = ACTIONS(2440), - [anon_sym_macro] = ACTIONS(2440), - [anon_sym_abstract] = ACTIONS(2440), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_extern] = ACTIONS(2440), - [anon_sym_inline] = ACTIONS(2440), - [anon_sym_overload] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_final] = ACTIONS(2440), - [anon_sym_class] = ACTIONS(2440), - [anon_sym_interface] = ACTIONS(2440), - [anon_sym_enum] = ACTIONS(2440), - [anon_sym_typedef] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2440), - [anon_sym_var] = ACTIONS(2440), - [aux_sym_integer_token1] = ACTIONS(2440), - [aux_sym_integer_token2] = ACTIONS(2442), - [aux_sym_float_token1] = ACTIONS(2440), - [aux_sym_float_token2] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2440), - [anon_sym_false] = ACTIONS(2440), - [aux_sym_string_token1] = ACTIONS(2442), - [aux_sym_string_token3] = ACTIONS(2442), + [727] = { + [ts_builtin_sym_end] = ACTIONS(3140), + [sym_identifier] = ACTIONS(3138), + [anon_sym_POUND] = ACTIONS(3140), + [anon_sym_package] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_cast] = ACTIONS(3138), + [anon_sym_DOLLARtype] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_untyped] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_this] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_AT_COLON] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_catch] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3138), + [anon_sym_GT_GT_GT] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_EQ_GT] = ACTIONS(3140), + [anon_sym_QMARK_QMARK] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3140), + [anon_sym_null] = ACTIONS(3138), + [anon_sym_macro] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(3138), + [anon_sym_inline] = ACTIONS(3138), + [anon_sym_overload] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_final] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [anon_sym_typedef] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [aux_sym_integer_token1] = ACTIONS(3138), + [aux_sym_integer_token2] = ACTIONS(3140), + [aux_sym_float_token1] = ACTIONS(3138), + [aux_sym_float_token2] = ACTIONS(3140), + [anon_sym_true] = ACTIONS(3138), + [anon_sym_false] = ACTIONS(3138), + [aux_sym_string_token1] = ACTIONS(3140), + [aux_sym_string_token3] = ACTIONS(3140), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [684] = { - [ts_builtin_sym_end] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(2446), - [anon_sym_package] = ACTIONS(2444), - [anon_sym_import] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_using] = ACTIONS(2444), - [anon_sym_throw] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_switch] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_cast] = ACTIONS(2444), - [anon_sym_DOLLARtype] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_untyped] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_this] = ACTIONS(2444), - [anon_sym_AT] = ACTIONS(2444), - [anon_sym_AT_COLON] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_catch] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_do] = ACTIONS(2444), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2446), - [anon_sym_DASH_DASH] = ACTIONS(2446), - [anon_sym_PERCENT] = ACTIONS(2446), - [anon_sym_SLASH] = ACTIONS(2444), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2446), - [anon_sym_GT_GT] = ACTIONS(2444), - [anon_sym_GT_GT_GT] = ACTIONS(2446), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2446), - [anon_sym_AMP_AMP] = ACTIONS(2446), - [anon_sym_PIPE_PIPE] = ACTIONS(2446), - [anon_sym_EQ_EQ] = ACTIONS(2446), - [anon_sym_BANG_EQ] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_LT_EQ] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2446), - [anon_sym_EQ_GT] = ACTIONS(2446), - [anon_sym_QMARK_QMARK] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2446), - [anon_sym_null] = ACTIONS(2444), - [anon_sym_macro] = ACTIONS(2444), - [anon_sym_abstract] = ACTIONS(2444), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_private] = ACTIONS(2444), - [anon_sym_extern] = ACTIONS(2444), - [anon_sym_inline] = ACTIONS(2444), - [anon_sym_overload] = ACTIONS(2444), - [anon_sym_override] = ACTIONS(2444), - [anon_sym_final] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2444), - [anon_sym_interface] = ACTIONS(2444), - [anon_sym_enum] = ACTIONS(2444), - [anon_sym_typedef] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(2444), - [anon_sym_var] = ACTIONS(2444), - [aux_sym_integer_token1] = ACTIONS(2444), - [aux_sym_integer_token2] = ACTIONS(2446), - [aux_sym_float_token1] = ACTIONS(2444), - [aux_sym_float_token2] = ACTIONS(2446), - [anon_sym_true] = ACTIONS(2444), - [anon_sym_false] = ACTIONS(2444), - [aux_sym_string_token1] = ACTIONS(2446), - [aux_sym_string_token3] = ACTIONS(2446), + [728] = { + [ts_builtin_sym_end] = ACTIONS(3326), + [sym_identifier] = ACTIONS(3324), + [anon_sym_POUND] = ACTIONS(3326), + [anon_sym_package] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_cast] = ACTIONS(3324), + [anon_sym_DOLLARtype] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_untyped] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_this] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_AT_COLON] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_catch] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3324), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3324), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_QMARK_QMARK] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [anon_sym_null] = ACTIONS(3324), + [anon_sym_macro] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_extern] = ACTIONS(3324), + [anon_sym_inline] = ACTIONS(3324), + [anon_sym_overload] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_final] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), + [anon_sym_typedef] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [aux_sym_integer_token1] = ACTIONS(3324), + [aux_sym_integer_token2] = ACTIONS(3326), + [aux_sym_float_token1] = ACTIONS(3324), + [aux_sym_float_token2] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [aux_sym_string_token1] = ACTIONS(3326), + [aux_sym_string_token3] = ACTIONS(3326), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [685] = { - [ts_builtin_sym_end] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(2450), - [anon_sym_package] = ACTIONS(2448), - [anon_sym_import] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_using] = ACTIONS(2448), - [anon_sym_throw] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_cast] = ACTIONS(2448), - [anon_sym_DOLLARtype] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2448), - [anon_sym_return] = ACTIONS(2448), - [anon_sym_untyped] = ACTIONS(2448), - [anon_sym_break] = ACTIONS(2448), - [anon_sym_continue] = ACTIONS(2448), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_this] = ACTIONS(2448), - [anon_sym_AT] = ACTIONS(2448), - [anon_sym_AT_COLON] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2448), - [anon_sym_catch] = ACTIONS(2448), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_if] = ACTIONS(2448), - [anon_sym_while] = ACTIONS(2448), - [anon_sym_do] = ACTIONS(2448), - [anon_sym_new] = ACTIONS(2448), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_SLASH] = ACTIONS(2448), - [anon_sym_PLUS] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2448), - [anon_sym_GT_GT_GT] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_PIPE] = ACTIONS(2448), - [anon_sym_CARET] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2450), - [anon_sym_PIPE_PIPE] = ACTIONS(2450), - [anon_sym_EQ_EQ] = ACTIONS(2450), - [anon_sym_BANG_EQ] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_LT_EQ] = ACTIONS(2450), - [anon_sym_GT] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2450), - [anon_sym_EQ_GT] = ACTIONS(2450), - [anon_sym_QMARK_QMARK] = ACTIONS(2450), - [anon_sym_EQ] = ACTIONS(2448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2450), - [anon_sym_null] = ACTIONS(2448), - [anon_sym_macro] = ACTIONS(2448), - [anon_sym_abstract] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2448), - [anon_sym_public] = ACTIONS(2448), - [anon_sym_private] = ACTIONS(2448), - [anon_sym_extern] = ACTIONS(2448), - [anon_sym_inline] = ACTIONS(2448), - [anon_sym_overload] = ACTIONS(2448), - [anon_sym_override] = ACTIONS(2448), - [anon_sym_final] = ACTIONS(2448), - [anon_sym_class] = ACTIONS(2448), - [anon_sym_interface] = ACTIONS(2448), - [anon_sym_enum] = ACTIONS(2448), - [anon_sym_typedef] = ACTIONS(2448), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_var] = ACTIONS(2448), - [aux_sym_integer_token1] = ACTIONS(2448), - [aux_sym_integer_token2] = ACTIONS(2450), - [aux_sym_float_token1] = ACTIONS(2448), - [aux_sym_float_token2] = ACTIONS(2450), - [anon_sym_true] = ACTIONS(2448), - [anon_sym_false] = ACTIONS(2448), - [aux_sym_string_token1] = ACTIONS(2450), - [aux_sym_string_token3] = ACTIONS(2450), + [729] = { + [ts_builtin_sym_end] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3142), + [anon_sym_POUND] = ACTIONS(3144), + [anon_sym_package] = ACTIONS(3142), + [anon_sym_import] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_using] = ACTIONS(3142), + [anon_sym_throw] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_cast] = ACTIONS(3142), + [anon_sym_DOLLARtype] = ACTIONS(3144), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_untyped] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_this] = ACTIONS(3142), + [anon_sym_AT] = ACTIONS(3142), + [anon_sym_AT_COLON] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_catch] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_LT_LT] = ACTIONS(3144), + [anon_sym_GT_GT] = ACTIONS(3142), + [anon_sym_GT_GT_GT] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3142), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3144), + [anon_sym_GT] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3144), + [anon_sym_EQ_GT] = ACTIONS(3144), + [anon_sym_QMARK_QMARK] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3144), + [anon_sym_null] = ACTIONS(3142), + [anon_sym_macro] = ACTIONS(3142), + [anon_sym_abstract] = ACTIONS(3142), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_extern] = ACTIONS(3142), + [anon_sym_inline] = ACTIONS(3142), + [anon_sym_overload] = ACTIONS(3142), + [anon_sym_override] = ACTIONS(3142), + [anon_sym_final] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_interface] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_typedef] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3142), + [anon_sym_var] = ACTIONS(3142), + [aux_sym_integer_token1] = ACTIONS(3142), + [aux_sym_integer_token2] = ACTIONS(3144), + [aux_sym_float_token1] = ACTIONS(3142), + [aux_sym_float_token2] = ACTIONS(3144), + [anon_sym_true] = ACTIONS(3142), + [anon_sym_false] = ACTIONS(3142), + [aux_sym_string_token1] = ACTIONS(3144), + [aux_sym_string_token3] = ACTIONS(3144), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(2458), - [sym_identifier] = ACTIONS(2456), - [anon_sym_POUND] = ACTIONS(2458), - [anon_sym_package] = ACTIONS(2456), - [anon_sym_import] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2456), - [anon_sym_throw] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_cast] = ACTIONS(2456), - [anon_sym_DOLLARtype] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_untyped] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_this] = ACTIONS(2456), - [anon_sym_AT] = ACTIONS(2456), - [anon_sym_AT_COLON] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_catch] = ACTIONS(2456), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), - [anon_sym_PERCENT] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(2456), - [anon_sym_LT_LT] = ACTIONS(2458), - [anon_sym_GT_GT] = ACTIONS(2456), - [anon_sym_GT_GT_GT] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_PIPE] = ACTIONS(2456), - [anon_sym_CARET] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2458), - [anon_sym_EQ_EQ] = ACTIONS(2458), - [anon_sym_BANG_EQ] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_LT_EQ] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2456), - [anon_sym_GT_EQ] = ACTIONS(2458), - [anon_sym_EQ_GT] = ACTIONS(2458), - [anon_sym_QMARK_QMARK] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2458), - [anon_sym_null] = ACTIONS(2456), - [anon_sym_macro] = ACTIONS(2456), - [anon_sym_abstract] = ACTIONS(2456), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_public] = ACTIONS(2456), - [anon_sym_private] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_inline] = ACTIONS(2456), - [anon_sym_overload] = ACTIONS(2456), - [anon_sym_override] = ACTIONS(2456), - [anon_sym_final] = ACTIONS(2456), - [anon_sym_class] = ACTIONS(2456), - [anon_sym_interface] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), - [anon_sym_typedef] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2456), - [anon_sym_var] = ACTIONS(2456), - [aux_sym_integer_token1] = ACTIONS(2456), - [aux_sym_integer_token2] = ACTIONS(2458), - [aux_sym_float_token1] = ACTIONS(2456), - [aux_sym_float_token2] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(2456), - [anon_sym_false] = ACTIONS(2456), - [aux_sym_string_token1] = ACTIONS(2458), - [aux_sym_string_token3] = ACTIONS(2458), + [730] = { + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3146), + [anon_sym_POUND] = ACTIONS(3148), + [anon_sym_package] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_cast] = ACTIONS(3146), + [anon_sym_DOLLARtype] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_untyped] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_AT_COLON] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_catch] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_LT_LT] = ACTIONS(3148), + [anon_sym_GT_GT] = ACTIONS(3146), + [anon_sym_GT_GT_GT] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_CARET] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_PIPE_PIPE] = ACTIONS(3148), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3148), + [anon_sym_GT] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3148), + [anon_sym_EQ_GT] = ACTIONS(3148), + [anon_sym_QMARK_QMARK] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3146), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3148), + [anon_sym_null] = ACTIONS(3146), + [anon_sym_macro] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_extern] = ACTIONS(3146), + [anon_sym_inline] = ACTIONS(3146), + [anon_sym_overload] = ACTIONS(3146), + [anon_sym_override] = ACTIONS(3146), + [anon_sym_final] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_typedef] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [aux_sym_integer_token1] = ACTIONS(3146), + [aux_sym_integer_token2] = ACTIONS(3148), + [aux_sym_float_token1] = ACTIONS(3146), + [aux_sym_float_token2] = ACTIONS(3148), + [anon_sym_true] = ACTIONS(3146), + [anon_sym_false] = ACTIONS(3146), + [aux_sym_string_token1] = ACTIONS(3148), + [aux_sym_string_token3] = ACTIONS(3148), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2064), - [anon_sym_package] = ACTIONS(2062), - [anon_sym_import] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_using] = ACTIONS(2062), - [anon_sym_throw] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_switch] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_cast] = ACTIONS(2062), - [anon_sym_DOLLARtype] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(2062), - [anon_sym_untyped] = ACTIONS(2062), - [anon_sym_break] = ACTIONS(2062), - [anon_sym_continue] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_this] = ACTIONS(2062), - [anon_sym_AT] = ACTIONS(2062), - [anon_sym_AT_COLON] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2062), - [anon_sym_catch] = ACTIONS(2062), - [anon_sym_else] = ACTIONS(2062), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_do] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2062), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_PLUS_PLUS] = ACTIONS(2064), - [anon_sym_DASH_DASH] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2064), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_GT_GT_GT] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_BANG_EQ] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_LT_EQ] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_GT_EQ] = ACTIONS(2064), - [anon_sym_EQ_GT] = ACTIONS(2064), - [anon_sym_QMARK_QMARK] = ACTIONS(2064), - [anon_sym_EQ] = ACTIONS(2062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2064), - [anon_sym_null] = ACTIONS(2062), - [anon_sym_macro] = ACTIONS(2062), - [anon_sym_abstract] = ACTIONS(2062), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_public] = ACTIONS(2062), - [anon_sym_private] = ACTIONS(2062), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym_inline] = ACTIONS(2062), - [anon_sym_overload] = ACTIONS(2062), - [anon_sym_override] = ACTIONS(2062), - [anon_sym_final] = ACTIONS(2062), - [anon_sym_class] = ACTIONS(2062), - [anon_sym_interface] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_typedef] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2062), - [anon_sym_var] = ACTIONS(2062), - [aux_sym_integer_token1] = ACTIONS(2062), - [aux_sym_integer_token2] = ACTIONS(2064), - [aux_sym_float_token1] = ACTIONS(2062), - [aux_sym_float_token2] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(2062), - [anon_sym_false] = ACTIONS(2062), - [aux_sym_string_token1] = ACTIONS(2064), - [aux_sym_string_token3] = ACTIONS(2064), + [731] = { + [ts_builtin_sym_end] = ACTIONS(3152), + [sym_identifier] = ACTIONS(3150), + [anon_sym_POUND] = ACTIONS(3152), + [anon_sym_package] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_cast] = ACTIONS(3150), + [anon_sym_DOLLARtype] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_untyped] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_this] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_AT_COLON] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_catch] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_GT_GT] = ACTIONS(3150), + [anon_sym_GT_GT_GT] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_PIPE_PIPE] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3150), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_EQ_GT] = ACTIONS(3152), + [anon_sym_QMARK_QMARK] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3150), + [anon_sym_macro] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3150), + [anon_sym_overload] = ACTIONS(3150), + [anon_sym_override] = ACTIONS(3150), + [anon_sym_final] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [aux_sym_integer_token1] = ACTIONS(3150), + [aux_sym_integer_token2] = ACTIONS(3152), + [aux_sym_float_token1] = ACTIONS(3150), + [aux_sym_float_token2] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3150), + [anon_sym_false] = ACTIONS(3150), + [aux_sym_string_token1] = ACTIONS(3152), + [aux_sym_string_token3] = ACTIONS(3152), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [688] = { - [ts_builtin_sym_end] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2068), - [anon_sym_package] = ACTIONS(2066), - [anon_sym_import] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_using] = ACTIONS(2066), - [anon_sym_throw] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_switch] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_cast] = ACTIONS(2066), - [anon_sym_DOLLARtype] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_untyped] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_this] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2066), - [anon_sym_AT_COLON] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2066), - [anon_sym_catch] = ACTIONS(2066), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_new] = ACTIONS(2066), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_PLUS_PLUS] = ACTIONS(2068), - [anon_sym_DASH_DASH] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_GT_GT_GT] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_CARET] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_BANG_EQ] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_LT_EQ] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_GT_EQ] = ACTIONS(2068), - [anon_sym_EQ_GT] = ACTIONS(2068), - [anon_sym_QMARK_QMARK] = ACTIONS(2068), - [anon_sym_EQ] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2068), - [anon_sym_null] = ACTIONS(2066), - [anon_sym_macro] = ACTIONS(2066), - [anon_sym_abstract] = ACTIONS(2066), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_public] = ACTIONS(2066), - [anon_sym_private] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym_inline] = ACTIONS(2066), - [anon_sym_overload] = ACTIONS(2066), - [anon_sym_override] = ACTIONS(2066), - [anon_sym_final] = ACTIONS(2066), - [anon_sym_class] = ACTIONS(2066), - [anon_sym_interface] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [anon_sym_typedef] = ACTIONS(2066), - [anon_sym_function] = ACTIONS(2066), - [anon_sym_var] = ACTIONS(2066), - [aux_sym_integer_token1] = ACTIONS(2066), - [aux_sym_integer_token2] = ACTIONS(2068), - [aux_sym_float_token1] = ACTIONS(2066), - [aux_sym_float_token2] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [aux_sym_string_token1] = ACTIONS(2068), - [aux_sym_string_token3] = ACTIONS(2068), + [732] = { + [ts_builtin_sym_end] = ACTIONS(3156), + [sym_identifier] = ACTIONS(3154), + [anon_sym_POUND] = ACTIONS(3156), + [anon_sym_package] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_cast] = ACTIONS(3154), + [anon_sym_DOLLARtype] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_untyped] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_this] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_AT_COLON] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_catch] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_LT_LT] = ACTIONS(3156), + [anon_sym_GT_GT] = ACTIONS(3154), + [anon_sym_GT_GT_GT] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(3154), + [anon_sym_CARET] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_EQ_GT] = ACTIONS(3156), + [anon_sym_QMARK_QMARK] = ACTIONS(3156), + [anon_sym_EQ] = ACTIONS(3154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_macro] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_extern] = ACTIONS(3154), + [anon_sym_inline] = ACTIONS(3154), + [anon_sym_overload] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_final] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_typedef] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [aux_sym_integer_token1] = ACTIONS(3154), + [aux_sym_integer_token2] = ACTIONS(3156), + [aux_sym_float_token1] = ACTIONS(3154), + [aux_sym_float_token2] = ACTIONS(3156), + [anon_sym_true] = ACTIONS(3154), + [anon_sym_false] = ACTIONS(3154), + [aux_sym_string_token1] = ACTIONS(3156), + [aux_sym_string_token3] = ACTIONS(3156), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [689] = { - [ts_builtin_sym_end] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2460), - [anon_sym_POUND] = ACTIONS(2462), - [anon_sym_package] = ACTIONS(2460), - [anon_sym_import] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2460), - [anon_sym_throw] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_switch] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_cast] = ACTIONS(2460), - [anon_sym_DOLLARtype] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_untyped] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_this] = ACTIONS(2460), - [anon_sym_AT] = ACTIONS(2460), - [anon_sym_AT_COLON] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_catch] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_PLUS_PLUS] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2462), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_GT_GT_GT] = ACTIONS(2462), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2462), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE_PIPE] = ACTIONS(2462), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_LT_EQ] = ACTIONS(2462), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_GT_EQ] = ACTIONS(2462), - [anon_sym_EQ_GT] = ACTIONS(2462), - [anon_sym_QMARK_QMARK] = ACTIONS(2462), - [anon_sym_EQ] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2462), - [anon_sym_null] = ACTIONS(2460), - [anon_sym_macro] = ACTIONS(2460), - [anon_sym_abstract] = ACTIONS(2460), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_inline] = ACTIONS(2460), - [anon_sym_overload] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_final] = ACTIONS(2460), - [anon_sym_class] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2460), - [anon_sym_typedef] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2460), - [anon_sym_var] = ACTIONS(2460), - [aux_sym_integer_token1] = ACTIONS(2460), - [aux_sym_integer_token2] = ACTIONS(2462), - [aux_sym_float_token1] = ACTIONS(2460), - [aux_sym_float_token2] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2460), - [anon_sym_false] = ACTIONS(2460), - [aux_sym_string_token1] = ACTIONS(2462), - [aux_sym_string_token3] = ACTIONS(2462), + [733] = { + [ts_builtin_sym_end] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3328), + [anon_sym_POUND] = ACTIONS(3330), + [anon_sym_package] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_cast] = ACTIONS(3328), + [anon_sym_DOLLARtype] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_untyped] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_this] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_AT_COLON] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_catch] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_EQ_GT] = ACTIONS(3330), + [anon_sym_QMARK_QMARK] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), + [anon_sym_null] = ACTIONS(3328), + [anon_sym_macro] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(3328), + [anon_sym_inline] = ACTIONS(3328), + [anon_sym_overload] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_final] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_typedef] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [aux_sym_integer_token1] = ACTIONS(3328), + [aux_sym_integer_token2] = ACTIONS(3330), + [aux_sym_float_token1] = ACTIONS(3328), + [aux_sym_float_token2] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3328), + [anon_sym_false] = ACTIONS(3328), + [aux_sym_string_token1] = ACTIONS(3330), + [aux_sym_string_token3] = ACTIONS(3330), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [690] = { - [ts_builtin_sym_end] = ACTIONS(2470), - [sym_identifier] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2470), - [anon_sym_package] = ACTIONS(2468), - [anon_sym_import] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2468), - [anon_sym_throw] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_cast] = ACTIONS(2468), - [anon_sym_DOLLARtype] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_untyped] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_this] = ACTIONS(2468), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_AT_COLON] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2468), - [anon_sym_catch] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_new] = ACTIONS(2468), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2470), - [anon_sym_PERCENT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2470), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_GT_GT_GT] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP_AMP] = ACTIONS(2470), - [anon_sym_PIPE_PIPE] = ACTIONS(2470), - [anon_sym_EQ_EQ] = ACTIONS(2470), - [anon_sym_BANG_EQ] = ACTIONS(2470), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_LT_EQ] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2470), - [anon_sym_EQ_GT] = ACTIONS(2470), - [anon_sym_QMARK_QMARK] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2470), - [anon_sym_null] = ACTIONS(2468), - [anon_sym_macro] = ACTIONS(2468), - [anon_sym_abstract] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_public] = ACTIONS(2468), - [anon_sym_private] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_inline] = ACTIONS(2468), - [anon_sym_overload] = ACTIONS(2468), - [anon_sym_override] = ACTIONS(2468), - [anon_sym_final] = ACTIONS(2468), - [anon_sym_class] = ACTIONS(2468), - [anon_sym_interface] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - [anon_sym_typedef] = ACTIONS(2468), - [anon_sym_function] = ACTIONS(2468), - [anon_sym_var] = ACTIONS(2468), - [aux_sym_integer_token1] = ACTIONS(2468), - [aux_sym_integer_token2] = ACTIONS(2470), - [aux_sym_float_token1] = ACTIONS(2468), - [aux_sym_float_token2] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2468), - [anon_sym_false] = ACTIONS(2468), - [aux_sym_string_token1] = ACTIONS(2470), - [aux_sym_string_token3] = ACTIONS(2470), + [734] = { + [ts_builtin_sym_end] = ACTIONS(3160), + [sym_identifier] = ACTIONS(3158), + [anon_sym_POUND] = ACTIONS(3160), + [anon_sym_package] = ACTIONS(3158), + [anon_sym_import] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3158), + [anon_sym_throw] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_cast] = ACTIONS(3158), + [anon_sym_DOLLARtype] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_untyped] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3158), + [anon_sym_AT_COLON] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3158), + [anon_sym_catch] = ACTIONS(3158), + [anon_sym_else] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_while] = ACTIONS(3158), + [anon_sym_do] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_GT_GT_GT] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP_AMP] = ACTIONS(3160), + [anon_sym_PIPE_PIPE] = ACTIONS(3160), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3160), + [anon_sym_EQ_GT] = ACTIONS(3160), + [anon_sym_QMARK_QMARK] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3160), + [anon_sym_null] = ACTIONS(3158), + [anon_sym_macro] = ACTIONS(3158), + [anon_sym_abstract] = ACTIONS(3158), + [anon_sym_static] = ACTIONS(3158), + [anon_sym_public] = ACTIONS(3158), + [anon_sym_private] = ACTIONS(3158), + [anon_sym_extern] = ACTIONS(3158), + [anon_sym_inline] = ACTIONS(3158), + [anon_sym_overload] = ACTIONS(3158), + [anon_sym_override] = ACTIONS(3158), + [anon_sym_final] = ACTIONS(3158), + [anon_sym_class] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), + [anon_sym_typedef] = ACTIONS(3158), + [anon_sym_function] = ACTIONS(3158), + [anon_sym_var] = ACTIONS(3158), + [aux_sym_integer_token1] = ACTIONS(3158), + [aux_sym_integer_token2] = ACTIONS(3160), + [aux_sym_float_token1] = ACTIONS(3158), + [aux_sym_float_token2] = ACTIONS(3160), + [anon_sym_true] = ACTIONS(3158), + [anon_sym_false] = ACTIONS(3158), + [aux_sym_string_token1] = ACTIONS(3160), + [aux_sym_string_token3] = ACTIONS(3160), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [691] = { - [ts_builtin_sym_end] = ACTIONS(2474), - [sym_identifier] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(2474), - [anon_sym_package] = ACTIONS(2472), - [anon_sym_import] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2472), - [anon_sym_throw] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_cast] = ACTIONS(2472), - [anon_sym_DOLLARtype] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2472), - [anon_sym_return] = ACTIONS(2472), - [anon_sym_untyped] = ACTIONS(2472), - [anon_sym_break] = ACTIONS(2472), - [anon_sym_continue] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_this] = ACTIONS(2472), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_AT_COLON] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2472), - [anon_sym_catch] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2472), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_while] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2472), - [anon_sym_new] = ACTIONS(2472), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_DASH] = ACTIONS(2472), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2472), - [anon_sym_PLUS] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_GT_GT_GT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2472), - [anon_sym_PIPE] = ACTIONS(2472), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_EQ_GT] = ACTIONS(2474), - [anon_sym_QMARK_QMARK] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_null] = ACTIONS(2472), - [anon_sym_macro] = ACTIONS(2472), - [anon_sym_abstract] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_public] = ACTIONS(2472), - [anon_sym_private] = ACTIONS(2472), - [anon_sym_extern] = ACTIONS(2472), - [anon_sym_inline] = ACTIONS(2472), - [anon_sym_overload] = ACTIONS(2472), - [anon_sym_override] = ACTIONS(2472), - [anon_sym_final] = ACTIONS(2472), - [anon_sym_class] = ACTIONS(2472), - [anon_sym_interface] = ACTIONS(2472), - [anon_sym_enum] = ACTIONS(2472), - [anon_sym_typedef] = ACTIONS(2472), - [anon_sym_function] = ACTIONS(2472), - [anon_sym_var] = ACTIONS(2472), - [aux_sym_integer_token1] = ACTIONS(2472), - [aux_sym_integer_token2] = ACTIONS(2474), - [aux_sym_float_token1] = ACTIONS(2472), - [aux_sym_float_token2] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2472), - [anon_sym_false] = ACTIONS(2472), - [aux_sym_string_token1] = ACTIONS(2474), - [aux_sym_string_token3] = ACTIONS(2474), + [735] = { + [ts_builtin_sym_end] = ACTIONS(3164), + [sym_identifier] = ACTIONS(3162), + [anon_sym_POUND] = ACTIONS(3164), + [anon_sym_package] = ACTIONS(3162), + [anon_sym_import] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_cast] = ACTIONS(3162), + [anon_sym_DOLLARtype] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_untyped] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_this] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_AT_COLON] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_catch] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_do] = ACTIONS(3162), + [anon_sym_new] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [anon_sym_PERCENT] = ACTIONS(3164), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_LT_LT] = ACTIONS(3164), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_CARET] = ACTIONS(3164), + [anon_sym_AMP_AMP] = ACTIONS(3164), + [anon_sym_PIPE_PIPE] = ACTIONS(3164), + [anon_sym_EQ_EQ] = ACTIONS(3164), + [anon_sym_BANG_EQ] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3164), + [anon_sym_EQ_GT] = ACTIONS(3164), + [anon_sym_QMARK_QMARK] = ACTIONS(3164), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3164), + [anon_sym_null] = ACTIONS(3162), + [anon_sym_macro] = ACTIONS(3162), + [anon_sym_abstract] = ACTIONS(3162), + [anon_sym_static] = ACTIONS(3162), + [anon_sym_public] = ACTIONS(3162), + [anon_sym_private] = ACTIONS(3162), + [anon_sym_extern] = ACTIONS(3162), + [anon_sym_inline] = ACTIONS(3162), + [anon_sym_overload] = ACTIONS(3162), + [anon_sym_override] = ACTIONS(3162), + [anon_sym_final] = ACTIONS(3162), + [anon_sym_class] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), + [anon_sym_typedef] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(3162), + [anon_sym_var] = ACTIONS(3162), + [aux_sym_integer_token1] = ACTIONS(3162), + [aux_sym_integer_token2] = ACTIONS(3164), + [aux_sym_float_token1] = ACTIONS(3162), + [aux_sym_float_token2] = ACTIONS(3164), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [aux_sym_string_token1] = ACTIONS(3164), + [aux_sym_string_token3] = ACTIONS(3164), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [692] = { - [ts_builtin_sym_end] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2476), - [anon_sym_POUND] = ACTIONS(2478), - [anon_sym_package] = ACTIONS(2476), - [anon_sym_import] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_cast] = ACTIONS(2476), - [anon_sym_DOLLARtype] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2476), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_untyped] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2476), - [anon_sym_continue] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(2476), - [anon_sym_AT] = ACTIONS(2476), - [anon_sym_AT_COLON] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(2476), - [anon_sym_else] = ACTIONS(2476), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), - [anon_sym_do] = ACTIONS(2476), - [anon_sym_new] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_LT_LT] = ACTIONS(2478), - [anon_sym_GT_GT] = ACTIONS(2476), - [anon_sym_GT_GT_GT] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_PIPE] = ACTIONS(2476), - [anon_sym_CARET] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2478), - [anon_sym_PIPE_PIPE] = ACTIONS(2478), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_LT_EQ] = ACTIONS(2478), - [anon_sym_GT] = ACTIONS(2476), - [anon_sym_GT_EQ] = ACTIONS(2478), - [anon_sym_EQ_GT] = ACTIONS(2478), - [anon_sym_QMARK_QMARK] = ACTIONS(2478), - [anon_sym_EQ] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2478), - [anon_sym_null] = ACTIONS(2476), - [anon_sym_macro] = ACTIONS(2476), - [anon_sym_abstract] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_public] = ACTIONS(2476), - [anon_sym_private] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym_inline] = ACTIONS(2476), - [anon_sym_overload] = ACTIONS(2476), - [anon_sym_override] = ACTIONS(2476), - [anon_sym_final] = ACTIONS(2476), - [anon_sym_class] = ACTIONS(2476), - [anon_sym_interface] = ACTIONS(2476), - [anon_sym_enum] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2476), - [anon_sym_function] = ACTIONS(2476), - [anon_sym_var] = ACTIONS(2476), - [aux_sym_integer_token1] = ACTIONS(2476), - [aux_sym_integer_token2] = ACTIONS(2478), - [aux_sym_float_token1] = ACTIONS(2476), - [aux_sym_float_token2] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2476), - [anon_sym_false] = ACTIONS(2476), - [aux_sym_string_token1] = ACTIONS(2478), - [aux_sym_string_token3] = ACTIONS(2478), + [736] = { + [ts_builtin_sym_end] = ACTIONS(3168), + [sym_identifier] = ACTIONS(3166), + [anon_sym_POUND] = ACTIONS(3168), + [anon_sym_package] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3168), + [anon_sym_cast] = ACTIONS(3166), + [anon_sym_DOLLARtype] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_untyped] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_this] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3166), + [anon_sym_AT_COLON] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_catch] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3168), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3168), + [anon_sym_PERCENT] = ACTIONS(3168), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_LT_LT] = ACTIONS(3168), + [anon_sym_GT_GT] = ACTIONS(3166), + [anon_sym_GT_GT_GT] = ACTIONS(3168), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_PIPE] = ACTIONS(3166), + [anon_sym_CARET] = ACTIONS(3168), + [anon_sym_AMP_AMP] = ACTIONS(3168), + [anon_sym_PIPE_PIPE] = ACTIONS(3168), + [anon_sym_EQ_EQ] = ACTIONS(3168), + [anon_sym_BANG_EQ] = ACTIONS(3168), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3168), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3168), + [anon_sym_EQ_GT] = ACTIONS(3168), + [anon_sym_QMARK_QMARK] = ACTIONS(3168), + [anon_sym_EQ] = ACTIONS(3166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3168), + [anon_sym_null] = ACTIONS(3166), + [anon_sym_macro] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_extern] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_overload] = ACTIONS(3166), + [anon_sym_override] = ACTIONS(3166), + [anon_sym_final] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), + [anon_sym_typedef] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [aux_sym_integer_token1] = ACTIONS(3166), + [aux_sym_integer_token2] = ACTIONS(3168), + [aux_sym_float_token1] = ACTIONS(3166), + [aux_sym_float_token2] = ACTIONS(3168), + [anon_sym_true] = ACTIONS(3166), + [anon_sym_false] = ACTIONS(3166), + [aux_sym_string_token1] = ACTIONS(3168), + [aux_sym_string_token3] = ACTIONS(3168), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [693] = { - [ts_builtin_sym_end] = ACTIONS(2482), - [sym_identifier] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(2482), - [anon_sym_package] = ACTIONS(2480), - [anon_sym_import] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_using] = ACTIONS(2480), - [anon_sym_throw] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_switch] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_cast] = ACTIONS(2480), - [anon_sym_DOLLARtype] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_untyped] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_this] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2480), - [anon_sym_AT_COLON] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2480), - [anon_sym_catch] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(2480), - [anon_sym_new] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2482), - [anon_sym_GT_GT] = ACTIONS(2480), - [anon_sym_GT_GT_GT] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_CARET] = ACTIONS(2482), - [anon_sym_AMP_AMP] = ACTIONS(2482), - [anon_sym_PIPE_PIPE] = ACTIONS(2482), - [anon_sym_EQ_EQ] = ACTIONS(2482), - [anon_sym_BANG_EQ] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(2480), - [anon_sym_LT_EQ] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2482), - [anon_sym_EQ_GT] = ACTIONS(2482), - [anon_sym_QMARK_QMARK] = ACTIONS(2482), - [anon_sym_EQ] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2482), - [anon_sym_null] = ACTIONS(2480), - [anon_sym_macro] = ACTIONS(2480), - [anon_sym_abstract] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_public] = ACTIONS(2480), - [anon_sym_private] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_inline] = ACTIONS(2480), - [anon_sym_overload] = ACTIONS(2480), - [anon_sym_override] = ACTIONS(2480), - [anon_sym_final] = ACTIONS(2480), - [anon_sym_class] = ACTIONS(2480), - [anon_sym_interface] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2480), - [anon_sym_function] = ACTIONS(2480), - [anon_sym_var] = ACTIONS(2480), - [aux_sym_integer_token1] = ACTIONS(2480), - [aux_sym_integer_token2] = ACTIONS(2482), - [aux_sym_float_token1] = ACTIONS(2480), - [aux_sym_float_token2] = ACTIONS(2482), - [anon_sym_true] = ACTIONS(2480), - [anon_sym_false] = ACTIONS(2480), - [aux_sym_string_token1] = ACTIONS(2482), - [aux_sym_string_token3] = ACTIONS(2482), + [737] = { + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(3172), + [anon_sym_package] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_cast] = ACTIONS(3170), + [anon_sym_DOLLARtype] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_untyped] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_this] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_AT_COLON] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_PERCENT] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_LT_LT] = ACTIONS(3172), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_CARET] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_PIPE_PIPE] = ACTIONS(3172), + [anon_sym_EQ_EQ] = ACTIONS(3172), + [anon_sym_BANG_EQ] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_LT_EQ] = ACTIONS(3172), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_GT_EQ] = ACTIONS(3172), + [anon_sym_EQ_GT] = ACTIONS(3172), + [anon_sym_QMARK_QMARK] = ACTIONS(3172), + [anon_sym_EQ] = ACTIONS(3170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3172), + [anon_sym_null] = ACTIONS(3170), + [anon_sym_macro] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym_overload] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_final] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [aux_sym_integer_token1] = ACTIONS(3170), + [aux_sym_integer_token2] = ACTIONS(3172), + [aux_sym_float_token1] = ACTIONS(3170), + [aux_sym_float_token2] = ACTIONS(3172), + [anon_sym_true] = ACTIONS(3170), + [anon_sym_false] = ACTIONS(3170), + [aux_sym_string_token1] = ACTIONS(3172), + [aux_sym_string_token3] = ACTIONS(3172), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [694] = { - [ts_builtin_sym_end] = ACTIONS(2486), - [sym_identifier] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(2486), - [anon_sym_package] = ACTIONS(2484), - [anon_sym_import] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_using] = ACTIONS(2484), - [anon_sym_throw] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_switch] = ACTIONS(2484), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_cast] = ACTIONS(2484), - [anon_sym_DOLLARtype] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2484), - [anon_sym_return] = ACTIONS(2484), - [anon_sym_untyped] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_this] = ACTIONS(2484), - [anon_sym_AT] = ACTIONS(2484), - [anon_sym_AT_COLON] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2484), - [anon_sym_catch] = ACTIONS(2484), - [anon_sym_else] = ACTIONS(2484), - [anon_sym_if] = ACTIONS(2484), - [anon_sym_while] = ACTIONS(2484), - [anon_sym_do] = ACTIONS(2484), - [anon_sym_new] = ACTIONS(2484), - [anon_sym_TILDE] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(2484), - [anon_sym_DASH] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2486), - [anon_sym_DASH_DASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2484), - [anon_sym_PLUS] = ACTIONS(2484), - [anon_sym_LT_LT] = ACTIONS(2486), - [anon_sym_GT_GT] = ACTIONS(2484), - [anon_sym_GT_GT_GT] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2484), - [anon_sym_PIPE] = ACTIONS(2484), - [anon_sym_CARET] = ACTIONS(2486), - [anon_sym_AMP_AMP] = ACTIONS(2486), - [anon_sym_PIPE_PIPE] = ACTIONS(2486), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_LT] = ACTIONS(2484), - [anon_sym_LT_EQ] = ACTIONS(2486), - [anon_sym_GT] = ACTIONS(2484), - [anon_sym_GT_EQ] = ACTIONS(2486), - [anon_sym_EQ_GT] = ACTIONS(2486), - [anon_sym_QMARK_QMARK] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2486), - [anon_sym_null] = ACTIONS(2484), - [anon_sym_macro] = ACTIONS(2484), - [anon_sym_abstract] = ACTIONS(2484), - [anon_sym_static] = ACTIONS(2484), - [anon_sym_public] = ACTIONS(2484), - [anon_sym_private] = ACTIONS(2484), - [anon_sym_extern] = ACTIONS(2484), - [anon_sym_inline] = ACTIONS(2484), - [anon_sym_overload] = ACTIONS(2484), - [anon_sym_override] = ACTIONS(2484), - [anon_sym_final] = ACTIONS(2484), - [anon_sym_class] = ACTIONS(2484), - [anon_sym_interface] = ACTIONS(2484), - [anon_sym_enum] = ACTIONS(2484), - [anon_sym_typedef] = ACTIONS(2484), - [anon_sym_function] = ACTIONS(2484), - [anon_sym_var] = ACTIONS(2484), - [aux_sym_integer_token1] = ACTIONS(2484), - [aux_sym_integer_token2] = ACTIONS(2486), - [aux_sym_float_token1] = ACTIONS(2484), - [aux_sym_float_token2] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2484), - [anon_sym_false] = ACTIONS(2484), - [aux_sym_string_token1] = ACTIONS(2486), - [aux_sym_string_token3] = ACTIONS(2486), + [738] = { + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3174), + [anon_sym_POUND] = ACTIONS(3176), + [anon_sym_package] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_cast] = ACTIONS(3174), + [anon_sym_DOLLARtype] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_untyped] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_this] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_AT_COLON] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_catch] = ACTIONS(3174), + [anon_sym_else] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [anon_sym_PERCENT] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_LT_LT] = ACTIONS(3176), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_PIPE_PIPE] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_GT_EQ] = ACTIONS(3176), + [anon_sym_EQ_GT] = ACTIONS(3176), + [anon_sym_QMARK_QMARK] = ACTIONS(3176), + [anon_sym_EQ] = ACTIONS(3174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3176), + [anon_sym_null] = ACTIONS(3174), + [anon_sym_macro] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3174), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_public] = ACTIONS(3174), + [anon_sym_private] = ACTIONS(3174), + [anon_sym_extern] = ACTIONS(3174), + [anon_sym_inline] = ACTIONS(3174), + [anon_sym_overload] = ACTIONS(3174), + [anon_sym_override] = ACTIONS(3174), + [anon_sym_final] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), + [anon_sym_typedef] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [aux_sym_integer_token1] = ACTIONS(3174), + [aux_sym_integer_token2] = ACTIONS(3176), + [aux_sym_float_token1] = ACTIONS(3174), + [aux_sym_float_token2] = ACTIONS(3176), + [anon_sym_true] = ACTIONS(3174), + [anon_sym_false] = ACTIONS(3174), + [aux_sym_string_token1] = ACTIONS(3176), + [aux_sym_string_token3] = ACTIONS(3176), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [695] = { - [ts_builtin_sym_end] = ACTIONS(872), - [sym_identifier] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(872), - [anon_sym_package] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_using] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_cast] = ACTIONS(874), - [anon_sym_DOLLARtype] = ACTIONS(872), - [anon_sym_for] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_untyped] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_this] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_AT_COLON] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_catch] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_PERCENT] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(872), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(872), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(872), - [anon_sym_PIPE_PIPE] = ACTIONS(872), - [anon_sym_EQ_EQ] = ACTIONS(872), - [anon_sym_BANG_EQ] = ACTIONS(872), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(872), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_QMARK] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(872), - [anon_sym_null] = ACTIONS(874), - [anon_sym_macro] = ACTIONS(874), - [anon_sym_abstract] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_public] = ACTIONS(874), - [anon_sym_private] = ACTIONS(874), - [anon_sym_extern] = ACTIONS(874), - [anon_sym_inline] = ACTIONS(874), - [anon_sym_overload] = ACTIONS(874), - [anon_sym_override] = ACTIONS(874), - [anon_sym_final] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_interface] = ACTIONS(874), - [anon_sym_enum] = ACTIONS(874), - [anon_sym_typedef] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [aux_sym_integer_token1] = ACTIONS(874), - [aux_sym_integer_token2] = ACTIONS(872), - [aux_sym_float_token1] = ACTIONS(874), - [aux_sym_float_token2] = ACTIONS(872), - [anon_sym_true] = ACTIONS(874), - [anon_sym_false] = ACTIONS(874), - [aux_sym_string_token1] = ACTIONS(872), - [aux_sym_string_token3] = ACTIONS(872), + [739] = { + [ts_builtin_sym_end] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2662), + [anon_sym_package] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_using] = ACTIONS(2660), + [anon_sym_throw] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_switch] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_cast] = ACTIONS(2660), + [anon_sym_DOLLARtype] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_untyped] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_this] = ACTIONS(2660), + [anon_sym_AT] = ACTIONS(2660), + [anon_sym_AT_COLON] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_catch] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_do] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2660), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_PLUS_PLUS] = ACTIONS(2662), + [anon_sym_DASH_DASH] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_SLASH] = ACTIONS(2660), + [anon_sym_PLUS] = ACTIONS(2660), + [anon_sym_LT_LT] = ACTIONS(2662), + [anon_sym_GT_GT] = ACTIONS(2660), + [anon_sym_GT_GT_GT] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2660), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_CARET] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_EQ_EQ] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_LT_EQ] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_GT_EQ] = ACTIONS(2662), + [anon_sym_EQ_GT] = ACTIONS(2662), + [anon_sym_QMARK_QMARK] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), + [anon_sym_null] = ACTIONS(2660), + [anon_sym_macro] = ACTIONS(2660), + [anon_sym_abstract] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_private] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_overload] = ACTIONS(2660), + [anon_sym_override] = ACTIONS(2660), + [anon_sym_final] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2660), + [anon_sym_interface] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_typedef] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2660), + [anon_sym_var] = ACTIONS(2660), + [aux_sym_integer_token1] = ACTIONS(2660), + [aux_sym_integer_token2] = ACTIONS(2662), + [aux_sym_float_token1] = ACTIONS(2660), + [aux_sym_float_token2] = ACTIONS(2662), + [anon_sym_true] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [aux_sym_string_token1] = ACTIONS(2662), + [aux_sym_string_token3] = ACTIONS(2662), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [696] = { - [ts_builtin_sym_end] = ACTIONS(2490), - [sym_identifier] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(2490), - [anon_sym_package] = ACTIONS(2488), - [anon_sym_import] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_using] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_cast] = ACTIONS(2488), - [anon_sym_DOLLARtype] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_untyped] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2490), - [anon_sym_this] = ACTIONS(2488), - [anon_sym_AT] = ACTIONS(2488), - [anon_sym_AT_COLON] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_catch] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2488), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2490), - [anon_sym_GT_GT] = ACTIONS(2488), - [anon_sym_GT_GT_GT] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_CARET] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_PIPE_PIPE] = ACTIONS(2490), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_LT_EQ] = ACTIONS(2490), - [anon_sym_GT] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2490), - [anon_sym_EQ_GT] = ACTIONS(2490), - [anon_sym_QMARK_QMARK] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2490), - [anon_sym_null] = ACTIONS(2488), - [anon_sym_macro] = ACTIONS(2488), - [anon_sym_abstract] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_overload] = ACTIONS(2488), - [anon_sym_override] = ACTIONS(2488), - [anon_sym_final] = ACTIONS(2488), - [anon_sym_class] = ACTIONS(2488), - [anon_sym_interface] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_typedef] = ACTIONS(2488), - [anon_sym_function] = ACTIONS(2488), - [anon_sym_var] = ACTIONS(2488), - [aux_sym_integer_token1] = ACTIONS(2488), - [aux_sym_integer_token2] = ACTIONS(2490), - [aux_sym_float_token1] = ACTIONS(2488), - [aux_sym_float_token2] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2488), - [anon_sym_false] = ACTIONS(2488), - [aux_sym_string_token1] = ACTIONS(2490), - [aux_sym_string_token3] = ACTIONS(2490), + [740] = { + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3178), + [anon_sym_POUND] = ACTIONS(3180), + [anon_sym_package] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_cast] = ACTIONS(3178), + [anon_sym_DOLLARtype] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_untyped] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_this] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_AT_COLON] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(3178), + [anon_sym_else] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_PERCENT] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3180), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_PIPE_PIPE] = ACTIONS(3180), + [anon_sym_EQ_EQ] = ACTIONS(3180), + [anon_sym_BANG_EQ] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3180), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3180), + [anon_sym_EQ_GT] = ACTIONS(3180), + [anon_sym_QMARK_QMARK] = ACTIONS(3180), + [anon_sym_EQ] = ACTIONS(3178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3180), + [anon_sym_null] = ACTIONS(3178), + [anon_sym_macro] = ACTIONS(3178), + [anon_sym_abstract] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_overload] = ACTIONS(3178), + [anon_sym_override] = ACTIONS(3178), + [anon_sym_final] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [aux_sym_integer_token1] = ACTIONS(3178), + [aux_sym_integer_token2] = ACTIONS(3180), + [aux_sym_float_token1] = ACTIONS(3178), + [aux_sym_float_token2] = ACTIONS(3180), + [anon_sym_true] = ACTIONS(3178), + [anon_sym_false] = ACTIONS(3178), + [aux_sym_string_token1] = ACTIONS(3180), + [aux_sym_string_token3] = ACTIONS(3180), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [697] = { - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(2494), - [anon_sym_package] = ACTIONS(2492), - [anon_sym_import] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_using] = ACTIONS(2492), - [anon_sym_throw] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_switch] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_cast] = ACTIONS(2492), - [anon_sym_DOLLARtype] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_untyped] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_this] = ACTIONS(2492), - [anon_sym_AT] = ACTIONS(2492), - [anon_sym_AT_COLON] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_catch] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2494), - [anon_sym_GT_GT] = ACTIONS(2492), - [anon_sym_GT_GT_GT] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_CARET] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_PIPE_PIPE] = ACTIONS(2494), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_LT_EQ] = ACTIONS(2494), - [anon_sym_GT] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2494), - [anon_sym_EQ_GT] = ACTIONS(2494), - [anon_sym_QMARK_QMARK] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_macro] = ACTIONS(2492), - [anon_sym_abstract] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_public] = ACTIONS(2492), - [anon_sym_private] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_inline] = ACTIONS(2492), - [anon_sym_overload] = ACTIONS(2492), - [anon_sym_override] = ACTIONS(2492), - [anon_sym_final] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2492), - [anon_sym_interface] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_typedef] = ACTIONS(2492), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_var] = ACTIONS(2492), - [aux_sym_integer_token1] = ACTIONS(2492), - [aux_sym_integer_token2] = ACTIONS(2494), - [aux_sym_float_token1] = ACTIONS(2492), - [aux_sym_float_token2] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2492), - [anon_sym_false] = ACTIONS(2492), - [aux_sym_string_token1] = ACTIONS(2494), - [aux_sym_string_token3] = ACTIONS(2494), + [741] = { + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3182), + [anon_sym_POUND] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_cast] = ACTIONS(3182), + [anon_sym_DOLLARtype] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_untyped] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_AT_COLON] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PERCENT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3184), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_CARET] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_PIPE_PIPE] = ACTIONS(3184), + [anon_sym_EQ_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_LT_EQ] = ACTIONS(3184), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3184), + [anon_sym_EQ_GT] = ACTIONS(3184), + [anon_sym_QMARK_QMARK] = ACTIONS(3184), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_macro] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_overload] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_final] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [aux_sym_integer_token1] = ACTIONS(3182), + [aux_sym_integer_token2] = ACTIONS(3184), + [aux_sym_float_token1] = ACTIONS(3182), + [aux_sym_float_token2] = ACTIONS(3184), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [aux_sym_string_token1] = ACTIONS(3184), + [aux_sym_string_token3] = ACTIONS(3184), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [698] = { - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_identifier] = ACTIONS(2496), - [anon_sym_POUND] = ACTIONS(2498), - [anon_sym_package] = ACTIONS(2496), - [anon_sym_import] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_using] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_cast] = ACTIONS(2496), - [anon_sym_DOLLARtype] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_untyped] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2498), - [anon_sym_this] = ACTIONS(2496), - [anon_sym_AT] = ACTIONS(2496), - [anon_sym_AT_COLON] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_catch] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2498), - [anon_sym_GT_GT] = ACTIONS(2496), - [anon_sym_GT_GT_GT] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2496), - [anon_sym_CARET] = ACTIONS(2498), - [anon_sym_AMP_AMP] = ACTIONS(2498), - [anon_sym_PIPE_PIPE] = ACTIONS(2498), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_LT_EQ] = ACTIONS(2498), - [anon_sym_GT] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2498), - [anon_sym_EQ_GT] = ACTIONS(2498), - [anon_sym_QMARK_QMARK] = ACTIONS(2498), - [anon_sym_EQ] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2496), - [anon_sym_macro] = ACTIONS(2496), - [anon_sym_abstract] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_public] = ACTIONS(2496), - [anon_sym_private] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_overload] = ACTIONS(2496), - [anon_sym_override] = ACTIONS(2496), - [anon_sym_final] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_interface] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_typedef] = ACTIONS(2496), - [anon_sym_function] = ACTIONS(2496), - [anon_sym_var] = ACTIONS(2496), - [aux_sym_integer_token1] = ACTIONS(2496), - [aux_sym_integer_token2] = ACTIONS(2498), - [aux_sym_float_token1] = ACTIONS(2496), - [aux_sym_float_token2] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2496), - [anon_sym_false] = ACTIONS(2496), - [aux_sym_string_token1] = ACTIONS(2498), - [aux_sym_string_token3] = ACTIONS(2498), + [742] = { + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3186), + [anon_sym_POUND] = ACTIONS(3188), + [anon_sym_package] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_cast] = ACTIONS(3186), + [anon_sym_DOLLARtype] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_untyped] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_this] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_AT_COLON] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_catch] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3188), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_EQ_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_EQ_GT] = ACTIONS(3188), + [anon_sym_QMARK_QMARK] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3186), + [anon_sym_macro] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_extern] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_overload] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_final] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_typedef] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [aux_sym_integer_token1] = ACTIONS(3186), + [aux_sym_integer_token2] = ACTIONS(3188), + [aux_sym_float_token1] = ACTIONS(3186), + [aux_sym_float_token2] = ACTIONS(3188), + [anon_sym_true] = ACTIONS(3186), + [anon_sym_false] = ACTIONS(3186), + [aux_sym_string_token1] = ACTIONS(3188), + [aux_sym_string_token3] = ACTIONS(3188), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(2502), - [anon_sym_package] = ACTIONS(2500), - [anon_sym_import] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_cast] = ACTIONS(2500), - [anon_sym_DOLLARtype] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_untyped] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_this] = ACTIONS(2500), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_AT_COLON] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_catch] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2502), - [anon_sym_GT_GT] = ACTIONS(2500), - [anon_sym_GT_GT_GT] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2500), - [anon_sym_CARET] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_PIPE_PIPE] = ACTIONS(2502), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2500), - [anon_sym_LT_EQ] = ACTIONS(2502), - [anon_sym_GT] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2502), - [anon_sym_EQ_GT] = ACTIONS(2502), - [anon_sym_QMARK_QMARK] = ACTIONS(2502), - [anon_sym_EQ] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), - [anon_sym_null] = ACTIONS(2500), - [anon_sym_macro] = ACTIONS(2500), - [anon_sym_abstract] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_public] = ACTIONS(2500), - [anon_sym_private] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_overload] = ACTIONS(2500), - [anon_sym_override] = ACTIONS(2500), - [anon_sym_final] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_interface] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_function] = ACTIONS(2500), - [anon_sym_var] = ACTIONS(2500), - [aux_sym_integer_token1] = ACTIONS(2500), - [aux_sym_integer_token2] = ACTIONS(2502), - [aux_sym_float_token1] = ACTIONS(2500), - [aux_sym_float_token2] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2500), - [anon_sym_false] = ACTIONS(2500), - [aux_sym_string_token1] = ACTIONS(2502), - [aux_sym_string_token3] = ACTIONS(2502), + [743] = { + [ts_builtin_sym_end] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_package] = ACTIONS(2796), + [anon_sym_import] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_throw] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_cast] = ACTIONS(2796), + [anon_sym_DOLLARtype] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_untyped] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym_this] = ACTIONS(2796), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_AT_COLON] = ACTIONS(2798), + [anon_sym_try] = ACTIONS(2796), + [anon_sym_catch] = ACTIONS(2796), + [anon_sym_else] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_new] = ACTIONS(2796), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2796), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2796), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2796), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_EQ_GT] = ACTIONS(2798), + [anon_sym_QMARK_QMARK] = ACTIONS(2798), + [anon_sym_EQ] = ACTIONS(2796), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2798), + [anon_sym_null] = ACTIONS(2796), + [anon_sym_macro] = ACTIONS(2796), + [anon_sym_abstract] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_public] = ACTIONS(2796), + [anon_sym_private] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym_inline] = ACTIONS(2796), + [anon_sym_overload] = ACTIONS(2796), + [anon_sym_override] = ACTIONS(2796), + [anon_sym_final] = ACTIONS(2796), + [anon_sym_class] = ACTIONS(2796), + [anon_sym_interface] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_typedef] = ACTIONS(2796), + [anon_sym_function] = ACTIONS(2796), + [anon_sym_var] = ACTIONS(2796), + [aux_sym_integer_token1] = ACTIONS(2796), + [aux_sym_integer_token2] = ACTIONS(2798), + [aux_sym_float_token1] = ACTIONS(2796), + [aux_sym_float_token2] = ACTIONS(2798), + [anon_sym_true] = ACTIONS(2796), + [anon_sym_false] = ACTIONS(2796), + [aux_sym_string_token1] = ACTIONS(2798), + [aux_sym_string_token3] = ACTIONS(2798), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2504), - [anon_sym_POUND] = ACTIONS(2506), - [anon_sym_package] = ACTIONS(2504), - [anon_sym_import] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_using] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_cast] = ACTIONS(2504), - [anon_sym_DOLLARtype] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_untyped] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2506), - [anon_sym_this] = ACTIONS(2504), - [anon_sym_AT] = ACTIONS(2504), - [anon_sym_AT_COLON] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_catch] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(2504), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2506), - [anon_sym_GT_GT] = ACTIONS(2504), - [anon_sym_GT_GT_GT] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2504), - [anon_sym_CARET] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_PIPE_PIPE] = ACTIONS(2506), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_LT_EQ] = ACTIONS(2506), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2506), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_QMARK_QMARK] = ACTIONS(2506), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2506), - [anon_sym_null] = ACTIONS(2504), - [anon_sym_macro] = ACTIONS(2504), - [anon_sym_abstract] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_public] = ACTIONS(2504), - [anon_sym_private] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_overload] = ACTIONS(2504), - [anon_sym_override] = ACTIONS(2504), - [anon_sym_final] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2504), - [anon_sym_interface] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_typedef] = ACTIONS(2504), - [anon_sym_function] = ACTIONS(2504), - [anon_sym_var] = ACTIONS(2504), - [aux_sym_integer_token1] = ACTIONS(2504), - [aux_sym_integer_token2] = ACTIONS(2506), - [aux_sym_float_token1] = ACTIONS(2504), - [aux_sym_float_token2] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2504), - [anon_sym_false] = ACTIONS(2504), - [aux_sym_string_token1] = ACTIONS(2506), - [aux_sym_string_token3] = ACTIONS(2506), + [744] = { + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3194), + [anon_sym_POUND] = ACTIONS(3196), + [anon_sym_package] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_cast] = ACTIONS(3194), + [anon_sym_DOLLARtype] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_untyped] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_AT_COLON] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_catch] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_LT_LT] = ACTIONS(3196), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3196), + [anon_sym_AMP_AMP] = ACTIONS(3196), + [anon_sym_PIPE_PIPE] = ACTIONS(3196), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3196), + [anon_sym_EQ_GT] = ACTIONS(3196), + [anon_sym_QMARK_QMARK] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3196), + [anon_sym_null] = ACTIONS(3194), + [anon_sym_macro] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_extern] = ACTIONS(3194), + [anon_sym_inline] = ACTIONS(3194), + [anon_sym_overload] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_final] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_typedef] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [aux_sym_integer_token1] = ACTIONS(3194), + [aux_sym_integer_token2] = ACTIONS(3196), + [aux_sym_float_token1] = ACTIONS(3194), + [aux_sym_float_token2] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [aux_sym_string_token1] = ACTIONS(3196), + [aux_sym_string_token3] = ACTIONS(3196), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [701] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2072), - [anon_sym_package] = ACTIONS(2070), - [anon_sym_import] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_using] = ACTIONS(2070), - [anon_sym_throw] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_cast] = ACTIONS(2070), - [anon_sym_DOLLARtype] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_untyped] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_this] = ACTIONS(2070), - [anon_sym_AT] = ACTIONS(2070), - [anon_sym_AT_COLON] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2070), - [anon_sym_catch] = ACTIONS(2070), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2070), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_LT_LT] = ACTIONS(2072), - [anon_sym_GT_GT] = ACTIONS(2070), - [anon_sym_GT_GT_GT] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_EQ_EQ] = ACTIONS(2072), - [anon_sym_BANG_EQ] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_LT_EQ] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2070), - [anon_sym_GT_EQ] = ACTIONS(2072), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_QMARK_QMARK] = ACTIONS(2072), - [anon_sym_EQ] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2070), - [anon_sym_macro] = ACTIONS(2070), - [anon_sym_abstract] = ACTIONS(2070), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_public] = ACTIONS(2070), - [anon_sym_private] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [anon_sym_overload] = ACTIONS(2070), - [anon_sym_override] = ACTIONS(2070), - [anon_sym_final] = ACTIONS(2070), - [anon_sym_class] = ACTIONS(2070), - [anon_sym_interface] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_function] = ACTIONS(2070), - [anon_sym_var] = ACTIONS(2070), - [aux_sym_integer_token1] = ACTIONS(2070), - [aux_sym_integer_token2] = ACTIONS(2072), - [aux_sym_float_token1] = ACTIONS(2070), - [aux_sym_float_token2] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [aux_sym_string_token1] = ACTIONS(2072), - [aux_sym_string_token3] = ACTIONS(2072), + [745] = { + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3200), + [anon_sym_package] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_cast] = ACTIONS(3198), + [anon_sym_DOLLARtype] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_untyped] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_this] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_AT_COLON] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_catch] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3200), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_EQ_GT] = ACTIONS(3200), + [anon_sym_QMARK_QMARK] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3200), + [anon_sym_null] = ACTIONS(3198), + [anon_sym_macro] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym_overload] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_final] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [aux_sym_integer_token1] = ACTIONS(3198), + [aux_sym_integer_token2] = ACTIONS(3200), + [aux_sym_float_token1] = ACTIONS(3198), + [aux_sym_float_token2] = ACTIONS(3200), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym_string_token1] = ACTIONS(3200), + [aux_sym_string_token3] = ACTIONS(3200), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [702] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_package] = ACTIONS(2074), - [anon_sym_import] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_using] = ACTIONS(2074), - [anon_sym_throw] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_switch] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_cast] = ACTIONS(2074), - [anon_sym_DOLLARtype] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2074), - [anon_sym_untyped] = ACTIONS(2074), - [anon_sym_break] = ACTIONS(2074), - [anon_sym_continue] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_this] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2074), - [anon_sym_AT_COLON] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2074), - [anon_sym_catch] = ACTIONS(2074), - [anon_sym_else] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_do] = ACTIONS(2074), - [anon_sym_new] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2074), - [anon_sym_PLUS] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2074), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_QMARK_QMARK] = ACTIONS(2076), - [anon_sym_EQ] = ACTIONS(2074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2076), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_macro] = ACTIONS(2074), - [anon_sym_abstract] = ACTIONS(2074), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_public] = ACTIONS(2074), - [anon_sym_private] = ACTIONS(2074), - [anon_sym_extern] = ACTIONS(2074), - [anon_sym_inline] = ACTIONS(2074), - [anon_sym_overload] = ACTIONS(2074), - [anon_sym_override] = ACTIONS(2074), - [anon_sym_final] = ACTIONS(2074), - [anon_sym_class] = ACTIONS(2074), - [anon_sym_interface] = ACTIONS(2074), - [anon_sym_enum] = ACTIONS(2074), - [anon_sym_typedef] = ACTIONS(2074), - [anon_sym_function] = ACTIONS(2074), - [anon_sym_var] = ACTIONS(2074), - [aux_sym_integer_token1] = ACTIONS(2074), - [aux_sym_integer_token2] = ACTIONS(2076), - [aux_sym_float_token1] = ACTIONS(2074), - [aux_sym_float_token2] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [aux_sym_string_token1] = ACTIONS(2076), - [aux_sym_string_token3] = ACTIONS(2076), + [746] = { + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3202), + [anon_sym_POUND] = ACTIONS(3204), + [anon_sym_package] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_cast] = ACTIONS(3202), + [anon_sym_DOLLARtype] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_untyped] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_this] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_AT_COLON] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_catch] = ACTIONS(3202), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3204), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_PIPE_PIPE] = ACTIONS(3204), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3204), + [anon_sym_EQ_GT] = ACTIONS(3204), + [anon_sym_QMARK_QMARK] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_macro] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym_overload] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_final] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [aux_sym_integer_token1] = ACTIONS(3202), + [aux_sym_integer_token2] = ACTIONS(3204), + [aux_sym_float_token1] = ACTIONS(3202), + [aux_sym_float_token2] = ACTIONS(3204), + [anon_sym_true] = ACTIONS(3202), + [anon_sym_false] = ACTIONS(3202), + [aux_sym_string_token1] = ACTIONS(3204), + [aux_sym_string_token3] = ACTIONS(3204), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [703] = { - [sym_else_clause] = STATE(491), - [sym_identifier] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1974), - [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_for] = ACTIONS(1972), - [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_try] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [747] = { + [ts_builtin_sym_end] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(3208), + [anon_sym_package] = ACTIONS(3206), + [anon_sym_import] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3206), + [anon_sym_throw] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_switch] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_cast] = ACTIONS(3206), + [anon_sym_DOLLARtype] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_untyped] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_this] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_AT_COLON] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_catch] = ACTIONS(3206), + [anon_sym_else] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_LT_LT] = ACTIONS(3208), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_EQ_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_EQ_GT] = ACTIONS(3208), + [anon_sym_QMARK_QMARK] = ACTIONS(3208), + [anon_sym_EQ] = ACTIONS(3206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3208), + [anon_sym_null] = ACTIONS(3206), + [anon_sym_macro] = ACTIONS(3206), + [anon_sym_abstract] = ACTIONS(3206), + [anon_sym_static] = ACTIONS(3206), + [anon_sym_public] = ACTIONS(3206), + [anon_sym_private] = ACTIONS(3206), + [anon_sym_extern] = ACTIONS(3206), + [anon_sym_inline] = ACTIONS(3206), + [anon_sym_overload] = ACTIONS(3206), + [anon_sym_override] = ACTIONS(3206), + [anon_sym_final] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), + [anon_sym_typedef] = ACTIONS(3206), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_var] = ACTIONS(3206), + [aux_sym_integer_token1] = ACTIONS(3206), + [aux_sym_integer_token2] = ACTIONS(3208), + [aux_sym_float_token1] = ACTIONS(3206), + [aux_sym_float_token2] = ACTIONS(3208), + [anon_sym_true] = ACTIONS(3206), + [anon_sym_false] = ACTIONS(3206), + [aux_sym_string_token1] = ACTIONS(3208), + [aux_sym_string_token3] = ACTIONS(3208), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1974), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2508), - [anon_sym_POUND] = ACTIONS(2510), - [anon_sym_package] = ACTIONS(2508), - [anon_sym_import] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2508), - [anon_sym_throw] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_cast] = ACTIONS(2508), - [anon_sym_DOLLARtype] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_untyped] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_this] = ACTIONS(2508), - [anon_sym_AT] = ACTIONS(2508), - [anon_sym_AT_COLON] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_catch] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_do] = ACTIONS(2508), - [anon_sym_new] = ACTIONS(2508), - [anon_sym_TILDE] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2510), - [anon_sym_GT_GT] = ACTIONS(2508), - [anon_sym_GT_GT_GT] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_CARET] = ACTIONS(2510), - [anon_sym_AMP_AMP] = ACTIONS(2510), - [anon_sym_PIPE_PIPE] = ACTIONS(2510), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_LT_EQ] = ACTIONS(2510), - [anon_sym_GT] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2510), - [anon_sym_EQ_GT] = ACTIONS(2510), - [anon_sym_QMARK_QMARK] = ACTIONS(2510), - [anon_sym_EQ] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2508), - [anon_sym_macro] = ACTIONS(2508), - [anon_sym_abstract] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_public] = ACTIONS(2508), - [anon_sym_private] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_inline] = ACTIONS(2508), - [anon_sym_overload] = ACTIONS(2508), - [anon_sym_override] = ACTIONS(2508), - [anon_sym_final] = ACTIONS(2508), - [anon_sym_class] = ACTIONS(2508), - [anon_sym_interface] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2508), - [anon_sym_typedef] = ACTIONS(2508), - [anon_sym_function] = ACTIONS(2508), - [anon_sym_var] = ACTIONS(2508), - [aux_sym_integer_token1] = ACTIONS(2508), - [aux_sym_integer_token2] = ACTIONS(2510), - [aux_sym_float_token1] = ACTIONS(2508), - [aux_sym_float_token2] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [aux_sym_string_token1] = ACTIONS(2510), - [aux_sym_string_token3] = ACTIONS(2510), + [748] = { + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3212), + [anon_sym_package] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_cast] = ACTIONS(3210), + [anon_sym_DOLLARtype] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_untyped] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_this] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_AT_COLON] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_catch] = ACTIONS(3210), + [anon_sym_else] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_LT_LT] = ACTIONS(3212), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_CARET] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_EQ_EQ] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_LT_EQ] = ACTIONS(3212), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_GT_EQ] = ACTIONS(3212), + [anon_sym_EQ_GT] = ACTIONS(3212), + [anon_sym_QMARK_QMARK] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3210), + [anon_sym_macro] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_extern] = ACTIONS(3210), + [anon_sym_inline] = ACTIONS(3210), + [anon_sym_overload] = ACTIONS(3210), + [anon_sym_override] = ACTIONS(3210), + [anon_sym_final] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), + [anon_sym_typedef] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [aux_sym_integer_token1] = ACTIONS(3210), + [aux_sym_integer_token2] = ACTIONS(3212), + [aux_sym_float_token1] = ACTIONS(3210), + [aux_sym_float_token2] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3210), + [anon_sym_false] = ACTIONS(3210), + [aux_sym_string_token1] = ACTIONS(3212), + [aux_sym_string_token3] = ACTIONS(3212), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2080), - [anon_sym_package] = ACTIONS(2078), - [anon_sym_import] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_using] = ACTIONS(2078), - [anon_sym_throw] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_cast] = ACTIONS(2078), - [anon_sym_DOLLARtype] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_untyped] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_this] = ACTIONS(2078), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_AT_COLON] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2078), - [anon_sym_catch] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PERCENT] = ACTIONS(2080), - [anon_sym_SLASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_LT_LT] = ACTIONS(2080), - [anon_sym_GT_GT] = ACTIONS(2078), - [anon_sym_GT_GT_GT] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_EQ_EQ] = ACTIONS(2080), - [anon_sym_BANG_EQ] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_LT_EQ] = ACTIONS(2080), - [anon_sym_GT] = ACTIONS(2078), - [anon_sym_GT_EQ] = ACTIONS(2080), - [anon_sym_EQ_GT] = ACTIONS(2080), - [anon_sym_QMARK_QMARK] = ACTIONS(2080), - [anon_sym_EQ] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2080), - [anon_sym_null] = ACTIONS(2078), - [anon_sym_macro] = ACTIONS(2078), - [anon_sym_abstract] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_public] = ACTIONS(2078), - [anon_sym_private] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [anon_sym_overload] = ACTIONS(2078), - [anon_sym_override] = ACTIONS(2078), - [anon_sym_final] = ACTIONS(2078), - [anon_sym_class] = ACTIONS(2078), - [anon_sym_interface] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_function] = ACTIONS(2078), - [anon_sym_var] = ACTIONS(2078), - [aux_sym_integer_token1] = ACTIONS(2078), - [aux_sym_integer_token2] = ACTIONS(2080), - [aux_sym_float_token1] = ACTIONS(2078), - [aux_sym_float_token2] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [aux_sym_string_token1] = ACTIONS(2080), - [aux_sym_string_token3] = ACTIONS(2080), + [749] = { + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3216), + [anon_sym_package] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_cast] = ACTIONS(3214), + [anon_sym_DOLLARtype] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_untyped] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_AT_COLON] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_catch] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), + [anon_sym_PERCENT] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_LT_LT] = ACTIONS(3216), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3216), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3216), + [anon_sym_AMP_AMP] = ACTIONS(3216), + [anon_sym_PIPE_PIPE] = ACTIONS(3216), + [anon_sym_EQ_EQ] = ACTIONS(3216), + [anon_sym_BANG_EQ] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_LT_EQ] = ACTIONS(3216), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_GT_EQ] = ACTIONS(3216), + [anon_sym_EQ_GT] = ACTIONS(3216), + [anon_sym_QMARK_QMARK] = ACTIONS(3216), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3214), + [anon_sym_macro] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_extern] = ACTIONS(3214), + [anon_sym_inline] = ACTIONS(3214), + [anon_sym_overload] = ACTIONS(3214), + [anon_sym_override] = ACTIONS(3214), + [anon_sym_final] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), + [anon_sym_typedef] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [aux_sym_integer_token1] = ACTIONS(3214), + [aux_sym_integer_token2] = ACTIONS(3216), + [aux_sym_float_token1] = ACTIONS(3214), + [aux_sym_float_token2] = ACTIONS(3216), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym_string_token1] = ACTIONS(3216), + [aux_sym_string_token3] = ACTIONS(3216), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2084), - [anon_sym_package] = ACTIONS(2082), - [anon_sym_import] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_using] = ACTIONS(2082), - [anon_sym_throw] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_switch] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_cast] = ACTIONS(2082), - [anon_sym_DOLLARtype] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_untyped] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_this] = ACTIONS(2082), - [anon_sym_AT] = ACTIONS(2082), - [anon_sym_AT_COLON] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_catch] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_new] = ACTIONS(2082), - [anon_sym_TILDE] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PERCENT] = ACTIONS(2084), - [anon_sym_SLASH] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_LT_LT] = ACTIONS(2084), - [anon_sym_GT_GT] = ACTIONS(2082), - [anon_sym_GT_GT_GT] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(2084), - [anon_sym_AMP_AMP] = ACTIONS(2084), - [anon_sym_PIPE_PIPE] = ACTIONS(2084), - [anon_sym_EQ_EQ] = ACTIONS(2084), - [anon_sym_BANG_EQ] = ACTIONS(2084), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_LT_EQ] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_QMARK_QMARK] = ACTIONS(2084), - [anon_sym_EQ] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2084), - [anon_sym_null] = ACTIONS(2082), - [anon_sym_macro] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_overload] = ACTIONS(2082), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_typedef] = ACTIONS(2082), - [anon_sym_function] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [aux_sym_integer_token1] = ACTIONS(2082), - [aux_sym_integer_token2] = ACTIONS(2084), - [aux_sym_float_token1] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [aux_sym_string_token1] = ACTIONS(2084), - [aux_sym_string_token3] = ACTIONS(2084), + [750] = { + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3218), + [anon_sym_POUND] = ACTIONS(3220), + [anon_sym_package] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_cast] = ACTIONS(3218), + [anon_sym_DOLLARtype] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_untyped] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_AT_COLON] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_catch] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [anon_sym_PERCENT] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_LT_LT] = ACTIONS(3220), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3220), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3220), + [anon_sym_AMP_AMP] = ACTIONS(3220), + [anon_sym_PIPE_PIPE] = ACTIONS(3220), + [anon_sym_EQ_EQ] = ACTIONS(3220), + [anon_sym_BANG_EQ] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3220), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3220), + [anon_sym_EQ_GT] = ACTIONS(3220), + [anon_sym_QMARK_QMARK] = ACTIONS(3220), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3220), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_macro] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_extern] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_overload] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [anon_sym_typedef] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [aux_sym_integer_token1] = ACTIONS(3218), + [aux_sym_integer_token2] = ACTIONS(3220), + [aux_sym_float_token1] = ACTIONS(3218), + [aux_sym_float_token2] = ACTIONS(3220), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [aux_sym_string_token1] = ACTIONS(3220), + [aux_sym_string_token3] = ACTIONS(3220), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [707] = { - [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_STAR] = ACTIONS(2310), - [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_for] = ACTIONS(2308), - [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_try] = ACTIONS(2308), - [anon_sym_catch] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [708] = { - [ts_builtin_sym_end] = ACTIONS(2088), - [sym_identifier] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2088), - [anon_sym_package] = ACTIONS(2086), - [anon_sym_import] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_using] = ACTIONS(2086), - [anon_sym_throw] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_cast] = ACTIONS(2086), - [anon_sym_DOLLARtype] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_untyped] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_this] = ACTIONS(2086), - [anon_sym_AT] = ACTIONS(2086), - [anon_sym_AT_COLON] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_new] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_PERCENT] = ACTIONS(2088), - [anon_sym_SLASH] = ACTIONS(2086), - [anon_sym_PLUS] = ACTIONS(2086), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2086), - [anon_sym_GT_GT_GT] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_CARET] = ACTIONS(2088), - [anon_sym_AMP_AMP] = ACTIONS(2088), - [anon_sym_PIPE_PIPE] = ACTIONS(2088), - [anon_sym_EQ_EQ] = ACTIONS(2088), - [anon_sym_BANG_EQ] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_LT_EQ] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2086), - [anon_sym_GT_EQ] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_QMARK_QMARK] = ACTIONS(2088), - [anon_sym_EQ] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2088), - [anon_sym_null] = ACTIONS(2086), - [anon_sym_macro] = ACTIONS(2086), - [anon_sym_abstract] = ACTIONS(2086), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_public] = ACTIONS(2086), - [anon_sym_private] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_inline] = ACTIONS(2086), - [anon_sym_overload] = ACTIONS(2086), - [anon_sym_override] = ACTIONS(2086), - [anon_sym_final] = ACTIONS(2086), - [anon_sym_class] = ACTIONS(2086), - [anon_sym_interface] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_typedef] = ACTIONS(2086), - [anon_sym_function] = ACTIONS(2086), - [anon_sym_var] = ACTIONS(2086), - [aux_sym_integer_token1] = ACTIONS(2086), - [aux_sym_integer_token2] = ACTIONS(2088), - [aux_sym_float_token1] = ACTIONS(2086), - [aux_sym_float_token2] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), - [aux_sym_string_token1] = ACTIONS(2088), - [aux_sym_string_token3] = ACTIONS(2088), + [751] = { + [ts_builtin_sym_end] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(3224), + [anon_sym_package] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_cast] = ACTIONS(3222), + [anon_sym_DOLLARtype] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_untyped] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_this] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_AT_COLON] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_catch] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [anon_sym_PERCENT] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_LT_LT] = ACTIONS(3224), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP_AMP] = ACTIONS(3224), + [anon_sym_PIPE_PIPE] = ACTIONS(3224), + [anon_sym_EQ_EQ] = ACTIONS(3224), + [anon_sym_BANG_EQ] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3224), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3224), + [anon_sym_EQ_GT] = ACTIONS(3224), + [anon_sym_QMARK_QMARK] = ACTIONS(3224), + [anon_sym_EQ] = ACTIONS(3222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3224), + [anon_sym_null] = ACTIONS(3222), + [anon_sym_macro] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_extern] = ACTIONS(3222), + [anon_sym_inline] = ACTIONS(3222), + [anon_sym_overload] = ACTIONS(3222), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_final] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [anon_sym_typedef] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [aux_sym_integer_token1] = ACTIONS(3222), + [aux_sym_integer_token2] = ACTIONS(3224), + [aux_sym_float_token1] = ACTIONS(3222), + [aux_sym_float_token2] = ACTIONS(3224), + [anon_sym_true] = ACTIONS(3222), + [anon_sym_false] = ACTIONS(3222), + [aux_sym_string_token1] = ACTIONS(3224), + [aux_sym_string_token3] = ACTIONS(3224), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [709] = { - [ts_builtin_sym_end] = ACTIONS(2514), - [sym_identifier] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(2514), - [anon_sym_package] = ACTIONS(2512), - [anon_sym_import] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_using] = ACTIONS(2512), - [anon_sym_throw] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2514), - [anon_sym_cast] = ACTIONS(2512), - [anon_sym_DOLLARtype] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_untyped] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_this] = ACTIONS(2512), - [anon_sym_AT] = ACTIONS(2512), - [anon_sym_AT_COLON] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2512), - [anon_sym_catch] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_do] = ACTIONS(2512), - [anon_sym_new] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2514), - [anon_sym_GT_GT] = ACTIONS(2512), - [anon_sym_GT_GT_GT] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2512), - [anon_sym_CARET] = ACTIONS(2514), - [anon_sym_AMP_AMP] = ACTIONS(2514), - [anon_sym_PIPE_PIPE] = ACTIONS(2514), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2512), - [anon_sym_LT_EQ] = ACTIONS(2514), - [anon_sym_GT] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2514), - [anon_sym_EQ_GT] = ACTIONS(2514), - [anon_sym_QMARK_QMARK] = ACTIONS(2514), - [anon_sym_EQ] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2514), - [anon_sym_null] = ACTIONS(2512), - [anon_sym_macro] = ACTIONS(2512), - [anon_sym_abstract] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_public] = ACTIONS(2512), - [anon_sym_private] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_inline] = ACTIONS(2512), - [anon_sym_overload] = ACTIONS(2512), - [anon_sym_override] = ACTIONS(2512), - [anon_sym_final] = ACTIONS(2512), - [anon_sym_class] = ACTIONS(2512), - [anon_sym_interface] = ACTIONS(2512), - [anon_sym_enum] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2512), - [anon_sym_function] = ACTIONS(2512), - [anon_sym_var] = ACTIONS(2512), - [aux_sym_integer_token1] = ACTIONS(2512), - [aux_sym_integer_token2] = ACTIONS(2514), - [aux_sym_float_token1] = ACTIONS(2512), - [aux_sym_float_token2] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2512), - [anon_sym_false] = ACTIONS(2512), - [aux_sym_string_token1] = ACTIONS(2514), - [aux_sym_string_token3] = ACTIONS(2514), + [752] = { + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3226), + [anon_sym_POUND] = ACTIONS(3228), + [anon_sym_package] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_cast] = ACTIONS(3226), + [anon_sym_DOLLARtype] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_untyped] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_AT_COLON] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_catch] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_LT_LT] = ACTIONS(3228), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_CARET] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_LT_EQ] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_GT_EQ] = ACTIONS(3228), + [anon_sym_EQ_GT] = ACTIONS(3228), + [anon_sym_QMARK_QMARK] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3228), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_macro] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_extern] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_overload] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_typedef] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [aux_sym_integer_token1] = ACTIONS(3226), + [aux_sym_integer_token2] = ACTIONS(3228), + [aux_sym_float_token1] = ACTIONS(3226), + [aux_sym_float_token2] = ACTIONS(3228), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [aux_sym_string_token1] = ACTIONS(3228), + [aux_sym_string_token3] = ACTIONS(3228), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [710] = { - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2092), - [anon_sym_package] = ACTIONS(2090), - [anon_sym_import] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_using] = ACTIONS(2090), - [anon_sym_throw] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_switch] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_cast] = ACTIONS(2090), - [anon_sym_DOLLARtype] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_untyped] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_this] = ACTIONS(2090), - [anon_sym_AT] = ACTIONS(2090), - [anon_sym_AT_COLON] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_new] = ACTIONS(2090), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_PLUS_PLUS] = ACTIONS(2092), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_PERCENT] = ACTIONS(2092), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2090), - [anon_sym_GT_GT_GT] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_CARET] = ACTIONS(2092), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2092), - [anon_sym_BANG_EQ] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_LT_EQ] = ACTIONS(2092), - [anon_sym_GT] = ACTIONS(2090), - [anon_sym_GT_EQ] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_QMARK_QMARK] = ACTIONS(2092), - [anon_sym_EQ] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2092), - [anon_sym_null] = ACTIONS(2090), - [anon_sym_macro] = ACTIONS(2090), - [anon_sym_abstract] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_public] = ACTIONS(2090), - [anon_sym_private] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [anon_sym_overload] = ACTIONS(2090), - [anon_sym_override] = ACTIONS(2090), - [anon_sym_final] = ACTIONS(2090), - [anon_sym_class] = ACTIONS(2090), - [anon_sym_interface] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_typedef] = ACTIONS(2090), - [anon_sym_function] = ACTIONS(2090), - [anon_sym_var] = ACTIONS(2090), - [aux_sym_integer_token1] = ACTIONS(2090), - [aux_sym_integer_token2] = ACTIONS(2092), - [aux_sym_float_token1] = ACTIONS(2090), - [aux_sym_float_token2] = ACTIONS(2092), - [anon_sym_true] = ACTIONS(2090), - [anon_sym_false] = ACTIONS(2090), - [aux_sym_string_token1] = ACTIONS(2092), - [aux_sym_string_token3] = ACTIONS(2092), + [753] = { + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3232), + [anon_sym_package] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_cast] = ACTIONS(3230), + [anon_sym_DOLLARtype] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_untyped] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_this] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_AT_COLON] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_catch] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3232), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_EQ_GT] = ACTIONS(3232), + [anon_sym_QMARK_QMARK] = ACTIONS(3232), + [anon_sym_EQ] = ACTIONS(3230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_macro] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_extern] = ACTIONS(3230), + [anon_sym_inline] = ACTIONS(3230), + [anon_sym_overload] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_final] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_typedef] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [aux_sym_integer_token1] = ACTIONS(3230), + [aux_sym_integer_token2] = ACTIONS(3232), + [aux_sym_float_token1] = ACTIONS(3230), + [aux_sym_float_token2] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3230), + [anon_sym_false] = ACTIONS(3230), + [aux_sym_string_token1] = ACTIONS(3232), + [aux_sym_string_token3] = ACTIONS(3232), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [711] = { - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_identifier] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2096), - [anon_sym_package] = ACTIONS(2094), - [anon_sym_import] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_using] = ACTIONS(2094), - [anon_sym_throw] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_switch] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_cast] = ACTIONS(2094), - [anon_sym_DOLLARtype] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_untyped] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_this] = ACTIONS(2094), - [anon_sym_AT] = ACTIONS(2094), - [anon_sym_AT_COLON] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_catch] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2094), - [anon_sym_TILDE] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_PLUS_PLUS] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2094), - [anon_sym_GT_GT_GT] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP_AMP] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2096), - [anon_sym_BANG_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_GT] = ACTIONS(2094), - [anon_sym_GT_EQ] = ACTIONS(2096), - [anon_sym_EQ_GT] = ACTIONS(2096), - [anon_sym_QMARK_QMARK] = ACTIONS(2096), - [anon_sym_EQ] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2094), - [anon_sym_macro] = ACTIONS(2094), - [anon_sym_abstract] = ACTIONS(2094), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_public] = ACTIONS(2094), - [anon_sym_private] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_inline] = ACTIONS(2094), - [anon_sym_overload] = ACTIONS(2094), - [anon_sym_override] = ACTIONS(2094), - [anon_sym_final] = ACTIONS(2094), - [anon_sym_class] = ACTIONS(2094), - [anon_sym_interface] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_typedef] = ACTIONS(2094), - [anon_sym_function] = ACTIONS(2094), - [anon_sym_var] = ACTIONS(2094), - [aux_sym_integer_token1] = ACTIONS(2094), - [aux_sym_integer_token2] = ACTIONS(2096), - [aux_sym_float_token1] = ACTIONS(2094), - [aux_sym_float_token2] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(2094), - [anon_sym_false] = ACTIONS(2094), - [aux_sym_string_token1] = ACTIONS(2096), - [aux_sym_string_token3] = ACTIONS(2096), + [754] = { + [ts_builtin_sym_end] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3234), + [anon_sym_POUND] = ACTIONS(3236), + [anon_sym_package] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_cast] = ACTIONS(3234), + [anon_sym_DOLLARtype] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_untyped] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_AT_COLON] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_catch] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_LT_LT] = ACTIONS(3236), + [anon_sym_GT_GT] = ACTIONS(3234), + [anon_sym_GT_GT_GT] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_CARET] = ACTIONS(3236), + [anon_sym_AMP_AMP] = ACTIONS(3236), + [anon_sym_PIPE_PIPE] = ACTIONS(3236), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_LT_EQ] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_GT_EQ] = ACTIONS(3236), + [anon_sym_EQ_GT] = ACTIONS(3236), + [anon_sym_QMARK_QMARK] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3234), + [anon_sym_macro] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_overload] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_final] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [aux_sym_integer_token1] = ACTIONS(3234), + [aux_sym_integer_token2] = ACTIONS(3236), + [aux_sym_float_token1] = ACTIONS(3234), + [aux_sym_float_token2] = ACTIONS(3236), + [anon_sym_true] = ACTIONS(3234), + [anon_sym_false] = ACTIONS(3234), + [aux_sym_string_token1] = ACTIONS(3236), + [aux_sym_string_token3] = ACTIONS(3236), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [712] = { - [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_STAR] = ACTIONS(2338), - [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_for] = ACTIONS(2336), - [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_try] = ACTIONS(2336), - [anon_sym_catch] = ACTIONS(2336), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [755] = { + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3238), + [anon_sym_POUND] = ACTIONS(3240), + [anon_sym_package] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_cast] = ACTIONS(3238), + [anon_sym_DOLLARtype] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_untyped] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_this] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_AT_COLON] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_catch] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_GT_GT_GT] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_PIPE] = ACTIONS(3238), + [anon_sym_CARET] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_QMARK_QMARK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3240), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_macro] = ACTIONS(3238), + [anon_sym_abstract] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_extern] = ACTIONS(3238), + [anon_sym_inline] = ACTIONS(3238), + [anon_sym_overload] = ACTIONS(3238), + [anon_sym_override] = ACTIONS(3238), + [anon_sym_final] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_typedef] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [aux_sym_integer_token1] = ACTIONS(3238), + [aux_sym_integer_token2] = ACTIONS(3240), + [aux_sym_float_token1] = ACTIONS(3238), + [aux_sym_float_token2] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3238), + [anon_sym_false] = ACTIONS(3238), + [aux_sym_string_token1] = ACTIONS(3240), + [aux_sym_string_token3] = ACTIONS(3240), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [713] = { - [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_STAR] = ACTIONS(2346), - [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_for] = ACTIONS(2344), - [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_try] = ACTIONS(2344), - [anon_sym_catch] = ACTIONS(2344), - [anon_sym_else] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [756] = { + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3242), + [anon_sym_POUND] = ACTIONS(3244), + [anon_sym_package] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_cast] = ACTIONS(3242), + [anon_sym_DOLLARtype] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_untyped] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_this] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3242), + [anon_sym_AT_COLON] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_catch] = ACTIONS(3242), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3242), + [anon_sym_GT_GT_GT] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3244), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_GT_EQ] = ACTIONS(3244), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_QMARK_QMARK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_macro] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_extern] = ACTIONS(3242), + [anon_sym_inline] = ACTIONS(3242), + [anon_sym_overload] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_final] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_typedef] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [aux_sym_integer_token1] = ACTIONS(3242), + [aux_sym_integer_token2] = ACTIONS(3244), + [aux_sym_float_token1] = ACTIONS(3242), + [aux_sym_float_token2] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [aux_sym_string_token1] = ACTIONS(3244), + [aux_sym_string_token3] = ACTIONS(3244), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [714] = { - [ts_builtin_sym_end] = ACTIONS(2382), - [sym_identifier] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(2382), - [anon_sym_package] = ACTIONS(2380), - [anon_sym_import] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2380), - [anon_sym_throw] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2380), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_cast] = ACTIONS(2380), - [anon_sym_DOLLARtype] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_untyped] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_this] = ACTIONS(2380), - [anon_sym_AT] = ACTIONS(2380), - [anon_sym_AT_COLON] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2380), - [anon_sym_catch] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_do] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2380), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [anon_sym_PERCENT] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_LT_LT] = ACTIONS(2382), - [anon_sym_GT_GT] = ACTIONS(2380), - [anon_sym_GT_GT_GT] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2382), - [anon_sym_GT] = ACTIONS(2380), - [anon_sym_GT_EQ] = ACTIONS(2382), - [anon_sym_EQ_GT] = ACTIONS(2382), - [anon_sym_QMARK_QMARK] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2382), - [anon_sym_null] = ACTIONS(2380), - [anon_sym_macro] = ACTIONS(2380), - [anon_sym_abstract] = ACTIONS(2380), - [anon_sym_static] = ACTIONS(2380), - [anon_sym_public] = ACTIONS(2380), - [anon_sym_private] = ACTIONS(2380), - [anon_sym_extern] = ACTIONS(2380), - [anon_sym_inline] = ACTIONS(2380), - [anon_sym_overload] = ACTIONS(2380), - [anon_sym_override] = ACTIONS(2380), - [anon_sym_final] = ACTIONS(2380), - [anon_sym_class] = ACTIONS(2380), - [anon_sym_interface] = ACTIONS(2380), - [anon_sym_enum] = ACTIONS(2380), - [anon_sym_typedef] = ACTIONS(2380), - [anon_sym_function] = ACTIONS(2380), - [anon_sym_var] = ACTIONS(2380), - [aux_sym_integer_token1] = ACTIONS(2380), - [aux_sym_integer_token2] = ACTIONS(2382), - [aux_sym_float_token1] = ACTIONS(2380), - [aux_sym_float_token2] = ACTIONS(2382), - [anon_sym_true] = ACTIONS(2380), - [anon_sym_false] = ACTIONS(2380), - [aux_sym_string_token1] = ACTIONS(2382), - [aux_sym_string_token3] = ACTIONS(2382), + [757] = { + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3248), + [anon_sym_package] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_cast] = ACTIONS(3246), + [anon_sym_DOLLARtype] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_untyped] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_this] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3246), + [anon_sym_AT_COLON] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_catch] = ACTIONS(3246), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_QMARK_QMARK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3248), + [anon_sym_null] = ACTIONS(3246), + [anon_sym_macro] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_extern] = ACTIONS(3246), + [anon_sym_inline] = ACTIONS(3246), + [anon_sym_overload] = ACTIONS(3246), + [anon_sym_override] = ACTIONS(3246), + [anon_sym_final] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_typedef] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [aux_sym_integer_token1] = ACTIONS(3246), + [aux_sym_integer_token2] = ACTIONS(3248), + [aux_sym_float_token1] = ACTIONS(3246), + [aux_sym_float_token2] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [aux_sym_string_token1] = ACTIONS(3248), + [aux_sym_string_token3] = ACTIONS(3248), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_package] = ACTIONS(2106), - [anon_sym_import] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_using] = ACTIONS(2106), - [anon_sym_throw] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_switch] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_cast] = ACTIONS(2106), - [anon_sym_DOLLARtype] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_untyped] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_this] = ACTIONS(2106), - [anon_sym_AT] = ACTIONS(2106), - [anon_sym_AT_COLON] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_catch] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_new] = ACTIONS(2106), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_PERCENT] = ACTIONS(2108), - [anon_sym_SLASH] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2106), - [anon_sym_LT_LT] = ACTIONS(2108), - [anon_sym_GT_GT] = ACTIONS(2106), - [anon_sym_GT_GT_GT] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_CARET] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_EQ_GT] = ACTIONS(2108), - [anon_sym_QMARK_QMARK] = ACTIONS(2108), - [anon_sym_EQ] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2108), - [anon_sym_null] = ACTIONS(2106), - [anon_sym_macro] = ACTIONS(2106), - [anon_sym_abstract] = ACTIONS(2106), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_public] = ACTIONS(2106), - [anon_sym_private] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_inline] = ACTIONS(2106), - [anon_sym_overload] = ACTIONS(2106), - [anon_sym_override] = ACTIONS(2106), - [anon_sym_final] = ACTIONS(2106), - [anon_sym_class] = ACTIONS(2106), - [anon_sym_interface] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_typedef] = ACTIONS(2106), - [anon_sym_function] = ACTIONS(2106), - [anon_sym_var] = ACTIONS(2106), - [aux_sym_integer_token1] = ACTIONS(2106), - [aux_sym_integer_token2] = ACTIONS(2108), - [aux_sym_float_token1] = ACTIONS(2106), - [aux_sym_float_token2] = ACTIONS(2108), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), - [aux_sym_string_token1] = ACTIONS(2108), - [aux_sym_string_token3] = ACTIONS(2108), + [758] = { + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3252), + [anon_sym_package] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_cast] = ACTIONS(3250), + [anon_sym_DOLLARtype] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_untyped] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_AT_COLON] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_catch] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_QMARK_QMARK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3252), + [anon_sym_null] = ACTIONS(3250), + [anon_sym_macro] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_extern] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_overload] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [anon_sym_typedef] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [aux_sym_integer_token1] = ACTIONS(3250), + [aux_sym_integer_token2] = ACTIONS(3252), + [aux_sym_float_token1] = ACTIONS(3250), + [aux_sym_float_token2] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [aux_sym_string_token1] = ACTIONS(3252), + [aux_sym_string_token3] = ACTIONS(3252), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [716] = { - [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_STAR] = ACTIONS(2314), - [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_for] = ACTIONS(2312), - [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_try] = ACTIONS(2312), - [anon_sym_catch] = ACTIONS(2312), - [anon_sym_else] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [759] = { + [ts_builtin_sym_end] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3254), + [anon_sym_POUND] = ACTIONS(3256), + [anon_sym_package] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_cast] = ACTIONS(3254), + [anon_sym_DOLLARtype] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_untyped] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_this] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_AT_COLON] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_catch] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3254), + [anon_sym_GT_GT_GT] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP_AMP] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3256), + [anon_sym_EQ_EQ] = ACTIONS(3256), + [anon_sym_BANG_EQ] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_EQ_GT] = ACTIONS(3256), + [anon_sym_QMARK_QMARK] = ACTIONS(3256), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), + [anon_sym_null] = ACTIONS(3254), + [anon_sym_macro] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_extern] = ACTIONS(3254), + [anon_sym_inline] = ACTIONS(3254), + [anon_sym_overload] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_final] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), + [anon_sym_typedef] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [aux_sym_integer_token1] = ACTIONS(3254), + [aux_sym_integer_token2] = ACTIONS(3256), + [aux_sym_float_token1] = ACTIONS(3254), + [aux_sym_float_token2] = ACTIONS(3256), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [aux_sym_string_token1] = ACTIONS(3256), + [aux_sym_string_token3] = ACTIONS(3256), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [717] = { - [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_STAR] = ACTIONS(2318), - [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_for] = ACTIONS(2316), - [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_try] = ACTIONS(2316), - [anon_sym_catch] = ACTIONS(2316), - [anon_sym_else] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [760] = { + [ts_builtin_sym_end] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3258), + [anon_sym_POUND] = ACTIONS(3260), + [anon_sym_package] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_cast] = ACTIONS(3258), + [anon_sym_DOLLARtype] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_untyped] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_this] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_AT_COLON] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_catch] = ACTIONS(3258), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_GT_GT_GT] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3258), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3260), + [anon_sym_EQ_EQ] = ACTIONS(3260), + [anon_sym_BANG_EQ] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_GT] = ACTIONS(3258), + [anon_sym_GT_EQ] = ACTIONS(3260), + [anon_sym_EQ_GT] = ACTIONS(3260), + [anon_sym_QMARK_QMARK] = ACTIONS(3260), + [anon_sym_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3260), + [anon_sym_null] = ACTIONS(3258), + [anon_sym_macro] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_extern] = ACTIONS(3258), + [anon_sym_inline] = ACTIONS(3258), + [anon_sym_overload] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_final] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_typedef] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [aux_sym_integer_token1] = ACTIONS(3258), + [aux_sym_integer_token2] = ACTIONS(3260), + [aux_sym_float_token1] = ACTIONS(3258), + [aux_sym_float_token2] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3258), + [anon_sym_false] = ACTIONS(3258), + [aux_sym_string_token1] = ACTIONS(3260), + [aux_sym_string_token3] = ACTIONS(3260), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(2322), - [anon_sym_package] = ACTIONS(2320), - [anon_sym_import] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_using] = ACTIONS(2320), - [anon_sym_throw] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_switch] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_cast] = ACTIONS(2320), - [anon_sym_DOLLARtype] = ACTIONS(2322), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_untyped] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_this] = ACTIONS(2320), - [anon_sym_AT] = ACTIONS(2320), - [anon_sym_AT_COLON] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_new] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_EQ_GT] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_EQ] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_null] = ACTIONS(2320), - [anon_sym_macro] = ACTIONS(2320), - [anon_sym_abstract] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_public] = ACTIONS(2320), - [anon_sym_private] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_inline] = ACTIONS(2320), - [anon_sym_overload] = ACTIONS(2320), - [anon_sym_override] = ACTIONS(2320), - [anon_sym_final] = ACTIONS(2320), - [anon_sym_class] = ACTIONS(2320), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_typedef] = ACTIONS(2320), - [anon_sym_function] = ACTIONS(2320), - [anon_sym_var] = ACTIONS(2320), - [aux_sym_integer_token1] = ACTIONS(2320), - [aux_sym_integer_token2] = ACTIONS(2322), - [aux_sym_float_token1] = ACTIONS(2320), - [aux_sym_float_token2] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [aux_sym_string_token1] = ACTIONS(2322), - [aux_sym_string_token3] = ACTIONS(2322), + [761] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_package] = ACTIONS(1550), + [anon_sym_import] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1548), + [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_cast] = ACTIONS(1550), + [anon_sym_DOLLARtype] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1550), + [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_AT] = ACTIONS(1550), + [anon_sym_AT_COLON] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1550), + [anon_sym_catch] = ACTIONS(1550), + [anon_sym_else] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = 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_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), + [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_package] = ACTIONS(2110), - [anon_sym_import] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_using] = ACTIONS(2110), - [anon_sym_throw] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_switch] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_cast] = ACTIONS(2110), - [anon_sym_DOLLARtype] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_untyped] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_this] = ACTIONS(2110), - [anon_sym_AT] = ACTIONS(2110), - [anon_sym_AT_COLON] = ACTIONS(2112), - [anon_sym_try] = ACTIONS(2110), - [anon_sym_catch] = ACTIONS(2110), - [anon_sym_else] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_do] = ACTIONS(2110), - [anon_sym_new] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_SLASH] = ACTIONS(2110), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_LT_LT] = ACTIONS(2112), - [anon_sym_GT_GT] = ACTIONS(2110), - [anon_sym_GT_GT_GT] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(2112), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_QMARK_QMARK] = ACTIONS(2112), - [anon_sym_EQ] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2112), - [anon_sym_null] = ACTIONS(2110), - [anon_sym_macro] = ACTIONS(2110), - [anon_sym_abstract] = ACTIONS(2110), - [anon_sym_static] = ACTIONS(2110), - [anon_sym_public] = ACTIONS(2110), - [anon_sym_private] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym_inline] = ACTIONS(2110), - [anon_sym_overload] = ACTIONS(2110), - [anon_sym_override] = ACTIONS(2110), - [anon_sym_final] = ACTIONS(2110), - [anon_sym_class] = ACTIONS(2110), - [anon_sym_interface] = ACTIONS(2110), - [anon_sym_enum] = ACTIONS(2110), - [anon_sym_typedef] = ACTIONS(2110), - [anon_sym_function] = ACTIONS(2110), - [anon_sym_var] = ACTIONS(2110), - [aux_sym_integer_token1] = ACTIONS(2110), - [aux_sym_integer_token2] = ACTIONS(2112), - [aux_sym_float_token1] = ACTIONS(2110), - [aux_sym_float_token2] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [aux_sym_string_token1] = ACTIONS(2112), - [aux_sym_string_token3] = ACTIONS(2112), + [762] = { + [ts_builtin_sym_end] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3280), + [anon_sym_POUND] = ACTIONS(3282), + [anon_sym_package] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_cast] = ACTIONS(3280), + [anon_sym_DOLLARtype] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_untyped] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_AT_COLON] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_catch] = ACTIONS(3280), + [anon_sym_else] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3282), + [anon_sym_PERCENT] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_LT_LT] = ACTIONS(3282), + [anon_sym_GT_GT] = ACTIONS(3280), + [anon_sym_GT_GT_GT] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_PIPE] = ACTIONS(3280), + [anon_sym_CARET] = ACTIONS(3282), + [anon_sym_AMP_AMP] = ACTIONS(3282), + [anon_sym_PIPE_PIPE] = ACTIONS(3282), + [anon_sym_EQ_EQ] = ACTIONS(3282), + [anon_sym_BANG_EQ] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_LT_EQ] = ACTIONS(3282), + [anon_sym_GT] = ACTIONS(3280), + [anon_sym_GT_EQ] = ACTIONS(3282), + [anon_sym_EQ_GT] = ACTIONS(3282), + [anon_sym_QMARK_QMARK] = ACTIONS(3282), + [anon_sym_EQ] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_macro] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_extern] = ACTIONS(3280), + [anon_sym_inline] = ACTIONS(3280), + [anon_sym_overload] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_final] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [aux_sym_integer_token1] = ACTIONS(3280), + [aux_sym_integer_token2] = ACTIONS(3282), + [aux_sym_float_token1] = ACTIONS(3280), + [aux_sym_float_token2] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3280), + [anon_sym_false] = ACTIONS(3280), + [aux_sym_string_token1] = ACTIONS(3282), + [aux_sym_string_token3] = ACTIONS(3282), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [720] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2116), - [anon_sym_package] = ACTIONS(2114), - [anon_sym_import] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_using] = ACTIONS(2114), - [anon_sym_throw] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_switch] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_cast] = ACTIONS(2114), - [anon_sym_DOLLARtype] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_untyped] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_this] = ACTIONS(2114), - [anon_sym_AT] = ACTIONS(2114), - [anon_sym_AT_COLON] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2114), - [anon_sym_catch] = ACTIONS(2114), - [anon_sym_else] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_new] = ACTIONS(2114), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PERCENT] = ACTIONS(2116), - [anon_sym_SLASH] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_LT_LT] = ACTIONS(2116), - [anon_sym_GT_GT] = ACTIONS(2114), - [anon_sym_GT_GT_GT] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), - [anon_sym_EQ_EQ] = ACTIONS(2116), - [anon_sym_BANG_EQ] = ACTIONS(2116), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_LT_EQ] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2114), - [anon_sym_GT_EQ] = ACTIONS(2116), - [anon_sym_EQ_GT] = ACTIONS(2116), - [anon_sym_QMARK_QMARK] = ACTIONS(2116), - [anon_sym_EQ] = ACTIONS(2114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2116), - [anon_sym_null] = ACTIONS(2114), - [anon_sym_macro] = ACTIONS(2114), - [anon_sym_abstract] = ACTIONS(2114), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_public] = ACTIONS(2114), - [anon_sym_private] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [anon_sym_overload] = ACTIONS(2114), - [anon_sym_override] = ACTIONS(2114), - [anon_sym_final] = ACTIONS(2114), - [anon_sym_class] = ACTIONS(2114), - [anon_sym_interface] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_typedef] = ACTIONS(2114), - [anon_sym_function] = ACTIONS(2114), - [anon_sym_var] = ACTIONS(2114), - [aux_sym_integer_token1] = ACTIONS(2114), - [aux_sym_integer_token2] = ACTIONS(2116), - [aux_sym_float_token1] = ACTIONS(2114), - [aux_sym_float_token2] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2114), - [anon_sym_false] = ACTIONS(2114), - [aux_sym_string_token1] = ACTIONS(2116), - [aux_sym_string_token3] = ACTIONS(2116), + [763] = { + [ts_builtin_sym_end] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3332), + [anon_sym_POUND] = ACTIONS(3334), + [anon_sym_package] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_cast] = ACTIONS(3332), + [anon_sym_DOLLARtype] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_untyped] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_AT_COLON] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_catch] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_QMARK_QMARK] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [anon_sym_null] = ACTIONS(3332), + [anon_sym_macro] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_overload] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_final] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [aux_sym_integer_token1] = ACTIONS(3332), + [aux_sym_integer_token2] = ACTIONS(3334), + [aux_sym_float_token1] = ACTIONS(3332), + [aux_sym_float_token2] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym_string_token1] = ACTIONS(3334), + [aux_sym_string_token3] = ACTIONS(3334), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [721] = { - [ts_builtin_sym_end] = ACTIONS(2120), - [sym_identifier] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2120), - [anon_sym_package] = ACTIONS(2118), - [anon_sym_import] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_using] = ACTIONS(2118), - [anon_sym_throw] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_switch] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_cast] = ACTIONS(2118), - [anon_sym_DOLLARtype] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_untyped] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_this] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(2118), - [anon_sym_AT_COLON] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2118), - [anon_sym_catch] = ACTIONS(2118), - [anon_sym_else] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_new] = ACTIONS(2118), - [anon_sym_TILDE] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_PLUS_PLUS] = ACTIONS(2120), - [anon_sym_DASH_DASH] = ACTIONS(2120), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_SLASH] = ACTIONS(2118), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_LT_LT] = ACTIONS(2120), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_GT_GT_GT] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_CARET] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_EQ_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ] = ACTIONS(2120), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_LT_EQ] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2118), - [anon_sym_GT_EQ] = ACTIONS(2120), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_QMARK_QMARK] = ACTIONS(2120), - [anon_sym_EQ] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2120), - [anon_sym_null] = ACTIONS(2118), - [anon_sym_macro] = ACTIONS(2118), - [anon_sym_abstract] = ACTIONS(2118), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_public] = ACTIONS(2118), - [anon_sym_private] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_inline] = ACTIONS(2118), - [anon_sym_overload] = ACTIONS(2118), - [anon_sym_override] = ACTIONS(2118), - [anon_sym_final] = ACTIONS(2118), - [anon_sym_class] = ACTIONS(2118), - [anon_sym_interface] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [anon_sym_typedef] = ACTIONS(2118), - [anon_sym_function] = ACTIONS(2118), - [anon_sym_var] = ACTIONS(2118), - [aux_sym_integer_token1] = ACTIONS(2118), - [aux_sym_integer_token2] = ACTIONS(2120), - [aux_sym_float_token1] = ACTIONS(2118), - [aux_sym_float_token2] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [aux_sym_string_token1] = ACTIONS(2120), - [aux_sym_string_token3] = ACTIONS(2120), + [764] = { + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(3338), + [anon_sym_package] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_cast] = ACTIONS(3336), + [anon_sym_DOLLARtype] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_untyped] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_this] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_AT_COLON] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_catch] = ACTIONS(3336), + [anon_sym_else] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_EQ_GT] = ACTIONS(3338), + [anon_sym_QMARK_QMARK] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_macro] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_extern] = ACTIONS(3336), + [anon_sym_inline] = ACTIONS(3336), + [anon_sym_overload] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_final] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_typedef] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [aux_sym_integer_token1] = ACTIONS(3336), + [aux_sym_integer_token2] = ACTIONS(3338), + [aux_sym_float_token1] = ACTIONS(3336), + [aux_sym_float_token2] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3336), + [anon_sym_false] = ACTIONS(3336), + [aux_sym_string_token1] = ACTIONS(3338), + [aux_sym_string_token3] = ACTIONS(3338), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [722] = { - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2398), - [anon_sym_package] = ACTIONS(2396), - [anon_sym_import] = ACTIONS(2396), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_using] = ACTIONS(2396), - [anon_sym_throw] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_cast] = ACTIONS(2396), - [anon_sym_DOLLARtype] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2396), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_untyped] = ACTIONS(2396), - [anon_sym_break] = ACTIONS(2396), - [anon_sym_continue] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_this] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2396), - [anon_sym_AT_COLON] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2396), - [anon_sym_catch] = ACTIONS(2396), - [anon_sym_else] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_while] = ACTIONS(2396), - [anon_sym_do] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2396), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_PERCENT] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_GT_GT_GT] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_BANG_EQ] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_LT_EQ] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2398), - [anon_sym_EQ_GT] = ACTIONS(2398), - [anon_sym_QMARK_QMARK] = ACTIONS(2398), - [anon_sym_EQ] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2396), - [anon_sym_macro] = ACTIONS(2396), - [anon_sym_abstract] = ACTIONS(2396), - [anon_sym_static] = ACTIONS(2396), - [anon_sym_public] = ACTIONS(2396), - [anon_sym_private] = ACTIONS(2396), - [anon_sym_extern] = ACTIONS(2396), - [anon_sym_inline] = ACTIONS(2396), - [anon_sym_overload] = ACTIONS(2396), - [anon_sym_override] = ACTIONS(2396), - [anon_sym_final] = ACTIONS(2396), - [anon_sym_class] = ACTIONS(2396), - [anon_sym_interface] = ACTIONS(2396), - [anon_sym_enum] = ACTIONS(2396), - [anon_sym_typedef] = ACTIONS(2396), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_var] = ACTIONS(2396), - [aux_sym_integer_token1] = ACTIONS(2396), - [aux_sym_integer_token2] = ACTIONS(2398), - [aux_sym_float_token1] = ACTIONS(2396), - [aux_sym_float_token2] = ACTIONS(2398), - [anon_sym_true] = ACTIONS(2396), - [anon_sym_false] = ACTIONS(2396), - [aux_sym_string_token1] = ACTIONS(2398), - [aux_sym_string_token3] = ACTIONS(2398), + [765] = { + [ts_builtin_sym_end] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3300), + [anon_sym_POUND] = ACTIONS(3302), + [anon_sym_package] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_cast] = ACTIONS(3300), + [anon_sym_DOLLARtype] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_untyped] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_this] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_AT_COLON] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_catch] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_LT_LT] = ACTIONS(3302), + [anon_sym_GT_GT] = ACTIONS(3300), + [anon_sym_GT_GT_GT] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_PIPE_PIPE] = ACTIONS(3302), + [anon_sym_EQ_EQ] = ACTIONS(3302), + [anon_sym_BANG_EQ] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_LT_EQ] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_GT_EQ] = ACTIONS(3302), + [anon_sym_EQ_GT] = ACTIONS(3302), + [anon_sym_QMARK_QMARK] = ACTIONS(3302), + [anon_sym_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_macro] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym_inline] = ACTIONS(3300), + [anon_sym_overload] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_final] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_typedef] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [aux_sym_integer_token1] = ACTIONS(3300), + [aux_sym_integer_token2] = ACTIONS(3302), + [aux_sym_float_token1] = ACTIONS(3300), + [aux_sym_float_token2] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3300), + [anon_sym_false] = ACTIONS(3300), + [aux_sym_string_token1] = ACTIONS(3302), + [aux_sym_string_token3] = ACTIONS(3302), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2124), - [anon_sym_package] = ACTIONS(2122), - [anon_sym_import] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_using] = ACTIONS(2122), - [anon_sym_throw] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_cast] = ACTIONS(2122), - [anon_sym_DOLLARtype] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_untyped] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_this] = ACTIONS(2122), - [anon_sym_AT] = ACTIONS(2122), - [anon_sym_AT_COLON] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_catch] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2122), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PERCENT] = ACTIONS(2124), - [anon_sym_SLASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2124), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_GT_GT_GT] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP_AMP] = ACTIONS(2124), - [anon_sym_PIPE_PIPE] = ACTIONS(2124), - [anon_sym_EQ_EQ] = ACTIONS(2124), - [anon_sym_BANG_EQ] = ACTIONS(2124), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2124), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2124), - [anon_sym_EQ_GT] = ACTIONS(2124), - [anon_sym_QMARK_QMARK] = ACTIONS(2124), - [anon_sym_EQ] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2124), - [anon_sym_null] = ACTIONS(2122), - [anon_sym_macro] = ACTIONS(2122), - [anon_sym_abstract] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [anon_sym_overload] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_final] = ACTIONS(2122), - [anon_sym_class] = ACTIONS(2122), - [anon_sym_interface] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_function] = ACTIONS(2122), - [anon_sym_var] = ACTIONS(2122), - [aux_sym_integer_token1] = ACTIONS(2122), - [aux_sym_integer_token2] = ACTIONS(2124), - [aux_sym_float_token1] = ACTIONS(2122), - [aux_sym_float_token2] = ACTIONS(2124), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [aux_sym_string_token1] = ACTIONS(2124), - [aux_sym_string_token3] = ACTIONS(2124), + [766] = { + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2702), + [anon_sym_package] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_using] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_cast] = ACTIONS(2700), + [anon_sym_DOLLARtype] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_untyped] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_this] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_AT_COLON] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_catch] = ACTIONS(2700), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PERCENT] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_LT_LT] = ACTIONS(2702), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_GT_GT_GT] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_EQ_GT] = ACTIONS(2702), + [anon_sym_QMARK_QMARK] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(2700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2702), + [anon_sym_null] = ACTIONS(2700), + [anon_sym_macro] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_inline] = ACTIONS(2700), + [anon_sym_overload] = ACTIONS(2700), + [anon_sym_override] = ACTIONS(2700), + [anon_sym_final] = ACTIONS(2700), + [anon_sym_class] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_typedef] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [aux_sym_integer_token1] = ACTIONS(2700), + [aux_sym_integer_token2] = ACTIONS(2702), + [aux_sym_float_token1] = ACTIONS(2700), + [aux_sym_float_token2] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [aux_sym_string_token1] = ACTIONS(2702), + [aux_sym_string_token3] = ACTIONS(2702), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [724] = { - [ts_builtin_sym_end] = ACTIONS(2402), - [sym_identifier] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2402), - [anon_sym_package] = ACTIONS(2400), - [anon_sym_import] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2400), - [anon_sym_throw] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_cast] = ACTIONS(2400), - [anon_sym_DOLLARtype] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_untyped] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_this] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_AT_COLON] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2400), - [anon_sym_catch] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_do] = ACTIONS(2400), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(2402), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_EQ_EQ] = ACTIONS(2402), - [anon_sym_BANG_EQ] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_LT_EQ] = ACTIONS(2402), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_GT_EQ] = ACTIONS(2402), - [anon_sym_EQ_GT] = ACTIONS(2402), - [anon_sym_QMARK_QMARK] = ACTIONS(2402), - [anon_sym_EQ] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2402), - [anon_sym_null] = ACTIONS(2400), - [anon_sym_macro] = ACTIONS(2400), - [anon_sym_abstract] = ACTIONS(2400), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_inline] = ACTIONS(2400), - [anon_sym_overload] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_final] = ACTIONS(2400), - [anon_sym_class] = ACTIONS(2400), - [anon_sym_interface] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_typedef] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2400), - [anon_sym_var] = ACTIONS(2400), - [aux_sym_integer_token1] = ACTIONS(2400), - [aux_sym_integer_token2] = ACTIONS(2402), - [aux_sym_float_token1] = ACTIONS(2400), - [aux_sym_float_token2] = ACTIONS(2402), - [anon_sym_true] = ACTIONS(2400), - [anon_sym_false] = ACTIONS(2400), - [aux_sym_string_token1] = ACTIONS(2402), - [aux_sym_string_token3] = ACTIONS(2402), + [767] = { + [ts_builtin_sym_end] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3340), + [anon_sym_POUND] = ACTIONS(3342), + [anon_sym_package] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_cast] = ACTIONS(3340), + [anon_sym_DOLLARtype] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_untyped] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_AT_COLON] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_catch] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_EQ_GT] = ACTIONS(3342), + [anon_sym_QMARK_QMARK] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_macro] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_overload] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_final] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_typedef] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [aux_sym_integer_token1] = ACTIONS(3340), + [aux_sym_integer_token2] = ACTIONS(3342), + [aux_sym_float_token1] = ACTIONS(3340), + [aux_sym_float_token2] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym_string_token1] = ACTIONS(3342), + [aux_sym_string_token3] = ACTIONS(3342), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2128), - [anon_sym_package] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_using] = ACTIONS(2126), - [anon_sym_throw] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_cast] = ACTIONS(2126), - [anon_sym_DOLLARtype] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_untyped] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_this] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [anon_sym_AT_COLON] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_catch] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_TILDE] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_PLUS_PLUS] = ACTIONS(2128), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_PERCENT] = ACTIONS(2128), - [anon_sym_SLASH] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_LT_LT] = ACTIONS(2128), - [anon_sym_GT_GT] = ACTIONS(2126), - [anon_sym_GT_GT_GT] = ACTIONS(2128), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2128), - [anon_sym_AMP_AMP] = ACTIONS(2128), - [anon_sym_PIPE_PIPE] = ACTIONS(2128), - [anon_sym_EQ_EQ] = ACTIONS(2128), - [anon_sym_BANG_EQ] = ACTIONS(2128), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_LT_EQ] = ACTIONS(2128), - [anon_sym_GT] = ACTIONS(2126), - [anon_sym_GT_EQ] = ACTIONS(2128), - [anon_sym_EQ_GT] = ACTIONS(2128), - [anon_sym_QMARK_QMARK] = ACTIONS(2128), - [anon_sym_EQ] = ACTIONS(2126), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2128), - [anon_sym_null] = ACTIONS(2126), - [anon_sym_macro] = ACTIONS(2126), - [anon_sym_abstract] = ACTIONS(2126), - [anon_sym_static] = ACTIONS(2126), - [anon_sym_public] = ACTIONS(2126), - [anon_sym_private] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym_inline] = ACTIONS(2126), - [anon_sym_overload] = ACTIONS(2126), - [anon_sym_override] = ACTIONS(2126), - [anon_sym_final] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_interface] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [anon_sym_typedef] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(2126), - [anon_sym_var] = ACTIONS(2126), - [aux_sym_integer_token1] = ACTIONS(2126), - [aux_sym_integer_token2] = ACTIONS(2128), - [aux_sym_float_token1] = ACTIONS(2126), - [aux_sym_float_token2] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2126), - [anon_sym_false] = ACTIONS(2126), - [aux_sym_string_token1] = ACTIONS(2128), - [aux_sym_string_token3] = ACTIONS(2128), + [768] = { + [ts_builtin_sym_end] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3344), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_package] = ACTIONS(3344), + [anon_sym_import] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_cast] = ACTIONS(3344), + [anon_sym_DOLLARtype] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_untyped] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_this] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_AT_COLON] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_catch] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_EQ_GT] = ACTIONS(3346), + [anon_sym_QMARK_QMARK] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_macro] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_overload] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_final] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3344), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_var] = ACTIONS(3344), + [aux_sym_integer_token1] = ACTIONS(3344), + [aux_sym_integer_token2] = ACTIONS(3346), + [aux_sym_float_token1] = ACTIONS(3344), + [aux_sym_float_token2] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym_string_token1] = ACTIONS(3346), + [aux_sym_string_token3] = ACTIONS(3346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2516), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_package] = ACTIONS(2516), - [anon_sym_import] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_using] = ACTIONS(2516), - [anon_sym_throw] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2516), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_cast] = ACTIONS(2516), - [anon_sym_DOLLARtype] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_untyped] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_this] = ACTIONS(2516), - [anon_sym_AT] = ACTIONS(2516), - [anon_sym_AT_COLON] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2516), - [anon_sym_catch] = ACTIONS(2516), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_do] = ACTIONS(2516), - [anon_sym_new] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2516), - [anon_sym_PLUS] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2518), - [anon_sym_GT_GT] = ACTIONS(2516), - [anon_sym_GT_GT_GT] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2516), - [anon_sym_CARET] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2516), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_EQ_GT] = ACTIONS(2518), - [anon_sym_QMARK_QMARK] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), - [anon_sym_null] = ACTIONS(2516), - [anon_sym_macro] = ACTIONS(2516), - [anon_sym_abstract] = ACTIONS(2516), - [anon_sym_static] = ACTIONS(2516), - [anon_sym_public] = ACTIONS(2516), - [anon_sym_private] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_inline] = ACTIONS(2516), - [anon_sym_overload] = ACTIONS(2516), - [anon_sym_override] = ACTIONS(2516), - [anon_sym_final] = ACTIONS(2516), - [anon_sym_class] = ACTIONS(2516), - [anon_sym_interface] = ACTIONS(2516), - [anon_sym_enum] = ACTIONS(2516), - [anon_sym_typedef] = ACTIONS(2516), - [anon_sym_function] = ACTIONS(2516), - [anon_sym_var] = ACTIONS(2516), - [aux_sym_integer_token1] = ACTIONS(2516), - [aux_sym_integer_token2] = ACTIONS(2518), - [aux_sym_float_token1] = ACTIONS(2516), - [aux_sym_float_token2] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2516), - [anon_sym_false] = ACTIONS(2516), - [aux_sym_string_token1] = ACTIONS(2518), - [aux_sym_string_token3] = ACTIONS(2518), + [769] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2826), + [anon_sym_package] = ACTIONS(2824), + [anon_sym_import] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_cast] = ACTIONS(2824), + [anon_sym_DOLLARtype] = ACTIONS(2826), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_untyped] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_this] = ACTIONS(2824), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_AT_COLON] = ACTIONS(2826), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_catch] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_LT_LT] = ACTIONS(2826), + [anon_sym_GT_GT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_PIPE_PIPE] = ACTIONS(2826), + [anon_sym_EQ_EQ] = ACTIONS(2826), + [anon_sym_BANG_EQ] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2824), + [anon_sym_LT_EQ] = ACTIONS(2826), + [anon_sym_GT] = ACTIONS(2824), + [anon_sym_GT_EQ] = ACTIONS(2826), + [anon_sym_EQ_GT] = ACTIONS(2826), + [anon_sym_QMARK_QMARK] = ACTIONS(2826), + [anon_sym_EQ] = ACTIONS(2824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2826), + [anon_sym_null] = ACTIONS(2824), + [anon_sym_macro] = ACTIONS(2824), + [anon_sym_abstract] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_private] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym_inline] = ACTIONS(2824), + [anon_sym_overload] = ACTIONS(2824), + [anon_sym_override] = ACTIONS(2824), + [anon_sym_final] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_interface] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_typedef] = ACTIONS(2824), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_var] = ACTIONS(2824), + [aux_sym_integer_token1] = ACTIONS(2824), + [aux_sym_integer_token2] = ACTIONS(2826), + [aux_sym_float_token1] = ACTIONS(2824), + [aux_sym_float_token2] = ACTIONS(2826), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [aux_sym_string_token1] = ACTIONS(2826), + [aux_sym_string_token3] = ACTIONS(2826), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [727] = { - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2520), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_package] = ACTIONS(2520), - [anon_sym_import] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2520), - [anon_sym_throw] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_cast] = ACTIONS(2520), - [anon_sym_DOLLARtype] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_untyped] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_this] = ACTIONS(2520), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_AT_COLON] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_catch] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2522), - [anon_sym_GT_GT] = ACTIONS(2520), - [anon_sym_GT_GT_GT] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_CARET] = ACTIONS(2522), - [anon_sym_AMP_AMP] = ACTIONS(2522), - [anon_sym_PIPE_PIPE] = ACTIONS(2522), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_LT_EQ] = ACTIONS(2522), - [anon_sym_GT] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2522), - [anon_sym_EQ_GT] = ACTIONS(2522), - [anon_sym_QMARK_QMARK] = ACTIONS(2522), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2522), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_macro] = ACTIONS(2520), - [anon_sym_abstract] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_public] = ACTIONS(2520), - [anon_sym_private] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_inline] = ACTIONS(2520), - [anon_sym_overload] = ACTIONS(2520), - [anon_sym_override] = ACTIONS(2520), - [anon_sym_final] = ACTIONS(2520), - [anon_sym_class] = ACTIONS(2520), - [anon_sym_interface] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_var] = ACTIONS(2520), - [aux_sym_integer_token1] = ACTIONS(2520), - [aux_sym_integer_token2] = ACTIONS(2522), - [aux_sym_float_token1] = ACTIONS(2520), - [aux_sym_float_token2] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [aux_sym_string_token1] = ACTIONS(2522), - [aux_sym_string_token3] = ACTIONS(2522), + [770] = { + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_package] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_cast] = ACTIONS(2828), + [anon_sym_DOLLARtype] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_untyped] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_this] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2828), + [anon_sym_AT_COLON] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_catch] = ACTIONS(2828), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_PERCENT] = ACTIONS(2830), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_LT_LT] = ACTIONS(2830), + [anon_sym_GT_GT] = ACTIONS(2828), + [anon_sym_GT_GT_GT] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP_AMP] = ACTIONS(2830), + [anon_sym_PIPE_PIPE] = ACTIONS(2830), + [anon_sym_EQ_EQ] = ACTIONS(2830), + [anon_sym_BANG_EQ] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_LT_EQ] = ACTIONS(2830), + [anon_sym_GT] = ACTIONS(2828), + [anon_sym_GT_EQ] = ACTIONS(2830), + [anon_sym_EQ_GT] = ACTIONS(2830), + [anon_sym_QMARK_QMARK] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), + [anon_sym_null] = ACTIONS(2828), + [anon_sym_macro] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym_inline] = ACTIONS(2828), + [anon_sym_overload] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_final] = ACTIONS(2828), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_typedef] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [aux_sym_integer_token1] = ACTIONS(2828), + [aux_sym_integer_token2] = ACTIONS(2830), + [aux_sym_float_token1] = ACTIONS(2828), + [aux_sym_float_token2] = ACTIONS(2830), + [anon_sym_true] = ACTIONS(2828), + [anon_sym_false] = ACTIONS(2828), + [aux_sym_string_token1] = ACTIONS(2830), + [aux_sym_string_token3] = ACTIONS(2830), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(2132), - [sym_identifier] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_package] = ACTIONS(2130), - [anon_sym_import] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2130), - [anon_sym_throw] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_switch] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_cast] = ACTIONS(2130), - [anon_sym_DOLLARtype] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_untyped] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_this] = ACTIONS(2130), - [anon_sym_AT] = ACTIONS(2130), - [anon_sym_AT_COLON] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_catch] = ACTIONS(2130), - [anon_sym_else] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_new] = ACTIONS(2130), - [anon_sym_TILDE] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_PLUS_PLUS] = ACTIONS(2132), - [anon_sym_DASH_DASH] = ACTIONS(2132), - [anon_sym_PERCENT] = ACTIONS(2132), - [anon_sym_SLASH] = ACTIONS(2130), - [anon_sym_PLUS] = ACTIONS(2130), - [anon_sym_LT_LT] = ACTIONS(2132), - [anon_sym_GT_GT] = ACTIONS(2130), - [anon_sym_GT_GT_GT] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_EQ_EQ] = ACTIONS(2132), - [anon_sym_BANG_EQ] = ACTIONS(2132), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_LT_EQ] = ACTIONS(2132), - [anon_sym_GT] = ACTIONS(2130), - [anon_sym_GT_EQ] = ACTIONS(2132), - [anon_sym_EQ_GT] = ACTIONS(2132), - [anon_sym_QMARK_QMARK] = ACTIONS(2132), - [anon_sym_EQ] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2132), - [anon_sym_null] = ACTIONS(2130), - [anon_sym_macro] = ACTIONS(2130), - [anon_sym_abstract] = ACTIONS(2130), - [anon_sym_static] = ACTIONS(2130), - [anon_sym_public] = ACTIONS(2130), - [anon_sym_private] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_inline] = ACTIONS(2130), - [anon_sym_overload] = ACTIONS(2130), - [anon_sym_override] = ACTIONS(2130), - [anon_sym_final] = ACTIONS(2130), - [anon_sym_class] = ACTIONS(2130), - [anon_sym_interface] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_typedef] = ACTIONS(2130), - [anon_sym_function] = ACTIONS(2130), - [anon_sym_var] = ACTIONS(2130), - [aux_sym_integer_token1] = ACTIONS(2130), - [aux_sym_integer_token2] = ACTIONS(2132), - [aux_sym_float_token1] = ACTIONS(2130), - [aux_sym_float_token2] = ACTIONS(2132), - [anon_sym_true] = ACTIONS(2130), - [anon_sym_false] = ACTIONS(2130), - [aux_sym_string_token1] = ACTIONS(2132), - [aux_sym_string_token3] = ACTIONS(2132), + [771] = { + [sym_else_clause] = STATE(824), + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_package] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_cast] = ACTIONS(2650), + [anon_sym_DOLLARtype] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_untyped] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_this] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2650), + [anon_sym_AT_COLON] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_LT_LT] = ACTIONS(2652), + [anon_sym_GT_GT] = ACTIONS(2650), + [anon_sym_GT_GT_GT] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_EQ_EQ] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_LT_EQ] = ACTIONS(2652), + [anon_sym_GT] = ACTIONS(2650), + [anon_sym_GT_EQ] = ACTIONS(2652), + [anon_sym_EQ_GT] = ACTIONS(2652), + [anon_sym_QMARK_QMARK] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_null] = ACTIONS(2650), + [anon_sym_macro] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_overload] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_final] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_typedef] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [aux_sym_integer_token1] = ACTIONS(2650), + [aux_sym_integer_token2] = ACTIONS(2652), + [aux_sym_float_token1] = ACTIONS(2650), + [aux_sym_float_token2] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [aux_sym_string_token1] = ACTIONS(2652), + [aux_sym_string_token3] = ACTIONS(2652), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2134), - [anon_sym_import] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_using] = ACTIONS(2134), - [anon_sym_throw] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_cast] = ACTIONS(2134), - [anon_sym_DOLLARtype] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_untyped] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_this] = ACTIONS(2134), - [anon_sym_AT] = ACTIONS(2134), - [anon_sym_AT_COLON] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2134), - [anon_sym_catch] = ACTIONS(2134), - [anon_sym_else] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2136), - [anon_sym_SLASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_LT_LT] = ACTIONS(2136), - [anon_sym_GT_GT] = ACTIONS(2134), - [anon_sym_GT_GT_GT] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP_AMP] = ACTIONS(2136), - [anon_sym_PIPE_PIPE] = ACTIONS(2136), - [anon_sym_EQ_EQ] = ACTIONS(2136), - [anon_sym_BANG_EQ] = ACTIONS(2136), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_LT_EQ] = ACTIONS(2136), - [anon_sym_GT] = ACTIONS(2134), - [anon_sym_GT_EQ] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_QMARK_QMARK] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2136), - [anon_sym_null] = ACTIONS(2134), - [anon_sym_macro] = ACTIONS(2134), - [anon_sym_abstract] = ACTIONS(2134), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_public] = ACTIONS(2134), - [anon_sym_private] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [anon_sym_overload] = ACTIONS(2134), - [anon_sym_override] = ACTIONS(2134), - [anon_sym_final] = ACTIONS(2134), - [anon_sym_class] = ACTIONS(2134), - [anon_sym_interface] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_function] = ACTIONS(2134), - [anon_sym_var] = ACTIONS(2134), - [aux_sym_integer_token1] = ACTIONS(2134), - [aux_sym_integer_token2] = ACTIONS(2136), - [aux_sym_float_token1] = ACTIONS(2134), - [aux_sym_float_token2] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2134), - [anon_sym_false] = ACTIONS(2134), - [aux_sym_string_token1] = ACTIONS(2136), - [aux_sym_string_token3] = ACTIONS(2136), + [772] = { + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_package] = ACTIONS(1452), + [anon_sym_import] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_using] = ACTIONS(1452), + [anon_sym_throw] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_this] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AT_COLON] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_GT_GT_GT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [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(1452), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_QMARK_QMARK] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_null] = ACTIONS(1452), + [anon_sym_macro] = ACTIONS(1452), + [anon_sym_abstract] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_public] = ACTIONS(1452), + [anon_sym_private] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym_overload] = ACTIONS(1452), + [anon_sym_override] = ACTIONS(1452), + [anon_sym_final] = ACTIONS(1452), + [anon_sym_class] = ACTIONS(1452), + [anon_sym_interface] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_function] = ACTIONS(1452), + [anon_sym_var] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1452), + [aux_sym_integer_token2] = ACTIONS(1448), + [aux_sym_float_token1] = ACTIONS(1452), + [aux_sym_float_token2] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1448), + [aux_sym_string_token3] = ACTIONS(1448), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(2526), - [anon_sym_package] = ACTIONS(2524), - [anon_sym_import] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2524), - [anon_sym_throw] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_cast] = ACTIONS(2524), - [anon_sym_DOLLARtype] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_untyped] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_this] = ACTIONS(2524), - [anon_sym_AT] = ACTIONS(2524), - [anon_sym_AT_COLON] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_catch] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_do] = ACTIONS(2524), - [anon_sym_new] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2526), - [anon_sym_GT_GT] = ACTIONS(2524), - [anon_sym_GT_GT_GT] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2524), - [anon_sym_CARET] = ACTIONS(2526), - [anon_sym_AMP_AMP] = ACTIONS(2526), - [anon_sym_PIPE_PIPE] = ACTIONS(2526), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_LT_EQ] = ACTIONS(2526), - [anon_sym_GT] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2526), - [anon_sym_EQ_GT] = ACTIONS(2526), - [anon_sym_QMARK_QMARK] = ACTIONS(2526), - [anon_sym_EQ] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2524), - [anon_sym_macro] = ACTIONS(2524), - [anon_sym_abstract] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_public] = ACTIONS(2524), - [anon_sym_private] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_inline] = ACTIONS(2524), - [anon_sym_overload] = ACTIONS(2524), - [anon_sym_override] = ACTIONS(2524), - [anon_sym_final] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2524), - [anon_sym_interface] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2524), - [anon_sym_function] = ACTIONS(2524), - [anon_sym_var] = ACTIONS(2524), - [aux_sym_integer_token1] = ACTIONS(2524), - [aux_sym_integer_token2] = ACTIONS(2526), - [aux_sym_float_token1] = ACTIONS(2524), - [aux_sym_float_token2] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [aux_sym_string_token1] = ACTIONS(2526), - [aux_sym_string_token3] = ACTIONS(2526), + [773] = { + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3380), + [anon_sym_package] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_cast] = ACTIONS(3378), + [anon_sym_DOLLARtype] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_untyped] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_this] = ACTIONS(3378), + [anon_sym_AT] = ACTIONS(3378), + [anon_sym_AT_COLON] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_catch] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3380), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3380), + [anon_sym_AMP_AMP] = ACTIONS(3380), + [anon_sym_PIPE_PIPE] = ACTIONS(3380), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3380), + [anon_sym_EQ_GT] = ACTIONS(3380), + [anon_sym_QMARK_QMARK] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3380), + [anon_sym_null] = ACTIONS(3378), + [anon_sym_macro] = ACTIONS(3378), + [anon_sym_abstract] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_public] = ACTIONS(3378), + [anon_sym_private] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3378), + [anon_sym_inline] = ACTIONS(3378), + [anon_sym_overload] = ACTIONS(3378), + [anon_sym_override] = ACTIONS(3378), + [anon_sym_final] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3378), + [anon_sym_function] = ACTIONS(3378), + [anon_sym_var] = ACTIONS(3378), + [aux_sym_integer_token1] = ACTIONS(3378), + [aux_sym_integer_token2] = ACTIONS(3380), + [aux_sym_float_token1] = ACTIONS(3378), + [aux_sym_float_token2] = ACTIONS(3380), + [anon_sym_true] = ACTIONS(3378), + [anon_sym_false] = ACTIONS(3378), + [aux_sym_string_token1] = ACTIONS(3380), + [aux_sym_string_token3] = ACTIONS(3380), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_identifier] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2140), - [anon_sym_package] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2138), - [anon_sym_throw] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_cast] = ACTIONS(2138), - [anon_sym_DOLLARtype] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_untyped] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_this] = ACTIONS(2138), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_AT_COLON] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_catch] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2138), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_EQ_GT] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), - [anon_sym_null] = ACTIONS(2138), - [anon_sym_macro] = ACTIONS(2138), - [anon_sym_abstract] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym_inline] = ACTIONS(2138), - [anon_sym_overload] = ACTIONS(2138), - [anon_sym_override] = ACTIONS(2138), - [anon_sym_final] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_typedef] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_var] = ACTIONS(2138), - [aux_sym_integer_token1] = ACTIONS(2138), - [aux_sym_integer_token2] = ACTIONS(2140), - [aux_sym_float_token1] = ACTIONS(2138), - [aux_sym_float_token2] = ACTIONS(2140), - [anon_sym_true] = ACTIONS(2138), - [anon_sym_false] = ACTIONS(2138), - [aux_sym_string_token1] = ACTIONS(2140), - [aux_sym_string_token3] = ACTIONS(2140), + [774] = { + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3382), + [anon_sym_POUND] = ACTIONS(3384), + [anon_sym_package] = ACTIONS(3382), + [anon_sym_import] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3382), + [anon_sym_throw] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_cast] = ACTIONS(3382), + [anon_sym_DOLLARtype] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_untyped] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_this] = ACTIONS(3382), + [anon_sym_AT] = ACTIONS(3382), + [anon_sym_AT_COLON] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3382), + [anon_sym_catch] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_new] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_PERCENT] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_LT_LT] = ACTIONS(3384), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_CARET] = ACTIONS(3384), + [anon_sym_AMP_AMP] = ACTIONS(3384), + [anon_sym_PIPE_PIPE] = ACTIONS(3384), + [anon_sym_EQ_EQ] = ACTIONS(3384), + [anon_sym_BANG_EQ] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3384), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3384), + [anon_sym_EQ_GT] = ACTIONS(3384), + [anon_sym_QMARK_QMARK] = ACTIONS(3384), + [anon_sym_EQ] = ACTIONS(3382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3384), + [anon_sym_null] = ACTIONS(3382), + [anon_sym_macro] = ACTIONS(3382), + [anon_sym_abstract] = ACTIONS(3382), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_public] = ACTIONS(3382), + [anon_sym_private] = ACTIONS(3382), + [anon_sym_extern] = ACTIONS(3382), + [anon_sym_inline] = ACTIONS(3382), + [anon_sym_overload] = ACTIONS(3382), + [anon_sym_override] = ACTIONS(3382), + [anon_sym_final] = ACTIONS(3382), + [anon_sym_class] = ACTIONS(3382), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_typedef] = ACTIONS(3382), + [anon_sym_function] = ACTIONS(3382), + [anon_sym_var] = ACTIONS(3382), + [aux_sym_integer_token1] = ACTIONS(3382), + [aux_sym_integer_token2] = ACTIONS(3384), + [aux_sym_float_token1] = ACTIONS(3382), + [aux_sym_float_token2] = ACTIONS(3384), + [anon_sym_true] = ACTIONS(3382), + [anon_sym_false] = ACTIONS(3382), + [aux_sym_string_token1] = ACTIONS(3384), + [aux_sym_string_token3] = ACTIONS(3384), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2528), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_package] = ACTIONS(2528), - [anon_sym_import] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_using] = ACTIONS(2528), - [anon_sym_throw] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_switch] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_cast] = ACTIONS(2528), - [anon_sym_DOLLARtype] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_untyped] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_this] = ACTIONS(2528), - [anon_sym_AT] = ACTIONS(2528), - [anon_sym_AT_COLON] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_catch] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2528), - [anon_sym_GT_GT_GT] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_AMP_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_LT_EQ] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2530), - [anon_sym_EQ_GT] = ACTIONS(2530), - [anon_sym_QMARK_QMARK] = ACTIONS(2530), - [anon_sym_EQ] = ACTIONS(2528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2528), - [anon_sym_macro] = ACTIONS(2528), - [anon_sym_abstract] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_public] = ACTIONS(2528), - [anon_sym_private] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_inline] = ACTIONS(2528), - [anon_sym_overload] = ACTIONS(2528), - [anon_sym_override] = ACTIONS(2528), - [anon_sym_final] = ACTIONS(2528), - [anon_sym_class] = ACTIONS(2528), - [anon_sym_interface] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2528), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_var] = ACTIONS(2528), - [aux_sym_integer_token1] = ACTIONS(2528), - [aux_sym_integer_token2] = ACTIONS(2530), - [aux_sym_float_token1] = ACTIONS(2528), - [aux_sym_float_token2] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2528), - [anon_sym_false] = ACTIONS(2528), - [aux_sym_string_token1] = ACTIONS(2530), - [aux_sym_string_token3] = ACTIONS(2530), + [775] = { + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2706), + [anon_sym_package] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_using] = ACTIONS(2704), + [anon_sym_throw] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_cast] = ACTIONS(2704), + [anon_sym_DOLLARtype] = ACTIONS(2706), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_untyped] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_this] = ACTIONS(2704), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_AT_COLON] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_catch] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_new] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PERCENT] = ACTIONS(2706), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(2706), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_GT_GT_GT] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_EQ_GT] = ACTIONS(2706), + [anon_sym_QMARK_QMARK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2706), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_macro] = ACTIONS(2704), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_public] = ACTIONS(2704), + [anon_sym_private] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym_overload] = ACTIONS(2704), + [anon_sym_override] = ACTIONS(2704), + [anon_sym_final] = ACTIONS(2704), + [anon_sym_class] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_function] = ACTIONS(2704), + [anon_sym_var] = ACTIONS(2704), + [aux_sym_integer_token1] = ACTIONS(2704), + [aux_sym_integer_token2] = ACTIONS(2706), + [aux_sym_float_token1] = ACTIONS(2704), + [aux_sym_float_token2] = ACTIONS(2706), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [aux_sym_string_token1] = ACTIONS(2706), + [aux_sym_string_token3] = ACTIONS(2706), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [733] = { - [sym_else_clause] = STATE(520), - [sym_identifier] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_package] = ACTIONS(1976), - [anon_sym_import] = ACTIONS(1976), - [anon_sym_STAR] = ACTIONS(1978), - [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_for] = ACTIONS(1976), - [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_try] = ACTIONS(1976), - [anon_sym_else] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2532), - [anon_sym_POUND] = ACTIONS(2534), - [anon_sym_package] = ACTIONS(2532), - [anon_sym_import] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_using] = ACTIONS(2532), - [anon_sym_throw] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_switch] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_cast] = ACTIONS(2532), - [anon_sym_DOLLARtype] = ACTIONS(2534), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_untyped] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_this] = ACTIONS(2532), - [anon_sym_AT] = ACTIONS(2532), - [anon_sym_AT_COLON] = ACTIONS(2534), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_catch] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_do] = ACTIONS(2532), - [anon_sym_new] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2534), - [anon_sym_DASH_DASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2534), - [anon_sym_GT_GT] = ACTIONS(2532), - [anon_sym_GT_GT_GT] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2532), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP_AMP] = ACTIONS(2534), - [anon_sym_PIPE_PIPE] = ACTIONS(2534), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_LT_EQ] = ACTIONS(2534), - [anon_sym_GT] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2534), - [anon_sym_EQ_GT] = ACTIONS(2534), - [anon_sym_QMARK_QMARK] = ACTIONS(2534), - [anon_sym_EQ] = ACTIONS(2532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2534), - [anon_sym_null] = ACTIONS(2532), - [anon_sym_macro] = ACTIONS(2532), - [anon_sym_abstract] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_public] = ACTIONS(2532), - [anon_sym_private] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_inline] = ACTIONS(2532), - [anon_sym_overload] = ACTIONS(2532), - [anon_sym_override] = ACTIONS(2532), - [anon_sym_final] = ACTIONS(2532), - [anon_sym_class] = ACTIONS(2532), - [anon_sym_interface] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_typedef] = ACTIONS(2532), - [anon_sym_function] = ACTIONS(2532), - [anon_sym_var] = ACTIONS(2532), - [aux_sym_integer_token1] = ACTIONS(2532), - [aux_sym_integer_token2] = ACTIONS(2534), - [aux_sym_float_token1] = ACTIONS(2532), - [aux_sym_float_token2] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [aux_sym_string_token1] = ACTIONS(2534), - [aux_sym_string_token3] = ACTIONS(2534), + [776] = { + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_package] = ACTIONS(2708), + [anon_sym_import] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_using] = ACTIONS(2708), + [anon_sym_throw] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_cast] = ACTIONS(2708), + [anon_sym_DOLLARtype] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_untyped] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_this] = ACTIONS(2708), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_AT_COLON] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_catch] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_PERCENT] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_LT_LT] = ACTIONS(2710), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_GT_GT_GT] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_EQ_EQ] = ACTIONS(2710), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_GT_EQ] = ACTIONS(2710), + [anon_sym_EQ_GT] = ACTIONS(2710), + [anon_sym_QMARK_QMARK] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_macro] = ACTIONS(2708), + [anon_sym_abstract] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_public] = ACTIONS(2708), + [anon_sym_private] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym_inline] = ACTIONS(2708), + [anon_sym_overload] = ACTIONS(2708), + [anon_sym_override] = ACTIONS(2708), + [anon_sym_final] = ACTIONS(2708), + [anon_sym_class] = ACTIONS(2708), + [anon_sym_interface] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_typedef] = ACTIONS(2708), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_var] = ACTIONS(2708), + [aux_sym_integer_token1] = ACTIONS(2708), + [aux_sym_integer_token2] = ACTIONS(2710), + [aux_sym_float_token1] = ACTIONS(2708), + [aux_sym_float_token2] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [aux_sym_string_token1] = ACTIONS(2710), + [aux_sym_string_token3] = ACTIONS(2710), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2536), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_package] = ACTIONS(2536), - [anon_sym_import] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_using] = ACTIONS(2536), - [anon_sym_throw] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_switch] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_cast] = ACTIONS(2536), - [anon_sym_DOLLARtype] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_untyped] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_this] = ACTIONS(2536), - [anon_sym_AT] = ACTIONS(2536), - [anon_sym_AT_COLON] = ACTIONS(2538), - [anon_sym_try] = ACTIONS(2536), - [anon_sym_catch] = ACTIONS(2536), - [anon_sym_else] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_while] = ACTIONS(2536), - [anon_sym_do] = ACTIONS(2536), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_TILDE] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2538), - [anon_sym_GT_GT] = ACTIONS(2536), - [anon_sym_GT_GT_GT] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2538), - [anon_sym_AMP_AMP] = ACTIONS(2538), - [anon_sym_PIPE_PIPE] = ACTIONS(2538), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2538), - [anon_sym_GT] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2538), - [anon_sym_EQ_GT] = ACTIONS(2538), - [anon_sym_QMARK_QMARK] = ACTIONS(2538), - [anon_sym_EQ] = ACTIONS(2536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2538), - [anon_sym_null] = ACTIONS(2536), - [anon_sym_macro] = ACTIONS(2536), - [anon_sym_abstract] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_public] = ACTIONS(2536), - [anon_sym_private] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym_inline] = ACTIONS(2536), - [anon_sym_overload] = ACTIONS(2536), - [anon_sym_override] = ACTIONS(2536), - [anon_sym_final] = ACTIONS(2536), - [anon_sym_class] = ACTIONS(2536), - [anon_sym_interface] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_typedef] = ACTIONS(2536), - [anon_sym_function] = ACTIONS(2536), - [anon_sym_var] = ACTIONS(2536), - [aux_sym_integer_token1] = ACTIONS(2536), - [aux_sym_integer_token2] = ACTIONS(2538), - [aux_sym_float_token1] = ACTIONS(2536), - [aux_sym_float_token2] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [aux_sym_string_token1] = ACTIONS(2538), - [aux_sym_string_token3] = ACTIONS(2538), + [777] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_package] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_using] = ACTIONS(2712), + [anon_sym_throw] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_cast] = ACTIONS(2712), + [anon_sym_DOLLARtype] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_untyped] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_this] = ACTIONS(2712), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_AT_COLON] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_PERCENT] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_LT_LT] = ACTIONS(2714), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_GT_GT_GT] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2714), + [anon_sym_AMP_AMP] = ACTIONS(2714), + [anon_sym_PIPE_PIPE] = ACTIONS(2714), + [anon_sym_EQ_EQ] = ACTIONS(2714), + [anon_sym_BANG_EQ] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_LT_EQ] = ACTIONS(2714), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_EQ] = ACTIONS(2714), + [anon_sym_EQ_GT] = ACTIONS(2714), + [anon_sym_QMARK_QMARK] = ACTIONS(2714), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2714), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_macro] = ACTIONS(2712), + [anon_sym_abstract] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_public] = ACTIONS(2712), + [anon_sym_private] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym_inline] = ACTIONS(2712), + [anon_sym_overload] = ACTIONS(2712), + [anon_sym_override] = ACTIONS(2712), + [anon_sym_final] = ACTIONS(2712), + [anon_sym_class] = ACTIONS(2712), + [anon_sym_interface] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_typedef] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(2712), + [anon_sym_var] = ACTIONS(2712), + [aux_sym_integer_token1] = ACTIONS(2712), + [aux_sym_integer_token2] = ACTIONS(2714), + [aux_sym_float_token1] = ACTIONS(2712), + [aux_sym_float_token2] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [aux_sym_string_token1] = ACTIONS(2714), + [aux_sym_string_token3] = ACTIONS(2714), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2540), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_package] = ACTIONS(2540), - [anon_sym_import] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2540), - [anon_sym_throw] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2540), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_cast] = ACTIONS(2540), - [anon_sym_DOLLARtype] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2540), - [anon_sym_return] = ACTIONS(2540), - [anon_sym_untyped] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_this] = ACTIONS(2540), - [anon_sym_AT] = ACTIONS(2540), - [anon_sym_AT_COLON] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2540), - [anon_sym_catch] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2540), - [anon_sym_while] = ACTIONS(2540), - [anon_sym_do] = ACTIONS(2540), - [anon_sym_new] = ACTIONS(2540), - [anon_sym_TILDE] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_DASH] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2542), - [anon_sym_GT_GT] = ACTIONS(2540), - [anon_sym_GT_GT_GT] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2540), - [anon_sym_CARET] = ACTIONS(2542), - [anon_sym_AMP_AMP] = ACTIONS(2542), - [anon_sym_PIPE_PIPE] = ACTIONS(2542), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_LT_EQ] = ACTIONS(2542), - [anon_sym_GT] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2542), - [anon_sym_EQ_GT] = ACTIONS(2542), - [anon_sym_QMARK_QMARK] = ACTIONS(2542), - [anon_sym_EQ] = ACTIONS(2540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2542), - [anon_sym_null] = ACTIONS(2540), - [anon_sym_macro] = ACTIONS(2540), - [anon_sym_abstract] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_public] = ACTIONS(2540), - [anon_sym_private] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym_inline] = ACTIONS(2540), - [anon_sym_overload] = ACTIONS(2540), - [anon_sym_override] = ACTIONS(2540), - [anon_sym_final] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2540), - [anon_sym_interface] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_typedef] = ACTIONS(2540), - [anon_sym_function] = ACTIONS(2540), - [anon_sym_var] = ACTIONS(2540), - [aux_sym_integer_token1] = ACTIONS(2540), - [aux_sym_integer_token2] = ACTIONS(2542), - [aux_sym_float_token1] = ACTIONS(2540), - [aux_sym_float_token2] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2540), - [anon_sym_false] = ACTIONS(2540), - [aux_sym_string_token1] = ACTIONS(2542), - [aux_sym_string_token3] = ACTIONS(2542), + [778] = { + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_package] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2716), + [anon_sym_throw] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_cast] = ACTIONS(2716), + [anon_sym_DOLLARtype] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_untyped] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_this] = ACTIONS(2716), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_AT_COLON] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_catch] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_new] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2718), + [anon_sym_GT_GT] = ACTIONS(2716), + [anon_sym_GT_GT_GT] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_EQ_EQ] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_LT_EQ] = ACTIONS(2718), + [anon_sym_GT] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2718), + [anon_sym_EQ_GT] = ACTIONS(2718), + [anon_sym_QMARK_QMARK] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2718), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_macro] = ACTIONS(2716), + [anon_sym_abstract] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_public] = ACTIONS(2716), + [anon_sym_private] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym_inline] = ACTIONS(2716), + [anon_sym_overload] = ACTIONS(2716), + [anon_sym_override] = ACTIONS(2716), + [anon_sym_final] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2716), + [anon_sym_interface] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_typedef] = ACTIONS(2716), + [anon_sym_function] = ACTIONS(2716), + [anon_sym_var] = ACTIONS(2716), + [aux_sym_integer_token1] = ACTIONS(2716), + [aux_sym_integer_token2] = ACTIONS(2718), + [aux_sym_float_token1] = ACTIONS(2716), + [aux_sym_float_token2] = ACTIONS(2718), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [aux_sym_string_token1] = ACTIONS(2718), + [aux_sym_string_token3] = ACTIONS(2718), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(2546), - [sym_identifier] = ACTIONS(2544), - [anon_sym_POUND] = ACTIONS(2546), - [anon_sym_package] = ACTIONS(2544), - [anon_sym_import] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2544), - [anon_sym_throw] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_cast] = ACTIONS(2544), - [anon_sym_DOLLARtype] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_untyped] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2546), - [anon_sym_this] = ACTIONS(2544), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_AT_COLON] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2544), - [anon_sym_catch] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_while] = ACTIONS(2544), - [anon_sym_do] = ACTIONS(2544), - [anon_sym_new] = ACTIONS(2544), - [anon_sym_TILDE] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2544), - [anon_sym_PLUS_PLUS] = ACTIONS(2546), - [anon_sym_DASH_DASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2544), - [anon_sym_PLUS] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2546), - [anon_sym_GT_GT] = ACTIONS(2544), - [anon_sym_GT_GT_GT] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2544), - [anon_sym_CARET] = ACTIONS(2546), - [anon_sym_AMP_AMP] = ACTIONS(2546), - [anon_sym_PIPE_PIPE] = ACTIONS(2546), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2544), - [anon_sym_LT_EQ] = ACTIONS(2546), - [anon_sym_GT] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(2546), - [anon_sym_QMARK_QMARK] = ACTIONS(2546), - [anon_sym_EQ] = ACTIONS(2544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2544), - [anon_sym_macro] = ACTIONS(2544), - [anon_sym_abstract] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_public] = ACTIONS(2544), - [anon_sym_private] = ACTIONS(2544), - [anon_sym_extern] = ACTIONS(2544), - [anon_sym_inline] = ACTIONS(2544), - [anon_sym_overload] = ACTIONS(2544), - [anon_sym_override] = ACTIONS(2544), - [anon_sym_final] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2544), - [anon_sym_interface] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2544), - [anon_sym_typedef] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2544), - [anon_sym_var] = ACTIONS(2544), - [aux_sym_integer_token1] = ACTIONS(2544), - [aux_sym_integer_token2] = ACTIONS(2546), - [aux_sym_float_token1] = ACTIONS(2544), - [aux_sym_float_token2] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [aux_sym_string_token1] = ACTIONS(2546), - [aux_sym_string_token3] = ACTIONS(2546), + [779] = { + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3386), + [anon_sym_POUND] = ACTIONS(3388), + [anon_sym_package] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_using] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_cast] = ACTIONS(3386), + [anon_sym_DOLLARtype] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_untyped] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_this] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3386), + [anon_sym_AT_COLON] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_catch] = ACTIONS(3386), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_PERCENT] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_LT_LT] = ACTIONS(3388), + [anon_sym_GT_GT] = ACTIONS(3386), + [anon_sym_GT_GT_GT] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_PIPE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_EQ_GT] = ACTIONS(3388), + [anon_sym_QMARK_QMARK] = ACTIONS(3388), + [anon_sym_EQ] = ACTIONS(3386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3388), + [anon_sym_null] = ACTIONS(3386), + [anon_sym_macro] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_extern] = ACTIONS(3386), + [anon_sym_inline] = ACTIONS(3386), + [anon_sym_overload] = ACTIONS(3386), + [anon_sym_override] = ACTIONS(3386), + [anon_sym_final] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + [anon_sym_typedef] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [aux_sym_integer_token1] = ACTIONS(3386), + [aux_sym_integer_token2] = ACTIONS(3388), + [aux_sym_float_token1] = ACTIONS(3386), + [aux_sym_float_token2] = ACTIONS(3388), + [anon_sym_true] = ACTIONS(3386), + [anon_sym_false] = ACTIONS(3386), + [aux_sym_string_token1] = ACTIONS(3388), + [aux_sym_string_token3] = ACTIONS(3388), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_identifier] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2550), - [anon_sym_package] = ACTIONS(2548), - [anon_sym_import] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_using] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_switch] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_cast] = ACTIONS(2548), - [anon_sym_DOLLARtype] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2548), - [anon_sym_untyped] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2550), - [anon_sym_this] = ACTIONS(2548), - [anon_sym_AT] = ACTIONS(2548), - [anon_sym_AT_COLON] = ACTIONS(2550), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_catch] = ACTIONS(2548), - [anon_sym_else] = ACTIONS(2548), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_while] = ACTIONS(2548), - [anon_sym_do] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2550), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2550), - [anon_sym_DASH_DASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2548), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2550), - [anon_sym_GT_GT] = ACTIONS(2548), - [anon_sym_GT_GT_GT] = ACTIONS(2550), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2550), - [anon_sym_AMP_AMP] = ACTIONS(2550), - [anon_sym_PIPE_PIPE] = ACTIONS(2550), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_LT] = ACTIONS(2548), - [anon_sym_LT_EQ] = ACTIONS(2550), - [anon_sym_GT] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2550), - [anon_sym_EQ_GT] = ACTIONS(2550), - [anon_sym_QMARK_QMARK] = ACTIONS(2550), - [anon_sym_EQ] = ACTIONS(2548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_null] = ACTIONS(2548), - [anon_sym_macro] = ACTIONS(2548), - [anon_sym_abstract] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_public] = ACTIONS(2548), - [anon_sym_private] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym_inline] = ACTIONS(2548), - [anon_sym_overload] = ACTIONS(2548), - [anon_sym_override] = ACTIONS(2548), - [anon_sym_final] = ACTIONS(2548), - [anon_sym_class] = ACTIONS(2548), - [anon_sym_interface] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_typedef] = ACTIONS(2548), - [anon_sym_function] = ACTIONS(2548), - [anon_sym_var] = ACTIONS(2548), - [aux_sym_integer_token1] = ACTIONS(2548), - [aux_sym_integer_token2] = ACTIONS(2550), - [aux_sym_float_token1] = ACTIONS(2548), - [aux_sym_float_token2] = ACTIONS(2550), - [anon_sym_true] = ACTIONS(2548), - [anon_sym_false] = ACTIONS(2548), - [aux_sym_string_token1] = ACTIONS(2550), - [aux_sym_string_token3] = ACTIONS(2550), + [780] = { + [ts_builtin_sym_end] = ACTIONS(2604), + [sym_identifier] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2604), + [anon_sym_package] = ACTIONS(2602), + [anon_sym_import] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_using] = ACTIONS(2602), + [anon_sym_throw] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_cast] = ACTIONS(2602), + [anon_sym_DOLLARtype] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_untyped] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym_this] = ACTIONS(2602), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_AT_COLON] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2602), + [anon_sym_catch] = ACTIONS(2602), + [anon_sym_else] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_new] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_PLUS_PLUS] = ACTIONS(2604), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_PERCENT] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_LT_LT] = ACTIONS(2604), + [anon_sym_GT_GT] = ACTIONS(2602), + [anon_sym_GT_GT_GT] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2604), + [anon_sym_AMP_AMP] = ACTIONS(2604), + [anon_sym_PIPE_PIPE] = ACTIONS(2604), + [anon_sym_EQ_EQ] = ACTIONS(2604), + [anon_sym_BANG_EQ] = ACTIONS(2604), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_LT_EQ] = ACTIONS(2604), + [anon_sym_GT] = ACTIONS(2602), + [anon_sym_GT_EQ] = ACTIONS(2604), + [anon_sym_EQ_GT] = ACTIONS(2604), + [anon_sym_QMARK_QMARK] = ACTIONS(2604), + [anon_sym_EQ] = ACTIONS(2602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2604), + [anon_sym_null] = ACTIONS(2602), + [anon_sym_macro] = ACTIONS(2602), + [anon_sym_abstract] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_public] = ACTIONS(2602), + [anon_sym_private] = ACTIONS(2602), + [anon_sym_extern] = ACTIONS(2602), + [anon_sym_inline] = ACTIONS(2602), + [anon_sym_overload] = ACTIONS(2602), + [anon_sym_override] = ACTIONS(2602), + [anon_sym_final] = ACTIONS(2602), + [anon_sym_class] = ACTIONS(2602), + [anon_sym_interface] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), + [anon_sym_typedef] = ACTIONS(2602), + [anon_sym_function] = ACTIONS(2602), + [anon_sym_var] = ACTIONS(2602), + [aux_sym_integer_token1] = ACTIONS(2602), + [aux_sym_integer_token2] = ACTIONS(2604), + [aux_sym_float_token1] = ACTIONS(2602), + [aux_sym_float_token2] = ACTIONS(2604), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [aux_sym_string_token1] = ACTIONS(2604), + [aux_sym_string_token3] = ACTIONS(2604), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(2554), - [sym_identifier] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2554), - [anon_sym_package] = ACTIONS(2552), - [anon_sym_import] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_using] = ACTIONS(2552), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_switch] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2554), - [anon_sym_cast] = ACTIONS(2552), - [anon_sym_DOLLARtype] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2552), - [anon_sym_return] = ACTIONS(2552), - [anon_sym_untyped] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2554), - [anon_sym_this] = ACTIONS(2552), - [anon_sym_AT] = ACTIONS(2552), - [anon_sym_AT_COLON] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2552), - [anon_sym_catch] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2552), - [anon_sym_if] = ACTIONS(2552), - [anon_sym_while] = ACTIONS(2552), - [anon_sym_do] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_TILDE] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_PLUS_PLUS] = ACTIONS(2554), - [anon_sym_DASH_DASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2552), - [anon_sym_PLUS] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2554), - [anon_sym_GT_GT] = ACTIONS(2552), - [anon_sym_GT_GT_GT] = ACTIONS(2554), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_CARET] = ACTIONS(2554), - [anon_sym_AMP_AMP] = ACTIONS(2554), - [anon_sym_PIPE_PIPE] = ACTIONS(2554), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_LT_EQ] = ACTIONS(2554), - [anon_sym_GT] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2554), - [anon_sym_EQ_GT] = ACTIONS(2554), - [anon_sym_QMARK_QMARK] = ACTIONS(2554), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2554), - [anon_sym_null] = ACTIONS(2552), - [anon_sym_macro] = ACTIONS(2552), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_public] = ACTIONS(2552), - [anon_sym_private] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym_inline] = ACTIONS(2552), - [anon_sym_overload] = ACTIONS(2552), - [anon_sym_override] = ACTIONS(2552), - [anon_sym_final] = ACTIONS(2552), - [anon_sym_class] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_typedef] = ACTIONS(2552), - [anon_sym_function] = ACTIONS(2552), - [anon_sym_var] = ACTIONS(2552), - [aux_sym_integer_token1] = ACTIONS(2552), - [aux_sym_integer_token2] = ACTIONS(2554), - [aux_sym_float_token1] = ACTIONS(2552), - [aux_sym_float_token2] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [aux_sym_string_token1] = ACTIONS(2554), - [aux_sym_string_token3] = ACTIONS(2554), + [781] = { + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3390), + [anon_sym_POUND] = ACTIONS(3392), + [anon_sym_package] = ACTIONS(3390), + [anon_sym_import] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3390), + [anon_sym_throw] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_cast] = ACTIONS(3390), + [anon_sym_DOLLARtype] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3390), + [anon_sym_return] = ACTIONS(3390), + [anon_sym_untyped] = ACTIONS(3390), + [anon_sym_break] = ACTIONS(3390), + [anon_sym_continue] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3390), + [anon_sym_AT] = ACTIONS(3390), + [anon_sym_AT_COLON] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3390), + [anon_sym_catch] = ACTIONS(3390), + [anon_sym_else] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_while] = ACTIONS(3390), + [anon_sym_do] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_LT_LT] = ACTIONS(3392), + [anon_sym_GT_GT] = ACTIONS(3390), + [anon_sym_GT_GT_GT] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3390), + [anon_sym_PIPE] = ACTIONS(3390), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_EQ_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_LT_EQ] = ACTIONS(3392), + [anon_sym_GT] = ACTIONS(3390), + [anon_sym_GT_EQ] = ACTIONS(3392), + [anon_sym_EQ_GT] = ACTIONS(3392), + [anon_sym_QMARK_QMARK] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3392), + [anon_sym_null] = ACTIONS(3390), + [anon_sym_macro] = ACTIONS(3390), + [anon_sym_abstract] = ACTIONS(3390), + [anon_sym_static] = ACTIONS(3390), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_extern] = ACTIONS(3390), + [anon_sym_inline] = ACTIONS(3390), + [anon_sym_overload] = ACTIONS(3390), + [anon_sym_override] = ACTIONS(3390), + [anon_sym_final] = ACTIONS(3390), + [anon_sym_class] = ACTIONS(3390), + [anon_sym_interface] = ACTIONS(3390), + [anon_sym_enum] = ACTIONS(3390), + [anon_sym_typedef] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3390), + [anon_sym_var] = ACTIONS(3390), + [aux_sym_integer_token1] = ACTIONS(3390), + [aux_sym_integer_token2] = ACTIONS(3392), + [aux_sym_float_token1] = ACTIONS(3390), + [aux_sym_float_token2] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3390), + [anon_sym_false] = ACTIONS(3390), + [aux_sym_string_token1] = ACTIONS(3392), + [aux_sym_string_token3] = ACTIONS(3392), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(2558), - [sym_identifier] = ACTIONS(2556), - [anon_sym_POUND] = ACTIONS(2558), - [anon_sym_package] = ACTIONS(2556), - [anon_sym_import] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_using] = ACTIONS(2556), - [anon_sym_throw] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2558), - [anon_sym_switch] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_cast] = ACTIONS(2556), - [anon_sym_DOLLARtype] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_return] = ACTIONS(2556), - [anon_sym_untyped] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2558), - [anon_sym_this] = ACTIONS(2556), - [anon_sym_AT] = ACTIONS(2556), - [anon_sym_AT_COLON] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2556), - [anon_sym_catch] = ACTIONS(2556), - [anon_sym_else] = ACTIONS(2556), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_while] = ACTIONS(2556), - [anon_sym_do] = ACTIONS(2556), - [anon_sym_new] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_DASH] = ACTIONS(2556), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2556), - [anon_sym_PLUS] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2558), - [anon_sym_GT_GT] = ACTIONS(2556), - [anon_sym_GT_GT_GT] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2556), - [anon_sym_CARET] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2558), - [anon_sym_PIPE_PIPE] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_LT_EQ] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2558), - [anon_sym_EQ_GT] = ACTIONS(2558), - [anon_sym_QMARK_QMARK] = ACTIONS(2558), - [anon_sym_EQ] = ACTIONS(2556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2558), - [anon_sym_null] = ACTIONS(2556), - [anon_sym_macro] = ACTIONS(2556), - [anon_sym_abstract] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_public] = ACTIONS(2556), - [anon_sym_private] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym_inline] = ACTIONS(2556), - [anon_sym_overload] = ACTIONS(2556), - [anon_sym_override] = ACTIONS(2556), - [anon_sym_final] = ACTIONS(2556), - [anon_sym_class] = ACTIONS(2556), - [anon_sym_interface] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_typedef] = ACTIONS(2556), - [anon_sym_function] = ACTIONS(2556), - [anon_sym_var] = ACTIONS(2556), - [aux_sym_integer_token1] = ACTIONS(2556), - [aux_sym_integer_token2] = ACTIONS(2558), - [aux_sym_float_token1] = ACTIONS(2556), - [aux_sym_float_token2] = ACTIONS(2558), - [anon_sym_true] = ACTIONS(2556), - [anon_sym_false] = ACTIONS(2556), - [aux_sym_string_token1] = ACTIONS(2558), - [aux_sym_string_token3] = ACTIONS(2558), + [782] = { + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(3396), + [anon_sym_package] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_using] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_cast] = ACTIONS(3394), + [anon_sym_DOLLARtype] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_untyped] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_this] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3394), + [anon_sym_AT_COLON] = ACTIONS(3396), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_catch] = ACTIONS(3394), + [anon_sym_else] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_PERCENT] = ACTIONS(3396), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3396), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_GT_GT_GT] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_AMP_AMP] = ACTIONS(3396), + [anon_sym_PIPE_PIPE] = ACTIONS(3396), + [anon_sym_EQ_EQ] = ACTIONS(3396), + [anon_sym_BANG_EQ] = ACTIONS(3396), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_LT_EQ] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_GT_EQ] = ACTIONS(3396), + [anon_sym_EQ_GT] = ACTIONS(3396), + [anon_sym_QMARK_QMARK] = ACTIONS(3396), + [anon_sym_EQ] = ACTIONS(3394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3396), + [anon_sym_null] = ACTIONS(3394), + [anon_sym_macro] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_extern] = ACTIONS(3394), + [anon_sym_inline] = ACTIONS(3394), + [anon_sym_overload] = ACTIONS(3394), + [anon_sym_override] = ACTIONS(3394), + [anon_sym_final] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), + [anon_sym_typedef] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [aux_sym_integer_token1] = ACTIONS(3394), + [aux_sym_integer_token2] = ACTIONS(3396), + [aux_sym_float_token1] = ACTIONS(3394), + [aux_sym_float_token2] = ACTIONS(3396), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym_string_token1] = ACTIONS(3396), + [aux_sym_string_token3] = ACTIONS(3396), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2144), - [anon_sym_package] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2142), - [anon_sym_throw] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_cast] = ACTIONS(2142), - [anon_sym_DOLLARtype] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_untyped] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_this] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2142), - [anon_sym_AT_COLON] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_catch] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_SLASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2144), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), - [anon_sym_QMARK_QMARK] = ACTIONS(2144), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2144), - [anon_sym_null] = ACTIONS(2142), - [anon_sym_macro] = ACTIONS(2142), - [anon_sym_abstract] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_private] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [anon_sym_overload] = ACTIONS(2142), - [anon_sym_override] = ACTIONS(2142), - [anon_sym_final] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_function] = ACTIONS(2142), - [anon_sym_var] = ACTIONS(2142), - [aux_sym_integer_token1] = ACTIONS(2142), - [aux_sym_integer_token2] = ACTIONS(2144), - [aux_sym_float_token1] = ACTIONS(2142), - [aux_sym_float_token2] = ACTIONS(2144), - [anon_sym_true] = ACTIONS(2142), - [anon_sym_false] = ACTIONS(2142), - [aux_sym_string_token1] = ACTIONS(2144), - [aux_sym_string_token3] = ACTIONS(2144), + [783] = { + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3398), + [anon_sym_POUND] = ACTIONS(3400), + [anon_sym_package] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3400), + [anon_sym_using] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_cast] = ACTIONS(3398), + [anon_sym_DOLLARtype] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_untyped] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3398), + [anon_sym_AT] = ACTIONS(3398), + [anon_sym_AT_COLON] = ACTIONS(3400), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_catch] = ACTIONS(3398), + [anon_sym_else] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_PERCENT] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_LT_LT] = ACTIONS(3400), + [anon_sym_GT_GT] = ACTIONS(3398), + [anon_sym_GT_GT_GT] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_EQ_EQ] = ACTIONS(3400), + [anon_sym_BANG_EQ] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_LT_EQ] = ACTIONS(3400), + [anon_sym_GT] = ACTIONS(3398), + [anon_sym_GT_EQ] = ACTIONS(3400), + [anon_sym_EQ_GT] = ACTIONS(3400), + [anon_sym_QMARK_QMARK] = ACTIONS(3400), + [anon_sym_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3400), + [anon_sym_null] = ACTIONS(3398), + [anon_sym_macro] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_extern] = ACTIONS(3398), + [anon_sym_inline] = ACTIONS(3398), + [anon_sym_overload] = ACTIONS(3398), + [anon_sym_override] = ACTIONS(3398), + [anon_sym_final] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), + [anon_sym_typedef] = ACTIONS(3398), + [anon_sym_function] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [aux_sym_integer_token1] = ACTIONS(3398), + [aux_sym_integer_token2] = ACTIONS(3400), + [aux_sym_float_token1] = ACTIONS(3398), + [aux_sym_float_token2] = ACTIONS(3400), + [anon_sym_true] = ACTIONS(3398), + [anon_sym_false] = ACTIONS(3398), + [aux_sym_string_token1] = ACTIONS(3400), + [aux_sym_string_token3] = ACTIONS(3400), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(2148), - [sym_identifier] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2148), - [anon_sym_package] = ACTIONS(2146), - [anon_sym_import] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2146), - [anon_sym_throw] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_switch] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_cast] = ACTIONS(2146), - [anon_sym_DOLLARtype] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_untyped] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_this] = ACTIONS(2146), - [anon_sym_AT] = ACTIONS(2146), - [anon_sym_AT_COLON] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_catch] = ACTIONS(2146), - [anon_sym_else] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_new] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_PERCENT] = ACTIONS(2148), - [anon_sym_SLASH] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2146), - [anon_sym_LT_LT] = ACTIONS(2148), - [anon_sym_GT_GT] = ACTIONS(2146), - [anon_sym_GT_GT_GT] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_AMP_AMP] = ACTIONS(2148), - [anon_sym_PIPE_PIPE] = ACTIONS(2148), - [anon_sym_EQ_EQ] = ACTIONS(2148), - [anon_sym_BANG_EQ] = ACTIONS(2148), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_LT_EQ] = ACTIONS(2148), - [anon_sym_GT] = ACTIONS(2146), - [anon_sym_GT_EQ] = ACTIONS(2148), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_QMARK_QMARK] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2148), - [anon_sym_null] = ACTIONS(2146), - [anon_sym_macro] = ACTIONS(2146), - [anon_sym_abstract] = ACTIONS(2146), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_public] = ACTIONS(2146), - [anon_sym_private] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [anon_sym_overload] = ACTIONS(2146), - [anon_sym_override] = ACTIONS(2146), - [anon_sym_final] = ACTIONS(2146), - [anon_sym_class] = ACTIONS(2146), - [anon_sym_interface] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_typedef] = ACTIONS(2146), - [anon_sym_function] = ACTIONS(2146), - [anon_sym_var] = ACTIONS(2146), - [aux_sym_integer_token1] = ACTIONS(2146), - [aux_sym_integer_token2] = ACTIONS(2148), - [aux_sym_float_token1] = ACTIONS(2146), - [aux_sym_float_token2] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2146), - [anon_sym_false] = ACTIONS(2146), - [aux_sym_string_token1] = ACTIONS(2148), - [aux_sym_string_token3] = ACTIONS(2148), + [784] = { + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2726), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_cast] = ACTIONS(2724), + [anon_sym_DOLLARtype] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_untyped] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_AT_COLON] = ACTIONS(2726), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_catch] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_PERCENT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2724), + [anon_sym_GT_GT_GT] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_AMP_AMP] = ACTIONS(2726), + [anon_sym_PIPE_PIPE] = ACTIONS(2726), + [anon_sym_EQ_EQ] = ACTIONS(2726), + [anon_sym_BANG_EQ] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_LT_EQ] = ACTIONS(2726), + [anon_sym_GT] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2726), + [anon_sym_EQ_GT] = ACTIONS(2726), + [anon_sym_QMARK_QMARK] = ACTIONS(2726), + [anon_sym_EQ] = ACTIONS(2724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_macro] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_inline] = ACTIONS(2724), + [anon_sym_overload] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_typedef] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [aux_sym_integer_token1] = ACTIONS(2724), + [aux_sym_integer_token2] = ACTIONS(2726), + [aux_sym_float_token1] = ACTIONS(2724), + [aux_sym_float_token2] = ACTIONS(2726), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [aux_sym_string_token1] = ACTIONS(2726), + [aux_sym_string_token3] = ACTIONS(2726), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [743] = { - [ts_builtin_sym_end] = ACTIONS(2562), - [sym_identifier] = ACTIONS(2560), - [anon_sym_POUND] = ACTIONS(2562), - [anon_sym_package] = ACTIONS(2560), - [anon_sym_import] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2560), - [anon_sym_throw] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_cast] = ACTIONS(2560), - [anon_sym_DOLLARtype] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2560), - [anon_sym_return] = ACTIONS(2560), - [anon_sym_untyped] = ACTIONS(2560), - [anon_sym_break] = ACTIONS(2560), - [anon_sym_continue] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_this] = ACTIONS(2560), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_AT_COLON] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2560), - [anon_sym_catch] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2560), - [anon_sym_if] = ACTIONS(2560), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_do] = ACTIONS(2560), - [anon_sym_new] = ACTIONS(2560), - [anon_sym_TILDE] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(2560), - [anon_sym_PLUS_PLUS] = ACTIONS(2562), - [anon_sym_DASH_DASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2560), - [anon_sym_PLUS] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2562), - [anon_sym_GT_GT] = ACTIONS(2560), - [anon_sym_GT_GT_GT] = ACTIONS(2562), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_CARET] = ACTIONS(2562), - [anon_sym_AMP_AMP] = ACTIONS(2562), - [anon_sym_PIPE_PIPE] = ACTIONS(2562), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_LT_EQ] = ACTIONS(2562), - [anon_sym_GT] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2562), - [anon_sym_EQ_GT] = ACTIONS(2562), - [anon_sym_QMARK_QMARK] = ACTIONS(2562), - [anon_sym_EQ] = ACTIONS(2560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), - [anon_sym_null] = ACTIONS(2560), - [anon_sym_macro] = ACTIONS(2560), - [anon_sym_abstract] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_public] = ACTIONS(2560), - [anon_sym_private] = ACTIONS(2560), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym_inline] = ACTIONS(2560), - [anon_sym_overload] = ACTIONS(2560), - [anon_sym_override] = ACTIONS(2560), - [anon_sym_final] = ACTIONS(2560), - [anon_sym_class] = ACTIONS(2560), - [anon_sym_interface] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2560), - [anon_sym_typedef] = ACTIONS(2560), - [anon_sym_function] = ACTIONS(2560), - [anon_sym_var] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2560), - [aux_sym_integer_token2] = ACTIONS(2562), - [aux_sym_float_token1] = ACTIONS(2560), - [aux_sym_float_token2] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2560), - [anon_sym_false] = ACTIONS(2560), - [aux_sym_string_token1] = ACTIONS(2562), - [aux_sym_string_token3] = ACTIONS(2562), + [785] = { + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_identifier] = ACTIONS(3402), + [anon_sym_POUND] = ACTIONS(3404), + [anon_sym_package] = ACTIONS(3402), + [anon_sym_import] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_using] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_cast] = ACTIONS(3402), + [anon_sym_DOLLARtype] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_untyped] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_this] = ACTIONS(3402), + [anon_sym_AT] = ACTIONS(3402), + [anon_sym_AT_COLON] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_catch] = ACTIONS(3402), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_GT_GT_GT] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_LT_EQ] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_GT_EQ] = ACTIONS(3404), + [anon_sym_EQ_GT] = ACTIONS(3404), + [anon_sym_QMARK_QMARK] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3402), + [anon_sym_macro] = ACTIONS(3402), + [anon_sym_abstract] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_public] = ACTIONS(3402), + [anon_sym_private] = ACTIONS(3402), + [anon_sym_extern] = ACTIONS(3402), + [anon_sym_inline] = ACTIONS(3402), + [anon_sym_overload] = ACTIONS(3402), + [anon_sym_override] = ACTIONS(3402), + [anon_sym_final] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_typedef] = ACTIONS(3402), + [anon_sym_function] = ACTIONS(3402), + [anon_sym_var] = ACTIONS(3402), + [aux_sym_integer_token1] = ACTIONS(3402), + [aux_sym_integer_token2] = ACTIONS(3404), + [aux_sym_float_token1] = ACTIONS(3402), + [aux_sym_float_token2] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [aux_sym_string_token1] = ACTIONS(3404), + [aux_sym_string_token3] = ACTIONS(3404), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [744] = { - [ts_builtin_sym_end] = ACTIONS(2152), - [sym_identifier] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2152), - [anon_sym_package] = ACTIONS(2150), - [anon_sym_import] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2150), - [anon_sym_throw] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_cast] = ACTIONS(2150), - [anon_sym_DOLLARtype] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_untyped] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_this] = ACTIONS(2150), - [anon_sym_AT] = ACTIONS(2150), - [anon_sym_AT_COLON] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2150), - [anon_sym_catch] = ACTIONS(2150), - [anon_sym_else] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_new] = ACTIONS(2150), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_LT_LT] = ACTIONS(2152), - [anon_sym_GT_GT] = ACTIONS(2150), - [anon_sym_GT_GT_GT] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2152), - [anon_sym_PIPE_PIPE] = ACTIONS(2152), - [anon_sym_EQ_EQ] = ACTIONS(2152), - [anon_sym_BANG_EQ] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_LT_EQ] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2150), - [anon_sym_GT_EQ] = ACTIONS(2152), - [anon_sym_EQ_GT] = ACTIONS(2152), - [anon_sym_QMARK_QMARK] = ACTIONS(2152), - [anon_sym_EQ] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2152), - [anon_sym_null] = ACTIONS(2150), - [anon_sym_macro] = ACTIONS(2150), - [anon_sym_abstract] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_public] = ACTIONS(2150), - [anon_sym_private] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [anon_sym_overload] = ACTIONS(2150), - [anon_sym_override] = ACTIONS(2150), - [anon_sym_final] = ACTIONS(2150), - [anon_sym_class] = ACTIONS(2150), - [anon_sym_interface] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_function] = ACTIONS(2150), - [anon_sym_var] = ACTIONS(2150), - [aux_sym_integer_token1] = ACTIONS(2150), - [aux_sym_integer_token2] = ACTIONS(2152), - [aux_sym_float_token1] = ACTIONS(2150), - [aux_sym_float_token2] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [aux_sym_string_token1] = ACTIONS(2152), - [aux_sym_string_token3] = ACTIONS(2152), + [786] = { + [ts_builtin_sym_end] = ACTIONS(2666), + [sym_identifier] = ACTIONS(2664), + [anon_sym_POUND] = ACTIONS(2666), + [anon_sym_package] = ACTIONS(2664), + [anon_sym_import] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_using] = ACTIONS(2664), + [anon_sym_throw] = ACTIONS(2664), + [anon_sym_LPAREN] = ACTIONS(2666), + [anon_sym_switch] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_cast] = ACTIONS(2664), + [anon_sym_DOLLARtype] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2664), + [anon_sym_untyped] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2664), + [anon_sym_continue] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_this] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_AT_COLON] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2664), + [anon_sym_catch] = ACTIONS(2664), + [anon_sym_else] = ACTIONS(2664), + [anon_sym_if] = ACTIONS(2664), + [anon_sym_while] = ACTIONS(2664), + [anon_sym_do] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(2666), + [anon_sym_PERCENT] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2666), + [anon_sym_GT_GT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_AMP_AMP] = ACTIONS(2666), + [anon_sym_PIPE_PIPE] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2666), + [anon_sym_BANG_EQ] = ACTIONS(2666), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2666), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2666), + [anon_sym_EQ_GT] = ACTIONS(2666), + [anon_sym_QMARK_QMARK] = ACTIONS(2666), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2664), + [anon_sym_macro] = ACTIONS(2664), + [anon_sym_abstract] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_public] = ACTIONS(2664), + [anon_sym_private] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym_inline] = ACTIONS(2664), + [anon_sym_overload] = ACTIONS(2664), + [anon_sym_override] = ACTIONS(2664), + [anon_sym_final] = ACTIONS(2664), + [anon_sym_class] = ACTIONS(2664), + [anon_sym_interface] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_typedef] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2664), + [anon_sym_var] = ACTIONS(2664), + [aux_sym_integer_token1] = ACTIONS(2664), + [aux_sym_integer_token2] = ACTIONS(2666), + [aux_sym_float_token1] = ACTIONS(2664), + [aux_sym_float_token2] = ACTIONS(2666), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [aux_sym_string_token1] = ACTIONS(2666), + [aux_sym_string_token3] = ACTIONS(2666), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [745] = { - [ts_builtin_sym_end] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2156), - [anon_sym_package] = ACTIONS(2154), - [anon_sym_import] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2154), - [anon_sym_throw] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_switch] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_cast] = ACTIONS(2154), - [anon_sym_DOLLARtype] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2154), - [anon_sym_untyped] = ACTIONS(2154), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_this] = ACTIONS(2154), - [anon_sym_AT] = ACTIONS(2154), - [anon_sym_AT_COLON] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2154), - [anon_sym_catch] = ACTIONS(2154), - [anon_sym_else] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2154), - [anon_sym_do] = ACTIONS(2154), - [anon_sym_new] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_PERCENT] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(2156), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_GT_GT_GT] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2156), - [anon_sym_PIPE_PIPE] = ACTIONS(2156), - [anon_sym_EQ_EQ] = ACTIONS(2156), - [anon_sym_BANG_EQ] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_LT_EQ] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2156), - [anon_sym_EQ_GT] = ACTIONS(2156), - [anon_sym_QMARK_QMARK] = ACTIONS(2156), - [anon_sym_EQ] = ACTIONS(2154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2154), - [anon_sym_macro] = ACTIONS(2154), - [anon_sym_abstract] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2154), - [anon_sym_public] = ACTIONS(2154), - [anon_sym_private] = ACTIONS(2154), - [anon_sym_extern] = ACTIONS(2154), - [anon_sym_inline] = ACTIONS(2154), - [anon_sym_overload] = ACTIONS(2154), - [anon_sym_override] = ACTIONS(2154), - [anon_sym_final] = ACTIONS(2154), - [anon_sym_class] = ACTIONS(2154), - [anon_sym_interface] = ACTIONS(2154), - [anon_sym_enum] = ACTIONS(2154), - [anon_sym_typedef] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2154), - [anon_sym_var] = ACTIONS(2154), - [aux_sym_integer_token1] = ACTIONS(2154), - [aux_sym_integer_token2] = ACTIONS(2156), - [aux_sym_float_token1] = ACTIONS(2154), - [aux_sym_float_token2] = ACTIONS(2156), - [anon_sym_true] = ACTIONS(2154), - [anon_sym_false] = ACTIONS(2154), - [aux_sym_string_token1] = ACTIONS(2156), - [aux_sym_string_token3] = ACTIONS(2156), + [787] = { + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_package] = ACTIONS(2692), + [anon_sym_import] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_using] = ACTIONS(2692), + [anon_sym_throw] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_switch] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_cast] = ACTIONS(2692), + [anon_sym_DOLLARtype] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_untyped] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_this] = ACTIONS(2692), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_AT_COLON] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_catch] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_do] = ACTIONS(2692), + [anon_sym_new] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2692), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2692), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_EQ_GT] = ACTIONS(2694), + [anon_sym_QMARK_QMARK] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2694), + [anon_sym_null] = ACTIONS(2692), + [anon_sym_macro] = ACTIONS(2692), + [anon_sym_abstract] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_public] = ACTIONS(2692), + [anon_sym_private] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym_overload] = ACTIONS(2692), + [anon_sym_override] = ACTIONS(2692), + [anon_sym_final] = ACTIONS(2692), + [anon_sym_class] = ACTIONS(2692), + [anon_sym_interface] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_typedef] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2692), + [anon_sym_var] = ACTIONS(2692), + [aux_sym_integer_token1] = ACTIONS(2692), + [aux_sym_integer_token2] = ACTIONS(2694), + [aux_sym_float_token1] = ACTIONS(2692), + [aux_sym_float_token2] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [aux_sym_string_token1] = ACTIONS(2694), + [aux_sym_string_token3] = ACTIONS(2694), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [746] = { - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [anon_sym_package] = ACTIONS(2158), - [anon_sym_import] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2158), - [anon_sym_throw] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_cast] = ACTIONS(2158), - [anon_sym_DOLLARtype] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_untyped] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_this] = ACTIONS(2158), - [anon_sym_AT] = ACTIONS(2158), - [anon_sym_AT_COLON] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2158), - [anon_sym_catch] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2158), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2158), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_EQ_GT] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2158), - [anon_sym_macro] = ACTIONS(2158), - [anon_sym_abstract] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_public] = ACTIONS(2158), - [anon_sym_private] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2158), - [anon_sym_overload] = ACTIONS(2158), - [anon_sym_override] = ACTIONS(2158), - [anon_sym_final] = ACTIONS(2158), - [anon_sym_class] = ACTIONS(2158), - [anon_sym_interface] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), - [anon_sym_typedef] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2158), - [anon_sym_var] = ACTIONS(2158), - [aux_sym_integer_token1] = ACTIONS(2158), - [aux_sym_integer_token2] = ACTIONS(2160), - [aux_sym_float_token1] = ACTIONS(2158), - [aux_sym_float_token2] = ACTIONS(2160), - [anon_sym_true] = ACTIONS(2158), - [anon_sym_false] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [aux_sym_string_token3] = ACTIONS(2160), + [788] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2802), + [anon_sym_package] = ACTIONS(2800), + [anon_sym_import] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_cast] = ACTIONS(2800), + [anon_sym_DOLLARtype] = ACTIONS(2802), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_untyped] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_this] = ACTIONS(2800), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_AT_COLON] = ACTIONS(2802), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_catch] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(2802), + [anon_sym_SLASH] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_LT_LT] = ACTIONS(2802), + [anon_sym_GT_GT] = ACTIONS(2800), + [anon_sym_GT_GT_GT] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_PIPE_PIPE] = ACTIONS(2802), + [anon_sym_EQ_EQ] = ACTIONS(2802), + [anon_sym_BANG_EQ] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2800), + [anon_sym_LT_EQ] = ACTIONS(2802), + [anon_sym_GT] = ACTIONS(2800), + [anon_sym_GT_EQ] = ACTIONS(2802), + [anon_sym_EQ_GT] = ACTIONS(2802), + [anon_sym_QMARK_QMARK] = ACTIONS(2802), + [anon_sym_EQ] = ACTIONS(2800), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2802), + [anon_sym_null] = ACTIONS(2800), + [anon_sym_macro] = ACTIONS(2800), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_public] = ACTIONS(2800), + [anon_sym_private] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym_inline] = ACTIONS(2800), + [anon_sym_overload] = ACTIONS(2800), + [anon_sym_override] = ACTIONS(2800), + [anon_sym_final] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_interface] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_typedef] = ACTIONS(2800), + [anon_sym_function] = ACTIONS(2800), + [anon_sym_var] = ACTIONS(2800), + [aux_sym_integer_token1] = ACTIONS(2800), + [aux_sym_integer_token2] = ACTIONS(2802), + [aux_sym_float_token1] = ACTIONS(2800), + [aux_sym_float_token2] = ACTIONS(2802), + [anon_sym_true] = ACTIONS(2800), + [anon_sym_false] = ACTIONS(2800), + [aux_sym_string_token1] = ACTIONS(2802), + [aux_sym_string_token3] = ACTIONS(2802), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(2566), - [sym_identifier] = ACTIONS(2564), - [anon_sym_POUND] = ACTIONS(2566), - [anon_sym_package] = ACTIONS(2564), - [anon_sym_import] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_using] = ACTIONS(2564), - [anon_sym_throw] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2566), - [anon_sym_switch] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_cast] = ACTIONS(2564), - [anon_sym_DOLLARtype] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_untyped] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_this] = ACTIONS(2564), - [anon_sym_AT] = ACTIONS(2564), - [anon_sym_AT_COLON] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2564), - [anon_sym_catch] = ACTIONS(2564), - [anon_sym_else] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_do] = ACTIONS(2564), - [anon_sym_new] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2566), - [anon_sym_DASH_DASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2564), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2566), - [anon_sym_GT_GT] = ACTIONS(2564), - [anon_sym_GT_GT_GT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2564), - [anon_sym_CARET] = ACTIONS(2566), - [anon_sym_AMP_AMP] = ACTIONS(2566), - [anon_sym_PIPE_PIPE] = ACTIONS(2566), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_LT_EQ] = ACTIONS(2566), - [anon_sym_GT] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2566), - [anon_sym_EQ_GT] = ACTIONS(2566), - [anon_sym_QMARK_QMARK] = ACTIONS(2566), - [anon_sym_EQ] = ACTIONS(2564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_null] = ACTIONS(2564), - [anon_sym_macro] = ACTIONS(2564), - [anon_sym_abstract] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_public] = ACTIONS(2564), - [anon_sym_private] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_inline] = ACTIONS(2564), - [anon_sym_overload] = ACTIONS(2564), - [anon_sym_override] = ACTIONS(2564), - [anon_sym_final] = ACTIONS(2564), - [anon_sym_class] = ACTIONS(2564), - [anon_sym_interface] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_typedef] = ACTIONS(2564), - [anon_sym_function] = ACTIONS(2564), - [anon_sym_var] = ACTIONS(2564), - [aux_sym_integer_token1] = ACTIONS(2564), - [aux_sym_integer_token2] = ACTIONS(2566), - [aux_sym_float_token1] = ACTIONS(2564), - [aux_sym_float_token2] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2564), - [anon_sym_false] = ACTIONS(2564), - [aux_sym_string_token1] = ACTIONS(2566), - [aux_sym_string_token3] = ACTIONS(2566), + [789] = { + [ts_builtin_sym_end] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_package] = ACTIONS(2832), + [anon_sym_import] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2832), + [anon_sym_throw] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_cast] = ACTIONS(2832), + [anon_sym_DOLLARtype] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_untyped] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_this] = ACTIONS(2832), + [anon_sym_AT] = ACTIONS(2832), + [anon_sym_AT_COLON] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_catch] = ACTIONS(2832), + [anon_sym_else] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_PERCENT] = ACTIONS(2834), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_LT_LT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2832), + [anon_sym_GT_GT_GT] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_EQ_EQ] = ACTIONS(2834), + [anon_sym_BANG_EQ] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_LT_EQ] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2832), + [anon_sym_GT_EQ] = ACTIONS(2834), + [anon_sym_EQ_GT] = ACTIONS(2834), + [anon_sym_QMARK_QMARK] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(2832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2834), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_macro] = ACTIONS(2832), + [anon_sym_abstract] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_public] = ACTIONS(2832), + [anon_sym_private] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_inline] = ACTIONS(2832), + [anon_sym_overload] = ACTIONS(2832), + [anon_sym_override] = ACTIONS(2832), + [anon_sym_final] = ACTIONS(2832), + [anon_sym_class] = ACTIONS(2832), + [anon_sym_interface] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_typedef] = ACTIONS(2832), + [anon_sym_function] = ACTIONS(2832), + [anon_sym_var] = ACTIONS(2832), + [aux_sym_integer_token1] = ACTIONS(2832), + [aux_sym_integer_token2] = ACTIONS(2834), + [aux_sym_float_token1] = ACTIONS(2832), + [aux_sym_float_token2] = ACTIONS(2834), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [aux_sym_string_token1] = ACTIONS(2834), + [aux_sym_string_token3] = ACTIONS(2834), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [748] = { - [ts_builtin_sym_end] = ACTIONS(2570), - [sym_identifier] = ACTIONS(2568), - [anon_sym_POUND] = ACTIONS(2570), - [anon_sym_package] = ACTIONS(2568), - [anon_sym_import] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_using] = ACTIONS(2568), - [anon_sym_throw] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_switch] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_cast] = ACTIONS(2568), - [anon_sym_DOLLARtype] = ACTIONS(2570), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_untyped] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(2570), - [anon_sym_this] = ACTIONS(2568), - [anon_sym_AT] = ACTIONS(2568), - [anon_sym_AT_COLON] = ACTIONS(2570), - [anon_sym_try] = ACTIONS(2568), - [anon_sym_catch] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_do] = ACTIONS(2568), - [anon_sym_new] = ACTIONS(2568), - [anon_sym_TILDE] = ACTIONS(2570), - [anon_sym_BANG] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2568), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2570), - [anon_sym_GT_GT] = ACTIONS(2568), - [anon_sym_GT_GT_GT] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2568), - [anon_sym_CARET] = ACTIONS(2570), - [anon_sym_AMP_AMP] = ACTIONS(2570), - [anon_sym_PIPE_PIPE] = ACTIONS(2570), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_LT] = ACTIONS(2568), - [anon_sym_LT_EQ] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2570), - [anon_sym_EQ_GT] = ACTIONS(2570), - [anon_sym_QMARK_QMARK] = ACTIONS(2570), - [anon_sym_EQ] = ACTIONS(2568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2570), - [anon_sym_null] = ACTIONS(2568), - [anon_sym_macro] = ACTIONS(2568), - [anon_sym_abstract] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_public] = ACTIONS(2568), - [anon_sym_private] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_overload] = ACTIONS(2568), - [anon_sym_override] = ACTIONS(2568), - [anon_sym_final] = ACTIONS(2568), - [anon_sym_class] = ACTIONS(2568), - [anon_sym_interface] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_function] = ACTIONS(2568), - [anon_sym_var] = ACTIONS(2568), - [aux_sym_integer_token1] = ACTIONS(2568), - [aux_sym_integer_token2] = ACTIONS(2570), - [aux_sym_float_token1] = ACTIONS(2568), - [aux_sym_float_token2] = ACTIONS(2570), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [aux_sym_string_token1] = ACTIONS(2570), - [aux_sym_string_token3] = ACTIONS(2570), + [790] = { + [sym_else_clause] = STATE(444), + [sym_identifier] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_cast] = ACTIONS(2640), + [anon_sym_DOLLARtype] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_untyped] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_AT_COLON] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_LT_LT] = ACTIONS(2642), + [anon_sym_GT_GT] = ACTIONS(2640), + [anon_sym_GT_GT_GT] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_PIPE_PIPE] = ACTIONS(2642), + [anon_sym_EQ_EQ] = ACTIONS(2642), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_LT_EQ] = ACTIONS(2642), + [anon_sym_GT] = ACTIONS(2640), + [anon_sym_GT_EQ] = ACTIONS(2642), + [anon_sym_EQ_GT] = ACTIONS(2642), + [anon_sym_QMARK_QMARK] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_macro] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym_overload] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_final] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [aux_sym_integer_token1] = ACTIONS(2640), + [aux_sym_integer_token2] = ACTIONS(2642), + [aux_sym_float_token1] = ACTIONS(2640), + [aux_sym_float_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [aux_sym_string_token1] = ACTIONS(2642), + [aux_sym_string_token3] = ACTIONS(2642), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2642), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [749] = { - [ts_builtin_sym_end] = ACTIONS(2574), - [sym_identifier] = ACTIONS(2572), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_package] = ACTIONS(2572), - [anon_sym_import] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_using] = ACTIONS(2572), - [anon_sym_throw] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_switch] = ACTIONS(2572), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_cast] = ACTIONS(2572), - [anon_sym_DOLLARtype] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2572), - [anon_sym_return] = ACTIONS(2572), - [anon_sym_untyped] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_this] = ACTIONS(2572), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_AT_COLON] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2572), - [anon_sym_catch] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_while] = ACTIONS(2572), - [anon_sym_do] = ACTIONS(2572), - [anon_sym_new] = ACTIONS(2572), - [anon_sym_TILDE] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2574), - [anon_sym_DASH_DASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2574), - [anon_sym_GT_GT] = ACTIONS(2572), - [anon_sym_GT_GT_GT] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2572), - [anon_sym_CARET] = ACTIONS(2574), - [anon_sym_AMP_AMP] = ACTIONS(2574), - [anon_sym_PIPE_PIPE] = ACTIONS(2574), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2572), - [anon_sym_LT_EQ] = ACTIONS(2574), - [anon_sym_GT] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2574), - [anon_sym_EQ_GT] = ACTIONS(2574), - [anon_sym_QMARK_QMARK] = ACTIONS(2574), - [anon_sym_EQ] = ACTIONS(2572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2574), - [anon_sym_null] = ACTIONS(2572), - [anon_sym_macro] = ACTIONS(2572), - [anon_sym_abstract] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_public] = ACTIONS(2572), - [anon_sym_private] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym_inline] = ACTIONS(2572), - [anon_sym_overload] = ACTIONS(2572), - [anon_sym_override] = ACTIONS(2572), - [anon_sym_final] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2572), - [anon_sym_interface] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_typedef] = ACTIONS(2572), - [anon_sym_function] = ACTIONS(2572), - [anon_sym_var] = ACTIONS(2572), - [aux_sym_integer_token1] = ACTIONS(2572), - [aux_sym_integer_token2] = ACTIONS(2574), - [aux_sym_float_token1] = ACTIONS(2572), - [aux_sym_float_token2] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2572), - [anon_sym_false] = ACTIONS(2572), - [aux_sym_string_token1] = ACTIONS(2574), - [aux_sym_string_token3] = ACTIONS(2574), + [791] = { + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_package] = ACTIONS(2836), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_cast] = ACTIONS(2836), + [anon_sym_DOLLARtype] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_untyped] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_this] = ACTIONS(2836), + [anon_sym_AT] = ACTIONS(2836), + [anon_sym_AT_COLON] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_catch] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_PERCENT] = ACTIONS(2838), + [anon_sym_SLASH] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_LT_LT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2836), + [anon_sym_GT_GT_GT] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_PIPE_PIPE] = ACTIONS(2838), + [anon_sym_EQ_EQ] = ACTIONS(2838), + [anon_sym_BANG_EQ] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_LT_EQ] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2836), + [anon_sym_GT_EQ] = ACTIONS(2838), + [anon_sym_EQ_GT] = ACTIONS(2838), + [anon_sym_QMARK_QMARK] = ACTIONS(2838), + [anon_sym_EQ] = ACTIONS(2836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2836), + [anon_sym_macro] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_public] = ACTIONS(2836), + [anon_sym_private] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym_inline] = ACTIONS(2836), + [anon_sym_overload] = ACTIONS(2836), + [anon_sym_override] = ACTIONS(2836), + [anon_sym_final] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_interface] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_typedef] = ACTIONS(2836), + [anon_sym_function] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2836), + [aux_sym_integer_token1] = ACTIONS(2836), + [aux_sym_integer_token2] = ACTIONS(2838), + [aux_sym_float_token1] = ACTIONS(2836), + [aux_sym_float_token2] = ACTIONS(2838), + [anon_sym_true] = ACTIONS(2836), + [anon_sym_false] = ACTIONS(2836), + [aux_sym_string_token1] = ACTIONS(2838), + [aux_sym_string_token3] = ACTIONS(2838), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [750] = { - [ts_builtin_sym_end] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2576), - [anon_sym_POUND] = ACTIONS(2578), - [anon_sym_package] = ACTIONS(2576), - [anon_sym_import] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_using] = ACTIONS(2576), - [anon_sym_throw] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2578), - [anon_sym_switch] = ACTIONS(2576), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_cast] = ACTIONS(2576), - [anon_sym_DOLLARtype] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2576), - [anon_sym_return] = ACTIONS(2576), - [anon_sym_untyped] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_this] = ACTIONS(2576), - [anon_sym_AT] = ACTIONS(2576), - [anon_sym_AT_COLON] = ACTIONS(2578), - [anon_sym_try] = ACTIONS(2576), - [anon_sym_catch] = ACTIONS(2576), - [anon_sym_else] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_while] = ACTIONS(2576), - [anon_sym_do] = ACTIONS(2576), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_TILDE] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2576), - [anon_sym_PLUS_PLUS] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2576), - [anon_sym_PLUS] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2578), - [anon_sym_GT_GT] = ACTIONS(2576), - [anon_sym_GT_GT_GT] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_CARET] = ACTIONS(2578), - [anon_sym_AMP_AMP] = ACTIONS(2578), - [anon_sym_PIPE_PIPE] = ACTIONS(2578), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2576), - [anon_sym_LT_EQ] = ACTIONS(2578), - [anon_sym_GT] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2578), - [anon_sym_EQ_GT] = ACTIONS(2578), - [anon_sym_QMARK_QMARK] = ACTIONS(2578), - [anon_sym_EQ] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2578), - [anon_sym_null] = ACTIONS(2576), - [anon_sym_macro] = ACTIONS(2576), - [anon_sym_abstract] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_public] = ACTIONS(2576), - [anon_sym_private] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym_inline] = ACTIONS(2576), - [anon_sym_overload] = ACTIONS(2576), - [anon_sym_override] = ACTIONS(2576), - [anon_sym_final] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2576), - [anon_sym_interface] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_typedef] = ACTIONS(2576), - [anon_sym_function] = ACTIONS(2576), - [anon_sym_var] = ACTIONS(2576), - [aux_sym_integer_token1] = ACTIONS(2576), - [aux_sym_integer_token2] = ACTIONS(2578), - [aux_sym_float_token1] = ACTIONS(2576), - [aux_sym_float_token2] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2576), - [anon_sym_false] = ACTIONS(2576), - [aux_sym_string_token1] = ACTIONS(2578), - [aux_sym_string_token3] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), + [792] = { + [sym_else_clause] = STATE(606), + [sym_identifier] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_package] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_cast] = ACTIONS(2606), + [anon_sym_DOLLARtype] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_untyped] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_this] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_AT_COLON] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_PERCENT] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_LT_LT] = ACTIONS(2608), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_GT_GT_GT] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_AMP_AMP] = ACTIONS(2608), + [anon_sym_PIPE_PIPE] = ACTIONS(2608), + [anon_sym_EQ_EQ] = ACTIONS(2608), + [anon_sym_BANG_EQ] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_LT_EQ] = ACTIONS(2608), + [anon_sym_GT] = ACTIONS(2606), + [anon_sym_GT_EQ] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_QMARK_QMARK] = ACTIONS(2608), + [anon_sym_EQ] = ACTIONS(2606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_macro] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_inline] = ACTIONS(2606), + [anon_sym_overload] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_final] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_typedef] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [aux_sym_integer_token1] = ACTIONS(2606), + [aux_sym_integer_token2] = ACTIONS(2608), + [aux_sym_float_token1] = ACTIONS(2606), + [aux_sym_float_token2] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym_string_token1] = ACTIONS(2608), + [aux_sym_string_token3] = ACTIONS(2608), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2608), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [751] = { - [ts_builtin_sym_end] = ACTIONS(2582), - [sym_identifier] = ACTIONS(2580), - [anon_sym_POUND] = ACTIONS(2582), - [anon_sym_package] = ACTIONS(2580), - [anon_sym_import] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2580), - [anon_sym_throw] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2582), - [anon_sym_switch] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_cast] = ACTIONS(2580), - [anon_sym_DOLLARtype] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_untyped] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_this] = ACTIONS(2580), - [anon_sym_AT] = ACTIONS(2580), - [anon_sym_AT_COLON] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2580), - [anon_sym_catch] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_do] = ACTIONS(2580), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_TILDE] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_PERCENT] = ACTIONS(2582), - [anon_sym_SLASH] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2582), - [anon_sym_GT_GT] = ACTIONS(2580), - [anon_sym_GT_GT_GT] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2580), - [anon_sym_CARET] = ACTIONS(2582), - [anon_sym_AMP_AMP] = ACTIONS(2582), - [anon_sym_PIPE_PIPE] = ACTIONS(2582), - [anon_sym_EQ_EQ] = ACTIONS(2582), - [anon_sym_BANG_EQ] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2580), - [anon_sym_LT_EQ] = ACTIONS(2582), - [anon_sym_GT] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2582), - [anon_sym_EQ_GT] = ACTIONS(2582), - [anon_sym_QMARK_QMARK] = ACTIONS(2582), - [anon_sym_EQ] = ACTIONS(2580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2582), - [anon_sym_null] = ACTIONS(2580), - [anon_sym_macro] = ACTIONS(2580), - [anon_sym_abstract] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_public] = ACTIONS(2580), - [anon_sym_private] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym_inline] = ACTIONS(2580), - [anon_sym_overload] = ACTIONS(2580), - [anon_sym_override] = ACTIONS(2580), - [anon_sym_final] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2580), - [anon_sym_interface] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_typedef] = ACTIONS(2580), - [anon_sym_function] = ACTIONS(2580), - [anon_sym_var] = ACTIONS(2580), - [aux_sym_integer_token1] = ACTIONS(2580), - [aux_sym_integer_token2] = ACTIONS(2582), - [aux_sym_float_token1] = ACTIONS(2580), - [aux_sym_float_token2] = ACTIONS(2582), - [anon_sym_true] = ACTIONS(2580), - [anon_sym_false] = ACTIONS(2580), - [aux_sym_string_token1] = ACTIONS(2582), - [aux_sym_string_token3] = ACTIONS(2582), + [793] = { + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2698), + [anon_sym_package] = ACTIONS(2696), + [anon_sym_import] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_using] = ACTIONS(2696), + [anon_sym_throw] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_switch] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_cast] = ACTIONS(2696), + [anon_sym_DOLLARtype] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_untyped] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_this] = ACTIONS(2696), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_AT_COLON] = ACTIONS(2698), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_catch] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_do] = ACTIONS(2696), + [anon_sym_new] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_PERCENT] = ACTIONS(2698), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_LT_LT] = ACTIONS(2698), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_GT_GT_GT] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(2698), + [anon_sym_PIPE_PIPE] = ACTIONS(2698), + [anon_sym_EQ_EQ] = ACTIONS(2698), + [anon_sym_BANG_EQ] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2698), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_GT_EQ] = ACTIONS(2698), + [anon_sym_EQ_GT] = ACTIONS(2698), + [anon_sym_QMARK_QMARK] = ACTIONS(2698), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2698), + [anon_sym_null] = ACTIONS(2696), + [anon_sym_macro] = ACTIONS(2696), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym_inline] = ACTIONS(2696), + [anon_sym_overload] = ACTIONS(2696), + [anon_sym_override] = ACTIONS(2696), + [anon_sym_final] = ACTIONS(2696), + [anon_sym_class] = ACTIONS(2696), + [anon_sym_interface] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_typedef] = ACTIONS(2696), + [anon_sym_function] = ACTIONS(2696), + [anon_sym_var] = ACTIONS(2696), + [aux_sym_integer_token1] = ACTIONS(2696), + [aux_sym_integer_token2] = ACTIONS(2698), + [aux_sym_float_token1] = ACTIONS(2696), + [aux_sym_float_token2] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [aux_sym_string_token1] = ACTIONS(2698), + [aux_sym_string_token3] = ACTIONS(2698), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [752] = { - [ts_builtin_sym_end] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2584), - [anon_sym_POUND] = ACTIONS(2586), - [anon_sym_package] = ACTIONS(2584), - [anon_sym_import] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2584), - [anon_sym_throw] = ACTIONS(2584), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_switch] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_cast] = ACTIONS(2584), - [anon_sym_DOLLARtype] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_untyped] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_this] = ACTIONS(2584), - [anon_sym_AT] = ACTIONS(2584), - [anon_sym_AT_COLON] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2584), - [anon_sym_catch] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_do] = ACTIONS(2584), - [anon_sym_new] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [anon_sym_PERCENT] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(2584), - [anon_sym_LT_LT] = ACTIONS(2586), - [anon_sym_GT_GT] = ACTIONS(2584), - [anon_sym_GT_GT_GT] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_CARET] = ACTIONS(2586), - [anon_sym_AMP_AMP] = ACTIONS(2586), - [anon_sym_PIPE_PIPE] = ACTIONS(2586), - [anon_sym_EQ_EQ] = ACTIONS(2586), - [anon_sym_BANG_EQ] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_LT_EQ] = ACTIONS(2586), - [anon_sym_GT] = ACTIONS(2584), - [anon_sym_GT_EQ] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(2586), - [anon_sym_QMARK_QMARK] = ACTIONS(2586), - [anon_sym_EQ] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2586), - [anon_sym_null] = ACTIONS(2584), - [anon_sym_macro] = ACTIONS(2584), - [anon_sym_abstract] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_public] = ACTIONS(2584), - [anon_sym_private] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym_inline] = ACTIONS(2584), - [anon_sym_overload] = ACTIONS(2584), - [anon_sym_override] = ACTIONS(2584), - [anon_sym_final] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2584), - [anon_sym_interface] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_typedef] = ACTIONS(2584), - [anon_sym_function] = ACTIONS(2584), - [anon_sym_var] = ACTIONS(2584), - [aux_sym_integer_token1] = ACTIONS(2584), - [aux_sym_integer_token2] = ACTIONS(2586), - [aux_sym_float_token1] = ACTIONS(2584), - [aux_sym_float_token2] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2584), - [anon_sym_false] = ACTIONS(2584), - [aux_sym_string_token1] = ACTIONS(2586), - [aux_sym_string_token3] = ACTIONS(2586), + [794] = { + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_package] = ACTIONS(2840), + [anon_sym_import] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_cast] = ACTIONS(2840), + [anon_sym_DOLLARtype] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_untyped] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_this] = ACTIONS(2840), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_AT_COLON] = ACTIONS(2842), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_catch] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2842), + [anon_sym_SLASH] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_LT_LT] = ACTIONS(2842), + [anon_sym_GT_GT] = ACTIONS(2840), + [anon_sym_GT_GT_GT] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_PIPE_PIPE] = ACTIONS(2842), + [anon_sym_EQ_EQ] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2842), + [anon_sym_EQ_GT] = ACTIONS(2842), + [anon_sym_QMARK_QMARK] = ACTIONS(2842), + [anon_sym_EQ] = ACTIONS(2840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2842), + [anon_sym_null] = ACTIONS(2840), + [anon_sym_macro] = ACTIONS(2840), + [anon_sym_abstract] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_public] = ACTIONS(2840), + [anon_sym_private] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym_inline] = ACTIONS(2840), + [anon_sym_overload] = ACTIONS(2840), + [anon_sym_override] = ACTIONS(2840), + [anon_sym_final] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_interface] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_typedef] = ACTIONS(2840), + [anon_sym_function] = ACTIONS(2840), + [anon_sym_var] = ACTIONS(2840), + [aux_sym_integer_token1] = ACTIONS(2840), + [aux_sym_integer_token2] = ACTIONS(2842), + [aux_sym_float_token1] = ACTIONS(2840), + [aux_sym_float_token2] = ACTIONS(2842), + [anon_sym_true] = ACTIONS(2840), + [anon_sym_false] = ACTIONS(2840), + [aux_sym_string_token1] = ACTIONS(2842), + [aux_sym_string_token3] = ACTIONS(2842), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [753] = { - [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_STAR] = ACTIONS(2278), - [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_for] = ACTIONS(2276), - [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_try] = ACTIONS(2276), - [anon_sym_catch] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [795] = { + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2734), + [anon_sym_package] = ACTIONS(2732), + [anon_sym_import] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_using] = ACTIONS(2732), + [anon_sym_throw] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_cast] = ACTIONS(2732), + [anon_sym_DOLLARtype] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_untyped] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_this] = ACTIONS(2732), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_AT_COLON] = ACTIONS(2734), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_catch] = ACTIONS(2732), + [anon_sym_else] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PERCENT] = ACTIONS(2734), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_LT_LT] = ACTIONS(2734), + [anon_sym_GT_GT] = ACTIONS(2732), + [anon_sym_GT_GT_GT] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP_AMP] = ACTIONS(2734), + [anon_sym_PIPE_PIPE] = ACTIONS(2734), + [anon_sym_EQ_EQ] = ACTIONS(2734), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_LT_EQ] = ACTIONS(2734), + [anon_sym_GT] = ACTIONS(2732), + [anon_sym_GT_EQ] = ACTIONS(2734), + [anon_sym_EQ_GT] = ACTIONS(2734), + [anon_sym_QMARK_QMARK] = ACTIONS(2734), + [anon_sym_EQ] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_macro] = ACTIONS(2732), + [anon_sym_abstract] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_public] = ACTIONS(2732), + [anon_sym_private] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym_inline] = ACTIONS(2732), + [anon_sym_overload] = ACTIONS(2732), + [anon_sym_override] = ACTIONS(2732), + [anon_sym_final] = ACTIONS(2732), + [anon_sym_class] = ACTIONS(2732), + [anon_sym_interface] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_typedef] = ACTIONS(2732), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_var] = ACTIONS(2732), + [aux_sym_integer_token1] = ACTIONS(2732), + [aux_sym_integer_token2] = ACTIONS(2734), + [aux_sym_float_token1] = ACTIONS(2732), + [aux_sym_float_token2] = ACTIONS(2734), + [anon_sym_true] = ACTIONS(2732), + [anon_sym_false] = ACTIONS(2732), + [aux_sym_string_token1] = ACTIONS(2734), + [aux_sym_string_token3] = ACTIONS(2734), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2588), - [anon_sym_POUND] = ACTIONS(2590), - [anon_sym_package] = ACTIONS(2588), - [anon_sym_import] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_cast] = ACTIONS(2588), - [anon_sym_DOLLARtype] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_untyped] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_this] = ACTIONS(2588), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_AT_COLON] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PERCENT] = ACTIONS(2590), - [anon_sym_SLASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_LT_LT] = ACTIONS(2590), - [anon_sym_GT_GT] = ACTIONS(2588), - [anon_sym_GT_GT_GT] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_CARET] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_PIPE_PIPE] = ACTIONS(2590), - [anon_sym_EQ_EQ] = ACTIONS(2590), - [anon_sym_BANG_EQ] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_LT_EQ] = ACTIONS(2590), - [anon_sym_GT] = ACTIONS(2588), - [anon_sym_GT_EQ] = ACTIONS(2590), - [anon_sym_EQ_GT] = ACTIONS(2590), - [anon_sym_QMARK_QMARK] = ACTIONS(2590), - [anon_sym_EQ] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2590), - [anon_sym_null] = ACTIONS(2588), - [anon_sym_macro] = ACTIONS(2588), - [anon_sym_abstract] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym_overload] = ACTIONS(2588), - [anon_sym_override] = ACTIONS(2588), - [anon_sym_final] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_interface] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_function] = ACTIONS(2588), - [anon_sym_var] = ACTIONS(2588), - [aux_sym_integer_token1] = ACTIONS(2588), - [aux_sym_integer_token2] = ACTIONS(2590), - [aux_sym_float_token1] = ACTIONS(2588), - [aux_sym_float_token2] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2588), - [anon_sym_false] = ACTIONS(2588), - [aux_sym_string_token1] = ACTIONS(2590), - [aux_sym_string_token3] = ACTIONS(2590), + [796] = { + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2738), + [anon_sym_package] = ACTIONS(2736), + [anon_sym_import] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_using] = ACTIONS(2736), + [anon_sym_throw] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_cast] = ACTIONS(2736), + [anon_sym_DOLLARtype] = ACTIONS(2738), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_untyped] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_this] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_AT_COLON] = ACTIONS(2738), + [anon_sym_try] = ACTIONS(2736), + [anon_sym_catch] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_new] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_PERCENT] = ACTIONS(2738), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2738), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP_AMP] = ACTIONS(2738), + [anon_sym_PIPE_PIPE] = ACTIONS(2738), + [anon_sym_EQ_EQ] = ACTIONS(2738), + [anon_sym_BANG_EQ] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2738), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2738), + [anon_sym_EQ_GT] = ACTIONS(2738), + [anon_sym_QMARK_QMARK] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(2736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2738), + [anon_sym_null] = ACTIONS(2736), + [anon_sym_macro] = ACTIONS(2736), + [anon_sym_abstract] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_public] = ACTIONS(2736), + [anon_sym_private] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym_overload] = ACTIONS(2736), + [anon_sym_override] = ACTIONS(2736), + [anon_sym_final] = ACTIONS(2736), + [anon_sym_class] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(2736), + [anon_sym_var] = ACTIONS(2736), + [aux_sym_integer_token1] = ACTIONS(2736), + [aux_sym_integer_token2] = ACTIONS(2738), + [aux_sym_float_token1] = ACTIONS(2736), + [aux_sym_float_token2] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2736), + [anon_sym_false] = ACTIONS(2736), + [aux_sym_string_token1] = ACTIONS(2738), + [aux_sym_string_token3] = ACTIONS(2738), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [755] = { - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2164), - [anon_sym_package] = ACTIONS(2162), - [anon_sym_import] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2162), - [anon_sym_throw] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_switch] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_cast] = ACTIONS(2162), - [anon_sym_DOLLARtype] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_untyped] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_this] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_AT_COLON] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2162), - [anon_sym_catch] = ACTIONS(2162), - [anon_sym_else] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_do] = ACTIONS(2162), - [anon_sym_new] = ACTIONS(2162), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_EQ_GT] = ACTIONS(2164), - [anon_sym_QMARK_QMARK] = ACTIONS(2164), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2164), - [anon_sym_null] = ACTIONS(2162), - [anon_sym_macro] = ACTIONS(2162), - [anon_sym_abstract] = ACTIONS(2162), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_public] = ACTIONS(2162), - [anon_sym_private] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2162), - [anon_sym_inline] = ACTIONS(2162), - [anon_sym_overload] = ACTIONS(2162), - [anon_sym_override] = ACTIONS(2162), - [anon_sym_final] = ACTIONS(2162), - [anon_sym_class] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_typedef] = ACTIONS(2162), - [anon_sym_function] = ACTIONS(2162), - [anon_sym_var] = ACTIONS(2162), - [aux_sym_integer_token1] = ACTIONS(2162), - [aux_sym_integer_token2] = ACTIONS(2164), - [aux_sym_float_token1] = ACTIONS(2162), - [aux_sym_float_token2] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2162), - [anon_sym_false] = ACTIONS(2162), - [aux_sym_string_token1] = ACTIONS(2164), - [aux_sym_string_token3] = ACTIONS(2164), + [797] = { + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2670), + [anon_sym_package] = ACTIONS(2668), + [anon_sym_import] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_using] = ACTIONS(2668), + [anon_sym_throw] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_switch] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_cast] = ACTIONS(2668), + [anon_sym_DOLLARtype] = ACTIONS(2670), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_untyped] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_this] = ACTIONS(2668), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_AT_COLON] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2668), + [anon_sym_catch] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_do] = ACTIONS(2668), + [anon_sym_new] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_PLUS_PLUS] = ACTIONS(2670), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_PERCENT] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2668), + [anon_sym_PLUS] = ACTIONS(2668), + [anon_sym_LT_LT] = ACTIONS(2670), + [anon_sym_GT_GT] = ACTIONS(2668), + [anon_sym_GT_GT_GT] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_CARET] = ACTIONS(2670), + [anon_sym_AMP_AMP] = ACTIONS(2670), + [anon_sym_PIPE_PIPE] = ACTIONS(2670), + [anon_sym_EQ_EQ] = ACTIONS(2670), + [anon_sym_BANG_EQ] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_LT_EQ] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2668), + [anon_sym_GT_EQ] = ACTIONS(2670), + [anon_sym_EQ_GT] = ACTIONS(2670), + [anon_sym_QMARK_QMARK] = ACTIONS(2670), + [anon_sym_EQ] = ACTIONS(2668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), + [anon_sym_null] = ACTIONS(2668), + [anon_sym_macro] = ACTIONS(2668), + [anon_sym_abstract] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_public] = ACTIONS(2668), + [anon_sym_private] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym_inline] = ACTIONS(2668), + [anon_sym_overload] = ACTIONS(2668), + [anon_sym_override] = ACTIONS(2668), + [anon_sym_final] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2668), + [anon_sym_interface] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_typedef] = ACTIONS(2668), + [anon_sym_function] = ACTIONS(2668), + [anon_sym_var] = ACTIONS(2668), + [aux_sym_integer_token1] = ACTIONS(2668), + [aux_sym_integer_token2] = ACTIONS(2670), + [aux_sym_float_token1] = ACTIONS(2668), + [aux_sym_float_token2] = ACTIONS(2670), + [anon_sym_true] = ACTIONS(2668), + [anon_sym_false] = ACTIONS(2668), + [aux_sym_string_token1] = ACTIONS(2670), + [aux_sym_string_token3] = ACTIONS(2670), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [756] = { - [ts_builtin_sym_end] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2168), - [anon_sym_package] = ACTIONS(2166), - [anon_sym_import] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2166), - [anon_sym_throw] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_cast] = ACTIONS(2166), - [anon_sym_DOLLARtype] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_untyped] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_this] = ACTIONS(2166), - [anon_sym_AT] = ACTIONS(2166), - [anon_sym_AT_COLON] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2166), - [anon_sym_catch] = ACTIONS(2166), - [anon_sym_else] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2168), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2168), - [anon_sym_PIPE_PIPE] = ACTIONS(2168), - [anon_sym_EQ_EQ] = ACTIONS(2168), - [anon_sym_BANG_EQ] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_LT_EQ] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2168), - [anon_sym_EQ_GT] = ACTIONS(2168), - [anon_sym_QMARK_QMARK] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2168), - [anon_sym_null] = ACTIONS(2166), - [anon_sym_macro] = ACTIONS(2166), - [anon_sym_abstract] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_public] = ACTIONS(2166), - [anon_sym_private] = ACTIONS(2166), - [anon_sym_extern] = ACTIONS(2166), - [anon_sym_inline] = ACTIONS(2166), - [anon_sym_overload] = ACTIONS(2166), - [anon_sym_override] = ACTIONS(2166), - [anon_sym_final] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [anon_sym_typedef] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_var] = ACTIONS(2166), - [aux_sym_integer_token1] = ACTIONS(2166), - [aux_sym_integer_token2] = ACTIONS(2168), - [aux_sym_float_token1] = ACTIONS(2166), - [aux_sym_float_token2] = ACTIONS(2168), - [anon_sym_true] = ACTIONS(2166), - [anon_sym_false] = ACTIONS(2166), - [aux_sym_string_token1] = ACTIONS(2168), - [aux_sym_string_token3] = ACTIONS(2168), + [798] = { + [ts_builtin_sym_end] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3284), + [anon_sym_POUND] = ACTIONS(3286), + [anon_sym_package] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_cast] = ACTIONS(3284), + [anon_sym_DOLLARtype] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_untyped] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_AT_COLON] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_catch] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_LT_LT] = ACTIONS(3286), + [anon_sym_GT_GT] = ACTIONS(3284), + [anon_sym_GT_GT_GT] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3284), + [anon_sym_PIPE] = ACTIONS(3284), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_EQ_GT] = ACTIONS(3286), + [anon_sym_QMARK_QMARK] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(3284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_macro] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_extern] = ACTIONS(3284), + [anon_sym_inline] = ACTIONS(3284), + [anon_sym_overload] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_final] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [aux_sym_integer_token1] = ACTIONS(3284), + [aux_sym_integer_token2] = ACTIONS(3286), + [aux_sym_float_token1] = ACTIONS(3284), + [aux_sym_float_token2] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [aux_sym_string_token1] = ACTIONS(3286), + [aux_sym_string_token3] = ACTIONS(3286), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(2172), - [sym_identifier] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_package] = ACTIONS(2170), - [anon_sym_import] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2170), - [anon_sym_throw] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_switch] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_cast] = ACTIONS(2170), - [anon_sym_DOLLARtype] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_untyped] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_this] = ACTIONS(2170), - [anon_sym_AT] = ACTIONS(2170), - [anon_sym_AT_COLON] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2170), - [anon_sym_catch] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2170), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [anon_sym_PERCENT] = ACTIONS(2172), - [anon_sym_SLASH] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2170), - [anon_sym_LT_LT] = ACTIONS(2172), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_GT_GT_GT] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(2172), - [anon_sym_PIPE_PIPE] = ACTIONS(2172), - [anon_sym_EQ_EQ] = ACTIONS(2172), - [anon_sym_BANG_EQ] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_LT_EQ] = ACTIONS(2172), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_GT_EQ] = ACTIONS(2172), - [anon_sym_EQ_GT] = ACTIONS(2172), - [anon_sym_QMARK_QMARK] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2170), - [anon_sym_macro] = ACTIONS(2170), - [anon_sym_abstract] = ACTIONS(2170), - [anon_sym_static] = ACTIONS(2170), - [anon_sym_public] = ACTIONS(2170), - [anon_sym_private] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym_inline] = ACTIONS(2170), - [anon_sym_overload] = ACTIONS(2170), - [anon_sym_override] = ACTIONS(2170), - [anon_sym_final] = ACTIONS(2170), - [anon_sym_class] = ACTIONS(2170), - [anon_sym_interface] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_typedef] = ACTIONS(2170), - [anon_sym_function] = ACTIONS(2170), - [anon_sym_var] = ACTIONS(2170), - [aux_sym_integer_token1] = ACTIONS(2170), - [aux_sym_integer_token2] = ACTIONS(2172), - [aux_sym_float_token1] = ACTIONS(2170), - [aux_sym_float_token2] = ACTIONS(2172), - [anon_sym_true] = ACTIONS(2170), - [anon_sym_false] = ACTIONS(2170), - [aux_sym_string_token1] = ACTIONS(2172), - [aux_sym_string_token3] = ACTIONS(2172), + [799] = { + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2674), + [anon_sym_package] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_using] = ACTIONS(2672), + [anon_sym_throw] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_cast] = ACTIONS(2672), + [anon_sym_DOLLARtype] = ACTIONS(2674), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_untyped] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_this] = ACTIONS(2672), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_AT_COLON] = ACTIONS(2674), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_catch] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2674), + [anon_sym_DASH_DASH] = ACTIONS(2674), + [anon_sym_PERCENT] = ACTIONS(2674), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_GT_GT_GT] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_CARET] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_BANG_EQ] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_LT_EQ] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2674), + [anon_sym_EQ_GT] = ACTIONS(2674), + [anon_sym_QMARK_QMARK] = ACTIONS(2674), + [anon_sym_EQ] = ACTIONS(2672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_macro] = ACTIONS(2672), + [anon_sym_abstract] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_public] = ACTIONS(2672), + [anon_sym_private] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym_overload] = ACTIONS(2672), + [anon_sym_override] = ACTIONS(2672), + [anon_sym_final] = ACTIONS(2672), + [anon_sym_class] = ACTIONS(2672), + [anon_sym_interface] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_typedef] = ACTIONS(2672), + [anon_sym_function] = ACTIONS(2672), + [anon_sym_var] = ACTIONS(2672), + [aux_sym_integer_token1] = ACTIONS(2672), + [aux_sym_integer_token2] = ACTIONS(2674), + [aux_sym_float_token1] = ACTIONS(2672), + [aux_sym_float_token2] = ACTIONS(2674), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [aux_sym_string_token1] = ACTIONS(2674), + [aux_sym_string_token3] = ACTIONS(2674), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(2594), - [sym_identifier] = ACTIONS(2592), - [anon_sym_POUND] = ACTIONS(2594), - [anon_sym_package] = ACTIONS(2592), - [anon_sym_import] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2592), - [anon_sym_throw] = ACTIONS(2592), - [anon_sym_LPAREN] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_cast] = ACTIONS(2592), - [anon_sym_DOLLARtype] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_untyped] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_this] = ACTIONS(2592), - [anon_sym_AT] = ACTIONS(2592), - [anon_sym_AT_COLON] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2592), - [anon_sym_catch] = ACTIONS(2592), - [anon_sym_else] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_do] = ACTIONS(2592), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2592), - [anon_sym_PLUS_PLUS] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2594), - [anon_sym_PERCENT] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2592), - [anon_sym_PLUS] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2592), - [anon_sym_GT_GT_GT] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2592), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2594), - [anon_sym_BANG_EQ] = ACTIONS(2594), - [anon_sym_LT] = ACTIONS(2592), - [anon_sym_LT_EQ] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2594), - [anon_sym_EQ_GT] = ACTIONS(2594), - [anon_sym_QMARK_QMARK] = ACTIONS(2594), - [anon_sym_EQ] = ACTIONS(2592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2594), - [anon_sym_null] = ACTIONS(2592), - [anon_sym_macro] = ACTIONS(2592), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_public] = ACTIONS(2592), - [anon_sym_private] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_inline] = ACTIONS(2592), - [anon_sym_overload] = ACTIONS(2592), - [anon_sym_override] = ACTIONS(2592), - [anon_sym_final] = ACTIONS(2592), - [anon_sym_class] = ACTIONS(2592), - [anon_sym_interface] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [anon_sym_typedef] = ACTIONS(2592), - [anon_sym_function] = ACTIONS(2592), - [anon_sym_var] = ACTIONS(2592), - [aux_sym_integer_token1] = ACTIONS(2592), - [aux_sym_integer_token2] = ACTIONS(2594), - [aux_sym_float_token1] = ACTIONS(2592), - [aux_sym_float_token2] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [aux_sym_string_token1] = ACTIONS(2594), - [aux_sym_string_token3] = ACTIONS(2594), + [800] = { + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3406), + [anon_sym_POUND] = ACTIONS(3408), + [anon_sym_package] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_cast] = ACTIONS(3406), + [anon_sym_DOLLARtype] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_untyped] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_this] = ACTIONS(3406), + [anon_sym_AT] = ACTIONS(3406), + [anon_sym_AT_COLON] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_catch] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PERCENT] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_LT_LT] = ACTIONS(3408), + [anon_sym_GT_GT] = ACTIONS(3406), + [anon_sym_GT_GT_GT] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_PIPE_PIPE] = ACTIONS(3408), + [anon_sym_EQ_EQ] = ACTIONS(3408), + [anon_sym_BANG_EQ] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_LT_EQ] = ACTIONS(3408), + [anon_sym_GT] = ACTIONS(3406), + [anon_sym_GT_EQ] = ACTIONS(3408), + [anon_sym_EQ_GT] = ACTIONS(3408), + [anon_sym_QMARK_QMARK] = ACTIONS(3408), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3406), + [anon_sym_macro] = ACTIONS(3406), + [anon_sym_abstract] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_public] = ACTIONS(3406), + [anon_sym_private] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym_overload] = ACTIONS(3406), + [anon_sym_override] = ACTIONS(3406), + [anon_sym_final] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3406), + [anon_sym_var] = ACTIONS(3406), + [aux_sym_integer_token1] = ACTIONS(3406), + [aux_sym_integer_token2] = ACTIONS(3408), + [aux_sym_float_token1] = ACTIONS(3406), + [aux_sym_float_token2] = ACTIONS(3408), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym_string_token1] = ACTIONS(3408), + [aux_sym_string_token3] = ACTIONS(3408), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(2176), - [anon_sym_package] = ACTIONS(2174), - [anon_sym_import] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2174), - [anon_sym_throw] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_cast] = ACTIONS(2174), - [anon_sym_DOLLARtype] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_untyped] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_this] = ACTIONS(2174), - [anon_sym_AT] = ACTIONS(2174), - [anon_sym_AT_COLON] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2174), - [anon_sym_catch] = ACTIONS(2174), - [anon_sym_else] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_new] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_LT_LT] = ACTIONS(2176), - [anon_sym_GT_GT] = ACTIONS(2174), - [anon_sym_GT_GT_GT] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2176), - [anon_sym_PIPE_PIPE] = ACTIONS(2176), - [anon_sym_EQ_EQ] = ACTIONS(2176), - [anon_sym_BANG_EQ] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_LT_EQ] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2174), - [anon_sym_GT_EQ] = ACTIONS(2176), - [anon_sym_EQ_GT] = ACTIONS(2176), - [anon_sym_QMARK_QMARK] = ACTIONS(2176), - [anon_sym_EQ] = ACTIONS(2174), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2176), - [anon_sym_null] = ACTIONS(2174), - [anon_sym_macro] = ACTIONS(2174), - [anon_sym_abstract] = ACTIONS(2174), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_public] = ACTIONS(2174), - [anon_sym_private] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [anon_sym_overload] = ACTIONS(2174), - [anon_sym_override] = ACTIONS(2174), - [anon_sym_final] = ACTIONS(2174), - [anon_sym_class] = ACTIONS(2174), - [anon_sym_interface] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_function] = ACTIONS(2174), - [anon_sym_var] = ACTIONS(2174), - [aux_sym_integer_token1] = ACTIONS(2174), - [aux_sym_integer_token2] = ACTIONS(2176), - [aux_sym_float_token1] = ACTIONS(2174), - [aux_sym_float_token2] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [aux_sym_string_token1] = ACTIONS(2176), - [aux_sym_string_token3] = ACTIONS(2176), + [801] = { + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2678), + [anon_sym_package] = ACTIONS(2676), + [anon_sym_import] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_using] = ACTIONS(2676), + [anon_sym_throw] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_switch] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_cast] = ACTIONS(2676), + [anon_sym_DOLLARtype] = ACTIONS(2678), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_untyped] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_this] = ACTIONS(2676), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_AT_COLON] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2676), + [anon_sym_catch] = ACTIONS(2676), + [anon_sym_else] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_do] = ACTIONS(2676), + [anon_sym_new] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_PERCENT] = ACTIONS(2678), + [anon_sym_SLASH] = ACTIONS(2676), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_LT_LT] = ACTIONS(2678), + [anon_sym_GT_GT] = ACTIONS(2676), + [anon_sym_GT_GT_GT] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_CARET] = ACTIONS(2678), + [anon_sym_AMP_AMP] = ACTIONS(2678), + [anon_sym_PIPE_PIPE] = ACTIONS(2678), + [anon_sym_EQ_EQ] = ACTIONS(2678), + [anon_sym_BANG_EQ] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_LT_EQ] = ACTIONS(2678), + [anon_sym_GT] = ACTIONS(2676), + [anon_sym_GT_EQ] = ACTIONS(2678), + [anon_sym_EQ_GT] = ACTIONS(2678), + [anon_sym_QMARK_QMARK] = ACTIONS(2678), + [anon_sym_EQ] = ACTIONS(2676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), + [anon_sym_null] = ACTIONS(2676), + [anon_sym_macro] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_public] = ACTIONS(2676), + [anon_sym_private] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym_overload] = ACTIONS(2676), + [anon_sym_override] = ACTIONS(2676), + [anon_sym_final] = ACTIONS(2676), + [anon_sym_class] = ACTIONS(2676), + [anon_sym_interface] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_typedef] = ACTIONS(2676), + [anon_sym_function] = ACTIONS(2676), + [anon_sym_var] = ACTIONS(2676), + [aux_sym_integer_token1] = ACTIONS(2676), + [aux_sym_integer_token2] = ACTIONS(2678), + [aux_sym_float_token1] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_true] = ACTIONS(2676), + [anon_sym_false] = ACTIONS(2676), + [aux_sym_string_token1] = ACTIONS(2678), + [aux_sym_string_token3] = ACTIONS(2678), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(2598), - [sym_identifier] = ACTIONS(2596), - [anon_sym_POUND] = ACTIONS(2598), - [anon_sym_package] = ACTIONS(2596), - [anon_sym_import] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_using] = ACTIONS(2596), - [anon_sym_throw] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_switch] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_cast] = ACTIONS(2596), - [anon_sym_DOLLARtype] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_untyped] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_this] = ACTIONS(2596), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_AT_COLON] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_catch] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_PERCENT] = ACTIONS(2598), - [anon_sym_SLASH] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2596), - [anon_sym_LT_LT] = ACTIONS(2598), - [anon_sym_GT_GT] = ACTIONS(2596), - [anon_sym_GT_GT_GT] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_CARET] = ACTIONS(2598), - [anon_sym_AMP_AMP] = ACTIONS(2598), - [anon_sym_PIPE_PIPE] = ACTIONS(2598), - [anon_sym_EQ_EQ] = ACTIONS(2598), - [anon_sym_BANG_EQ] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_LT_EQ] = ACTIONS(2598), - [anon_sym_GT] = ACTIONS(2596), - [anon_sym_GT_EQ] = ACTIONS(2598), - [anon_sym_EQ_GT] = ACTIONS(2598), - [anon_sym_QMARK_QMARK] = ACTIONS(2598), - [anon_sym_EQ] = ACTIONS(2596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2598), - [anon_sym_null] = ACTIONS(2596), - [anon_sym_macro] = ACTIONS(2596), - [anon_sym_abstract] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_public] = ACTIONS(2596), - [anon_sym_private] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym_inline] = ACTIONS(2596), - [anon_sym_overload] = ACTIONS(2596), - [anon_sym_override] = ACTIONS(2596), - [anon_sym_final] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2596), - [anon_sym_interface] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_typedef] = ACTIONS(2596), - [anon_sym_function] = ACTIONS(2596), - [anon_sym_var] = ACTIONS(2596), - [aux_sym_integer_token1] = ACTIONS(2596), - [aux_sym_integer_token2] = ACTIONS(2598), - [aux_sym_float_token1] = ACTIONS(2596), - [aux_sym_float_token2] = ACTIONS(2598), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [aux_sym_string_token1] = ACTIONS(2598), - [aux_sym_string_token3] = ACTIONS(2598), + [802] = { + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2742), + [anon_sym_package] = ACTIONS(2740), + [anon_sym_import] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_using] = ACTIONS(2740), + [anon_sym_throw] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_cast] = ACTIONS(2740), + [anon_sym_DOLLARtype] = ACTIONS(2742), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_untyped] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_this] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_AT_COLON] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2740), + [anon_sym_catch] = ACTIONS(2740), + [anon_sym_else] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_new] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2742), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_EQ_EQ] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2742), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2742), + [anon_sym_EQ_GT] = ACTIONS(2742), + [anon_sym_QMARK_QMARK] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2742), + [anon_sym_null] = ACTIONS(2740), + [anon_sym_macro] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_public] = ACTIONS(2740), + [anon_sym_private] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym_inline] = ACTIONS(2740), + [anon_sym_overload] = ACTIONS(2740), + [anon_sym_override] = ACTIONS(2740), + [anon_sym_final] = ACTIONS(2740), + [anon_sym_class] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_typedef] = ACTIONS(2740), + [anon_sym_function] = ACTIONS(2740), + [anon_sym_var] = ACTIONS(2740), + [aux_sym_integer_token1] = ACTIONS(2740), + [aux_sym_integer_token2] = ACTIONS(2742), + [aux_sym_float_token1] = ACTIONS(2740), + [aux_sym_float_token2] = ACTIONS(2742), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [aux_sym_string_token1] = ACTIONS(2742), + [aux_sym_string_token3] = ACTIONS(2742), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(2602), - [sym_identifier] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2602), - [anon_sym_package] = ACTIONS(2600), - [anon_sym_import] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2600), - [anon_sym_throw] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2602), - [anon_sym_switch] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2602), - [anon_sym_cast] = ACTIONS(2600), - [anon_sym_DOLLARtype] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_untyped] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2602), - [anon_sym_this] = ACTIONS(2600), - [anon_sym_AT] = ACTIONS(2600), - [anon_sym_AT_COLON] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_catch] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS_PLUS] = ACTIONS(2602), - [anon_sym_DASH_DASH] = ACTIONS(2602), - [anon_sym_PERCENT] = ACTIONS(2602), - [anon_sym_SLASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_LT_LT] = ACTIONS(2602), - [anon_sym_GT_GT] = ACTIONS(2600), - [anon_sym_GT_GT_GT] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_CARET] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_LT_EQ] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2600), - [anon_sym_GT_EQ] = ACTIONS(2602), - [anon_sym_EQ_GT] = ACTIONS(2602), - [anon_sym_QMARK_QMARK] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2602), - [anon_sym_null] = ACTIONS(2600), - [anon_sym_macro] = ACTIONS(2600), - [anon_sym_abstract] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_public] = ACTIONS(2600), - [anon_sym_private] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2600), - [anon_sym_inline] = ACTIONS(2600), - [anon_sym_overload] = ACTIONS(2600), - [anon_sym_override] = ACTIONS(2600), - [anon_sym_final] = ACTIONS(2600), - [anon_sym_class] = ACTIONS(2600), - [anon_sym_interface] = ACTIONS(2600), - [anon_sym_enum] = ACTIONS(2600), - [anon_sym_typedef] = ACTIONS(2600), - [anon_sym_function] = ACTIONS(2600), - [anon_sym_var] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2600), - [aux_sym_integer_token2] = ACTIONS(2602), - [aux_sym_float_token1] = ACTIONS(2600), - [aux_sym_float_token2] = ACTIONS(2602), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [aux_sym_string_token1] = ACTIONS(2602), - [aux_sym_string_token3] = ACTIONS(2602), + [803] = { + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2682), + [anon_sym_package] = ACTIONS(2680), + [anon_sym_import] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_using] = ACTIONS(2680), + [anon_sym_throw] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_cast] = ACTIONS(2680), + [anon_sym_DOLLARtype] = ACTIONS(2682), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_untyped] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_this] = ACTIONS(2680), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_AT_COLON] = ACTIONS(2682), + [anon_sym_try] = ACTIONS(2680), + [anon_sym_catch] = ACTIONS(2680), + [anon_sym_else] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_new] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_PERCENT] = ACTIONS(2682), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_LT_LT] = ACTIONS(2682), + [anon_sym_GT_GT] = ACTIONS(2680), + [anon_sym_GT_GT_GT] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_CARET] = ACTIONS(2682), + [anon_sym_AMP_AMP] = ACTIONS(2682), + [anon_sym_PIPE_PIPE] = ACTIONS(2682), + [anon_sym_EQ_EQ] = ACTIONS(2682), + [anon_sym_BANG_EQ] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_LT_EQ] = ACTIONS(2682), + [anon_sym_GT] = ACTIONS(2680), + [anon_sym_GT_EQ] = ACTIONS(2682), + [anon_sym_EQ_GT] = ACTIONS(2682), + [anon_sym_QMARK_QMARK] = ACTIONS(2682), + [anon_sym_EQ] = ACTIONS(2680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2682), + [anon_sym_null] = ACTIONS(2680), + [anon_sym_macro] = ACTIONS(2680), + [anon_sym_abstract] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_public] = ACTIONS(2680), + [anon_sym_private] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym_inline] = ACTIONS(2680), + [anon_sym_overload] = ACTIONS(2680), + [anon_sym_override] = ACTIONS(2680), + [anon_sym_final] = ACTIONS(2680), + [anon_sym_class] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_typedef] = ACTIONS(2680), + [anon_sym_function] = ACTIONS(2680), + [anon_sym_var] = ACTIONS(2680), + [aux_sym_integer_token1] = ACTIONS(2680), + [aux_sym_integer_token2] = ACTIONS(2682), + [aux_sym_float_token1] = ACTIONS(2680), + [aux_sym_float_token2] = ACTIONS(2682), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [aux_sym_string_token1] = ACTIONS(2682), + [aux_sym_string_token3] = ACTIONS(2682), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(2180), - [anon_sym_package] = ACTIONS(2178), - [anon_sym_import] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_using] = ACTIONS(2178), - [anon_sym_throw] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2180), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_cast] = ACTIONS(2178), - [anon_sym_DOLLARtype] = ACTIONS(2180), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_untyped] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_this] = ACTIONS(2178), - [anon_sym_AT] = ACTIONS(2178), - [anon_sym_AT_COLON] = ACTIONS(2180), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_catch] = ACTIONS(2178), - [anon_sym_else] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PERCENT] = ACTIONS(2180), - [anon_sym_SLASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2180), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP_AMP] = ACTIONS(2180), - [anon_sym_PIPE_PIPE] = ACTIONS(2180), - [anon_sym_EQ_EQ] = ACTIONS(2180), - [anon_sym_BANG_EQ] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_LT_EQ] = ACTIONS(2180), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2180), - [anon_sym_EQ_GT] = ACTIONS(2180), - [anon_sym_QMARK_QMARK] = ACTIONS(2180), - [anon_sym_EQ] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2180), - [anon_sym_null] = ACTIONS(2178), - [anon_sym_macro] = ACTIONS(2178), - [anon_sym_abstract] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_public] = ACTIONS(2178), - [anon_sym_private] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [anon_sym_overload] = ACTIONS(2178), - [anon_sym_override] = ACTIONS(2178), - [anon_sym_final] = ACTIONS(2178), - [anon_sym_class] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(2178), - [anon_sym_var] = ACTIONS(2178), - [aux_sym_integer_token1] = ACTIONS(2178), - [aux_sym_integer_token2] = ACTIONS(2180), - [aux_sym_float_token1] = ACTIONS(2178), - [aux_sym_float_token2] = ACTIONS(2180), - [anon_sym_true] = ACTIONS(2178), - [anon_sym_false] = ACTIONS(2178), - [aux_sym_string_token1] = ACTIONS(2180), - [aux_sym_string_token3] = ACTIONS(2180), + [804] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_package] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_cast] = ACTIONS(2744), + [anon_sym_DOLLARtype] = ACTIONS(2746), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_untyped] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_this] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_AT_COLON] = ACTIONS(2746), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_catch] = ACTIONS(2744), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_PERCENT] = ACTIONS(2746), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_LT_LT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_GT_GT_GT] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_EQ_EQ] = ACTIONS(2746), + [anon_sym_BANG_EQ] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_LT_EQ] = ACTIONS(2746), + [anon_sym_GT] = ACTIONS(2744), + [anon_sym_GT_EQ] = ACTIONS(2746), + [anon_sym_EQ_GT] = ACTIONS(2746), + [anon_sym_QMARK_QMARK] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2746), + [anon_sym_null] = ACTIONS(2744), + [anon_sym_macro] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym_inline] = ACTIONS(2744), + [anon_sym_overload] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_final] = ACTIONS(2744), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_typedef] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [aux_sym_integer_token1] = ACTIONS(2744), + [aux_sym_integer_token2] = ACTIONS(2746), + [aux_sym_float_token1] = ACTIONS(2744), + [aux_sym_float_token2] = ACTIONS(2746), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [aux_sym_string_token1] = ACTIONS(2746), + [aux_sym_string_token3] = ACTIONS(2746), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [763] = { - [ts_builtin_sym_end] = ACTIONS(2606), - [sym_identifier] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2606), - [anon_sym_package] = ACTIONS(2604), - [anon_sym_import] = ACTIONS(2604), - [anon_sym_STAR] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2604), - [anon_sym_throw] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_switch] = ACTIONS(2604), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_cast] = ACTIONS(2604), - [anon_sym_DOLLARtype] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2604), - [anon_sym_untyped] = ACTIONS(2604), - [anon_sym_break] = ACTIONS(2604), - [anon_sym_continue] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_this] = ACTIONS(2604), - [anon_sym_AT] = ACTIONS(2604), - [anon_sym_AT_COLON] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2604), - [anon_sym_catch] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2604), - [anon_sym_if] = ACTIONS(2604), - [anon_sym_while] = ACTIONS(2604), - [anon_sym_do] = ACTIONS(2604), - [anon_sym_new] = ACTIONS(2604), - [anon_sym_TILDE] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_PLUS_PLUS] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2606), - [anon_sym_PERCENT] = ACTIONS(2606), - [anon_sym_SLASH] = ACTIONS(2604), - [anon_sym_PLUS] = ACTIONS(2604), - [anon_sym_LT_LT] = ACTIONS(2606), - [anon_sym_GT_GT] = ACTIONS(2604), - [anon_sym_GT_GT_GT] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_EQ_EQ] = ACTIONS(2606), - [anon_sym_BANG_EQ] = ACTIONS(2606), - [anon_sym_LT] = ACTIONS(2604), - [anon_sym_LT_EQ] = ACTIONS(2606), - [anon_sym_GT] = ACTIONS(2604), - [anon_sym_GT_EQ] = ACTIONS(2606), - [anon_sym_EQ_GT] = ACTIONS(2606), - [anon_sym_QMARK_QMARK] = ACTIONS(2606), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2606), - [anon_sym_null] = ACTIONS(2604), - [anon_sym_macro] = ACTIONS(2604), - [anon_sym_abstract] = ACTIONS(2604), - [anon_sym_static] = ACTIONS(2604), - [anon_sym_public] = ACTIONS(2604), - [anon_sym_private] = ACTIONS(2604), - [anon_sym_extern] = ACTIONS(2604), - [anon_sym_inline] = ACTIONS(2604), - [anon_sym_overload] = ACTIONS(2604), - [anon_sym_override] = ACTIONS(2604), - [anon_sym_final] = ACTIONS(2604), - [anon_sym_class] = ACTIONS(2604), - [anon_sym_interface] = ACTIONS(2604), - [anon_sym_enum] = ACTIONS(2604), - [anon_sym_typedef] = ACTIONS(2604), - [anon_sym_function] = ACTIONS(2604), - [anon_sym_var] = ACTIONS(2604), - [aux_sym_integer_token1] = ACTIONS(2604), - [aux_sym_integer_token2] = ACTIONS(2606), - [aux_sym_float_token1] = ACTIONS(2604), - [aux_sym_float_token2] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [aux_sym_string_token1] = ACTIONS(2606), - [aux_sym_string_token3] = ACTIONS(2606), + [805] = { + [ts_builtin_sym_end] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_package] = ACTIONS(2748), + [anon_sym_import] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_using] = ACTIONS(2748), + [anon_sym_throw] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_cast] = ACTIONS(2748), + [anon_sym_DOLLARtype] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_untyped] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_this] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_AT_COLON] = ACTIONS(2750), + [anon_sym_try] = ACTIONS(2748), + [anon_sym_catch] = ACTIONS(2748), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_new] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_EQ_GT] = ACTIONS(2750), + [anon_sym_QMARK_QMARK] = ACTIONS(2750), + [anon_sym_EQ] = ACTIONS(2748), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2748), + [anon_sym_macro] = ACTIONS(2748), + [anon_sym_abstract] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_public] = ACTIONS(2748), + [anon_sym_private] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym_inline] = ACTIONS(2748), + [anon_sym_overload] = ACTIONS(2748), + [anon_sym_override] = ACTIONS(2748), + [anon_sym_final] = ACTIONS(2748), + [anon_sym_class] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_typedef] = ACTIONS(2748), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_var] = ACTIONS(2748), + [aux_sym_integer_token1] = ACTIONS(2748), + [aux_sym_integer_token2] = ACTIONS(2750), + [aux_sym_float_token1] = ACTIONS(2748), + [aux_sym_float_token2] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2748), + [anon_sym_false] = ACTIONS(2748), + [aux_sym_string_token1] = ACTIONS(2750), + [aux_sym_string_token3] = ACTIONS(2750), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(2610), - [sym_identifier] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(2610), - [anon_sym_package] = ACTIONS(2608), - [anon_sym_import] = ACTIONS(2608), - [anon_sym_STAR] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2608), - [anon_sym_throw] = ACTIONS(2608), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_cast] = ACTIONS(2608), - [anon_sym_DOLLARtype] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_untyped] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_this] = ACTIONS(2608), - [anon_sym_AT] = ACTIONS(2608), - [anon_sym_AT_COLON] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2608), - [anon_sym_catch] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_do] = ACTIONS(2608), - [anon_sym_new] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(2610), - [anon_sym_PERCENT] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2608), - [anon_sym_PLUS] = ACTIONS(2608), - [anon_sym_LT_LT] = ACTIONS(2610), - [anon_sym_GT_GT] = ACTIONS(2608), - [anon_sym_GT_GT_GT] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_CARET] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_LT_EQ] = ACTIONS(2610), - [anon_sym_GT] = ACTIONS(2608), - [anon_sym_GT_EQ] = ACTIONS(2610), - [anon_sym_EQ_GT] = ACTIONS(2610), - [anon_sym_QMARK_QMARK] = ACTIONS(2610), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2610), - [anon_sym_null] = ACTIONS(2608), - [anon_sym_macro] = ACTIONS(2608), - [anon_sym_abstract] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2608), - [anon_sym_public] = ACTIONS(2608), - [anon_sym_private] = ACTIONS(2608), - [anon_sym_extern] = ACTIONS(2608), - [anon_sym_inline] = ACTIONS(2608), - [anon_sym_overload] = ACTIONS(2608), - [anon_sym_override] = ACTIONS(2608), - [anon_sym_final] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2608), - [anon_sym_interface] = ACTIONS(2608), - [anon_sym_enum] = ACTIONS(2608), - [anon_sym_typedef] = ACTIONS(2608), - [anon_sym_function] = ACTIONS(2608), - [anon_sym_var] = ACTIONS(2608), - [aux_sym_integer_token1] = ACTIONS(2608), - [aux_sym_integer_token2] = ACTIONS(2610), - [aux_sym_float_token1] = ACTIONS(2608), - [aux_sym_float_token2] = ACTIONS(2610), - [anon_sym_true] = ACTIONS(2608), - [anon_sym_false] = ACTIONS(2608), - [aux_sym_string_token1] = ACTIONS(2610), - [aux_sym_string_token3] = ACTIONS(2610), + [806] = { + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2686), + [anon_sym_package] = ACTIONS(2684), + [anon_sym_import] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_cast] = ACTIONS(2684), + [anon_sym_DOLLARtype] = ACTIONS(2686), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_untyped] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_this] = ACTIONS(2684), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_AT_COLON] = ACTIONS(2686), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(2684), + [anon_sym_else] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PERCENT] = ACTIONS(2686), + [anon_sym_SLASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_LT_LT] = ACTIONS(2686), + [anon_sym_GT_GT] = ACTIONS(2684), + [anon_sym_GT_GT_GT] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2686), + [anon_sym_AMP_AMP] = ACTIONS(2686), + [anon_sym_PIPE_PIPE] = ACTIONS(2686), + [anon_sym_EQ_EQ] = ACTIONS(2686), + [anon_sym_BANG_EQ] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_LT_EQ] = ACTIONS(2686), + [anon_sym_GT] = ACTIONS(2684), + [anon_sym_GT_EQ] = ACTIONS(2686), + [anon_sym_EQ_GT] = ACTIONS(2686), + [anon_sym_QMARK_QMARK] = ACTIONS(2686), + [anon_sym_EQ] = ACTIONS(2684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), + [anon_sym_null] = ACTIONS(2684), + [anon_sym_macro] = ACTIONS(2684), + [anon_sym_abstract] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_public] = ACTIONS(2684), + [anon_sym_private] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_overload] = ACTIONS(2684), + [anon_sym_override] = ACTIONS(2684), + [anon_sym_final] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_interface] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_function] = ACTIONS(2684), + [anon_sym_var] = ACTIONS(2684), + [aux_sym_integer_token1] = ACTIONS(2684), + [aux_sym_integer_token2] = ACTIONS(2686), + [aux_sym_float_token1] = ACTIONS(2684), + [aux_sym_float_token2] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [aux_sym_string_token1] = ACTIONS(2686), + [aux_sym_string_token3] = ACTIONS(2686), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [765] = { - [ts_builtin_sym_end] = ACTIONS(2614), - [sym_identifier] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_package] = ACTIONS(2612), - [anon_sym_import] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2612), - [anon_sym_throw] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_cast] = ACTIONS(2612), - [anon_sym_DOLLARtype] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_untyped] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_this] = ACTIONS(2612), - [anon_sym_AT] = ACTIONS(2612), - [anon_sym_AT_COLON] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2612), - [anon_sym_catch] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_do] = ACTIONS(2612), - [anon_sym_new] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2614), - [anon_sym_PERCENT] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2612), - [anon_sym_PLUS] = ACTIONS(2612), - [anon_sym_LT_LT] = ACTIONS(2614), - [anon_sym_GT_GT] = ACTIONS(2612), - [anon_sym_GT_GT_GT] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT] = ACTIONS(2612), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_EQ_GT] = ACTIONS(2614), - [anon_sym_QMARK_QMARK] = ACTIONS(2614), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2612), - [anon_sym_macro] = ACTIONS(2612), - [anon_sym_abstract] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_inline] = ACTIONS(2612), - [anon_sym_overload] = ACTIONS(2612), - [anon_sym_override] = ACTIONS(2612), - [anon_sym_final] = ACTIONS(2612), - [anon_sym_class] = ACTIONS(2612), - [anon_sym_interface] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2612), - [anon_sym_function] = ACTIONS(2612), - [anon_sym_var] = ACTIONS(2612), - [aux_sym_integer_token1] = ACTIONS(2612), - [aux_sym_integer_token2] = ACTIONS(2614), - [aux_sym_float_token1] = ACTIONS(2612), - [aux_sym_float_token2] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [aux_sym_string_token1] = ACTIONS(2614), - [aux_sym_string_token3] = ACTIONS(2614), + [807] = { + [ts_builtin_sym_end] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3288), + [anon_sym_POUND] = ACTIONS(3290), + [anon_sym_package] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_cast] = ACTIONS(3288), + [anon_sym_DOLLARtype] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_untyped] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_this] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_AT_COLON] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_catch] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_PERCENT] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_LT_LT] = ACTIONS(3290), + [anon_sym_GT_GT] = ACTIONS(3288), + [anon_sym_GT_GT_GT] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3288), + [anon_sym_PIPE] = ACTIONS(3288), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP_AMP] = ACTIONS(3290), + [anon_sym_PIPE_PIPE] = ACTIONS(3290), + [anon_sym_EQ_EQ] = ACTIONS(3290), + [anon_sym_BANG_EQ] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_LT_EQ] = ACTIONS(3290), + [anon_sym_GT] = ACTIONS(3288), + [anon_sym_GT_EQ] = ACTIONS(3290), + [anon_sym_EQ_GT] = ACTIONS(3290), + [anon_sym_QMARK_QMARK] = ACTIONS(3290), + [anon_sym_EQ] = ACTIONS(3288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3288), + [anon_sym_macro] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_extern] = ACTIONS(3288), + [anon_sym_inline] = ACTIONS(3288), + [anon_sym_overload] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_final] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), + [anon_sym_typedef] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [aux_sym_integer_token1] = ACTIONS(3288), + [aux_sym_integer_token2] = ACTIONS(3290), + [aux_sym_float_token1] = ACTIONS(3288), + [aux_sym_float_token2] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3288), + [anon_sym_false] = ACTIONS(3288), + [aux_sym_string_token1] = ACTIONS(3290), + [aux_sym_string_token3] = ACTIONS(3290), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [766] = { - [ts_builtin_sym_end] = ACTIONS(2410), - [sym_identifier] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_package] = ACTIONS(2408), - [anon_sym_import] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_using] = ACTIONS(2408), - [anon_sym_throw] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_switch] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_cast] = ACTIONS(2408), - [anon_sym_DOLLARtype] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_untyped] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_this] = ACTIONS(2408), - [anon_sym_AT] = ACTIONS(2408), - [anon_sym_AT_COLON] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2408), - [anon_sym_catch] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_new] = ACTIONS(2408), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_LT_LT] = ACTIONS(2410), - [anon_sym_GT_GT] = ACTIONS(2408), - [anon_sym_GT_GT_GT] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_AMP_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2410), - [anon_sym_EQ_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_LT_EQ] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2410), - [anon_sym_EQ_GT] = ACTIONS(2410), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2410), - [anon_sym_null] = ACTIONS(2408), - [anon_sym_macro] = ACTIONS(2408), - [anon_sym_abstract] = ACTIONS(2408), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_public] = ACTIONS(2408), - [anon_sym_private] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_inline] = ACTIONS(2408), - [anon_sym_overload] = ACTIONS(2408), - [anon_sym_override] = ACTIONS(2408), - [anon_sym_final] = ACTIONS(2408), - [anon_sym_class] = ACTIONS(2408), - [anon_sym_interface] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_typedef] = ACTIONS(2408), - [anon_sym_function] = ACTIONS(2408), - [anon_sym_var] = ACTIONS(2408), - [aux_sym_integer_token1] = ACTIONS(2408), - [aux_sym_integer_token2] = ACTIONS(2410), - [aux_sym_float_token1] = ACTIONS(2408), - [aux_sym_float_token2] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2408), - [anon_sym_false] = ACTIONS(2408), - [aux_sym_string_token1] = ACTIONS(2410), - [aux_sym_string_token3] = ACTIONS(2410), + [808] = { + [ts_builtin_sym_end] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(3298), + [anon_sym_package] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_cast] = ACTIONS(3296), + [anon_sym_DOLLARtype] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_untyped] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_AT_COLON] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_catch] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3296), + [anon_sym_GT_GT_GT] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_EQ_GT] = ACTIONS(3298), + [anon_sym_QMARK_QMARK] = ACTIONS(3298), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_macro] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_extern] = ACTIONS(3296), + [anon_sym_inline] = ACTIONS(3296), + [anon_sym_overload] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_final] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [anon_sym_typedef] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [aux_sym_integer_token1] = ACTIONS(3296), + [aux_sym_integer_token2] = ACTIONS(3298), + [aux_sym_float_token1] = ACTIONS(3296), + [aux_sym_float_token2] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [aux_sym_string_token1] = ACTIONS(3298), + [aux_sym_string_token3] = ACTIONS(3298), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [767] = { - [ts_builtin_sym_end] = ACTIONS(2618), - [sym_identifier] = ACTIONS(2616), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_package] = ACTIONS(2616), - [anon_sym_import] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_using] = ACTIONS(2616), - [anon_sym_throw] = ACTIONS(2616), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_switch] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_cast] = ACTIONS(2616), - [anon_sym_DOLLARtype] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2616), - [anon_sym_return] = ACTIONS(2616), - [anon_sym_untyped] = ACTIONS(2616), - [anon_sym_break] = ACTIONS(2616), - [anon_sym_continue] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_this] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_AT_COLON] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2616), - [anon_sym_catch] = ACTIONS(2616), - [anon_sym_else] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_while] = ACTIONS(2616), - [anon_sym_do] = ACTIONS(2616), - [anon_sym_new] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PERCENT] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2616), - [anon_sym_LT_LT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2616), - [anon_sym_GT_GT_GT] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_QMARK_QMARK] = ACTIONS(2618), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), - [anon_sym_null] = ACTIONS(2616), - [anon_sym_macro] = ACTIONS(2616), - [anon_sym_abstract] = ACTIONS(2616), - [anon_sym_static] = ACTIONS(2616), - [anon_sym_public] = ACTIONS(2616), - [anon_sym_private] = ACTIONS(2616), - [anon_sym_extern] = ACTIONS(2616), - [anon_sym_inline] = ACTIONS(2616), - [anon_sym_overload] = ACTIONS(2616), - [anon_sym_override] = ACTIONS(2616), - [anon_sym_final] = ACTIONS(2616), - [anon_sym_class] = ACTIONS(2616), - [anon_sym_interface] = ACTIONS(2616), - [anon_sym_enum] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2616), - [anon_sym_function] = ACTIONS(2616), - [anon_sym_var] = ACTIONS(2616), - [aux_sym_integer_token1] = ACTIONS(2616), - [aux_sym_integer_token2] = ACTIONS(2618), - [aux_sym_float_token1] = ACTIONS(2616), - [aux_sym_float_token2] = ACTIONS(2618), - [anon_sym_true] = ACTIONS(2616), - [anon_sym_false] = ACTIONS(2616), - [aux_sym_string_token1] = ACTIONS(2618), - [aux_sym_string_token3] = ACTIONS(2618), + [809] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_package] = ACTIONS(2844), + [anon_sym_import] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_cast] = ACTIONS(2844), + [anon_sym_DOLLARtype] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_untyped] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_this] = ACTIONS(2844), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_AT_COLON] = ACTIONS(2846), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_catch] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2844), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2844), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2844), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_EQ_GT] = ACTIONS(2846), + [anon_sym_QMARK_QMARK] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2846), + [anon_sym_null] = ACTIONS(2844), + [anon_sym_macro] = ACTIONS(2844), + [anon_sym_abstract] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_public] = ACTIONS(2844), + [anon_sym_private] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym_inline] = ACTIONS(2844), + [anon_sym_overload] = ACTIONS(2844), + [anon_sym_override] = ACTIONS(2844), + [anon_sym_final] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_interface] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_typedef] = ACTIONS(2844), + [anon_sym_function] = ACTIONS(2844), + [anon_sym_var] = ACTIONS(2844), + [aux_sym_integer_token1] = ACTIONS(2844), + [aux_sym_integer_token2] = ACTIONS(2846), + [aux_sym_float_token1] = ACTIONS(2844), + [aux_sym_float_token2] = ACTIONS(2846), + [anon_sym_true] = ACTIONS(2844), + [anon_sym_false] = ACTIONS(2844), + [aux_sym_string_token1] = ACTIONS(2846), + [aux_sym_string_token3] = ACTIONS(2846), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [768] = { - [ts_builtin_sym_end] = ACTIONS(2184), - [sym_identifier] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(2184), - [anon_sym_package] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_cast] = ACTIONS(2182), - [anon_sym_DOLLARtype] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_untyped] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_this] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_AT_COLON] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_catch] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2182), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2182), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_EQ_GT] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2182), - [anon_sym_macro] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_extern] = ACTIONS(2182), - [anon_sym_inline] = ACTIONS(2182), - [anon_sym_overload] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_final] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [anon_sym_typedef] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [aux_sym_integer_token1] = ACTIONS(2182), - [aux_sym_integer_token2] = ACTIONS(2184), - [aux_sym_float_token1] = ACTIONS(2182), - [aux_sym_float_token2] = ACTIONS(2184), - [anon_sym_true] = ACTIONS(2182), - [anon_sym_false] = ACTIONS(2182), - [aux_sym_string_token1] = ACTIONS(2184), - [aux_sym_string_token3] = ACTIONS(2184), + [810] = { + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2850), + [anon_sym_package] = ACTIONS(2848), + [anon_sym_import] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_cast] = ACTIONS(2848), + [anon_sym_DOLLARtype] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_untyped] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_this] = ACTIONS(2848), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_AT_COLON] = ACTIONS(2850), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_catch] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2850), + [anon_sym_SLASH] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_LT_LT] = ACTIONS(2850), + [anon_sym_GT_GT] = ACTIONS(2848), + [anon_sym_GT_GT_GT] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_PIPE_PIPE] = ACTIONS(2850), + [anon_sym_EQ_EQ] = ACTIONS(2850), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2848), + [anon_sym_LT_EQ] = ACTIONS(2850), + [anon_sym_GT] = ACTIONS(2848), + [anon_sym_GT_EQ] = ACTIONS(2850), + [anon_sym_EQ_GT] = ACTIONS(2850), + [anon_sym_QMARK_QMARK] = ACTIONS(2850), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_macro] = ACTIONS(2848), + [anon_sym_abstract] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym_inline] = ACTIONS(2848), + [anon_sym_overload] = ACTIONS(2848), + [anon_sym_override] = ACTIONS(2848), + [anon_sym_final] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_interface] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_typedef] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_var] = ACTIONS(2848), + [aux_sym_integer_token1] = ACTIONS(2848), + [aux_sym_integer_token2] = ACTIONS(2850), + [aux_sym_float_token1] = ACTIONS(2848), + [aux_sym_float_token2] = ACTIONS(2850), + [anon_sym_true] = ACTIONS(2848), + [anon_sym_false] = ACTIONS(2848), + [aux_sym_string_token1] = ACTIONS(2850), + [aux_sym_string_token3] = ACTIONS(2850), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(2622), - [sym_identifier] = ACTIONS(2620), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_package] = ACTIONS(2620), - [anon_sym_import] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_using] = ACTIONS(2620), - [anon_sym_throw] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_cast] = ACTIONS(2620), - [anon_sym_DOLLARtype] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_untyped] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2620), - [anon_sym_continue] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_this] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_AT_COLON] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_catch] = ACTIONS(2620), - [anon_sym_else] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_PLUS] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2622), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(2622), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_GT_GT_GT] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_PIPE_PIPE] = ACTIONS(2622), - [anon_sym_EQ_EQ] = ACTIONS(2622), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2622), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_GT_EQ] = ACTIONS(2622), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_QMARK_QMARK] = ACTIONS(2622), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_macro] = ACTIONS(2620), - [anon_sym_abstract] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_extern] = ACTIONS(2620), - [anon_sym_inline] = ACTIONS(2620), - [anon_sym_overload] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_interface] = ACTIONS(2620), - [anon_sym_enum] = ACTIONS(2620), - [anon_sym_typedef] = ACTIONS(2620), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_var] = ACTIONS(2620), - [aux_sym_integer_token1] = ACTIONS(2620), - [aux_sym_integer_token2] = ACTIONS(2622), - [aux_sym_float_token1] = ACTIONS(2620), - [aux_sym_float_token2] = ACTIONS(2622), - [anon_sym_true] = ACTIONS(2620), - [anon_sym_false] = ACTIONS(2620), - [aux_sym_string_token1] = ACTIONS(2622), - [aux_sym_string_token3] = ACTIONS(2622), + [811] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_package] = ACTIONS(2852), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_cast] = ACTIONS(2852), + [anon_sym_DOLLARtype] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_untyped] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_this] = ACTIONS(2852), + [anon_sym_AT] = ACTIONS(2852), + [anon_sym_AT_COLON] = ACTIONS(2854), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_catch] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2852), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2852), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2852), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_EQ_GT] = ACTIONS(2854), + [anon_sym_QMARK_QMARK] = ACTIONS(2854), + [anon_sym_EQ] = ACTIONS(2852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_macro] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym_overload] = ACTIONS(2852), + [anon_sym_override] = ACTIONS(2852), + [anon_sym_final] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2852), + [aux_sym_integer_token1] = ACTIONS(2852), + [aux_sym_integer_token2] = ACTIONS(2854), + [aux_sym_float_token1] = ACTIONS(2852), + [aux_sym_float_token2] = ACTIONS(2854), + [anon_sym_true] = ACTIONS(2852), + [anon_sym_false] = ACTIONS(2852), + [aux_sym_string_token1] = ACTIONS(2854), + [aux_sym_string_token3] = ACTIONS(2854), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(2638), - [sym_identifier] = ACTIONS(2636), - [anon_sym_POUND] = ACTIONS(2638), - [anon_sym_package] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(2636), - [anon_sym_STAR] = ACTIONS(2638), - [anon_sym_using] = ACTIONS(2636), - [anon_sym_throw] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2638), - [anon_sym_cast] = ACTIONS(2636), - [anon_sym_DOLLARtype] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2636), - [anon_sym_return] = ACTIONS(2636), - [anon_sym_untyped] = ACTIONS(2636), - [anon_sym_break] = ACTIONS(2636), - [anon_sym_continue] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_this] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2636), - [anon_sym_AT_COLON] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2636), - [anon_sym_catch] = ACTIONS(2636), - [anon_sym_else] = ACTIONS(2636), - [anon_sym_if] = ACTIONS(2636), - [anon_sym_while] = ACTIONS(2636), - [anon_sym_do] = ACTIONS(2636), - [anon_sym_new] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2638), - [anon_sym_DASH_DASH] = ACTIONS(2638), - [anon_sym_PERCENT] = ACTIONS(2638), - [anon_sym_SLASH] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2636), - [anon_sym_LT_LT] = ACTIONS(2638), - [anon_sym_GT_GT] = ACTIONS(2636), - [anon_sym_GT_GT_GT] = ACTIONS(2638), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2636), - [anon_sym_CARET] = ACTIONS(2638), - [anon_sym_AMP_AMP] = ACTIONS(2638), - [anon_sym_PIPE_PIPE] = ACTIONS(2638), - [anon_sym_EQ_EQ] = ACTIONS(2638), - [anon_sym_BANG_EQ] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2636), - [anon_sym_LT_EQ] = ACTIONS(2638), - [anon_sym_GT] = ACTIONS(2636), - [anon_sym_GT_EQ] = ACTIONS(2638), - [anon_sym_EQ_GT] = ACTIONS(2638), - [anon_sym_QMARK_QMARK] = ACTIONS(2638), - [anon_sym_EQ] = ACTIONS(2636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2638), - [anon_sym_null] = ACTIONS(2636), - [anon_sym_macro] = ACTIONS(2636), - [anon_sym_abstract] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_extern] = ACTIONS(2636), - [anon_sym_inline] = ACTIONS(2636), - [anon_sym_overload] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_final] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_interface] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_typedef] = ACTIONS(2636), - [anon_sym_function] = ACTIONS(2636), - [anon_sym_var] = ACTIONS(2636), - [aux_sym_integer_token1] = ACTIONS(2636), - [aux_sym_integer_token2] = ACTIONS(2638), - [aux_sym_float_token1] = ACTIONS(2636), - [aux_sym_float_token2] = ACTIONS(2638), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [aux_sym_string_token1] = ACTIONS(2638), - [aux_sym_string_token3] = ACTIONS(2638), + [812] = { + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_package] = ACTIONS(2856), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_cast] = ACTIONS(2856), + [anon_sym_DOLLARtype] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_untyped] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_this] = ACTIONS(2856), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_AT_COLON] = ACTIONS(2858), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_catch] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2856), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2856), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2856), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2856), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_EQ_GT] = ACTIONS(2858), + [anon_sym_QMARK_QMARK] = ACTIONS(2858), + [anon_sym_EQ] = ACTIONS(2856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_macro] = ACTIONS(2856), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym_overload] = ACTIONS(2856), + [anon_sym_override] = ACTIONS(2856), + [anon_sym_final] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2856), + [aux_sym_integer_token1] = ACTIONS(2856), + [aux_sym_integer_token2] = ACTIONS(2858), + [aux_sym_float_token1] = ACTIONS(2856), + [aux_sym_float_token2] = ACTIONS(2858), + [anon_sym_true] = ACTIONS(2856), + [anon_sym_false] = ACTIONS(2856), + [aux_sym_string_token1] = ACTIONS(2858), + [aux_sym_string_token3] = ACTIONS(2858), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [771] = { - [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_STAR] = ACTIONS(1994), - [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_for] = ACTIONS(1992), - [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_try] = ACTIONS(1992), - [anon_sym_catch] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [813] = { + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_package] = ACTIONS(2860), + [anon_sym_import] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_cast] = ACTIONS(2860), + [anon_sym_DOLLARtype] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_untyped] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_this] = ACTIONS(2860), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_AT_COLON] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_catch] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_LT_LT] = ACTIONS(2862), + [anon_sym_GT_GT] = ACTIONS(2860), + [anon_sym_GT_GT_GT] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2860), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_PIPE_PIPE] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2862), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2860), + [anon_sym_LT_EQ] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2860), + [anon_sym_GT_EQ] = ACTIONS(2862), + [anon_sym_EQ_GT] = ACTIONS(2862), + [anon_sym_QMARK_QMARK] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_macro] = ACTIONS(2860), + [anon_sym_abstract] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_public] = ACTIONS(2860), + [anon_sym_private] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym_overload] = ACTIONS(2860), + [anon_sym_override] = ACTIONS(2860), + [anon_sym_final] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_interface] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_var] = ACTIONS(2860), + [aux_sym_integer_token1] = ACTIONS(2860), + [aux_sym_integer_token2] = ACTIONS(2862), + [aux_sym_float_token1] = ACTIONS(2860), + [aux_sym_float_token2] = ACTIONS(2862), + [anon_sym_true] = ACTIONS(2860), + [anon_sym_false] = ACTIONS(2860), + [aux_sym_string_token1] = ACTIONS(2862), + [aux_sym_string_token3] = ACTIONS(2862), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [772] = { - [ts_builtin_sym_end] = ACTIONS(2188), - [sym_identifier] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(2188), - [anon_sym_package] = ACTIONS(2186), - [anon_sym_import] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2186), - [anon_sym_throw] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_cast] = ACTIONS(2186), - [anon_sym_DOLLARtype] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2186), - [anon_sym_return] = ACTIONS(2186), - [anon_sym_untyped] = ACTIONS(2186), - [anon_sym_break] = ACTIONS(2186), - [anon_sym_continue] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_this] = ACTIONS(2186), - [anon_sym_AT] = ACTIONS(2186), - [anon_sym_AT_COLON] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2186), - [anon_sym_catch] = ACTIONS(2186), - [anon_sym_else] = ACTIONS(2186), - [anon_sym_if] = ACTIONS(2186), - [anon_sym_while] = ACTIONS(2186), - [anon_sym_do] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2186), - [anon_sym_TILDE] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_PLUS_PLUS] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2188), - [anon_sym_PERCENT] = ACTIONS(2188), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2188), - [anon_sym_GT_GT] = ACTIONS(2186), - [anon_sym_GT_GT_GT] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_EQ_EQ] = ACTIONS(2188), - [anon_sym_BANG_EQ] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_LT_EQ] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2186), - [anon_sym_GT_EQ] = ACTIONS(2188), - [anon_sym_EQ_GT] = ACTIONS(2188), - [anon_sym_QMARK_QMARK] = ACTIONS(2188), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2188), - [anon_sym_null] = ACTIONS(2186), - [anon_sym_macro] = ACTIONS(2186), - [anon_sym_abstract] = ACTIONS(2186), - [anon_sym_static] = ACTIONS(2186), - [anon_sym_public] = ACTIONS(2186), - [anon_sym_private] = ACTIONS(2186), - [anon_sym_extern] = ACTIONS(2186), - [anon_sym_inline] = ACTIONS(2186), - [anon_sym_overload] = ACTIONS(2186), - [anon_sym_override] = ACTIONS(2186), - [anon_sym_final] = ACTIONS(2186), - [anon_sym_class] = ACTIONS(2186), - [anon_sym_interface] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2186), - [anon_sym_typedef] = ACTIONS(2186), - [anon_sym_function] = ACTIONS(2186), - [anon_sym_var] = ACTIONS(2186), - [aux_sym_integer_token1] = ACTIONS(2186), - [aux_sym_integer_token2] = ACTIONS(2188), - [aux_sym_float_token1] = ACTIONS(2186), - [aux_sym_float_token2] = ACTIONS(2188), - [anon_sym_true] = ACTIONS(2186), - [anon_sym_false] = ACTIONS(2186), - [aux_sym_string_token1] = ACTIONS(2188), - [aux_sym_string_token3] = ACTIONS(2188), + [814] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_package] = ACTIONS(2864), + [anon_sym_import] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_cast] = ACTIONS(2864), + [anon_sym_DOLLARtype] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_untyped] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_this] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(2864), + [anon_sym_AT_COLON] = ACTIONS(2866), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_catch] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_PERCENT] = ACTIONS(2866), + [anon_sym_SLASH] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_LT_LT] = ACTIONS(2866), + [anon_sym_GT_GT] = ACTIONS(2864), + [anon_sym_GT_GT_GT] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_PIPE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_PIPE_PIPE] = ACTIONS(2866), + [anon_sym_EQ_EQ] = ACTIONS(2866), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2864), + [anon_sym_LT_EQ] = ACTIONS(2866), + [anon_sym_GT] = ACTIONS(2864), + [anon_sym_GT_EQ] = ACTIONS(2866), + [anon_sym_EQ_GT] = ACTIONS(2866), + [anon_sym_QMARK_QMARK] = ACTIONS(2866), + [anon_sym_EQ] = ACTIONS(2864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_macro] = ACTIONS(2864), + [anon_sym_abstract] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_public] = ACTIONS(2864), + [anon_sym_private] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym_inline] = ACTIONS(2864), + [anon_sym_overload] = ACTIONS(2864), + [anon_sym_override] = ACTIONS(2864), + [anon_sym_final] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_interface] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_typedef] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_var] = ACTIONS(2864), + [aux_sym_integer_token1] = ACTIONS(2864), + [aux_sym_integer_token2] = ACTIONS(2866), + [aux_sym_float_token1] = ACTIONS(2864), + [aux_sym_float_token2] = ACTIONS(2866), + [anon_sym_true] = ACTIONS(2864), + [anon_sym_false] = ACTIONS(2864), + [aux_sym_string_token1] = ACTIONS(2866), + [aux_sym_string_token3] = ACTIONS(2866), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_package] = ACTIONS(2644), - [anon_sym_import] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2644), - [anon_sym_throw] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_cast] = ACTIONS(2644), - [anon_sym_DOLLARtype] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_untyped] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_this] = ACTIONS(2644), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_AT_COLON] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_catch] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_GT_GT] = ACTIONS(2644), - [anon_sym_GT_GT_GT] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2644), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2644), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_EQ_GT] = ACTIONS(2647), - [anon_sym_QMARK_QMARK] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), - [anon_sym_null] = ACTIONS(2644), - [anon_sym_macro] = ACTIONS(2644), - [anon_sym_abstract] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_public] = ACTIONS(2644), - [anon_sym_private] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_inline] = ACTIONS(2644), - [anon_sym_overload] = ACTIONS(2644), - [anon_sym_override] = ACTIONS(2644), - [anon_sym_final] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2644), - [anon_sym_interface] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(2644), - [anon_sym_var] = ACTIONS(2644), - [aux_sym_integer_token1] = ACTIONS(2644), - [aux_sym_integer_token2] = ACTIONS(2647), - [aux_sym_float_token1] = ACTIONS(2644), - [aux_sym_float_token2] = ACTIONS(2647), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [aux_sym_string_token1] = ACTIONS(2647), - [aux_sym_string_token3] = ACTIONS(2647), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(2660), - [sym_identifier] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2660), - [anon_sym_package] = ACTIONS(2658), - [anon_sym_import] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2660), - [anon_sym_using] = ACTIONS(2658), - [anon_sym_throw] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_switch] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_cast] = ACTIONS(2658), - [anon_sym_DOLLARtype] = ACTIONS(2660), - [anon_sym_for] = ACTIONS(2658), - [anon_sym_return] = ACTIONS(2658), - [anon_sym_untyped] = ACTIONS(2658), - [anon_sym_break] = ACTIONS(2658), - [anon_sym_continue] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_this] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2658), - [anon_sym_AT_COLON] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2658), - [anon_sym_catch] = ACTIONS(2658), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_while] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2660), - [anon_sym_DASH_DASH] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_LT_LT] = ACTIONS(2660), - [anon_sym_GT_GT] = ACTIONS(2658), - [anon_sym_GT_GT_GT] = ACTIONS(2660), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_CARET] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_EQ_EQ] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_LT_EQ] = ACTIONS(2660), - [anon_sym_GT] = ACTIONS(2658), - [anon_sym_GT_EQ] = ACTIONS(2660), - [anon_sym_EQ_GT] = ACTIONS(2660), - [anon_sym_QMARK_QMARK] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2660), - [anon_sym_null] = ACTIONS(2658), - [anon_sym_macro] = ACTIONS(2658), - [anon_sym_abstract] = ACTIONS(2658), - [anon_sym_static] = ACTIONS(2658), - [anon_sym_public] = ACTIONS(2658), - [anon_sym_private] = ACTIONS(2658), - [anon_sym_extern] = ACTIONS(2658), - [anon_sym_inline] = ACTIONS(2658), - [anon_sym_overload] = ACTIONS(2658), - [anon_sym_override] = ACTIONS(2658), - [anon_sym_final] = ACTIONS(2658), - [anon_sym_class] = ACTIONS(2658), - [anon_sym_interface] = ACTIONS(2658), - [anon_sym_enum] = ACTIONS(2658), - [anon_sym_typedef] = ACTIONS(2658), - [anon_sym_function] = ACTIONS(2658), - [anon_sym_var] = ACTIONS(2658), - [aux_sym_integer_token1] = ACTIONS(2658), - [aux_sym_integer_token2] = ACTIONS(2660), - [aux_sym_float_token1] = ACTIONS(2658), - [aux_sym_float_token2] = ACTIONS(2660), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [aux_sym_string_token1] = ACTIONS(2660), - [aux_sym_string_token3] = ACTIONS(2660), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(2664), - [sym_identifier] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2664), - [anon_sym_package] = ACTIONS(2662), - [anon_sym_import] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_using] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_cast] = ACTIONS(2662), - [anon_sym_DOLLARtype] = ACTIONS(2664), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_untyped] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2664), - [anon_sym_this] = ACTIONS(2662), - [anon_sym_AT] = ACTIONS(2662), - [anon_sym_AT_COLON] = ACTIONS(2664), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_catch] = ACTIONS(2662), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_TILDE] = ACTIONS(2664), - [anon_sym_BANG] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_PLUS_PLUS] = ACTIONS(2664), - [anon_sym_DASH_DASH] = ACTIONS(2664), - [anon_sym_PERCENT] = ACTIONS(2664), - [anon_sym_SLASH] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_LT_LT] = ACTIONS(2664), - [anon_sym_GT_GT] = ACTIONS(2662), - [anon_sym_GT_GT_GT] = ACTIONS(2664), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_AMP_AMP] = ACTIONS(2664), - [anon_sym_PIPE_PIPE] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2664), - [anon_sym_BANG_EQ] = ACTIONS(2664), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_LT_EQ] = ACTIONS(2664), - [anon_sym_GT] = ACTIONS(2662), - [anon_sym_GT_EQ] = ACTIONS(2664), - [anon_sym_EQ_GT] = ACTIONS(2664), - [anon_sym_QMARK_QMARK] = ACTIONS(2664), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), - [anon_sym_null] = ACTIONS(2662), - [anon_sym_macro] = ACTIONS(2662), - [anon_sym_abstract] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_public] = ACTIONS(2662), - [anon_sym_private] = ACTIONS(2662), - [anon_sym_extern] = ACTIONS(2662), - [anon_sym_inline] = ACTIONS(2662), - [anon_sym_overload] = ACTIONS(2662), - [anon_sym_override] = ACTIONS(2662), - [anon_sym_final] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_interface] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), - [anon_sym_typedef] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2662), - [anon_sym_var] = ACTIONS(2662), - [aux_sym_integer_token1] = ACTIONS(2662), - [aux_sym_integer_token2] = ACTIONS(2664), - [aux_sym_float_token1] = ACTIONS(2662), - [aux_sym_float_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [aux_sym_string_token1] = ACTIONS(2664), - [aux_sym_string_token3] = ACTIONS(2664), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(2192), - [anon_sym_package] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_cast] = ACTIONS(2190), - [anon_sym_DOLLARtype] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_untyped] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_this] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_AT_COLON] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2192), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_EQ_GT] = ACTIONS(2192), - [anon_sym_QMARK_QMARK] = ACTIONS(2192), - [anon_sym_EQ] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_null] = ACTIONS(2190), - [anon_sym_macro] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_extern] = ACTIONS(2190), - [anon_sym_inline] = ACTIONS(2190), - [anon_sym_overload] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_final] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [anon_sym_typedef] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [aux_sym_integer_token1] = ACTIONS(2190), - [aux_sym_integer_token2] = ACTIONS(2192), - [aux_sym_float_token1] = ACTIONS(2190), - [aux_sym_float_token2] = ACTIONS(2192), - [anon_sym_true] = ACTIONS(2190), - [anon_sym_false] = ACTIONS(2190), - [aux_sym_string_token1] = ACTIONS(2192), - [aux_sym_string_token3] = ACTIONS(2192), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [777] = { - [ts_builtin_sym_end] = ACTIONS(2676), - [sym_identifier] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2676), - [anon_sym_package] = ACTIONS(2674), - [anon_sym_import] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_using] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_cast] = ACTIONS(2674), - [anon_sym_DOLLARtype] = ACTIONS(2676), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_untyped] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_this] = ACTIONS(2674), - [anon_sym_AT] = ACTIONS(2674), - [anon_sym_AT_COLON] = ACTIONS(2676), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_catch] = ACTIONS(2674), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_LT_LT] = ACTIONS(2676), - [anon_sym_GT_GT] = ACTIONS(2674), - [anon_sym_GT_GT_GT] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_PIPE_PIPE] = ACTIONS(2676), - [anon_sym_EQ_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_LT_EQ] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2674), - [anon_sym_GT_EQ] = ACTIONS(2676), - [anon_sym_EQ_GT] = ACTIONS(2676), - [anon_sym_QMARK_QMARK] = ACTIONS(2676), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2676), - [anon_sym_null] = ACTIONS(2674), - [anon_sym_macro] = ACTIONS(2674), - [anon_sym_abstract] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_public] = ACTIONS(2674), - [anon_sym_private] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(2674), - [anon_sym_inline] = ACTIONS(2674), - [anon_sym_overload] = ACTIONS(2674), - [anon_sym_override] = ACTIONS(2674), - [anon_sym_final] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_interface] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - [anon_sym_typedef] = ACTIONS(2674), - [anon_sym_function] = ACTIONS(2674), - [anon_sym_var] = ACTIONS(2674), - [aux_sym_integer_token1] = ACTIONS(2674), - [aux_sym_integer_token2] = ACTIONS(2676), - [aux_sym_float_token1] = ACTIONS(2674), - [aux_sym_float_token2] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [aux_sym_string_token1] = ACTIONS(2676), - [aux_sym_string_token3] = ACTIONS(2676), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [778] = { - [ts_builtin_sym_end] = ACTIONS(2680), - [sym_identifier] = ACTIONS(2678), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_package] = ACTIONS(2678), - [anon_sym_import] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2678), - [anon_sym_throw] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_cast] = ACTIONS(2678), - [anon_sym_DOLLARtype] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_untyped] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_this] = ACTIONS(2678), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_AT_COLON] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_catch] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_do] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2678), - [anon_sym_PLUS] = ACTIONS(2678), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_GT_GT_GT] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [anon_sym_EQ_EQ] = ACTIONS(2680), - [anon_sym_BANG_EQ] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_EQ_GT] = ACTIONS(2680), - [anon_sym_QMARK_QMARK] = ACTIONS(2680), - [anon_sym_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), - [anon_sym_null] = ACTIONS(2678), - [anon_sym_macro] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_public] = ACTIONS(2678), - [anon_sym_private] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym_inline] = ACTIONS(2678), - [anon_sym_overload] = ACTIONS(2678), - [anon_sym_override] = ACTIONS(2678), - [anon_sym_final] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2678), - [anon_sym_interface] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - [anon_sym_typedef] = ACTIONS(2678), - [anon_sym_function] = ACTIONS(2678), - [anon_sym_var] = ACTIONS(2678), - [aux_sym_integer_token1] = ACTIONS(2678), - [aux_sym_integer_token2] = ACTIONS(2680), - [aux_sym_float_token1] = ACTIONS(2678), - [aux_sym_float_token2] = ACTIONS(2680), - [anon_sym_true] = ACTIONS(2678), - [anon_sym_false] = ACTIONS(2678), - [aux_sym_string_token1] = ACTIONS(2680), - [aux_sym_string_token3] = ACTIONS(2680), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(2196), - [sym_identifier] = ACTIONS(2194), - [anon_sym_POUND] = ACTIONS(2196), - [anon_sym_package] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_cast] = ACTIONS(2194), - [anon_sym_DOLLARtype] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_untyped] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_this] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_AT_COLON] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2196), - [anon_sym_DASH_DASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2194), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_EQ_GT] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2196), - [anon_sym_null] = ACTIONS(2194), - [anon_sym_macro] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym_inline] = ACTIONS(2194), - [anon_sym_overload] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_final] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_typedef] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [aux_sym_integer_token1] = ACTIONS(2194), - [aux_sym_integer_token2] = ACTIONS(2196), - [aux_sym_float_token1] = ACTIONS(2194), - [aux_sym_float_token2] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2194), - [anon_sym_false] = ACTIONS(2194), - [aux_sym_string_token1] = ACTIONS(2196), - [aux_sym_string_token3] = ACTIONS(2196), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2690), - [anon_sym_POUND] = ACTIONS(2692), - [anon_sym_package] = ACTIONS(2690), - [anon_sym_import] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_using] = ACTIONS(2690), - [anon_sym_throw] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_cast] = ACTIONS(2690), - [anon_sym_DOLLARtype] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_untyped] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_this] = ACTIONS(2690), - [anon_sym_AT] = ACTIONS(2690), - [anon_sym_AT_COLON] = ACTIONS(2692), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_catch] = ACTIONS(2690), - [anon_sym_else] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_PERCENT] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_LT_LT] = ACTIONS(2692), - [anon_sym_GT_GT] = ACTIONS(2690), - [anon_sym_GT_GT_GT] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT] = ACTIONS(2690), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_EQ_GT] = ACTIONS(2692), - [anon_sym_QMARK_QMARK] = ACTIONS(2692), - [anon_sym_EQ] = ACTIONS(2690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2692), - [anon_sym_null] = ACTIONS(2690), - [anon_sym_macro] = ACTIONS(2690), - [anon_sym_abstract] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_public] = ACTIONS(2690), - [anon_sym_private] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym_inline] = ACTIONS(2690), - [anon_sym_overload] = ACTIONS(2690), - [anon_sym_override] = ACTIONS(2690), - [anon_sym_final] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2690), - [anon_sym_interface] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), - [anon_sym_typedef] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2690), - [anon_sym_var] = ACTIONS(2690), - [aux_sym_integer_token1] = ACTIONS(2690), - [aux_sym_integer_token2] = ACTIONS(2692), - [aux_sym_float_token1] = ACTIONS(2690), - [aux_sym_float_token2] = ACTIONS(2692), - [anon_sym_true] = ACTIONS(2690), - [anon_sym_false] = ACTIONS(2690), - [aux_sym_string_token1] = ACTIONS(2692), - [aux_sym_string_token3] = ACTIONS(2692), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_package] = ACTIONS(2694), - [anon_sym_import] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_using] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_cast] = ACTIONS(2694), - [anon_sym_DOLLARtype] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_untyped] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_this] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_AT_COLON] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_catch] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_PERCENT] = ACTIONS(2696), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_PIPE_PIPE] = ACTIONS(2696), - [anon_sym_EQ_EQ] = ACTIONS(2696), - [anon_sym_BANG_EQ] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2696), - [anon_sym_EQ_GT] = ACTIONS(2696), - [anon_sym_QMARK_QMARK] = ACTIONS(2696), - [anon_sym_EQ] = ACTIONS(2694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2694), - [anon_sym_macro] = ACTIONS(2694), - [anon_sym_abstract] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_public] = ACTIONS(2694), - [anon_sym_private] = ACTIONS(2694), - [anon_sym_extern] = ACTIONS(2694), - [anon_sym_inline] = ACTIONS(2694), - [anon_sym_overload] = ACTIONS(2694), - [anon_sym_override] = ACTIONS(2694), - [anon_sym_final] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_typedef] = ACTIONS(2694), - [anon_sym_function] = ACTIONS(2694), - [anon_sym_var] = ACTIONS(2694), - [aux_sym_integer_token1] = ACTIONS(2694), - [aux_sym_integer_token2] = ACTIONS(2696), - [aux_sym_float_token1] = ACTIONS(2694), - [aux_sym_float_token2] = ACTIONS(2696), - [anon_sym_true] = ACTIONS(2694), - [anon_sym_false] = ACTIONS(2694), - [aux_sym_string_token1] = ACTIONS(2696), - [aux_sym_string_token3] = ACTIONS(2696), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [782] = { - [sym_else_clause] = STATE(669), - [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_STAR] = ACTIONS(1974), - [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_for] = ACTIONS(1972), - [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_try] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [783] = { - [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_STAR] = ACTIONS(2254), - [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_for] = ACTIONS(2252), - [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_try] = ACTIONS(2252), - [anon_sym_catch] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [784] = { - [ts_builtin_sym_end] = ACTIONS(2700), - [sym_identifier] = ACTIONS(2698), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_package] = ACTIONS(2698), - [anon_sym_import] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_using] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_cast] = ACTIONS(2698), - [anon_sym_DOLLARtype] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_untyped] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_this] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_AT_COLON] = ACTIONS(2700), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_catch] = ACTIONS(2698), - [anon_sym_else] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2698), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_EQ_GT] = ACTIONS(2700), - [anon_sym_QMARK_QMARK] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_macro] = ACTIONS(2698), - [anon_sym_abstract] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_public] = ACTIONS(2698), - [anon_sym_private] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym_inline] = ACTIONS(2698), - [anon_sym_overload] = ACTIONS(2698), - [anon_sym_override] = ACTIONS(2698), - [anon_sym_final] = ACTIONS(2698), - [anon_sym_class] = ACTIONS(2698), - [anon_sym_interface] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_typedef] = ACTIONS(2698), - [anon_sym_function] = ACTIONS(2698), - [anon_sym_var] = ACTIONS(2698), - [aux_sym_integer_token1] = ACTIONS(2698), - [aux_sym_integer_token2] = ACTIONS(2700), - [aux_sym_float_token1] = ACTIONS(2698), - [aux_sym_float_token2] = ACTIONS(2700), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [aux_sym_string_token1] = ACTIONS(2700), - [aux_sym_string_token3] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [785] = { - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_package] = ACTIONS(2702), - [anon_sym_import] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_using] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_cast] = ACTIONS(2702), - [anon_sym_DOLLARtype] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_untyped] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_this] = ACTIONS(2702), - [anon_sym_AT] = ACTIONS(2702), - [anon_sym_AT_COLON] = ACTIONS(2704), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_catch] = ACTIONS(2702), - [anon_sym_else] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2702), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_EQ_GT] = ACTIONS(2704), - [anon_sym_QMARK_QMARK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_null] = ACTIONS(2702), - [anon_sym_macro] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_public] = ACTIONS(2702), - [anon_sym_private] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym_inline] = ACTIONS(2702), - [anon_sym_overload] = ACTIONS(2702), - [anon_sym_override] = ACTIONS(2702), - [anon_sym_final] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(2702), - [anon_sym_interface] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_typedef] = ACTIONS(2702), - [anon_sym_function] = ACTIONS(2702), - [anon_sym_var] = ACTIONS(2702), - [aux_sym_integer_token1] = ACTIONS(2702), - [aux_sym_integer_token2] = ACTIONS(2704), - [aux_sym_float_token1] = ACTIONS(2702), - [aux_sym_float_token2] = ACTIONS(2704), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [aux_sym_string_token1] = ACTIONS(2704), - [aux_sym_string_token3] = ACTIONS(2704), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [786] = { - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(2708), - [anon_sym_package] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_cast] = ACTIONS(2706), - [anon_sym_DOLLARtype] = ACTIONS(2708), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_untyped] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2706), - [anon_sym_AT_COLON] = ACTIONS(2708), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_catch] = ACTIONS(2706), - [anon_sym_else] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_PERCENT] = ACTIONS(2708), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_LT_LT] = ACTIONS(2708), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_GT_GT_GT] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2708), - [anon_sym_AMP_AMP] = ACTIONS(2708), - [anon_sym_PIPE_PIPE] = ACTIONS(2708), - [anon_sym_EQ_EQ] = ACTIONS(2708), - [anon_sym_BANG_EQ] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2708), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_GT_EQ] = ACTIONS(2708), - [anon_sym_EQ_GT] = ACTIONS(2708), - [anon_sym_QMARK_QMARK] = ACTIONS(2708), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2708), - [anon_sym_null] = ACTIONS(2706), - [anon_sym_macro] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_extern] = ACTIONS(2706), - [anon_sym_inline] = ACTIONS(2706), - [anon_sym_overload] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_final] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - [anon_sym_typedef] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [aux_sym_integer_token1] = ACTIONS(2706), - [aux_sym_integer_token2] = ACTIONS(2708), - [aux_sym_float_token1] = ACTIONS(2706), - [aux_sym_float_token2] = ACTIONS(2708), - [anon_sym_true] = ACTIONS(2706), - [anon_sym_false] = ACTIONS(2706), - [aux_sym_string_token1] = ACTIONS(2708), - [aux_sym_string_token3] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [787] = { - [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), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(2200), - [sym_identifier] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(2200), - [anon_sym_package] = ACTIONS(2198), - [anon_sym_import] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2198), - [anon_sym_throw] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_switch] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_cast] = ACTIONS(2198), - [anon_sym_DOLLARtype] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_untyped] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_this] = ACTIONS(2198), - [anon_sym_AT] = ACTIONS(2198), - [anon_sym_AT_COLON] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2198), - [anon_sym_catch] = ACTIONS(2198), - [anon_sym_else] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(2198), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2198), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2200), - [anon_sym_SLASH] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_GT_GT_GT] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_PIPE_PIPE] = ACTIONS(2200), - [anon_sym_EQ_EQ] = ACTIONS(2200), - [anon_sym_BANG_EQ] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_LT_EQ] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_EQ] = ACTIONS(2200), - [anon_sym_EQ_GT] = ACTIONS(2200), - [anon_sym_QMARK_QMARK] = ACTIONS(2200), - [anon_sym_EQ] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), - [anon_sym_null] = ACTIONS(2198), - [anon_sym_macro] = ACTIONS(2198), - [anon_sym_abstract] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_public] = ACTIONS(2198), - [anon_sym_private] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym_inline] = ACTIONS(2198), - [anon_sym_overload] = ACTIONS(2198), - [anon_sym_override] = ACTIONS(2198), - [anon_sym_final] = ACTIONS(2198), - [anon_sym_class] = ACTIONS(2198), - [anon_sym_interface] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_typedef] = ACTIONS(2198), - [anon_sym_function] = ACTIONS(2198), - [anon_sym_var] = ACTIONS(2198), - [aux_sym_integer_token1] = ACTIONS(2198), - [aux_sym_integer_token2] = ACTIONS(2200), - [aux_sym_float_token1] = ACTIONS(2198), - [aux_sym_float_token2] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2198), - [anon_sym_false] = ACTIONS(2198), - [aux_sym_string_token1] = ACTIONS(2200), - [aux_sym_string_token3] = ACTIONS(2200), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(2204), - [sym_identifier] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(2204), - [anon_sym_package] = ACTIONS(2202), - [anon_sym_import] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2202), - [anon_sym_throw] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_cast] = ACTIONS(2202), - [anon_sym_DOLLARtype] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2202), - [anon_sym_return] = ACTIONS(2202), - [anon_sym_untyped] = ACTIONS(2202), - [anon_sym_break] = ACTIONS(2202), - [anon_sym_continue] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_this] = ACTIONS(2202), - [anon_sym_AT] = ACTIONS(2202), - [anon_sym_AT_COLON] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2202), - [anon_sym_catch] = ACTIONS(2202), - [anon_sym_else] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_while] = ACTIONS(2202), - [anon_sym_do] = ACTIONS(2202), - [anon_sym_new] = ACTIONS(2202), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_GT_GT_GT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_PIPE_PIPE] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_LT_EQ] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_EQ_GT] = ACTIONS(2204), - [anon_sym_QMARK_QMARK] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2204), - [anon_sym_null] = ACTIONS(2202), - [anon_sym_macro] = ACTIONS(2202), - [anon_sym_abstract] = ACTIONS(2202), - [anon_sym_static] = ACTIONS(2202), - [anon_sym_public] = ACTIONS(2202), - [anon_sym_private] = ACTIONS(2202), - [anon_sym_extern] = ACTIONS(2202), - [anon_sym_inline] = ACTIONS(2202), - [anon_sym_overload] = ACTIONS(2202), - [anon_sym_override] = ACTIONS(2202), - [anon_sym_final] = ACTIONS(2202), - [anon_sym_class] = ACTIONS(2202), - [anon_sym_interface] = ACTIONS(2202), - [anon_sym_enum] = ACTIONS(2202), - [anon_sym_typedef] = ACTIONS(2202), - [anon_sym_function] = ACTIONS(2202), - [anon_sym_var] = ACTIONS(2202), - [aux_sym_integer_token1] = ACTIONS(2202), - [aux_sym_integer_token2] = ACTIONS(2204), - [aux_sym_float_token1] = ACTIONS(2202), - [aux_sym_float_token2] = ACTIONS(2204), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [aux_sym_string_token1] = ACTIONS(2204), - [aux_sym_string_token3] = ACTIONS(2204), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [790] = { - [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), - }, - [791] = { - [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_STAR] = ACTIONS(2330), - [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_for] = ACTIONS(2328), - [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_try] = ACTIONS(2328), - [anon_sym_catch] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [792] = { - [ts_builtin_sym_end] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(2208), - [anon_sym_package] = ACTIONS(2206), - [anon_sym_import] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2206), - [anon_sym_throw] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_cast] = ACTIONS(2206), - [anon_sym_DOLLARtype] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2206), - [anon_sym_untyped] = ACTIONS(2206), - [anon_sym_break] = ACTIONS(2206), - [anon_sym_continue] = ACTIONS(2206), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_this] = ACTIONS(2206), - [anon_sym_AT] = ACTIONS(2206), - [anon_sym_AT_COLON] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2206), - [anon_sym_catch] = ACTIONS(2206), - [anon_sym_else] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2206), - [anon_sym_do] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2206), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2206), - [anon_sym_PLUS] = ACTIONS(2206), - [anon_sym_LT_LT] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(2206), - [anon_sym_GT_GT_GT] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_CARET] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2208), - [anon_sym_PIPE_PIPE] = ACTIONS(2208), - [anon_sym_EQ_EQ] = ACTIONS(2208), - [anon_sym_BANG_EQ] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_LT_EQ] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2206), - [anon_sym_GT_EQ] = ACTIONS(2208), - [anon_sym_EQ_GT] = ACTIONS(2208), - [anon_sym_QMARK_QMARK] = ACTIONS(2208), - [anon_sym_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2206), - [anon_sym_macro] = ACTIONS(2206), - [anon_sym_abstract] = ACTIONS(2206), - [anon_sym_static] = ACTIONS(2206), - [anon_sym_public] = ACTIONS(2206), - [anon_sym_private] = ACTIONS(2206), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_inline] = ACTIONS(2206), - [anon_sym_overload] = ACTIONS(2206), - [anon_sym_override] = ACTIONS(2206), - [anon_sym_final] = ACTIONS(2206), - [anon_sym_class] = ACTIONS(2206), - [anon_sym_interface] = ACTIONS(2206), - [anon_sym_enum] = ACTIONS(2206), - [anon_sym_typedef] = ACTIONS(2206), - [anon_sym_function] = ACTIONS(2206), - [anon_sym_var] = ACTIONS(2206), - [aux_sym_integer_token1] = ACTIONS(2206), - [aux_sym_integer_token2] = ACTIONS(2208), - [aux_sym_float_token1] = ACTIONS(2206), - [aux_sym_float_token2] = ACTIONS(2208), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [aux_sym_string_token1] = ACTIONS(2208), - [aux_sym_string_token3] = ACTIONS(2208), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [793] = { - [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_STAR] = ACTIONS(2334), - [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_for] = ACTIONS(2332), - [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_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_unmarker] = ACTIONS(3), - }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2212), - [anon_sym_package] = ACTIONS(2210), - [anon_sym_import] = ACTIONS(2210), - [anon_sym_STAR] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2210), - [anon_sym_throw] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_cast] = ACTIONS(2210), - [anon_sym_DOLLARtype] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_untyped] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_this] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_AT_COLON] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2210), - [anon_sym_catch] = ACTIONS(2210), - [anon_sym_else] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2210), - [anon_sym_do] = ACTIONS(2210), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(2212), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [anon_sym_PERCENT] = ACTIONS(2212), - [anon_sym_SLASH] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(2212), - [anon_sym_GT_GT] = ACTIONS(2210), - [anon_sym_GT_GT_GT] = ACTIONS(2212), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(2212), - [anon_sym_AMP_AMP] = ACTIONS(2212), - [anon_sym_PIPE_PIPE] = ACTIONS(2212), - [anon_sym_EQ_EQ] = ACTIONS(2212), - [anon_sym_BANG_EQ] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_LT_EQ] = ACTIONS(2212), - [anon_sym_GT] = ACTIONS(2210), - [anon_sym_GT_EQ] = ACTIONS(2212), - [anon_sym_EQ_GT] = ACTIONS(2212), - [anon_sym_QMARK_QMARK] = ACTIONS(2212), - [anon_sym_EQ] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2212), - [anon_sym_null] = ACTIONS(2210), - [anon_sym_macro] = ACTIONS(2210), - [anon_sym_abstract] = ACTIONS(2210), - [anon_sym_static] = ACTIONS(2210), - [anon_sym_public] = ACTIONS(2210), - [anon_sym_private] = ACTIONS(2210), - [anon_sym_extern] = ACTIONS(2210), - [anon_sym_inline] = ACTIONS(2210), - [anon_sym_overload] = ACTIONS(2210), - [anon_sym_override] = ACTIONS(2210), - [anon_sym_final] = ACTIONS(2210), - [anon_sym_class] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2210), - [anon_sym_function] = ACTIONS(2210), - [anon_sym_var] = ACTIONS(2210), - [aux_sym_integer_token1] = ACTIONS(2210), - [aux_sym_integer_token2] = ACTIONS(2212), - [aux_sym_float_token1] = ACTIONS(2210), - [aux_sym_float_token2] = ACTIONS(2212), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [aux_sym_string_token1] = ACTIONS(2212), - [aux_sym_string_token3] = ACTIONS(2212), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [795] = { - [ts_builtin_sym_end] = ACTIONS(2216), - [sym_identifier] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(2216), - [anon_sym_package] = ACTIONS(2214), - [anon_sym_import] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_throw] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_cast] = ACTIONS(2214), - [anon_sym_DOLLARtype] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_untyped] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_this] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(2214), - [anon_sym_AT_COLON] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_catch] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2214), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_GT] = ACTIONS(2214), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_EQ_GT] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_EQ] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2216), - [anon_sym_null] = ACTIONS(2214), - [anon_sym_macro] = ACTIONS(2214), - [anon_sym_abstract] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_public] = ACTIONS(2214), - [anon_sym_private] = ACTIONS(2214), - [anon_sym_extern] = ACTIONS(2214), - [anon_sym_inline] = ACTIONS(2214), - [anon_sym_overload] = ACTIONS(2214), - [anon_sym_override] = ACTIONS(2214), - [anon_sym_final] = ACTIONS(2214), - [anon_sym_class] = ACTIONS(2214), - [anon_sym_interface] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [anon_sym_typedef] = ACTIONS(2214), - [anon_sym_function] = ACTIONS(2214), - [anon_sym_var] = ACTIONS(2214), - [aux_sym_integer_token1] = ACTIONS(2214), - [aux_sym_integer_token2] = ACTIONS(2216), - [aux_sym_float_token1] = ACTIONS(2214), - [aux_sym_float_token2] = ACTIONS(2216), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [aux_sym_string_token1] = ACTIONS(2216), - [aux_sym_string_token3] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(2220), - [sym_identifier] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_package] = ACTIONS(2218), - [anon_sym_import] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2220), - [anon_sym_using] = ACTIONS(2218), - [anon_sym_throw] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_switch] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_cast] = ACTIONS(2218), - [anon_sym_DOLLARtype] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_untyped] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2220), - [anon_sym_this] = ACTIONS(2218), - [anon_sym_AT] = ACTIONS(2218), - [anon_sym_AT_COLON] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2218), - [anon_sym_catch] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [anon_sym_new] = ACTIONS(2218), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_PLUS_PLUS] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(2220), - [anon_sym_PERCENT] = ACTIONS(2220), - [anon_sym_SLASH] = ACTIONS(2218), - [anon_sym_PLUS] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(2220), - [anon_sym_GT_GT] = ACTIONS(2218), - [anon_sym_GT_GT_GT] = ACTIONS(2220), - [anon_sym_AMP] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_CARET] = ACTIONS(2220), - [anon_sym_AMP_AMP] = ACTIONS(2220), - [anon_sym_PIPE_PIPE] = ACTIONS(2220), - [anon_sym_EQ_EQ] = ACTIONS(2220), - [anon_sym_BANG_EQ] = ACTIONS(2220), - [anon_sym_LT] = ACTIONS(2218), - [anon_sym_LT_EQ] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2218), - [anon_sym_GT_EQ] = ACTIONS(2220), - [anon_sym_EQ_GT] = ACTIONS(2220), - [anon_sym_QMARK_QMARK] = ACTIONS(2220), - [anon_sym_EQ] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2218), - [anon_sym_macro] = ACTIONS(2218), - [anon_sym_abstract] = ACTIONS(2218), - [anon_sym_static] = ACTIONS(2218), - [anon_sym_public] = ACTIONS(2218), - [anon_sym_private] = ACTIONS(2218), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_inline] = ACTIONS(2218), - [anon_sym_overload] = ACTIONS(2218), - [anon_sym_override] = ACTIONS(2218), - [anon_sym_final] = ACTIONS(2218), - [anon_sym_class] = ACTIONS(2218), - [anon_sym_interface] = ACTIONS(2218), - [anon_sym_enum] = ACTIONS(2218), - [anon_sym_typedef] = ACTIONS(2218), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_var] = ACTIONS(2218), - [aux_sym_integer_token1] = ACTIONS(2218), - [aux_sym_integer_token2] = ACTIONS(2220), - [aux_sym_float_token1] = ACTIONS(2218), - [aux_sym_float_token2] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [aux_sym_string_token1] = ACTIONS(2220), - [aux_sym_string_token3] = ACTIONS(2220), + [815] = { + [sym_else_clause] = STATE(422), + [sym_identifier] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_package] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_cast] = ACTIONS(2650), + [anon_sym_DOLLARtype] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_untyped] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_this] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2650), + [anon_sym_AT_COLON] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_LT_LT] = ACTIONS(2652), + [anon_sym_GT_GT] = ACTIONS(2650), + [anon_sym_GT_GT_GT] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_EQ_EQ] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_LT_EQ] = ACTIONS(2652), + [anon_sym_GT] = ACTIONS(2650), + [anon_sym_GT_EQ] = ACTIONS(2652), + [anon_sym_EQ_GT] = ACTIONS(2652), + [anon_sym_QMARK_QMARK] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), + [anon_sym_null] = ACTIONS(2650), + [anon_sym_macro] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_overload] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_final] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_typedef] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [aux_sym_integer_token1] = ACTIONS(2650), + [aux_sym_integer_token2] = ACTIONS(2652), + [aux_sym_float_token1] = ACTIONS(2650), + [aux_sym_float_token2] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [aux_sym_string_token1] = ACTIONS(2652), + [aux_sym_string_token3] = ACTIONS(2652), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2652), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(2224), - [sym_identifier] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(2224), - [anon_sym_package] = ACTIONS(2222), - [anon_sym_import] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2222), - [anon_sym_throw] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_switch] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_cast] = ACTIONS(2222), - [anon_sym_DOLLARtype] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_untyped] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_this] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2222), - [anon_sym_AT_COLON] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_catch] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2222), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_GT] = ACTIONS(2222), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_EQ_GT] = ACTIONS(2224), - [anon_sym_QMARK_QMARK] = ACTIONS(2224), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_null] = ACTIONS(2222), - [anon_sym_macro] = ACTIONS(2222), - [anon_sym_abstract] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2222), - [anon_sym_private] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_inline] = ACTIONS(2222), - [anon_sym_overload] = ACTIONS(2222), - [anon_sym_override] = ACTIONS(2222), - [anon_sym_final] = ACTIONS(2222), - [anon_sym_class] = ACTIONS(2222), - [anon_sym_interface] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_typedef] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(2222), - [anon_sym_var] = ACTIONS(2222), - [aux_sym_integer_token1] = ACTIONS(2222), - [aux_sym_integer_token2] = ACTIONS(2224), - [aux_sym_float_token1] = ACTIONS(2222), - [aux_sym_float_token2] = ACTIONS(2224), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [aux_sym_string_token1] = ACTIONS(2224), - [aux_sym_string_token3] = ACTIONS(2224), + [816] = { + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2754), + [anon_sym_package] = ACTIONS(2752), + [anon_sym_import] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_cast] = ACTIONS(2752), + [anon_sym_DOLLARtype] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_untyped] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_this] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_AT_COLON] = ACTIONS(2754), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_catch] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [anon_sym_PERCENT] = ACTIONS(2754), + [anon_sym_SLASH] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_GT_GT_GT] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_EQ_EQ] = ACTIONS(2754), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_LT_EQ] = ACTIONS(2754), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_EQ] = ACTIONS(2754), + [anon_sym_EQ_GT] = ACTIONS(2754), + [anon_sym_QMARK_QMARK] = ACTIONS(2754), + [anon_sym_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_macro] = ACTIONS(2752), + [anon_sym_abstract] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym_inline] = ACTIONS(2752), + [anon_sym_overload] = ACTIONS(2752), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_final] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_interface] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_typedef] = ACTIONS(2752), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_var] = ACTIONS(2752), + [aux_sym_integer_token1] = ACTIONS(2752), + [aux_sym_integer_token2] = ACTIONS(2754), + [aux_sym_float_token1] = ACTIONS(2752), + [aux_sym_float_token2] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [aux_sym_string_token1] = ACTIONS(2754), + [aux_sym_string_token3] = ACTIONS(2754), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [798] = { - [ts_builtin_sym_end] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2228), - [anon_sym_package] = ACTIONS(2226), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2226), - [anon_sym_throw] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_cast] = ACTIONS(2226), - [anon_sym_DOLLARtype] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_untyped] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_this] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(2226), - [anon_sym_AT_COLON] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_catch] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_new] = ACTIONS(2226), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2226), - [anon_sym_GT_GT_GT] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_GT] = ACTIONS(2226), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_EQ_GT] = ACTIONS(2228), - [anon_sym_QMARK_QMARK] = ACTIONS(2228), - [anon_sym_EQ] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2226), - [anon_sym_macro] = ACTIONS(2226), - [anon_sym_abstract] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_public] = ACTIONS(2226), - [anon_sym_private] = ACTIONS(2226), - [anon_sym_extern] = ACTIONS(2226), - [anon_sym_inline] = ACTIONS(2226), - [anon_sym_overload] = ACTIONS(2226), - [anon_sym_override] = ACTIONS(2226), - [anon_sym_final] = ACTIONS(2226), - [anon_sym_class] = ACTIONS(2226), - [anon_sym_interface] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [anon_sym_typedef] = ACTIONS(2226), - [anon_sym_function] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2226), - [aux_sym_integer_token1] = ACTIONS(2226), - [aux_sym_integer_token2] = ACTIONS(2228), - [aux_sym_float_token1] = ACTIONS(2226), - [aux_sym_float_token2] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(2226), - [anon_sym_false] = ACTIONS(2226), - [aux_sym_string_token1] = ACTIONS(2228), - [aux_sym_string_token3] = ACTIONS(2228), + [817] = { + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_package] = ACTIONS(2756), + [anon_sym_import] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_using] = ACTIONS(2756), + [anon_sym_throw] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_cast] = ACTIONS(2756), + [anon_sym_DOLLARtype] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_untyped] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_this] = ACTIONS(2756), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_AT_COLON] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2756), + [anon_sym_catch] = ACTIONS(2756), + [anon_sym_else] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_SLASH] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_GT_GT_GT] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_LT_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2756), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_EQ_GT] = ACTIONS(2758), + [anon_sym_QMARK_QMARK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_null] = ACTIONS(2756), + [anon_sym_macro] = ACTIONS(2756), + [anon_sym_abstract] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_public] = ACTIONS(2756), + [anon_sym_private] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym_inline] = ACTIONS(2756), + [anon_sym_overload] = ACTIONS(2756), + [anon_sym_override] = ACTIONS(2756), + [anon_sym_final] = ACTIONS(2756), + [anon_sym_class] = ACTIONS(2756), + [anon_sym_interface] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_typedef] = ACTIONS(2756), + [anon_sym_function] = ACTIONS(2756), + [anon_sym_var] = ACTIONS(2756), + [aux_sym_integer_token1] = ACTIONS(2756), + [aux_sym_integer_token2] = ACTIONS(2758), + [aux_sym_float_token1] = ACTIONS(2756), + [aux_sym_float_token2] = ACTIONS(2758), + [anon_sym_true] = ACTIONS(2756), + [anon_sym_false] = ACTIONS(2756), + [aux_sym_string_token1] = ACTIONS(2758), + [aux_sym_string_token3] = ACTIONS(2758), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(2438), - [sym_identifier] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2438), - [anon_sym_package] = ACTIONS(2436), - [anon_sym_import] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_using] = ACTIONS(2436), - [anon_sym_throw] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_cast] = ACTIONS(2436), - [anon_sym_DOLLARtype] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_untyped] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_this] = ACTIONS(2436), - [anon_sym_AT] = ACTIONS(2436), - [anon_sym_AT_COLON] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2436), - [anon_sym_catch] = ACTIONS(2436), - [anon_sym_else] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_do] = ACTIONS(2436), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), - [anon_sym_PERCENT] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2436), - [anon_sym_PLUS] = ACTIONS(2436), - [anon_sym_LT_LT] = ACTIONS(2438), - [anon_sym_GT_GT] = ACTIONS(2436), - [anon_sym_GT_GT_GT] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2436), - [anon_sym_PIPE] = ACTIONS(2436), - [anon_sym_CARET] = ACTIONS(2438), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE_PIPE] = ACTIONS(2438), - [anon_sym_EQ_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_LT_EQ] = ACTIONS(2438), - [anon_sym_GT] = ACTIONS(2436), - [anon_sym_GT_EQ] = ACTIONS(2438), - [anon_sym_EQ_GT] = ACTIONS(2438), - [anon_sym_QMARK_QMARK] = ACTIONS(2438), - [anon_sym_EQ] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), - [anon_sym_null] = ACTIONS(2436), - [anon_sym_macro] = ACTIONS(2436), - [anon_sym_abstract] = ACTIONS(2436), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_inline] = ACTIONS(2436), - [anon_sym_overload] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_final] = ACTIONS(2436), - [anon_sym_class] = ACTIONS(2436), - [anon_sym_interface] = ACTIONS(2436), - [anon_sym_enum] = ACTIONS(2436), - [anon_sym_typedef] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2436), - [anon_sym_var] = ACTIONS(2436), - [aux_sym_integer_token1] = ACTIONS(2436), - [aux_sym_integer_token2] = ACTIONS(2438), - [aux_sym_float_token1] = ACTIONS(2436), - [aux_sym_float_token2] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(2436), - [anon_sym_false] = ACTIONS(2436), - [aux_sym_string_token1] = ACTIONS(2438), - [aux_sym_string_token3] = ACTIONS(2438), + [818] = { + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2762), + [anon_sym_package] = ACTIONS(2760), + [anon_sym_import] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2760), + [anon_sym_throw] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_cast] = ACTIONS(2760), + [anon_sym_DOLLARtype] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_untyped] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_this] = ACTIONS(2760), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_AT_COLON] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2760), + [anon_sym_catch] = ACTIONS(2760), + [anon_sym_else] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_PERCENT] = ACTIONS(2762), + [anon_sym_SLASH] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_LT_LT] = ACTIONS(2762), + [anon_sym_GT_GT] = ACTIONS(2760), + [anon_sym_GT_GT_GT] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP_AMP] = ACTIONS(2762), + [anon_sym_PIPE_PIPE] = ACTIONS(2762), + [anon_sym_EQ_EQ] = ACTIONS(2762), + [anon_sym_BANG_EQ] = ACTIONS(2762), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_LT_EQ] = ACTIONS(2762), + [anon_sym_GT] = ACTIONS(2760), + [anon_sym_GT_EQ] = ACTIONS(2762), + [anon_sym_EQ_GT] = ACTIONS(2762), + [anon_sym_QMARK_QMARK] = ACTIONS(2762), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2762), + [anon_sym_null] = ACTIONS(2760), + [anon_sym_macro] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_public] = ACTIONS(2760), + [anon_sym_private] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym_inline] = ACTIONS(2760), + [anon_sym_overload] = ACTIONS(2760), + [anon_sym_override] = ACTIONS(2760), + [anon_sym_final] = ACTIONS(2760), + [anon_sym_class] = ACTIONS(2760), + [anon_sym_interface] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_typedef] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2760), + [anon_sym_var] = ACTIONS(2760), + [aux_sym_integer_token1] = ACTIONS(2760), + [aux_sym_integer_token2] = ACTIONS(2762), + [aux_sym_float_token1] = ACTIONS(2760), + [aux_sym_float_token2] = ACTIONS(2762), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [aux_sym_string_token1] = ACTIONS(2762), + [aux_sym_string_token3] = ACTIONS(2762), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [800] = { - [ts_builtin_sym_end] = ACTIONS(2430), - [sym_identifier] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2428), - [anon_sym_import] = ACTIONS(2428), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_using] = ACTIONS(2428), - [anon_sym_throw] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_switch] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2430), - [anon_sym_cast] = ACTIONS(2428), - [anon_sym_DOLLARtype] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_untyped] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2428), - [anon_sym_AT] = ACTIONS(2428), - [anon_sym_AT_COLON] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2428), - [anon_sym_catch] = ACTIONS(2428), - [anon_sym_else] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_do] = ACTIONS(2428), - [anon_sym_new] = ACTIONS(2428), - [anon_sym_TILDE] = ACTIONS(2430), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_PLUS_PLUS] = ACTIONS(2430), - [anon_sym_DASH_DASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2428), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(2430), - [anon_sym_GT_GT] = ACTIONS(2428), - [anon_sym_GT_GT_GT] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_CARET] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_LT_EQ] = ACTIONS(2430), - [anon_sym_GT] = ACTIONS(2428), - [anon_sym_GT_EQ] = ACTIONS(2430), - [anon_sym_EQ_GT] = ACTIONS(2430), - [anon_sym_QMARK_QMARK] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2428), - [anon_sym_macro] = ACTIONS(2428), - [anon_sym_abstract] = ACTIONS(2428), - [anon_sym_static] = ACTIONS(2428), - [anon_sym_public] = ACTIONS(2428), - [anon_sym_private] = ACTIONS(2428), - [anon_sym_extern] = ACTIONS(2428), - [anon_sym_inline] = ACTIONS(2428), - [anon_sym_overload] = ACTIONS(2428), - [anon_sym_override] = ACTIONS(2428), - [anon_sym_final] = ACTIONS(2428), - [anon_sym_class] = ACTIONS(2428), - [anon_sym_interface] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2428), - [anon_sym_typedef] = ACTIONS(2428), - [anon_sym_function] = ACTIONS(2428), - [anon_sym_var] = ACTIONS(2428), - [aux_sym_integer_token1] = ACTIONS(2428), - [aux_sym_integer_token2] = ACTIONS(2430), - [aux_sym_float_token1] = ACTIONS(2428), - [aux_sym_float_token2] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2428), - [anon_sym_false] = ACTIONS(2428), - [aux_sym_string_token1] = ACTIONS(2430), - [aux_sym_string_token3] = ACTIONS(2430), + [819] = { + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2766), + [anon_sym_package] = ACTIONS(2764), + [anon_sym_import] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2764), + [anon_sym_throw] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_cast] = ACTIONS(2764), + [anon_sym_DOLLARtype] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_untyped] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_this] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_AT_COLON] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2764), + [anon_sym_catch] = ACTIONS(2764), + [anon_sym_else] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_new] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_PERCENT] = ACTIONS(2766), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_LT_LT] = ACTIONS(2766), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP_AMP] = ACTIONS(2766), + [anon_sym_PIPE_PIPE] = ACTIONS(2766), + [anon_sym_EQ_EQ] = ACTIONS(2766), + [anon_sym_BANG_EQ] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_LT_EQ] = ACTIONS(2766), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_GT_EQ] = ACTIONS(2766), + [anon_sym_EQ_GT] = ACTIONS(2766), + [anon_sym_QMARK_QMARK] = ACTIONS(2766), + [anon_sym_EQ] = ACTIONS(2764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2766), + [anon_sym_null] = ACTIONS(2764), + [anon_sym_macro] = ACTIONS(2764), + [anon_sym_abstract] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2764), + [anon_sym_private] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym_inline] = ACTIONS(2764), + [anon_sym_overload] = ACTIONS(2764), + [anon_sym_override] = ACTIONS(2764), + [anon_sym_final] = ACTIONS(2764), + [anon_sym_class] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_typedef] = ACTIONS(2764), + [anon_sym_function] = ACTIONS(2764), + [anon_sym_var] = ACTIONS(2764), + [aux_sym_integer_token1] = ACTIONS(2764), + [aux_sym_integer_token2] = ACTIONS(2766), + [aux_sym_float_token1] = ACTIONS(2764), + [aux_sym_float_token2] = ACTIONS(2766), + [anon_sym_true] = ACTIONS(2764), + [anon_sym_false] = ACTIONS(2764), + [aux_sym_string_token1] = ACTIONS(2766), + [aux_sym_string_token3] = ACTIONS(2766), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(2236), - [sym_identifier] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2236), - [anon_sym_package] = ACTIONS(2234), - [anon_sym_import] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_using] = ACTIONS(2234), - [anon_sym_throw] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_switch] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2236), - [anon_sym_cast] = ACTIONS(2234), - [anon_sym_DOLLARtype] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_untyped] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_this] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_AT_COLON] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_TILDE] = ACTIONS(2236), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(2236), - [anon_sym_DASH_DASH] = ACTIONS(2236), - [anon_sym_PERCENT] = ACTIONS(2236), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_LT_LT] = ACTIONS(2236), - [anon_sym_GT_GT] = ACTIONS(2234), - [anon_sym_GT_GT_GT] = ACTIONS(2236), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_CARET] = ACTIONS(2236), - [anon_sym_AMP_AMP] = ACTIONS(2236), - [anon_sym_PIPE_PIPE] = ACTIONS(2236), - [anon_sym_EQ_EQ] = ACTIONS(2236), - [anon_sym_BANG_EQ] = ACTIONS(2236), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_LT_EQ] = ACTIONS(2236), - [anon_sym_GT] = ACTIONS(2234), - [anon_sym_GT_EQ] = ACTIONS(2236), - [anon_sym_EQ_GT] = ACTIONS(2236), - [anon_sym_QMARK_QMARK] = ACTIONS(2236), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2236), - [anon_sym_null] = ACTIONS(2234), - [anon_sym_macro] = ACTIONS(2234), - [anon_sym_abstract] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_public] = ACTIONS(2234), - [anon_sym_private] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_inline] = ACTIONS(2234), - [anon_sym_overload] = ACTIONS(2234), - [anon_sym_override] = ACTIONS(2234), - [anon_sym_final] = ACTIONS(2234), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(2234), - [anon_sym_function] = ACTIONS(2234), - [anon_sym_var] = ACTIONS(2234), - [aux_sym_integer_token1] = ACTIONS(2234), - [aux_sym_integer_token2] = ACTIONS(2236), - [aux_sym_float_token1] = ACTIONS(2234), - [aux_sym_float_token2] = ACTIONS(2236), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [aux_sym_string_token1] = ACTIONS(2236), - [aux_sym_string_token3] = ACTIONS(2236), + [820] = { + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2770), + [anon_sym_package] = ACTIONS(2768), + [anon_sym_import] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_using] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_cast] = ACTIONS(2768), + [anon_sym_DOLLARtype] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_untyped] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_this] = ACTIONS(2768), + [anon_sym_AT] = ACTIONS(2768), + [anon_sym_AT_COLON] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_catch] = ACTIONS(2768), + [anon_sym_else] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_PERCENT] = ACTIONS(2770), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2770), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym_GT_GT_GT] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_PIPE_PIPE] = ACTIONS(2770), + [anon_sym_EQ_EQ] = ACTIONS(2770), + [anon_sym_BANG_EQ] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_EQ] = ACTIONS(2770), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2770), + [anon_sym_EQ_GT] = ACTIONS(2770), + [anon_sym_QMARK_QMARK] = ACTIONS(2770), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_macro] = ACTIONS(2768), + [anon_sym_abstract] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_public] = ACTIONS(2768), + [anon_sym_private] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym_overload] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_interface] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_typedef] = ACTIONS(2768), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_var] = ACTIONS(2768), + [aux_sym_integer_token1] = ACTIONS(2768), + [aux_sym_integer_token2] = ACTIONS(2770), + [aux_sym_float_token1] = ACTIONS(2768), + [aux_sym_float_token2] = ACTIONS(2770), + [anon_sym_true] = ACTIONS(2768), + [anon_sym_false] = ACTIONS(2768), + [aux_sym_string_token1] = ACTIONS(2770), + [aux_sym_string_token3] = ACTIONS(2770), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [802] = { - [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_STAR] = ACTIONS(2266), - [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_for] = ACTIONS(2264), - [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_try] = ACTIONS(2264), - [anon_sym_catch] = ACTIONS(2264), - [anon_sym_else] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [821] = { + [ts_builtin_sym_end] = ACTIONS(3306), + [sym_identifier] = ACTIONS(3304), + [anon_sym_POUND] = ACTIONS(3306), + [anon_sym_package] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_cast] = ACTIONS(3304), + [anon_sym_DOLLARtype] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_untyped] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_this] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_AT_COLON] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_catch] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_LT_LT] = ACTIONS(3306), + [anon_sym_GT_GT] = ACTIONS(3304), + [anon_sym_GT_GT_GT] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3304), + [anon_sym_CARET] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_EQ_EQ] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_LT_EQ] = ACTIONS(3306), + [anon_sym_GT] = ACTIONS(3304), + [anon_sym_GT_EQ] = ACTIONS(3306), + [anon_sym_EQ_GT] = ACTIONS(3306), + [anon_sym_QMARK_QMARK] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_macro] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym_overload] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_final] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_typedef] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [aux_sym_integer_token1] = ACTIONS(3304), + [aux_sym_integer_token2] = ACTIONS(3306), + [aux_sym_float_token1] = ACTIONS(3304), + [aux_sym_float_token2] = ACTIONS(3306), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym_string_token1] = ACTIONS(3306), + [aux_sym_string_token3] = ACTIONS(3306), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(810), - [sym_identifier] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(810), - [anon_sym_for] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_this] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(810), - [anon_sym_try] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_if] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_new] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(810), - [anon_sym_PERCENT] = ACTIONS(810), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(810), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_GT_GT_GT] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym_AMP_AMP] = ACTIONS(810), - [anon_sym_PIPE_PIPE] = ACTIONS(810), - [anon_sym_EQ_EQ] = ACTIONS(810), - [anon_sym_BANG_EQ] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(810), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(810), - [anon_sym_EQ_GT] = ACTIONS(810), - [anon_sym_QMARK_QMARK] = ACTIONS(810), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(810), - [anon_sym_null] = ACTIONS(814), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_interface] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_typedef] = ACTIONS(814), - [anon_sym_function] = ACTIONS(814), - [anon_sym_var] = ACTIONS(814), - [aux_sym_integer_token1] = ACTIONS(814), - [aux_sym_integer_token2] = ACTIONS(810), - [aux_sym_float_token1] = ACTIONS(814), - [aux_sym_float_token2] = ACTIONS(810), - [anon_sym_true] = ACTIONS(814), - [anon_sym_false] = ACTIONS(814), - [aux_sym_string_token1] = ACTIONS(810), - [aux_sym_string_token3] = ACTIONS(810), + [822] = { + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2774), + [anon_sym_package] = ACTIONS(2772), + [anon_sym_import] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_using] = ACTIONS(2772), + [anon_sym_throw] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_cast] = ACTIONS(2772), + [anon_sym_DOLLARtype] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_untyped] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_this] = ACTIONS(2772), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_AT_COLON] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2772), + [anon_sym_catch] = ACTIONS(2772), + [anon_sym_else] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_new] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_LT_LT] = ACTIONS(2774), + [anon_sym_GT_GT] = ACTIONS(2772), + [anon_sym_GT_GT_GT] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_EQ_EQ] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_LT_EQ] = ACTIONS(2774), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_EQ] = ACTIONS(2774), + [anon_sym_EQ_GT] = ACTIONS(2774), + [anon_sym_QMARK_QMARK] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2774), + [anon_sym_null] = ACTIONS(2772), + [anon_sym_macro] = ACTIONS(2772), + [anon_sym_abstract] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_public] = ACTIONS(2772), + [anon_sym_private] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym_inline] = ACTIONS(2772), + [anon_sym_overload] = ACTIONS(2772), + [anon_sym_override] = ACTIONS(2772), + [anon_sym_final] = ACTIONS(2772), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_interface] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_typedef] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(2772), + [anon_sym_var] = ACTIONS(2772), + [aux_sym_integer_token1] = ACTIONS(2772), + [aux_sym_integer_token2] = ACTIONS(2774), + [aux_sym_float_token1] = ACTIONS(2772), + [aux_sym_float_token2] = ACTIONS(2774), + [anon_sym_true] = ACTIONS(2772), + [anon_sym_false] = ACTIONS(2772), + [aux_sym_string_token1] = ACTIONS(2774), + [aux_sym_string_token3] = ACTIONS(2774), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [804] = { - [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_STAR] = ACTIONS(2274), - [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_for] = ACTIONS(2272), - [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_try] = ACTIONS(2272), - [anon_sym_catch] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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), + [823] = { + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2778), + [anon_sym_package] = ACTIONS(2776), + [anon_sym_import] = ACTIONS(2776), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_using] = ACTIONS(2776), + [anon_sym_throw] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_cast] = ACTIONS(2776), + [anon_sym_DOLLARtype] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_untyped] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_this] = ACTIONS(2776), + [anon_sym_AT] = ACTIONS(2776), + [anon_sym_AT_COLON] = ACTIONS(2778), + [anon_sym_try] = ACTIONS(2776), + [anon_sym_catch] = ACTIONS(2776), + [anon_sym_else] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_PERCENT] = ACTIONS(2778), + [anon_sym_SLASH] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_LT_LT] = ACTIONS(2778), + [anon_sym_GT_GT] = ACTIONS(2776), + [anon_sym_GT_GT_GT] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_CARET] = ACTIONS(2778), + [anon_sym_AMP_AMP] = ACTIONS(2778), + [anon_sym_PIPE_PIPE] = ACTIONS(2778), + [anon_sym_EQ_EQ] = ACTIONS(2778), + [anon_sym_BANG_EQ] = ACTIONS(2778), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_LT_EQ] = ACTIONS(2778), + [anon_sym_GT] = ACTIONS(2776), + [anon_sym_GT_EQ] = ACTIONS(2778), + [anon_sym_EQ_GT] = ACTIONS(2778), + [anon_sym_QMARK_QMARK] = ACTIONS(2778), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2778), + [anon_sym_null] = ACTIONS(2776), + [anon_sym_macro] = ACTIONS(2776), + [anon_sym_abstract] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_public] = ACTIONS(2776), + [anon_sym_private] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym_inline] = ACTIONS(2776), + [anon_sym_overload] = ACTIONS(2776), + [anon_sym_override] = ACTIONS(2776), + [anon_sym_final] = ACTIONS(2776), + [anon_sym_class] = ACTIONS(2776), + [anon_sym_interface] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2776), + [anon_sym_var] = ACTIONS(2776), + [aux_sym_integer_token1] = ACTIONS(2776), + [aux_sym_integer_token2] = ACTIONS(2778), + [aux_sym_float_token1] = ACTIONS(2776), + [aux_sym_float_token2] = ACTIONS(2778), + [anon_sym_true] = ACTIONS(2776), + [anon_sym_false] = ACTIONS(2776), + [aux_sym_string_token1] = ACTIONS(2778), + [aux_sym_string_token3] = ACTIONS(2778), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [805] = { - [ts_builtin_sym_end] = ACTIONS(2100), - [sym_identifier] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_package] = ACTIONS(2098), - [anon_sym_import] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_using] = ACTIONS(2098), - [anon_sym_throw] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_switch] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_cast] = ACTIONS(2098), - [anon_sym_DOLLARtype] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_untyped] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_this] = ACTIONS(2098), - [anon_sym_AT] = ACTIONS(2098), - [anon_sym_AT_COLON] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_catch] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_new] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_PERCENT] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_GT_GT_GT] = ACTIONS(2100), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_CARET] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_EQ_EQ] = ACTIONS(2100), - [anon_sym_BANG_EQ] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_QMARK_QMARK] = ACTIONS(2100), - [anon_sym_EQ] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2100), - [anon_sym_null] = ACTIONS(2098), - [anon_sym_macro] = ACTIONS(2098), - [anon_sym_abstract] = ACTIONS(2098), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_public] = ACTIONS(2098), - [anon_sym_private] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_inline] = ACTIONS(2098), - [anon_sym_overload] = ACTIONS(2098), - [anon_sym_override] = ACTIONS(2098), - [anon_sym_final] = ACTIONS(2098), - [anon_sym_class] = ACTIONS(2098), - [anon_sym_interface] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_typedef] = ACTIONS(2098), - [anon_sym_function] = ACTIONS(2098), - [anon_sym_var] = ACTIONS(2098), - [aux_sym_integer_token1] = ACTIONS(2098), - [aux_sym_integer_token2] = ACTIONS(2100), - [aux_sym_float_token1] = ACTIONS(2098), - [aux_sym_float_token2] = ACTIONS(2100), - [anon_sym_true] = ACTIONS(2098), - [anon_sym_false] = ACTIONS(2098), - [aux_sym_string_token1] = ACTIONS(2100), - [aux_sym_string_token3] = ACTIONS(2100), + [824] = { + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2690), + [anon_sym_package] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_using] = ACTIONS(2688), + [anon_sym_throw] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2690), + [anon_sym_switch] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_cast] = ACTIONS(2688), + [anon_sym_DOLLARtype] = ACTIONS(2690), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_untyped] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_this] = ACTIONS(2688), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_AT_COLON] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_catch] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_do] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PERCENT] = ACTIONS(2690), + [anon_sym_SLASH] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_LT_LT] = ACTIONS(2690), + [anon_sym_GT_GT] = ACTIONS(2688), + [anon_sym_GT_GT_GT] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(2690), + [anon_sym_PIPE_PIPE] = ACTIONS(2690), + [anon_sym_EQ_EQ] = ACTIONS(2690), + [anon_sym_BANG_EQ] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_LT_EQ] = ACTIONS(2690), + [anon_sym_GT] = ACTIONS(2688), + [anon_sym_GT_EQ] = ACTIONS(2690), + [anon_sym_EQ_GT] = ACTIONS(2690), + [anon_sym_QMARK_QMARK] = ACTIONS(2690), + [anon_sym_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2690), + [anon_sym_null] = ACTIONS(2688), + [anon_sym_macro] = ACTIONS(2688), + [anon_sym_abstract] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_private] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_overload] = ACTIONS(2688), + [anon_sym_override] = ACTIONS(2688), + [anon_sym_final] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_interface] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_typedef] = ACTIONS(2688), + [anon_sym_function] = ACTIONS(2688), + [anon_sym_var] = ACTIONS(2688), + [aux_sym_integer_token1] = ACTIONS(2688), + [aux_sym_integer_token2] = ACTIONS(2690), + [aux_sym_float_token1] = ACTIONS(2688), + [aux_sym_float_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2688), + [anon_sym_false] = ACTIONS(2688), + [aux_sym_string_token1] = ACTIONS(2690), + [aux_sym_string_token3] = ACTIONS(2690), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [806] = { + [825] = { [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), + [sym_identifier] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_package] = ACTIONS(2784), - [anon_sym_import] = ACTIONS(2784), + [anon_sym_package] = ACTIONS(2780), + [anon_sym_import] = ACTIONS(2780), [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2784), - [anon_sym_throw] = ACTIONS(2784), + [anon_sym_using] = ACTIONS(2780), + [anon_sym_throw] = ACTIONS(2780), [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2780), [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_cast] = ACTIONS(2784), + [anon_sym_cast] = ACTIONS(2780), [anon_sym_DOLLARtype] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_untyped] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_untyped] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_this] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), + [anon_sym_this] = ACTIONS(2780), + [anon_sym_AT] = ACTIONS(2780), [anon_sym_AT_COLON] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_new] = ACTIONS(2784), + [anon_sym_try] = ACTIONS(2780), + [anon_sym_catch] = ACTIONS(2780), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(2780), [anon_sym_TILDE] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), [anon_sym_PLUS_PLUS] = ACTIONS(2782), [anon_sym_DASH_DASH] = ACTIONS(2782), [anon_sym_PERCENT] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), [anon_sym_LT_LT] = ACTIONS(2782), - [anon_sym_GT_GT] = ACTIONS(2784), + [anon_sym_GT_GT] = ACTIONS(2780), [anon_sym_GT_GT_GT] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), [anon_sym_CARET] = ACTIONS(2782), [anon_sym_AMP_AMP] = ACTIONS(2782), [anon_sym_PIPE_PIPE] = ACTIONS(2782), [anon_sym_EQ_EQ] = ACTIONS(2782), [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2780), [anon_sym_LT_EQ] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2784), + [anon_sym_GT] = ACTIONS(2780), [anon_sym_GT_EQ] = ACTIONS(2782), [anon_sym_EQ_GT] = ACTIONS(2782), [anon_sym_QMARK_QMARK] = ACTIONS(2782), - [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_EQ] = ACTIONS(2780), [anon_sym_DOT_DOT_DOT] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_macro] = ACTIONS(2784), - [anon_sym_abstract] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_public] = ACTIONS(2784), - [anon_sym_private] = ACTIONS(2784), - [anon_sym_extern] = ACTIONS(2784), - [anon_sym_inline] = ACTIONS(2784), - [anon_sym_overload] = ACTIONS(2784), - [anon_sym_override] = ACTIONS(2784), - [anon_sym_final] = ACTIONS(2784), - [anon_sym_class] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_typedef] = ACTIONS(2784), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_var] = ACTIONS(2784), - [aux_sym_integer_token1] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2780), + [anon_sym_macro] = ACTIONS(2780), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_public] = ACTIONS(2780), + [anon_sym_private] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym_inline] = ACTIONS(2780), + [anon_sym_overload] = ACTIONS(2780), + [anon_sym_override] = ACTIONS(2780), + [anon_sym_final] = ACTIONS(2780), + [anon_sym_class] = ACTIONS(2780), + [anon_sym_interface] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_typedef] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(2780), + [anon_sym_var] = ACTIONS(2780), + [aux_sym_integer_token1] = ACTIONS(2780), [aux_sym_integer_token2] = ACTIONS(2782), - [aux_sym_float_token1] = ACTIONS(2784), + [aux_sym_float_token1] = ACTIONS(2780), [aux_sym_float_token2] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2784), - [anon_sym_false] = ACTIONS(2784), + [anon_sym_true] = ACTIONS(2780), + [anon_sym_false] = ACTIONS(2780), [aux_sym_string_token1] = ACTIONS(2782), [aux_sym_string_token3] = ACTIONS(2782), [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2786), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [807] = { + [826] = { + [ts_builtin_sym_end] = ACTIONS(2786), [sym_identifier] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(2786), [anon_sym_package] = ACTIONS(2784), [anon_sym_import] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_STAR] = ACTIONS(2786), [anon_sym_using] = ACTIONS(2784), [anon_sym_throw] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2786), [anon_sym_switch] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE] = ACTIONS(2786), [anon_sym_cast] = ACTIONS(2784), - [anon_sym_DOLLARtype] = ACTIONS(2782), + [anon_sym_DOLLARtype] = ACTIONS(2786), [anon_sym_for] = ACTIONS(2784), [anon_sym_return] = ACTIONS(2784), [anon_sym_untyped] = ACTIONS(2784), [anon_sym_break] = ACTIONS(2784), [anon_sym_continue] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2786), [anon_sym_this] = ACTIONS(2784), [anon_sym_AT] = ACTIONS(2784), - [anon_sym_AT_COLON] = ACTIONS(2782), + [anon_sym_AT_COLON] = ACTIONS(2786), [anon_sym_try] = ACTIONS(2784), + [anon_sym_catch] = ACTIONS(2784), + [anon_sym_else] = ACTIONS(2784), [anon_sym_if] = ACTIONS(2784), [anon_sym_while] = ACTIONS(2784), [anon_sym_do] = ACTIONS(2784), [anon_sym_new] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2786), [anon_sym_BANG] = ACTIONS(2784), [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_PERCENT] = ACTIONS(2786), [anon_sym_SLASH] = ACTIONS(2784), [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2782), + [anon_sym_LT_LT] = ACTIONS(2786), [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2782), + [anon_sym_GT_GT_GT] = ACTIONS(2786), [anon_sym_AMP] = ACTIONS(2784), [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_EQ_EQ] = ACTIONS(2782), - [anon_sym_BANG_EQ] = ACTIONS(2782), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP_AMP] = ACTIONS(2786), + [anon_sym_PIPE_PIPE] = ACTIONS(2786), + [anon_sym_EQ_EQ] = ACTIONS(2786), + [anon_sym_BANG_EQ] = ACTIONS(2786), [anon_sym_LT] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(2786), [anon_sym_GT] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2782), - [anon_sym_EQ_GT] = ACTIONS(2782), - [anon_sym_QMARK_QMARK] = ACTIONS(2782), + [anon_sym_GT_EQ] = ACTIONS(2786), + [anon_sym_EQ_GT] = ACTIONS(2786), + [anon_sym_QMARK_QMARK] = ACTIONS(2786), [anon_sym_EQ] = ACTIONS(2784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2786), [anon_sym_null] = ACTIONS(2784), [anon_sym_macro] = ACTIONS(2784), [anon_sym_abstract] = ACTIONS(2784), @@ -86205,153 +89731,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2784), [anon_sym_var] = ACTIONS(2784), [aux_sym_integer_token1] = ACTIONS(2784), - [aux_sym_integer_token2] = ACTIONS(2782), + [aux_sym_integer_token2] = ACTIONS(2786), [aux_sym_float_token1] = ACTIONS(2784), - [aux_sym_float_token2] = ACTIONS(2782), + [aux_sym_float_token2] = ACTIONS(2786), [anon_sym_true] = ACTIONS(2784), [anon_sym_false] = ACTIONS(2784), - [aux_sym_string_token1] = ACTIONS(2782), - [aux_sym_string_token3] = ACTIONS(2782), + [aux_sym_string_token1] = ACTIONS(2786), + [aux_sym_string_token3] = ACTIONS(2786), [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2788), - [sym__closing_brace_marker] = ACTIONS(2782), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_identifier] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_package] = ACTIONS(2792), - [anon_sym_import] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2792), - [anon_sym_throw] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_cast] = ACTIONS(2792), - [anon_sym_DOLLARtype] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_untyped] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_this] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_AT_COLON] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_while] = ACTIONS(2792), - [anon_sym_do] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), + [827] = { + [sym_else_clause] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_cast] = ACTIONS(2640), + [anon_sym_DOLLARtype] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_untyped] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_AT_COLON] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_LT_LT] = ACTIONS(2642), + [anon_sym_GT_GT] = ACTIONS(2640), + [anon_sym_GT_GT_GT] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_CARET] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_PIPE_PIPE] = ACTIONS(2642), + [anon_sym_EQ_EQ] = ACTIONS(2642), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_LT_EQ] = ACTIONS(2642), + [anon_sym_GT] = ACTIONS(2640), + [anon_sym_GT_EQ] = ACTIONS(2642), + [anon_sym_EQ_GT] = ACTIONS(2642), + [anon_sym_QMARK_QMARK] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_macro] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_inline] = ACTIONS(2640), + [anon_sym_overload] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_final] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_typedef] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [aux_sym_integer_token1] = ACTIONS(2640), + [aux_sym_integer_token2] = ACTIONS(2642), + [aux_sym_float_token1] = ACTIONS(2640), + [aux_sym_float_token2] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [aux_sym_string_token1] = ACTIONS(2642), + [aux_sym_string_token3] = ACTIONS(2642), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [828] = { + [ts_builtin_sym_end] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_package] = ACTIONS(2788), + [anon_sym_import] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2788), + [anon_sym_throw] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_cast] = ACTIONS(2788), + [anon_sym_DOLLARtype] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_untyped] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_this] = ACTIONS(2788), + [anon_sym_AT] = ACTIONS(2788), + [anon_sym_AT_COLON] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2788), + [anon_sym_catch] = ACTIONS(2788), + [anon_sym_else] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_new] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2792), + [anon_sym_GT_GT] = ACTIONS(2788), [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), [anon_sym_CARET] = ACTIONS(2790), [anon_sym_AMP_AMP] = ACTIONS(2790), [anon_sym_PIPE_PIPE] = ACTIONS(2790), [anon_sym_EQ_EQ] = ACTIONS(2790), [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), + [anon_sym_LT] = ACTIONS(2788), [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2792), + [anon_sym_GT] = ACTIONS(2788), [anon_sym_GT_EQ] = ACTIONS(2790), [anon_sym_EQ_GT] = ACTIONS(2790), [anon_sym_QMARK_QMARK] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), + [anon_sym_EQ] = ACTIONS(2788), [anon_sym_DOT_DOT_DOT] = ACTIONS(2790), - [anon_sym_null] = ACTIONS(2792), - [anon_sym_macro] = ACTIONS(2792), - [anon_sym_abstract] = ACTIONS(2792), - [anon_sym_static] = ACTIONS(2792), - [anon_sym_public] = ACTIONS(2792), - [anon_sym_private] = ACTIONS(2792), - [anon_sym_extern] = ACTIONS(2792), - [anon_sym_inline] = ACTIONS(2792), - [anon_sym_overload] = ACTIONS(2792), - [anon_sym_override] = ACTIONS(2792), - [anon_sym_final] = ACTIONS(2792), - [anon_sym_class] = ACTIONS(2792), - [anon_sym_interface] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_typedef] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2792), - [anon_sym_var] = ACTIONS(2792), - [aux_sym_integer_token1] = ACTIONS(2792), + [anon_sym_null] = ACTIONS(2788), + [anon_sym_macro] = ACTIONS(2788), + [anon_sym_abstract] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2788), + [anon_sym_private] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym_inline] = ACTIONS(2788), + [anon_sym_overload] = ACTIONS(2788), + [anon_sym_override] = ACTIONS(2788), + [anon_sym_final] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(2788), + [anon_sym_interface] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_typedef] = ACTIONS(2788), + [anon_sym_function] = ACTIONS(2788), + [anon_sym_var] = ACTIONS(2788), + [aux_sym_integer_token1] = ACTIONS(2788), [aux_sym_integer_token2] = ACTIONS(2790), - [aux_sym_float_token1] = ACTIONS(2792), + [aux_sym_float_token1] = ACTIONS(2788), [aux_sym_float_token2] = ACTIONS(2790), - [anon_sym_true] = ACTIONS(2792), - [anon_sym_false] = ACTIONS(2792), + [anon_sym_true] = ACTIONS(2788), + [anon_sym_false] = ACTIONS(2788), [aux_sym_string_token1] = ACTIONS(2790), [aux_sym_string_token3] = ACTIONS(2790), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [809] = { + [829] = { + [ts_builtin_sym_end] = ACTIONS(2794), [sym_identifier] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_POUND] = ACTIONS(2794), [anon_sym_package] = ACTIONS(2792), [anon_sym_import] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2794), [anon_sym_using] = ACTIONS(2792), [anon_sym_throw] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2794), [anon_sym_switch] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2794), [anon_sym_cast] = ACTIONS(2792), - [anon_sym_DOLLARtype] = ACTIONS(2790), + [anon_sym_DOLLARtype] = ACTIONS(2794), [anon_sym_for] = ACTIONS(2792), [anon_sym_return] = ACTIONS(2792), [anon_sym_untyped] = ACTIONS(2792), [anon_sym_break] = ACTIONS(2792), [anon_sym_continue] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2794), [anon_sym_this] = ACTIONS(2792), [anon_sym_AT] = ACTIONS(2792), - [anon_sym_AT_COLON] = ACTIONS(2790), + [anon_sym_AT_COLON] = ACTIONS(2794), [anon_sym_try] = ACTIONS(2792), + [anon_sym_catch] = ACTIONS(2792), + [anon_sym_else] = ACTIONS(2792), [anon_sym_if] = ACTIONS(2792), [anon_sym_while] = ACTIONS(2792), [anon_sym_do] = ACTIONS(2792), [anon_sym_new] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2794), [anon_sym_BANG] = ACTIONS(2792), [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), [anon_sym_SLASH] = ACTIONS(2792), [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_LT_LT] = ACTIONS(2794), [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2790), + [anon_sym_GT_GT_GT] = ACTIONS(2794), [anon_sym_AMP] = ACTIONS(2792), [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2794), + [anon_sym_BANG_EQ] = ACTIONS(2794), [anon_sym_LT] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2790), + [anon_sym_LT_EQ] = ACTIONS(2794), [anon_sym_GT] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_EQ_GT] = ACTIONS(2790), - [anon_sym_QMARK_QMARK] = ACTIONS(2790), + [anon_sym_GT_EQ] = ACTIONS(2794), + [anon_sym_EQ_GT] = ACTIONS(2794), + [anon_sym_QMARK_QMARK] = ACTIONS(2794), [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2794), [anon_sym_null] = ACTIONS(2792), [anon_sym_macro] = ACTIONS(2792), [anon_sym_abstract] = ACTIONS(2792), @@ -86370,1452 +89983,1924 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2792), [anon_sym_var] = ACTIONS(2792), [aux_sym_integer_token1] = ACTIONS(2792), - [aux_sym_integer_token2] = ACTIONS(2790), + [aux_sym_integer_token2] = ACTIONS(2794), [aux_sym_float_token1] = ACTIONS(2792), - [aux_sym_float_token2] = ACTIONS(2790), + [aux_sym_float_token2] = ACTIONS(2794), [anon_sym_true] = ACTIONS(2792), [anon_sym_false] = ACTIONS(2792), - [aux_sym_string_token1] = ACTIONS(2790), - [aux_sym_string_token3] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2790), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(295), - [sym_identifier] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(295), - [anon_sym_package] = ACTIONS(2794), - [anon_sym_import] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_using] = ACTIONS(2794), - [anon_sym_throw] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_switch] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_cast] = ACTIONS(2794), - [anon_sym_DOLLARtype] = ACTIONS(295), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_untyped] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_this] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2794), - [anon_sym_AT_COLON] = ACTIONS(295), - [anon_sym_try] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_do] = ACTIONS(2794), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(295), - [anon_sym_DASH_DASH] = ACTIONS(295), - [anon_sym_PERCENT] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(295), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(295), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_AMP_AMP] = ACTIONS(295), - [anon_sym_PIPE_PIPE] = ACTIONS(295), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_EQ_GT] = ACTIONS(295), - [anon_sym_QMARK_QMARK] = ACTIONS(295), - [anon_sym_EQ] = ACTIONS(2794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(295), - [anon_sym_null] = ACTIONS(2794), - [anon_sym_macro] = ACTIONS(2794), - [anon_sym_abstract] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_public] = ACTIONS(2794), - [anon_sym_private] = ACTIONS(2794), - [anon_sym_extern] = ACTIONS(2794), - [anon_sym_inline] = ACTIONS(2794), - [anon_sym_overload] = ACTIONS(2794), - [anon_sym_override] = ACTIONS(2794), - [anon_sym_final] = ACTIONS(2794), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_typedef] = ACTIONS(2794), - [anon_sym_function] = ACTIONS(2794), - [anon_sym_var] = ACTIONS(2794), - [aux_sym_integer_token1] = ACTIONS(2794), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(2794), - [aux_sym_float_token2] = ACTIONS(295), - [anon_sym_true] = ACTIONS(2794), - [anon_sym_false] = ACTIONS(2794), - [aux_sym_string_token1] = ACTIONS(295), - [aux_sym_string_token3] = ACTIONS(295), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [811] = { - [sym_identifier] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(295), - [anon_sym_package] = ACTIONS(2794), - [anon_sym_import] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(295), - [anon_sym_using] = ACTIONS(2794), - [anon_sym_throw] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_switch] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_cast] = ACTIONS(2794), - [anon_sym_DOLLARtype] = ACTIONS(295), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_untyped] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_this] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2794), - [anon_sym_AT_COLON] = ACTIONS(295), - [anon_sym_try] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_do] = ACTIONS(2794), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(295), - [anon_sym_DASH_DASH] = ACTIONS(295), - [anon_sym_PERCENT] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(295), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(295), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_AMP_AMP] = ACTIONS(295), - [anon_sym_PIPE_PIPE] = ACTIONS(295), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_EQ_GT] = ACTIONS(295), - [anon_sym_QMARK_QMARK] = ACTIONS(295), - [anon_sym_EQ] = ACTIONS(2794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(295), - [anon_sym_null] = ACTIONS(2794), - [anon_sym_macro] = ACTIONS(2794), - [anon_sym_abstract] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_public] = ACTIONS(2794), - [anon_sym_private] = ACTIONS(2794), - [anon_sym_extern] = ACTIONS(2794), - [anon_sym_inline] = ACTIONS(2794), - [anon_sym_overload] = ACTIONS(2794), - [anon_sym_override] = ACTIONS(2794), - [anon_sym_final] = ACTIONS(2794), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_typedef] = ACTIONS(2794), - [anon_sym_function] = ACTIONS(2794), - [anon_sym_var] = ACTIONS(2794), - [aux_sym_integer_token1] = ACTIONS(2794), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(2794), - [aux_sym_float_token2] = ACTIONS(295), - [anon_sym_true] = ACTIONS(2794), - [anon_sym_false] = ACTIONS(2794), - [aux_sym_string_token1] = ACTIONS(295), - [aux_sym_string_token3] = ACTIONS(295), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(295), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [812] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2741), - [sym_integer] = STATE(2741), - [sym_float] = STATE(2741), - [sym_bool] = STATE(2741), - [sym_string] = STATE(2213), - [sym_null] = STATE(2741), - [sym_array] = STATE(2741), - [sym_map] = STATE(2741), - [sym_object] = STATE(2741), - [sym_pair] = STATE(2741), - [aux_sym_member_expression_repeat1] = STATE(812), - [sym_identifier] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_cast] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_DOLLARtype] = ACTIONS(727), - [anon_sym_return] = ACTIONS(729), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_this] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_catch] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_new] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_GT_GT_GT] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(727), - [anon_sym_QMARK_QMARK] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [anon_sym_null] = ACTIONS(740), - [aux_sym_integer_token1] = ACTIONS(743), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(749), - [aux_sym_float_token2] = ACTIONS(752), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [aux_sym_string_token1] = ACTIONS(758), - [aux_sym_string_token3] = ACTIONS(761), + [aux_sym_string_token1] = ACTIONS(2794), + [aux_sym_string_token3] = ACTIONS(2794), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [813] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2741), - [sym_integer] = STATE(2741), - [sym_float] = STATE(2741), - [sym_bool] = STATE(2741), - [sym_string] = STATE(2213), - [sym_null] = STATE(2741), - [sym_array] = STATE(2741), - [sym_map] = STATE(2741), - [sym_object] = STATE(2741), - [sym_pair] = STATE(2741), - [aux_sym_member_expression_repeat1] = STATE(812), - [sym_identifier] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_DOLLARtype] = ACTIONS(764), - [anon_sym_return] = ACTIONS(766), - [anon_sym_untyped] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_catch] = ACTIONS(766), - [anon_sym_else] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_new] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(764), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [814] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2741), - [sym_integer] = STATE(2741), - [sym_float] = STATE(2741), - [sym_bool] = STATE(2741), - [sym_string] = STATE(2213), - [sym_null] = STATE(2741), - [sym_array] = STATE(2741), - [sym_map] = STATE(2741), - [sym_object] = STATE(2741), - [sym_pair] = STATE(2741), - [aux_sym_member_expression_repeat1] = STATE(812), - [sym_identifier] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_DOLLARtype] = ACTIONS(768), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(768), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(770), - [anon_sym_catch] = ACTIONS(770), - [anon_sym_else] = ACTIONS(770), - [anon_sym_while] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_GT] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(768), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [830] = { + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_package] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_cast] = ACTIONS(2868), + [anon_sym_DOLLARtype] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_untyped] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_this] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2868), + [anon_sym_AT_COLON] = ACTIONS(2870), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_catch] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2868), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2868), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_EQ_GT] = ACTIONS(2870), + [anon_sym_QMARK_QMARK] = ACTIONS(2870), + [anon_sym_EQ] = ACTIONS(2868), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_macro] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym_overload] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_final] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [aux_sym_integer_token1] = ACTIONS(2868), + [aux_sym_integer_token2] = ACTIONS(2870), + [aux_sym_float_token1] = ACTIONS(2868), + [aux_sym_float_token2] = ACTIONS(2870), + [anon_sym_true] = ACTIONS(2868), + [anon_sym_false] = ACTIONS(2868), + [aux_sym_string_token1] = ACTIONS(2870), + [aux_sym_string_token3] = ACTIONS(2870), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [815] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2741), - [sym_integer] = STATE(2741), - [sym_float] = STATE(2741), - [sym_bool] = STATE(2741), - [sym_string] = STATE(2213), - [sym_null] = STATE(2741), - [sym_array] = STATE(2741), - [sym_map] = STATE(2741), - [sym_object] = STATE(2741), - [sym_pair] = STATE(2741), - [aux_sym_member_expression_repeat1] = STATE(812), - [sym_identifier] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_DOLLARtype] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_untyped] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(666), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_catch] = ACTIONS(668), - [anon_sym_else] = ACTIONS(668), - [anon_sym_while] = ACTIONS(668), - [anon_sym_new] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(668), - [anon_sym_GT_GT_GT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(668), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_GT] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [831] = { + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2730), + [anon_sym_package] = ACTIONS(2728), + [anon_sym_import] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_using] = ACTIONS(2728), + [anon_sym_throw] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_cast] = ACTIONS(2728), + [anon_sym_DOLLARtype] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_untyped] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_this] = ACTIONS(2728), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_AT_COLON] = ACTIONS(2730), + [anon_sym_try] = ACTIONS(2728), + [anon_sym_catch] = ACTIONS(2728), + [anon_sym_else] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_new] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_PERCENT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_LT_LT] = ACTIONS(2730), + [anon_sym_GT_GT] = ACTIONS(2728), + [anon_sym_GT_GT_GT] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_AMP_AMP] = ACTIONS(2730), + [anon_sym_PIPE_PIPE] = ACTIONS(2730), + [anon_sym_EQ_EQ] = ACTIONS(2730), + [anon_sym_BANG_EQ] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_LT_EQ] = ACTIONS(2730), + [anon_sym_GT] = ACTIONS(2728), + [anon_sym_GT_EQ] = ACTIONS(2730), + [anon_sym_EQ_GT] = ACTIONS(2730), + [anon_sym_QMARK_QMARK] = ACTIONS(2730), + [anon_sym_EQ] = ACTIONS(2728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2730), + [anon_sym_null] = ACTIONS(2728), + [anon_sym_macro] = ACTIONS(2728), + [anon_sym_abstract] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_public] = ACTIONS(2728), + [anon_sym_private] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym_inline] = ACTIONS(2728), + [anon_sym_overload] = ACTIONS(2728), + [anon_sym_override] = ACTIONS(2728), + [anon_sym_final] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(2728), + [anon_sym_interface] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_typedef] = ACTIONS(2728), + [anon_sym_function] = ACTIONS(2728), + [anon_sym_var] = ACTIONS(2728), + [aux_sym_integer_token1] = ACTIONS(2728), + [aux_sym_integer_token2] = ACTIONS(2730), + [aux_sym_float_token1] = ACTIONS(2728), + [aux_sym_float_token2] = ACTIONS(2730), + [anon_sym_true] = ACTIONS(2728), + [anon_sym_false] = ACTIONS(2728), + [aux_sym_string_token1] = ACTIONS(2730), + [aux_sym_string_token3] = ACTIONS(2730), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [816] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2741), - [sym_integer] = STATE(2741), - [sym_float] = STATE(2741), - [sym_bool] = STATE(2741), - [sym_string] = STATE(2213), - [sym_null] = STATE(2741), - [sym_array] = STATE(2741), - [sym_map] = STATE(2741), - [sym_object] = STATE(2741), - [sym_pair] = STATE(2741), - [aux_sym_member_expression_repeat1] = STATE(812), - [sym_identifier] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(774), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_return] = ACTIONS(774), - [anon_sym_untyped] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(772), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_catch] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_new] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [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(774), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(772), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [832] = { + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_package] = ACTIONS(2644), + [anon_sym_import] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(2644), + [anon_sym_throw] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_cast] = ACTIONS(2644), + [anon_sym_DOLLARtype] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_untyped] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_this] = ACTIONS(2644), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_AT_COLON] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_catch] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_SLASH] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_LT_LT] = ACTIONS(2646), + [anon_sym_GT_GT] = ACTIONS(2644), + [anon_sym_GT_GT_GT] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_PIPE_PIPE] = ACTIONS(2646), + [anon_sym_EQ_EQ] = ACTIONS(2646), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_LT_EQ] = ACTIONS(2646), + [anon_sym_GT] = ACTIONS(2644), + [anon_sym_GT_EQ] = ACTIONS(2646), + [anon_sym_EQ_GT] = ACTIONS(2646), + [anon_sym_QMARK_QMARK] = ACTIONS(2646), + [anon_sym_EQ] = ACTIONS(2644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_macro] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym_inline] = ACTIONS(2644), + [anon_sym_overload] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_final] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_typedef] = ACTIONS(2644), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_var] = ACTIONS(2644), + [aux_sym_integer_token1] = ACTIONS(2644), + [aux_sym_integer_token2] = ACTIONS(2646), + [aux_sym_float_token1] = ACTIONS(2644), + [aux_sym_float_token2] = ACTIONS(2646), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym_string_token1] = ACTIONS(2646), + [aux_sym_string_token3] = ACTIONS(2646), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [817] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2703), - [sym_integer] = STATE(2703), - [sym_float] = STATE(2703), - [sym_bool] = STATE(2703), - [sym_string] = STATE(2213), - [sym_null] = STATE(2703), - [sym_array] = STATE(2703), - [sym_map] = STATE(2703), - [sym_object] = STATE(2703), - [sym_pair] = STATE(2703), - [aux_sym_member_expression_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_DOLLARtype] = ACTIONS(764), - [anon_sym_return] = ACTIONS(766), - [anon_sym_untyped] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_this] = ACTIONS(942), - [anon_sym_catch] = ACTIONS(766), - [anon_sym_else] = ACTIONS(766), - [anon_sym_while] = ACTIONS(766), - [anon_sym_new] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(764), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [833] = { + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_package] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_cast] = ACTIONS(2872), + [anon_sym_DOLLARtype] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_untyped] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_this] = ACTIONS(2872), + [anon_sym_AT] = ACTIONS(2872), + [anon_sym_AT_COLON] = ACTIONS(2874), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_catch] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_LT_LT] = ACTIONS(2874), + [anon_sym_GT_GT] = ACTIONS(2872), + [anon_sym_GT_GT_GT] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2874), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2872), + [anon_sym_LT_EQ] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2872), + [anon_sym_GT_EQ] = ACTIONS(2874), + [anon_sym_EQ_GT] = ACTIONS(2874), + [anon_sym_QMARK_QMARK] = ACTIONS(2874), + [anon_sym_EQ] = ACTIONS(2872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_macro] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_public] = ACTIONS(2872), + [anon_sym_private] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym_overload] = ACTIONS(2872), + [anon_sym_override] = ACTIONS(2872), + [anon_sym_final] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_interface] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_var] = ACTIONS(2872), + [aux_sym_integer_token1] = ACTIONS(2872), + [aux_sym_integer_token2] = ACTIONS(2874), + [aux_sym_float_token1] = ACTIONS(2872), + [aux_sym_float_token2] = ACTIONS(2874), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [aux_sym_string_token1] = ACTIONS(2874), + [aux_sym_string_token3] = ACTIONS(2874), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [818] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2703), - [sym_integer] = STATE(2703), - [sym_float] = STATE(2703), - [sym_bool] = STATE(2703), - [sym_string] = STATE(2213), - [sym_null] = STATE(2703), - [sym_array] = STATE(2703), - [sym_map] = STATE(2703), - [sym_object] = STATE(2703), - [sym_pair] = STATE(2703), - [aux_sym_member_expression_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_DOLLARtype] = ACTIONS(768), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(768), - [anon_sym_this] = ACTIONS(942), - [anon_sym_catch] = ACTIONS(770), - [anon_sym_else] = ACTIONS(770), - [anon_sym_while] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_GT] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(768), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [834] = { + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3190), + [anon_sym_POUND] = ACTIONS(3192), + [anon_sym_package] = ACTIONS(3190), + [anon_sym_import] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_cast] = ACTIONS(3190), + [anon_sym_DOLLARtype] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_untyped] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_this] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3190), + [anon_sym_AT_COLON] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_catch] = ACTIONS(3190), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_PERCENT] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_LT_LT] = ACTIONS(3192), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3192), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3192), + [anon_sym_AMP_AMP] = ACTIONS(3192), + [anon_sym_PIPE_PIPE] = ACTIONS(3192), + [anon_sym_EQ_EQ] = ACTIONS(3192), + [anon_sym_BANG_EQ] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_LT_EQ] = ACTIONS(3192), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_GT_EQ] = ACTIONS(3192), + [anon_sym_EQ_GT] = ACTIONS(3192), + [anon_sym_QMARK_QMARK] = ACTIONS(3192), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3192), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_macro] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_static] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_extern] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_overload] = ACTIONS(3190), + [anon_sym_override] = ACTIONS(3190), + [anon_sym_final] = ACTIONS(3190), + [anon_sym_class] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_typedef] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3190), + [anon_sym_var] = ACTIONS(3190), + [aux_sym_integer_token1] = ACTIONS(3190), + [aux_sym_integer_token2] = ACTIONS(3192), + [aux_sym_float_token1] = ACTIONS(3190), + [aux_sym_float_token2] = ACTIONS(3192), + [anon_sym_true] = ACTIONS(3190), + [anon_sym_false] = ACTIONS(3190), + [aux_sym_string_token1] = ACTIONS(3192), + [aux_sym_string_token3] = ACTIONS(3192), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [819] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2703), - [sym_integer] = STATE(2703), - [sym_float] = STATE(2703), - [sym_bool] = STATE(2703), - [sym_string] = STATE(2213), - [sym_null] = STATE(2703), - [sym_array] = STATE(2703), - [sym_map] = STATE(2703), - [sym_object] = STATE(2703), - [sym_pair] = STATE(2703), - [aux_sym_member_expression_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(774), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_return] = ACTIONS(774), - [anon_sym_untyped] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(772), - [anon_sym_this] = ACTIONS(942), - [anon_sym_catch] = ACTIONS(774), - [anon_sym_else] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_new] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [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(774), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(772), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), + [835] = { + [sym_identifier] = ACTIONS(3436), + [anon_sym_POUND] = ACTIONS(3438), + [anon_sym_package] = ACTIONS(3436), + [anon_sym_import] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3436), + [anon_sym_throw] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_cast] = ACTIONS(3436), + [anon_sym_DOLLARtype] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_untyped] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_this] = ACTIONS(3436), + [anon_sym_AT] = ACTIONS(3436), + [anon_sym_AT_COLON] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_do] = ACTIONS(3436), + [anon_sym_new] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_LT_LT] = ACTIONS(3438), + [anon_sym_GT_GT] = ACTIONS(3436), + [anon_sym_GT_GT_GT] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3436), + [anon_sym_PIPE] = ACTIONS(3436), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_EQ_EQ] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_LT_EQ] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3436), + [anon_sym_GT_EQ] = ACTIONS(3438), + [anon_sym_EQ_GT] = ACTIONS(3438), + [anon_sym_QMARK_QMARK] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3438), + [anon_sym_null] = ACTIONS(3436), + [anon_sym_macro] = ACTIONS(3436), + [anon_sym_abstract] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3436), + [anon_sym_private] = ACTIONS(3436), + [anon_sym_extern] = ACTIONS(3436), + [anon_sym_inline] = ACTIONS(3436), + [anon_sym_overload] = ACTIONS(3436), + [anon_sym_override] = ACTIONS(3436), + [anon_sym_final] = ACTIONS(3436), + [anon_sym_class] = ACTIONS(3436), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), + [anon_sym_typedef] = ACTIONS(3436), + [anon_sym_function] = ACTIONS(3436), + [anon_sym_var] = ACTIONS(3436), + [aux_sym_integer_token1] = ACTIONS(3436), + [aux_sym_integer_token2] = ACTIONS(3438), + [aux_sym_float_token1] = ACTIONS(3436), + [aux_sym_float_token2] = ACTIONS(3438), + [anon_sym_true] = ACTIONS(3436), + [anon_sym_false] = ACTIONS(3436), + [aux_sym_string_token1] = ACTIONS(3438), + [aux_sym_string_token3] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3440), + [sym__closing_brace_marker] = ACTIONS(3438), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [820] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2703), - [sym_integer] = STATE(2703), - [sym_float] = STATE(2703), - [sym_bool] = STATE(2703), - [sym_string] = STATE(2213), - [sym_null] = STATE(2703), - [sym_array] = STATE(2703), - [sym_map] = STATE(2703), - [sym_object] = STATE(2703), - [sym_pair] = STATE(2703), - [aux_sym_member_expression_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_DOLLARtype] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_untyped] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(666), - [anon_sym_this] = ACTIONS(942), - [anon_sym_catch] = ACTIONS(668), - [anon_sym_else] = ACTIONS(668), - [anon_sym_while] = ACTIONS(668), - [anon_sym_new] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(668), - [anon_sym_GT_GT_GT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(668), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_GT] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), + [836] = { + [ts_builtin_sym_end] = ACTIONS(3438), + [sym_identifier] = ACTIONS(3436), + [anon_sym_POUND] = ACTIONS(3438), + [anon_sym_package] = ACTIONS(3436), + [anon_sym_import] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_using] = ACTIONS(3436), + [anon_sym_throw] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_cast] = ACTIONS(3436), + [anon_sym_DOLLARtype] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_untyped] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_this] = ACTIONS(3436), + [anon_sym_AT] = ACTIONS(3436), + [anon_sym_AT_COLON] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_do] = ACTIONS(3436), + [anon_sym_new] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_LT_LT] = ACTIONS(3438), + [anon_sym_GT_GT] = ACTIONS(3436), + [anon_sym_GT_GT_GT] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3436), + [anon_sym_PIPE] = ACTIONS(3436), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_EQ_EQ] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_LT_EQ] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3436), + [anon_sym_GT_EQ] = ACTIONS(3438), + [anon_sym_EQ_GT] = ACTIONS(3438), + [anon_sym_QMARK_QMARK] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3438), + [anon_sym_null] = ACTIONS(3436), + [anon_sym_macro] = ACTIONS(3436), + [anon_sym_abstract] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_public] = ACTIONS(3436), + [anon_sym_private] = ACTIONS(3436), + [anon_sym_extern] = ACTIONS(3436), + [anon_sym_inline] = ACTIONS(3436), + [anon_sym_overload] = ACTIONS(3436), + [anon_sym_override] = ACTIONS(3436), + [anon_sym_final] = ACTIONS(3436), + [anon_sym_class] = ACTIONS(3436), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), + [anon_sym_typedef] = ACTIONS(3436), + [anon_sym_function] = ACTIONS(3436), + [anon_sym_var] = ACTIONS(3436), + [aux_sym_integer_token1] = ACTIONS(3436), + [aux_sym_integer_token2] = ACTIONS(3438), + [aux_sym_float_token1] = ACTIONS(3436), + [aux_sym_float_token2] = ACTIONS(3438), + [anon_sym_true] = ACTIONS(3436), + [anon_sym_false] = ACTIONS(3436), + [aux_sym_string_token1] = ACTIONS(3438), + [aux_sym_string_token3] = ACTIONS(3438), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3442), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [821] = { - [sym_member_expression] = STATE(850), - [sym__lhs_expression] = STATE(166), - [sym__literal] = STATE(2703), - [sym_integer] = STATE(2703), - [sym_float] = STATE(2703), - [sym_bool] = STATE(2703), - [sym_string] = STATE(2213), - [sym_null] = STATE(2703), - [sym_array] = STATE(2703), - [sym_map] = STATE(2703), - [sym_object] = STATE(2703), - [sym_pair] = STATE(2703), - [aux_sym_member_expression_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_cast] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_DOLLARtype] = ACTIONS(727), - [anon_sym_return] = ACTIONS(729), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_this] = ACTIONS(2804), - [anon_sym_catch] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_new] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_GT_GT_GT] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(727), - [anon_sym_QMARK_QMARK] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [anon_sym_null] = ACTIONS(740), - [aux_sym_integer_token1] = ACTIONS(743), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(749), - [aux_sym_float_token2] = ACTIONS(752), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [aux_sym_string_token1] = ACTIONS(758), - [aux_sym_string_token3] = ACTIONS(761), - [sym_comment] = ACTIONS(3), + [837] = { + [sym_identifier] = ACTIONS(3444), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_package] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(685), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_cast] = ACTIONS(3444), + [anon_sym_DOLLARtype] = ACTIONS(685), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_untyped] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_this] = ACTIONS(3444), + [anon_sym_AT] = ACTIONS(3444), + [anon_sym_AT_COLON] = ACTIONS(685), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(685), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(3444), + [anon_sym_GT_GT_GT] = ACTIONS(685), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3444), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(3444), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_QMARK] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_null] = ACTIONS(3444), + [anon_sym_macro] = ACTIONS(3444), + [anon_sym_abstract] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_public] = ACTIONS(3444), + [anon_sym_private] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym_inline] = ACTIONS(3444), + [anon_sym_overload] = ACTIONS(3444), + [anon_sym_override] = ACTIONS(3444), + [anon_sym_final] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3444), + [anon_sym_var] = ACTIONS(3444), + [aux_sym_integer_token1] = ACTIONS(3444), + [aux_sym_integer_token2] = ACTIONS(685), + [aux_sym_float_token1] = ACTIONS(3444), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_true] = ACTIONS(3444), + [anon_sym_false] = ACTIONS(3444), + [aux_sym_string_token1] = ACTIONS(685), + [aux_sym_string_token3] = ACTIONS(685), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(685), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [822] = { - [sym__rhs_expression] = STATE(172), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(172), - [sym__literal] = STATE(919), - [sym_integer] = STATE(919), - [sym_float] = STATE(919), - [sym_bool] = STATE(919), - [sym_string] = STATE(912), - [sym_null] = STATE(919), - [sym_array] = STATE(919), - [sym_map] = STATE(919), - [sym_object] = STATE(919), - [sym_pair] = STATE(919), - [sym_identifier] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_cast] = ACTIONS(694), - [anon_sym_DOLLARtype] = ACTIONS(692), - [anon_sym_return] = ACTIONS(694), - [anon_sym_untyped] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_new] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(694), - [aux_sym_integer_token2] = ACTIONS(692), - [aux_sym_float_token1] = ACTIONS(694), - [aux_sym_float_token2] = ACTIONS(692), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [aux_sym_string_token1] = ACTIONS(692), - [aux_sym_string_token3] = ACTIONS(692), + [838] = { + [ts_builtin_sym_end] = ACTIONS(685), + [sym_identifier] = ACTIONS(3444), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_package] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(685), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_cast] = ACTIONS(3444), + [anon_sym_DOLLARtype] = ACTIONS(685), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_untyped] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_this] = ACTIONS(3444), + [anon_sym_AT] = ACTIONS(3444), + [anon_sym_AT_COLON] = ACTIONS(685), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(685), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_LT_LT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(3444), + [anon_sym_GT_GT_GT] = ACTIONS(685), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3444), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(3444), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_QMARK_QMARK] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_null] = ACTIONS(3444), + [anon_sym_macro] = ACTIONS(3444), + [anon_sym_abstract] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_public] = ACTIONS(3444), + [anon_sym_private] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym_inline] = ACTIONS(3444), + [anon_sym_overload] = ACTIONS(3444), + [anon_sym_override] = ACTIONS(3444), + [anon_sym_final] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3444), + [anon_sym_var] = ACTIONS(3444), + [aux_sym_integer_token1] = ACTIONS(3444), + [aux_sym_integer_token2] = ACTIONS(685), + [aux_sym_float_token1] = ACTIONS(3444), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_true] = ACTIONS(3444), + [anon_sym_false] = ACTIONS(3444), + [aux_sym_string_token1] = ACTIONS(685), + [aux_sym_string_token3] = ACTIONS(685), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [823] = { - [sym__rhs_expression] = STATE(187), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(187), - [sym__literal] = STATE(919), - [sym_integer] = STATE(919), - [sym_float] = STATE(919), - [sym_bool] = STATE(919), - [sym_string] = STATE(912), - [sym_null] = STATE(919), - [sym_array] = STATE(919), - [sym_map] = STATE(919), - [sym_object] = STATE(919), - [sym_pair] = STATE(919), - [sym_identifier] = ACTIONS(2807), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_new] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), + [839] = { + [sym_identifier] = ACTIONS(3446), + [anon_sym_POUND] = ACTIONS(3448), + [anon_sym_package] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_cast] = ACTIONS(3446), + [anon_sym_DOLLARtype] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_untyped] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_this] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_AT_COLON] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_PERCENT] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_LT_LT] = ACTIONS(3448), + [anon_sym_GT_GT] = ACTIONS(3446), + [anon_sym_GT_GT_GT] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_PIPE] = ACTIONS(3446), + [anon_sym_CARET] = ACTIONS(3448), + [anon_sym_AMP_AMP] = ACTIONS(3448), + [anon_sym_PIPE_PIPE] = ACTIONS(3448), + [anon_sym_EQ_EQ] = ACTIONS(3448), + [anon_sym_BANG_EQ] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_LT_EQ] = ACTIONS(3448), + [anon_sym_GT] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3448), + [anon_sym_EQ_GT] = ACTIONS(3448), + [anon_sym_QMARK_QMARK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(3446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3448), + [anon_sym_null] = ACTIONS(3446), + [anon_sym_macro] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_extern] = ACTIONS(3446), + [anon_sym_inline] = ACTIONS(3446), + [anon_sym_overload] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_final] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), + [anon_sym_typedef] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [aux_sym_integer_token1] = ACTIONS(3446), + [aux_sym_integer_token2] = ACTIONS(3448), + [aux_sym_float_token1] = ACTIONS(3446), + [aux_sym_float_token2] = ACTIONS(3448), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [aux_sym_string_token1] = ACTIONS(3448), + [aux_sym_string_token3] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3448), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [824] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2740), - [sym_integer] = STATE(2740), - [sym_float] = STATE(2740), - [sym_bool] = STATE(2740), - [sym_string] = STATE(2213), - [sym_null] = STATE(2740), - [sym_array] = STATE(2740), - [sym_map] = STATE(2740), - [sym_object] = STATE(2740), - [sym_pair] = STATE(2740), - [aux_sym_member_expression_repeat1] = STATE(824), - [sym_identifier] = ACTIONS(2809), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_cast] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_DOLLARtype] = ACTIONS(727), - [anon_sym_return] = ACTIONS(729), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_this] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_DASH_GT] = ACTIONS(727), - [anon_sym_new] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_GT_GT_GT] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(727), - [anon_sym_QMARK_QMARK] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [anon_sym_null] = ACTIONS(740), - [aux_sym_integer_token1] = ACTIONS(743), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(749), - [aux_sym_float_token2] = ACTIONS(752), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [aux_sym_string_token1] = ACTIONS(758), - [aux_sym_string_token3] = ACTIONS(761), + [840] = { + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3446), + [anon_sym_POUND] = ACTIONS(3448), + [anon_sym_package] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_cast] = ACTIONS(3446), + [anon_sym_DOLLARtype] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_untyped] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_this] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_AT_COLON] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_PERCENT] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_LT_LT] = ACTIONS(3448), + [anon_sym_GT_GT] = ACTIONS(3446), + [anon_sym_GT_GT_GT] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_PIPE] = ACTIONS(3446), + [anon_sym_CARET] = ACTIONS(3448), + [anon_sym_AMP_AMP] = ACTIONS(3448), + [anon_sym_PIPE_PIPE] = ACTIONS(3448), + [anon_sym_EQ_EQ] = ACTIONS(3448), + [anon_sym_BANG_EQ] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_LT_EQ] = ACTIONS(3448), + [anon_sym_GT] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3448), + [anon_sym_EQ_GT] = ACTIONS(3448), + [anon_sym_QMARK_QMARK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(3446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3448), + [anon_sym_null] = ACTIONS(3446), + [anon_sym_macro] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_extern] = ACTIONS(3446), + [anon_sym_inline] = ACTIONS(3446), + [anon_sym_overload] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_final] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), + [anon_sym_typedef] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [aux_sym_integer_token1] = ACTIONS(3446), + [aux_sym_integer_token2] = ACTIONS(3448), + [aux_sym_float_token1] = ACTIONS(3446), + [aux_sym_float_token2] = ACTIONS(3448), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [aux_sym_string_token1] = ACTIONS(3448), + [aux_sym_string_token3] = ACTIONS(3448), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [825] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2740), - [sym_integer] = STATE(2740), - [sym_float] = STATE(2740), - [sym_bool] = STATE(2740), - [sym_string] = STATE(2213), - [sym_null] = STATE(2740), - [sym_array] = STATE(2740), - [sym_map] = STATE(2740), - [sym_object] = STATE(2740), - [sym_pair] = STATE(2740), - [aux_sym_member_expression_repeat1] = STATE(824), - [sym_identifier] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(774), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_return] = ACTIONS(774), - [anon_sym_untyped] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_DASH_GT] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [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(774), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(772), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [841] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3102), + [sym_integer] = STATE(3102), + [sym_float] = STATE(3102), + [sym_bool] = STATE(3102), + [sym_string] = STATE(2291), + [sym_null] = STATE(3102), + [sym_array] = STATE(3102), + [sym_map] = STATE(3102), + [sym_object] = STATE(3102), + [sym_pair] = STATE(3102), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1312), + [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(1324), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_catch] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_while] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [826] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2740), - [sym_integer] = STATE(2740), - [sym_float] = STATE(2740), - [sym_bool] = STATE(2740), - [sym_string] = STATE(2213), - [sym_null] = STATE(2740), - [sym_array] = STATE(2740), - [sym_map] = STATE(2740), - [sym_object] = STATE(2740), - [sym_pair] = STATE(2740), - [aux_sym_member_expression_repeat1] = STATE(824), - [sym_identifier] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_DOLLARtype] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_untyped] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_DASH_GT] = ACTIONS(666), - [anon_sym_new] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(668), - [anon_sym_GT_GT_GT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(668), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_GT] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [842] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3102), + [sym_integer] = STATE(3102), + [sym_float] = STATE(3102), + [sym_bool] = STATE(3102), + [sym_string] = STATE(2291), + [sym_null] = STATE(3102), + [sym_array] = STATE(3102), + [sym_map] = STATE(3102), + [sym_object] = STATE(3102), + [sym_pair] = STATE(3102), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLARtype] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1384), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(1386), + [anon_sym_catch] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1384), + [anon_sym_QMARK_QMARK] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [827] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2740), - [sym_integer] = STATE(2740), - [sym_float] = STATE(2740), - [sym_bool] = STATE(2740), - [sym_string] = STATE(2213), - [sym_null] = STATE(2740), - [sym_array] = STATE(2740), - [sym_map] = STATE(2740), - [sym_object] = STATE(2740), - [sym_pair] = STATE(2740), - [aux_sym_member_expression_repeat1] = STATE(824), - [sym_identifier] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_DOLLARtype] = ACTIONS(764), - [anon_sym_return] = ACTIONS(766), - [anon_sym_untyped] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_DASH_GT] = ACTIONS(764), - [anon_sym_new] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(764), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [843] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3102), + [sym_integer] = STATE(3102), + [sym_float] = STATE(3102), + [sym_bool] = STATE(3102), + [sym_string] = STATE(2291), + [sym_null] = STATE(3102), + [sym_array] = STATE(3102), + [sym_map] = STATE(3102), + [sym_object] = STATE(3102), + [sym_pair] = STATE(3102), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1312), + [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(1324), + [anon_sym_RBRACK] = ACTIONS(1440), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_catch] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_while] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [828] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2740), - [sym_integer] = STATE(2740), - [sym_float] = STATE(2740), - [sym_bool] = STATE(2740), - [sym_string] = STATE(2213), - [sym_null] = STATE(2740), - [sym_array] = STATE(2740), - [sym_map] = STATE(2740), - [sym_object] = STATE(2740), - [sym_pair] = STATE(2740), - [aux_sym_member_expression_repeat1] = STATE(824), - [sym_identifier] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_DOLLARtype] = ACTIONS(768), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(770), - [anon_sym_DASH_GT] = ACTIONS(768), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_GT] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(768), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), + [844] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3102), + [sym_integer] = STATE(3102), + [sym_float] = STATE(3102), + [sym_bool] = STATE(3102), + [sym_string] = STATE(2291), + [sym_null] = STATE(3102), + [sym_array] = STATE(3102), + [sym_map] = STATE(3102), + [sym_object] = STATE(3102), + [sym_pair] = STATE(3102), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLARtype] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(1390), + [anon_sym_catch] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_GT_GT_GT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1388), + [anon_sym_QMARK_QMARK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [829] = { - [sym_operator] = STATE(1875), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(830), - [sym_identifier] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), + [845] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3102), + [sym_integer] = STATE(3102), + [sym_float] = STATE(3102), + [sym_bool] = STATE(3102), + [sym_string] = STATE(2291), + [sym_null] = STATE(3102), + [sym_array] = STATE(3102), + [sym_map] = STATE(3102), + [sym_object] = STATE(3102), + [sym_pair] = STATE(3102), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1502), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_cast] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_DOLLARtype] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_untyped] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1395), + [anon_sym_this] = ACTIONS(3450), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_catch] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_integer_token1] = ACTIONS(1411), + [aux_sym_integer_token2] = ACTIONS(1414), + [aux_sym_float_token1] = ACTIONS(1417), + [aux_sym_float_token2] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [aux_sym_string_token1] = ACTIONS(1426), + [aux_sym_string_token3] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [846] = { + [sym__rhs_expression] = STATE(220), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(220), + [sym__literal] = STATE(945), + [sym_integer] = STATE(945), + [sym_float] = STATE(945), + [sym_bool] = STATE(945), + [sym_string] = STATE(928), + [sym_null] = STATE(945), + [sym_array] = STATE(945), + [sym_map] = STATE(945), + [sym_object] = STATE(945), + [sym_pair] = STATE(945), + [sym_identifier] = ACTIONS(1300), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_cast] = ACTIONS(1300), + [anon_sym_DOLLARtype] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1300), + [aux_sym_integer_token1] = ACTIONS(1300), + [aux_sym_integer_token2] = ACTIONS(1302), + [aux_sym_float_token1] = ACTIONS(1300), + [aux_sym_float_token2] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1302), + [aux_sym_string_token3] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [847] = { + [sym__rhs_expression] = STATE(235), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(235), + [sym__literal] = STATE(945), + [sym_integer] = STATE(945), + [sym_float] = STATE(945), + [sym_bool] = STATE(945), + [sym_string] = STATE(928), + [sym_null] = STATE(945), + [sym_array] = STATE(945), + [sym_map] = STATE(945), + [sym_object] = STATE(945), + [sym_pair] = STATE(945), + [sym_identifier] = ACTIONS(3453), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [848] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3018), + [sym_integer] = STATE(3018), + [sym_float] = STATE(3018), + [sym_bool] = STATE(3018), + [sym_string] = STATE(2291), + [sym_null] = STATE(3018), + [sym_array] = STATE(3018), + [sym_map] = STATE(3018), + [sym_object] = STATE(3018), + [sym_pair] = STATE(3018), + [aux_sym_member_expression_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1312), + [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(1324), + [anon_sym_RBRACK] = ACTIONS(1440), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_catch] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1442), + [anon_sym_while] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [849] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3018), + [sym_integer] = STATE(3018), + [sym_float] = STATE(3018), + [sym_bool] = STATE(3018), + [sym_string] = STATE(2291), + [sym_null] = STATE(3018), + [sym_array] = STATE(3018), + [sym_map] = STATE(3018), + [sym_object] = STATE(3018), + [sym_pair] = STATE(3018), + [aux_sym_member_expression_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLARtype] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1384), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_catch] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1384), + [anon_sym_QMARK_QMARK] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [850] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3018), + [sym_integer] = STATE(3018), + [sym_float] = STATE(3018), + [sym_bool] = STATE(3018), + [sym_string] = STATE(2291), + [sym_null] = STATE(3018), + [sym_array] = STATE(3018), + [sym_map] = STATE(3018), + [sym_object] = STATE(3018), + [sym_pair] = STATE(3018), + [aux_sym_member_expression_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_cast] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_DOLLARtype] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_untyped] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1395), + [anon_sym_this] = ACTIONS(3460), + [anon_sym_catch] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_new] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_integer_token1] = ACTIONS(1411), + [aux_sym_integer_token2] = ACTIONS(1414), + [aux_sym_float_token1] = ACTIONS(1417), + [aux_sym_float_token2] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [aux_sym_string_token1] = ACTIONS(1426), + [aux_sym_string_token3] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [851] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3018), + [sym_integer] = STATE(3018), + [sym_float] = STATE(3018), + [sym_bool] = STATE(3018), + [sym_string] = STATE(2291), + [sym_null] = STATE(3018), + [sym_array] = STATE(3018), + [sym_map] = STATE(3018), + [sym_object] = STATE(3018), + [sym_pair] = STATE(3018), + [aux_sym_member_expression_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1312), + [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(1324), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_catch] = ACTIONS(1438), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_while] = 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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [852] = { + [sym_member_expression] = STATE(884), + [sym__lhs_expression] = STATE(215), + [sym__literal] = STATE(3018), + [sym_integer] = STATE(3018), + [sym_float] = STATE(3018), + [sym_bool] = STATE(3018), + [sym_string] = STATE(2291), + [sym_null] = STATE(3018), + [sym_array] = STATE(3018), + [sym_map] = STATE(3018), + [sym_object] = STATE(3018), + [sym_pair] = STATE(3018), + [aux_sym_member_expression_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLARtype] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_catch] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_GT_GT_GT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1388), + [anon_sym_QMARK_QMARK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [853] = { + [sym__rhs_expression] = STATE(220), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(220), + [sym__literal] = STATE(944), + [sym_integer] = STATE(944), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [sym_identifier] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_cast] = ACTIONS(1300), + [anon_sym_DOLLARtype] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_untyped] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1300), + [aux_sym_integer_token1] = ACTIONS(1300), + [aux_sym_integer_token2] = ACTIONS(1302), + [aux_sym_float_token1] = ACTIONS(1300), + [aux_sym_float_token2] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1302), + [aux_sym_string_token3] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [854] = { + [sym_operator] = STATE(1773), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(855), + [sym_identifier] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_switch] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_cast] = ACTIONS(836), - [anon_sym_DOLLARtype] = ACTIONS(838), - [anon_sym_return] = ACTIONS(836), - [anon_sym_untyped] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_this] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_new] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_cast] = ACTIONS(1444), + [anon_sym_DOLLARtype] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_untyped] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_this] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_new] = ACTIONS(1444), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -87842,193 +91927,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(836), - [aux_sym_integer_token1] = ACTIONS(836), - [aux_sym_integer_token2] = ACTIONS(838), - [aux_sym_float_token1] = ACTIONS(836), - [aux_sym_float_token2] = ACTIONS(838), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [aux_sym_string_token1] = ACTIONS(838), - [aux_sym_string_token3] = ACTIONS(838), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [830] = { - [sym_operator] = STATE(1875), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(830), - [sym_identifier] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_cast] = ACTIONS(844), - [anon_sym_DOLLARtype] = ACTIONS(842), - [anon_sym_return] = ACTIONS(844), - [anon_sym_untyped] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_this] = ACTIONS(844), - [anon_sym_QMARK] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(858), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(852), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_QMARK_QMARK] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(849), - [anon_sym_null] = ACTIONS(844), - [aux_sym_integer_token1] = ACTIONS(844), - [aux_sym_integer_token2] = ACTIONS(842), - [aux_sym_float_token1] = ACTIONS(844), - [aux_sym_float_token2] = ACTIONS(842), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym_string_token1] = ACTIONS(842), - [aux_sym_string_token3] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [831] = { - [sym__rhs_expression] = STATE(172), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(172), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [sym_identifier] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_switch] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_cast] = ACTIONS(694), - [anon_sym_DOLLARtype] = ACTIONS(692), - [anon_sym_return] = ACTIONS(694), - [anon_sym_untyped] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(694), - [anon_sym_new] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(694), - [aux_sym_integer_token2] = ACTIONS(692), - [aux_sym_float_token1] = ACTIONS(694), - [aux_sym_float_token2] = ACTIONS(692), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [aux_sym_string_token1] = ACTIONS(692), - [aux_sym_string_token3] = ACTIONS(692), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [832] = { - [sym_operator] = STATE(822), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(186), - [sym__bitwiseOperator] = STATE(186), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(829), - [sym_identifier] = ACTIONS(700), - [anon_sym_DOT] = ACTIONS(700), + [anon_sym_null] = ACTIONS(1444), + [aux_sym_integer_token1] = ACTIONS(1444), + [aux_sym_integer_token2] = ACTIONS(1446), + [aux_sym_float_token1] = ACTIONS(1444), + [aux_sym_float_token2] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [aux_sym_string_token1] = ACTIONS(1446), + [aux_sym_string_token3] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [855] = { + [sym_operator] = STATE(1773), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(855), + [sym_identifier] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_cast] = ACTIONS(1476), + [anon_sym_DOLLARtype] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_untyped] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_catch] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1478), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_GT_GT_GT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_QMARK_QMARK] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1476), + [aux_sym_integer_token1] = ACTIONS(1476), + [aux_sym_integer_token2] = ACTIONS(1474), + [aux_sym_float_token1] = ACTIONS(1476), + [aux_sym_float_token2] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), + [aux_sym_string_token3] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [856] = { + [sym_operator] = STATE(846), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(199), + [sym__bitwiseOperator] = STATE(199), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(854), + [sym_identifier] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_switch] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_return] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_this] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_new] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_cast] = ACTIONS(1356), + [anon_sym_DOLLARtype] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_untyped] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_this] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1356), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(1498), [anon_sym_PLUS_PLUS] = ACTIONS(63), [anon_sym_DASH_DASH] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(57), @@ -88052,878 +92071,1444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(700), - [aux_sym_integer_token1] = ACTIONS(700), - [aux_sym_integer_token2] = ACTIONS(698), - [aux_sym_float_token1] = ACTIONS(700), - [aux_sym_float_token2] = ACTIONS(698), - [anon_sym_true] = ACTIONS(700), - [anon_sym_false] = ACTIONS(700), - [aux_sym_string_token1] = ACTIONS(698), - [aux_sym_string_token3] = ACTIONS(698), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [833] = { - [sym__rhs_expression] = STATE(922), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(922), - [sym__literal] = STATE(921), - [sym_integer] = STATE(921), - [sym_float] = STATE(921), - [sym_bool] = STATE(921), - [sym_string] = STATE(912), - [sym_null] = STATE(921), - [sym_array] = STATE(921), - [sym_map] = STATE(921), - [sym_object] = STATE(921), - [sym_pair] = STATE(921), - [sym_identifier] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_cast] = ACTIONS(2822), - [anon_sym_DOLLARtype] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_untyped] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_this] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2822), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2822), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_EQ_GT] = ACTIONS(2820), - [anon_sym_QMARK_QMARK] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2822), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2836), - [aux_sym_integer_token1] = ACTIONS(2839), - [aux_sym_integer_token2] = ACTIONS(2842), - [aux_sym_float_token1] = ACTIONS(2845), - [aux_sym_float_token2] = ACTIONS(2848), - [anon_sym_true] = ACTIONS(2851), - [anon_sym_false] = ACTIONS(2851), - [aux_sym_string_token1] = ACTIONS(2854), - [aux_sym_string_token3] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [834] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2745), - [sym_integer] = STATE(2745), - [sym_float] = STATE(2745), - [sym_bool] = STATE(2745), - [sym_string] = STATE(2213), - [sym_null] = STATE(2745), - [sym_array] = STATE(2745), - [sym_map] = STATE(2745), - [sym_object] = STATE(2745), - [sym_pair] = STATE(2745), - [aux_sym_member_expression_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_DOLLARtype] = ACTIONS(768), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(800), - [anon_sym_DASH_GT] = ACTIONS(768), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PERCENT] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(768), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_AMP_AMP] = ACTIONS(768), - [anon_sym_PIPE_PIPE] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_EQ_GT] = ACTIONS(768), - [anon_sym_QMARK_QMARK] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(768), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [835] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2745), - [sym_integer] = STATE(2745), - [sym_float] = STATE(2745), - [sym_bool] = STATE(2745), - [sym_string] = STATE(2213), - [sym_null] = STATE(2745), - [sym_array] = STATE(2745), - [sym_map] = STATE(2745), - [sym_object] = STATE(2745), - [sym_pair] = STATE(2745), - [aux_sym_member_expression_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_cast] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(727), - [anon_sym_DOLLARtype] = ACTIONS(727), - [anon_sym_return] = ACTIONS(729), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_this] = ACTIONS(2865), - [anon_sym_DASH_GT] = ACTIONS(727), - [anon_sym_new] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_PERCENT] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_LT_LT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_GT_GT_GT] = ACTIONS(727), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_CARET] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_EQ_EQ] = ACTIONS(727), - [anon_sym_BANG_EQ] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_LT_EQ] = ACTIONS(727), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_EQ] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(727), - [anon_sym_QMARK_QMARK] = ACTIONS(727), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [anon_sym_null] = ACTIONS(740), - [aux_sym_integer_token1] = ACTIONS(743), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(749), - [aux_sym_float_token2] = ACTIONS(752), - [anon_sym_true] = ACTIONS(755), - [anon_sym_false] = ACTIONS(755), - [aux_sym_string_token1] = ACTIONS(758), - [aux_sym_string_token3] = ACTIONS(761), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [836] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2745), - [sym_integer] = STATE(2745), - [sym_float] = STATE(2745), - [sym_bool] = STATE(2745), - [sym_string] = STATE(2213), - [sym_null] = STATE(2745), - [sym_array] = STATE(2745), - [sym_map] = STATE(2745), - [sym_object] = STATE(2745), - [sym_pair] = STATE(2745), - [aux_sym_member_expression_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_switch] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_DOLLARtype] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_untyped] = ACTIONS(668), - [anon_sym_break] = ACTIONS(668), - [anon_sym_continue] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(800), - [anon_sym_DASH_GT] = ACTIONS(666), - [anon_sym_new] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(666), - [anon_sym_DASH_DASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(668), - [anon_sym_GT_GT_GT] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(668), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_EQ_GT] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(666), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [837] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2745), - [sym_integer] = STATE(2745), - [sym_float] = STATE(2745), - [sym_bool] = STATE(2745), - [sym_string] = STATE(2213), - [sym_null] = STATE(2745), - [sym_array] = STATE(2745), - [sym_map] = STATE(2745), - [sym_object] = STATE(2745), - [sym_pair] = STATE(2745), - [aux_sym_member_expression_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(774), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_return] = ACTIONS(774), - [anon_sym_untyped] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(800), - [anon_sym_DASH_GT] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [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(774), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(772), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [838] = { - [sym__rhs_expression] = STATE(263), - [sym_member_expression] = STATE(293), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(263), - [sym__literal] = STATE(1338), - [sym_integer] = STATE(1338), - [sym_float] = STATE(1338), - [sym_bool] = STATE(1338), - [sym_string] = STATE(1302), - [sym_null] = STATE(1338), - [sym_array] = STATE(1338), - [sym_map] = STATE(1338), - [sym_object] = STATE(1338), - [sym_pair] = STATE(1338), - [sym_identifier] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_case] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_catch] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_new] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(692), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [839] = { - [sym__rhs_expression] = STATE(187), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(187), - [sym__literal] = STATE(1355), - [sym_integer] = STATE(1355), - [sym_float] = STATE(1355), - [sym_bool] = STATE(1355), - [sym_string] = STATE(1308), - [sym_null] = STATE(1355), - [sym_array] = STATE(1355), - [sym_map] = STATE(1355), - [sym_object] = STATE(1355), - [sym_pair] = STATE(1355), - [sym_identifier] = ACTIONS(2870), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [anon_sym_new] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [840] = { - [sym_member_expression] = STATE(910), - [sym__lhs_expression] = STATE(909), - [sym__literal] = STATE(2745), - [sym_integer] = STATE(2745), - [sym_float] = STATE(2745), - [sym_bool] = STATE(2745), - [sym_string] = STATE(2213), - [sym_null] = STATE(2745), - [sym_array] = STATE(2745), - [sym_map] = STATE(2745), - [sym_object] = STATE(2745), - [sym_pair] = STATE(2745), - [aux_sym_member_expression_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_switch] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_cast] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_DOLLARtype] = ACTIONS(764), - [anon_sym_return] = ACTIONS(766), - [anon_sym_untyped] = ACTIONS(766), - [anon_sym_break] = ACTIONS(766), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_this] = ACTIONS(800), - [anon_sym_DASH_GT] = ACTIONS(764), - [anon_sym_new] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_PERCENT] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_GT_GT_GT] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(764), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [841] = { - [sym__rhs_expression] = STATE(291), - [sym_member_expression] = STATE(293), - [sym__lhs_expression] = STATE(2615), - [sym__call] = STATE(248), - [sym__constructor_call] = STATE(249), - [sym_call_expression] = STATE(291), - [sym__literal] = STATE(1338), - [sym_integer] = STATE(1338), - [sym_float] = STATE(1338), - [sym_bool] = STATE(1338), - [sym_string] = STATE(1302), - [sym_null] = STATE(1338), - [sym_array] = STATE(1338), - [sym_map] = STATE(1338), - [sym_object] = STATE(1338), - [sym_pair] = STATE(1338), - [sym_identifier] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_case] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_this] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_else] = ACTIONS(700), - [anon_sym_new] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PLUS_PLUS] = ACTIONS(698), - [anon_sym_DASH_DASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_LT_LT] = ACTIONS(698), - [anon_sym_GT_GT] = ACTIONS(700), - [anon_sym_GT_GT_GT] = ACTIONS(698), - [anon_sym_AMP] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_CARET] = ACTIONS(698), - [anon_sym_AMP_AMP] = ACTIONS(698), - [anon_sym_PIPE_PIPE] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(698), - [anon_sym_QMARK_QMARK] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(698), - [anon_sym_null] = ACTIONS(708), - [aux_sym_integer_token1] = ACTIONS(710), - [aux_sym_integer_token2] = ACTIONS(712), - [aux_sym_float_token1] = ACTIONS(714), - [aux_sym_float_token2] = ACTIONS(716), - [anon_sym_true] = ACTIONS(718), - [anon_sym_false] = ACTIONS(718), - [aux_sym_string_token1] = ACTIONS(720), - [aux_sym_string_token3] = ACTIONS(722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(698), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [842] = { - [sym__rhs_expression] = STATE(172), - [sym_member_expression] = STATE(150), - [sym__lhs_expression] = STATE(2444), - [sym__call] = STATE(147), - [sym__constructor_call] = STATE(148), - [sym_call_expression] = STATE(172), - [sym__literal] = STATE(1355), - [sym_integer] = STATE(1355), - [sym_float] = STATE(1355), - [sym_bool] = STATE(1355), - [sym_string] = STATE(1308), - [sym_null] = STATE(1355), - [sym_array] = STATE(1355), - [sym_map] = STATE(1355), - [sym_object] = STATE(1355), - [sym_pair] = STATE(1355), - [sym_identifier] = ACTIONS(2870), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_catch] = ACTIONS(694), - [anon_sym_else] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [anon_sym_new] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_PLUS_PLUS] = ACTIONS(692), - [anon_sym_DASH_DASH] = ACTIONS(692), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_GT_GT_GT] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_EQ_GT] = ACTIONS(692), - [anon_sym_QMARK_QMARK] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(692), - [anon_sym_null] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(678), - [aux_sym_integer_token2] = ACTIONS(680), - [aux_sym_float_token1] = ACTIONS(682), - [aux_sym_float_token2] = ACTIONS(684), - [anon_sym_true] = ACTIONS(686), - [anon_sym_false] = ACTIONS(686), - [aux_sym_string_token1] = ACTIONS(688), - [aux_sym_string_token3] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [843] = { - [sym_operator] = STATE(1751), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_switch] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_cast] = ACTIONS(2872), - [anon_sym_DOLLARtype] = ACTIONS(953), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_untyped] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_this] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(953), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_QMARK_QMARK] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_null] = ACTIONS(2872), - [aux_sym_integer_token1] = ACTIONS(2872), - [aux_sym_integer_token2] = ACTIONS(953), - [aux_sym_float_token1] = ACTIONS(2872), - [aux_sym_float_token2] = ACTIONS(953), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [aux_sym_string_token1] = ACTIONS(953), - [aux_sym_string_token3] = ACTIONS(953), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [844] = { - [sym_operator] = STATE(1751), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(2169), - [sym__bitwiseOperator] = STATE(2169), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_switch] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_cast] = ACTIONS(844), - [anon_sym_DOLLARtype] = ACTIONS(842), - [anon_sym_return] = ACTIONS(844), - [anon_sym_untyped] = ACTIONS(844), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(842), - [anon_sym_this] = ACTIONS(844), - [anon_sym_new] = ACTIONS(844), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(858), - [anon_sym_DASH_DASH] = ACTIONS(858), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(852), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_QMARK_QMARK] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(849), - [anon_sym_null] = ACTIONS(844), - [aux_sym_integer_token1] = ACTIONS(844), - [aux_sym_integer_token2] = ACTIONS(842), - [aux_sym_float_token1] = ACTIONS(844), - [aux_sym_float_token2] = ACTIONS(842), - [anon_sym_true] = ACTIONS(844), - [anon_sym_false] = ACTIONS(844), - [aux_sym_string_token1] = ACTIONS(842), - [aux_sym_string_token3] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [845] = { - [sym_operator] = STATE(831), - [sym__unaryOperator] = STATE(186), - [sym__prefixUnaryOperator] = STATE(186), - [sym__postfixUnaryOperator] = STATE(186), - [sym__binaryOperator] = STATE(186), - [sym__arithmeticOperator] = STATE(186), - [sym__bitwiseOperator] = STATE(186), - [sym__logicalOperator] = STATE(186), - [sym__comparisonOperator] = STATE(186), - [sym__miscOperator] = STATE(186), - [sym__assignmentOperator] = STATE(186), - [sym__compoundAssignmentOperator] = STATE(186), - [sym__rangeOperator] = STATE(186), - [aux_sym_expression_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(2822), + [anon_sym_null] = ACTIONS(1356), + [aux_sym_integer_token1] = ACTIONS(1356), + [aux_sym_integer_token2] = ACTIONS(1354), + [aux_sym_float_token1] = ACTIONS(1356), + [aux_sym_float_token2] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1354), + [aux_sym_string_token3] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [857] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(3100), + [sym_integer] = STATE(3100), + [sym_float] = STATE(3100), + [sym_bool] = STATE(3100), + [sym_string] = STATE(2291), + [sym_null] = STATE(3100), + [sym_array] = STATE(3100), + [sym_map] = STATE(3100), + [sym_object] = STATE(3100), + [sym_pair] = STATE(3100), + [aux_sym_member_expression_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLARtype] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1386), + [anon_sym_DASH_GT] = ACTIONS(1384), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1384), + [anon_sym_QMARK_QMARK] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [858] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(3100), + [sym_integer] = STATE(3100), + [sym_float] = STATE(3100), + [sym_bool] = STATE(3100), + [sym_string] = STATE(2291), + [sym_null] = STATE(3100), + [sym_array] = STATE(3100), + [sym_map] = STATE(3100), + [sym_object] = STATE(3100), + [sym_pair] = STATE(3100), + [aux_sym_member_expression_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLARtype] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1390), + [anon_sym_DASH_GT] = ACTIONS(1388), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_GT_GT_GT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1388), + [anon_sym_QMARK_QMARK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [859] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(3100), + [sym_integer] = STATE(3100), + [sym_float] = STATE(3100), + [sym_bool] = STATE(3100), + [sym_string] = STATE(2291), + [sym_null] = STATE(3100), + [sym_array] = STATE(3100), + [sym_map] = STATE(3100), + [sym_object] = STATE(3100), + [sym_pair] = STATE(3100), + [aux_sym_member_expression_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(3465), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_cast] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_DOLLARtype] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_untyped] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_this] = ACTIONS(3468), + [anon_sym_QMARK] = ACTIONS(1397), + [anon_sym_DASH_GT] = ACTIONS(1395), + [anon_sym_new] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_integer_token1] = ACTIONS(1411), + [aux_sym_integer_token2] = ACTIONS(1414), + [aux_sym_float_token1] = ACTIONS(1417), + [aux_sym_float_token2] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [aux_sym_string_token1] = ACTIONS(1426), + [aux_sym_string_token3] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [860] = { + [sym__rhs_expression] = STATE(761), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(761), + [sym__literal] = STATE(944), + [sym_integer] = STATE(944), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [sym_identifier] = ACTIONS(3471), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1574), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_GT_GT_GT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [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(1452), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_QMARK_QMARK] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [861] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(3100), + [sym_integer] = STATE(3100), + [sym_float] = STATE(3100), + [sym_bool] = STATE(3100), + [sym_string] = STATE(2291), + [sym_null] = STATE(3100), + [sym_array] = STATE(3100), + [sym_map] = STATE(3100), + [sym_object] = STATE(3100), + [sym_pair] = STATE(3100), + [aux_sym_member_expression_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1312), + [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(1324), + [anon_sym_this] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_DASH_GT] = ACTIONS(1436), + [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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [862] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(3100), + [sym_integer] = STATE(3100), + [sym_float] = STATE(3100), + [sym_bool] = STATE(3100), + [sym_string] = STATE(2291), + [sym_null] = STATE(3100), + [sym_array] = STATE(3100), + [sym_map] = STATE(3100), + [sym_object] = STATE(3100), + [sym_pair] = STATE(3100), + [aux_sym_member_expression_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1312), + [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(1324), + [anon_sym_this] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_DASH_GT] = ACTIONS(1440), + [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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [863] = { + [sym__rhs_expression] = STATE(975), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(975), + [sym__literal] = STATE(944), + [sym_integer] = STATE(944), + [sym_float] = STATE(944), + [sym_bool] = STATE(944), + [sym_string] = STATE(928), + [sym_null] = STATE(944), + [sym_array] = STATE(944), + [sym_map] = STATE(944), + [sym_object] = STATE(944), + [sym_pair] = STATE(944), + [sym_identifier] = ACTIONS(3473), + [anon_sym_STAR] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_RPAREN] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_cast] = ACTIONS(3478), + [anon_sym_DOLLARtype] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_untyped] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_this] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_PERCENT] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_LT_LT] = ACTIONS(3476), + [anon_sym_GT_GT] = ACTIONS(3478), + [anon_sym_GT_GT_GT] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_PIPE] = ACTIONS(3478), + [anon_sym_CARET] = ACTIONS(3476), + [anon_sym_AMP_AMP] = ACTIONS(3476), + [anon_sym_PIPE_PIPE] = ACTIONS(3476), + [anon_sym_EQ_EQ] = ACTIONS(3476), + [anon_sym_BANG_EQ] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_LT_EQ] = ACTIONS(3476), + [anon_sym_GT] = ACTIONS(3478), + [anon_sym_GT_EQ] = ACTIONS(3476), + [anon_sym_EQ_GT] = ACTIONS(3476), + [anon_sym_QMARK_QMARK] = ACTIONS(3476), + [anon_sym_EQ] = ACTIONS(3478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3476), + [anon_sym_null] = ACTIONS(3492), + [aux_sym_integer_token1] = ACTIONS(3495), + [aux_sym_integer_token2] = ACTIONS(3498), + [aux_sym_float_token1] = ACTIONS(3501), + [aux_sym_float_token2] = ACTIONS(3504), + [anon_sym_true] = ACTIONS(3507), + [anon_sym_false] = ACTIONS(3507), + [aux_sym_string_token1] = ACTIONS(3510), + [aux_sym_string_token3] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [864] = { + [sym_operator] = STATE(1747), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(864), + [sym_identifier] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_cast] = ACTIONS(1476), + [anon_sym_DOLLARtype] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_untyped] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_catch] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1478), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_GT_GT_GT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_QMARK_QMARK] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1476), + [aux_sym_integer_token1] = ACTIONS(1476), + [aux_sym_integer_token2] = ACTIONS(1474), + [aux_sym_float_token1] = ACTIONS(1476), + [aux_sym_float_token2] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), + [aux_sym_string_token3] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [865] = { + [sym__rhs_expression] = STATE(379), + [sym_member_expression] = STATE(362), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(379), + [sym__literal] = STATE(1385), + [sym_integer] = STATE(1385), + [sym_float] = STATE(1385), + [sym_bool] = STATE(1385), + [sym_string] = STATE(1369), + [sym_null] = STATE(1385), + [sym_array] = STATE(1385), + [sym_map] = STATE(1385), + [sym_object] = STATE(1385), + [sym_pair] = STATE(1385), + [sym_identifier] = ACTIONS(3516), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_COMMA] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1302), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [866] = { + [sym__rhs_expression] = STATE(220), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(220), + [sym__literal] = STATE(1387), + [sym_integer] = STATE(1387), + [sym_float] = STATE(1387), + [sym_bool] = STATE(1387), + [sym_string] = STATE(1375), + [sym_null] = STATE(1387), + [sym_array] = STATE(1387), + [sym_map] = STATE(1387), + [sym_object] = STATE(1387), + [sym_pair] = STATE(1387), + [sym_identifier] = ACTIONS(3518), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1302), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_catch] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_new] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_GT_GT_GT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_EQ_GT] = ACTIONS(1302), + [anon_sym_QMARK_QMARK] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [867] = { + [sym_operator] = STATE(853), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(199), + [sym__bitwiseOperator] = STATE(199), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(872), + [sym_identifier] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_cast] = ACTIONS(1452), + [anon_sym_DOLLARtype] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_untyped] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_this] = ACTIONS(1452), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(1498), + [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(57), + [anon_sym_null] = ACTIONS(1452), + [aux_sym_integer_token1] = ACTIONS(1452), + [aux_sym_integer_token2] = ACTIONS(1448), + [aux_sym_float_token1] = ACTIONS(1452), + [aux_sym_float_token2] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1448), + [aux_sym_string_token3] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [868] = { + [sym__rhs_expression] = STATE(235), + [sym_member_expression] = STATE(197), + [sym__lhs_expression] = STATE(2674), + [sym__call] = STATE(190), + [sym__constructor_call] = STATE(191), + [sym_call_expression] = STATE(235), + [sym__literal] = STATE(1387), + [sym_integer] = STATE(1387), + [sym_float] = STATE(1387), + [sym_bool] = STATE(1387), + [sym_string] = STATE(1375), + [sym_null] = STATE(1387), + [sym_array] = STATE(1387), + [sym_map] = STATE(1387), + [sym_object] = STATE(1387), + [sym_pair] = STATE(1387), + [sym_identifier] = ACTIONS(3518), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_this] = ACTIONS(2350), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [869] = { + [sym__rhs_expression] = STATE(358), + [sym_member_expression] = STATE(362), + [sym__lhs_expression] = STATE(2585), + [sym__call] = STATE(337), + [sym__constructor_call] = STATE(371), + [sym_call_expression] = STATE(358), + [sym__literal] = STATE(1385), + [sym_integer] = STATE(1385), + [sym_float] = STATE(1385), + [sym_bool] = STATE(1385), + [sym_string] = STATE(1369), + [sym_null] = STATE(1385), + [sym_array] = STATE(1385), + [sym_map] = STATE(1385), + [sym_object] = STATE(1385), + [sym_pair] = STATE(1385), + [sym_identifier] = ACTIONS(3516), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_this] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_GT_GT_GT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_QMARK_QMARK] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_integer_token1] = ACTIONS(1368), + [aux_sym_integer_token2] = ACTIONS(1370), + [aux_sym_float_token1] = ACTIONS(1372), + [aux_sym_float_token2] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1378), + [aux_sym_string_token3] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1354), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [870] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(2831), + [sym_integer] = STATE(2831), + [sym_float] = STATE(2831), + [sym_bool] = STATE(2831), + [sym_string] = STATE(2291), + [sym_null] = STATE(2831), + [sym_array] = STATE(2831), + [sym_map] = STATE(2831), + [sym_object] = STATE(2831), + [sym_pair] = STATE(2831), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLARtype] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_untyped] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1326), + [anon_sym_DASH_GT] = ACTIONS(1388), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_GT_GT_GT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ_GT] = ACTIONS(1388), + [anon_sym_QMARK_QMARK] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [871] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(2831), + [sym_integer] = STATE(2831), + [sym_float] = STATE(2831), + [sym_bool] = STATE(2831), + [sym_string] = STATE(2291), + [sym_null] = STATE(2831), + [sym_array] = STATE(2831), + [sym_map] = STATE(2831), + [sym_object] = STATE(2831), + [sym_pair] = STATE(2831), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_cast] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLARtype] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_untyped] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_this] = ACTIONS(1326), + [anon_sym_DASH_GT] = ACTIONS(1384), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1386), + [anon_sym_GT_GT_GT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1384), + [anon_sym_QMARK_QMARK] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [872] = { + [sym_operator] = STATE(1747), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(864), + [sym_identifier] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_cast] = ACTIONS(1550), + [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_catch] = ACTIONS(1550), + [anon_sym_else] = ACTIONS(1550), + [anon_sym_new] = ACTIONS(1550), + [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(57), + [anon_sym_null] = 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_unmarker] = ACTIONS(3), + }, + [873] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(2831), + [sym_integer] = STATE(2831), + [sym_float] = STATE(2831), + [sym_bool] = STATE(2831), + [sym_string] = STATE(2291), + [sym_null] = STATE(2831), + [sym_array] = STATE(2831), + [sym_map] = STATE(2831), + [sym_object] = STATE(2831), + [sym_pair] = STATE(2831), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1312), + [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(1324), + [anon_sym_this] = ACTIONS(1326), + [anon_sym_DASH_GT] = ACTIONS(1436), + [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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [874] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(2831), + [sym_integer] = STATE(2831), + [sym_float] = STATE(2831), + [sym_bool] = STATE(2831), + [sym_string] = STATE(2291), + [sym_null] = STATE(2831), + [sym_array] = STATE(2831), + [sym_map] = STATE(2831), + [sym_object] = STATE(2831), + [sym_pair] = STATE(2831), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1312), + [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(1324), + [anon_sym_this] = ACTIONS(1326), + [anon_sym_DASH_GT] = ACTIONS(1440), + [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_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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1332), + [aux_sym_integer_token1] = ACTIONS(1334), + [aux_sym_integer_token2] = ACTIONS(1336), + [aux_sym_float_token1] = ACTIONS(1338), + [aux_sym_float_token2] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1344), + [aux_sym_string_token3] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [875] = { + [sym_member_expression] = STATE(946), + [sym__lhs_expression] = STATE(947), + [sym__literal] = STATE(2831), + [sym_integer] = STATE(2831), + [sym_float] = STATE(2831), + [sym_bool] = STATE(2831), + [sym_string] = STATE(2291), + [sym_null] = STATE(2831), + [sym_array] = STATE(2831), + [sym_map] = STATE(2831), + [sym_object] = STATE(2831), + [sym_pair] = STATE(2831), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_cast] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_DOLLARtype] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_untyped] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_this] = ACTIONS(3525), + [anon_sym_DASH_GT] = ACTIONS(1395), + [anon_sym_new] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_integer_token1] = ACTIONS(1411), + [aux_sym_integer_token2] = ACTIONS(1414), + [aux_sym_float_token1] = ACTIONS(1417), + [aux_sym_float_token2] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [aux_sym_string_token1] = ACTIONS(1426), + [aux_sym_string_token3] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [876] = { + [sym_operator] = STATE(1747), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(2228), + [sym__bitwiseOperator] = STATE(2228), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(864), + [sym_identifier] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_cast] = ACTIONS(3528), + [anon_sym_DOLLARtype] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_untyped] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_this] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_GT_GT] = ACTIONS(3528), + [anon_sym_GT_GT_GT] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(3528), + [anon_sym_PIPE] = ACTIONS(3528), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_PIPE_PIPE] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_EQ_GT] = ACTIONS(1643), + [anon_sym_QMARK_QMARK] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(3528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(3528), + [aux_sym_integer_token1] = ACTIONS(3528), + [aux_sym_integer_token2] = ACTIONS(1643), + [aux_sym_float_token1] = ACTIONS(3528), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(3528), + [anon_sym_false] = ACTIONS(3528), + [aux_sym_string_token1] = ACTIONS(1643), + [aux_sym_string_token3] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [877] = { + [sym_operator] = STATE(853), + [sym__unaryOperator] = STATE(199), + [sym__prefixUnaryOperator] = STATE(199), + [sym__postfixUnaryOperator] = STATE(199), + [sym__binaryOperator] = STATE(199), + [sym__arithmeticOperator] = STATE(199), + [sym__bitwiseOperator] = STATE(199), + [sym__logicalOperator] = STATE(199), + [sym__comparisonOperator] = STATE(199), + [sym__miscOperator] = STATE(199), + [sym__assignmentOperator] = STATE(199), + [sym__compoundAssignmentOperator] = STATE(199), + [sym__rangeOperator] = STATE(199), + [aux_sym_expression_repeat1] = STATE(876), + [sym_identifier] = ACTIONS(3478), [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_cast] = ACTIONS(2822), - [anon_sym_DOLLARtype] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_untyped] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_this] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_RPAREN] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_cast] = ACTIONS(3478), + [anon_sym_DOLLARtype] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_untyped] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(1498), [anon_sym_PLUS_PLUS] = ACTIONS(63), [anon_sym_DASH_DASH] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(57), @@ -88947,15 +93532,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(2822), - [aux_sym_integer_token1] = ACTIONS(2822), - [aux_sym_integer_token2] = ACTIONS(2820), - [aux_sym_float_token1] = ACTIONS(2822), - [aux_sym_float_token2] = ACTIONS(2820), - [anon_sym_true] = ACTIONS(2822), - [anon_sym_false] = ACTIONS(2822), - [aux_sym_string_token1] = ACTIONS(2820), - [aux_sym_string_token3] = ACTIONS(2820), + [anon_sym_null] = ACTIONS(3478), + [aux_sym_integer_token1] = ACTIONS(3478), + [aux_sym_integer_token2] = ACTIONS(3476), + [aux_sym_float_token1] = ACTIONS(3478), + [aux_sym_float_token2] = ACTIONS(3476), + [anon_sym_true] = ACTIONS(3478), + [anon_sym_false] = ACTIONS(3478), + [aux_sym_string_token1] = ACTIONS(3476), + [aux_sym_string_token3] = ACTIONS(3476), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, @@ -88963,50 +93548,1123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 23, - ACTIONS(1480), 1, + ACTIONS(2544), 1, + anon_sym_LBRACE, + ACTIONS(2556), 1, + anon_sym_LBRACK, + ACTIONS(2558), 1, + anon_sym_this, + ACTIONS(2560), 1, + anon_sym_new, + ACTIONS(2562), 1, + anon_sym_null, + ACTIONS(2564), 1, + aux_sym_integer_token1, + ACTIONS(2566), 1, + aux_sym_integer_token2, + ACTIONS(2568), 1, + aux_sym_float_token1, + ACTIONS(2570), 1, + aux_sym_float_token2, + ACTIONS(2574), 1, + aux_sym_string_token1, + ACTIONS(2576), 1, + aux_sym_string_token3, + ACTIONS(3530), 1, + sym_identifier, + STATE(1477), 1, + sym_member_expression, + STATE(1483), 1, + sym_string, + STATE(1507), 1, + sym__call, + STATE(1508), 1, + sym__constructor_call, + STATE(2670), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2572), 2, + anon_sym_true, + anon_sym_false, + STATE(1530), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1560), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1300), 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(1302), 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, + [111] = 23, + ACTIONS(2544), 1, + anon_sym_LBRACE, + ACTIONS(2556), 1, + anon_sym_LBRACK, + ACTIONS(2558), 1, + anon_sym_this, + ACTIONS(2560), 1, + anon_sym_new, + ACTIONS(2562), 1, + anon_sym_null, + ACTIONS(2564), 1, + aux_sym_integer_token1, + ACTIONS(2566), 1, + aux_sym_integer_token2, + ACTIONS(2568), 1, + aux_sym_float_token1, + ACTIONS(2570), 1, + aux_sym_float_token2, + ACTIONS(2574), 1, + aux_sym_string_token1, + ACTIONS(2576), 1, + aux_sym_string_token3, + ACTIONS(3530), 1, + sym_identifier, + STATE(1477), 1, + sym_member_expression, + STATE(1483), 1, + sym_string, + STATE(1507), 1, + sym__call, + STATE(1508), 1, + sym__constructor_call, + STATE(2670), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2572), 2, + anon_sym_true, + anon_sym_false, + STATE(1545), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1560), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1356), 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(1354), 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, + [222] = 23, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(2448), 1, + anon_sym_this, + ACTIONS(3532), 1, + sym_identifier, + STATE(1580), 1, + sym_member_expression, + STATE(1639), 1, + sym_string, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1942), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1749), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1356), 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(1354), 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, + [331] = 23, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(2448), 1, + anon_sym_this, + ACTIONS(3532), 1, + sym_identifier, + STATE(1580), 1, + sym_member_expression, + STATE(1639), 1, + sym_string, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1775), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1749), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1300), 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(1302), 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, + [440] = 23, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2350), 1, + anon_sym_this, + ACTIONS(3534), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(1688), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(220), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1756), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1300), 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(1302), 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, + [549] = 23, + ACTIONS(2046), 1, + anon_sym_LBRACE, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2060), 1, + anon_sym_this, + ACTIONS(2062), 1, + anon_sym_new, + ACTIONS(2064), 1, + anon_sym_null, + ACTIONS(2066), 1, + aux_sym_integer_token1, + ACTIONS(2068), 1, + aux_sym_integer_token2, + ACTIONS(2070), 1, + aux_sym_float_token1, + ACTIONS(2072), 1, + aux_sym_float_token2, + ACTIONS(2076), 1, + aux_sym_string_token1, + ACTIONS(2078), 1, + aux_sym_string_token3, + ACTIONS(3536), 1, + sym_identifier, + STATE(1600), 1, + sym_string, + STATE(1715), 1, + sym_member_expression, + STATE(1919), 1, + sym__call, + STATE(1920), 1, + sym__constructor_call, + STATE(2788), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2074), 2, + anon_sym_true, + anon_sym_false, + STATE(1970), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1777), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1300), 13, + anon_sym_DOT, + anon_sym_in, + 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(1302), 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, + [658] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1782), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + ACTIONS(1784), 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, + 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, + [727] = 23, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2038), 1, + anon_sym_this, + ACTIONS(3538), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(2002), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(235), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1833), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1356), 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(1354), 18, + 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, + [836] = 23, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2350), 1, + anon_sym_this, + ACTIONS(3534), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(1688), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(235), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1756), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1356), 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(1354), 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, + [945] = 23, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2038), 1, + anon_sym_this, + ACTIONS(3538), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(2002), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(220), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1833), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1300), 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(1302), 18, + 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, + [1054] = 23, + ACTIONS(2046), 1, + anon_sym_LBRACE, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2060), 1, + anon_sym_this, + ACTIONS(2062), 1, + anon_sym_new, + ACTIONS(2064), 1, + anon_sym_null, + ACTIONS(2066), 1, + aux_sym_integer_token1, + ACTIONS(2068), 1, + aux_sym_integer_token2, + ACTIONS(2070), 1, + aux_sym_float_token1, + ACTIONS(2072), 1, + aux_sym_float_token2, + ACTIONS(2076), 1, + aux_sym_string_token1, + ACTIONS(2078), 1, + aux_sym_string_token3, + ACTIONS(3536), 1, + sym_identifier, + STATE(1600), 1, + sym_string, + STATE(1715), 1, + sym_member_expression, + STATE(1919), 1, + sym__call, + STATE(1920), 1, + sym__constructor_call, + STATE(2788), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2074), 2, + anon_sym_true, + anon_sym_false, + STATE(2010), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1777), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1356), 13, + anon_sym_DOT, + anon_sym_in, + 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(1354), 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, + [1163] = 6, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1784), 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(1782), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [1237] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2558), 1, + anon_sym_this, + ACTIONS(3544), 1, + sym_identifier, + STATE(891), 1, + aux_sym_member_expression_repeat1, + STATE(989), 1, + sym_member_expression, + STATE(998), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3106), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1386), 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(1384), 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, + [1339] = 20, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(1492), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(1494), 1, - anon_sym_this, - ACTIONS(1496), 1, - anon_sym_new, - ACTIONS(1498), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(1500), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(1502), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(1504), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(1506), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(1510), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(1512), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(2874), 1, + ACTIONS(3546), 1, sym_identifier, - STATE(1447), 1, + ACTIONS(3549), 1, + anon_sym_this, + STATE(891), 1, + aux_sym_member_expression_repeat1, + STATE(989), 1, sym_member_expression, - STATE(1486), 1, - sym_string, - STATE(1529), 1, - sym__constructor_call, - STATE(1559), 1, - sym__call, - STATE(2436), 1, + STATE(998), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(1516), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1517), 9, + STATE(3106), 9, sym__literal, sym_integer, sym_float, @@ -89016,7 +94674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(700), 12, + ACTIONS(1397), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -89029,10 +94687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(698), 20, + ACTIONS(1395), 21, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -89050,51 +94709,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [111] = 23, - ACTIONS(1480), 1, + [1441] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1492), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1494), 1, - anon_sym_this, - ACTIONS(1496), 1, - anon_sym_new, - ACTIONS(1498), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1500), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1502), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1504), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1506), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1510), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1512), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2874), 1, + ACTIONS(2558), 1, + anon_sym_this, + ACTIONS(3544), 1, sym_identifier, - STATE(1447), 1, + STATE(891), 1, + aux_sym_member_expression_repeat1, + STATE(989), 1, sym_member_expression, - STATE(1486), 1, - sym_string, - STATE(1529), 1, - sym__constructor_call, - STATE(1559), 1, - sym__call, - STATE(2436), 1, + STATE(998), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1558), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1517), 9, + STATE(3106), 9, sym__literal, sym_integer, sym_float, @@ -89104,7 +94756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(694), 12, + ACTIONS(1438), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -89117,10 +94769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(692), 20, + ACTIONS(1436), 21, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -89138,49 +94791,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [222] = 22, - ACTIONS(1248), 1, + [1543] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1438), 1, + ACTIONS(2558), 1, anon_sym_this, - STATE(1378), 1, + ACTIONS(3544), 1, + sym_identifier, + STATE(891), 1, + aux_sym_member_expression_repeat1, + STATE(989), 1, sym_member_expression, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(1466), 1, - sym_string, - STATE(2578), 1, + STATE(998), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1481), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1520), 9, + STATE(3106), 9, sym__literal, sym_integer, sym_float, @@ -89190,7 +94838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(694), 13, + ACTIONS(1390), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -89203,11 +94851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(692), 19, + ACTIONS(1388), 21, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -89224,51 +94873,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [330] = 23, - ACTIONS(1248), 1, + [1645] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1438), 1, + ACTIONS(2558), 1, anon_sym_this, - ACTIONS(2876), 1, + ACTIONS(3544), 1, sym_identifier, - STATE(1378), 1, + STATE(891), 1, + aux_sym_member_expression_repeat1, + STATE(989), 1, sym_member_expression, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(1466), 1, - sym_string, - STATE(2578), 1, + STATE(998), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1520), 9, + STATE(3106), 9, sym__literal, sym_integer, sym_float, @@ -89278,7 +94920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(700), 12, + ACTIONS(1442), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -89291,10 +94933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(698), 19, + ACTIONS(1440), 21, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -89311,21 +94955,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [440] = 3, + [1747] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2060), 1, + anon_sym_this, + ACTIONS(3552), 1, + sym_identifier, + STATE(884), 1, + sym_member_expression, + STATE(911), 1, + aux_sym_member_expression_repeat1, + STATE(1040), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 30, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2840), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1390), 13, + anon_sym_DOT, + anon_sym_in, + 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(1388), 18, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, - 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, + [1847] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2038), 1, + anon_sym_this, + ACTIONS(3554), 1, + sym_identifier, + STATE(215), 1, + sym__lhs_expression, + STATE(884), 1, + sym_member_expression, + STATE(906), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2839), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + 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), 19, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLARtype, + 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, + [1947] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1536), 1, + anon_sym_this, + ACTIONS(3556), 1, + sym_identifier, + STATE(899), 1, + aux_sym_member_expression_repeat1, + STATE(1021), 1, + sym__lhs_expression, + STATE(1038), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 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(1390), 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(1388), 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, @@ -89342,25 +95195,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, + [2047] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, aux_sym_float_token2, + ACTIONS(1344), 1, aux_sym_string_token1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1054), 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, + ACTIONS(2448), 1, anon_sym_this, + ACTIONS(3558), 1, + sym_identifier, + STATE(908), 1, + aux_sym_member_expression_repeat1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3099), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1438), 12, + anon_sym_DOT, anon_sym_QMARK, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89371,57 +95255,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, + ACTIONS(1436), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [2147] = 20, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + anon_sym_LBRACK, + ACTIONS(1408), 1, anon_sym_null, + ACTIONS(1411), 1, aux_sym_integer_token1, + ACTIONS(1414), 1, + aux_sym_integer_token2, + ACTIONS(1417), 1, aux_sym_float_token1, + ACTIONS(1420), 1, + aux_sym_float_token2, + ACTIONS(1426), 1, + aux_sym_string_token1, + ACTIONS(1429), 1, + aux_sym_string_token3, + ACTIONS(3560), 1, + sym_identifier, + ACTIONS(3563), 1, + anon_sym_this, + STATE(899), 1, + aux_sym_member_expression_repeat1, + STATE(1021), 1, + sym__lhs_expression, + STATE(1038), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - sym_identifier, - [509] = 23, - ACTIONS(670), 1, + STATE(2844), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1397), 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(1395), 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, + [2247] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1614), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(2878), 1, + ACTIONS(3554), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(215), 1, + sym__lhs_expression, + STATE(884), 1, sym_member_expression, - STATE(1737), 1, + STATE(906), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, - STATE(2444), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1748), 9, + STATE(2839), 9, sym__literal, sym_integer, sym_float, @@ -89431,7 +95402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(700), 12, + ACTIONS(1386), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -89444,8 +95415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(698), 18, + ACTIONS(1384), 19, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -89463,51 +95435,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [618] = 23, - ACTIONS(670), 1, + [2347] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1614), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(2878), 1, + ACTIONS(3554), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(215), 1, + sym__lhs_expression, + STATE(884), 1, sym_member_expression, - STATE(1737), 1, + STATE(906), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, - STATE(2444), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1748), 9, + STATE(2839), 9, sym__literal, sym_integer, sym_float, @@ -89517,7 +95482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(694), 12, + ACTIONS(1390), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -89530,8 +95495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(692), 18, + ACTIONS(1388), 19, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -89549,51 +95515,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [727] = 23, - ACTIONS(670), 1, + [2447] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1536), 1, anon_sym_this, - ACTIONS(2880), 1, + ACTIONS(3556), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(899), 1, + aux_sym_member_expression_repeat1, + STATE(1021), 1, + sym__lhs_expression, + STATE(1038), 1, sym_member_expression, - STATE(1655), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 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(1438), 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(1436), 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, + [2547] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2448), 1, + anon_sym_this, + ACTIONS(3558), 1, + sym_identifier, + STATE(908), 1, + aux_sym_member_expression_repeat1, + STATE(1005), 1, sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1901), 9, + STATE(3099), 9, sym__literal, sym_integer, sym_float, @@ -89603,7 +95642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(700), 12, + ACTIONS(1442), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -89616,9 +95655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(698), 18, + ACTIONS(1440), 19, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -89635,51 +95675,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [836] = 23, - ACTIONS(39), 1, + [2647] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(1574), 1, + ACTIONS(1536), 1, anon_sym_this, - ACTIONS(2882), 1, + ACTIONS(3556), 1, sym_identifier, - STATE(1654), 1, - sym_string, - STATE(1689), 1, - sym_member_expression, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2461), 1, + STATE(899), 1, + aux_sym_member_expression_repeat1, + STATE(1021), 1, sym__lhs_expression, + STATE(1038), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1761), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1846), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -89689,9 +95722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(700), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1442), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -89702,9 +95733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(698), 18, - sym__lookback_semicolon, + ACTIONS(1440), 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, @@ -89721,51 +95755,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [945] = 23, - ACTIONS(1248), 1, + [2747] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(2448), 1, anon_sym_this, - ACTIONS(2884), 1, + ACTIONS(3558), 1, sym_identifier, - STATE(1378), 1, + STATE(908), 1, + aux_sym_member_expression_repeat1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(1585), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1481), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1899), 9, + STATE(3099), 9, sym__literal, sym_integer, sym_float, @@ -89775,9 +95802,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(694), 13, + ACTIONS(1386), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -89789,8 +95815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(692), 17, + ACTIONS(1384), 19, + sym__lookback_semicolon, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -89807,51 +95835,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1054] = 23, - ACTIONS(39), 1, + [2847] = 20, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(2882), 1, + ACTIONS(3566), 1, sym_identifier, - STATE(1654), 1, - sym_string, - STATE(1689), 1, - sym_member_expression, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2461), 1, + ACTIONS(3569), 1, + anon_sym_this, + STATE(215), 1, sym__lhs_expression, + STATE(884), 1, + sym_member_expression, + STATE(906), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(1806), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1846), 9, + STATE(2839), 9, sym__literal, sym_integer, sym_float, @@ -89861,7 +95882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(694), 12, + ACTIONS(1397), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -89874,9 +95895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(692), 18, - sym__lookback_semicolon, + ACTIONS(1395), 19, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -89893,51 +95915,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1163] = 23, - ACTIONS(1248), 1, + [2947] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(2884), 1, + ACTIONS(3554), 1, sym_identifier, - STATE(1378), 1, + STATE(215), 1, + sym__lhs_expression, + STATE(884), 1, sym_member_expression, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(1585), 1, + STATE(906), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, - STATE(2578), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1899), 9, + STATE(2839), 9, sym__literal, sym_integer, sym_float, @@ -89947,9 +95962,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(700), 13, + ACTIONS(1438), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -89961,8 +95975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(698), 17, + ACTIONS(1436), 19, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -89979,51 +95995,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1272] = 23, - ACTIONS(670), 1, + [3047] = 20, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_this, - ACTIONS(2880), 1, + ACTIONS(3572), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + ACTIONS(3575), 1, + anon_sym_this, + STATE(908), 1, + aux_sym_member_expression_repeat1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(1655), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1901), 9, + STATE(3099), 9, sym__literal, sym_integer, sym_float, @@ -90033,7 +96042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(694), 12, + ACTIONS(1397), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -90046,9 +96055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(692), 18, + ACTIONS(1395), 19, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -90065,44 +96075,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1381] = 20, - ACTIONS(670), 1, + [3147] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1494), 1, + ACTIONS(2060), 1, anon_sym_this, - ACTIONS(2886), 1, + ACTIONS(3552), 1, sym_identifier, - STATE(860), 1, + STATE(884), 1, + sym_member_expression, + STATE(911), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(951), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(2840), 9, sym__literal, sym_integer, sym_float, @@ -90112,8 +96122,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(668), 12, + ACTIONS(1386), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -90125,12 +96136,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(666), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1384), 18, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -90147,44 +96155,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1483] = 20, - ACTIONS(731), 1, + [3247] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2891), 1, + ACTIONS(2448), 1, anon_sym_this, - STATE(860), 1, + ACTIONS(3558), 1, + sym_identifier, + STATE(908), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(951), 1, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(3099), 9, sym__literal, sym_integer, sym_float, @@ -90194,7 +96202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(729), 12, + ACTIONS(1390), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -90207,12 +96215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(727), 21, + ACTIONS(1388), 19, 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, @@ -90229,112 +96235,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1585] = 6, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(2894), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 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(1050), 29, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + [3347] = 20, + ACTIONS(1399), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOLLARtype, + ACTIONS(1402), 1, 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [1659] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(1494), 1, - anon_sym_this, - ACTIONS(2886), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(860), 1, + ACTIONS(3581), 1, + anon_sym_this, + STATE(884), 1, + sym_member_expression, + STATE(911), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(951), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(2840), 9, sym__literal, sym_integer, sym_float, @@ -90344,8 +96282,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(770), 12, + ACTIONS(1397), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -90357,12 +96296,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(768), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1395), 18, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -90379,44 +96315,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1761] = 20, - ACTIONS(670), 1, + [3447] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1494), 1, + ACTIONS(2060), 1, anon_sym_this, - ACTIONS(2886), 1, + ACTIONS(3552), 1, sym_identifier, - STATE(860), 1, + STATE(884), 1, + sym_member_expression, + STATE(911), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(951), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(2840), 9, sym__literal, sym_integer, sym_float, @@ -90426,8 +96362,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(774), 12, + ACTIONS(1438), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -90439,12 +96376,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(772), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1436), 18, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -90461,44 +96395,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1863] = 20, - ACTIONS(670), 1, + [3547] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1494), 1, + ACTIONS(2060), 1, anon_sym_this, - ACTIONS(2886), 1, + ACTIONS(3552), 1, sym_identifier, - STATE(860), 1, + STATE(884), 1, + sym_member_expression, + STATE(911), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(951), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(2840), 9, sym__literal, sym_integer, sym_float, @@ -90508,8 +96442,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(766), 12, + ACTIONS(1442), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -90521,12 +96456,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(764), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1440), 18, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -90543,44 +96475,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1965] = 20, - ACTIONS(670), 1, + [3647] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1536), 1, anon_sym_this, - ACTIONS(2898), 1, + ACTIONS(3556), 1, sym_identifier, - STATE(878), 1, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, + STATE(1021), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1038), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2738), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -90590,9 +96522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(766), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1386), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90603,10 +96533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(764), 19, - sym__lookback_semicolon, + ACTIONS(1384), 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, @@ -90623,44 +96555,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2065] = 20, - ACTIONS(670), 1, + [3747] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1614), 1, - anon_sym_this, - ACTIONS(2900), 1, + ACTIONS(3584), 1, sym_identifier, - STATE(166), 1, + ACTIONS(3586), 1, + anon_sym_this, + STATE(917), 1, + aux_sym_member_expression_repeat1, + STATE(1083), 1, sym__lhs_expression, - STATE(850), 1, + STATE(1094), 1, sym_member_expression, - STATE(867), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -90670,9 +96602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(770), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1386), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90683,10 +96613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(768), 19, + ACTIONS(1384), 20, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -90703,44 +96634,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2165] = 20, - ACTIONS(731), 1, + [3846] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2902), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2905), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(166), 1, + STATE(917), 1, + aux_sym_member_expression_repeat1, + STATE(1083), 1, sym__lhs_expression, - STATE(850), 1, + STATE(1094), 1, sym_member_expression, - STATE(867), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -90750,9 +96681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(729), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1390), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90763,10 +96692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(727), 19, + ACTIONS(1388), 20, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -90783,44 +96713,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2265] = 20, - ACTIONS(670), 1, + [3945] = 20, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(1614), 1, - anon_sym_this, - ACTIONS(2900), 1, + ACTIONS(3588), 1, sym_identifier, - STATE(166), 1, + ACTIONS(3591), 1, + anon_sym_this, + STATE(917), 1, + aux_sym_member_expression_repeat1, + STATE(1083), 1, sym__lhs_expression, - STATE(850), 1, + STATE(1094), 1, sym_member_expression, - STATE(867), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -90830,9 +96760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(766), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1397), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90843,10 +96771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(764), 19, + ACTIONS(1395), 20, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -90863,44 +96792,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2365] = 20, - ACTIONS(670), 1, + [4044] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1614), 1, - anon_sym_this, - ACTIONS(2900), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(166), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(923), 1, + aux_sym_member_expression_repeat1, + STATE(1005), 1, sym__lhs_expression, - STATE(850), 1, + STATE(1007), 1, sym_member_expression, - STATE(867), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -90910,9 +96839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(668), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1386), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90923,7 +96850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(666), 19, + ACTIONS(1384), 20, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, anon_sym_COLON, @@ -90943,44 +96871,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2465] = 20, - ACTIONS(670), 1, + [4143] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1614), 1, - anon_sym_this, - ACTIONS(2900), 1, + ACTIONS(3584), 1, sym_identifier, - STATE(166), 1, + ACTIONS(3586), 1, + anon_sym_this, + STATE(917), 1, + aux_sym_member_expression_repeat1, + STATE(1083), 1, sym__lhs_expression, - STATE(850), 1, + STATE(1094), 1, sym_member_expression, - STATE(867), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -90990,9 +96918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(774), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1438), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91003,10 +96929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(772), 19, + ACTIONS(1436), 20, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -91023,44 +96950,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2565] = 20, - ACTIONS(670), 1, + [4242] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(912), 1, - anon_sym_this, - ACTIONS(2908), 1, + ACTIONS(3584), 1, sym_identifier, - STATE(873), 1, + ACTIONS(3586), 1, + anon_sym_this, + STATE(917), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, + STATE(1083), 1, sym__lhs_expression, - STATE(1029), 1, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -91070,7 +96997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(766), 10, + ACTIONS(1442), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91081,11 +97008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(764), 21, - sym__closing_brace_marker, + ACTIONS(1440), 20, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -91103,44 +97029,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2665] = 20, - ACTIONS(670), 1, + [4341] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(912), 1, - anon_sym_this, - ACTIONS(2908), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(873), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(923), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(1029), 1, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -91150,7 +97076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(770), 10, + ACTIONS(1442), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91161,12 +97087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(768), 21, - sym__closing_brace_marker, + ACTIONS(1440), 20, + sym__lookback_semicolon, 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, @@ -91183,44 +97108,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2765] = 20, - ACTIONS(731), 1, + [4440] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2910), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(2913), 1, + ACTIONS(3596), 1, anon_sym_this, - STATE(873), 1, + STATE(923), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(1029), 1, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -91230,7 +97155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(729), 10, + ACTIONS(1438), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91241,12 +97166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(727), 21, - sym__closing_brace_marker, + ACTIONS(1436), 20, + sym__lookback_semicolon, 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, @@ -91263,44 +97187,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2865] = 20, - ACTIONS(670), 1, + [4539] = 20, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(912), 1, - anon_sym_this, - ACTIONS(2908), 1, + ACTIONS(3598), 1, sym_identifier, - STATE(873), 1, + ACTIONS(3601), 1, + anon_sym_this, + STATE(923), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(1029), 1, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -91310,7 +97234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(668), 10, + ACTIONS(1397), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91321,12 +97245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(666), 21, - sym__closing_brace_marker, + ACTIONS(1395), 20, + sym__lookback_semicolon, 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, @@ -91343,44 +97266,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2965] = 20, - ACTIONS(670), 1, + [4638] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(912), 1, - anon_sym_this, - ACTIONS(2908), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(873), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(923), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(1029), 1, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -91390,7 +97313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(774), 10, + ACTIONS(1390), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91401,12 +97324,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(772), 21, - sym__closing_brace_marker, + ACTIONS(1388), 20, + sym__lookback_semicolon, 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, @@ -91423,56 +97345,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [3065] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [4737] = 9, + ACTIONS(1714), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3604), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 23, + anon_sym_STAR, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_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, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1780), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - ACTIONS(2898), 1, - sym_identifier, - STATE(878), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2738), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(668), 12, - anon_sym_DOT, - anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91480,13 +97404,35 @@ 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(666), 19, - sym__lookback_semicolon, - anon_sym_STAR, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [4813] = 8, + ACTIONS(1782), 1, anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3608), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3604), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 24, + 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, @@ -91500,59 +97446,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, anon_sym_DOT_DOT_DOT, - [3165] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1780), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - ACTIONS(2898), 1, + 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_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - STATE(878), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + [4887] = 4, + ACTIONS(1888), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2738), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(774), 12, + ACTIONS(1784), 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, @@ -91563,10 +97505,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(772), 19, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [4953] = 4, + ACTIONS(3604), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1624), 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, @@ -91583,44 +97569,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [3265] = 20, - ACTIONS(731), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1626), 28, + 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_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, + [5019] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2919), 1, + ACTIONS(2316), 1, anon_sym_this, - STATE(878), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, + ACTIONS(3610), 1, + sym_identifier, + STATE(884), 1, sym_member_expression, - STATE(967), 1, + STATE(931), 1, + aux_sym_member_expression_repeat1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2738), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -91630,9 +97649,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(729), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1438), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91643,8 +97661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(727), 19, - sym__lookback_semicolon, + ACTIONS(1436), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -91663,44 +97680,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [3365] = 20, - ACTIONS(670), 1, + [5117] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(2316), 1, anon_sym_this, - ACTIONS(2922), 1, + ACTIONS(3610), 1, sym_identifier, - STATE(850), 1, + STATE(884), 1, sym_member_expression, - STATE(881), 1, + STATE(931), 1, aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2754), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -91710,10 +97727,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(766), 13, - anon_sym_DOT, + ACTIONS(1390), 11, anon_sym_in, - anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91724,7 +97739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(764), 18, + ACTIONS(1388), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -91743,44 +97758,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [3465] = 20, - ACTIONS(670), 1, + [5215] = 20, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(1686), 1, - anon_sym_this, - ACTIONS(2922), 1, + ACTIONS(3612), 1, sym_identifier, - STATE(850), 1, + ACTIONS(3615), 1, + anon_sym_this, + STATE(884), 1, sym_member_expression, - STATE(881), 1, + STATE(931), 1, aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(2754), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -91790,10 +97805,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(770), 13, - anon_sym_DOT, + ACTIONS(1397), 11, anon_sym_in, - anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91804,7 +97817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(768), 18, + ACTIONS(1395), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -91823,57 +97836,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [3565] = 20, - ACTIONS(731), 1, + [5313] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3604), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 24, + anon_sym_STAR, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(734), 1, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(743), 1, - aux_sym_integer_token1, - ACTIONS(746), 1, + 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, - ACTIONS(749), 1, - aux_sym_float_token1, - ACTIONS(752), 1, aux_sym_float_token2, - ACTIONS(758), 1, aux_sym_string_token1, - ACTIONS(761), 1, aux_sym_string_token3, - ACTIONS(2924), 1, - sym_identifier, - ACTIONS(2927), 1, + ACTIONS(1780), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - STATE(850), 1, - sym_member_expression, - STATE(881), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - STATE(2754), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(729), 13, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91881,12 +97894,38 @@ 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(727), 18, - anon_sym_STAR, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [5387] = 9, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3618), 1, + anon_sym_DOT, + ACTIONS(3620), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3604), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1782), 4, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1778), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -91900,47 +97939,74 @@ 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, anon_sym_DOT_DOT_DOT, - [3665] = 20, - ACTIONS(670), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1780), 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, + [5463] = 20, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(2898), 1, + ACTIONS(3622), 1, sym_identifier, - STATE(878), 1, + ACTIONS(3625), 1, + anon_sym_this, + STATE(934), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(2738), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -91950,9 +98016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(770), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1397), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -91963,7 +98027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(768), 19, + ACTIONS(1395), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, @@ -91983,44 +98047,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [3765] = 20, - ACTIONS(670), 1, + [5561] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, - anon_sym_this, - ACTIONS(2922), 1, + ACTIONS(3628), 1, sym_identifier, - STATE(850), 1, - sym_member_expression, - STATE(881), 1, + STATE(934), 1, aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2754), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -92030,10 +98094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(668), 13, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(1390), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92044,7 +98105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(666), 18, + ACTIONS(1388), 19, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -92063,44 +98125,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [3865] = 20, - ACTIONS(670), 1, + [5659] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, - anon_sym_this, - ACTIONS(2922), 1, + ACTIONS(3628), 1, sym_identifier, - STATE(850), 1, - sym_member_expression, - STATE(881), 1, + STATE(934), 1, aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2754), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -92110,10 +98172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(774), 13, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(1438), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92124,7 +98183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(772), 18, + ACTIONS(1436), 19, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -92143,44 +98203,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [3965] = 20, - ACTIONS(670), 1, + [5757] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, + ACTIONS(2316), 1, anon_sym_this, - STATE(888), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, + ACTIONS(3610), 1, + sym_identifier, + STATE(884), 1, sym_member_expression, - STATE(967), 1, + STATE(931), 1, + aux_sym_member_expression_repeat1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -92190,7 +98250,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(770), 10, + ACTIONS(1442), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92201,11 +98262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(768), 20, - sym__lookback_semicolon, + ACTIONS(1440), 18, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -92222,54 +98281,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4064] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, - anon_sym_this, - STATE(893), 1, - aux_sym_member_expression_repeat1, - STATE(1044), 1, - sym__lhs_expression, - STATE(1061), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, + [5855] = 6, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(3630), 1, + anon_sym_DOT, + ACTIONS(3632), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2733), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(774), 10, + ACTIONS(1784), 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, @@ -92280,10 +98310,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(772), 20, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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, @@ -92301,44 +98341,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4163] = 20, - ACTIONS(670), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [5925] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(888), 1, + STATE(934), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -92348,7 +98392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(766), 10, + ACTIONS(1386), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92359,11 +98403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(764), 20, + ACTIONS(1384), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -92380,44 +98423,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4262] = 20, - ACTIONS(731), 1, + [6023] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2938), 1, - sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2316), 1, anon_sym_this, - STATE(888), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, + ACTIONS(3610), 1, + sym_identifier, + STATE(884), 1, sym_member_expression, - STATE(967), 1, + STATE(931), 1, + aux_sym_member_expression_repeat1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -92427,7 +98470,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(729), 10, + ACTIONS(1386), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92438,11 +98482,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(727), 20, - sym__lookback_semicolon, + ACTIONS(1384), 18, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -92459,44 +98501,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4361] = 20, - ACTIONS(670), 1, + [6121] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(888), 1, + STATE(934), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -92506,7 +98548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(668), 10, + ACTIONS(1442), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92517,11 +98559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(666), 20, + ACTIONS(1440), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -92538,69 +98579,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4460] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [6219] = 9, + ACTIONS(1714), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(888), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3608), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2762), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(774), 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(772), 20, - sym__lookback_semicolon, - anon_sym_STAR, - anon_sym_LPAREN, + ACTIONS(3604), 2, anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 23, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -92614,57 +98614,23 @@ 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, anon_sym_DOT_DOT_DOT, - [4559] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(1780), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - STATE(893), 1, - aux_sym_member_expression_repeat1, - STATE(1044), 1, - sym__lhs_expression, - STATE(1061), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2733), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(766), 10, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92672,14 +98638,39 @@ 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(764), 20, - sym__lookback_semicolon, - anon_sym_STAR, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6295] = 10, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3604), 1, + anon_sym_EQ_GT, + ACTIONS(3630), 1, + anon_sym_DOT, + ACTIONS(3632), 1, + anon_sym_QMARK, + ACTIONS(3634), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1782), 4, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_GT, + ACTIONS(1778), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -92693,57 +98684,21 @@ 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, anon_sym_DOT_DOT_DOT, - [4658] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(1780), 23, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - STATE(893), 1, - aux_sym_member_expression_repeat1, - STATE(1044), 1, - sym__lhs_expression, - STATE(1061), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2733), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(770), 10, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92751,14 +98706,31 @@ 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(768), 20, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6373] = 6, + ACTIONS(3604), 1, + anon_sym_EQ_GT, + ACTIONS(3636), 1, + anon_sym_DOT, + ACTIONS(3638), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1778), 25, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -92772,57 +98744,23 @@ 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, anon_sym_DOT_DOT_DOT, - [4757] = 20, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, - anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(743), 1, - aux_sym_integer_token1, - ACTIONS(746), 1, aux_sym_integer_token2, - ACTIONS(749), 1, - aux_sym_float_token1, - ACTIONS(752), 1, aux_sym_float_token2, - ACTIONS(758), 1, aux_sym_string_token1, - ACTIONS(761), 1, aux_sym_string_token3, - ACTIONS(2944), 1, - sym_identifier, - ACTIONS(2947), 1, + ACTIONS(1780), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - STATE(893), 1, - aux_sym_member_expression_repeat1, - STATE(1044), 1, - sym__lhs_expression, - STATE(1061), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - STATE(2733), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(729), 10, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -92833,11 +98771,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(727), 20, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6442] = 6, + ACTIONS(3604), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_DOT, + ACTIONS(3642), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1778), 25, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -92851,57 +98807,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, anon_sym_DOT_DOT_DOT, - [4856] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(1780), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - STATE(893), 1, - aux_sym_member_expression_repeat1, - STATE(1044), 1, - sym__lhs_expression, - STATE(1061), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, + 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(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2733), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(668), 10, + ACTIONS(1784), 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, @@ -92912,10 +98865,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(666), 20, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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, @@ -92933,17 +98896,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4955] = 6, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(2952), 1, - anon_sym_QMARK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [6574] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 24, + ACTIONS(1892), 26, + anon_sym_DOT, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -92951,6 +98913,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, @@ -92968,7 +98931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 28, + ACTIONS(1890), 28, anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92997,68 +98960,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [5025] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [6637] = 6, + ACTIONS(1714), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(1604), 1, - anon_sym_this, - ACTIONS(2954), 1, - sym_identifier, - STATE(850), 1, - sym_member_expression, - STATE(898), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + ACTIONS(1784), 1, + anon_sym_LT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2748), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(766), 11, - anon_sym_in, - 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(764), 18, - anon_sym_STAR, + ACTIONS(1782), 4, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1778), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -93075,54 +98993,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5123] = 20, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2956), 1, - sym_identifier, - STATE(901), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2782), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(770), 10, + ACTIONS(1780), 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, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -93130,13 +99015,29 @@ 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(768), 19, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6706] = 5, + ACTIONS(3644), 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(3358), 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, @@ -93153,55 +99054,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5221] = 20, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, - anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(743), 1, - aux_sym_integer_token1, - ACTIONS(746), 1, aux_sym_integer_token2, - ACTIONS(749), 1, - aux_sym_float_token1, - ACTIONS(752), 1, aux_sym_float_token2, - ACTIONS(758), 1, aux_sym_string_token1, - ACTIONS(761), 1, aux_sym_string_token3, - ACTIONS(2958), 1, - sym_identifier, - ACTIONS(2961), 1, + ACTIONS(3360), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - STATE(850), 1, - sym_member_expression, - STATE(898), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - STATE(2748), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(729), 11, - anon_sym_in, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -93212,9 +99078,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(727), 18, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6772] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3369), 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, @@ -93231,55 +99113,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5319] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(1604), 1, + ACTIONS(3371), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - ACTIONS(2954), 1, + 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, - STATE(850), 1, - sym_member_expression, - STATE(898), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + [6836] = 6, + ACTIONS(3646), 1, + anon_sym_else, + ACTIONS(3648), 1, + sym__lookback_semicolon, + STATE(773), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2748), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(770), 11, - anon_sym_in, + ACTIONS(2606), 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, @@ -93290,9 +99174,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(768), 18, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(2608), 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, @@ -93309,31 +99202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5417] = 10, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2950), 1, - anon_sym_DOT, - ACTIONS(2952), 1, - anon_sym_QMARK, - ACTIONS(2964), 1, - anon_sym_COLON, - ACTIONS(2966), 1, - anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [6904] = 5, + ACTIONS(3644), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1046), 22, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3352), 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, @@ -93347,13 +99234,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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1048), 23, + ACTIONS(3354), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -93361,6 +99249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_else, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -93369,6 +99258,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, @@ -93377,68 +99267,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [5495] = 20, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, + [6970] = 10, + ACTIONS(1714), 1, anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(743), 1, - aux_sym_integer_token1, - ACTIONS(746), 1, - aux_sym_integer_token2, - ACTIONS(749), 1, - aux_sym_float_token1, - ACTIONS(752), 1, - aux_sym_float_token2, - ACTIONS(758), 1, - aux_sym_string_token1, - ACTIONS(761), 1, - aux_sym_string_token3, - ACTIONS(2968), 1, - sym_identifier, - ACTIONS(2971), 1, - anon_sym_this, - STATE(901), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_QMARK, + ACTIONS(3604), 1, + anon_sym_EQ_GT, + ACTIONS(3650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - STATE(2782), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(729), 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(727), 19, - sym__lookback_semicolon, + ACTIONS(1778), 23, 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, @@ -93452,58 +99303,21 @@ 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, anon_sym_DOT_DOT_DOT, - [5593] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(1604), 1, + ACTIONS(1780), 23, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - ACTIONS(2954), 1, - sym_identifier, - STATE(850), 1, - sym_member_expression, - STATE(898), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2748), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(668), 11, - anon_sym_in, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -93511,12 +99325,27 @@ 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(666), 18, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [7046] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3358), 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, @@ -93533,55 +99362,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5691] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(1604), 1, + ACTIONS(3360), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - ACTIONS(2954), 1, - sym_identifier, - STATE(850), 1, - sym_member_expression, - STATE(898), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2748), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(774), 11, - anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -93592,9 +99387,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(772), 18, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [7110] = 5, + ACTIONS(3644), 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(3369), 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, @@ -93611,54 +99424,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5789] = 20, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2956), 1, - sym_identifier, - STATE(901), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2782), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(774), 10, + ACTIONS(3371), 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, @@ -93669,10 +99448,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(772), 19, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [7176] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3352), 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, @@ -93689,14 +99483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5887] = 4, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 26, - anon_sym_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(3354), 26, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -93704,7 +99495,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, @@ -93722,15 +99514,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 28, + [7240] = 5, + ACTIONS(3652), 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(3362), 25, 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, @@ -93751,54 +99549,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [5953] = 20, - ACTIONS(41), 1, + ACTIONS(3364), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, + 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, - ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2956), 1, + anon_sym_true, + anon_sym_false, sym_identifier, - STATE(901), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + [7306] = 6, + ACTIONS(3655), 1, + anon_sym_else, + ACTIONS(3657), 1, + sym__lookback_semicolon, + STATE(773), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2782), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(668), 10, + ACTIONS(2606), 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, @@ -93809,10 +99604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(666), 19, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(2608), 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, @@ -93829,54 +99632,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [6051] = 20, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2956), 1, - sym_identifier, - STATE(901), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + [7373] = 5, + ACTIONS(3646), 1, + anon_sym_else, + STATE(824), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2782), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(766), 10, + ACTIONS(2650), 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, @@ -93887,50 +99664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(764), 19, - sym__lookback_semicolon, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(2652), 25, 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, - [6149] = 9, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2974), 1, - anon_sym_DOT, - ACTIONS(2976), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2966), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1050), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1046), 22, - anon_sym_STAR, anon_sym_LBRACE, anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -93944,13 +99689,23 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1048), 23, + [7438] = 5, + ACTIONS(3659), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(967), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3354), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -93966,6 +99721,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, @@ -93974,12 +99730,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6225] = 3, + ACTIONS(3352), 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, + 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, + [7503] = 5, + ACTIONS(3659), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1116), 26, - anon_sym_DOT, + STATE(967), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3371), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -93987,7 +99773,6 @@ 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, @@ -94005,15 +99790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1114), 28, + ACTIONS(3369), 25, 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, @@ -94034,12 +99816,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6288] = 3, + [7568] = 5, + ACTIONS(3659), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 26, - anon_sym_DOT, + STATE(967), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3360), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94047,7 +99833,6 @@ 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, @@ -94065,15 +99850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 28, + ACTIONS(3358), 25, 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, @@ -94094,23 +99876,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6351] = 6, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, + [7633] = 5, + ACTIONS(3646), 1, + anon_sym_else, + STATE(773), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1046), 23, + ACTIONS(2606), 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, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(2608), 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, @@ -94131,8 +99936,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1048), 25, + [7698] = 6, + ACTIONS(3604), 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(1780), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94140,7 +99954,6 @@ 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, @@ -94149,6 +99962,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, @@ -94157,13 +99971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6420] = 4, - ACTIONS(2966), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1960), 26, + ACTIONS(1778), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94183,15 +99991,21 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1962), 26, - anon_sym_DOT, + [7765] = 5, + ACTIONS(3646), 1, + anon_sym_else, + STATE(822), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2640), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94199,7 +100013,7 @@ 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_new, anon_sym_BANG, anon_sym_DASH, @@ -94217,28 +100031,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6484] = 9, - ACTIONS(1050), 1, + ACTIONS(2642), 25, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1052), 1, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2894), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_QMARK, + 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, + [7830] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2966), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1046), 23, + STATE(967), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3358), 25, anon_sym_STAR, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -94252,13 +100083,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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1048), 23, + ACTIONS(3360), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94266,6 +100098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -94274,6 +100107,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, @@ -94282,48 +100116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6558] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2978), 1, - anon_sym_DOT, - ACTIONS(2980), 1, - anon_sym_QMARK, + [7893] = 5, + ACTIONS(3665), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2966), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1046), 23, - anon_sym_STAR, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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(1048), 23, + STATE(967), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3364), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94339,6 +100141,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, @@ -94347,22 +100150,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6632] = 8, - ACTIONS(1050), 1, + ACTIONS(3362), 25, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2978), 1, + 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_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, + [7958] = 6, + ACTIONS(3604), 1, + anon_sym_EQ_GT, + ACTIONS(3668), 1, anon_sym_DOT, - ACTIONS(2980), 1, + ACTIONS(3670), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2966), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 23, + ACTIONS(1780), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94378,6 +100202,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, @@ -94386,8 +100211,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1046), 24, + ACTIONS(1778), 25, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, @@ -94411,29 +100237,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6704] = 10, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2894), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_QMARK, - ACTIONS(2966), 1, - anon_sym_EQ_GT, - ACTIONS(2982), 1, - anon_sym_COLON, + [8025] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 23, + STATE(967), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3352), 25, anon_sym_STAR, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -94447,13 +100263,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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1048), 23, + ACTIONS(3354), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94461,6 +100278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -94469,6 +100287,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, @@ -94477,22 +100296,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6780] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2894), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_QMARK, + [8088] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2966), 2, - anon_sym_COLON, + STATE(967), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3369), 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, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_GT, - ACTIONS(1048), 23, + 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(3371), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94500,6 +100337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -94508,6 +100346,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, @@ -94516,42 +100355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1046), 24, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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, - [6852] = 6, - ACTIONS(2966), 1, - anon_sym_EQ_GT, - ACTIONS(2984), 1, - anon_sym_DOT, - ACTIONS(2986), 1, - anon_sym_QMARK, + [8151] = 5, + ACTIONS(3655), 1, + anon_sym_else, + STATE(773), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 24, + ACTIONS(2606), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94576,10 +100388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1046), 25, + ACTIONS(2608), 25, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_LBRACK, @@ -94596,23 +100407,22 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6919] = 6, - ACTIONS(2966), 1, - anon_sym_EQ_GT, - ACTIONS(2988), 1, - anon_sym_DOT, - ACTIONS(2990), 1, - anon_sym_QMARK, + [8215] = 5, + ACTIONS(3655), 1, + anon_sym_else, + STATE(824), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 24, + ACTIONS(2650), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94637,10 +100447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1046), 25, + ACTIONS(2652), 25, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_LBRACK, @@ -94657,23 +100466,22 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6986] = 6, - ACTIONS(2966), 1, - anon_sym_EQ_GT, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(2994), 1, - anon_sym_QMARK, + [8279] = 5, + ACTIONS(3655), 1, + anon_sym_else, + STATE(822), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 24, + ACTIONS(2640), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94698,10 +100506,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1046), 25, + ACTIONS(2642), 25, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_LBRACK, @@ -94718,54 +100525,29 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7053] = 6, - ACTIONS(2966), 1, - anon_sym_EQ_GT, - ACTIONS(2996), 1, - anon_sym_DOT, - ACTIONS(2998), 1, - anon_sym_QMARK, + [8343] = 6, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 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(1046), 25, + ACTIONS(3476), 24, 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, @@ -94779,17 +100561,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, - anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7120] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2872), 24, + ACTIONS(3478), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94814,40 +100592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(953), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [7179] = 4, - ACTIONS(1052), 1, - anon_sym_LBRACK, + [8409] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2822), 24, + ACTIONS(3528), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -94872,12 +100621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(2820), 25, + ACTIONS(1643), 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, @@ -94898,23 +100648,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7240] = 13, - ACTIONS(61), 1, + [8468] = 13, + ACTIONS(3674), 1, anon_sym_DASH, - STATE(928), 1, - aux_sym_expression_repeat1, - STATE(1926), 1, + STATE(866), 1, sym_operator, + STATE(978), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(836), 2, + ACTIONS(1356), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(2169), 2, + STATE(2056), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -94922,25 +100672,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3672), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3676), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(838), 6, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, + ACTIONS(1354), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_catch, anon_sym_else, + anon_sym_while, ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, @@ -94952,7 +100702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -94963,30 +100713,30 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [7318] = 10, - ACTIONS(808), 1, + [8546] = 10, + ACTIONS(1470), 1, anon_sym_DASH, - STATE(842), 1, + STATE(865), 1, sym_operator, - STATE(927), 1, + STATE(982), 1, aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(700), 2, + ACTIONS(1356), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(698), 6, - anon_sym_RPAREN, + ACTIONS(1472), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1354), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_catch, anon_sym_else, - anon_sym_while, - ACTIONS(59), 9, + ACTIONS(1468), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -94996,7 +100746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(372), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -95009,7 +100759,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(1466), 15, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -95025,23 +100775,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [7390] = 13, - ACTIONS(3002), 1, + [8618] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(842), 1, - sym_operator, - STATE(927), 1, + STATE(979), 1, aux_sym_expression_repeat1, + STATE(1807), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(700), 2, + ACTIONS(1444), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(1988), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -95049,19 +100799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3000), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3004), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(698), 6, + ACTIONS(1446), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, @@ -95079,7 +100829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -95090,50 +100840,50 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [7468] = 13, - ACTIONS(61), 1, + [8696] = 13, + ACTIONS(1487), 1, anon_sym_DASH, - STATE(931), 1, + STATE(979), 1, aux_sym_expression_repeat1, - STATE(1962), 1, + STATE(1807), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(836), 2, + ACTIONS(1476), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(2169), 2, + ACTIONS(1490), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(838), 6, + ACTIONS(1474), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(57), 10, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95144,7 +100894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -95155,50 +100905,50 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [7546] = 13, - ACTIONS(855), 1, + [8774] = 13, + ACTIONS(3680), 1, anon_sym_DASH, - STATE(928), 1, - aux_sym_expression_repeat1, - STATE(1926), 1, + STATE(865), 1, sym_operator, + STATE(982), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(844), 2, + ACTIONS(1356), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(858), 2, + ACTIONS(1472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2213), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(852), 4, + ACTIONS(1468), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(846), 5, + ACTIONS(3678), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(861), 5, + ACTIONS(3682), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(842), 6, + ACTIONS(1354), 6, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_COMMA, anon_sym_catch, anon_sym_else, - ACTIONS(849), 10, + ACTIONS(1466), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95209,7 +100959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(372), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -95220,50 +100970,50 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [7624] = 13, - ACTIONS(3008), 1, + [8852] = 13, + ACTIONS(1487), 1, anon_sym_DASH, - STATE(838), 1, - sym_operator, - STATE(924), 1, + STATE(981), 1, aux_sym_expression_repeat1, + STATE(1930), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 2, + ACTIONS(1476), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(834), 2, + ACTIONS(1490), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2130), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(830), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3006), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3010), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(698), 6, + ACTIONS(1474), 6, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_COMMA, anon_sym_catch, anon_sym_else, - ACTIONS(828), 10, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95274,7 +101024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(242), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -95285,112 +101035,50 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [7702] = 10, - ACTIONS(832), 1, + [8930] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(838), 1, - sym_operator, - STATE(924), 1, + STATE(981), 1, aux_sym_expression_repeat1, + STATE(1930), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(834), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(698), 6, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_catch, - anon_sym_else, - ACTIONS(830), 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(242), 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(828), 15, - 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, - anon_sym_DOT_DOT_DOT, - [7774] = 13, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(931), 1, - aux_sym_expression_repeat1, - STATE(1962), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(844), 2, + ACTIONS(1444), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(858), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(852), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(846), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(861), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(842), 6, - anon_sym_RPAREN, + ACTIONS(1446), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_catch, anon_sym_else, - anon_sym_while, - ACTIONS(849), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95401,7 +101089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -95412,167 +101100,55 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [7852] = 12, - ACTIONS(855), 1, + [9008] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(866), 1, sym_operator, + STATE(978), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(858), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(852), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(846), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(861), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(842), 6, + ACTIONS(1356), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1354), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(849), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [7926] = 12, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(933), 1, - aux_sym_expression_repeat1, - STATE(1833), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(858), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(852), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(846), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(861), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(842), 6, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_catch, - anon_sym_else, - ACTIONS(849), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(199), 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, - [8000] = 4, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 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(1050), 27, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(57), 15, 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_LT_LT, anon_sym_GT_GT_GT, @@ -95586,22 +101162,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [8058] = 6, - ACTIONS(1132), 1, + [9080] = 4, + ACTIONS(1888), 1, anon_sym_COLON, - ACTIONS(3012), 1, - anon_sym_DOT, - ACTIONS(3014), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 17, + ACTIONS(1784), 19, + anon_sym_DOT, anon_sym_this, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -95618,14 +101188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 27, + ACTIONS(1782), 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_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -95646,46 +101216,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8120] = 12, - ACTIONS(3018), 1, + [9138] = 12, + ACTIONS(1487), 1, anon_sym_DASH, - STATE(939), 1, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1292), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(834), 2, + ACTIONS(1490), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2178), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(830), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(810), 5, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(3016), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3020), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(828), 10, + ACTIONS(1474), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95696,7 +101267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(242), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -95707,171 +101278,49 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [8193] = 13, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(937), 1, - aux_sym_expression_repeat1, - STATE(1831), 1, - sym_operator, + [9212] = 6, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(3684), 1, + anon_sym_DOT, + ACTIONS(3686), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(844), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(858), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(842), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(852), 4, + ACTIONS(1784), 17, + anon_sym_this, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(846), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(861), 5, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(849), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [8268] = 13, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(938), 1, - aux_sym_expression_repeat1, - STATE(1785), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(844), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(858), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(842), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(852), 4, - anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(846), 5, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 27, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(861), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(849), 10, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DASH_GT, 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [8343] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - STATE(933), 1, - aux_sym_expression_repeat1, - STATE(1833), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 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(872), 5, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -95881,58 +101330,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [8416] = 13, - ACTIONS(61), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9274] = 12, + ACTIONS(1487), 1, anon_sym_DASH, - STATE(937), 1, + STATE(987), 1, aux_sym_expression_repeat1, - STATE(1831), 1, + STATE(1866), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1490), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(838), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(59), 4, + sym__bitwiseOperator, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1474), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95943,7 +101385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -95954,11 +101396,11 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [8491] = 3, + [9348] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(931), 20, + ACTIONS(1725), 20, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -95979,7 +101421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(928), 26, + ACTIONS(1722), 26, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -96006,15 +101448,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8546] = 3, + [9403] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1204), 20, + ACTIONS(1784), 19, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, - anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96031,10 +101472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1202), 26, + ACTIONS(1782), 27, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, @@ -96058,56 +101500,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8601] = 10, - ACTIONS(808), 1, + [9458] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(848), 1, - sym_operator, - STATE(940), 1, + STATE(994), 1, aux_sym_expression_repeat1, + STATE(1829), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(700), 2, + ACTIONS(1444), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(698), 3, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1446), 3, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(59), 9, + 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(186), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -96117,18 +101551,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [8670] = 6, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(3022), 1, - anon_sym_DOT, - ACTIONS(3024), 1, - anon_sym_QMARK, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9533] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 17, + ACTIONS(1850), 20, + anon_sym_DOT, anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96145,13 +101587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 26, + ACTIONS(1848), 26, sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -96172,104 +101614,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8731] = 10, - ACTIONS(3030), 1, + [9588] = 12, + ACTIONS(3690), 1, anon_sym_DASH, - STATE(847), 1, - sym_operator, - STATE(949), 1, + STATE(996), 1, aux_sym_expression_repeat1, + STATE(1360), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(3032), 2, + ACTIONS(1472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(698), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(3028), 9, + STATE(2258), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1468), 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(950), 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(3026), 15, + ACTIONS(1448), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(3688), 5, 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, - anon_sym_DOT_DOT_DOT, - [8800] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1116), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, + ACTIONS(3692), 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(1114), 27, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(1466), 10, 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, @@ -96279,15 +101664,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [8855] = 3, + STATE(372), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [9661] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1141), 20, + ACTIONS(1830), 20, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -96308,7 +101700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1138), 26, + ACTIONS(1828), 26, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -96335,47 +101727,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8910] = 13, - ACTIONS(3002), 1, + [9716] = 13, + ACTIONS(1487), 1, anon_sym_DASH, - STATE(848), 1, - sym_operator, - STATE(940), 1, + STATE(994), 1, aux_sym_expression_repeat1, + STATE(1829), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(700), 2, + ACTIONS(1476), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(1988), 2, + ACTIONS(1490), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(698), 3, + ACTIONS(1474), 3, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(59), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3000), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3004), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -96386,7 +101778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -96397,12 +101789,64 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [8985] = 13, + [9791] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1775), 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(1772), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9846] = 12, ACTIONS(61), 1, anon_sym_DASH, - STATE(938), 1, + STATE(987), 1, aux_sym_expression_repeat1, - STATE(1785), 1, + STATE(1866), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -96410,16 +101854,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(838), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, @@ -96437,6 +101874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1548), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, @@ -96448,7 +101891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -96459,15 +101902,18 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [9060] = 3, + [9919] = 6, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(3694), 1, + anon_sym_DOT, + ACTIONS(3696), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1180), 20, - anon_sym_DOT, + ACTIONS(1784), 17, anon_sym_this, - anon_sym_QMARK, - anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96484,13 +101930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1178), 26, + ACTIONS(1782), 26, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -96511,11 +101957,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9115] = 3, + [9980] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 19, + ACTIONS(1892), 19, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -96535,7 +101981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 27, + ACTIONS(1890), 27, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -96563,20 +102009,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9170] = 6, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(3034), 1, - anon_sym_DOT, - ACTIONS(3036), 1, - anon_sym_QMARK, + [10035] = 10, + ACTIONS(3702), 1, + anon_sym_DASH, + STATE(878), 1, + sym_operator, + STATE(990), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 17, - anon_sym_this, + ACTIONS(1356), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3704), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1354), 3, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(3700), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -96585,21 +102039,22 @@ 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(1050), 25, - sym__lookback_semicolon, + STATE(993), 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(3698), 15, 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, @@ -96613,53 +102068,47 @@ static const uint16_t ts_small_parse_table[] = { 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, - [9230] = 15, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3038), 1, - sym_identifier, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_RBRACK, - STATE(961), 1, - aux_sym_expression_repeat1, - STATE(1552), 1, - sym_operator, - STATE(2731), 1, - aux_sym_array_repeat1, + [10104] = 6, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(3706), 1, + anon_sym_DOT, + ACTIONS(3708), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1784), 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, - ACTIONS(15), 5, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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, - ACTIONS(65), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -96669,26 +102118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [9308] = 4, - ACTIONS(1132), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10164] = 4, + ACTIONS(1888), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 20, + ACTIONS(1784), 19, anon_sym_DOT, - anon_sym_in, anon_sym_this, anon_sym_QMARK, anon_sym_BANG, @@ -96707,7 +102148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 24, + ACTIONS(1782), 25, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -96732,79 +102174,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9364] = 15, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - sym_identifier, - ACTIONS(3046), 1, - anon_sym_RBRACK, - STATE(1009), 1, - aux_sym_expression_repeat1, - STATE(1953), 1, - sym_operator, - STATE(2640), 1, - aux_sym_array_repeat1, + [10220] = 4, + ACTIONS(1888), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [9442] = 5, - ACTIONS(3048), 1, + ACTIONS(1784), 20, anon_sym_DOT, - ACTIONS(3050), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 17, + anon_sym_in, anon_sym_this, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96821,12 +102201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 26, - sym__lookback_semicolon, + ACTIONS(1782), 24, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -96848,175 +102226,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9500] = 15, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3054), 1, - anon_sym_RBRACK, - STATE(1009), 1, - aux_sym_expression_repeat1, - STATE(1953), 1, - sym_operator, - STATE(2686), 1, - aux_sym_array_repeat1, + [10276] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, - anon_sym_BANG, + ACTIONS(1782), 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, - 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [9578] = 15, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3056), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1784), 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, + 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, - ACTIONS(3058), 1, - anon_sym_RBRACK, - STATE(965), 1, - aux_sym_expression_repeat1, - STATE(1552), 1, - sym_operator, - STATE(2853), 1, - aux_sym_array_repeat1, + [10330] = 5, + ACTIONS(3710), 1, + anon_sym_DOT, + ACTIONS(3712), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1784), 17, + anon_sym_this, 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_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [9656] = 15, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3060), 1, - sym_identifier, - ACTIONS(3062), 1, - anon_sym_RBRACK, - STATE(955), 1, - aux_sym_expression_repeat1, - STATE(1552), 1, - sym_operator, - STATE(2819), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 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_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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(65), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -97026,22 +102326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [9734] = 3, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10388] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 19, + ACTIONS(1892), 19, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -97061,7 +102354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 26, + ACTIONS(1890), 26, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, @@ -97088,49 +102381,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9788] = 15, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3064), 1, - sym_identifier, - ACTIONS(3066), 1, - anon_sym_RBRACK, - STATE(1009), 1, - aux_sym_expression_repeat1, - STATE(1953), 1, - sym_operator, - STATE(2707), 1, - aux_sym_array_repeat1, + [10442] = 6, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(3714), 1, + anon_sym_DOT, + ACTIONS(3716), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1784), 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(15), 5, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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_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), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -97140,24 +102431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [9866] = 4, - ACTIONS(1132), 1, - anon_sym_COLON, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10502] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 19, + ACTIONS(1784), 19, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -97177,11 +102459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 25, + ACTIONS(1782), 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, @@ -97203,20 +102486,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9922] = 15, + [10556] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3040), 1, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3068), 1, - sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3720), 1, anon_sym_RBRACK, - STATE(957), 1, + STATE(1043), 1, aux_sym_expression_repeat1, - STATE(1552), 1, + STATE(1367), 1, sym_operator, - STATE(2674), 1, + STATE(2989), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -97224,7 +102505,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -97255,7 +102536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -97266,48 +102547,45 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [10000] = 15, - ACTIONS(61), 1, + [10631] = 13, + ACTIONS(1474), 1, + anon_sym_RBRACE, + ACTIONS(1487), 1, anon_sym_DASH, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_RBRACK, - STATE(966), 1, + STATE(1009), 1, aux_sym_expression_repeat1, - STATE(1552), 1, + STATE(1766), 1, sym_operator, - STATE(2785), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1476), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1490), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97318,7 +102596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -97329,49 +102607,55 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [10078] = 15, - ACTIONS(61), 1, + [10704] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3078), 1, - anon_sym_RBRACK, - STATE(1009), 1, - aux_sym_expression_repeat1, - STATE(1953), 1, + ACTIONS(3722), 1, + anon_sym_RPAREN, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3726), 1, + sym__lookback_semicolon, + STATE(289), 1, sym_operator, - STATE(2683), 1, - aux_sym_array_repeat1, + STATE(1111), 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, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + STATE(199), 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), 15, anon_sym_STAR, + anon_sym_TILDE, 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), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -97381,60 +102665,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [10156] = 15, - ACTIONS(61), 1, + [10773] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3080), 1, - sym_identifier, - ACTIONS(3082), 1, - anon_sym_RBRACK, - STATE(1009), 1, - aux_sym_expression_repeat1, - STATE(1953), 1, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3728), 1, + anon_sym_RPAREN, + ACTIONS(3730), 1, + sym__lookback_semicolon, + STATE(300), 1, sym_operator, - STATE(2795), 1, - aux_sym_array_repeat1, + STATE(1112), 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, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + STATE(199), 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), 15, anon_sym_STAR, + anon_sym_TILDE, 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), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -97444,27 +102723,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [10234] = 3, + [10842] = 11, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3732), 1, + anon_sym_RPAREN, + ACTIONS(3734), 1, + sym__lookback_semicolon, + STATE(336), 1, + sym_operator, + STATE(1086), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1116), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -97473,22 +102752,22 @@ 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(1114), 26, - sym__lookback_semicolon, + STATE(199), 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), 15, 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, @@ -97502,25 +102781,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [10288] = 6, - ACTIONS(1132), 1, + [10911] = 11, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3736), 1, + anon_sym_LPAREN, + ACTIONS(3738), 1, anon_sym_COLON, - ACTIONS(3084), 1, - anon_sym_DOT, - ACTIONS(3086), 1, - anon_sym_QMARK, + ACTIONS(3740), 1, + sym__lookback_semicolon, + STATE(275), 1, + sym_operator, + STATE(1162), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 18, - anon_sym_in, - anon_sym_this, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -97529,20 +102810,22 @@ 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(1050), 24, + STATE(199), 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), 15, 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, @@ -97556,73 +102839,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [10348] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1050), 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(1054), 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, - 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, - [10402] = 14, + [10980] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3088), 1, + ACTIONS(3742), 1, anon_sym_RPAREN, - ACTIONS(3090), 1, + ACTIONS(3744), 1, anon_sym_COMMA, - STATE(932), 1, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1859), 1, sym_operator, - STATE(2793), 1, + STATE(2924), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -97630,7 +102858,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -97661,7 +102889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -97672,18 +102900,78 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [10477] = 11, - ACTIONS(808), 1, + [11055] = 13, + ACTIONS(1474), 1, + sym__lookback_semicolon, + ACTIONS(1487), 1, anon_sym_DASH, - ACTIONS(3092), 1, - anon_sym_RPAREN, - ACTIONS(3094), 1, + STATE(1015), 1, + aux_sym_expression_repeat1, + STATE(1821), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1476), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1490), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1484), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1478), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(1493), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1481), 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, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11128] = 11, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3724), 1, anon_sym_DASH_GT, - ACTIONS(3096), 1, + ACTIONS(3746), 1, + anon_sym_RPAREN, + ACTIONS(3748), 1, sym__lookback_semicolon, - STATE(359), 1, + STATE(279), 1, sym_operator, - STATE(1059), 1, + STATE(1084), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -97701,7 +102989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -97730,55 +103018,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [10546] = 11, - ACTIONS(808), 1, + [11197] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3098), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3750), 1, anon_sym_RPAREN, - ACTIONS(3100), 1, - sym__lookback_semicolon, - STATE(332), 1, + STATE(985), 1, + aux_sym_expression_repeat1, + STATE(1859), 1, sym_operator, - STATE(1043), 1, - aux_sym_variable_declaration_repeat2, + STATE(2873), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2228), 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(186), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -97788,18 +103068,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [10615] = 11, - ACTIONS(808), 1, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11272] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, + ACTIONS(3724), 1, anon_sym_DASH_GT, - ACTIONS(3102), 1, + ACTIONS(3752), 1, anon_sym_RPAREN, - ACTIONS(3104), 1, + ACTIONS(3754), 1, sym__lookback_semicolon, - STATE(334), 1, + STATE(260), 1, sym_operator, - STATE(1065), 1, + STATE(1106), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -97817,7 +103108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -97846,18 +103137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [10684] = 11, - ACTIONS(808), 1, + [11341] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, + ACTIONS(3724), 1, anon_sym_DASH_GT, - ACTIONS(3106), 1, + ACTIONS(3756), 1, anon_sym_RPAREN, - ACTIONS(3108), 1, + ACTIONS(3758), 1, sym__lookback_semicolon, - STATE(335), 1, + STATE(280), 1, sym_operator, - STATE(1039), 1, + STATE(1105), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -97875,7 +103166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -97904,18 +103195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [10753] = 11, - ACTIONS(808), 1, + [11410] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, + ACTIONS(3724), 1, anon_sym_DASH_GT, - ACTIONS(3110), 1, + ACTIONS(3760), 1, anon_sym_RPAREN, - ACTIONS(3112), 1, + ACTIONS(3762), 1, sym__lookback_semicolon, - STATE(223), 1, + STATE(294), 1, sym_operator, - STATE(1060), 1, + STATE(1093), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -97933,7 +103224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -97962,15 +103253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [10822] = 3, + [11479] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1116), 20, - anon_sym_DOT, - anon_sym_in, + ACTIONS(1892), 17, anon_sym_this, - anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97987,11 +103275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1114), 24, + ACTIONS(1890), 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, @@ -98012,55 +103303,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [10875] = 11, - ACTIONS(808), 1, + [11532] = 13, + ACTIONS(1354), 1, + anon_sym_in, + ACTIONS(3674), 1, anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3114), 1, - anon_sym_RPAREN, - ACTIONS(3116), 1, - sym__lookback_semicolon, - STATE(338), 1, + STATE(883), 1, sym_operator, - STATE(1055), 1, - aux_sym_variable_declaration_repeat2, + STATE(1024), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1356), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3770), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2264), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3768), 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(186), 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), 15, + ACTIONS(3764), 5, anon_sym_STAR, - anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3772), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3766), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -98070,45 +103352,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [10944] = 13, - ACTIONS(842), 1, + STATE(1026), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11605] = 13, + ACTIONS(1474), 1, anon_sym_in, - ACTIONS(855), 1, + ACTIONS(1487), 1, anon_sym_DASH, - STATE(978), 1, + STATE(1023), 1, aux_sym_expression_repeat1, STATE(1879), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(844), 2, + ACTIONS(1476), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(858), 2, + ACTIONS(1490), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(852), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(846), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(861), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(849), 10, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98119,7 +103412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -98130,55 +103423,46 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11017] = 11, - ACTIONS(808), 1, + [11678] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3118), 1, - anon_sym_RPAREN, - ACTIONS(3120), 1, - sym__lookback_semicolon, - STATE(340), 1, + ACTIONS(1446), 1, + anon_sym_in, + STATE(1023), 1, + aux_sym_expression_repeat1, + STATE(1879), 1, sym_operator, - STATE(1063), 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, + ACTIONS(1444), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2228), 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(186), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -98188,27 +103472,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [11086] = 11, - ACTIONS(808), 1, - anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3122), 1, - anon_sym_RPAREN, - ACTIONS(3124), 1, - sym__lookback_semicolon, - STATE(343), 1, - sym_operator, - STATE(1067), 1, - aux_sym_variable_declaration_repeat2, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11751] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(59), 9, + ACTIONS(1725), 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, @@ -98217,22 +103503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 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), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1722), 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, @@ -98246,11 +103529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [11155] = 3, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [11804] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1204), 21, + ACTIONS(1830), 21, anon_sym_DOT, anon_sym_in, anon_sym_this, @@ -98272,7 +103559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1202), 23, + ACTIONS(1828), 23, anon_sym_STAR, anon_sym_LBRACE, anon_sym_LBRACK, @@ -98296,26 +103583,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [11208] = 14, + [11857] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3090), 1, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3126), 1, - anon_sym_RPAREN, - STATE(932), 1, + ACTIONS(3774), 1, + anon_sym_RBRACK, + STATE(1042), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1367), 1, sym_operator, - STATE(2697), 1, - aux_sym__arg_list_repeat1, + STATE(2875), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -98346,7 +103633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -98357,46 +103644,45 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11283] = 14, - ACTIONS(61), 1, + [11932] = 13, + ACTIONS(1474), 1, + anon_sym_COLON, + ACTIONS(1487), 1, anon_sym_DASH, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RPAREN, - STATE(970), 1, + STATE(1028), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1890), 1, sym_operator, - STATE(2739), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1476), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1490), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -98407,7 +103693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -98418,46 +103704,54 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11358] = 13, - ACTIONS(698), 1, - anon_sym_RBRACE, - ACTIONS(3002), 1, + [12005] = 10, + ACTIONS(1354), 1, + sym__lookback_semicolon, + ACTIONS(3780), 1, anon_sym_DASH, - STATE(858), 1, + STATE(881), 1, sym_operator, - STATE(1000), 1, + STATE(1058), 1, aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(700), 2, + ACTIONS(1356), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(1988), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3778), 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, - ACTIONS(3000), 5, + STATE(1041), 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(3776), 15, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3004), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -98467,57 +103761,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [11431] = 13, - ACTIONS(842), 1, - anon_sym_RBRACE, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(985), 1, - aux_sym_expression_repeat1, - STATE(1897), 1, - sym_operator, + [12072] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(844), 2, + ACTIONS(1775), 20, anon_sym_DOT, + anon_sym_this, anon_sym_QMARK, - ACTIONS(858), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(852), 4, + 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(846), 5, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1772), 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(861), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(849), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -98527,57 +103807,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [12125] = 11, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3736), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, + anon_sym_COLON, + ACTIONS(3786), 1, + sym__lookback_semicolon, + STATE(254), 1, + sym_operator, + STATE(1227), 1, + sym_access_identifiers, + 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(199), 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, - [11504] = 13, - ACTIONS(842), 1, - sym__lookback_semicolon, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(986), 1, - aux_sym_expression_repeat1, - STATE(1769), 1, - sym_operator, + ACTIONS(57), 15, + 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, + anon_sym_DOT_DOT_DOT, + [12194] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(844), 2, + ACTIONS(1725), 20, anon_sym_DOT, + anon_sym_this, anon_sym_QMARK, - ACTIONS(858), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(852), 4, + 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(846), 5, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1722), 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(861), 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, + [12247] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1850), 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, - ACTIONS(849), 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(1848), 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, @@ -98587,66 +103965,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [11577] = 11, - ACTIONS(808), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [12300] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3130), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - anon_sym_COLON, - ACTIONS(3134), 1, - sym__lookback_semicolon, - STATE(321), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_RPAREN, + STATE(1017), 1, + aux_sym_expression_repeat1, + STATE(1367), 1, sym_operator, - STATE(1115), 1, - sym_access_identifiers, + STATE(2947), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2228), 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(186), 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), 15, - anon_sym_STAR, + ACTIONS(57), 10, 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, @@ -98656,26 +104019,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [11646] = 14, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12375] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3090), 1, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_RPAREN, - STATE(982), 1, + ACTIONS(3790), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1859), 1, sym_operator, - STATE(2692), 1, - aux_sym__arg_list_repeat1, + STATE(3061), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -98706,7 +104080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -98717,19 +104091,19 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11721] = 11, - ACTIONS(808), 1, + [12450] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3138), 1, - anon_sym_RPAREN, - ACTIONS(3140), 1, + ACTIONS(3736), 1, + anon_sym_LPAREN, + ACTIONS(3792), 1, + anon_sym_COLON, + ACTIONS(3794), 1, sym__lookback_semicolon, - STATE(232), 1, + STATE(247), 1, sym_operator, - STATE(1041), 1, - aux_sym_variable_declaration_repeat2, + STATE(1117), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, @@ -98746,7 +104120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -98775,25 +104149,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [11790] = 10, - ACTIONS(698), 1, - sym__lookback_semicolon, - ACTIONS(3146), 1, + [12519] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - STATE(856), 1, + ACTIONS(3736), 1, + anon_sym_LPAREN, + ACTIONS(3796), 1, + anon_sym_COLON, + ACTIONS(3798), 1, + sym__lookback_semicolon, + STATE(269), 1, sym_operator, - STATE(1008), 1, - aux_sym_expression_repeat1, + STATE(1144), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3144), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -98803,7 +104178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(1034), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -98816,7 +104191,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(3142), 15, + ACTIONS(57), 15, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -98832,85 +104207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [11857] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1854), 1, - sym_operator, + [12588] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(838), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(59), 4, + ACTIONS(1784), 17, + anon_sym_this, 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [11928] = 10, - ACTIONS(698), 1, - anon_sym_RBRACE, - ACTIONS(808), 1, anon_sym_DASH, - STATE(858), 1, - sym_operator, - STATE(1000), 1, - aux_sym_expression_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(700), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(59), 9, - anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -98919,75 +104223,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 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), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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_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, - [11995] = 13, - ACTIONS(842), 1, - anon_sym_COLON, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(993), 1, - aux_sym_expression_repeat1, - STATE(1732), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(844), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(858), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(852), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(846), 5, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(861), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(849), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -98997,37 +104253,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [12068] = 14, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [12641] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3150), 1, - anon_sym_RPAREN, - STATE(1024), 1, + ACTIONS(1446), 1, + anon_sym_RBRACE, + STATE(1009), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1766), 1, sym_operator, - STATE(2663), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + ACTIONS(1444), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -99058,95 +104306,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [12143] = 11, - ACTIONS(808), 1, - anon_sym_DASH, - ACTIONS(3130), 1, - anon_sym_LPAREN, - ACTIONS(3152), 1, - anon_sym_COLON, - ACTIONS(3154), 1, - sym__lookback_semicolon, - STATE(317), 1, - sym_operator, - STATE(1178), 1, - sym_access_identifiers, - 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(186), 12, + STATE(199), 10, 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), 15, - 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, - anon_sym_DOT_DOT_DOT, - [12212] = 10, - ACTIONS(698), 1, - anon_sym_in, - ACTIONS(3160), 1, - anon_sym_DASH, - STATE(855), 1, - sym_operator, - STATE(1001), 1, - aux_sym_expression_repeat1, + [12714] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 2, + ACTIONS(1892), 20, anon_sym_DOT, + anon_sym_in, + anon_sym_this, anon_sym_QMARK, - ACTIONS(3162), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3158), 9, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -99155,22 +104336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(1027), 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(3156), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1890), 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, @@ -99184,11 +104363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [12279] = 3, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [12767] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1204), 20, + ACTIONS(1830), 20, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -99209,7 +104392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1202), 24, + ACTIONS(1828), 24, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LBRACE, @@ -99234,45 +104417,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [12332] = 13, - ACTIONS(698), 1, - sym__lookback_semicolon, - ACTIONS(3166), 1, + [12820] = 14, + ACTIONS(61), 1, anon_sym_DASH, - STATE(856), 1, - sym_operator, - STATE(1008), 1, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, + STATE(1859), 1, + sym_operator, + STATE(2918), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2190), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3164), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3168), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99283,7 +104467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -99294,26 +104478,26 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12405] = 14, + [12895] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3090), 1, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_RPAREN, - STATE(1021), 1, + ACTIONS(3802), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1859), 1, sym_operator, - STATE(2856), 1, - aux_sym__arg_list_repeat1, + STATE(2830), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -99344,7 +104528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -99355,25 +104539,26 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12480] = 13, + [12970] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(838), 1, - anon_sym_RBRACE, - STATE(985), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3804), 1, + anon_sym_RPAREN, + STATE(1053), 1, aux_sym_expression_repeat1, - STATE(1897), 1, + STATE(1367), 1, sym_operator, + STATE(3040), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -99404,7 +104589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -99415,25 +104600,26 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12553] = 13, + [13045] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(838), 1, - anon_sym_in, - STATE(978), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3806), 1, + anon_sym_RPAREN, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1879), 1, + STATE(1859), 1, sym_operator, + STATE(3014), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -99464,7 +104650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -99475,18 +104661,18 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12626] = 11, - ACTIONS(808), 1, + [13120] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, + ACTIONS(3724), 1, anon_sym_DASH_GT, - ACTIONS(3172), 1, + ACTIONS(3808), 1, anon_sym_RPAREN, - ACTIONS(3174), 1, + ACTIONS(3810), 1, sym__lookback_semicolon, - STATE(357), 1, + STATE(267), 1, sym_operator, - STATE(1050), 1, + STATE(1085), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -99504,7 +104690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -99533,45 +104719,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [12695] = 12, - ACTIONS(3002), 1, + [13189] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - STATE(991), 1, - aux_sym_expression_repeat1, - STATE(1296), 1, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3812), 1, + anon_sym_RPAREN, + ACTIONS(3814), 1, + sym__lookback_semicolon, + STATE(270), 1, sym_operator, + STATE(1098), 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, - STATE(1988), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(698), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(59), 4, + 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, - ACTIONS(3000), 5, + STATE(199), 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), 15, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3004), 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, + [13258] = 10, + ACTIONS(1354), 1, + anon_sym_in, + ACTIONS(3816), 1, + anon_sym_DASH, + STATE(883), 1, + sym_operator, + STATE(1024), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1356), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3770), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3768), 9, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(1026), 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(3766), 15, + 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, @@ -99581,25 +104834,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + [13325] = 11, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3818), 1, + anon_sym_RPAREN, + ACTIONS(3820), 1, + sym__lookback_semicolon, + STATE(283), 1, + sym_operator, + STATE(1101), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(199), 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, - [12766] = 13, + ACTIONS(57), 15, + 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, + anon_sym_DOT_DOT_DOT, + [13394] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(838), 1, - anon_sym_COLON, - STATE(993), 1, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1732), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -99607,12 +104905,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, + ACTIONS(1446), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, @@ -99641,7 +104940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -99652,27 +104951,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12839] = 11, - ACTIONS(808), 1, - anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3176), 1, - anon_sym_RPAREN, - ACTIONS(3178), 1, - sym__lookback_semicolon, - STATE(228), 1, - sym_operator, - STATE(1047), 1, - aux_sym_variable_declaration_repeat2, + [13465] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(59), 9, + ACTIONS(1784), 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, @@ -99681,22 +104969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 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), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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, @@ -99710,55 +104997,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [12908] = 11, - ACTIONS(808), 1, - anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3180), 1, - anon_sym_RPAREN, - ACTIONS(3182), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [13518] = 13, + ACTIONS(1354), 1, sym__lookback_semicolon, - STATE(349), 1, + ACTIONS(3824), 1, + anon_sym_DASH, + STATE(881), 1, sym_operator, - STATE(1048), 1, - aux_sym_variable_declaration_repeat2, + STATE(1058), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1356), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2259), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 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(186), 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), 15, + ACTIONS(3822), 5, anon_sym_STAR, - anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3826), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99768,55 +105050,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [12977] = 11, - ACTIONS(808), 1, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [13591] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3130), 1, - anon_sym_LPAREN, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3186), 1, - sym__lookback_semicolon, - STATE(323), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + anon_sym_RPAREN, + STATE(985), 1, + aux_sym_expression_repeat1, + STATE(1859), 1, sym_operator, - STATE(1121), 1, - sym_access_identifiers, + STATE(2848), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2228), 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(186), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -99826,25 +105111,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13046] = 13, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [13666] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(838), 1, - sym__lookback_semicolon, - STATE(986), 1, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3830), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1769), 1, + STATE(1859), 1, sym_operator, + STATE(2878), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -99875,7 +105172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -99886,44 +105183,46 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13119] = 12, - ACTIONS(855), 1, + [13741] = 14, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1009), 1, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3832), 1, + anon_sym_RBRACK, + STATE(1035), 1, aux_sym_expression_repeat1, - STATE(1953), 1, + STATE(1367), 1, sym_operator, + STATE(2893), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(858), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(842), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(852), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(846), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(861), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(849), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99934,7 +105233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -99945,14 +105244,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13190] = 13, - ACTIONS(698), 1, - anon_sym_COLON, - ACTIONS(3002), 1, + [13816] = 13, + ACTIONS(1354), 1, + anon_sym_RBRACE, + ACTIONS(3674), 1, anon_sym_DASH, - STATE(852), 1, + STATE(882), 1, sym_operator, - STATE(1004), 1, + STATE(1039), 1, aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -99960,10 +105259,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(700), 2, + ACTIONS(1356), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(1988), 2, + STATE(2056), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -99971,13 +105270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3000), 5, + ACTIONS(3672), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3004), 5, + ACTIONS(3676), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -99994,7 +105293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100005,19 +105304,19 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13263] = 11, - ACTIONS(808), 1, + [13889] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3130), 1, - anon_sym_LPAREN, - ACTIONS(3188), 1, - anon_sym_COLON, - ACTIONS(3190), 1, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3834), 1, + anon_sym_RPAREN, + ACTIONS(3836), 1, sym__lookback_semicolon, - STATE(298), 1, + STATE(285), 1, sym_operator, - STATE(1095), 1, - sym_access_identifiers, + STATE(1092), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, @@ -100034,7 +105333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100063,86 +105362,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13332] = 13, - ACTIONS(698), 1, - anon_sym_in, - ACTIONS(3002), 1, - anon_sym_DASH, - STATE(855), 1, - sym_operator, - STATE(1001), 1, - aux_sym_expression_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(700), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(3162), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2187), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3158), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3194), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3156), 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, - anon_sym_DOT_DOT_DOT, - STATE(1027), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [13405] = 14, + [13958] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RPAREN, - STATE(932), 1, + ACTIONS(1446), 1, + sym__lookback_semicolon, + STATE(1015), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1821), 1, sym_operator, - STATE(2804), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + ACTIONS(1444), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -100173,7 +105411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100184,24 +105422,25 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13480] = 10, - ACTIONS(698), 1, - anon_sym_COLON, - ACTIONS(808), 1, + [14031] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - STATE(852), 1, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3838), 1, + anon_sym_RPAREN, + ACTIONS(3840), 1, + sym__lookback_semicolon, + STATE(286), 1, sym_operator, - STATE(1004), 1, - aux_sym_expression_repeat1, + STATE(1090), 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(700), 2, - anon_sym_DOT, - anon_sym_QMARK, ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, @@ -100212,7 +105451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100241,55 +105480,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13547] = 11, - ACTIONS(808), 1, + [14100] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3198), 1, - anon_sym_RPAREN, - ACTIONS(3200), 1, - sym__lookback_semicolon, - STATE(347), 1, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3842), 1, + anon_sym_RBRACK, + STATE(1065), 1, + aux_sym_expression_repeat1, + STATE(1367), 1, sym_operator, - STATE(1054), 1, - aux_sym_variable_declaration_repeat2, + STATE(2850), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2228), 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(186), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -100299,18 +105530,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13616] = 11, - ACTIONS(808), 1, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14175] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3130), 1, + ACTIONS(3736), 1, anon_sym_LPAREN, - ACTIONS(3202), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3204), 1, + ACTIONS(3846), 1, sym__lookback_semicolon, - STATE(239), 1, + STATE(334), 1, sym_operator, - STATE(1192), 1, + STATE(1160), 1, sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -100328,7 +105570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100357,75 +105599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13685] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(931), 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(928), 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, - 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, - [13738] = 11, - ACTIONS(808), 1, + [14244] = 10, + ACTIONS(1354), 1, + anon_sym_RBRACE, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3206), 1, - anon_sym_RPAREN, - ACTIONS(3208), 1, - sym__lookback_semicolon, - STATE(324), 1, + STATE(882), 1, sym_operator, - STATE(1064), 1, - aux_sym_variable_declaration_repeat2, + STATE(1039), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1356), 2, + anon_sym_DOT, + anon_sym_QMARK, ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, @@ -100436,7 +105627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100465,11 +105656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13807] = 3, + [14311] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1141), 21, + ACTIONS(1775), 21, anon_sym_DOT, anon_sym_in, anon_sym_this, @@ -100491,7 +105682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1138), 23, + ACTIONS(1772), 23, anon_sym_STAR, anon_sym_LBRACE, anon_sym_LBRACK, @@ -100515,55 +105706,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [13860] = 11, - ACTIONS(808), 1, + [14364] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3210), 1, - anon_sym_RPAREN, - ACTIONS(3212), 1, - sym__lookback_semicolon, - STATE(307), 1, + ACTIONS(1446), 1, + anon_sym_COLON, + STATE(1028), 1, + aux_sym_expression_repeat1, + STATE(1890), 1, sym_operator, - STATE(1062), 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, + ACTIONS(1444), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2228), 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(186), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -100573,26 +105755,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13929] = 14, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14437] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3090), 1, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3214), 1, - anon_sym_RPAREN, - STATE(932), 1, + ACTIONS(3848), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1859), 1, sym_operator, - STATE(2662), 1, - aux_sym__arg_list_repeat1, + STATE(2915), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -100623,7 +105816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100634,43 +105827,47 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [14004] = 3, + [14512] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3850), 1, + anon_sym_RPAREN, + STATE(1077), 1, + aux_sym_expression_repeat1, + STATE(1367), 1, + sym_operator, + STATE(2950), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1116), 17, - anon_sym_this, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1114), 27, - sym__closing_brace_marker, + ACTIONS(15), 5, 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, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -100680,47 +105877,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14057] = 3, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14587] = 12, + ACTIONS(3674), 1, + anon_sym_DASH, + STATE(1050), 1, + aux_sym_expression_repeat1, + STATE(1367), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(931), 21, - anon_sym_DOT, - anon_sym_in, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2056), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1354), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(928), 23, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_EQ, + ACTIONS(3672), 5, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3676), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -100730,22 +105936,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14110] = 14, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14658] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3090), 1, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(3852), 1, anon_sym_RPAREN, - STATE(932), 1, + STATE(1045), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1367), 1, sym_operator, - STATE(2774), 1, + STATE(2955), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -100753,7 +105966,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -100784,7 +105997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100795,43 +106008,46 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [14185] = 3, + [14733] = 13, + ACTIONS(1354), 1, + anon_sym_COLON, + ACTIONS(3674), 1, + anon_sym_DASH, + STATE(887), 1, + sym_operator, + STATE(1064), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1141), 20, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1356), 2, anon_sym_DOT, - anon_sym_this, anon_sym_QMARK, - anon_sym_new, + STATE(2056), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1138), 24, - sym__lookback_semicolon, + ACTIONS(3672), 5, 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(3676), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -100841,22 +106057,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14238] = 11, - ACTIONS(808), 1, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14806] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3130), 1, + ACTIONS(3736), 1, anon_sym_LPAREN, - ACTIONS(3218), 1, + ACTIONS(3854), 1, anon_sym_COLON, - ACTIONS(3220), 1, + ACTIONS(3856), 1, sym__lookback_semicolon, - STATE(326), 1, + STATE(272), 1, sym_operator, - STATE(1127), 1, + STATE(1154), 1, sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -100874,7 +106097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100903,68 +106126,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [14307] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1180), 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(1178), 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, - 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, - [14360] = 11, - ACTIONS(808), 1, + [14875] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, + ACTIONS(3724), 1, anon_sym_DASH_GT, - ACTIONS(3222), 1, + ACTIONS(3858), 1, anon_sym_RPAREN, - ACTIONS(3224), 1, + ACTIONS(3860), 1, sym__lookback_semicolon, - STATE(226), 1, + STATE(297), 1, sym_operator, - STATE(1056), 1, + STATE(1109), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -100982,7 +106155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101011,64 +106184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [14429] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 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(1050), 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, - 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, - [14482] = 3, + [14944] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 19, + ACTIONS(1850), 20, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -101085,11 +106209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1050), 25, + ACTIONS(1848), 24, + 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, @@ -101111,18 +106234,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [14535] = 11, - ACTIONS(808), 1, + [14997] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, + ACTIONS(3724), 1, anon_sym_DASH_GT, - ACTIONS(3226), 1, + ACTIONS(3862), 1, anon_sym_RPAREN, - ACTIONS(3228), 1, + ACTIONS(3864), 1, sym__lookback_semicolon, - STATE(328), 1, + STATE(263), 1, sym_operator, - STATE(1051), 1, + STATE(1103), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -101140,7 +106263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101169,25 +106292,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [14604] = 11, - ACTIONS(808), 1, + [15066] = 10, + ACTIONS(1354), 1, + anon_sym_COLON, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3230), 1, - anon_sym_RPAREN, - ACTIONS(3232), 1, - sym__lookback_semicolon, - STATE(329), 1, + STATE(887), 1, sym_operator, - STATE(1045), 1, - aux_sym_variable_declaration_repeat2, + STATE(1064), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1356), 2, + anon_sym_DOT, + anon_sym_QMARK, ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, @@ -101198,7 +106320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101227,26 +106349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [14673] = 14, + [15133] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3090), 1, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_RPAREN, - STATE(1013), 1, + ACTIONS(3866), 1, + anon_sym_RBRACK, + STATE(1054), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1367), 1, sym_operator, - STATE(2799), 1, - aux_sym__arg_list_repeat1, + STATE(3011), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -101277,7 +106399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101288,17 +106410,27 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [14748] = 3, + [15208] = 11, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3868), 1, + anon_sym_RPAREN, + ACTIONS(3870), 1, + sym__lookback_semicolon, + STATE(259), 1, + sym_operator, + STATE(1100), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1180), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -101307,20 +106439,22 @@ 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(1178), 24, - sym__lookback_semicolon, + STATE(199), 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), 15, 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, @@ -101334,93 +106468,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14801] = 20, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, - anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(743), 1, - aux_sym_integer_token1, - ACTIONS(746), 1, - aux_sym_integer_token2, - ACTIONS(749), 1, - aux_sym_float_token1, - ACTIONS(752), 1, - aux_sym_float_token2, - ACTIONS(758), 1, - aux_sym_string_token1, - ACTIONS(761), 1, - aux_sym_string_token3, - ACTIONS(3236), 1, - sym_identifier, - ACTIONS(3239), 1, - anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(969), 1, - sym_member_expression, - STATE(1035), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(727), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - STATE(2646), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(729), 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, - [14887] = 12, + [15277] = 14, ACTIONS(61), 1, anon_sym_DASH, - STATE(932), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RPAREN, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1859), 1, sym_operator, + STATE(2975), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3242), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -101451,273 +106518,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [14957] = 12, - ACTIONS(3008), 1, - anon_sym_DASH, - STATE(1057), 1, - aux_sym_expression_repeat1, - STATE(1292), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(698), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2130), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(830), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3006), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3010), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(828), 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, - anon_sym_DOT_DOT_DOT, - STATE(242), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [15027] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3244), 1, - sym_identifier, - ACTIONS(3246), 1, - anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(969), 1, - sym_member_expression, - STATE(1035), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(764), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - STATE(2646), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(766), 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, - [15113] = 10, - ACTIONS(808), 1, - anon_sym_DASH, - ACTIONS(3248), 1, - anon_sym_RPAREN, - ACTIONS(3250), 1, - sym__lookback_semicolon, - STATE(339), 1, - sym_operator, - STATE(1952), 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(186), 12, + STATE(199), 10, 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), 15, - 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, - anon_sym_DOT_DOT_DOT, - [15179] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3244), 1, - sym_identifier, - ACTIONS(3246), 1, - anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(969), 1, - sym_member_expression, - STATE(1035), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(772), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - STATE(2646), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(774), 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, - [15265] = 10, - ACTIONS(808), 1, + [15352] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3874), 1, anon_sym_RPAREN, - ACTIONS(3252), 1, + ACTIONS(3876), 1, sym__lookback_semicolon, - STATE(233), 1, + STATE(249), 1, sym_operator, - STATE(1952), 1, + STATE(1089), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -101735,7 +106558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101764,23 +106587,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [15331] = 12, + [15421] = 14, ACTIONS(61), 1, anon_sym_DASH, - STATE(1049), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3878), 1, + anon_sym_RPAREN, + STATE(1014), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1367), 1, sym_operator, + STATE(2898), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3254), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -101811,7 +106637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101822,16 +106648,18 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [15401] = 10, - ACTIONS(808), 1, + [15496] = 11, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3880), 1, anon_sym_RPAREN, - ACTIONS(3256), 1, + ACTIONS(3882), 1, sym__lookback_semicolon, - STATE(336), 1, + STATE(306), 1, sym_operator, - STATE(1952), 1, + STATE(1095), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -101849,7 +106677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101878,65 +106706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [15467] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1116), 17, - anon_sym_this, - anon_sym_BANG, + [15565] = 11, + ACTIONS(1498), 1, 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(1114), 26, - sym__lookback_semicolon, - anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(3724), 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, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [15519] = 10, - ACTIONS(808), 1, - anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3884), 1, anon_sym_RPAREN, - ACTIONS(3258), 1, + ACTIONS(3886), 1, sym__lookback_semicolon, - STATE(333), 1, + STATE(273), 1, sym_operator, - STATE(1952), 1, + STATE(1091), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -101954,7 +106735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101983,12 +106764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [15585] = 12, + [15634] = 12, ACTIONS(61), 1, anon_sym_DASH, - STATE(1036), 1, + STATE(1096), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -101996,10 +106777,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3260), 2, + ACTIONS(3888), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -102030,7 +106811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102041,16 +106822,65 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [15655] = 10, - ACTIONS(808), 1, + [15704] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1892), 17, + anon_sym_this, + anon_sym_BANG, anon_sym_DASH, - ACTIONS(3248), 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(1890), 26, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_RPAREN, - ACTIONS(3262), 1, + 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, + 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, + [15756] = 10, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3890), 1, + anon_sym_RPAREN, + ACTIONS(3892), 1, sym__lookback_semicolon, - STATE(231), 1, + STATE(282), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102068,7 +106898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102097,16 +106927,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [15721] = 10, - ACTIONS(808), 1, + [15822] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3264), 1, + ACTIONS(3894), 1, + sym__lookback_semicolon, + STATE(277), 1, + sym_operator, + STATE(1976), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(199), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [15888] = 10, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3890), 1, + anon_sym_RPAREN, + ACTIONS(3896), 1, sym__lookback_semicolon, - STATE(358), 1, + STATE(293), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102124,7 +107010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102153,12 +107039,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [15787] = 12, + [15954] = 20, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + anon_sym_LBRACK, + ACTIONS(1408), 1, + anon_sym_null, + ACTIONS(1411), 1, + aux_sym_integer_token1, + ACTIONS(1414), 1, + aux_sym_integer_token2, + ACTIONS(1417), 1, + aux_sym_float_token1, + ACTIONS(1420), 1, + aux_sym_float_token2, + ACTIONS(1426), 1, + aux_sym_string_token1, + ACTIONS(1429), 1, + aux_sym_string_token3, + ACTIONS(3898), 1, + sym_identifier, + ACTIONS(3901), 1, + anon_sym_this, + STATE(215), 1, + sym__lhs_expression, + STATE(1003), 1, + sym_member_expression, + STATE(1087), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1395), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + ACTIONS(1423), 2, + anon_sym_true, + anon_sym_false, + STATE(3007), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1397), 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, + [16040] = 12, ACTIONS(61), 1, anon_sym_DASH, - STATE(932), 1, + STATE(1110), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102166,10 +107118,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3266), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2169), 2, + ACTIONS(1448), 2, + anon_sym_catch, + anon_sym_else, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -102200,7 +107152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102211,16 +107163,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [15857] = 10, - ACTIONS(808), 1, + [16110] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3268), 1, + ACTIONS(3904), 1, sym__lookback_semicolon, - STATE(224), 1, + STATE(258), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102238,7 +107190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102267,16 +107219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [15923] = 10, - ACTIONS(808), 1, + [16176] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3270), 1, + ACTIONS(3906), 1, sym__lookback_semicolon, - STATE(331), 1, + STATE(290), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102294,7 +107246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102313,120 +107265,63 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15989] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3244), 1, - sym_identifier, - ACTIONS(3246), 1, - anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(969), 1, - sym_member_expression, - STATE(1035), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(666), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2646), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(668), 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, - [16075] = 12, - ACTIONS(61), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [16242] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - STATE(1066), 1, - aux_sym_expression_repeat1, - STATE(1296), 1, + ACTIONS(3890), 1, + anon_sym_RPAREN, + ACTIONS(3908), 1, + sym__lookback_semicolon, + STATE(278), 1, sym_operator, + STATE(1976), 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(810), 2, - anon_sym_catch, - anon_sym_else, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + STATE(199), 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), 15, anon_sym_STAR, + anon_sym_TILDE, 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), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -102436,27 +107331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [16145] = 10, - ACTIONS(808), 1, + [16308] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3272), 1, + ACTIONS(3910), 1, sym__lookback_semicolon, - STATE(356), 1, + STATE(288), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102474,7 +107358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102503,16 +107387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [16211] = 10, - ACTIONS(808), 1, + [16374] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3274), 1, + ACTIONS(3912), 1, sym__lookback_semicolon, - STATE(341), 1, + STATE(295), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102530,7 +107414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102559,16 +107443,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [16277] = 10, - ACTIONS(808), 1, + [16440] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1784), 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(1782), 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, + 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, + [16492] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3276), 1, + ACTIONS(3914), 1, sym__lookback_semicolon, - STATE(230), 1, + STATE(307), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102586,7 +107519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102615,12 +107548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [16343] = 12, + [16558] = 12, ACTIONS(61), 1, anon_sym_DASH, - STATE(933), 1, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1833), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102628,10 +107561,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(838), 2, - sym__closing_brace_marker, + ACTIONS(3916), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -102662,7 +107595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102673,47 +107606,47 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [16413] = 20, - ACTIONS(670), 1, + [16628] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3244), 1, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3920), 1, anon_sym_this, - STATE(166), 1, + STATE(215), 1, sym__lhs_expression, - STATE(969), 1, + STATE(1003), 1, sym_member_expression, - STATE(1035), 1, + STATE(1087), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(768), 2, + ACTIONS(1436), 2, anon_sym_LPAREN, anon_sym_AT_COLON, - STATE(2646), 9, + STATE(3007), 9, sym__literal, sym_integer, sym_float, @@ -102723,7 +107656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(770), 15, + ACTIONS(1438), 15, anon_sym_AT, anon_sym_macro, anon_sym_abstract, @@ -102739,16 +107672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [16499] = 10, - ACTIONS(808), 1, + [16714] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3278), 1, + ACTIONS(3922), 1, sym__lookback_semicolon, - STATE(225), 1, + STATE(298), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102766,7 +107699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102795,98 +107728,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [16565] = 10, - ACTIONS(808), 1, + [16780] = 12, + ACTIONS(3680), 1, anon_sym_DASH, - ACTIONS(3248), 1, - anon_sym_RPAREN, - ACTIONS(3280), 1, - sym__lookback_semicolon, - STATE(227), 1, + STATE(1114), 1, + aux_sym_expression_repeat1, + STATE(1360), 1, sym_operator, - STATE(1952), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1354), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(1472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2213), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1468), 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(186), 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), 15, + ACTIONS(3678), 5, 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, - anon_sym_DOT_DOT_DOT, - [16631] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 17, - anon_sym_this, - anon_sym_BANG, - anon_sym_DASH, + ACTIONS(3682), 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(1050), 26, - sym__lookback_semicolon, - anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(1466), 10, 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, @@ -102896,20 +107775,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [16683] = 10, - ACTIONS(808), 1, + STATE(372), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [16850] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3282), 1, + ACTIONS(3924), 1, sym__lookback_semicolon, - STATE(346), 1, + STATE(262), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102927,7 +107813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102956,16 +107842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [16749] = 10, - ACTIONS(808), 1, + [16916] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3284), 1, + ACTIONS(3926), 1, sym__lookback_semicolon, - STATE(342), 1, + STATE(287), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102983,7 +107869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103012,53 +107898,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [16815] = 10, - ACTIONS(808), 1, + [16982] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3248), 1, - anon_sym_RPAREN, - ACTIONS(3286), 1, - sym__lookback_semicolon, - STATE(327), 1, + STATE(985), 1, + aux_sym_expression_repeat1, + STATE(1859), 1, sym_operator, - STATE(1952), 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, + ACTIONS(3928), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2228), 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(186), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103068,16 +107945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [16881] = 10, - ACTIONS(808), 1, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17052] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3288), 1, + ACTIONS(3930), 1, sym__lookback_semicolon, - STATE(337), 1, + STATE(276), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103095,7 +107983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103124,44 +108012,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [16947] = 12, - ACTIONS(61), 1, + [17118] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3918), 1, + sym_identifier, + ACTIONS(3920), 1, + anon_sym_this, + STATE(215), 1, + sym__lhs_expression, + STATE(1003), 1, + sym_member_expression, + STATE(1087), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1384), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(3007), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1386), 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, + [17204] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1854), 1, + ACTIONS(3890), 1, + anon_sym_RPAREN, + ACTIONS(3932), 1, + sym__lookback_semicolon, + STATE(284), 1, sym_operator, + STATE(1976), 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(872), 2, - anon_sym_catch, - anon_sym_else, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + STATE(199), 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), 15, anon_sym_STAR, + anon_sym_TILDE, 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), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103171,27 +108134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [17017] = 10, - ACTIONS(808), 1, + [17270] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3248), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - ACTIONS(3290), 1, + ACTIONS(3934), 1, sym__lookback_semicolon, - STATE(344), 1, + STATE(239), 1, sym_operator, - STATE(1952), 1, + STATE(1976), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103209,7 +108161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103238,42 +108190,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [17083] = 12, - ACTIONS(2762), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, + [17336] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3918), 1, + sym_identifier, + ACTIONS(3920), 1, + anon_sym_this, + STATE(215), 1, + sym__lhs_expression, + STATE(1003), 1, + sym_member_expression, + STATE(1087), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1440), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(3007), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1442), 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, + [17422] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1069), 1, + STATE(1102), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + ACTIONS(3936), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103284,7 +108303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103295,100 +108314,53 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17152] = 12, - ACTIONS(61), 1, + [17492] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3298), 1, + ACTIONS(3890), 1, + anon_sym_RPAREN, + ACTIONS(3938), 1, sym__lookback_semicolon, - STATE(1211), 1, - aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(304), 1, sym_operator, + STATE(1976), 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, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(59), 9, 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(199), 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, - [17221] = 12, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3300), 1, - sym__lookback_semicolon, - STATE(1082), 1, - aux_sym_expression_repeat1, - STATE(1685), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3148), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(57), 15, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103398,25 +108370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [17290] = 12, + [17558] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3302), 1, - sym__lookback_semicolon, - STATE(1211), 1, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103424,7 +108383,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + ACTIONS(1548), 2, + anon_sym_catch, + anon_sym_else, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -103455,7 +108417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103466,43 +108428,53 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17359] = 12, - ACTIONS(3294), 1, + [17628] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3304), 1, + ACTIONS(3890), 1, + anon_sym_RPAREN, + ACTIONS(3940), 1, sym__lookback_semicolon, - STATE(1108), 1, - aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(292), 1, sym_operator, + STATE(1976), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, + 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, - ACTIONS(3292), 5, + STATE(199), 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), 15, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103512,54 +108484,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [17428] = 12, - ACTIONS(2786), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, + [17694] = 10, + ACTIONS(1498), 1, anon_sym_DASH, - STATE(1081), 1, - aux_sym_expression_repeat1, - STATE(1685), 1, + ACTIONS(3890), 1, + anon_sym_RPAREN, + ACTIONS(3942), 1, + sym__lookback_semicolon, + STATE(305), 1, sym_operator, + STATE(1976), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, + 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, - ACTIONS(3292), 5, + STATE(199), 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), 15, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103569,25 +108540,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [17497] = 12, + [17760] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3918), 1, + sym_identifier, + ACTIONS(3920), 1, + anon_sym_this, + STATE(215), 1, + sym__lhs_expression, + STATE(1003), 1, + sym_member_expression, + STATE(1087), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(3007), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1390), 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, + [17846] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3306), 1, - sym__lookback_semicolon, - STATE(1211), 1, + STATE(987), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1866), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103595,7 +108619,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + ACTIONS(1446), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -103626,7 +108653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103637,14 +108664,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17566] = 12, + [17916] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3308), 1, + ACTIONS(3944), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103652,7 +108679,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -103683,7 +108710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103694,42 +108721,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17635] = 12, - ACTIONS(3294), 1, + [17985] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3308), 1, + ACTIONS(3946), 1, sym__lookback_semicolon, - STATE(1087), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103740,7 +108767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103751,14 +108778,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17704] = 12, - ACTIONS(61), 1, + [18054] = 9, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3310), 1, + ACTIONS(3948), 1, + anon_sym_COLON, + ACTIONS(3950), 1, sym__lookback_semicolon, - STATE(1211), 1, - aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(252), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103766,28 +108793,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + STATE(199), 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), 15, anon_sym_STAR, + anon_sym_TILDE, 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), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103797,25 +108832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [17773] = 12, + [18117] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3312), 1, + ACTIONS(3952), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103823,7 +108847,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -103854,7 +108878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103865,42 +108889,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17842] = 12, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3312), 1, + [18186] = 12, + ACTIONS(3952), 1, sym__lookback_semicolon, - STATE(1088), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1155), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103911,7 +108935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103922,42 +108946,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17911] = 12, - ACTIONS(3294), 1, + [18255] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3314), 1, - sym__lookback_semicolon, - STATE(1089), 1, + ACTIONS(3790), 1, + anon_sym_RBRACK, + STATE(1271), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103968,7 +108992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103979,14 +109003,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17980] = 12, + [18324] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3316), 1, + ACTIONS(3960), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103994,7 +109018,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104025,7 +109049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104036,14 +109060,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18049] = 12, + [18393] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3318), 1, + ACTIONS(3962), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -104051,7 +109075,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104082,7 +109106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104093,42 +109117,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18118] = 12, - ACTIONS(3294), 1, + [18462] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3318), 1, + ACTIONS(3964), 1, sym__lookback_semicolon, - STATE(1091), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104139,7 +109163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104150,42 +109174,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18187] = 12, - ACTIONS(3294), 1, + [18531] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3320), 1, + ACTIONS(3966), 1, sym__lookback_semicolon, - STATE(1092), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104196,7 +109220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104207,14 +109231,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18256] = 12, + [18600] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3322), 1, - anon_sym_RBRACE, - STATE(1219), 1, + ACTIONS(3968), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1857), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -104222,7 +109246,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104253,7 +109277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104264,14 +109288,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18325] = 12, + [18669] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3324), 1, - anon_sym_RBRACK, - STATE(932), 1, + ACTIONS(3970), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -104279,7 +109303,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104310,7 +109334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104321,42 +109345,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18394] = 12, - ACTIONS(61), 1, + [18738] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3326), 1, + ACTIONS(3970), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104367,7 +109391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104378,42 +109402,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18463] = 12, - ACTIONS(61), 1, + [18807] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3328), 1, + ACTIONS(3972), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1190), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104424,7 +109448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104435,14 +109459,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18532] = 12, + [18876] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3330), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(3974), 1, + anon_sym_RPAREN, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -104450,7 +109474,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104481,7 +109505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104492,42 +109516,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18601] = 12, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3330), 1, + [18945] = 12, + ACTIONS(3420), 1, sym__lookback_semicolon, - STATE(1096), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1275), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104538,7 +109562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104549,42 +109573,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18670] = 12, - ACTIONS(61), 1, + [19014] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3332), 1, + ACTIONS(3976), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1122), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104595,7 +109619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104606,14 +109630,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18739] = 12, + [19083] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3334), 1, + ACTIONS(3978), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -104621,7 +109645,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104652,7 +109676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104663,42 +109687,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18808] = 12, - ACTIONS(3294), 1, + [19152] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3334), 1, + ACTIONS(3978), 1, sym__lookback_semicolon, - STATE(1098), 1, + STATE(1216), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104709,7 +109733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104720,42 +109744,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18877] = 12, - ACTIONS(3294), 1, + [19221] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3336), 1, + ACTIONS(3980), 1, sym__lookback_semicolon, - STATE(1099), 1, + STATE(1217), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104766,7 +109790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104777,51 +109801,100 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18946] = 9, - ACTIONS(808), 1, - anon_sym_DASH, - ACTIONS(3338), 1, - anon_sym_COLON, - ACTIONS(3340), 1, + [19290] = 12, + ACTIONS(3440), 1, sym__lookback_semicolon, - STATE(314), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1139), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 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(186), 12, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, 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), 15, + [19359] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(3982), 1, + sym__lookback_semicolon, + STATE(1140), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, anon_sym_STAR, - anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104831,42 +109904,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [19009] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3342), 1, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [19428] = 12, + ACTIONS(3410), 1, sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1255), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104877,7 +109961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104888,42 +109972,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19078] = 12, - ACTIONS(698), 1, - anon_sym_in, - ACTIONS(3002), 1, + [19497] = 12, + ACTIONS(3422), 1, + sym__lookback_semicolon, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1233), 1, + STATE(1282), 1, aux_sym_expression_repeat1, - STATE(1525), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3162), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2187), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3158), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3192), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3194), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3156), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104934,7 +110018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1027), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104945,14 +110029,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19147] = 12, + [19566] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3344), 1, + ACTIONS(3984), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -104960,7 +110044,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104991,7 +110075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105002,14 +110086,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19216] = 12, + [19635] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3346), 1, + ACTIONS(3986), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105017,7 +110101,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105048,7 +110132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105059,42 +110143,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19285] = 12, - ACTIONS(3294), 1, + [19704] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3346), 1, - sym__lookback_semicolon, - STATE(1101), 1, + ACTIONS(3800), 1, + anon_sym_RBRACK, + STATE(1148), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105105,7 +110189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105116,42 +110200,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19354] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3348), 1, + [19773] = 12, + ACTIONS(3431), 1, sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1150), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105162,7 +110246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105173,42 +110257,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19423] = 12, - ACTIONS(61), 1, + [19842] = 12, + ACTIONS(2658), 1, + sym__lookback_semicolon, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3350), 1, - anon_sym_RPAREN, - STATE(1181), 1, + STATE(1151), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105219,7 +110303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105230,42 +110314,96 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19492] = 12, - ACTIONS(2769), 1, + [19911] = 9, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(3988), 1, + anon_sym_COLON, + ACTIONS(3990), 1, sym__lookback_semicolon, - ACTIONS(3294), 1, + STATE(271), 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(199), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [19974] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1182), 1, + ACTIONS(3992), 1, + anon_sym_while, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105276,7 +110414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105287,14 +110425,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19561] = 12, + [20043] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3352), 1, - anon_sym_RPAREN, - STATE(932), 1, + ACTIONS(3994), 1, + anon_sym_RBRACK, + STATE(1153), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105302,7 +110440,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105333,7 +110471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105344,42 +110482,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19630] = 12, - ACTIONS(2775), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, + [20112] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1184), 1, + ACTIONS(3996), 1, + sym__lookback_semicolon, + STATE(1221), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105390,7 +110528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105401,14 +110539,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19699] = 12, + [20181] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3354), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(3998), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105416,7 +110554,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105447,7 +110585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105458,42 +110596,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19768] = 12, - ACTIONS(2788), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, + [20250] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1111), 1, + ACTIONS(4000), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105504,7 +110642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105515,14 +110653,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19837] = 12, + [20319] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3356), 1, + ACTIONS(4002), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105530,7 +110668,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105561,7 +110699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105572,42 +110710,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19906] = 12, - ACTIONS(3294), 1, + [20388] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3358), 1, + ACTIONS(4004), 1, sym__lookback_semicolon, - STATE(1112), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105618,7 +110756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105629,42 +110767,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19975] = 12, - ACTIONS(3294), 1, + [20457] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3356), 1, + ACTIONS(4006), 1, sym__lookback_semicolon, - STATE(1191), 1, + STATE(1158), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105675,7 +110813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105686,14 +110824,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20044] = 12, + [20526] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3360), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(4008), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105701,7 +110839,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105732,7 +110870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105743,14 +110881,68 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20113] = 12, + [20595] = 9, + ACTIONS(1498), 1, + anon_sym_DASH, + ACTIONS(4010), 1, + anon_sym_COLON, + ACTIONS(4012), 1, + sym__lookback_semicolon, + STATE(274), 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(199), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [20658] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3362), 1, + ACTIONS(4014), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105758,7 +110950,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105789,7 +110981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105800,42 +110992,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20182] = 12, - ACTIONS(2758), 1, + [20727] = 12, + ACTIONS(2648), 1, sym__lookback_semicolon, - ACTIONS(3294), 1, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1117), 1, + STATE(1164), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105846,7 +111038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105857,42 +111049,156 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20251] = 12, - ACTIONS(1968), 1, + [20796] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4000), 1, sym__lookback_semicolon, - ACTIONS(3294), 1, + STATE(1262), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [20865] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1118), 1, + ACTIONS(4016), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [20934] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4016), 1, + sym__lookback_semicolon, + STATE(1166), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105903,7 +111209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105914,14 +111220,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20320] = 9, - ACTIONS(808), 1, + [21003] = 9, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3364), 1, + ACTIONS(4018), 1, anon_sym_COLON, - ACTIONS(3366), 1, + ACTIONS(4020), 1, sym__lookback_semicolon, - STATE(322), 1, + STATE(244), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105939,7 +111245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105968,42 +111274,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [20383] = 12, - ACTIONS(61), 1, + [21066] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3368), 1, - anon_sym_RBRACK, - STATE(1120), 1, + ACTIONS(4022), 1, + sym__lookback_semicolon, + STATE(1167), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106014,7 +111320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106025,14 +111331,68 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20452] = 12, - ACTIONS(61), 1, + [21135] = 9, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3370), 1, + ACTIONS(4024), 1, + anon_sym_COLON, + ACTIONS(4026), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(281), 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(199), 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), 15, + 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, + anon_sym_DOT_DOT_DOT, + [21198] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4028), 1, + anon_sym_while, + STATE(1145), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106040,7 +111400,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106071,7 +111431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106082,14 +111442,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20521] = 12, + [21267] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3372), 1, + ACTIONS(4030), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106097,7 +111457,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106128,7 +111488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106139,42 +111499,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20590] = 12, - ACTIONS(3294), 1, + [21336] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3374), 1, + ACTIONS(4032), 1, sym__lookback_semicolon, - STATE(1124), 1, + STATE(1172), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106185,7 +111545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106196,14 +111556,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20659] = 12, + [21405] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3376), 1, - anon_sym_RBRACK, - STATE(932), 1, + ACTIONS(4034), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106211,7 +111571,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106242,7 +111602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106253,14 +111613,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20728] = 9, - ACTIONS(808), 1, + [21474] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3378), 1, - anon_sym_COLON, - ACTIONS(3380), 1, + ACTIONS(4036), 1, sym__lookback_semicolon, - STATE(325), 1, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106268,36 +111628,142 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2228), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [21543] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4036), 1, + sym__lookback_semicolon, + STATE(1176), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, 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), 15, + [21612] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4038), 1, + sym__lookback_semicolon, + STATE(1178), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, anon_sym_STAR, - anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106307,42 +111773,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [20791] = 12, - ACTIONS(1984), 1, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [21681] = 12, + ACTIONS(2616), 1, sym__lookback_semicolon, - ACTIONS(3294), 1, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1128), 1, + STATE(1180), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106353,7 +111830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106364,42 +111841,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20860] = 12, - ACTIONS(1990), 1, + [21750] = 12, + ACTIONS(2630), 1, sym__lookback_semicolon, - ACTIONS(3294), 1, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1129), 1, + STATE(1181), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106410,7 +111887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106421,14 +111898,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20929] = 12, + [21819] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3382), 1, + ACTIONS(4040), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106436,7 +111913,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106467,7 +111944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106478,42 +111955,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20998] = 12, - ACTIONS(3294), 1, + [21888] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3382), 1, + ACTIONS(4040), 1, sym__lookback_semicolon, - STATE(1131), 1, + STATE(1182), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106524,7 +112001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106535,42 +112012,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21067] = 12, - ACTIONS(3294), 1, + [21957] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3384), 1, + ACTIONS(4042), 1, sym__lookback_semicolon, - STATE(1132), 1, + STATE(1183), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106581,7 +112058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106592,51 +112069,100 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21136] = 9, - ACTIONS(808), 1, + [22026] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3386), 1, - anon_sym_COLON, - ACTIONS(3388), 1, + ACTIONS(4044), 1, sym__lookback_semicolon, - STATE(330), 1, + STATE(1186), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 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(186), 12, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, 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), 15, + [22095] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4046), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 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_TILDE, 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), 10, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106646,14 +112172,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [21199] = 12, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [22164] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3390), 1, + ACTIONS(4048), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106661,7 +112198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106692,7 +112229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106703,14 +112240,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21268] = 12, + [22233] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3392), 1, + ACTIONS(4050), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106718,7 +112255,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106749,7 +112286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106760,42 +112297,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21337] = 12, - ACTIONS(3294), 1, + [22302] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3394), 1, + ACTIONS(4050), 1, sym__lookback_semicolon, - STATE(1136), 1, + STATE(1191), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106806,7 +112343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106817,14 +112354,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21406] = 12, + [22371] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3396), 1, + ACTIONS(4052), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106832,7 +112369,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106863,7 +112400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106874,14 +112411,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21475] = 12, + [22440] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3398), 1, + ACTIONS(4054), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106889,7 +112426,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106920,7 +112457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106931,42 +112468,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21544] = 12, - ACTIONS(3294), 1, + [22509] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3398), 1, + ACTIONS(4056), 1, sym__lookback_semicolon, - STATE(1140), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106977,7 +112514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106988,42 +112525,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21613] = 12, - ACTIONS(3294), 1, + [22578] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3400), 1, + ACTIONS(4058), 1, sym__lookback_semicolon, - STATE(1141), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107034,7 +112571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107045,42 +112582,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21682] = 12, - ACTIONS(1996), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, + [22647] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1143), 1, + ACTIONS(4058), 1, + sym__lookback_semicolon, + STATE(1192), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107091,7 +112628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107102,42 +112639,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21751] = 12, - ACTIONS(61), 1, + [22716] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3402), 1, + ACTIONS(4060), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1193), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107148,7 +112685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107159,42 +112696,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21820] = 12, - ACTIONS(3294), 1, + [22785] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3402), 1, + ACTIONS(4062), 1, sym__lookback_semicolon, - STATE(1144), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107205,7 +112742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107216,42 +112753,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21889] = 12, - ACTIONS(3294), 1, + [22854] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3404), 1, + ACTIONS(4062), 1, sym__lookback_semicolon, - STATE(1145), 1, + STATE(1195), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107262,7 +112799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107273,42 +112810,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21958] = 12, - ACTIONS(3294), 1, + [22923] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3406), 1, + ACTIONS(4064), 1, sym__lookback_semicolon, - STATE(1148), 1, + STATE(1196), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107319,7 +112856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107330,42 +112867,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22027] = 12, - ACTIONS(61), 1, + [22992] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3408), 1, + ACTIONS(4066), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1199), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107376,7 +112913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107387,14 +112924,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22096] = 12, + [23061] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3410), 1, + ACTIONS(4068), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107402,7 +112939,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -107433,7 +112970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107444,42 +112981,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22165] = 12, - ACTIONS(3294), 1, + [23130] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3410), 1, + ACTIONS(4070), 1, sym__lookback_semicolon, - STATE(1153), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107490,7 +113027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107501,14 +113038,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22234] = 12, + [23199] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3412), 1, + ACTIONS(4072), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107516,7 +113053,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -107547,7 +113084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107558,14 +113095,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22303] = 12, + [23268] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3414), 1, + ACTIONS(4074), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107573,7 +113110,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -107604,7 +113141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107615,42 +113152,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22372] = 12, - ACTIONS(61), 1, + [23337] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3416), 1, + ACTIONS(4074), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1202), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107661,7 +113198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107672,42 +113209,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22441] = 12, - ACTIONS(3294), 1, + [23406] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3416), 1, + ACTIONS(4076), 1, sym__lookback_semicolon, - STATE(1154), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107718,7 +113255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107729,42 +113266,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22510] = 12, - ACTIONS(3294), 1, + [23475] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3418), 1, + ACTIONS(4078), 1, sym__lookback_semicolon, - STATE(1155), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107775,7 +113312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107786,42 +113323,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22579] = 12, - ACTIONS(61), 1, + [23544] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3420), 1, + ACTIONS(4078), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1203), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107832,7 +113369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107843,42 +113380,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22648] = 12, - ACTIONS(3294), 1, + [23613] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3420), 1, + ACTIONS(4080), 1, sym__lookback_semicolon, - STATE(1157), 1, + STATE(1204), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107889,7 +113426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107900,42 +113437,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22717] = 12, - ACTIONS(3294), 1, + [23682] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3422), 1, + ACTIONS(4082), 1, sym__lookback_semicolon, - STATE(1158), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107946,7 +113483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107957,42 +113494,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22786] = 12, - ACTIONS(3294), 1, + [23751] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3424), 1, + ACTIONS(4082), 1, sym__lookback_semicolon, - STATE(1161), 1, + STATE(1206), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108003,7 +113540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108014,42 +113551,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22855] = 12, - ACTIONS(3294), 1, + [23820] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3426), 1, + ACTIONS(4084), 1, sym__lookback_semicolon, - STATE(1197), 1, + STATE(1207), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108060,7 +113597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108071,14 +113608,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22924] = 12, + [23889] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3428), 1, + ACTIONS(4086), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108086,7 +113623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108117,7 +113654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108128,14 +113665,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22993] = 12, + [23958] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3430), 1, + ACTIONS(4088), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108143,7 +113680,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108174,7 +113711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108185,14 +113722,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23062] = 12, + [24027] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3432), 1, + ACTIONS(4090), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108200,7 +113737,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108231,7 +113768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108242,42 +113779,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23131] = 12, - ACTIONS(3294), 1, + [24096] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3432), 1, + ACTIONS(4090), 1, sym__lookback_semicolon, - STATE(1164), 1, + STATE(1210), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108288,7 +113825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108299,14 +113836,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23200] = 12, + [24165] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3434), 1, + ACTIONS(4092), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108314,7 +113851,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108345,7 +113882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108356,14 +113893,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23269] = 12, + [24234] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3436), 1, + ACTIONS(4094), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108371,7 +113908,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108402,7 +113939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108413,42 +113950,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23338] = 12, - ACTIONS(3294), 1, + [24303] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3436), 1, + ACTIONS(4094), 1, sym__lookback_semicolon, - STATE(1165), 1, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108459,7 +113996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108470,42 +114007,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23407] = 12, - ACTIONS(3294), 1, + [24372] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3438), 1, + ACTIONS(4096), 1, sym__lookback_semicolon, - STATE(1166), 1, + STATE(1212), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108516,7 +114053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108527,14 +114064,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23476] = 12, + [24441] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3440), 1, + ACTIONS(4098), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108542,7 +114079,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108573,7 +114110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108584,42 +114121,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23545] = 12, - ACTIONS(3294), 1, + [24510] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3440), 1, + ACTIONS(4100), 1, sym__lookback_semicolon, - STATE(1168), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108630,7 +114167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108641,42 +114178,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23614] = 12, - ACTIONS(3294), 1, + [24579] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3442), 1, + ACTIONS(4102), 1, sym__lookback_semicolon, - STATE(1169), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108687,7 +114224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108698,42 +114235,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23683] = 12, - ACTIONS(61), 1, + [24648] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3444), 1, + ACTIONS(4102), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1214), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108744,7 +114281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108755,14 +114292,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23752] = 12, + [24717] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3446), 1, + ACTIONS(4104), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108770,7 +114307,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108801,7 +114338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108812,42 +114349,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23821] = 12, - ACTIONS(61), 1, + [24786] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3448), 1, + ACTIONS(4068), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1226), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108858,7 +114395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108869,42 +114406,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23890] = 12, - ACTIONS(3294), 1, + [24855] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3448), 1, + ACTIONS(4106), 1, sym__lookback_semicolon, - STATE(1172), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108915,7 +114452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108926,14 +114463,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23959] = 12, + [24924] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3450), 1, + ACTIONS(4108), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108941,7 +114478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108972,7 +114509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108983,42 +114520,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24028] = 12, - ACTIONS(61), 1, + [24993] = 12, + ACTIONS(1474), 1, + anon_sym_RBRACE, + ACTIONS(1487), 1, anon_sym_DASH, - ACTIONS(3452), 1, - sym__lookback_semicolon, - STATE(1211), 1, + STATE(1218), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1979), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1490), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109029,7 +114566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109040,42 +114577,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24097] = 12, - ACTIONS(3294), 1, + [25062] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3452), 1, + ACTIONS(4108), 1, sym__lookback_semicolon, - STATE(1173), 1, + STATE(1229), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109086,7 +114623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109097,42 +114634,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24166] = 12, - ACTIONS(3294), 1, + [25131] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3454), 1, + ACTIONS(4110), 1, sym__lookback_semicolon, - STATE(1174), 1, + STATE(1232), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109143,7 +114680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109154,14 +114691,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24235] = 12, + [25200] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3456), 1, + ACTIONS(4112), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109169,7 +114706,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109200,7 +114737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109211,42 +114748,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24304] = 12, - ACTIONS(61), 1, + [25269] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3458), 1, + ACTIONS(4112), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1237), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109257,7 +114794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109268,42 +114805,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24373] = 12, - ACTIONS(61), 1, + [25338] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3460), 1, + ACTIONS(4114), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1238), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109314,7 +114851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109325,42 +114862,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24442] = 12, - ACTIONS(3294), 1, + [25407] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3460), 1, + ACTIONS(4116), 1, sym__lookback_semicolon, - STATE(1176), 1, + STATE(1264), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109371,7 +114908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109382,14 +114919,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24511] = 12, + [25476] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3462), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(4118), 1, + anon_sym_RBRACE, + STATE(1302), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1637), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109397,7 +114934,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109428,7 +114965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109439,42 +114976,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24580] = 12, - ACTIONS(3294), 1, + [25545] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3464), 1, + ACTIONS(4120), 1, sym__lookback_semicolon, - STATE(1106), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109485,7 +115022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109496,14 +115033,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24649] = 9, - ACTIONS(808), 1, + [25614] = 9, + ACTIONS(1498), 1, anon_sym_DASH, - ACTIONS(3466), 1, + ACTIONS(4122), 1, anon_sym_COLON, - ACTIONS(3468), 1, + ACTIONS(4124), 1, sym__lookback_semicolon, - STATE(351), 1, + STATE(261), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109521,7 +115058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(186), 12, + STATE(199), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109550,14 +115087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [24712] = 12, + [25677] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3470), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(3830), 1, + anon_sym_RBRACK, + STATE(1233), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109565,7 +115102,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109596,7 +115133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109607,42 +115144,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24781] = 12, - ACTIONS(3294), 1, + [25746] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3472), 1, + ACTIONS(4126), 1, sym__lookback_semicolon, - STATE(1208), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109653,7 +115190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109664,42 +115201,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24850] = 12, - ACTIONS(61), 1, + [25815] = 12, + ACTIONS(3262), 1, + sym__lookback_semicolon, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3474), 1, - anon_sym_RPAREN, - STATE(932), 1, + STATE(1235), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109710,7 +115247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109721,14 +115258,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24919] = 12, + [25884] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3476), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(4128), 1, + anon_sym_RBRACK, + STATE(1236), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109736,7 +115273,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109767,7 +115304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109778,71 +115315,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24988] = 12, - ACTIONS(2773), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, - anon_sym_DASH, - STATE(1265), 1, - aux_sym_expression_repeat1, - STATE(1685), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3148), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3292), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 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, - anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [25057] = 12, + [25953] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3478), 1, + ACTIONS(4130), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109850,7 +115330,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109881,7 +115361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109892,71 +115372,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25126] = 12, - ACTIONS(2242), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, - anon_sym_DASH, - STATE(1188), 1, - aux_sym_expression_repeat1, - STATE(1685), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3148), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3292), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 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, - anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [25195] = 12, + [26022] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3480), 1, + ACTIONS(4132), 1, anon_sym_RBRACK, - STATE(1189), 1, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109964,7 +115387,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109995,7 +115418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110006,42 +115429,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25264] = 12, - ACTIONS(3294), 1, + [26091] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3482), 1, + ACTIONS(4130), 1, sym__lookback_semicolon, - STATE(1212), 1, + STATE(1244), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110052,7 +115475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110063,14 +115486,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25333] = 12, + [26160] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3484), 1, + ACTIONS(4134), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110078,7 +115501,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110109,7 +115532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110120,14 +115543,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25402] = 12, + [26229] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3486), 1, + ACTIONS(4136), 1, anon_sym_RBRACK, - STATE(932), 1, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110135,7 +115558,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110166,7 +115589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110177,14 +115600,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25471] = 12, + [26298] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3488), 1, - anon_sym_while, - STATE(932), 1, + ACTIONS(4138), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110192,7 +115615,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110223,7 +115646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110234,14 +115657,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25540] = 12, + [26367] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3490), 1, + ACTIONS(4140), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110249,7 +115672,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110280,7 +115703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110291,153 +115714,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25609] = 9, - ACTIONS(808), 1, + [26436] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3492), 1, - anon_sym_COLON, - ACTIONS(3494), 1, - sym__lookback_semicolon, - STATE(262), 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(186), 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), 15, - 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, - anon_sym_DOT_DOT_DOT, - [25672] = 12, - ACTIONS(1952), 1, + ACTIONS(4140), 1, sym__lookback_semicolon, - ACTIONS(3294), 1, - anon_sym_DASH, - STATE(1195), 1, - aux_sym_expression_repeat1, - STATE(1685), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3148), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3292), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 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, - anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [25741] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3496), 1, - anon_sym_RBRACK, - STATE(1196), 1, + STATE(1245), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110448,7 +115760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110459,42 +115771,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25810] = 12, - ACTIONS(61), 1, + [26505] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3498), 1, + ACTIONS(4142), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1246), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110505,7 +115817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110516,14 +115828,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25879] = 12, + [26574] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3500), 1, + ACTIONS(4144), 1, anon_sym_RBRACK, - STATE(932), 1, + STATE(1250), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110531,7 +115843,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110562,7 +115874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110573,42 +115885,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25948] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3502), 1, + [26643] = 12, + ACTIONS(1474), 1, sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(1487), 1, + anon_sym_DASH, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1490), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1484), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1478), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1493), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1481), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110619,7 +115931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110630,42 +115942,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26017] = 12, - ACTIONS(3294), 1, + [26712] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3502), 1, + ACTIONS(4146), 1, sym__lookback_semicolon, - STATE(1218), 1, + STATE(1277), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110676,7 +115988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110687,14 +115999,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26086] = 12, + [26781] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3504), 1, - anon_sym_RBRACK, - STATE(1200), 1, + ACTIONS(4148), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110702,7 +116014,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110733,7 +116045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110744,14 +116056,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26155] = 12, + [26850] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3506), 1, - anon_sym_RBRACK, - STATE(932), 1, + ACTIONS(4150), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110759,7 +116071,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110790,7 +116102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110801,14 +116113,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26224] = 12, + [26919] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3508), 1, - anon_sym_RBRACE, - STATE(1085), 1, + ACTIONS(4152), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1631), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110816,7 +116128,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110847,7 +116159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110858,42 +116170,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26293] = 12, - ACTIONS(3294), 1, + [26988] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3510), 1, - sym__lookback_semicolon, - STATE(1205), 1, + ACTIONS(3848), 1, + anon_sym_RBRACK, + STATE(1251), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110904,7 +116216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110915,42 +116227,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26362] = 12, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3512), 1, + [27057] = 12, + ACTIONS(2610), 1, sym__lookback_semicolon, - STATE(1221), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1253), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110961,7 +116273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110972,14 +116284,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26431] = 12, + [27126] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3514), 1, - anon_sym_while, - STATE(1206), 1, + ACTIONS(4154), 1, + anon_sym_RBRACK, + STATE(1254), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110987,7 +116299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111018,7 +116330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111029,14 +116341,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26500] = 12, + [27195] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3516), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(4156), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111044,7 +116356,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111075,7 +116387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111086,14 +116398,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26569] = 12, + [27264] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3518), 1, - anon_sym_while, - STATE(932), 1, + ACTIONS(4158), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1854), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111101,7 +116413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111132,7 +116444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111143,42 +116455,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26638] = 12, - ACTIONS(3294), 1, + [27333] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3520), 1, + ACTIONS(4152), 1, sym__lookback_semicolon, - STATE(1226), 1, + STATE(1256), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111189,7 +116501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111200,14 +116512,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26707] = 12, + [27402] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3520), 1, + ACTIONS(4160), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111215,7 +116527,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111246,7 +116558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111257,14 +116569,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26776] = 12, + [27471] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3522), 1, + ACTIONS(4162), 1, anon_sym_RBRACK, - STATE(1086), 1, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111272,7 +116584,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111303,7 +116615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111314,99 +116626,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26845] = 12, - ACTIONS(2780), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, + [27540] = 12, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1227), 1, - aux_sym_expression_repeat1, - STATE(1685), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3148), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3292), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 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, - anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [26914] = 12, - ACTIONS(842), 1, + ACTIONS(4164), 1, sym__lookback_semicolon, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(858), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(852), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(846), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(861), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(849), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111417,7 +116672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111428,14 +116683,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26983] = 12, + [27609] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3524), 1, + ACTIONS(4166), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111443,7 +116698,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111474,7 +116729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111485,42 +116740,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27052] = 12, - ACTIONS(3294), 1, + [27678] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3524), 1, + ACTIONS(4168), 1, sym__lookback_semicolon, - STATE(1228), 1, + STATE(1290), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111531,7 +116786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111542,42 +116797,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27121] = 12, - ACTIONS(3294), 1, + [27747] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3526), 1, - sym__lookback_semicolon, - STATE(1229), 1, + ACTIONS(3802), 1, + anon_sym_RBRACK, + STATE(1260), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111588,7 +116843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111599,42 +116854,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27190] = 12, - ACTIONS(3294), 1, + [27816] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3528), 1, - sym__lookback_semicolon, - STATE(1234), 1, + ACTIONS(4170), 1, + anon_sym_RBRACK, + STATE(1261), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111645,7 +116900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111656,42 +116911,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27259] = 12, - ACTIONS(3294), 1, + [27885] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3530), 1, - sym__lookback_semicolon, - STATE(1217), 1, + ACTIONS(4172), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111702,7 +116957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111713,14 +116968,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27328] = 12, + [27954] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3532), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(4174), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111728,7 +116983,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111759,7 +117014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111770,14 +117025,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27397] = 12, + [28023] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3534), 1, + ACTIONS(4176), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111785,7 +117040,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111816,64 +117071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [27466] = 12, - ACTIONS(842), 1, - anon_sym_RBRACE, - ACTIONS(855), 1, - anon_sym_DASH, - STATE(1219), 1, - aux_sym_expression_repeat1, - STATE(1857), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(858), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(852), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(846), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(861), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(849), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111884,42 +117082,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27535] = 12, - ACTIONS(842), 1, - anon_sym_in, - ACTIONS(855), 1, + [28092] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1220), 1, + ACTIONS(4178), 1, + sym__lookback_semicolon, + STATE(1278), 1, aux_sym_expression_repeat1, - STATE(1860), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(858), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(852), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(846), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(861), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(849), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111930,7 +117128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111941,14 +117139,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27604] = 12, + [28161] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3536), 1, + ACTIONS(4180), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111956,7 +117154,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111987,7 +117185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111998,42 +117196,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27673] = 12, - ACTIONS(3294), 1, + [28230] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3538), 1, + ACTIONS(4182), 1, sym__lookback_semicolon, - STATE(1223), 1, + STATE(1267), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112044,7 +117242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112055,14 +117253,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27742] = 12, + [28299] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3540), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(4184), 1, + anon_sym_while, + STATE(1268), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112070,7 +117268,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112101,7 +117299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112112,42 +117310,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27811] = 12, - ACTIONS(3294), 1, + [28368] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3536), 1, + ACTIONS(4186), 1, sym__lookback_semicolon, - STATE(1071), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112158,7 +117356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112169,42 +117367,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27880] = 12, - ACTIONS(3294), 1, + [28437] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3542), 1, - sym__lookback_semicolon, - STATE(1179), 1, + ACTIONS(4188), 1, + anon_sym_while, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112215,7 +117413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112226,42 +117424,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27949] = 12, - ACTIONS(61), 1, + [28506] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3544), 1, + ACTIONS(4180), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1116), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112272,7 +117470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112283,14 +117481,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28018] = 12, + [28575] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3546), 1, + ACTIONS(4190), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112298,7 +117496,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112329,7 +117527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112340,14 +117538,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28087] = 12, + [28644] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3548), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(4192), 1, + anon_sym_RBRACK, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1859), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112355,7 +117553,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112386,7 +117584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112397,156 +117595,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28156] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3550), 1, + [28713] = 12, + ACTIONS(3442), 1, sym__lookback_semicolon, - STATE(1211), 1, - aux_sym_expression_repeat1, - STATE(1809), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [28225] = 12, - ACTIONS(3294), 1, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3550), 1, - sym__lookback_semicolon, - STATE(1074), 1, + STATE(1335), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3292), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 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, - anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [28294] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3552), 1, - sym__lookback_semicolon, - STATE(1211), 1, - aux_sym_expression_repeat1, - STATE(1809), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112557,7 +117641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112568,42 +117652,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28363] = 12, - ACTIONS(3294), 1, + [28782] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3554), 1, + ACTIONS(4194), 1, sym__lookback_semicolon, - STATE(1075), 1, + STATE(1118), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112614,7 +117698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112625,14 +117709,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28432] = 12, + [28851] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(838), 1, - anon_sym_in, - STATE(1220), 1, + ACTIONS(4196), 1, + anon_sym_RPAREN, + STATE(1129), 1, aux_sym_expression_repeat1, - STATE(1860), 1, + STATE(1367), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112640,7 +117724,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112671,7 +117755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112682,14 +117766,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28501] = 12, + [28920] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3556), 1, + ACTIONS(4198), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112697,7 +117781,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112728,7 +117812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112739,42 +117823,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28570] = 12, - ACTIONS(3294), 1, + [28989] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3558), 1, + ACTIONS(4200), 1, sym__lookback_semicolon, - STATE(1236), 1, + STATE(1121), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112785,7 +117869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112796,14 +117880,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28639] = 12, + [29058] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3560), 1, + ACTIONS(4200), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112811,7 +117895,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112842,7 +117926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112853,42 +117937,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28708] = 12, - ACTIONS(3294), 1, + [29127] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3556), 1, + ACTIONS(4202), 1, sym__lookback_semicolon, - STATE(1077), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112899,7 +117983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112910,42 +117994,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28777] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3562), 1, + [29196] = 12, + ACTIONS(3412), 1, sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1123), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112956,7 +118040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112967,42 +118051,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28846] = 12, - ACTIONS(3294), 1, + [29265] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3564), 1, + ACTIONS(4204), 1, sym__lookback_semicolon, - STATE(1240), 1, + STATE(1281), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113013,7 +118097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113024,14 +118108,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28915] = 12, + [29334] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3566), 1, + ACTIONS(4206), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113039,7 +118123,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113070,7 +118154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113081,42 +118165,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28984] = 12, - ACTIONS(3294), 1, + [29403] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3568), 1, + ACTIONS(4208), 1, sym__lookback_semicolon, - STATE(1231), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113127,7 +118211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113138,42 +118222,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29053] = 12, - ACTIONS(3294), 1, + [29472] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3570), 1, + ACTIONS(4210), 1, sym__lookback_semicolon, - STATE(1078), 1, + STATE(1284), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113184,7 +118268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113195,14 +118279,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29122] = 12, + [29541] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3572), 1, - anon_sym_RPAREN, - STATE(1104), 1, + ACTIONS(4212), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113210,7 +118294,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113241,7 +118325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113252,42 +118336,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29191] = 12, - ACTIONS(2720), 1, + [29610] = 12, + ACTIONS(3414), 1, sym__lookback_semicolon, - ACTIONS(3294), 1, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1245), 1, + STATE(1124), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113298,7 +118382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113309,14 +118393,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29260] = 12, + [29679] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3574), 1, + ACTIONS(4214), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113324,7 +118408,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113355,7 +118439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113366,42 +118450,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29329] = 12, - ACTIONS(2712), 1, - sym__lookback_semicolon, - ACTIONS(3294), 1, + [29748] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - STATE(1238), 1, + ACTIONS(4216), 1, + sym__lookback_semicolon, + STATE(1288), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113412,7 +118496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113423,14 +118507,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29398] = 12, + [29817] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3576), 1, - anon_sym_while, - STATE(1190), 1, + ACTIONS(4218), 1, + sym__lookback_semicolon, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1296), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113438,7 +118522,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113469,64 +118553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [29467] = 12, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3578), 1, - sym__lookback_semicolon, - STATE(1249), 1, - aux_sym_expression_repeat1, - STATE(1685), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3148), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2199), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3144), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3292), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3296), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 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, - anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113537,14 +118564,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29536] = 12, + [29886] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3580), 1, + ACTIONS(4220), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113552,7 +118579,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113583,7 +118610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113594,42 +118621,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29605] = 12, - ACTIONS(3294), 1, + [29955] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3582), 1, + ACTIONS(4222), 1, sym__lookback_semicolon, - STATE(1251), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113640,7 +118667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113651,42 +118678,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29674] = 12, - ACTIONS(61), 1, + [30024] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3584), 1, + ACTIONS(4222), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1125), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113697,7 +118724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113708,42 +118735,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29743] = 12, - ACTIONS(3294), 1, + [30093] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3586), 1, + ACTIONS(4224), 1, sym__lookback_semicolon, - STATE(1253), 1, + STATE(1270), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113754,7 +118781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113765,14 +118792,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29812] = 12, + [30162] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3588), 1, + ACTIONS(4226), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113780,7 +118807,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113811,7 +118838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113822,42 +118849,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29881] = 12, - ACTIONS(3294), 1, + [30231] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3590), 1, + ACTIONS(4228), 1, sym__lookback_semicolon, - STATE(1255), 1, + STATE(1126), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113868,7 +118895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113879,42 +118906,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29950] = 12, - ACTIONS(61), 1, + [30300] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3592), 1, + ACTIONS(4230), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1149), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113925,7 +118952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113936,42 +118963,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30019] = 12, - ACTIONS(3294), 1, + [30369] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3594), 1, + ACTIONS(4232), 1, sym__lookback_semicolon, - STATE(1257), 1, + STATE(1297), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113982,7 +119009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113993,14 +119020,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30088] = 12, + [30438] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3596), 1, + ACTIONS(4234), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114008,7 +119035,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114039,7 +119066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114050,42 +119077,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30157] = 12, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3598), 1, + [30507] = 12, + ACTIONS(3657), 1, sym__lookback_semicolon, - STATE(1259), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1286), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114096,7 +119123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114107,42 +119134,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30226] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3600), 1, + [30576] = 12, + ACTIONS(3648), 1, sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1289), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114153,7 +119180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114164,42 +119191,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30295] = 12, - ACTIONS(3294), 1, + [30645] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3602), 1, + ACTIONS(4236), 1, sym__lookback_semicolon, - STATE(1261), 1, + STATE(1132), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114210,7 +119237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114221,42 +119248,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30364] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3604), 1, + [30714] = 12, + ACTIONS(3314), 1, sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1293), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114267,7 +119294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114278,14 +119305,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30433] = 12, + [30783] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3606), 1, - sym__lookback_semicolon, - STATE(1211), 1, + ACTIONS(4238), 1, + anon_sym_RBRACE, + STATE(1218), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1979), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114293,7 +119320,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114324,7 +119351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114335,42 +119362,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30502] = 12, - ACTIONS(3294), 1, - anon_sym_DASH, - ACTIONS(3608), 1, + [30852] = 12, + ACTIONS(3350), 1, sym__lookback_semicolon, - STATE(1264), 1, + ACTIONS(3956), 1, + anon_sym_DASH, + STATE(1304), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114381,7 +119408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114392,14 +119419,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30571] = 12, + [30921] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3610), 1, + ACTIONS(4240), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114407,7 +119434,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114438,7 +119465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114449,42 +119476,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30640] = 12, - ACTIONS(61), 1, + [30990] = 12, + ACTIONS(3956), 1, anon_sym_DASH, - ACTIONS(3612), 1, + ACTIONS(4242), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1306), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1694), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2275), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3778), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3954), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3776), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114495,7 +119522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(1041), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114506,42 +119533,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30709] = 12, - ACTIONS(3294), 1, + [31059] = 12, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3614), 1, + ACTIONS(4244), 1, sym__lookback_semicolon, - STATE(1267), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3142), 10, + ACTIONS(57), 10, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114552,7 +119579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(1034), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114563,14 +119590,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30778] = 12, + [31128] = 12, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3616), 1, + ACTIONS(4246), 1, sym__lookback_semicolon, - STATE(1211), 1, + STATE(1242), 1, aux_sym_expression_repeat1, - STATE(1809), 1, + STATE(1778), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114578,7 +119605,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2169), 2, + STATE(2228), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114609,7 +119636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(186), 10, + STATE(199), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114620,1931 +119647,1638 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30847] = 12, - ACTIONS(3294), 1, + [31197] = 12, + ACTIONS(1354), 1, + anon_sym_in, + ACTIONS(3674), 1, anon_sym_DASH, - ACTIONS(3618), 1, - sym__lookback_semicolon, - STATE(1262), 1, + STATE(1324), 1, aux_sym_expression_repeat1, - STATE(1685), 1, + STATE(1532), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3148), 2, + ACTIONS(3770), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2199), 2, + STATE(2264), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3144), 4, + ACTIONS(3768), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3292), 5, + ACTIONS(3764), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3296), 5, + ACTIONS(3772), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3142), 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, - anon_sym_DOT_DOT_DOT, - STATE(1034), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [30916] = 18, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(1011), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2762), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(3620), 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, - [30995] = 18, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(987), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2762), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(3620), 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, - [31074] = 18, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(1007), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2762), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(3620), 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, - [31153] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1274), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(766), 5, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_extends, - anon_sym_implements, - ACTIONS(764), 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(2650), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31236] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1274), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(770), 5, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_extends, - anon_sym_implements, - ACTIONS(768), 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(2650), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31319] = 20, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, - anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(743), 1, - aux_sym_integer_token1, - ACTIONS(746), 1, - aux_sym_integer_token2, - ACTIONS(749), 1, - aux_sym_float_token1, - ACTIONS(752), 1, - aux_sym_float_token2, - ACTIONS(758), 1, - aux_sym_string_token1, - ACTIONS(761), 1, - aux_sym_string_token3, - ACTIONS(3626), 1, - sym_identifier, - ACTIONS(3629), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1274), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(729), 5, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_extends, - anon_sym_implements, - ACTIONS(727), 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(2650), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31402] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1274), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + anon_sym_PIPE, + ACTIONS(3766), 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, + anon_sym_DOT_DOT_DOT, + STATE(1026), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31266] = 12, + ACTIONS(1474), 1, + anon_sym_in, + ACTIONS(1487), 1, + anon_sym_DASH, + STATE(1309), 1, + aux_sym_expression_repeat1, + STATE(1971), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(668), 5, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_extends, - anon_sym_implements, - ACTIONS(666), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_GT, + ACTIONS(1490), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1484), 4, + anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(2650), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31485] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1274), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + ACTIONS(1478), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(1493), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1481), 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, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31335] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4248), 1, + sym__lookback_semicolon, + STATE(1311), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(774), 5, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_extends, - anon_sym_implements, - ACTIONS(772), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_GT, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(2650), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31568] = 18, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(1016), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31404] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4250), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2762), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(3620), 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, - [31647] = 18, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(995), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31473] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4252), 1, + sym__lookback_semicolon, + STATE(1313), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2762), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(3620), 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, - [31725] = 23, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3634), 1, - anon_sym_this, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31542] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4254), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(187), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(700), 3, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(698), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 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), 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, - STATE(2223), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31813] = 18, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(1026), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31611] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4256), 1, + sym__lookback_semicolon, + STATE(1315), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2762), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(3620), 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, - [31891] = 23, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_new, - ACTIONS(708), 1, - anon_sym_null, - ACTIONS(710), 1, - aux_sym_integer_token1, - ACTIONS(712), 1, - aux_sym_integer_token2, - ACTIONS(714), 1, - aux_sym_float_token1, - ACTIONS(716), 1, - aux_sym_float_token2, - ACTIONS(720), 1, - aux_sym_string_token1, - ACTIONS(722), 1, - aux_sym_string_token3, - ACTIONS(3636), 1, - sym_identifier, - ACTIONS(3638), 1, - anon_sym_this, - STATE(248), 1, - sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(2211), 1, - sym_member_expression, - STATE(2214), 1, - sym_string, - STATE(2615), 1, - sym__lhs_expression, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31680] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4258), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, - anon_sym_true, - anon_sym_false, - STATE(291), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(700), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(698), 5, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 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), 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, - STATE(2227), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31979] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3640), 1, - sym_identifier, - STATE(1284), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31749] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4260), 1, + sym__lookback_semicolon, + STATE(1317), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(766), 4, - anon_sym_in, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(764), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, - STATE(2749), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32061] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3640), 1, - sym_identifier, - STATE(1284), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31818] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4262), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(770), 4, - anon_sym_in, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(768), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 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), 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, - STATE(2749), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32143] = 20, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, - anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(743), 1, - aux_sym_integer_token1, - ACTIONS(746), 1, - aux_sym_integer_token2, - ACTIONS(749), 1, - aux_sym_float_token1, - ACTIONS(752), 1, - aux_sym_float_token2, - ACTIONS(758), 1, - aux_sym_string_token1, - ACTIONS(761), 1, - aux_sym_string_token3, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3645), 1, - anon_sym_this, - STATE(1284), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31887] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4264), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(729), 4, - anon_sym_in, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(727), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 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), 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, - STATE(2749), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32225] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3640), 1, - sym_identifier, - STATE(1284), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31956] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4266), 1, + sym__lookback_semicolon, + STATE(1320), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(668), 4, - anon_sym_in, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(666), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, - STATE(2749), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32307] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3640), 1, - sym_identifier, - STATE(1284), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32025] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4268), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(774), 4, - anon_sym_in, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(772), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 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), 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, - STATE(2749), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32389] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(1360), 1, - anon_sym_DOT, - ACTIONS(1362), 1, - anon_sym_QMARK, - ACTIONS(1530), 1, - anon_sym_LBRACK, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32094] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4270), 1, + sym__lookback_semicolon, + STATE(1322), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3648), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, anon_sym_BANG, - anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1046), 22, - sym__closing_brace_marker, - anon_sym_STAR, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_catch, - anon_sym_else, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32163] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4272), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(2228), 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), 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, anon_sym_DOT_DOT_DOT, - [32448] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2978), 1, - anon_sym_DOT, - ACTIONS(2980), 1, - anon_sym_QMARK, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32232] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4274), 1, + sym__lookback_semicolon, + STATE(1115), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3650), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, anon_sym_BANG, - anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32301] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(1446), 1, + anon_sym_in, + STATE(1309), 1, + aux_sym_expression_repeat1, + STATE(1971), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 22, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_catch, - anon_sym_else, - anon_sym_while, + 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32370] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4276), 1, + sym__lookback_semicolon, + STATE(1326), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, anon_sym_DOT_DOT_DOT, - [32507] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2894), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_QMARK, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32439] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4278), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3650), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_DASH, + 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32508] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4280), 1, + sym__lookback_semicolon, + STATE(1328), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 22, + ACTIONS(3954), 5, anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_catch, - anon_sym_else, - anon_sym_while, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32577] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(2228), 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), 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, anon_sym_DOT_DOT_DOT, - [32566] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(1530), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_DOT, - ACTIONS(2000), 1, - anon_sym_QMARK, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32646] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4284), 1, + sym__lookback_semicolon, + STATE(1330), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3648), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, anon_sym_BANG, - anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3776), 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, + anon_sym_DOT_DOT_DOT, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32715] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4286), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 22, - sym__closing_brace_marker, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_catch, - anon_sym_else, + 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), 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, + anon_sym_DOT_DOT_DOT, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32784] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4288), 1, + sym__lookback_semicolon, + STATE(1307), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3782), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3954), 5, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, anon_sym_DOT_DOT_DOT, - [32625] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(1998), 1, - anon_sym_DOT, - ACTIONS(2000), 1, - anon_sym_QMARK, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32853] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4290), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3648), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(1046), 22, - sym__closing_brace_marker, + ACTIONS(15), 5, 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, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 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, anon_sym_DOT_DOT_DOT, - [32681] = 23, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_new, - ACTIONS(708), 1, - anon_sym_null, - ACTIONS(710), 1, - aux_sym_integer_token1, - ACTIONS(712), 1, - aux_sym_integer_token2, - ACTIONS(714), 1, - aux_sym_float_token1, - ACTIONS(716), 1, - aux_sym_float_token2, - ACTIONS(720), 1, - aux_sym_string_token1, - ACTIONS(722), 1, - aux_sym_string_token3, - ACTIONS(820), 1, - anon_sym_this, - ACTIONS(3652), 1, - sym_identifier, - STATE(248), 1, - sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(293), 1, - sym_member_expression, - STATE(1302), 1, - sym_string, - STATE(2615), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(718), 2, - anon_sym_true, - anon_sym_false, - STATE(263), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(692), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(694), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - STATE(1325), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32767] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3638), 1, - anon_sym_this, - ACTIONS(3654), 1, - sym_identifier, - STATE(1298), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, - sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(766), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(764), 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(2756), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32847] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(1360), 1, - anon_sym_DOT, - ACTIONS(1362), 1, - anon_sym_QMARK, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32922] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4292), 1, + sym__lookback_semicolon, + STATE(1318), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3648), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 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(1046), 22, - sym__closing_brace_marker, + ACTIONS(3954), 5, 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, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, anon_sym_DOT_DOT_DOT, - [32903] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2894), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_QMARK, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32991] = 12, + ACTIONS(3956), 1, + anon_sym_DASH, + ACTIONS(4294), 1, + sym__lookback_semicolon, + STATE(1332), 1, + aux_sym_expression_repeat1, + STATE(1694), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3650), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(3782), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2275), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3778), 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(1046), 22, + ACTIONS(3954), 5, 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, + ACTIONS(3958), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3776), 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, anon_sym_DOT_DOT_DOT, - [32959] = 23, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(3656), 1, - sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, - sym_member_expression, - STATE(1308), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(172), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(694), 3, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(692), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - STATE(1329), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33045] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3638), 1, - anon_sym_this, - ACTIONS(3654), 1, - sym_identifier, - STATE(1298), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, - sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(770), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(768), 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(2756), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33125] = 20, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, - anon_sym_LBRACK, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(743), 1, - aux_sym_integer_token1, - ACTIONS(746), 1, - aux_sym_integer_token2, - ACTIONS(749), 1, - aux_sym_float_token1, - ACTIONS(752), 1, - aux_sym_float_token2, - ACTIONS(758), 1, - aux_sym_string_token1, - ACTIONS(761), 1, - aux_sym_string_token3, - ACTIONS(3658), 1, - sym_identifier, - ACTIONS(3661), 1, - anon_sym_this, - STATE(1298), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, - sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(729), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(727), 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(2756), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33205] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2978), 1, - anon_sym_DOT, - ACTIONS(2980), 1, - anon_sym_QMARK, + STATE(1041), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33060] = 12, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(4296), 1, + sym__lookback_semicolon, + STATE(1242), 1, + aux_sym_expression_repeat1, + STATE(1778), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3650), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2228), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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(1046), 22, + ACTIONS(15), 5, 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, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 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, anon_sym_DOT_DOT_DOT, - [33261] = 20, - ACTIONS(670), 1, + STATE(199), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33129] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3638), 1, - anon_sym_this, - ACTIONS(3654), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(1298), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(2121), 1, + STATE(1070), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(668), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(666), 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(2756), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -116554,163 +121288,139 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33341] = 20, - ACTIONS(670), 1, + ACTIONS(4298), 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, + [33208] = 20, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(3638), 1, - anon_sym_this, - ACTIONS(3654), 1, + ACTIONS(4300), 1, sym_identifier, - STATE(1298), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(4303), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2121), 1, + STATE(1337), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - ACTIONS(774), 4, - anon_sym_case, - anon_sym_default, + ACTIONS(1397), 5, anon_sym_catch, anon_sym_else, - ACTIONS(772), 7, - sym__closing_brace_marker, - anon_sym_DOT, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1395), 9, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_RBRACK, + anon_sym_DASH_GT, anon_sym_LT, - anon_sym_EQ_GT, - STATE(2756), 9, + anon_sym_GT, + anon_sym_EQ, + STATE(2860), 9, sym__literal, sym_integer, sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33421] = 4, - ACTIONS(3648), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1962), 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(1960), 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, - [33468] = 24, - ACTIONS(670), 1, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [33291] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3664), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_LPAREN, - ACTIONS(3668), 1, - anon_sym_RPAREN, - STATE(969), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1337), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2261), 1, - sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2485), 1, - sym_type, - STATE(3251), 1, - sym__function_type_args, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2650), 9, + ACTIONS(1386), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1384), 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(2860), 9, sym__literal, sym_integer, sym_float, @@ -116720,60 +121430,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33555] = 24, - ACTIONS(670), 1, + [33374] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3664), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_LPAREN, - STATE(969), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1337), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2261), 1, - sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2442), 1, - sym_type, - STATE(3335), 1, - sym__function_type_args, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2650), 9, + ACTIONS(1390), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1388), 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(2860), 9, sym__literal, sym_integer, sym_float, @@ -116783,60 +121493,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33642] = 24, - ACTIONS(670), 1, + [33457] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3664), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_LPAREN, - ACTIONS(3670), 1, - anon_sym_RPAREN, - STATE(969), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1337), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2261), 1, - sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2485), 1, - sym_type, - STATE(3138), 1, - sym__function_type_args, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2650), 9, + ACTIONS(1438), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1436), 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(2860), 9, sym__literal, sym_integer, sym_float, @@ -116846,60 +121556,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33729] = 24, - ACTIONS(670), 1, + [33540] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(804), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3664), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_LPAREN, - STATE(969), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1337), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2261), 1, - sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2592), 1, - sym_type, - STATE(3237), 1, - sym__function_type_args, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2650), 9, + ACTIONS(1442), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1440), 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(2860), 9, sym__literal, sym_integer, sym_float, @@ -116909,60 +121619,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33816] = 24, - ACTIONS(3668), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3675), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, + [33623] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(3681), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(3684), 1, - anon_sym_this, - ACTIONS(3690), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(3693), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(3696), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(3699), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(3702), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(3708), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(3711), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - STATE(969), 1, + ACTIONS(3594), 1, + sym_identifier, + ACTIONS(3596), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1061), 1, sym__lhs_expression, - STATE(2261), 1, - sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2485), 1, - sym_type, - STATE(3251), 1, - sym__function_type_args, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3705), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3687), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2650), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -116972,101 +121664,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33903] = 4, - ACTIONS(3650), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1962), 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(1960), 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, - [33950] = 23, - ACTIONS(672), 1, + ACTIONS(4298), 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, + [33702] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3596), 1, anon_sym_this, - ACTIONS(3666), 1, - anon_sym_LPAREN, - ACTIONS(3714), 1, - anon_sym_LBRACE, - STATE(969), 1, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2246), 1, + STATE(1036), 1, sym__lhs_expression, - STATE(2261), 1, - sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2420), 1, - sym_type, - STATE(2552), 1, - sym_structure_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2650), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -117076,55 +121725,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34034] = 20, - ACTIONS(670), 1, + ACTIONS(4298), 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, + [33781] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3596), 1, anon_sym_this, - STATE(1361), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(1007), 1, sym_member_expression, - STATE(2121), 1, + STATE(1037), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(774), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(772), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2757), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -117134,58 +121786,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34112] = 23, - ACTIONS(670), 1, + ACTIONS(4298), 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, + [33860] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3596), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(973), 1, - sym_type, - STATE(1061), 1, + STATE(1007), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1013), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -117195,58 +121847,77 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34196] = 23, - ACTIONS(670), 1, + ACTIONS(4298), 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, + [33938] = 23, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4312), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(973), 1, - sym_type, - STATE(1061), 1, + STATE(337), 1, + sym__call, + STATE(371), 1, + sym__constructor_call, + STATE(2289), 1, sym_member_expression, - STATE(1317), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, - sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2213), 1, + STATE(2292), 1, sym_string, + STATE(2585), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + STATE(358), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1356), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1354), 5, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2300), 9, sym__literal, sym_integer, sym_float, @@ -117256,58 +121927,59 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34280] = 23, - ACTIONS(672), 1, + [34026] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + STATE(1349), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2516), 1, - sym__lhs_expression, - STATE(3119), 1, - sym_type, - STATE(3144), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, + ACTIONS(1390), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1388), 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(2835), 9, sym__literal, sym_integer, sym_float, @@ -117317,58 +121989,62 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34364] = 23, - ACTIONS(670), 1, + [34108] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(974), 1, - sym_type, - STATE(1061), 1, + ACTIONS(4318), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(1318), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, - sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + STATE(235), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1356), 3, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1354), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -117378,58 +122054,59 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34448] = 23, - ACTIONS(672), 1, + [34196] = 20, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4320), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4323), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + STATE(1349), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2520), 1, - sym__lhs_expression, - STATE(2863), 1, - sym_type, - STATE(3171), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, + ACTIONS(1397), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1395), 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(2835), 9, sym__literal, sym_integer, sym_float, @@ -117439,105 +122116,59 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34532] = 9, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(1530), 1, - anon_sym_LBRACK, - ACTIONS(3012), 1, - anon_sym_DOT, - ACTIONS(3014), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3648), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1050), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1048), 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(1046), 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, - [34588] = 23, - ACTIONS(670), 1, + [34278] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(977), 1, - sym_type, - STATE(1061), 1, - sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1349), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + ACTIONS(1438), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1436), 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(2835), 9, sym__literal, sym_integer, sym_float, @@ -117547,58 +122178,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34672] = 23, - ACTIONS(670), 1, + [34360] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3596), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(979), 1, - sym_type, - STATE(1061), 1, + STATE(1007), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1031), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -117608,58 +122223,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34756] = 23, - ACTIONS(670), 1, + ACTIONS(4298), 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, + [34438] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(979), 1, - sym_type, - STATE(1061), 1, - sym_member_expression, - STATE(1322), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1349), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2213), 1, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + ACTIONS(1386), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1384), 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(2835), 9, sym__literal, sym_integer, sym_float, @@ -117669,58 +122300,59 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34840] = 23, - ACTIONS(672), 1, + [34520] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + STATE(1349), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2534), 1, - sym__lhs_expression, - STATE(2923), 1, - sym_type, - STATE(3296), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, + ACTIONS(1442), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1440), 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(2835), 9, sym__literal, sym_integer, sym_float, @@ -117730,24 +122362,24 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34924] = 9, - ACTIONS(1050), 1, + [34602] = 9, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(1782), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1784), 1, anon_sym_LT, - ACTIONS(2894), 1, + ACTIONS(3606), 1, anon_sym_DOT, - ACTIONS(2896), 1, + ACTIONS(3608), 1, anon_sym_QMARK, - ACTIONS(3736), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3734), 2, + ACTIONS(4326), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -117757,10 +122389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 19, + ACTIONS(1778), 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, @@ -117776,86 +122412,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - sym_identifier, - [34980] = 23, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, - anon_sym_this, - ACTIONS(3720), 1, + [34661] = 9, + ACTIONS(1782), 1, anon_sym_LPAREN, - STATE(980), 1, - sym_type, - STATE(1061), 1, - sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, - sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, - sym_string, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + anon_sym_DOT, + ACTIONS(2518), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [35064] = 9, - ACTIONS(1050), 1, + ACTIONS(4328), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1778), 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, + [34720] = 9, + ACTIONS(1782), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1784), 1, anon_sym_LT, - ACTIONS(2978), 1, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(2632), 1, anon_sym_DOT, - ACTIONS(2980), 1, + ACTIONS(2634), 1, anon_sym_QMARK, - ACTIONS(3736), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4328), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1778), 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, + [34779] = 9, + ACTIONS(1714), 1, anon_sym_LBRACK, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3734), 2, + ACTIONS(4326), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -117865,10 +122539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 19, + ACTIONS(1778), 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, @@ -117884,59 +122562,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - sym_identifier, - [35120] = 23, - ACTIONS(670), 1, + [34838] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(2632), 1, + anon_sym_DOT, + ACTIONS(2634), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4328), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1778), 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, + [34894] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(2516), 1, + anon_sym_DOT, + ACTIONS(2518), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4328), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1778), 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, + [34950] = 23, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(1458), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(1028), 1, - sym_type, - STATE(1061), 1, + ACTIONS(4330), 1, + sym_identifier, + STATE(337), 1, + sym__call, + STATE(362), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, - sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(371), 1, + sym__constructor_call, + STATE(1369), 1, sym_string, + STATE(2585), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + STATE(379), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1302), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(1300), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + STATE(1376), 9, sym__literal, sym_integer, sym_float, @@ -117946,17 +122721,22 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35204] = 6, - ACTIONS(2388), 1, + [35036] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(2390), 1, + ACTIONS(3542), 1, anon_sym_QMARK, - ACTIONS(3648), 1, - anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(4326), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -117964,17 +122744,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1778), 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, + [35092] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, anon_sym_LT, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3608), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4326), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1046), 22, - sym__closing_brace_marker, + ACTIONS(1778), 22, anon_sym_STAR, - anon_sym_case, - anon_sym_default, + 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, @@ -117990,57 +122817,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [35254] = 22, - ACTIONS(1248), 1, + [35148] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4312), 1, + anon_sym_this, + ACTIONS(4332), 1, + sym_identifier, + STATE(1364), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1390), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1388), 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(2842), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35228] = 20, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + anon_sym_LBRACK, + ACTIONS(1408), 1, + anon_sym_null, + ACTIONS(1411), 1, + aux_sym_integer_token1, + ACTIONS(1414), 1, + aux_sym_integer_token2, + ACTIONS(1417), 1, + aux_sym_float_token1, + ACTIONS(1420), 1, + aux_sym_float_token2, + ACTIONS(1426), 1, + aux_sym_string_token1, + ACTIONS(1429), 1, + aux_sym_string_token3, + ACTIONS(4334), 1, + sym_identifier, + ACTIONS(4337), 1, + anon_sym_this, + STATE(1364), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1423), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1397), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1395), 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(2842), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35308] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, + ACTIONS(4312), 1, anon_sym_this, - ACTIONS(3738), 1, + ACTIONS(4332), 1, sym_identifier, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, + STATE(1364), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(2262), 1, - sym_string, - STATE(2578), 1, + STATE(2215), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(698), 5, + ACTIONS(1386), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1384), 7, + sym__closing_brace_marker, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_LT, anon_sym_EQ_GT, - STATE(2348), 9, + STATE(2842), 9, sym__literal, sym_integer, sym_float, @@ -118050,58 +122997,57 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35336] = 23, - ACTIONS(670), 1, + [35388] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4312), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(1015), 1, - sym_type, - STATE(1061), 1, + ACTIONS(4332), 1, + sym_identifier, + STATE(1364), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(1349), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(2215), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + ACTIONS(1438), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1436), 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(2842), 9, sym__literal, sym_integer, sym_float, @@ -118111,58 +123057,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35420] = 23, - ACTIONS(672), 1, + [35468] = 23, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(1574), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4340), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, sym_member_expression, - STATE(2213), 1, + STATE(1375), 1, sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2611), 1, + STATE(2674), 1, sym__lhs_expression, - STATE(3085), 1, - sym_type, - STATE(3425), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, + STATE(220), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1300), 3, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1302), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + STATE(1391), 9, sym__literal, sym_integer, sym_float, @@ -118172,17 +123120,75 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35504] = 6, - ACTIONS(2996), 1, + [35554] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4312), 1, + anon_sym_this, + ACTIONS(4332), 1, + sym_identifier, + STATE(1364), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1442), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1440), 7, + sym__closing_brace_marker, anon_sym_DOT, - ACTIONS(2998), 1, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(3650), 1, + anon_sym_LT, anon_sym_EQ_GT, + STATE(2842), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35634] = 4, + ACTIONS(4328), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(1626), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -118193,14 +123199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 22, + ACTIONS(1624), 23, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_RPAREN, + anon_sym_case, + anon_sym_default, 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, @@ -118214,60 +123220,63 @@ 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, anon_sym_DOT_DOT_DOT, - [35554] = 23, - ACTIONS(702), 1, + [35681] = 24, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(810), 1, - sym__closing_brace_marker, - ACTIONS(3718), 1, + ACTIONS(1348), 1, + anon_sym_RPAREN, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3740), 1, + ACTIONS(4342), 1, sym_identifier, - STATE(248), 1, - sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(2211), 1, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(2214), 1, + STATE(2291), 1, sym_string, - STATE(2615), 1, + STATE(2321), 1, sym__lhs_expression, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(2559), 1, + sym_type, + STATE(3480), 1, + sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(464), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(814), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - STATE(2242), 9, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -118277,58 +123286,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35638] = 23, - ACTIONS(670), 1, + [35768] = 24, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4342), 1, + sym_identifier, + ACTIONS(4344), 1, anon_sym_LPAREN, - STATE(971), 1, - sym_type, - STATE(1061), 1, + ACTIONS(4346), 1, + anon_sym_RPAREN, + STATE(1003), 1, sym_member_expression, - STATE(1324), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(2291), 1, + sym_string, + STATE(2321), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, sym_function_type, - STATE(2213), 1, - sym_string, + STATE(2737), 1, + sym_type, + STATE(3447), 1, + sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -118338,58 +123349,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35722] = 23, - ACTIONS(672), 1, + [35855] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4342), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4344), 1, anon_sym_LPAREN, - ACTIONS(3728), 1, + ACTIONS(4348), 1, + anon_sym_RPAREN, + STATE(1003), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2321), 1, + sym__lhs_expression, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(2737), 1, + sym_type, + STATE(3518), 1, + sym__function_type_args, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35942] = 24, + ACTIONS(4348), 1, + anon_sym_RPAREN, + ACTIONS(4350), 1, + sym_identifier, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4356), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4359), 1, + anon_sym_LBRACK, + ACTIONS(4362), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4368), 1, + anon_sym_null, + ACTIONS(4371), 1, + aux_sym_integer_token1, + ACTIONS(4374), 1, + aux_sym_integer_token2, + ACTIONS(4377), 1, + aux_sym_float_token1, + ACTIONS(4380), 1, + aux_sym_float_token2, + ACTIONS(4386), 1, + aux_sym_string_token1, + ACTIONS(4389), 1, + aux_sym_string_token3, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2483), 1, + STATE(2321), 1, sym__lhs_expression, - STATE(3016), 1, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(2737), 1, sym_type, - STATE(3146), 1, - sym_block, + STATE(3518), 1, + sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(4383), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4365), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -118399,58 +123475,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35806] = 23, - ACTIONS(670), 1, + [36029] = 24, + ACTIONS(1308), 1, + anon_sym_RPAREN, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4342), 1, + sym_identifier, + ACTIONS(4344), 1, anon_sym_LPAREN, - STATE(989), 1, - sym_type, - STATE(1061), 1, + STATE(1003), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(2291), 1, + sym_string, + STATE(2321), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, - sym_string, + STATE(2640), 1, + sym_type, + STATE(3553), 1, + sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -118460,58 +123538,145 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35890] = 23, - ACTIONS(670), 1, + [36116] = 4, + ACTIONS(4326), 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(1624), 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, + [36163] = 6, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + anon_sym_QMARK, + ACTIONS(4328), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [36213] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(1005), 1, + STATE(1078), 1, sym_type, - STATE(1061), 1, + STATE(1094), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1382), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -118521,58 +123686,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35974] = 23, - ACTIONS(672), 1, + [36297] = 23, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1080), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2595), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(3051), 1, - sym_type, - STATE(3364), 1, - sym_block, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, + sym_function_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -118582,58 +123747,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36058] = 23, - ACTIONS(670), 1, + [36381] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(975), 1, + STATE(1018), 1, sym_type, - STATE(1061), 1, + STATE(1094), 1, sym_member_expression, - STATE(1334), 1, + STATE(1404), 1, aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -118643,64 +123808,27 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36142] = 9, - ACTIONS(1052), 1, + [36465] = 9, + ACTIONS(1714), 1, anon_sym_LBRACK, - ACTIONS(1054), 1, + ACTIONS(1784), 1, anon_sym_LT, - ACTIONS(2974), 1, + ACTIONS(3618), 1, anon_sym_DOT, - ACTIONS(2976), 1, + ACTIONS(3620), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3650), 2, + ACTIONS(4326), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1050), 4, + ACTIONS(1782), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(1048), 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(1046), 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, - [36198] = 6, - ACTIONS(2670), 1, - anon_sym_DOT, - ACTIONS(2672), 1, - anon_sym_QMARK, - ACTIONS(3648), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 10, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -118708,17 +123836,10 @@ 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(1046), 22, - sym__closing_brace_marker, + ACTIONS(1778), 16, 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, @@ -118734,58 +123855,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [36248] = 23, - ACTIONS(672), 1, + [36521] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4398), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + STATE(1388), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2518), 1, + STATE(2215), 1, sym__lhs_expression, - STATE(2860), 1, - sym_type, - STATE(3161), 1, - sym_block, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, + ACTIONS(1386), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1384), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -118795,58 +123913,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36332] = 23, - ACTIONS(670), 1, + [36599] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(1018), 1, + STATE(1076), 1, sym_type, - STATE(1061), 1, + STATE(1094), 1, sym_member_expression, - STATE(1346), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2213), 1, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -118856,58 +123974,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36416] = 23, - ACTIONS(670), 1, + [36683] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(971), 1, + STATE(1016), 1, sym_type, - STATE(1061), 1, + STATE(1094), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2186), 1, + STATE(2263), 1, aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -118917,58 +124035,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36500] = 23, - ACTIONS(672), 1, + [36767] = 23, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1016), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2481), 1, + STATE(1399), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, - STATE(3117), 1, - sym_type, - STATE(3275), 1, - sym_block, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, + sym_function_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -118978,20 +124096,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36584] = 6, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3736), 1, - anon_sym_LBRACK, + [36851] = 6, + ACTIONS(3292), 1, + anon_sym_DOT, + ACTIONS(3294), 1, + anon_sym_QMARK, + ACTIONS(4328), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 13, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -118999,13 +124114,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, - sym_identifier, - ACTIONS(1046), 19, + ACTIONS(1778), 22, + sym__closing_brace_marker, anon_sym_STAR, + anon_sym_case, + anon_sym_default, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -119019,27 +124138,77 @@ 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, anon_sym_DOT_DOT_DOT, - [36634] = 9, - ACTIONS(1050), 1, + [36901] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4396), 1, + sym_identifier, + ACTIONS(4398), 1, + anon_sym_this, + STATE(1388), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1390), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1388), 5, + sym__closing_brace_marker, anon_sym_LPAREN, - ACTIONS(1054), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LT, - ACTIONS(3742), 1, + STATE(2843), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36979] = 6, + ACTIONS(3640), 1, anon_sym_DOT, - ACTIONS(3746), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3642), 1, anon_sym_QMARK, + ACTIONS(4326), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3744), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -119047,13 +124216,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(1046), 19, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1778), 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, @@ -119069,58 +124242,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [36690] = 23, - ACTIONS(672), 1, + [37029] = 20, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4400), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4403), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + STATE(1388), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2574), 1, + STATE(2215), 1, sym__lhs_expression, - STATE(2948), 1, - sym_type, - STATE(3181), 1, - sym_block, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, + ACTIONS(1397), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1395), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -119130,58 +124300,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36774] = 23, - ACTIONS(670), 1, + [37107] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4398), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(1031), 1, - sym_type, - STATE(1061), 1, + STATE(1388), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(2215), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + ACTIONS(1438), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1436), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -119191,58 +124358,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36858] = 23, - ACTIONS(670), 1, + [37185] = 20, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4398), 1, anon_sym_this, - ACTIONS(3720), 1, - anon_sym_LPAREN, - STATE(1031), 1, - sym_type, - STATE(1061), 1, + STATE(1388), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(1357), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(2215), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2733), 9, + ACTIONS(1442), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1440), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -119252,58 +124416,102 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36942] = 23, - ACTIONS(672), 1, + [37263] = 6, + ACTIONS(3636), 1, + anon_sym_DOT, + ACTIONS(3638), 1, + anon_sym_QMARK, + ACTIONS(4326), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [37313] = 23, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(1448), 1, + sym__closing_brace_marker, + ACTIONS(4398), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4406), 1, + sym_identifier, + STATE(337), 1, + sym__call, + STATE(371), 1, + sym__constructor_call, + STATE(2289), 1, sym_member_expression, - STATE(2213), 1, + STATE(2292), 1, sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2495), 1, + STATE(2585), 1, sym__lhs_expression, - STATE(2936), 1, - sym_type, - STATE(3182), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, + STATE(589), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1452), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -119313,58 +124521,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37026] = 23, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [37397] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(2936), 1, - anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(1002), 1, - sym_type, - STATE(1061), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(1628), 1, + STATE(2291), 1, + sym_string, + STATE(2456), 1, sym_builtin_type, - STATE(1675), 1, + STATE(2766), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, - sym_string, + STATE(3263), 1, + sym_type, + STATE(3525), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -119374,58 +124582,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37110] = 23, - ACTIONS(670), 1, + [37481] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(1032), 1, + STATE(1047), 1, sym_type, - STATE(1061), 1, + STATE(1094), 1, sym_member_expression, - STATE(1311), 1, + STATE(1412), 1, aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -119435,119 +124643,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37194] = 23, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3728), 1, + [37565] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2399), 1, - sym_builtin_type, - STATE(2558), 1, - sym__lhs_expression, - STATE(2867), 1, - sym_type, - STATE(3340), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [37278] = 23, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - ACTIONS(3714), 1, - anon_sym_LBRACE, - STATE(969), 1, + STATE(1076), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2261), 1, - sym_builtin_type, - STATE(2285), 1, + STATE(1424), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, - STATE(2357), 1, - sym_type, - STATE(2393), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2454), 1, - sym_structure_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -119557,58 +124704,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37362] = 23, - ACTIONS(670), 1, + [37649] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(1015), 1, + STATE(1019), 1, sym_type, - STATE(1061), 1, + STATE(1094), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1401), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -119618,58 +124765,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37446] = 23, - ACTIONS(670), 1, + [37733] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(1006), 1, + STATE(1081), 1, sym_type, - STATE(1061), 1, + STATE(1094), 1, sym_member_expression, - STATE(1341), 1, + STATE(1383), 1, aux_sym_variable_declaration_repeat1, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -119679,102 +124826,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37530] = 6, - ACTIONS(2988), 1, - anon_sym_DOT, - ACTIONS(2990), 1, - anon_sym_QMARK, - ACTIONS(3650), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 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, - [37580] = 23, - ACTIONS(672), 1, + [37817] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3728), 1, + ACTIONS(4412), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2500), 1, + STATE(2773), 1, sym__lhs_expression, - STATE(3040), 1, + STATE(3266), 1, sym_type, - STATE(3268), 1, + STATE(3547), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -119784,58 +124887,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37664] = 23, - ACTIONS(670), 1, + [37901] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(972), 1, + STATE(1049), 1, sym_type, - STATE(1061), 1, + STATE(1094), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(2186), 1, + STATE(2263), 1, aux_sym_variable_declaration_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -119845,58 +124948,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37748] = 23, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [37985] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(2936), 1, - anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(1020), 1, - sym_type, - STATE(1061), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(1353), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, + STATE(2291), 1, + sym_string, + STATE(2456), 1, sym_builtin_type, - STATE(1675), 1, + STATE(2551), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(2213), 1, - sym_string, + STATE(3111), 1, + sym_type, + STATE(3384), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -119906,55 +125009,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37832] = 20, - ACTIONS(670), 1, + [38069] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(1361), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1057), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2121), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, + sym_function_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(766), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(764), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2757), 9, + ACTIONS(4394), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -119964,113 +125070,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37910] = 20, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [38153] = 9, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4418), 1, + anon_sym_DOT, + ACTIONS(4422), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3716), 1, - sym_identifier, - ACTIONS(3718), 1, - anon_sym_this, - STATE(1361), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, - sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + ACTIONS(4424), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(770), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(768), 5, + ACTIONS(4420), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1778), 19, + sym__lookback_semicolon, sym__closing_brace_marker, - anon_sym_LPAREN, + anon_sym_STAR, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2757), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [37988] = 20, - ACTIONS(731), 1, + 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, + [38209] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3750), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3753), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(1361), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1057), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2121), 1, + STATE(1413), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, + sym_function_type, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(729), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(727), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2757), 9, + ACTIONS(4394), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -120080,55 +125178,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38066] = 20, - ACTIONS(670), 1, + [38293] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(1361), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1046), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2121), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, + sym_function_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(668), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(666), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2757), 9, + ACTIONS(4394), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -120138,58 +125239,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38144] = 23, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [38377] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3720), 1, + ACTIONS(4344), 1, anon_sym_LPAREN, - STATE(1005), 1, - sym_type, - STATE(1061), 1, + ACTIONS(4426), 1, + anon_sym_LBRACE, + STATE(1003), 1, sym_member_expression, - STATE(1333), 1, - aux_sym_variable_declaration_repeat1, - STATE(1628), 1, + STATE(2291), 1, + sym_string, + STATE(2322), 1, sym_builtin_type, - STATE(1675), 1, + STATE(2326), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(2499), 1, sym_function_type, - STATE(2213), 1, - sym_string, + STATE(2510), 1, + sym_type, + STATE(2643), 1, + sym_structure_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -120199,56 +125300,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38228] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [38461] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(969), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2254), 1, - sym__lhs_expression, - STATE(2261), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(3036), 1, + STATE(2812), 1, + sym__lhs_expression, + STATE(3305), 1, sym_type, + STATE(3665), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -120258,56 +125361,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38309] = 22, - ACTIONS(670), 1, + [38545] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3756), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(1061), 1, + STATE(1059), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(1628), 1, - sym_builtin_type, - STATE(1675), 1, + STATE(1414), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, - STATE(1718), 1, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, sym_function_type, - STATE(1749), 1, - sym_type, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -120317,56 +125422,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38390] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [38629] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(969), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2254), 1, - sym__lhs_expression, - STATE(2261), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2472), 1, + STATE(2691), 1, + sym__lhs_expression, + STATE(3108), 1, sym_type, + STATE(3373), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -120376,144 +125483,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38471] = 6, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3746), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 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, - [38520] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2978), 1, - anon_sym_DOT, - ACTIONS(2980), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3734), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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, - sym_identifier, - [38573] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [38713] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3666), 1, - anon_sym_LPAREN, - ACTIONS(3758), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(969), 1, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2254), 1, - sym__lhs_expression, - STATE(2261), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2830), 1, + STATE(2826), 1, + sym__lhs_expression, + STATE(3310), 1, sym_type, + STATE(3691), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -120523,22 +125544,27 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38654] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, + [38797] = 9, + ACTIONS(1784), 1, anon_sym_LT, - ACTIONS(2894), 1, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(3684), 1, anon_sym_DOT, - ACTIONS(2896), 1, + ACTIONS(3686), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3734), 2, + ACTIONS(4328), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1782), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -120548,10 +125574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 19, + ACTIONS(1778), 16, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -120567,57 +125591,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - sym_identifier, - [38707] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [38853] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3760), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2444), 1, - sym__lhs_expression, - STATE(2581), 1, + STATE(2291), 1, sym_string, + STATE(2456), 1, + sym_builtin_type, + STATE(2601), 1, + sym__lhs_expression, + STATE(3239), 1, + sym_type, + STATE(3462), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(698), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2538), 9, + ACTIONS(4416), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -120627,56 +125652,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38788] = 22, - ACTIONS(670), 1, + [38937] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(969), 1, + STATE(1011), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2261), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2393), 1, + STATE(1599), 1, sym_function_type, - STATE(2452), 1, - sym_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -120686,97 +125713,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38869] = 4, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(700), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(698), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [38914] = 22, - ACTIONS(670), 1, + [39021] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3764), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, + STATE(1589), 1, sym__lhs_expression, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, + sym_function_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(698), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - STATE(2308), 9, + ACTIONS(4394), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -120786,56 +125774,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38995] = 22, - ACTIONS(670), 1, + [39105] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3768), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(2120), 1, + STATE(1012), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2361), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2363), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2642), 1, + STATE(1599), 1, sym_function_type, - STATE(2726), 1, - sym_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(914), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2757), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -120845,57 +125835,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39076] = 23, - ACTIONS(700), 1, - anon_sym_in, - ACTIONS(1248), 1, + [39189] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3770), 1, + ACTIONS(3584), 1, sym_identifier, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(3586), 1, + anon_sym_this, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1012), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2415), 1, - sym_string, - STATE(2578), 1, + STATE(1421), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, + sym_function_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(698), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2562), 9, + ACTIONS(4394), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -120905,143 +125896,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39159] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3742), 1, - anon_sym_DOT, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3744), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 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, - [39212] = 5, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 13, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1046), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [39259] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [39273] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2543), 1, + STATE(2581), 1, + sym__lhs_expression, + STATE(3121), 1, sym_type, + STATE(3331), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -121051,56 +125957,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39340] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [39357] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2563), 1, + STATE(2733), 1, + sym__lhs_expression, + STATE(3230), 1, sym_type, + STATE(3416), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -121110,56 +126018,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39421] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [39441] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4344), 1, anon_sym_LPAREN, - STATE(969), 1, + ACTIONS(4426), 1, + anon_sym_LBRACE, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2254), 1, - sym__lhs_expression, - STATE(2261), 1, + STATE(2322), 1, sym_builtin_type, - STATE(2378), 1, - sym_type, - STATE(2393), 1, + STATE(2329), 1, + sym__lhs_expression, + STATE(2499), 1, sym_function_type, + STATE(2508), 1, + sym_type, + STATE(2560), 1, + sym_structure_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -121169,56 +126079,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39502] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [39525] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(969), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2254), 1, - sym__lhs_expression, - STATE(2261), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2589), 1, + STATE(2647), 1, + sym__lhs_expression, + STATE(3257), 1, sym_type, + STATE(3578), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -121228,56 +126140,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39583] = 22, - ACTIONS(670), 1, + [39609] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(969), 1, + STATE(1011), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1378), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, - STATE(2261), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2393), 1, + STATE(1599), 1, sym_function_type, - STATE(3118), 1, - sym_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -121287,96 +126201,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39664] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1074), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1072), 20, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_COMMA, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [39707] = 22, - ACTIONS(670), 1, + [39693] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3768), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(2120), 1, + STATE(1020), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2361), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2363), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2642), 1, + STATE(1599), 1, sym_function_type, - STATE(2717), 1, - sym_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(914), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2757), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -121386,56 +126262,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39788] = 22, - ACTIONS(39), 1, + [39777] = 23, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3774), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1046), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, + STATE(1423), 1, + aux_sym_variable_declaration_repeat1, + STATE(1589), 1, sym__lhs_expression, + STATE(1598), 1, + sym_builtin_type, + STATE(1599), 1, + sym_function_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1761), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(698), 4, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2547), 9, + ACTIONS(4394), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -121445,56 +126323,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39869] = 22, - ACTIONS(670), 1, + [39861] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(3586), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + STATE(1071), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2386), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2399), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2511), 1, - sym_type, + STATE(1599), 1, + sym_function_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -121504,56 +126384,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39950] = 22, - ACTIONS(670), 1, + [39945] = 23, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - STATE(969), 1, + STATE(1073), 1, + sym_type, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2261), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2393), 1, + STATE(1599), 1, sym_function_type, - STATE(2952), 1, - sym_type, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -121563,56 +126445,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40031] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [40029] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2576), 1, + STATE(2663), 1, + sym__lhs_expression, + STATE(3244), 1, sym_type, + STATE(3483), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -121622,56 +126506,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40112] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [40113] = 23, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(2936), 1, - anon_sym_this, - ACTIONS(3756), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(1061), 1, + ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(1628), 1, + STATE(2291), 1, + sym_string, + STATE(2456), 1, sym_builtin_type, - STATE(1675), 1, + STATE(2796), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(1810), 1, + STATE(3291), 1, sym_type, - STATE(2213), 1, - sym_string, + STATE(3676), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -121681,56 +126567,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40193] = 22, - ACTIONS(670), 1, + [40197] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2496), 1, + STATE(2491), 1, + sym__lhs_expression, + STATE(2586), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -121740,56 +126626,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40274] = 22, - ACTIONS(670), 1, + [40278] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3776), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(2408), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2321), 1, sym__lhs_expression, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(2500), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(698), 4, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2565), 9, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -121799,56 +126685,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40355] = 22, - ACTIONS(670), 1, + [40359] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(2936), 1, - anon_sym_this, - ACTIONS(3756), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(1061), 1, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(1628), 1, + STATE(2291), 1, + sym_string, + STATE(2456), 1, sym_builtin_type, - STATE(1675), 1, + STATE(2491), 1, sym__lhs_expression, - STATE(1718), 1, - sym_function_type, - STATE(1722), 1, + STATE(2802), 1, sym_type, - STATE(2213), 1, - sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3722), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2733), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -121858,59 +126744,19 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40436] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1124), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1122), 20, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_COMMA, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [40479] = 7, - ACTIONS(153), 1, + [40440] = 7, + ACTIONS(343), 1, sym__closing_brace_marker, - ACTIONS(3778), 1, + ACTIONS(4428), 1, anon_sym_COMMA, - STATE(163), 1, + STATE(1938), 1, sym__closing_brace, - STATE(2462), 1, + STATE(2815), 1, aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, + ACTIONS(1626), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -121923,7 +126769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1960), 18, + ACTIONS(1624), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -121942,56 +126788,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [40530] = 22, - ACTIONS(670), 1, + [40491] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2517), 1, + STATE(2491), 1, + sym__lhs_expression, + STATE(2642), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -122001,99 +126847,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40611] = 6, - ACTIONS(3780), 1, - anon_sym_DOT, - ACTIONS(3782), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1132), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1050), 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(1054), 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, - [40660] = 22, - ACTIONS(670), 1, + [40572] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2570), 1, + STATE(2491), 1, + sym__lhs_expression, + STATE(2556), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -122103,56 +126906,99 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40741] = 22, - ACTIONS(670), 1, + [40653] = 6, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4422), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [40702] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4430), 1, anon_sym_LPAREN, - STATE(969), 1, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2254), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2261), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2393), 1, + STATE(1599), 1, sym_function_type, - STATE(2780), 1, + STATE(1865), 1, sym_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -122162,56 +127008,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40822] = 22, - ACTIONS(670), 1, + [40783] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4432), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(4434), 1, anon_sym_this, - ACTIONS(3666), 1, - anon_sym_LPAREN, - STATE(969), 1, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2596), 1, sym_string, - STATE(2254), 1, + STATE(2674), 1, sym__lhs_expression, - STATE(2261), 1, - sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2404), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2650), 9, + STATE(235), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1354), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -122221,56 +127067,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40903] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [40864] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4436), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4438), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2386), 1, + STATE(2738), 1, sym__lhs_expression, - STATE(2399), 1, - sym_builtin_type, - STATE(2675), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2721), 9, + STATE(1942), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1354), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2666), 9, sym__literal, sym_integer, sym_float, @@ -122280,56 +127126,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40984] = 22, - ACTIONS(670), 1, + [40945] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, STATE(2491), 1, + sym__lhs_expression, + STATE(2538), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -122339,56 +127185,99 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41065] = 22, - ACTIONS(670), 1, + [41026] = 6, + ACTIONS(4422), 1, + anon_sym_LBRACK, + ACTIONS(4440), 1, + anon_sym_DOT_DOT_DOT, + STATE(2520), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1356), 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(1354), 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, + [41075] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, + STATE(2321), 1, sym__lhs_expression, - STATE(2399), 1, + STATE(2322), 1, sym_builtin_type, - STATE(2535), 1, + STATE(2499), 1, + sym_function_type, + STATE(2630), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -122398,56 +127287,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41146] = 22, - ACTIONS(670), 1, + [41156] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3768), 1, + ACTIONS(4430), 1, anon_sym_LPAREN, - STATE(2120), 1, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2361), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2363), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2642), 1, + STATE(1599), 1, sym_function_type, - STATE(2720), 1, + STATE(1851), 1, sym_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(914), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2757), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -122457,56 +127346,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41227] = 22, - ACTIONS(670), 1, + [41237] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(969), 1, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2254), 1, - sym__lhs_expression, - STATE(2261), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(2982), 1, + STATE(2491), 1, + sym__lhs_expression, + STATE(2650), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -122516,100 +127405,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41308] = 7, - ACTIONS(147), 1, - sym__closing_brace_marker, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(1765), 1, - sym__closing_brace, - STATE(2434), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1962), 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(1960), 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, - [41359] = 22, - ACTIONS(670), 1, + [41318] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, + STATE(2321), 1, sym__lhs_expression, - STATE(2399), 1, + STATE(2322), 1, sym_builtin_type, - STATE(2677), 1, + STATE(2499), 1, + sym_function_type, + STATE(3302), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -122619,56 +127464,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41440] = 22, - ACTIONS(670), 1, + [41399] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2457), 1, + STATE(2491), 1, + sym__lhs_expression, + STATE(2814), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -122678,56 +127523,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41521] = 22, - ACTIONS(670), 1, + [41480] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4344), 1, anon_sym_LPAREN, - STATE(969), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2254), 1, + STATE(2321), 1, sym__lhs_expression, - STATE(2261), 1, + STATE(2322), 1, sym_builtin_type, - STATE(2369), 1, - sym_type, - STATE(2393), 1, + STATE(2499), 1, sym_function_type, + STATE(2521), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -122737,56 +127582,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41602] = 22, - ACTIONS(670), 1, + [41561] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3666), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - STATE(969), 1, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2254), 1, - sym__lhs_expression, - STATE(2261), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2393), 1, - sym_function_type, - STATE(3078), 1, + STATE(2491), 1, + sym__lhs_expression, + STATE(2750), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(802), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2650), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -122796,56 +127641,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41683] = 22, - ACTIONS(670), 1, + [41642] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(3726), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - STATE(1718), 1, + STATE(1599), 1, sym_function_type, - STATE(2185), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, - sym__lhs_expression, - STATE(2399), 1, + STATE(2456), 1, sym_builtin_type, - STATE(2529), 1, + STATE(2491), 1, + sym__lhs_expression, + STATE(3012), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(4416), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -122855,56 +127700,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41764] = 22, - ACTIONS(670), 1, + [41723] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, + STATE(2321), 1, sym__lhs_expression, - STATE(2399), 1, + STATE(2322), 1, sym_builtin_type, - STATE(2621), 1, + STATE(2499), 1, + sym_function_type, + STATE(3088), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -122914,56 +127759,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41845] = 22, - ACTIONS(670), 1, + [41804] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3586), 1, anon_sym_this, - ACTIONS(3768), 1, + ACTIONS(4430), 1, anon_sym_LPAREN, - STATE(2120), 1, + STATE(1094), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2361), 1, + STATE(1589), 1, sym__lhs_expression, - STATE(2363), 1, + STATE(1598), 1, sym_builtin_type, - STATE(2642), 1, + STATE(1599), 1, sym_function_type, - STATE(2725), 1, + STATE(1783), 1, sym_type, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(914), 5, + ACTIONS(4394), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2757), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -122973,56 +127818,99 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41926] = 22, - ACTIONS(670), 1, + [41885] = 6, + ACTIONS(4442), 1, + anon_sym_DOT, + ACTIONS(4444), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1888), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1782), 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(1784), 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, + [41934] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(1718), 1, - sym_function_type, - STATE(2185), 1, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2386), 1, + STATE(2321), 1, sym__lhs_expression, - STATE(2399), 1, + STATE(2322), 1, sym_builtin_type, - STATE(2672), 1, + STATE(2499), 1, + sym_function_type, + STATE(3241), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(3732), 5, + ACTIONS(1328), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2721), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -123032,93 +127920,22 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42007] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1096), 14, - anon_sym_DOT, - anon_sym_in, - 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, + [42015] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(1094), 20, - anon_sym_STAR, - anon_sym_COMMA, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [42050] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1038), 14, + ACTIONS(4418), 1, anon_sym_DOT, - anon_sym_in, + ACTIONS(4424), 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, - sym_identifier, - ACTIONS(1036), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [42092] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1164), 14, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4420), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -123126,14 +127943,13 @@ 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, - sym_identifier, - ACTIONS(1162), 19, + ACTIONS(1778), 19, + 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, @@ -123147,60 +127963,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, anon_sym_DOT_DOT_DOT, - [42134] = 24, - ACTIONS(670), 1, + [42068] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2456), 1, + sym_builtin_type, + STATE(2491), 1, sym__lhs_expression, - STATE(2799), 1, - aux_sym__arg_list_repeat1, + STATE(2566), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2798), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, + ACTIONS(4416), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -123210,219 +128024,115 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42218] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1188), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1186), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [42260] = 9, - ACTIONS(1052), 1, + [42149] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2894), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1050), 2, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4344), 1, anon_sym_LPAREN, - anon_sym_RBRACE, - ACTIONS(3786), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 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, - [42314] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1074), 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(1072), 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, - [42356] = 3, + STATE(1003), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2321), 1, + sym__lhs_expression, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(2625), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(698), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [42398] = 24, - ACTIONS(670), 1, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42230] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2456), 1, + sym_builtin_type, + STATE(2491), 1, sym__lhs_expression, - STATE(2856), 1, - aux_sym__arg_list_repeat1, + STATE(2768), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2645), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, + ACTIONS(4416), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -123432,53 +128142,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42482] = 20, - ACTIONS(670), 1, + [42311] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(766), 1, - anon_sym_in, - ACTIONS(3766), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3788), 1, + ACTIONS(4344), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, sym_identifier, - STATE(1426), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + STATE(1003), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2321), 1, + sym__lhs_expression, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(2991), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(764), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2752), 9, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -123488,53 +128201,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42558] = 20, - ACTIONS(670), 1, + [42392] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(770), 1, - anon_sym_in, - ACTIONS(3766), 1, - anon_sym_this, - ACTIONS(3788), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(1426), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2456), 1, + sym_builtin_type, + STATE(2491), 1, + sym__lhs_expression, + STATE(3024), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(768), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2752), 9, + ACTIONS(4416), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -123544,53 +128260,100 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42634] = 20, - ACTIONS(729), 1, - anon_sym_in, - ACTIONS(731), 1, + [42473] = 7, + ACTIONS(341), 1, + sym__closing_brace_marker, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(210), 1, + sym__closing_brace, + STATE(2702), 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(1624), 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, + [42524] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3793), 1, + ACTIONS(4316), 1, anon_sym_this, - STATE(1426), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(4448), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2513), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(727), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, + STATE(235), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1354), 4, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_EQ_GT, - STATE(2752), 9, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -123600,53 +128363,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42710] = 20, - ACTIONS(668), 1, - anon_sym_in, - ACTIONS(670), 1, + [42605] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3766), 1, - anon_sym_this, - ACTIONS(3788), 1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4408), 1, sym_identifier, - STATE(1426), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2456), 1, + sym_builtin_type, + STATE(2491), 1, + sym__lhs_expression, + STATE(3027), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(666), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2752), 9, + ACTIONS(4416), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -123656,53 +128422,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42786] = 20, - ACTIONS(670), 1, + [42686] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(774), 1, - anon_sym_in, - ACTIONS(3766), 1, - anon_sym_this, - ACTIONS(3788), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1426), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2321), 1, + sym__lhs_expression, + STATE(2322), 1, + sym_builtin_type, + STATE(2497), 1, + sym_type, + STATE(2499), 1, + sym_function_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(772), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2752), 9, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -123712,57 +128481,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42862] = 24, - ACTIONS(1248), 1, + [42767] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3058), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3796), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(2262), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, + STATE(2321), 1, sym__lhs_expression, - STATE(2853), 1, - aux_sym_array_repeat1, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(3255), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2540), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2342), 9, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -123772,138 +128540,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42946] = 6, - ACTIONS(3798), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACK, - STATE(2855), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1962), 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(1960), 18, - 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, - sym_identifier, - [42994] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1096), 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(1094), 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, - [43036] = 24, - ACTIONS(670), 1, + [42848] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4396), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4398), 1, + anon_sym_this, + ACTIONS(4450), 1, + anon_sym_LPAREN, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2484), 1, sym__lhs_expression, - STATE(2739), 1, - aux_sym__arg_list_repeat1, + STATE(2486), 1, + sym_builtin_type, + STATE(2849), 1, + sym_function_type, + STATE(3077), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2734), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, + ACTIONS(1538), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -123913,57 +128599,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43120] = 24, - ACTIONS(1248), 1, + [42929] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3070), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3802), 1, + ACTIONS(4452), 1, sym_identifier, - STATE(1464), 1, + ACTIONS(4454), 1, + anon_sym_this, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2262), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, - sym__lhs_expression, STATE(2674), 1, - aux_sym_array_repeat1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2441), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + ACTIONS(1354), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + STATE(2403), 9, sym__literal, sym_integer, sym_float, @@ -123973,438 +128658,115 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43204] = 6, - ACTIONS(3798), 1, - anon_sym_COMMA, - ACTIONS(3804), 1, - anon_sym_RBRACK, - STATE(2676), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1962), 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(1960), 18, - 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, - sym_identifier, - [43252] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1124), 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(1122), 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, - [43294] = 24, - ACTIONS(670), 1, + [43010] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2321), 1, sym__lhs_expression, - STATE(2692), 1, - aux_sym__arg_list_repeat1, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(3240), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2688), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, sym__literal, sym_integer, sym_float, sym_bool, sym_null, sym_array, - sym_map, - sym_object, - sym_pair, - [43378] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3806), 1, - anon_sym_DOT, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3808), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 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, - [43432] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1148), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1146), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43474] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1192), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1190), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43516] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1196), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1194), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43558] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1200), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1198), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43600] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1208), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1206), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43642] = 24, - ACTIONS(670), 1, + sym_map, + sym_object, + sym_pair, + [43091] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3150), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4396), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4398), 1, + anon_sym_this, + ACTIONS(4450), 1, + anon_sym_LPAREN, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2484), 1, sym__lhs_expression, - STATE(2663), 1, - aux_sym__arg_list_repeat1, + STATE(2486), 1, + sym_builtin_type, + STATE(2849), 1, + sym_function_type, + STATE(2971), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2661), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, + ACTIONS(1538), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -124414,57 +128776,57 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43726] = 24, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, + [43172] = 23, + ACTIONS(1356), 1, + anon_sym_in, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(2062), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3814), 1, + ACTIONS(4456), 1, sym_identifier, - STATE(1464), 1, + ACTIONS(4458), 1, + anon_sym_LBRACE, + STATE(1919), 1, sym__call, - STATE(1465), 1, + STATE(1920), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2262), 1, + STATE(2488), 1, sym_string, - STATE(2578), 1, + STATE(2788), 1, sym__lhs_expression, - STATE(2731), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(2449), 2, + STATE(2010), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + ACTIONS(1354), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2675), 9, sym__literal, sym_integer, sym_float, @@ -124474,252 +128836,411 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43810] = 3, + [43255] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2321), 1, + sym__lhs_expression, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(2719), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(836), 14, - anon_sym_DOT, - anon_sym_in, - 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(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43336] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(838), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43852] = 3, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2456), 1, + sym_builtin_type, + STATE(2491), 1, + sym__lhs_expression, + STATE(2730), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1212), 14, - anon_sym_DOT, - anon_sym_in, - 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(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4416), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3072), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43417] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(1210), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43894] = 5, - ACTIONS(1050), 1, + ACTIONS(4398), 1, + anon_sym_this, + ACTIONS(4450), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, + STATE(2214), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2484), 1, + sym__lhs_expression, + STATE(2486), 1, + sym_builtin_type, + STATE(2849), 1, + sym_function_type, + STATE(2981), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 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(1046), 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, - [43940] = 3, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1538), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2843), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43498] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4408), 1, + sym_identifier, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1599), 1, + sym_function_type, + STATE(2260), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2456), 1, + sym_builtin_type, + STATE(2491), 1, + sym__lhs_expression, + STATE(2668), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(926), 14, - anon_sym_DOT, - anon_sym_in, - 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(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4416), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(3072), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43579] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(924), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43982] = 3, + ACTIONS(4398), 1, + anon_sym_this, + ACTIONS(4450), 1, + anon_sym_LPAREN, + STATE(2214), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2484), 1, + sym__lhs_expression, + STATE(2486), 1, + sym_builtin_type, + STATE(2849), 1, + sym_function_type, + STATE(2857), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1176), 14, - anon_sym_DOT, - anon_sym_in, - 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(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1538), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2843), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43660] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(1174), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [44024] = 22, - ACTIONS(702), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4344), 1, + anon_sym_LPAREN, + STATE(1003), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2321), 1, + sym__lhs_expression, + STATE(2322), 1, + sym_builtin_type, + STATE(2499), 1, + sym_function_type, + STATE(3162), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1328), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2860), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43741] = 24, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3816), 1, - sym_identifier, - ACTIONS(3818), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3850), 1, + anon_sym_RPAREN, + ACTIONS(4308), 1, anon_sym_this, - STATE(248), 1, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(249), 1, + STATE(191), 1, sym__constructor_call, - STATE(2211), 1, + STATE(2285), 1, sym_member_expression, - STATE(2214), 1, + STATE(2291), 1, sym_string, - STATE(2615), 1, + STATE(2674), 1, sym__lhs_expression, + STATE(2950), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(291), 2, + STATE(2949), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(698), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(2425), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -124729,53 +129250,24 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44104] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1100), 14, + [43825] = 9, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4462), 1, anon_sym_DOT, - anon_sym_in, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4468), 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, - sym_identifier, - ACTIONS(1098), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [44146] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1104), 14, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4464), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -124783,14 +129275,11 @@ 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, - sym_identifier, - ACTIONS(1102), 19, + ACTIONS(1778), 17, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -124804,27 +129293,26 @@ 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, anon_sym_DOT_DOT_DOT, - [44188] = 9, - ACTIONS(1050), 1, + [43879] = 9, + ACTIONS(1782), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1784), 1, anon_sym_LT, - ACTIONS(3084), 1, + ACTIONS(3706), 1, anon_sym_DOT, - ACTIONS(3086), 1, + ACTIONS(3708), 1, anon_sym_QMARK, - ACTIONS(3736), 1, + ACTIONS(4472), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3820), 2, + ACTIONS(4470), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -124834,7 +129322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 17, + ACTIONS(1778), 17, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -124852,19 +129340,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44242] = 6, - ACTIONS(3798), 1, - anon_sym_COMMA, - ACTIONS(3822), 1, - anon_sym_RBRACK, - STATE(2770), 1, - aux_sym_map_repeat1, + [43933] = 9, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3714), 1, + anon_sym_DOT, + ACTIONS(3716), 1, + anon_sym_QMARK, + ACTIONS(4466), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4464), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -124872,10 +129365,10 @@ 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(1960), 18, + ACTIONS(1778), 17, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -124890,17 +129383,18 @@ 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, anon_sym_DOT_DOT_DOT, - sym_identifier, - [44290] = 3, + [43987] = 5, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1216), 14, + ACTIONS(1780), 11, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -124909,14 +129403,13 @@ 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, - sym_identifier, - ACTIONS(1214), 19, + ACTIONS(1778), 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, @@ -124933,26 +129426,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44332] = 10, - ACTIONS(1050), 1, + [44033] = 9, + ACTIONS(1782), 1, anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, + ACTIONS(1784), 1, anon_sym_LT, - ACTIONS(2894), 1, + ACTIONS(3714), 1, anon_sym_DOT, - ACTIONS(2896), 1, + ACTIONS(3716), 1, anon_sym_QMARK, - ACTIONS(3350), 1, - anon_sym_RPAREN, + ACTIONS(4466), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3650), 2, + ACTIONS(4420), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -124962,7 +129453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 16, + ACTIONS(1778), 17, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -124979,14 +129471,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44388] = 3, + [44087] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3774), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(2875), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2874), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44171] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3866), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(3011), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1220), 14, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3010), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44255] = 9, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4472), 1, + anon_sym_LBRACK, + ACTIONS(4474), 1, anon_sym_DOT, - anon_sym_in, + ACTIONS(4476), 1, anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4470), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -124994,14 +129616,11 @@ 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, - sym_identifier, - ACTIONS(1218), 19, + ACTIONS(1778), 17, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125015,27 +129634,19 @@ 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, anon_sym_DOT_DOT_DOT, - [44430] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_QMARK, + [44309] = 5, + ACTIONS(4440), 1, + anon_sym_DOT_DOT_DOT, + STATE(2520), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3820), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1626), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -125043,11 +129654,14 @@ 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(1046), 17, + ACTIONS(1624), 19, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_in, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125061,26 +129675,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, - anon_sym_DOT_DOT_DOT, - [44484] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2978), 1, - anon_sym_DOT, - ACTIONS(2980), 1, - anon_sym_QMARK, + [44355] = 4, + ACTIONS(4420), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3786), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1626), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -125088,11 +129693,14 @@ 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(1046), 17, + ACTIONS(1624), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125106,15 +129714,75 @@ 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, anon_sym_DOT_DOT_DOT, - [44538] = 3, + [44399] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3878), 1, + anon_sym_RPAREN, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(2898), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2896), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44483] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1030), 14, + ACTIONS(1834), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125126,11 +129794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1028), 19, + ACTIONS(1832), 21, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125147,13 +129816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44580] = 3, + [44525] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1034), 14, + ACTIONS(1862), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125165,11 +129833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1032), 19, + ACTIONS(1860), 21, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125186,13 +129855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44622] = 3, + [44567] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1168), 14, + ACTIONS(1900), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125204,11 +129872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1166), 19, + ACTIONS(1898), 21, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125225,92 +129894,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44664] = 3, + [44609] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1386), 1, + anon_sym_in, + ACTIONS(4454), 1, + anon_sym_this, + ACTIONS(4478), 1, + sym_identifier, + STATE(1490), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1384), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2838), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44685] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1390), 1, + anon_sym_in, + ACTIONS(4454), 1, + anon_sym_this, + ACTIONS(4478), 1, + sym_identifier, + STATE(1490), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2838), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44761] = 20, + ACTIONS(1397), 1, + anon_sym_in, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + anon_sym_LBRACK, + ACTIONS(1408), 1, + anon_sym_null, + ACTIONS(1411), 1, + aux_sym_integer_token1, + ACTIONS(1414), 1, + aux_sym_integer_token2, + ACTIONS(1417), 1, + aux_sym_float_token1, + ACTIONS(1420), 1, + aux_sym_float_token2, + ACTIONS(1426), 1, + aux_sym_string_token1, + ACTIONS(1429), 1, + aux_sym_string_token3, + ACTIONS(4480), 1, + sym_identifier, + ACTIONS(4483), 1, + anon_sym_this, + STATE(1490), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1423), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1395), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2838), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44837] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1438), 1, + anon_sym_in, + ACTIONS(4454), 1, + anon_sym_this, + ACTIONS(4478), 1, + sym_identifier, + STATE(1490), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1436), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2838), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44913] = 20, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1442), 1, + anon_sym_in, + ACTIONS(4454), 1, + anon_sym_this, + ACTIONS(4478), 1, + sym_identifier, + STATE(1490), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1440), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2838), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44989] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3852), 1, + anon_sym_RPAREN, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(2955), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2954), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45073] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3842), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(2850), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2847), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45157] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3832), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(2893), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1044), 14, - anon_sym_DOT, - anon_sym_in, - 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, - sym_identifier, - ACTIONS(1042), 19, - anon_sym_STAR, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2864), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45241] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3744), 1, anon_sym_COMMA, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [44706] = 3, + ACTIONS(3788), 1, + anon_sym_RPAREN, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(2947), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1058), 14, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3104), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45325] = 9, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3606), 1, anon_sym_DOT, - anon_sym_in, + ACTIONS(3608), 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, - sym_identifier, - ACTIONS(1056), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [44748] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1062), 14, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4486), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -125318,14 +130439,11 @@ 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, - sym_identifier, - ACTIONS(1060), 19, + ACTIONS(1778), 17, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125339,96 +130457,205 @@ 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, anon_sym_DOT_DOT_DOT, - [44790] = 4, - ACTIONS(3734), 1, - anon_sym_COLON, + [45379] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3720), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(2989), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 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(1960), 20, - anon_sym_STAR, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2962), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45463] = 24, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3744), 1, anon_sym_COMMA, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, + ACTIONS(3804), 1, + anon_sym_RPAREN, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, sym_identifier, - [44834] = 3, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + STATE(3040), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1066), 14, - anon_sym_DOT, - anon_sym_in, - 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(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3017), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45547] = 22, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, + anon_sym_LBRACK, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, + anon_sym_null, + ACTIONS(1368), 1, + aux_sym_integer_token1, + ACTIONS(1370), 1, + aux_sym_integer_token2, + ACTIONS(1372), 1, + aux_sym_float_token1, + ACTIONS(1374), 1, + aux_sym_float_token2, + ACTIONS(1378), 1, + aux_sym_string_token1, + ACTIONS(1380), 1, + aux_sym_string_token3, + ACTIONS(4488), 1, sym_identifier, - ACTIONS(1064), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [44876] = 3, + ACTIONS(4490), 1, + anon_sym_this, + STATE(337), 1, + sym__call, + STATE(371), 1, + sym__constructor_call, + STATE(2289), 1, + sym_member_expression, + STATE(2292), 1, + sym_string, + STATE(2585), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1070), 14, + ACTIONS(1376), 2, + anon_sym_true, + anon_sym_false, + STATE(358), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1354), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_EQ_GT, + STATE(2482), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45627] = 9, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3540), 1, anon_sym_DOT, - anon_sym_in, + ACTIONS(3542), 1, anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(4486), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -125436,14 +130663,10 @@ 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, - sym_identifier, - ACTIONS(1068), 19, + ACTIONS(1778), 16, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125457,16 +130680,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, anon_sym_DOT_DOT_DOT, - [44918] = 3, + [45681] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1078), 14, + ACTIONS(1896), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125478,11 +130699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1076), 19, + ACTIONS(1894), 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, @@ -125499,13 +130720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44960] = 3, + [45722] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(694), 14, + ACTIONS(1758), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125517,11 +130737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(692), 19, + ACTIONS(1756), 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, @@ -125538,13 +130758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45002] = 3, + [45763] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1088), 14, + ACTIONS(1762), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125556,11 +130775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1086), 19, + ACTIONS(1760), 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, @@ -125577,13 +130796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45044] = 3, + [45804] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1092), 14, + ACTIONS(1766), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125595,11 +130813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1090), 19, + ACTIONS(1764), 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, @@ -125616,13 +130834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45086] = 3, + [45845] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1108), 14, + ACTIONS(1770), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125634,11 +130851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1106), 19, + ACTIONS(1768), 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, @@ -125655,13 +130872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45128] = 3, + [45886] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1112), 14, + ACTIONS(1788), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125673,11 +130889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1110), 19, + ACTIONS(1786), 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, @@ -125694,13 +130910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45170] = 3, + [45927] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1228), 14, + ACTIONS(1792), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125712,11 +130927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1226), 19, + ACTIONS(1790), 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, @@ -125733,108 +130948,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45212] = 3, + [45968] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4438), 1, + anon_sym_this, + ACTIONS(4492), 1, + sym_identifier, + STATE(1559), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, + sym_member_expression, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1120), 14, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1440), 6, + sym__lookback_semicolon, anon_sym_DOT, - anon_sym_in, + anon_sym_LPAREN, 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, - sym_identifier, - ACTIONS(1118), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [45254] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3034), 1, - anon_sym_DOT, - ACTIONS(3036), 1, - anon_sym_QMARK, - ACTIONS(3810), 1, + STATE(2833), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46041] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3744), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 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, - [45308] = 9, - ACTIONS(1050), 1, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3936), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3285), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46120] = 8, + ACTIONS(1782), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1784), 1, anon_sym_LT, - ACTIONS(3034), 1, + ACTIONS(3714), 1, anon_sym_DOT, - ACTIONS(3036), 1, + ACTIONS(3716), 1, anon_sym_QMARK, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3808), 2, + ACTIONS(4464), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -125844,7 +131084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 17, + ACTIONS(1778), 17, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -125862,13 +131102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45362] = 4, - ACTIONS(3746), 1, - anon_sym_LBRACK, + [46171] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 12, + ACTIONS(1822), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -125881,7 +131119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(698), 20, + ACTIONS(1820), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -125902,14 +131140,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45406] = 3, + [46212] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4462), 1, + anon_sym_DOT, + ACTIONS(4468), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1224), 14, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4464), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -125917,14 +131163,11 @@ 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, - sym_identifier, - ACTIONS(1222), 19, + ACTIONS(1778), 17, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -125938,16 +131181,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, anon_sym_DOT_DOT_DOT, - [45448] = 3, + [46263] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(844), 14, + ACTIONS(1826), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125959,11 +131200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(842), 19, + ACTIONS(1824), 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, @@ -125980,13 +131221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45490] = 3, + [46304] = 6, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(4496), 1, + anon_sym_RBRACK, + STATE(3064), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1130), 14, + ACTIONS(1626), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -125998,11 +131244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1128), 19, + ACTIONS(1624), 17, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -126019,13 +131262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45532] = 3, + [46351] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1184), 14, + ACTIONS(1838), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -126037,11 +131279,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1182), 19, + ACTIONS(1836), 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, @@ -126058,73 +131300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45574] = 24, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, - anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, - anon_sym_null, - ACTIONS(1268), 1, - aux_sym_integer_token1, - ACTIONS(1270), 1, - aux_sym_integer_token2, - ACTIONS(1272), 1, - aux_sym_float_token1, - ACTIONS(1274), 1, - aux_sym_float_token2, - ACTIONS(1278), 1, - aux_sym_string_token1, - ACTIONS(1280), 1, - aux_sym_string_token3, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3062), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3828), 1, - sym_identifier, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2262), 1, - sym_string, - STATE(2578), 1, - sym__lhs_expression, - STATE(2819), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1276), 2, - anon_sym_true, - anon_sym_false, - STATE(2463), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2342), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [45658] = 3, + [46392] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1136), 14, + ACTIONS(1300), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -126136,11 +131317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1134), 19, + ACTIONS(1302), 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, @@ -126157,13 +131338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45700] = 4, - ACTIONS(3744), 1, - anon_sym_COLON, + [46433] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, + ACTIONS(1854), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126176,7 +131355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1960), 20, + ACTIONS(1852), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126197,77 +131376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45744] = 24, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, - anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, - anon_sym_null, - ACTIONS(1268), 1, - aux_sym_integer_token1, - ACTIONS(1270), 1, - aux_sym_integer_token2, - ACTIONS(1272), 1, - aux_sym_float_token1, - ACTIONS(1274), 1, - aux_sym_float_token2, - ACTIONS(1278), 1, - aux_sym_string_token1, - ACTIONS(1280), 1, - aux_sym_string_token3, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3830), 1, - sym_identifier, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2262), 1, - sym_string, - STATE(2578), 1, - sym__lhs_expression, - STATE(2785), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1276), 2, - anon_sym_true, - anon_sym_false, - STATE(2586), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2342), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [45828] = 6, - ACTIONS(3798), 1, - anon_sym_COMMA, - ACTIONS(3832), 1, - anon_sym_RBRACK, - STATE(2822), 1, - aux_sym_map_repeat1, + [46474] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, + ACTIONS(1858), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126280,8 +131393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1960), 18, + ACTIONS(1856), 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, @@ -126298,18 +131414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - sym_identifier, - [45876] = 6, - ACTIONS(3798), 1, - anon_sym_COMMA, - ACTIONS(3834), 1, - anon_sym_RBRACK, - STATE(2786), 1, - aux_sym_map_repeat1, + [46515] = 6, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4472), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, + ACTIONS(1780), 11, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126319,11 +131434,11 @@ 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(1960), 18, + ACTIONS(1778), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -126340,14 +131455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - sym_identifier, - [45924] = 3, + [46562] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1152), 14, + ACTIONS(1874), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -126359,11 +131472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1150), 19, + ACTIONS(1872), 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, @@ -126380,13 +131493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45966] = 3, + [46603] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1156), 14, + ACTIONS(1878), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -126398,11 +131510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1154), 19, + ACTIONS(1876), 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, @@ -126419,13 +131531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46008] = 3, + [46644] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1160), 14, + ACTIONS(1886), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -126437,11 +131548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(1158), 19, + ACTIONS(1884), 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, @@ -126458,14 +131569,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46050] = 3, + [46685] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3608), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1172), 14, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4486), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -126473,14 +131592,11 @@ 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, - sym_identifier, - ACTIONS(1170), 19, + ACTIONS(1778), 17, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -126494,25 +131610,24 @@ 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, anon_sym_DOT_DOT_DOT, - [46092] = 8, - ACTIONS(1050), 1, + [46736] = 8, + ACTIONS(1782), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1784), 1, anon_sym_LT, - ACTIONS(2894), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(2896), 1, + ACTIONS(3542), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3786), 2, + ACTIONS(4486), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -126522,7 +131637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 17, + ACTIONS(1778), 17, anon_sym_STAR, anon_sym_RBRACE, anon_sym_TILDE, @@ -126540,11 +131655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46143] = 3, + [46787] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1136), 12, + ACTIONS(1356), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126557,7 +131672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1134), 20, + ACTIONS(1354), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126578,11 +131693,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46184] = 3, + [46828] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4438), 1, + anon_sym_this, + ACTIONS(4492), 1, + sym_identifier, + STATE(1559), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, + sym_member_expression, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1384), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2833), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46901] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3888), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3221), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46980] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4438), 1, + anon_sym_this, + ACTIONS(4492), 1, + sym_identifier, + STATE(1559), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, + sym_member_expression, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2833), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [47053] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1078), 12, + ACTIONS(1476), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126595,7 +131875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1076), 20, + ACTIONS(1474), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126616,11 +131896,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46225] = 3, + [47094] = 9, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4498), 1, + anon_sym_DOT, + ACTIONS(4502), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1152), 12, + ACTIONS(4500), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1778), 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, + [47147] = 23, + ACTIONS(1300), 1, + anon_sym_in, + ACTIONS(1302), 1, + anon_sym_EQ_GT, + ACTIONS(2046), 1, + anon_sym_LBRACE, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_new, + ACTIONS(2064), 1, + anon_sym_null, + ACTIONS(2066), 1, + aux_sym_integer_token1, + ACTIONS(2068), 1, + aux_sym_integer_token2, + ACTIONS(2070), 1, + aux_sym_float_token1, + ACTIONS(2072), 1, + aux_sym_float_token2, + ACTIONS(2076), 1, + aux_sym_string_token1, + ACTIONS(2078), 1, + aux_sym_string_token3, + ACTIONS(2316), 1, + anon_sym_this, + ACTIONS(4504), 1, + sym_identifier, + STATE(1600), 1, + sym_string, + STATE(1715), 1, + sym_member_expression, + STATE(1919), 1, + sym__call, + STATE(1920), 1, + sym__constructor_call, + STATE(2788), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2074), 2, + anon_sym_true, + anon_sym_false, + STATE(1970), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1872), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [47228] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1720), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126633,7 +132015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1150), 20, + ACTIONS(1718), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126654,11 +132036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46266] = 3, + [47269] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1156), 12, + ACTIONS(1916), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126671,7 +132053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1154), 20, + ACTIONS(1914), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126692,11 +132074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46307] = 3, + [47310] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1160), 12, + ACTIONS(1920), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126709,7 +132091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1158), 20, + ACTIONS(1918), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126730,11 +132112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46348] = 3, + [47351] = 6, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(4506), 1, + anon_sym_RBRACK, + STATE(2879), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1164), 12, + ACTIONS(1626), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126747,11 +132135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1162), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1624), 17, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -126768,11 +132153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46389] = 3, + [47398] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1168), 12, + ACTIONS(1936), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126785,7 +132170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1166), 20, + ACTIONS(1934), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126806,11 +132191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46430] = 3, + [47439] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1172), 12, + ACTIONS(1940), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126823,7 +132208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1170), 20, + ACTIONS(1938), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126844,11 +132229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46471] = 3, + [47480] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1176), 12, + ACTIONS(1944), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126861,7 +132246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1174), 20, + ACTIONS(1942), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126882,11 +132267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46512] = 3, + [47521] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1184), 12, + ACTIONS(1948), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126899,7 +132284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1182), 20, + ACTIONS(1946), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -126920,11 +132305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46553] = 3, + [47562] = 6, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4466), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1188), 12, + ACTIONS(1780), 11, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -126934,14 +132325,11 @@ 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(1186), 20, + ACTIONS(1778), 18, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -126958,68 +132346,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46594] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, - sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, + [47609] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4474), 1, + anon_sym_DOT, + ACTIONS(4476), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3254), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3041), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [46673] = 3, + ACTIONS(4470), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1778), 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, + [47660] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1192), 12, + ACTIONS(1956), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127032,7 +132406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1190), 20, + ACTIONS(1954), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127053,11 +132427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46714] = 3, + [47701] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1196), 12, + ACTIONS(1960), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127070,7 +132444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1194), 20, + ACTIONS(1958), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127091,11 +132465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46755] = 3, + [47742] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1200), 12, + ACTIONS(1444), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127108,7 +132482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1198), 20, + ACTIONS(1446), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127129,11 +132503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46796] = 3, + [47783] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1208), 12, + ACTIONS(1964), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127146,7 +132520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1206), 20, + ACTIONS(1962), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127167,11 +132541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46837] = 3, + [47824] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1212), 12, + ACTIONS(1968), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127184,7 +132558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1210), 20, + ACTIONS(1966), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127205,11 +132579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46878] = 3, + [47865] = 6, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(4508), 1, + anon_sym_RBRACK, + STATE(2862), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1216), 12, + ACTIONS(1626), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127222,11 +132602,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1214), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1624), 17, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -127243,11 +132620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46919] = 3, + [47912] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1220), 12, + ACTIONS(1734), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127260,7 +132637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1218), 20, + ACTIONS(1732), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127281,11 +132658,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46960] = 3, + [47953] = 6, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [48000] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1224), 12, + ACTIONS(1870), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127298,7 +132716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1222), 20, + ACTIONS(1868), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127319,11 +132737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47001] = 3, + [48041] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(694), 12, + ACTIONS(1804), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127336,7 +132754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(692), 20, + ACTIONS(1802), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127357,11 +132775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47042] = 3, + [48082] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(836), 12, + ACTIONS(1882), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127374,7 +132792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(838), 20, + ACTIONS(1880), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127395,17 +132813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47083] = 6, - ACTIONS(3744), 1, - anon_sym_EQ_GT, - ACTIONS(3836), 1, - anon_sym_DOT, - ACTIONS(3838), 1, - anon_sym_QMARK, + [48123] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(1904), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -127416,7 +132830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 19, + ACTIONS(1902), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127434,24 +132848,16 @@ 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, anon_sym_DOT_DOT_DOT, - [47130] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3034), 1, - anon_sym_DOT, - ACTIONS(3036), 1, - anon_sym_QMARK, + [48164] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3808), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(1912), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -127459,11 +132865,14 @@ 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(1046), 17, + ACTIONS(1910), 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, @@ -127477,13 +132886,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, anon_sym_DOT_DOT_DOT, - [47181] = 3, + [48205] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1088), 12, + ACTIONS(1730), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127496,7 +132906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1086), 20, + ACTIONS(1728), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127517,17 +132927,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47222] = 6, - ACTIONS(2988), 1, + [48246] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1754), 12, anon_sym_DOT, - ACTIONS(2990), 1, anon_sym_QMARK, - ACTIONS(3734), 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, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1752), 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, + [48287] = 6, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(2478), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(1782), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -127535,13 +132986,10 @@ 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(1046), 19, + ACTIONS(1778), 17, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -127555,16 +133003,74 @@ 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, anon_sym_DOT_DOT_DOT, + [48334] = 19, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + anon_sym_LBRACK, + ACTIONS(1408), 1, + anon_sym_null, + ACTIONS(1411), 1, + aux_sym_integer_token1, + ACTIONS(1414), 1, + aux_sym_integer_token2, + ACTIONS(1417), 1, + aux_sym_float_token1, + ACTIONS(1420), 1, + aux_sym_float_token2, + ACTIONS(1426), 1, + aux_sym_string_token1, + ACTIONS(1429), 1, + aux_sym_string_token3, + ACTIONS(4510), 1, sym_identifier, - [47269] = 3, + ACTIONS(4513), 1, + anon_sym_this, + STATE(1559), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, + sym_member_expression, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1092), 12, + ACTIONS(1423), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1395), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2833), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48407] = 6, + ACTIONS(4420), 1, + anon_sym_EQ_GT, + ACTIONS(4516), 1, anon_sym_DOT, + ACTIONS(4518), 1, anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -127575,7 +133081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1090), 20, + ACTIONS(1778), 19, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127593,23 +133099,21 @@ 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, anon_sym_DOT_DOT_DOT, - [47310] = 6, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(1530), 1, - anon_sym_LBRACK, + [48454] = 6, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(4520), 1, + anon_sym_RBRACK, + STATE(3044), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1048), 9, + ACTIONS(1626), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -127617,9 +133121,10 @@ 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(1046), 17, + ACTIONS(1624), 17, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -127637,22 +133142,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47357] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3824), 1, + [48501] = 23, + ACTIONS(1354), 1, + anon_sym_EQ_GT, + ACTIONS(1356), 1, + anon_sym_in, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_new, + ACTIONS(2064), 1, + anon_sym_null, + ACTIONS(2066), 1, + aux_sym_integer_token1, + ACTIONS(2068), 1, + aux_sym_integer_token2, + ACTIONS(2070), 1, + aux_sym_float_token1, + ACTIONS(2072), 1, + aux_sym_float_token2, + ACTIONS(2076), 1, + aux_sym_string_token1, + ACTIONS(2078), 1, + aux_sym_string_token3, + ACTIONS(4454), 1, + anon_sym_this, + ACTIONS(4458), 1, + anon_sym_LBRACE, + ACTIONS(4522), 1, + sym_identifier, + STATE(1919), 1, + sym__call, + STATE(1920), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2488), 1, + sym_string, + STATE(2788), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2074), 2, + anon_sym_true, + anon_sym_false, + STATE(2010), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2644), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48582] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4434), 1, + anon_sym_this, + ACTIONS(4524), 1, + sym_identifier, + STATE(1566), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1384), 6, anon_sym_DOT, - ACTIONS(3826), 1, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2841), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48655] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4434), 1, + anon_sym_this, + ACTIONS(4524), 1, + sym_identifier, + STATE(1566), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3820), 2, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, anon_sym_EQ_GT, - ACTIONS(1048), 9, + STATE(2841), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48728] = 6, + ACTIONS(4472), 1, + anon_sym_LBRACK, + ACTIONS(4526), 1, + anon_sym_DOT_DOT_DOT, + STATE(2490), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1356), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -127660,9 +133328,10 @@ 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(1046), 17, + ACTIONS(1354), 17, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -127678,56 +133347,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, - anon_sym_DOT_DOT_DOT, - [47408] = 22, - ACTIONS(670), 1, + [48775] = 19, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4528), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4531), 1, + anon_sym_this, + STATE(1566), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - ACTIONS(814), 2, - anon_sym_catch, - anon_sym_else, - STATE(695), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, + ACTIONS(1395), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2841), 9, sym__literal, sym_integer, sym_float, @@ -127737,55 +133403,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47487] = 23, - ACTIONS(692), 1, - anon_sym_EQ_GT, - ACTIONS(694), 1, - anon_sym_in, - ACTIONS(1248), 1, + [48848] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1604), 1, + ACTIONS(4434), 1, anon_sym_this, - ACTIONS(3840), 1, + ACTIONS(4524), 1, sym_identifier, - STATE(1378), 1, + STATE(1566), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(1585), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1481), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1878), 9, + ACTIONS(1436), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2841), 9, sym__literal, sym_integer, sym_float, @@ -127795,55 +133457,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47568] = 23, - ACTIONS(698), 1, - anon_sym_EQ_GT, - ACTIONS(700), 1, - anon_sym_in, - ACTIONS(1248), 1, + [48921] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3766), 1, + ACTIONS(4434), 1, anon_sym_this, - ACTIONS(3842), 1, + ACTIONS(4524), 1, sym_identifier, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, + STATE(1566), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(2415), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2557), 9, + ACTIONS(1440), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2841), 9, sym__literal, sym_integer, sym_float, @@ -127853,11 +133511,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47649] = 3, + [48994] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3706), 1, + anon_sym_DOT, + ACTIONS(3708), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4470), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 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(1778), 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, + [49045] = 6, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_RBRACK, + STATE(2965), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1108), 12, + ACTIONS(1626), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127870,11 +133577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1106), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1624), 17, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -127891,11 +133595,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47690] = 3, + [49092] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1452), 2, + anon_sym_catch, + anon_sym_else, + STATE(761), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49171] = 6, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1112), 12, + ACTIONS(1356), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127908,11 +133675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1110), 20, + ACTIONS(1354), 17, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -127928,12 +133693,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [47731] = 3, + [49218] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4438), 1, + anon_sym_this, + ACTIONS(4492), 1, + sym_identifier, + STATE(1559), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, + sym_member_expression, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1436), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2833), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49291] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1062), 12, + ACTIONS(1952), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127946,7 +133764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1060), 20, + ACTIONS(1950), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127967,130 +133785,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47772] = 3, + [49332] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4224), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3493), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49410] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4180), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3619), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49488] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4116), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3442), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49566] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4540), 1, + sym_identifier, + ACTIONS(4542), 1, + anon_sym_this, + STATE(1003), 1, + sym_member_expression, + STATE(1605), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1130), 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(1128), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_STAR, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1384), 5, + anon_sym_RPAREN, + 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, - [47813] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1030), 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(1028), 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, - [47854] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + STATE(3095), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49638] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4038), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(3260), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2911), 2, + STATE(3573), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -128100,11 +134062,15 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47933] = 3, + [49716] = 5, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1228), 12, + ACTIONS(1780), 11, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -128114,14 +134080,11 @@ 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(1226), 20, + ACTIONS(1778), 18, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -128138,51 +134101,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47974] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [49760] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3774), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4112), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3844), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1537), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(764), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2747), 9, + STATE(3514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -128192,94 +134157,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48047] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(2978), 1, - anon_sym_DOT, - ACTIONS(2980), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3786), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 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, - [48098] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [49838] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3774), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(3431), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3844), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1537), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(768), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2747), 9, + STATE(3339), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -128289,51 +134213,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48171] = 19, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, + [49916] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3846), 1, - sym_identifier, - ACTIONS(3849), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4130), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - STATE(1537), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(727), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2747), 9, + STATE(3503), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -128343,51 +134269,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48244] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [49994] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3774), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4062), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3844), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1537), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(666), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2747), 9, + STATE(3536), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -128397,19 +134325,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48317] = 6, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, + [50072] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 11, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4546), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -128417,11 +134337,15 @@ 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(1046), 18, + ACTIONS(4544), 21, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -128438,51 +134362,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48364] = 19, - ACTIONS(670), 1, + [50112] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3774), 1, - anon_sym_this, - ACTIONS(3844), 1, + ACTIONS(4540), 1, sym_identifier, - STATE(1537), 1, + ACTIONS(4542), 1, + anon_sym_this, + STATE(1003), 1, + sym_member_expression, + STATE(1605), 1, aux_sym_member_expression_repeat1, - STATE(2181), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(2185), 1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(3095), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50184] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4114), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(772), 6, + STATE(3647), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50262] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(2616), 1, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2747), 9, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3544), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -128492,22 +134527,15 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48437] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, + [50340] = 5, + ACTIONS(4552), 1, anon_sym_LT, - ACTIONS(3806), 1, - anon_sym_DOT, - ACTIONS(3812), 1, - anon_sym_QMARK, + STATE(1585), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3808), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 9, + ACTIONS(4550), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -128517,9 +134545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 17, + ACTIONS(4548), 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, @@ -128533,13 +134563,16 @@ 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, anon_sym_DOT_DOT_DOT, - [48488] = 3, + [50384] = 4, + ACTIONS(4420), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1034), 12, + ACTIONS(1626), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -128552,11 +134585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1032), 20, + ACTIONS(1624), 18, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -128573,51 +134604,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48529] = 19, - ACTIONS(670), 1, + [50426] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3762), 1, + ACTIONS(4144), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3852), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1545), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(764), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2755), 9, + STATE(3344), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -128627,51 +134660,109 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48602] = 19, - ACTIONS(670), 1, + [50504] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(2630), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3445), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50582] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3762), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4064), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3852), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1545), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(768), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2755), 9, + STATE(3565), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -128681,51 +134772,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48675] = 19, - ACTIONS(731), 1, + [50660] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3854), 1, - sym_identifier, - ACTIONS(3857), 1, + ACTIONS(2350), 1, anon_sym_this, - STATE(1545), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(3453), 1, + sym_identifier, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(928), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(727), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2755), 9, + STATE(196), 2, + sym__rhs_expression, + sym_call_expression, + STATE(945), 9, sym__literal, sym_integer, sym_float, @@ -128735,51 +134828,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48748] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [50738] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3762), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(3982), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3852), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1545), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(666), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2755), 9, + STATE(3434), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -128789,51 +134884,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48821] = 19, - ACTIONS(670), 1, + [50816] = 22, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1362), 1, + anon_sym_this, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(3762), 1, - anon_sym_this, - ACTIONS(3852), 1, + ACTIONS(3516), 1, sym_identifier, - STATE(1545), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(4556), 1, + anon_sym_LPAREN, + STATE(337), 1, + sym__call, + STATE(362), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(371), 1, + sym__constructor_call, + STATE(1369), 1, sym_string, + STATE(2585), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - ACTIONS(772), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2755), 9, + STATE(376), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1385), 9, sym__literal, sym_integer, sym_float, @@ -128843,214 +134940,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48894] = 6, - ACTIONS(2996), 1, - anon_sym_DOT, - ACTIONS(2998), 1, - anon_sym_QMARK, - ACTIONS(3734), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 19, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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, - sym_identifier, - [48941] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1120), 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(1118), 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, - [48982] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3084), 1, - anon_sym_DOT, - ACTIONS(3086), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3820), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 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, - [49033] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1070), 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(1068), 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, - [49074] = 22, - ACTIONS(694), 1, - sym_identifier, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(1248), 1, + [50894] = 22, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + ACTIONS(4398), 1, + anon_sym_this, + ACTIONS(4406), 1, + sym_identifier, + ACTIONS(4556), 1, + anon_sym_LPAREN, + STATE(337), 1, sym__call, - STATE(1465), 1, + STATE(371), 1, sym__constructor_call, - STATE(1466), 1, + STATE(2289), 1, + sym_member_expression, + STATE(2292), 1, sym_string, - STATE(2578), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(692), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1276), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(1481), 2, + STATE(376), 2, sym__rhs_expression, sym_call_expression, - STATE(1548), 9, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -129060,51 +134996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49153] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1038), 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, + [50972] = 5, + ACTIONS(4552), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1036), 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, - [49194] = 3, + STATE(1663), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1044), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4560), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -129112,14 +135012,13 @@ 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(1042), 20, + ACTIONS(4558), 20, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129136,13 +135035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [49235] = 3, + [51016] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1066), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4564), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -129153,11 +135050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1064), 20, + ACTIONS(4562), 21, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129174,131 +135072,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [49276] = 9, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3860), 1, - anon_sym_DOT, - ACTIONS(3864), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3862), 2, + [51056] = 4, + ACTIONS(4470), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 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, - [49329] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(700), 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(698), 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, - [49370] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(844), 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(842), 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, - [49411] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1058), 12, + ACTIONS(1626), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -129311,52 +135091,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1056), 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, - [49452] = 6, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 18, - sym__lookback_semicolon, + ACTIONS(1624), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129373,109 +135110,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [49499] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [51098] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3776), 1, - sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2408), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(149), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2565), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [49577] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3368), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4040), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3342), 2, + STATE(3476), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -129485,7 +135166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49655] = 22, + [51176] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -129504,23 +135185,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(4216), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -129528,10 +135209,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3188), 2, + STATE(3528), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -129541,7 +135222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49733] = 22, + [51254] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -129560,23 +135241,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3410), 1, + ACTIONS(2658), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -129584,10 +135265,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3431), 2, + STATE(3352), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -129597,7 +135278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49811] = 22, + [51332] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -129616,23 +135297,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3442), 1, + ACTIONS(4194), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -129640,10 +135321,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3196), 2, + STATE(3519), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -129653,53 +135334,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49889] = 22, - ACTIONS(670), 1, + [51410] = 19, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(812), 1, + ACTIONS(4566), 1, sym_identifier, - ACTIONS(816), 1, + ACTIONS(4569), 1, anon_sym_this, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(1003), 1, sym_member_expression, - STATE(363), 1, - sym_string, - STATE(2444), 1, + STATE(1605), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, - sym__rhs_expression, - sym_call_expression, - STATE(548), 9, + ACTIONS(1395), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -129709,7 +135387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49967] = 22, + [51482] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -129728,23 +135406,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(4066), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -129752,10 +135430,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3310), 2, + STATE(3666), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -129765,47 +135443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50045] = 6, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1132), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1054), 13, - anon_sym_this, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - 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(1050), 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, - anon_sym_LT, - anon_sym_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [50091] = 22, + [51560] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -129824,23 +135462,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3346), 1, + ACTIONS(3422), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -129848,10 +135486,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3217), 2, + STATE(3426), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -129861,53 +135499,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50169] = 22, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(696), 1, - sym_identifier, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [51638] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3874), 1, - anon_sym_LPAREN, - STATE(248), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4140), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(293), 1, + STATE(2434), 1, sym_member_expression, - STATE(366), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(250), 2, + STATE(3559), 2, sym__rhs_expression, sym_call_expression, - STATE(560), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -129917,53 +135555,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50247] = 22, - ACTIONS(670), 1, + [51716] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3764), 1, + ACTIONS(4540), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(4542), 1, anon_sym_this, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, + STATE(1605), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2308), 9, + ACTIONS(1436), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -129973,53 +135608,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50325] = 22, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [51788] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3636), 1, - sym_identifier, - ACTIONS(3638), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4142), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3874), 1, - anon_sym_LPAREN, - STATE(248), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2211), 1, + STATE(2434), 1, sym_member_expression, - STATE(2214), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(250), 2, + STATE(3640), 2, sym__rhs_expression, sym_call_expression, - STATE(2227), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130029,53 +135664,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50403] = 22, - ACTIONS(1248), 1, + [51866] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3770), 1, + ACTIONS(4540), 1, sym_identifier, - ACTIONS(3876), 1, - anon_sym_LPAREN, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4542), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2415), 1, - sym_string, - STATE(2578), 1, + STATE(1605), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1467), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2562), 9, + ACTIONS(1440), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -130085,7 +135717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50481] = 22, + [51938] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130104,23 +135736,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(1996), 1, + ACTIONS(4042), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130128,10 +135760,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3300), 2, + STATE(3509), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130141,7 +135773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50559] = 22, + [52016] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130160,23 +135792,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3530), 1, + ACTIONS(4068), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130184,10 +135816,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3480), 2, + STATE(3570), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130197,11 +135829,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50637] = 3, + [52094] = 5, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3880), 10, + ACTIONS(1626), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -130212,12 +135850,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3878), 21, + ACTIONS(1624), 17, 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, @@ -130233,8 +135868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [50677] = 22, + [52138] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130253,23 +135887,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(2758), 1, + ACTIONS(3996), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130277,10 +135911,66 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3147), 2, + STATE(3475), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52216] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2350), 1, + anon_sym_this, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(1375), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1387), 9, sym__literal, sym_integer, sym_float, @@ -130290,7 +135980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50755] = 22, + [52294] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130309,23 +135999,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(4146), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130333,10 +136023,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3227), 2, + STATE(3618), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130346,7 +136036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50833] = 22, + [52372] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130365,23 +136055,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(1952), 1, + ACTIONS(4044), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130389,10 +136079,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3282), 2, + STATE(3414), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130402,7 +136092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50911] = 22, + [52450] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130421,23 +136111,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(1984), 1, + ACTIONS(3976), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130445,10 +136135,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3319), 2, + STATE(3474), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130458,53 +136148,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50989] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [52528] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3496), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4222), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3247), 2, + STATE(3405), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130514,44 +136204,63 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51067] = 3, + [52606] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + ACTIONS(4572), 1, + anon_sym_while, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1074), 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(1072), 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, - [51107] = 22, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3418), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52684] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130570,34 +136279,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3452), 1, + ACTIONS(4108), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, sym__constructor_call, - STATE(1951), 1, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3540), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52762] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1432), 1, + sym_identifier, + ACTIONS(1434), 1, + anon_sym_this, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, sym_member_expression, - STATE(2395), 1, + STATE(398), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3230), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(582), 9, sym__literal, sym_integer, sym_float, @@ -130607,7 +136372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51185] = 22, + [52840] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130626,23 +136391,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3482), 1, + ACTIONS(3442), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130650,10 +136415,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3495), 2, + STATE(3644), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130663,15 +136428,22 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51263] = 4, - ACTIONS(3820), 1, - anon_sym_COLON, + [52918] = 8, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(4498), 1, + anon_sym_DOT, + ACTIONS(4502), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4500), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -130679,12 +136451,10 @@ 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(1960), 18, + ACTIONS(1778), 16, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -130698,10 +136468,9 @@ 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, anon_sym_DOT_DOT_DOT, - [51305] = 22, + [52968] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130720,23 +136489,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(1990), 1, + ACTIONS(4032), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130744,10 +136513,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3338), 2, + STATE(3568), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130757,63 +136526,47 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51383] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_this, - ACTIONS(2807), 1, - sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, - sym_member_expression, - STATE(912), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, + [53046] = 6, + ACTIONS(4328), 1, + anon_sym_EQ_GT, + ACTIONS(4574), 1, + anon_sym_DOT, + ACTIONS(4576), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(149), 2, - sym__rhs_expression, - sym_call_expression, - STATE(919), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [51461] = 22, + ACTIONS(1780), 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(1778), 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, + [53092] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130832,23 +136585,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3454), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4436), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4438), 1, + anon_sym_this, + ACTIONS(4578), 1, + anon_sym_LPAREN, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130856,10 +136609,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3234), 2, + STATE(1875), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2666), 9, sym__literal, sym_integer, sym_float, @@ -130869,53 +136622,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51539] = 22, - ACTIONS(670), 1, + [53170] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3882), 1, - sym_identifier, - ACTIONS(3884), 1, - anon_sym__, - ACTIONS(3886), 1, + ACTIONS(4196), 1, + anon_sym_RPAREN, + ACTIONS(4308), 1, anon_sym_this, - STATE(147), 1, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2444), 1, - sym__lhs_expression, - STATE(2581), 1, + STATE(2291), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3448), 2, + STATE(3380), 2, sym__rhs_expression, sym_call_expression, - STATE(2433), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -130925,7 +136678,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51617] = 22, + [53248] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1900), 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(1898), 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, + [53288] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -130944,23 +136734,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(4110), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -130968,10 +136758,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3288), 2, + STATE(3633), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -130981,53 +136771,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51695] = 22, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [53366] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2868), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4228), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, sym_identifier, - ACTIONS(3874), 1, - anon_sym_LPAREN, - STATE(248), 1, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(293), 1, + STATE(2434), 1, sym_member_expression, - STATE(1302), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(250), 2, + STATE(3427), 2, sym__rhs_expression, sym_call_expression, - STATE(1338), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131037,53 +136827,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51773] = 22, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [53444] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3718), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3740), 1, + ACTIONS(4538), 1, sym_identifier, - ACTIONS(3874), 1, - anon_sym_LPAREN, - STATE(248), 1, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2211), 1, + STATE(2434), 1, sym_member_expression, - STATE(2214), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(250), 2, + STATE(3600), 2, sym__rhs_expression, sym_call_expression, - STATE(2242), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131093,53 +136883,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51851] = 22, - ACTIONS(39), 1, + [53522] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3381), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -131149,7 +136939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51929] = 22, + [53600] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -131168,23 +136958,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3300), 1, + ACTIONS(4050), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -131192,10 +136982,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3367), 2, + STATE(3611), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131205,7 +136995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52007] = 22, + [53678] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -131224,23 +137014,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3538), 1, + ACTIONS(3978), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -131248,10 +137038,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3223), 2, + STATE(3577), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131261,53 +137051,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52085] = 22, - ACTIONS(670), 1, + [53756] = 22, + ACTIONS(1302), 1, + anon_sym_RBRACE, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3350), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4580), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2213), 1, + STATE(1688), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3358), 2, + STATE(220), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(1898), 9, sym__literal, sym_integer, sym_float, @@ -131317,53 +137107,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52163] = 22, - ACTIONS(39), 1, + [53834] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3536), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(3994), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3413), 2, + STATE(3425), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -131373,7 +137163,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52241] = 22, + [53912] = 4, + ACTIONS(4464), 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(1624), 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, + [53954] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -131392,23 +137220,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3308), 1, + ACTIONS(3420), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -131416,10 +137244,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3193), 2, + STATE(3341), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131429,7 +137257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52319] = 22, + [54032] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -131448,23 +137276,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3460), 1, + ACTIONS(4074), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -131472,10 +137300,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3242), 2, + STATE(3325), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131485,53 +137313,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52397] = 22, - ACTIONS(39), 1, + [54110] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, sym_member_expression, - STATE(2395), 1, + STATE(2002), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3467), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1833), 9, sym__literal, sym_integer, sym_float, @@ -131541,7 +137369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52475] = 22, + [54188] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -131560,23 +137388,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3402), 1, + ACTIONS(4178), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -131584,10 +137412,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3306), 2, + STATE(3365), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131597,144 +137425,63 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52553] = 8, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3860), 1, - anon_sym_DOT, - ACTIONS(3864), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3862), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1048), 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(1046), 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, - [52603] = 22, - ACTIONS(39), 1, + [54266] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3418), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(3790), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3486), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [52681] = 5, - ACTIONS(3888), 1, - anon_sym_DOT_DOT_DOT, - STATE(2843), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1962), 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(1960), 17, - 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, - [52725] = 22, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3597), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [54344] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -131753,23 +137500,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(2769), 1, + ACTIONS(4230), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -131777,10 +137524,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3464), 2, + STATE(3369), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131790,15 +137537,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52803] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [54422] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4584), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -131809,9 +137552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(698), 18, + ACTIONS(4582), 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, @@ -131828,50 +137574,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [52845] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [54462] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3890), 1, - sym_identifier, - ACTIONS(3892), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4022), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - STATE(969), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(1612), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(764), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2735), 9, + STATE(3639), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131881,53 +137630,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52917] = 22, - ACTIONS(670), 1, + [54540] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(776), 1, - sym_identifier, - ACTIONS(778), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3866), 1, + ACTIONS(4554), 1, anon_sym_LPAREN, - STATE(147), 1, + ACTIONS(4586), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(150), 1, + STATE(2285), 1, sym_member_expression, - STATE(363), 1, + STATE(2513), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(564), 9, + STATE(2624), 9, sym__literal, sym_integer, sym_float, @@ -131937,7 +137686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52995] = 22, + [54618] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -131956,23 +137705,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(4200), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -131980,10 +137729,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3244), 2, + STATE(3330), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -131993,7 +137742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53073] = 22, + [54696] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -132012,23 +137761,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3464), 1, + ACTIONS(4078), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -132036,10 +137785,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3303), 2, + STATE(3333), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -132049,50 +137798,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53151] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [54774] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3890), 1, - sym_identifier, - ACTIONS(3892), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(969), 1, + ACTIONS(4538), 1, + sym_identifier, + ACTIONS(4578), 1, + anon_sym_LPAREN, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(1612), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(768), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2735), 9, + STATE(1875), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -132102,50 +137854,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53223] = 19, - ACTIONS(731), 1, + [54852] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3894), 1, - sym_identifier, - ACTIONS(3897), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(969), 1, + ACTIONS(4460), 1, + sym_identifier, + ACTIONS(4588), 1, + anon_sym_while, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(1612), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(727), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2735), 9, + STATE(3379), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -132155,53 +137910,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53295] = 22, - ACTIONS(670), 1, + [54930] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3522), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, + ACTIONS(2350), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(3534), 1, sym_identifier, - STATE(147), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2213), 1, + STATE(1688), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3248), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(1756), 9, sym__literal, sym_integer, sym_float, @@ -132211,53 +137966,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53373] = 22, - ACTIONS(39), 1, + [55008] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3520), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4448), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2513), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3192), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -132267,50 +138022,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53451] = 19, - ACTIONS(670), 1, + [55086] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3890), 1, + ACTIONS(4432), 1, sym_identifier, - ACTIONS(3892), 1, + ACTIONS(4434), 1, anon_sym_this, - STATE(969), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(1612), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2596), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(666), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2735), 9, + STATE(196), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -132320,53 +138078,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53523] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [55164] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4080), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2880), 1, + ACTIONS(4538), 1, sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(1655), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(3413), 2, sym__rhs_expression, sym_call_expression, - STATE(1901), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -132376,7 +138134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53601] = 22, + [55242] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -132395,23 +138153,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3412), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -132419,10 +138177,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3317), 2, + STATE(3338), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -132432,7 +138190,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53679] = 22, + [55320] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1862), 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(1860), 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, + [55360] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -132451,23 +138246,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3550), 1, + ACTIONS(4152), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -132475,10 +138270,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3494), 2, + STATE(3417), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -132488,53 +138283,109 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53757] = 22, - ACTIONS(39), 1, + [55438] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(3848), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, + STATE(190), 1, + sym__call, + STATE(191), 1, sym__constructor_call, - STATE(1951), 1, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3332), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [55516] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3830), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3134), 2, + STATE(3375), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -132544,13 +138395,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53835] = 3, + [55594] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1124), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4592), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -132561,10 +138410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1122), 19, + ACTIONS(4590), 21, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132581,17 +138432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [53875] = 6, - ACTIONS(3648), 1, - anon_sym_EQ_GT, - ACTIONS(3900), 1, - anon_sym_DOT, - ACTIONS(3902), 1, - anon_sym_QMARK, + [55634] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(4596), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -132602,10 +138447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 18, - sym__closing_brace_marker, + ACTIONS(4594), 21, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132619,65 +138466,50 @@ 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, anon_sym_DOT_DOT_DOT, - [53921] = 22, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + [55674] = 6, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1888), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1784), 13, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_EQ, anon_sym_null, - ACTIONS(85), 1, + anon_sym_extends, + anon_sym_implements, aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(91), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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, + anon_sym_LT, + anon_sym_GT, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3774), 1, - anon_sym_this, - ACTIONS(3904), 1, - anon_sym_LPAREN, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(1733), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2547), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [53999] = 22, + [55720] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -132696,23 +138528,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(4058), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -132720,10 +138552,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3382), 2, + STATE(3410), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -132733,7 +138565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54077] = 22, + [55798] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -132752,23 +138584,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3422), 1, + ACTIONS(4182), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -132776,10 +138608,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3142), 2, + STATE(3389), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -132789,53 +138621,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54155] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [55876] = 22, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(2062), 1, + anon_sym_new, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(4454), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4458), 1, + anon_sym_LBRACE, + ACTIONS(4522), 1, sym_identifier, - ACTIONS(3906), 1, - anon_sym_while, - STATE(147), 1, + ACTIONS(4602), 1, + anon_sym_LPAREN, + STATE(1919), 1, sym__call, - STATE(148), 1, + STATE(1920), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2488), 1, sym_string, - STATE(2444), 1, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3416), 2, + STATE(1931), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2644), 9, sym__literal, sym_integer, sym_float, @@ -132845,53 +138677,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54233] = 22, - ACTIONS(39), 1, + [55954] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(1450), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(1454), 1, + anon_sym_this, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, sym_member_expression, - STATE(2395), 1, + STATE(398), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3269), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(572), 9, sym__literal, sym_integer, sym_float, @@ -132901,7 +138733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54311] = 22, + [56032] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -132920,23 +138752,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(4204), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -132944,10 +138776,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3154), 2, + STATE(3650), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -132957,145 +138789,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54389] = 5, - ACTIONS(3912), 1, - anon_sym_LT, - STATE(1696), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3910), 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(3908), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [54433] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [56110] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3890), 1, - sym_identifier, - ACTIONS(3892), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1612), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(772), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2735), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [54505] = 22, - ACTIONS(670), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(3262), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - ACTIONS(3914), 1, - anon_sym_while, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3159), 2, + STATE(3390), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133105,53 +138845,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54583] = 22, - ACTIONS(670), 1, + [56188] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(942), 1, + ACTIONS(3800), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3916), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(150), 1, + STATE(2285), 1, sym_member_expression, - STATE(1655), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, + STATE(3334), 2, sym__rhs_expression, sym_call_expression, - STATE(1855), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -133161,7 +138901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54661] = 22, + [56266] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133180,23 +138920,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(2780), 1, + ACTIONS(4060), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133204,10 +138944,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3197), 2, + STATE(3466), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133217,7 +138957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54739] = 22, + [56344] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133236,23 +138976,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3558), 1, + ACTIONS(4232), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133260,10 +139000,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3198), 2, + STATE(3632), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133273,50 +139013,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54817] = 19, - ACTIONS(670), 1, + [56422] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3818), 1, + ACTIONS(4154), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3918), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1641), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(764), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2750), 9, + STATE(3409), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -133326,7 +139069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54889] = 22, + [56500] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133345,23 +139088,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3556), 1, + ACTIONS(4082), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133369,10 +139112,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3368), 2, + STATE(3501), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133382,50 +139125,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54967] = 19, - ACTIONS(670), 1, + [56578] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3818), 1, + ACTIONS(4490), 1, anon_sym_this, - ACTIONS(3918), 1, + ACTIONS(4604), 1, sym_identifier, - STATE(1641), 1, + STATE(1680), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(2214), 1, sym_member_expression, - STATE(2121), 1, + STATE(2215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(768), 5, + ACTIONS(1384), 5, sym__closing_brace_marker, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LT, anon_sym_EQ_GT, - STATE(2750), 9, + STATE(2836), 9, sym__literal, sym_integer, sym_float, @@ -133435,7 +139178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55039] = 22, + [56650] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133454,23 +139197,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3406), 1, + ACTIONS(3657), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133478,10 +139221,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3352), 2, + STATE(3443), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133491,7 +139234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55117] = 22, + [56728] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133510,23 +139253,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3512), 1, + ACTIONS(4084), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133534,10 +139277,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3149), 2, + STATE(3571), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133547,7 +139290,113 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55195] = 22, + [56806] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4490), 1, + anon_sym_this, + ACTIONS(4604), 1, + sym_identifier, + STATE(1680), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2836), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56878] = 19, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + anon_sym_LBRACK, + ACTIONS(1408), 1, + anon_sym_null, + ACTIONS(1411), 1, + aux_sym_integer_token1, + ACTIONS(1414), 1, + aux_sym_integer_token2, + ACTIONS(1417), 1, + aux_sym_float_token1, + ACTIONS(1420), 1, + aux_sym_float_token2, + ACTIONS(1426), 1, + aux_sym_string_token1, + ACTIONS(1429), 1, + aux_sym_string_token3, + ACTIONS(4606), 1, + sym_identifier, + ACTIONS(4609), 1, + anon_sym_this, + STATE(1680), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1423), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1395), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2836), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56950] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133566,23 +139415,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3374), 1, + ACTIONS(4236), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133590,10 +139439,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3466), 2, + STATE(3620), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133603,7 +139452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55273] = 22, + [57028] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133622,23 +139471,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3318), 1, + ACTIONS(3648), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133646,10 +139495,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3183), 2, + STATE(3548), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133659,50 +139508,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55351] = 19, - ACTIONS(731), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, + [57106] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3920), 1, - sym_identifier, - ACTIONS(3923), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - STATE(1641), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(727), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2750), 9, + STATE(3497), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133712,7 +139564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55423] = 22, + [57184] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133731,23 +139583,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3980), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133755,10 +139607,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3174), 2, + STATE(3629), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133768,53 +139620,92 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55501] = 22, - ACTIONS(670), 1, + [57262] = 5, + ACTIONS(4526), 1, + anon_sym_DOT_DOT_DOT, + STATE(2490), 1, + sym__rangeOperator, + 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(1624), 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, + [57306] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(3866), 1, - anon_sym_LPAREN, - ACTIONS(3926), 1, + ACTIONS(3471), 1, sym_identifier, - STATE(147), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2408), 1, + STATE(928), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2591), 9, + STATE(944), 9, sym__literal, sym_integer, sym_float, @@ -133824,50 +139715,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55579] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [57384] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3818), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(3314), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3918), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1641), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(666), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2750), 9, + STATE(3388), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133877,53 +139771,88 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55651] = 22, - ACTIONS(670), 1, + [57462] = 4, + ACTIONS(4486), 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(1624), 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, + [57504] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1614), 1, + ACTIONS(4490), 1, anon_sym_this, - ACTIONS(2878), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(1680), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(1737), 1, - sym_string, - STATE(2444), 1, + STATE(2215), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1748), 9, + ACTIONS(1436), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2836), 9, sym__literal, sym_integer, sym_float, @@ -133933,7 +139862,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55729] = 22, + [57576] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1834), 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(1832), 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, + [57616] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -133952,23 +139918,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3382), 1, + ACTIONS(4090), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -133976,10 +139942,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3397), 2, + STATE(3652), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -133989,7 +139955,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55807] = 22, + [57694] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1862), 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(1860), 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, + [57734] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134008,23 +140011,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3524), 1, + ACTIONS(3350), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134032,10 +140035,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3203), 2, + STATE(3440), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134045,9 +140048,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55885] = 22, + [57812] = 22, ACTIONS(39), 1, anon_sym_LBRACK, + ACTIONS(41), 1, + anon_sym_this, ACTIONS(55), 1, anon_sym_new, ACTIONS(67), 1, @@ -134064,90 +140069,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3320), 1, + ACTIONS(1302), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4612), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + STATE(1580), 1, sym_member_expression, - STATE(2395), 1, + STATE(1639), 1, sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3232), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [55963] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, - sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(1775), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(1801), 9, sym__literal, sym_integer, sym_float, @@ -134157,7 +140104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56041] = 22, + [57890] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134176,23 +140123,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3570), 1, + ACTIONS(4168), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134200,10 +140147,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3461), 2, + STATE(3534), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134213,7 +140160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56119] = 22, + [57968] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134232,23 +140179,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3564), 1, + ACTIONS(4242), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134256,10 +140203,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3253), 2, + STATE(3452), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134269,50 +140216,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56197] = 19, - ACTIONS(670), 1, + [58046] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3818), 1, + ACTIONS(4490), 1, anon_sym_this, - ACTIONS(3918), 1, + ACTIONS(4604), 1, sym_identifier, - STATE(1641), 1, + STATE(1680), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(2214), 1, sym_member_expression, - STATE(2121), 1, + STATE(2215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(772), 5, + ACTIONS(1440), 5, sym__closing_brace_marker, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LT, anon_sym_EQ_GT, - STATE(2750), 9, + STATE(2836), 9, sym__literal, sym_integer, sym_float, @@ -134322,7 +140269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56269] = 22, + [58118] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134341,23 +140288,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(2786), 1, + ACTIONS(4000), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134365,10 +140312,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3389), 2, + STATE(3406), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134378,13 +140325,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56347] = 4, - ACTIONS(3808), 1, - anon_sym_COLON, + [58196] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, + ACTIONS(1834), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -134397,9 +140342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1960), 18, + ACTIONS(1832), 19, sym__lookback_semicolon, anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134416,13 +140362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [56389] = 4, - ACTIONS(3786), 1, - anon_sym_COLON, + [58236] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, + ACTIONS(1900), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -134435,9 +140379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1960), 18, + ACTIONS(1898), 19, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134454,7 +140399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [56431] = 22, + [58276] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134473,23 +140418,135 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3568), 1, + ACTIONS(3440), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3628), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58354] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(3414), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, sym__constructor_call, - STATE(1951), 1, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3353), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58432] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(3410), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134497,10 +140554,66 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3163), 2, + STATE(3321), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [58510] = 22, + ACTIONS(1352), 1, + sym_identifier, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, + anon_sym_LBRACK, + ACTIONS(1362), 1, + anon_sym_this, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, + anon_sym_null, + ACTIONS(1368), 1, + aux_sym_integer_token1, + ACTIONS(1370), 1, + aux_sym_integer_token2, + ACTIONS(1372), 1, + aux_sym_float_token1, + ACTIONS(1374), 1, + aux_sym_float_token2, + ACTIONS(1378), 1, + aux_sym_string_token1, + ACTIONS(1380), 1, + aux_sym_string_token3, + ACTIONS(4556), 1, + anon_sym_LPAREN, + STATE(337), 1, + sym__call, + STATE(362), 1, + sym_member_expression, + STATE(371), 1, + sym__constructor_call, + STATE(393), 1, + sym_string, + STATE(2585), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1376), 2, + anon_sym_true, + anon_sym_false, + STATE(376), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(578), 9, sym__literal, sym_integer, sym_float, @@ -134510,7 +140623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56509] = 22, + [58588] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134529,23 +140642,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(2775), 1, + ACTIONS(4248), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134553,10 +140666,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3459), 2, + STATE(3516), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134566,7 +140679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56587] = 22, + [58666] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134585,23 +140698,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3502), 1, + ACTIONS(4036), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134609,10 +140722,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3325), 2, + STATE(3392), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134622,53 +140735,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56665] = 22, - ACTIONS(39), 1, + [58744] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(1968), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4452), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4454), 1, + anon_sym_this, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3255), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2403), 9, sym__literal, sym_integer, sym_float, @@ -134678,7 +140791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56743] = 22, + [58822] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134697,23 +140810,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3526), 1, + ACTIONS(4252), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134721,10 +140834,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3213), 2, + STATE(3523), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134734,53 +140847,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56821] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [58900] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3572), 1, - anon_sym_RPAREN, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(2448), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(3532), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4578), 1, + anon_sym_LPAREN, + STATE(1580), 1, sym_member_expression, - STATE(2213), 1, + STATE(1639), 1, sym_string, - STATE(2444), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3357), 2, + STATE(1875), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(1749), 9, sym__literal, sym_integer, sym_float, @@ -134790,53 +140903,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56899] = 22, - ACTIONS(39), 1, + [58978] = 22, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4310), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4312), 1, + anon_sym_this, + ACTIONS(4556), 1, + anon_sym_LPAREN, + STATE(337), 1, sym__call, - STATE(2312), 1, + STATE(371), 1, + sym__constructor_call, + STATE(2289), 1, sym_member_expression, - STATE(2395), 1, + STATE(2292), 1, sym_string, - STATE(2461), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(3436), 2, + STATE(376), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2300), 9, sym__literal, sym_integer, sym_float, @@ -134846,53 +140959,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56977] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [59056] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3504), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4256), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3284), 2, + STATE(3703), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134902,7 +141015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57055] = 22, + [59134] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -134921,23 +141034,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3436), 1, + ACTIONS(4094), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -134945,10 +141058,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3176), 2, + STATE(3496), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -134958,53 +141071,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57133] = 22, - ACTIONS(39), 1, + [59212] = 22, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2062), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4456), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4458), 1, + anon_sym_LBRACE, + ACTIONS(4602), 1, + anon_sym_LPAREN, + STATE(1919), 1, sym__call, - STATE(2312), 1, + STATE(1920), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2488), 1, sym_string, - STATE(2461), 1, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3365), 2, + STATE(1931), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2675), 9, sym__literal, sym_integer, sym_float, @@ -135014,7 +141127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57211] = 22, + [59290] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135033,23 +141146,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(2720), 1, + ACTIONS(4260), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135057,10 +141170,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3308), 2, + STATE(3552), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135070,53 +141183,92 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57289] = 22, - ACTIONS(39), 1, + [59368] = 5, + ACTIONS(1782), 1, + anon_sym_LPAREN, + ACTIONS(1784), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [59412] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3472), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(3802), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3302), 2, + STATE(3355), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -135126,7 +141278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57367] = 22, + [59490] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135145,23 +141297,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4096), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - ACTIONS(3904), 1, - anon_sym_LPAREN, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135169,10 +141321,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1733), 2, + STATE(3636), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135182,7 +141334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57445] = 22, + [59568] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135201,23 +141353,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(2712), 1, + ACTIONS(4266), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135225,10 +141377,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3236), 2, + STATE(3587), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135238,53 +141390,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57523] = 22, - ACTIONS(670), 1, + [59646] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(942), 1, + ACTIONS(4170), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3866), 1, - anon_sym_LPAREN, - ACTIONS(3928), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(150), 1, + STATE(2285), 1, sym_member_expression, - STATE(912), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(3472), 2, sym__rhs_expression, sym_call_expression, - STATE(921), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -135294,7 +141446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57601] = 22, + [59724] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135313,23 +141465,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3330), 1, + ACTIONS(2648), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135337,10 +141489,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3451), 2, + STATE(3589), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135350,7 +141502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57679] = 22, + [59802] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135369,23 +141521,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3304), 1, + ACTIONS(4270), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135393,10 +141545,66 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3229), 2, + STATE(3594), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [59880] = 22, + ACTIONS(2046), 1, + anon_sym_LBRACE, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2060), 1, + anon_sym_this, + ACTIONS(2062), 1, + anon_sym_new, + ACTIONS(2064), 1, + anon_sym_null, + ACTIONS(2066), 1, + aux_sym_integer_token1, + ACTIONS(2068), 1, + aux_sym_integer_token2, + ACTIONS(2070), 1, + aux_sym_float_token1, + ACTIONS(2072), 1, + aux_sym_float_token2, + ACTIONS(2076), 1, + aux_sym_string_token1, + ACTIONS(2078), 1, + aux_sym_string_token3, + ACTIONS(3536), 1, + sym_identifier, + ACTIONS(4602), 1, + anon_sym_LPAREN, + STATE(1600), 1, + sym_string, + STATE(1715), 1, + sym_member_expression, + STATE(1919), 1, + sym__call, + STATE(1920), 1, + sym__constructor_call, + STATE(2788), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2074), 2, + anon_sym_true, + anon_sym_false, + STATE(1931), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1777), 9, sym__literal, sym_integer, sym_float, @@ -135406,7 +141614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57757] = 22, + [59958] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135425,23 +141633,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3334), 1, + ACTIONS(3970), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135449,10 +141657,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3479), 2, + STATE(3412), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135462,7 +141670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57835] = 22, + [60036] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135481,23 +141689,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(2788), 1, + ACTIONS(4274), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135505,10 +141713,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3337), 2, + STATE(3601), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135518,46 +141726,63 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57913] = 5, - ACTIONS(3912), 1, - anon_sym_LT, - STATE(1695), 1, - sym_type_params, + [60114] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4118), 1, + anon_sym_RBRACE, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4586), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2513), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3932), 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(3930), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [57957] = 22, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3690), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2624), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60192] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135576,23 +141801,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3314), 1, + ACTIONS(3972), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135600,10 +141825,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3355), 2, + STATE(3421), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135613,7 +141838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58035] = 22, + [60270] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135632,23 +141857,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3400), 1, + ACTIONS(4276), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135656,10 +141881,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3272), 2, + STATE(3634), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135669,53 +141894,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58113] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [60348] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3508), 1, - anon_sym_RBRACE, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4102), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3926), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2408), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3143), 2, + STATE(3395), 2, sym__rhs_expression, sym_call_expression, - STATE(2591), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135725,7 +141950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58191] = 22, + [60426] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135744,23 +141969,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3336), 1, + ACTIONS(4016), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135768,10 +141993,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3402), 2, + STATE(3603), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135781,7 +142006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58269] = 22, + [60504] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135800,23 +142025,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3578), 1, + ACTIONS(4280), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135824,65 +142049,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3366), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [58347] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3936), 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(3934), 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, - [58387] = 4, - ACTIONS(3744), 1, - anon_sym_COLON, + STATE(3641), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [60582] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1962), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4616), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -135893,9 +142077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1960), 18, + ACTIONS(4614), 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, @@ -135912,7 +142099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [58429] = 22, + [60622] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135931,23 +142118,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(1574), 1, + ACTIONS(4210), 1, + sym__lookback_semicolon, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2882), 1, + ACTIONS(4538), 1, sym_identifier, - ACTIONS(3904), 1, - anon_sym_LPAREN, - STATE(1654), 1, - sym_string, - STATE(1689), 1, - sym_member_expression, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2461), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -135955,10 +142142,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1733), 2, + STATE(3423), 2, sym__rhs_expression, sym_call_expression, - STATE(1846), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -135968,7 +142155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58507] = 22, + [60700] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -135987,23 +142174,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3582), 1, + ACTIONS(4284), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -136011,10 +142198,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3373), 2, + STATE(3648), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -136024,53 +142211,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58585] = 22, - ACTIONS(39), 1, + [60778] = 22, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(55), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(692), 1, - sym__lookback_semicolon, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3938), 1, + ACTIONS(1458), 1, + anon_sym_this, + ACTIONS(1496), 1, sym_identifier, - STATE(1654), 1, - sym_string, - STATE(1689), 1, + ACTIONS(4556), 1, + anon_sym_LPAREN, + STATE(337), 1, + sym__call, + STATE(362), 1, sym_member_expression, - STATE(1725), 1, + STATE(371), 1, sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2461), 1, + STATE(393), 1, + sym_string, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(1806), 2, + STATE(376), 2, sym__rhs_expression, sym_call_expression, - STATE(1823), 9, + STATE(569), 9, sym__literal, sym_integer, sym_float, @@ -136080,53 +142267,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58663] = 22, - ACTIONS(39), 1, + [60856] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3358), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4128), 1, + anon_sym_RBRACK, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3346), 2, + STATE(3453), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -136136,7 +142323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58741] = 22, + [60934] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -136155,23 +142342,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3586), 1, + ACTIONS(4288), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -136179,10 +142366,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3380), 2, + STATE(3484), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -136192,53 +142379,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58819] = 22, - ACTIONS(39), 1, + [61012] = 22, + ACTIONS(2544), 1, + anon_sym_LBRACE, + ACTIONS(2556), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2558), 1, + anon_sym_this, + ACTIONS(2560), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2562), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2564), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2566), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2568), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2570), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2574), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2576), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3438), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3530), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + ACTIONS(4618), 1, + anon_sym_LPAREN, + STATE(1477), 1, sym_member_expression, - STATE(2395), 1, + STATE(1483), 1, sym_string, - STATE(2461), 1, + STATE(1507), 1, + sym__call, + STATE(1508), 1, + sym__constructor_call, + STATE(2670), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2572), 2, anon_sym_true, anon_sym_false, - STATE(3178), 2, + STATE(1512), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1560), 9, sym__literal, sym_integer, sym_float, @@ -136248,92 +142435,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58897] = 5, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 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, - [58941] = 22, - ACTIONS(702), 1, + [61090] = 22, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(820), 1, - anon_sym_this, - ACTIONS(840), 1, + ACTIONS(4620), 1, sym_identifier, - ACTIONS(3874), 1, - anon_sym_LPAREN, - STATE(248), 1, + ACTIONS(4622), 1, + anon_sym__, + ACTIONS(4624), 1, + anon_sym_this, + STATE(190), 1, sym__call, - STATE(249), 1, + STATE(191), 1, sym__constructor_call, - STATE(293), 1, + STATE(2285), 1, sym_member_expression, - STATE(366), 1, + STATE(2596), 1, sym_string, - STATE(2615), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(250), 2, + STATE(3692), 2, sym__rhs_expression, sym_call_expression, - STATE(486), 9, + STATE(2686), 9, sym__literal, sym_integer, sym_float, @@ -136343,7 +142491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59019] = 22, + [61168] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -136362,23 +142510,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(4292), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -136386,10 +142534,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3408), 2, + STATE(3561), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -136399,53 +142547,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59097] = 22, - ACTIONS(39), 1, + [61246] = 22, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3356), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4318), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3164), 2, + STATE(196), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -136455,7 +142603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59175] = 22, + [61324] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -136474,23 +142622,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3394), 1, + ACTIONS(4294), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -136498,10 +142646,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3186), 2, + STATE(3675), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -136511,53 +142659,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59253] = 22, - ACTIONS(39), 1, + [61402] = 22, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3594), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4488), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4490), 1, + anon_sym_this, + ACTIONS(4556), 1, + anon_sym_LPAREN, + STATE(337), 1, sym__call, - STATE(2312), 1, + STATE(371), 1, + sym__constructor_call, + STATE(2289), 1, sym_member_expression, - STATE(2395), 1, + STATE(2292), 1, sym_string, - STATE(2461), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(3415), 2, + STATE(376), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2482), 9, sym__literal, sym_integer, sym_float, @@ -136567,81 +142715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59331] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3942), 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(3940), 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, - [59371] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3946), 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(3944), 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, - [59411] = 22, + [61480] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -136660,23 +142734,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3598), 1, + ACTIONS(2610), 1, sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -136684,66 +142758,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3128), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [59489] = 22, - ACTIONS(1480), 1, - anon_sym_LBRACE, - ACTIONS(1492), 1, - anon_sym_LBRACK, - ACTIONS(1494), 1, - anon_sym_this, - ACTIONS(1496), 1, - anon_sym_new, - ACTIONS(1498), 1, - anon_sym_null, - ACTIONS(1500), 1, - aux_sym_integer_token1, - ACTIONS(1502), 1, - aux_sym_integer_token2, - ACTIONS(1504), 1, - aux_sym_float_token1, - ACTIONS(1506), 1, - aux_sym_float_token2, - ACTIONS(1510), 1, - aux_sym_string_token1, - ACTIONS(1512), 1, - aux_sym_string_token3, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(3948), 1, - anon_sym_LPAREN, - STATE(1447), 1, - sym_member_expression, - STATE(1486), 1, - sym_string, - STATE(1529), 1, - sym__constructor_call, - STATE(1559), 1, - sym__call, - STATE(2436), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1508), 2, - anon_sym_true, - anon_sym_false, - STATE(1555), 2, + STATE(3363), 2, sym__rhs_expression, sym_call_expression, - STATE(1517), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -136753,11 +142771,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59567] = 3, + [61558] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3952), 10, + ACTIONS(1940), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -136768,12 +142788,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3950), 21, - sym__lookback_semicolon, + ACTIONS(1938), 18, anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DASH_GT, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -136790,53 +142807,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [59607] = 22, - ACTIONS(1248), 1, + [61597] = 21, + ACTIONS(2544), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(2556), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(2558), 1, + anon_sym_this, + ACTIONS(2560), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(2562), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(2564), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(2566), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(2568), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(2570), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(2574), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(2576), 1, aux_sym_string_token3, - ACTIONS(1438), 1, - anon_sym_this, - ACTIONS(2876), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3876), 1, - anon_sym_LPAREN, - STATE(1378), 1, + STATE(1477), 1, sym_member_expression, - STATE(1464), 1, + STATE(1483), 1, + sym_string, + STATE(1507), 1, sym__call, - STATE(1465), 1, + STATE(1508), 1, sym__constructor_call, - STATE(1466), 1, - sym_string, - STATE(2578), 1, + STATE(2670), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(2572), 2, anon_sym_true, anon_sym_false, - STATE(1467), 2, + STATE(1517), 2, sym__rhs_expression, sym_call_expression, - STATE(1520), 9, + STATE(1560), 9, sym__literal, sym_integer, sym_float, @@ -136846,53 +142861,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59685] = 22, - ACTIONS(39), 1, + [61672] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3602), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3449), 2, + STATE(3344), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -136902,53 +142915,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59763] = 22, - ACTIONS(1248), 1, + [61747] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(3876), 1, - anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3471), 1, sym_identifier, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2262), 1, + STATE(928), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1467), 2, + STATE(220), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + STATE(944), 9, sym__literal, sym_integer, sym_float, @@ -136958,109 +142969,126 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59841] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, + [61822] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(149), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2223), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [59919] = 22, - ACTIONS(670), 1, + ACTIONS(1956), 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(1954), 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, + [61861] = 6, + ACTIONS(4464), 1, + anon_sym_EQ_GT, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [61906] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(2870), 1, + ACTIONS(4460), 1, sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(150), 1, + STATE(2285), 1, sym_member_expression, - STATE(1308), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(3261), 2, sym__rhs_expression, sym_call_expression, - STATE(1355), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -137070,53 +143098,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59997] = 22, - ACTIONS(39), 1, + [61981] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3472), 2, + STATE(3522), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -137126,53 +143152,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60075] = 22, - ACTIONS(702), 1, + [62056] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3816), 1, - sym_identifier, - ACTIONS(3818), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3874), 1, - anon_sym_LPAREN, - STATE(248), 1, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(249), 1, + STATE(191), 1, sym__constructor_call, - STATE(2211), 1, + STATE(2285), 1, sym_member_expression, - STATE(2214), 1, + STATE(2291), 1, sym_string, - STATE(2615), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(250), 2, + STATE(3010), 2, sym__rhs_expression, sym_call_expression, - STATE(2425), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -137182,53 +143206,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60153] = 22, - ACTIONS(1248), 1, + [62131] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3766), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3842), 1, + ACTIONS(4586), 1, sym_identifier, - ACTIONS(3876), 1, - anon_sym_LPAREN, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2415), 1, + STATE(2513), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1467), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(2557), 9, + STATE(2624), 9, sym__literal, sym_integer, sym_float, @@ -137238,53 +143260,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60231] = 22, - ACTIONS(39), 1, + [62206] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3312), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, sym_member_expression, - STATE(2395), 1, + STATE(2002), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3336), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1833), 9, sym__literal, sym_integer, sym_float, @@ -137294,53 +143314,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60309] = 22, - ACTIONS(1248), 1, + [62281] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3738), 1, + ACTIONS(1450), 1, sym_identifier, - ACTIONS(3876), 1, - anon_sym_LPAREN, - STATE(1464), 1, + ACTIONS(1454), 1, + anon_sym_this, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2262), 1, + STATE(398), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1467), 2, + STATE(761), 2, sym__rhs_expression, sym_call_expression, - STATE(2348), 9, + STATE(572), 9, sym__literal, sym_integer, sym_float, @@ -137350,53 +143368,126 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60387] = 22, - ACTIONS(670), 1, + [62356] = 6, + ACTIONS(3640), 1, + anon_sym_DOT, + ACTIONS(3642), 1, + anon_sym_QMARK, + ACTIONS(4486), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [62401] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1754), 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(1752), 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, + [62440] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3480), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3315), 2, + STATE(3375), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -137406,53 +143497,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60465] = 22, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [62515] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3866), 1, - anon_sym_LPAREN, - STATE(147), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2444), 1, - sym__lhs_expression, - STATE(2581), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(3390), 2, sym__rhs_expression, sym_call_expression, - STATE(2538), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -137462,7 +143551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60543] = 22, + [62590] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -137481,23 +143570,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3614), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -137505,10 +143592,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3487), 2, + STATE(3559), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -137518,53 +143605,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60621] = 22, - ACTIONS(39), 1, + [62665] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1936), 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(1934), 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, + [62704] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(2762), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3169), 2, + STATE(3453), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -137574,53 +143695,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60699] = 22, - ACTIONS(39), 1, + [62779] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(2242), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3309), 2, + STATE(2896), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -137630,53 +143749,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60777] = 22, - ACTIONS(1248), 1, + [62854] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(2884), 1, + ACTIONS(3538), 1, sym_identifier, - ACTIONS(3876), 1, - anon_sym_LPAREN, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(1585), 1, + STATE(197), 1, + sym_member_expression, + STATE(2002), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1467), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(1899), 9, + STATE(1833), 9, sym__literal, sym_integer, sym_float, @@ -137686,7 +143803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60855] = 22, + [62929] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -137705,23 +143822,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3618), 1, - sym__lookback_semicolon, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -137729,10 +143844,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3458), 2, + STATE(3577), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -137742,125 +143857,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60933] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1096), 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(1094), 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, - [60973] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3958), 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(3956), 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, - [61013] = 21, - ACTIONS(670), 1, + [63004] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3764), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(2350), 1, anon_sym_this, - STATE(147), 1, + ACTIONS(3534), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2213), 1, + STATE(1688), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(220), 2, sym__rhs_expression, sym_call_expression, - STATE(2308), 9, + STATE(1756), 9, sym__literal, sym_integer, sym_float, @@ -137870,7 +143911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61088] = 21, + [63079] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -137889,21 +143930,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -137911,10 +143952,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3458), 2, + STATE(3640), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -137924,11 +143965,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61163] = 3, + [63154] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1208), 12, + ACTIONS(1960), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -137941,7 +143982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1206), 18, + ACTIONS(1958), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -137960,13 +144001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [61202] = 4, - ACTIONS(3094), 1, - anon_sym_DASH_GT, + [63193] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3962), 10, + ACTIONS(4632), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -137977,10 +144016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3960), 19, + ACTIONS(4630), 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, @@ -137997,119 +144037,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [61243] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3367), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [61318] = 21, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_new, - ACTIONS(708), 1, - anon_sym_null, - ACTIONS(710), 1, - aux_sym_integer_token1, - ACTIONS(712), 1, - aux_sym_integer_token2, - ACTIONS(714), 1, - aux_sym_float_token1, - ACTIONS(716), 1, - aux_sym_float_token2, - ACTIONS(720), 1, - aux_sym_string_token1, - ACTIONS(722), 1, - aux_sym_string_token3, - ACTIONS(3718), 1, - anon_sym_this, - ACTIONS(3740), 1, - sym_identifier, - STATE(248), 1, - sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(2211), 1, - sym_member_expression, - STATE(2214), 1, - sym_string, - STATE(2615), 1, - sym__lhs_expression, + [63232] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, - anon_sym_true, - anon_sym_false, - STATE(464), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2242), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [61393] = 3, + ACTIONS(1940), 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(1938), 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, + [63271] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1062), 12, + ACTIONS(1762), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -138122,7 +144090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1060), 18, + ACTIONS(1760), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -138141,51 +144109,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [61432] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [63310] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3041), 2, + STATE(3628), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -138195,51 +144163,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61507] = 21, - ACTIONS(39), 1, + [63385] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(2350), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3453), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, sym_member_expression, - STATE(2395), 1, + STATE(928), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3183), 2, + STATE(220), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(945), 9, sym__literal, sym_integer, sym_float, @@ -138249,11 +144217,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61582] = 3, + [63460] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1212), 12, + ACTIONS(1944), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -138266,7 +144234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1210), 18, + ACTIONS(1942), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -138285,61 +144253,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [61621] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3634), 1, - anon_sym_this, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, + [63499] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(154), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2223), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [61696] = 21, + ACTIONS(1476), 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(1474), 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, + [63538] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -138358,21 +144308,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -138380,10 +144330,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3229), 2, + STATE(3434), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -138393,13 +144343,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61771] = 3, + [63613] = 6, + ACTIONS(4470), 1, + anon_sym_EQ_GT, + ACTIONS(4634), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1224), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -138410,9 +144364,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1222), 18, - sym__lookback_semicolon, + ACTIONS(1778), 17, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -138426,54 +144380,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, anon_sym_DOT_DOT_DOT, - [61810] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [63658] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1614), 1, - anon_sym_this, - ACTIONS(2878), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4612), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(1580), 1, sym_member_expression, - STATE(1737), 1, + STATE(1639), 1, sym_string, - STATE(2444), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, + STATE(1775), 2, sym__rhs_expression, sym_call_expression, - STATE(1748), 9, + STATE(1801), 9, sym__literal, sym_integer, sym_float, @@ -138483,87 +144436,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61885] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1066), 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(1064), 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, - [61924] = 21, - ACTIONS(1248), 1, + [63733] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(2884), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(1585), 1, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1470), 2, + STATE(3154), 2, sym__rhs_expression, sym_call_expression, - STATE(1899), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -138573,51 +144490,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61999] = 21, - ACTIONS(670), 1, + [63808] = 21, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(4398), 1, anon_sym_this, - ACTIONS(2807), 1, + ACTIONS(4406), 1, sym_identifier, - STATE(147), 1, + STATE(337), 1, sym__call, - STATE(148), 1, + STATE(371), 1, sym__constructor_call, - STATE(150), 1, + STATE(2289), 1, sym_member_expression, - STATE(912), 1, + STATE(2292), 1, sym_string, - STATE(2444), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(385), 2, sym__rhs_expression, sym_call_expression, - STATE(919), 9, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -138627,51 +144544,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62074] = 21, - ACTIONS(702), 1, + [63883] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(820), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(840), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(248), 1, + STATE(190), 1, sym__call, - STATE(249), 1, + STATE(191), 1, sym__constructor_call, - STATE(293), 1, + STATE(2285), 1, sym_member_expression, - STATE(366), 1, + STATE(2291), 1, sym_string, - STATE(2615), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(3455), 2, sym__rhs_expression, sym_call_expression, - STATE(486), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -138681,88 +144598,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62149] = 4, - ACTIONS(3964), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1962), 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(1960), 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, - [62190] = 21, - ACTIONS(39), 1, + [63958] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3232), 2, + STATE(2874), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -138772,13 +144652,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62265] = 3, + [64033] = 4, + ACTIONS(3724), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1172), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4640), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -138789,9 +144669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1170), 18, + ACTIONS(4638), 19, sym__lookback_semicolon, anon_sym_STAR, + anon_sym_RPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -138808,105 +144689,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [62304] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1364), 1, + [64074] = 21, + ACTIONS(2046), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3217), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [62379] = 21, - ACTIONS(39), 1, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2060), 1, + anon_sym_this, + ACTIONS(2062), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3536), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, + STATE(1600), 1, sym_string, - STATE(2461), 1, + STATE(1715), 1, + sym_member_expression, + STATE(1919), 1, + sym__call, + STATE(1920), 1, + sym__constructor_call, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3193), 2, + STATE(1944), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1777), 9, sym__literal, sym_integer, sym_float, @@ -138916,51 +144743,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62454] = 21, - ACTIONS(39), 1, + [64149] = 21, + ACTIONS(2046), 1, + anon_sym_LBRACE, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2060), 1, + anon_sym_this, + ACTIONS(2062), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3536), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, + STATE(1600), 1, sym_string, - STATE(2461), 1, + STATE(1715), 1, + sym_member_expression, + STATE(1919), 1, + sym__call, + STATE(1920), 1, + sym__constructor_call, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3325), 2, + STATE(2010), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1777), 9, sym__literal, sym_integer, sym_float, @@ -138970,51 +144797,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62529] = 21, - ACTIONS(670), 1, + [64224] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3235), 2, + STATE(3138), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -139024,51 +144851,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62604] = 21, - ACTIONS(670), 1, + [64299] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3634), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3776), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2408), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(3326), 2, sym__rhs_expression, sym_call_expression, - STATE(2565), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -139078,51 +144905,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62679] = 21, - ACTIONS(1248), 1, + [64374] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3766), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3842), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2415), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, + STATE(2847), 2, sym__rhs_expression, sym_call_expression, - STATE(2557), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -139132,51 +144959,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62754] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [64449] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3926), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2408), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3143), 2, + STATE(3618), 2, sym__rhs_expression, sym_call_expression, - STATE(2591), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -139186,181 +145013,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62829] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [64524] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3762), 1, - anon_sym_this, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2444), 1, - sym__lhs_expression, - STATE(2581), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(154), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2538), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [62904] = 6, - ACTIONS(3862), 1, - anon_sym_EQ_GT, - ACTIONS(3967), 1, - anon_sym_DOT, - ACTIONS(3969), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 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, - [62949] = 4, - ACTIONS(3094), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3973), 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(3971), 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, - [62990] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1614), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2878), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(1737), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(3629), 2, sym__rhs_expression, sym_call_expression, - STATE(1748), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -139370,51 +145067,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63065] = 21, - ACTIONS(670), 1, + [64599] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(3928), 1, + ACTIONS(4432), 1, sym_identifier, - STATE(147), 1, + ACTIONS(4434), 1, + anon_sym_this, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(150), 1, + STATE(2285), 1, sym_member_expression, - STATE(912), 1, + STATE(2596), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(921), 9, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -139424,11 +145121,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63140] = 3, + [64674] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3977), 10, + ACTIONS(1878), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -139439,11 +145138,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3975), 20, + ACTIONS(1876), 18, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -139460,51 +145157,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [63179] = 21, - ACTIONS(39), 1, + [64713] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3337), 2, + STATE(3332), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -139514,7 +145211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63254] = 21, + [64788] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -139533,21 +145230,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -139555,10 +145252,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3149), 2, + STATE(3475), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -139568,7 +145265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63329] = 21, + [64863] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -139587,21 +145284,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -139609,10 +145306,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3346), 2, + STATE(3363), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -139622,51 +145319,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63404] = 21, - ACTIONS(670), 1, + [64938] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1928), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, + STATE(2267), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3055), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, + ACTIONS(1384), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -139676,51 +145371,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63479] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [65009] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3378), 2, + STATE(2023), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -139730,51 +145425,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63554] = 21, - ACTIONS(1248), 1, + [65084] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3954), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2262), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2463), 2, + STATE(3409), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -139784,49 +145479,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63629] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(764), 1, - sym_escape_sequence, - ACTIONS(3979), 1, - sym_identifier, - ACTIONS(3981), 1, + [65159] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_this, - ACTIONS(3987), 1, - aux_sym_string_token1, - ACTIONS(3989), 1, - aux_sym_string_token3, - ACTIONS(3991), 1, - sym_comment, - STATE(1827), 1, - aux_sym_member_expression_repeat1, - STATE(2196), 1, - sym__lhs_expression, - STATE(2200), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - ACTIONS(678), 2, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, aux_sym_integer_token1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 2, + ACTIONS(1338), 1, aux_sym_float_token1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(686), 2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(766), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2689), 9, + STATE(2949), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -139836,51 +145533,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63700] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [65234] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3634), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3776), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2408), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(3619), 2, sym__rhs_expression, sym_call_expression, - STATE(2565), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -139890,13 +145587,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63775] = 3, + [65309] = 6, + ACTIONS(4464), 1, + anon_sym_EQ_GT, + ACTIONS(4642), 1, + anon_sym_DOT, + ACTIONS(4644), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(836), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -139907,7 +145608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(838), 18, + ACTIONS(1778), 17, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -139923,14 +145624,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, anon_sym_DOT_DOT_DOT, - [63814] = 3, + [65354] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1176), 12, + ACTIONS(1896), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -139943,7 +145643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1174), 18, + ACTIONS(1894), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -139962,51 +145662,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [63853] = 21, - ACTIONS(670), 1, + [65393] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3358), 2, + STATE(3334), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -140016,51 +145716,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63928] = 21, - ACTIONS(1248), 1, + [65468] = 21, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(1438), 1, - anon_sym_this, - ACTIONS(2876), 1, + ACTIONS(4488), 1, sym_identifier, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + ACTIONS(4490), 1, + anon_sym_this, + STATE(337), 1, sym__call, - STATE(1465), 1, + STATE(371), 1, sym__constructor_call, - STATE(1466), 1, + STATE(2289), 1, + sym_member_expression, + STATE(2292), 1, sym_string, - STATE(2578), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, + STATE(358), 2, sym__rhs_expression, sym_call_expression, - STATE(1520), 9, + STATE(2482), 9, sym__literal, sym_integer, sym_float, @@ -140070,43 +145770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64003] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1108), 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(1106), 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, - [64042] = 21, + [65543] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140125,21 +145789,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -140147,10 +145811,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3147), 2, + STATE(3339), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -140160,7 +145824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64117] = 21, + [65618] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140179,21 +145843,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -140201,10 +145865,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3255), 2, + STATE(3352), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -140214,51 +145878,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64192] = 21, - ACTIONS(670), 1, + [65693] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(2350), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(3518), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2213), 1, + STATE(1375), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3342), 2, + STATE(220), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(1387), 9, sym__literal, sym_integer, sym_float, @@ -140268,7 +145932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64267] = 21, + [65768] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140287,21 +145951,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(1574), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2882), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1654), 1, - sym_string, - STATE(1689), 1, - sym_member_expression, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2461), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -140309,10 +145973,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1806), 2, + STATE(3514), 2, sym__rhs_expression, sym_call_expression, - STATE(1846), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -140322,51 +145986,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64342] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [65843] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3570), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65918] = 21, + ACTIONS(1352), 1, + sym_identifier, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, + anon_sym_LBRACK, + ACTIONS(1362), 1, + anon_sym_this, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, + anon_sym_null, + ACTIONS(1368), 1, + aux_sym_integer_token1, + ACTIONS(1370), 1, + aux_sym_integer_token2, + ACTIONS(1372), 1, + aux_sym_float_token1, + ACTIONS(1374), 1, + aux_sym_float_token2, + ACTIONS(1378), 1, + aux_sym_string_token1, + ACTIONS(1380), 1, + aux_sym_string_token3, + STATE(337), 1, + sym__call, + STATE(362), 1, sym_member_expression, - STATE(2213), 1, + STATE(371), 1, + sym__constructor_call, + STATE(393), 1, sym_string, - STATE(2444), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(2645), 2, + STATE(358), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(578), 9, sym__literal, sym_integer, sym_float, @@ -140376,7 +146094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64417] = 21, + [65993] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140395,21 +146113,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -140417,10 +146135,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3479), 2, + STATE(3647), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -140430,51 +146148,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64492] = 21, - ACTIONS(670), 1, + [66068] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3197), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66143] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(942), 1, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3928), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(150), 1, + STATE(2285), 1, sym_member_expression, - STATE(912), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(3593), 2, sym__rhs_expression, sym_call_expression, - STATE(921), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -140484,43 +146256,61 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64567] = 3, + [66218] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1184), 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(1182), 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, - [64606] = 21, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2962), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66293] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140539,32 +146329,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4436), 1, + sym_identifier, + ACTIONS(4438), 1, anon_sym_this, - ACTIONS(3868), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1942), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2666), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66368] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, + STATE(190), 1, + sym__call, + STATE(191), 1, sym__constructor_call, - STATE(1951), 1, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3425), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66443] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3466), 2, + STATE(3355), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -140574,7 +146472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64681] = 21, + [66518] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140593,21 +146491,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -140615,10 +146513,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3464), 2, + STATE(3650), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -140628,49 +146526,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64756] = 19, - ACTIONS(731), 1, + [66593] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3993), 1, - sym_identifier, - ACTIONS(3996), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(1776), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(727), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2721), 9, + STATE(3472), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -140680,51 +146580,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64827] = 21, - ACTIONS(670), 1, + [66668] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(812), 1, - sym_identifier, - ACTIONS(816), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(147), 1, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(150), 1, + STATE(2285), 1, sym_member_expression, - STATE(363), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(695), 2, + STATE(3017), 2, sym__rhs_expression, sym_call_expression, - STATE(548), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -140734,7 +146634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64902] = 21, + [66743] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140753,21 +146653,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(1574), 1, + ACTIONS(2448), 1, anon_sym_this, - ACTIONS(2882), 1, + ACTIONS(3532), 1, sym_identifier, - STATE(1654), 1, - sym_string, - STATE(1689), 1, + STATE(1580), 1, sym_member_expression, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1639), 1, + sym_string, + STATE(1964), 1, sym__call, - STATE(2461), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -140775,10 +146675,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1761), 2, + STATE(1775), 2, sym__rhs_expression, sym_call_expression, - STATE(1846), 9, + STATE(1749), 9, sym__literal, sym_integer, sym_float, @@ -140788,51 +146688,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64977] = 21, - ACTIONS(39), 1, + [66818] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, + STATE(190), 1, + sym__call, + STATE(191), 1, sym__constructor_call, - STATE(1951), 1, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3285), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2307), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66893] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3319), 2, + STATE(2954), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -140842,7 +146796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65052] = 21, + [66968] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140861,21 +146815,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -140883,10 +146837,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3338), 2, + STATE(3405), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -140896,43 +146850,61 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65127] = 3, + [67043] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1432), 1, + sym_identifier, + ACTIONS(1434), 1, + anon_sym_this, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(398), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(700), 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(698), 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, - [65166] = 21, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(220), 2, + sym__rhs_expression, + sym_call_expression, + STATE(582), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67118] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -140951,21 +146923,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -140973,10 +146945,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3397), 2, + STATE(3600), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -140986,7 +146958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65241] = 21, + [67193] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -141005,21 +146977,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -141027,10 +146999,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3436), 2, + STATE(3442), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -141040,11 +147012,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65316] = 3, + [67268] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1188), 12, + ACTIONS(1912), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -141057,7 +147029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1186), 18, + ACTIONS(1910), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -141076,51 +147048,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [65355] = 21, - ACTIONS(1480), 1, + [67307] = 21, + ACTIONS(2544), 1, anon_sym_LBRACE, - ACTIONS(1492), 1, + ACTIONS(2556), 1, anon_sym_LBRACK, - ACTIONS(1494), 1, + ACTIONS(2558), 1, anon_sym_this, - ACTIONS(1496), 1, + ACTIONS(2560), 1, anon_sym_new, - ACTIONS(1498), 1, + ACTIONS(2562), 1, anon_sym_null, - ACTIONS(1500), 1, + ACTIONS(2564), 1, aux_sym_integer_token1, - ACTIONS(1502), 1, + ACTIONS(2566), 1, aux_sym_integer_token2, - ACTIONS(1504), 1, + ACTIONS(2568), 1, aux_sym_float_token1, - ACTIONS(1506), 1, + ACTIONS(2570), 1, aux_sym_float_token2, - ACTIONS(1510), 1, + ACTIONS(2574), 1, aux_sym_string_token1, - ACTIONS(1512), 1, + ACTIONS(2576), 1, aux_sym_string_token3, - ACTIONS(2874), 1, + ACTIONS(3530), 1, sym_identifier, - STATE(1447), 1, + STATE(1477), 1, sym_member_expression, - STATE(1486), 1, + STATE(1483), 1, sym_string, - STATE(1529), 1, - sym__constructor_call, - STATE(1559), 1, + STATE(1507), 1, sym__call, - STATE(2436), 1, + STATE(1508), 1, + sym__constructor_call, + STATE(2670), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 2, + ACTIONS(2572), 2, anon_sym_true, anon_sym_false, - STATE(1558), 2, + STATE(1530), 2, sym__rhs_expression, sym_call_expression, - STATE(1517), 9, + STATE(1560), 9, sym__literal, sym_integer, sym_float, @@ -141130,61 +147102,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65430] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, + [67382] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3402), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65505] = 21, + ACTIONS(1720), 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(1718), 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, + [67421] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -141203,21 +147157,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(2448), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3532), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + STATE(1580), 1, sym_member_expression, - STATE(2395), 1, + STATE(1639), 1, sym_string, - STATE(2461), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -141225,10 +147179,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3269), 2, + STATE(2023), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1749), 9, sym__literal, sym_integer, sym_float, @@ -141238,11 +147192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65580] = 3, + [67496] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1078), 12, + ACTIONS(1882), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -141255,7 +147209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1076), 18, + ACTIONS(1880), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -141274,13 +147228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [65619] = 3, + [67535] = 6, + ACTIONS(4500), 1, + anon_sym_EQ_GT, + ACTIONS(4646), 1, + anon_sym_DOT, + ACTIONS(4648), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(694), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -141291,9 +147249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(692), 18, - sym__lookback_semicolon, + ACTIONS(1778), 17, anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -141307,52 +147265,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, anon_sym_DOT_DOT_DOT, - [65658] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(768), 1, - sym_escape_sequence, - ACTIONS(3979), 1, - sym_identifier, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, + [67580] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_this, - ACTIONS(3987), 1, - aux_sym_string_token1, - ACTIONS(3989), 1, - aux_sym_string_token3, - ACTIONS(3991), 1, - sym_comment, - STATE(1827), 1, - aux_sym_member_expression_repeat1, - STATE(2196), 1, - sym__lhs_expression, - STATE(2200), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - ACTIONS(678), 2, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, aux_sym_integer_token1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 2, + ACTIONS(89), 1, aux_sym_float_token1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(686), 2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(770), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2689), 9, + STATE(3497), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -141362,7 +147321,46 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65729] = 21, + [67655] = 6, + ACTIONS(4420), 1, + anon_sym_EQ_GT, + ACTIONS(4642), 1, + anon_sym_DOT, + ACTIONS(4644), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [67700] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -141381,21 +147379,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4436), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4438), 1, + anon_sym_this, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -141403,10 +147401,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3186), 2, + STATE(2023), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2666), 9, sym__literal, sym_integer, sym_float, @@ -141416,7 +147414,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65804] = 21, + [67775] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1948), 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(1946), 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, + [67814] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -141435,21 +147469,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -141457,10 +147491,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3192), 2, + STATE(3389), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -141470,51 +147504,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65879] = 21, - ACTIONS(39), 1, + [67889] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3244), 2, + STATE(3418), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -141524,11 +147558,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65954] = 3, + [67964] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1192), 12, + ACTIONS(1916), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -141541,7 +147575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1190), 18, + ACTIONS(1914), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -141560,51 +147594,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [65993] = 21, - ACTIONS(39), 1, + [68003] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(3471), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(928), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__rhs_expression, + sym_call_expression, + STATE(944), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68078] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4448), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2513), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3272), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -141614,51 +147702,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66068] = 21, - ACTIONS(39), 1, + [68153] = 21, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4398), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4406), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(337), 1, sym__call, - STATE(2312), 1, + STATE(371), 1, + sym__constructor_call, + STATE(2289), 1, sym_member_expression, - STATE(2395), 1, + STATE(2292), 1, sym_string, - STATE(2461), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(3300), 2, + STATE(589), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -141668,7 +147756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66143] = 21, + [68228] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -141687,21 +147775,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -141709,10 +147797,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3306), 2, + STATE(3493), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -141722,7 +147810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66218] = 21, + [68303] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -141741,21 +147829,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -141763,10 +147851,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3317), 2, + STATE(3427), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -141776,51 +147864,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66293] = 21, - ACTIONS(670), 1, + [68378] = 21, + ACTIONS(2544), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(2556), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(2558), 1, + anon_sym_this, + ACTIONS(2560), 1, + anon_sym_new, + ACTIONS(2562), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(2564), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(2566), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(2568), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(2570), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(2574), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(2576), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(3530), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + STATE(1477), 1, sym_member_expression, - STATE(2213), 1, + STATE(1483), 1, sym_string, - STATE(2444), 1, + STATE(1507), 1, + sym__call, + STATE(1508), 1, + sym__constructor_call, + STATE(2670), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(2572), 2, anon_sym_true, anon_sym_false, - STATE(3248), 2, + STATE(1545), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(1560), 9, sym__literal, sym_integer, sym_float, @@ -141830,7 +147918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66368] = 21, + [68453] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -141849,21 +147937,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -141871,10 +147959,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3352), 2, + STATE(3321), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -141884,51 +147972,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66443] = 21, - ACTIONS(39), 1, + [68528] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3197), 2, + STATE(3221), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -141938,7 +148026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66518] = 21, + [68603] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -141957,21 +148045,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -141979,10 +148067,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3431), 2, + STATE(3589), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -141992,49 +148080,124 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66593] = 19, - ACTIONS(670), 1, + [68678] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1968), 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(1966), 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, + [68717] = 4, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4652), 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(4650), 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, + [68758] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(1450), 1, sym_identifier, - ACTIONS(3730), 1, + ACTIONS(1454), 1, anon_sym_this, - STATE(1776), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, sym_member_expression, - STATE(2213), 1, + STATE(398), 1, sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(772), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2721), 9, + STATE(202), 2, + sym__rhs_expression, + sym_call_expression, + STATE(572), 9, sym__literal, sym_integer, sym_float, @@ -142044,7 +148207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66664] = 21, + [68833] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -142063,21 +148226,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -142085,10 +148248,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3467), 2, + STATE(3603), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -142098,7 +148261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66739] = 21, + [68908] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -142117,21 +148280,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -142139,10 +148302,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3486), 2, + STATE(3341), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -142152,11 +148315,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66814] = 3, + [68983] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(844), 12, + ACTIONS(1826), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -142169,7 +148332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(842), 18, + ACTIONS(1824), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -142188,7 +148351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [66853] = 21, + [69022] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -142207,21 +148370,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -142229,10 +148392,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3134), 2, + STATE(3639), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -142242,51 +148405,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66928] = 21, - ACTIONS(39), 1, + [69097] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4586), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2513), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3142), 2, + STATE(3690), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2624), 9, sym__literal, sym_integer, sym_float, @@ -142296,51 +148459,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67003] = 21, - ACTIONS(39), 1, + [69172] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3938), 1, + ACTIONS(2350), 1, + anon_sym_this, + ACTIONS(3518), 1, sym_identifier, - STATE(1654), 1, - sym_string, - STATE(1689), 1, - sym_member_expression, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2461), 1, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(1375), 1, + sym_string, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1806), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(1823), 9, + STATE(1387), 9, sym__literal, sym_integer, sym_float, @@ -142350,44 +148513,61 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67078] = 4, - ACTIONS(3094), 1, - anon_sym_DASH_GT, + [69247] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(4340), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(1375), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4001), 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(3999), 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, - [67119] = 21, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(220), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1391), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69322] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -142406,21 +148586,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -142428,10 +148608,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3154), 2, + STATE(3369), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -142441,7 +148621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67194] = 21, + [69397] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -142460,21 +148640,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -142482,10 +148662,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3174), 2, + STATE(3417), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -142495,7 +148675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67269] = 21, + [69472] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -142514,21 +148694,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -142536,10 +148716,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3176), 2, + STATE(3406), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -142549,51 +148729,232 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67344] = 21, - ACTIONS(39), 1, + [69547] = 21, + ACTIONS(1352), 1, + sym_identifier, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, + anon_sym_LBRACK, + ACTIONS(1362), 1, + anon_sym_this, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, + anon_sym_null, + ACTIONS(1368), 1, + aux_sym_integer_token1, + ACTIONS(1370), 1, + aux_sym_integer_token2, + ACTIONS(1372), 1, + aux_sym_float_token1, + ACTIONS(1374), 1, + aux_sym_float_token2, + ACTIONS(1378), 1, + aux_sym_string_token1, + ACTIONS(1380), 1, + aux_sym_string_token3, + STATE(337), 1, + sym__call, + STATE(362), 1, + sym_member_expression, + STATE(371), 1, + sym__constructor_call, + STATE(393), 1, + sym_string, + STATE(2585), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1376), 2, + anon_sym_true, + anon_sym_false, + STATE(385), 2, + sym__rhs_expression, + sym_call_expression, + STATE(578), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69622] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1734), 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(1732), 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, + [69661] = 4, + ACTIONS(3724), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4656), 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(4654), 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, + [69702] = 21, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, + anon_sym_LBRACK, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, + anon_sym_null, + ACTIONS(1368), 1, + aux_sym_integer_token1, + ACTIONS(1370), 1, + aux_sym_integer_token2, + ACTIONS(1372), 1, + aux_sym_float_token1, + ACTIONS(1374), 1, + aux_sym_float_token2, + ACTIONS(1378), 1, + aux_sym_string_token1, + ACTIONS(1380), 1, + aux_sym_string_token3, + ACTIONS(1458), 1, + anon_sym_this, + ACTIONS(4330), 1, + sym_identifier, + STATE(337), 1, + sym__call, + STATE(362), 1, + sym_member_expression, + STATE(371), 1, + sym__constructor_call, + STATE(1369), 1, + sym_string, + STATE(2585), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1376), 2, + anon_sym_true, + anon_sym_false, + STATE(379), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1376), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69777] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3178), 2, + STATE(3247), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -142603,11 +148964,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67419] = 3, + [69852] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1130), 12, + ACTIONS(1766), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -142620,7 +148981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1128), 18, + ACTIONS(1764), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -142639,51 +149000,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [67458] = 21, - ACTIONS(39), 1, + [69891] = 21, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(1458), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(1496), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(337), 1, sym__call, - STATE(2312), 1, + STATE(362), 1, sym_member_expression, - STATE(2395), 1, + STATE(371), 1, + sym__constructor_call, + STATE(393), 1, sym_string, - STATE(2461), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(3188), 2, + STATE(379), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(569), 9, sym__literal, sym_integer, sym_float, @@ -142693,7 +149054,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67533] = 21, + [69966] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1952), 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(1950), 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, + [70005] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -142712,21 +149109,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -142734,10 +149131,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3196), 2, + STATE(3568), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -142747,51 +149144,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67608] = 21, - ACTIONS(39), 1, + [70080] = 6, + ACTIONS(4470), 1, + anon_sym_EQ_GT, + ACTIONS(4658), 1, + anon_sym_DOT, + ACTIONS(4660), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1780), 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(1778), 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, + [70125] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3227), 2, + STATE(3104), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -142801,51 +149237,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67683] = 21, - ACTIONS(39), 1, + [70200] = 21, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2062), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4456), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4458), 1, + anon_sym_LBRACE, + STATE(1919), 1, sym__call, - STATE(2312), 1, + STATE(1920), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2488), 1, sym_string, - STATE(2461), 1, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3230), 2, + STATE(1944), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2675), 9, sym__literal, sym_integer, sym_float, @@ -142855,51 +149291,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67758] = 21, - ACTIONS(39), 1, + [70275] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1822), 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(1820), 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, + [70314] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4318), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3234), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -142909,51 +149381,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67833] = 21, - ACTIONS(39), 1, + [70389] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4452), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4454), 1, + anon_sym_this, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3203), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2403), 9, sym__literal, sym_integer, sym_float, @@ -142963,51 +149435,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67908] = 21, - ACTIONS(39), 1, + [70464] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1858), 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(1856), 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, + [70503] = 21, + ACTIONS(2046), 1, + anon_sym_LBRACE, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2060), 1, + anon_sym_this, + ACTIONS(2062), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3536), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, + STATE(1600), 1, sym_string, - STATE(2461), 1, + STATE(1715), 1, + sym_member_expression, + STATE(1919), 1, + sym__call, + STATE(1920), 1, + sym__constructor_call, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3242), 2, + STATE(1970), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1777), 9, sym__literal, sym_integer, sym_float, @@ -143017,17 +149525,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67983] = 6, - ACTIONS(3808), 1, - anon_sym_EQ_GT, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_QMARK, + [70578] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(1886), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -143038,7 +149542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 17, + ACTIONS(1884), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -143054,9 +149558,10 @@ 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, anon_sym_DOT_DOT_DOT, - [68028] = 21, + [70617] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -143075,86 +149580,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3213), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68103] = 21, - ACTIONS(670), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2880), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(1655), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(3392), 2, sym__rhs_expression, sym_call_expression, - STATE(1901), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -143164,209 +149615,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68178] = 21, - ACTIONS(670), 1, + [70692] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(812), 1, - sym_identifier, - ACTIONS(816), 1, - anon_sym_this, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, - sym_member_expression, - STATE(363), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(172), 2, - sym__rhs_expression, - sym_call_expression, - STATE(548), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68253] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(727), 1, - sym_escape_sequence, - ACTIONS(740), 1, - anon_sym_null, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4007), 1, - sym_identifier, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_this, - ACTIONS(4019), 1, - aux_sym_string_token1, - ACTIONS(4022), 1, - aux_sym_string_token3, - STATE(1827), 1, - aux_sym_member_expression_repeat1, - STATE(2196), 1, - sym__lhs_expression, - STATE(2200), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - ACTIONS(743), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(749), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(755), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(729), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2689), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68324] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2661), 2, + STATE(3630), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68399] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(666), 1, - sym_escape_sequence, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(3979), 1, - sym_identifier, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_this, - ACTIONS(3987), 1, - aux_sym_string_token1, - ACTIONS(3989), 1, - aux_sym_string_token3, - ACTIONS(3991), 1, - sym_comment, - STATE(1827), 1, - aux_sym_member_expression_repeat1, - STATE(2196), 1, - sym__lhs_expression, - STATE(2200), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - ACTIONS(678), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(682), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(668), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2689), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -143376,7 +149669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68470] = 21, + [70767] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -143395,21 +149688,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(2448), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3532), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + STATE(1580), 1, sym_member_expression, - STATE(2395), 1, + STATE(1639), 1, sym_string, - STATE(2461), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -143417,10 +149710,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3459), 2, + STATE(1942), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(1749), 9, sym__literal, sym_integer, sym_float, @@ -143430,51 +149723,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68545] = 21, - ACTIONS(1248), 1, + [70842] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1438), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(2876), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(1466), 1, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1481), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(1520), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -143484,51 +149777,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68620] = 21, - ACTIONS(39), 1, + [70917] = 21, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(3774), 1, + ACTIONS(4312), 1, anon_sym_this, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(337), 1, sym__call, - STATE(2312), 1, + STATE(371), 1, + sym__constructor_call, + STATE(2289), 1, sym_member_expression, - STATE(2395), 1, + STATE(2292), 1, sym_string, - STATE(2461), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(1761), 2, + STATE(358), 2, sym__rhs_expression, sym_call_expression, - STATE(2547), 9, + STATE(2300), 9, sym__literal, sym_integer, sym_float, @@ -143538,51 +149831,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68695] = 21, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [70992] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(820), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3652), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(248), 1, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(293), 1, + STATE(2434), 1, sym_member_expression, - STATE(1302), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(263), 2, + STATE(3573), 2, sym__rhs_expression, sym_call_expression, - STATE(1325), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -143592,47 +149885,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68770] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1136), 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(1134), 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, - [68809] = 3, + [71067] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1196), 12, + ACTIONS(1356), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -143645,7 +149902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1194), 18, + ACTIONS(1354), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -143664,51 +149921,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [68848] = 21, - ACTIONS(1248), 1, + [71106] = 21, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1362), 1, + anon_sym_this, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3738), 1, + ACTIONS(3516), 1, sym_identifier, - STATE(1464), 1, + STATE(337), 1, sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, + STATE(362), 1, sym_member_expression, - STATE(2262), 1, + STATE(371), 1, + sym__constructor_call, + STATE(1369), 1, sym_string, - STATE(2578), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, + STATE(358), 2, sym__rhs_expression, sym_call_expression, - STATE(2348), 9, + STATE(1385), 9, sym__literal, sym_integer, sym_float, @@ -143718,87 +149975,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68923] = 3, + [71181] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4408), 1, + sym_identifier, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1928), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, + sym_member_expression, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1200), 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(1198), 18, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 4, 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, - [68962] = 21, - ACTIONS(1248), 1, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(3072), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71252] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(3954), 1, + ACTIONS(3538), 1, sym_identifier, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2262), 1, + STATE(2002), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2449), 2, + STATE(220), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + STATE(1833), 9, sym__literal, sym_integer, sym_float, @@ -143808,11 +150081,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69037] = 3, + [71327] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1070), 12, + ACTIONS(1730), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -143825,7 +150098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1068), 18, + ACTIONS(1728), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -143844,51 +150117,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [69076] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [71366] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(3544), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -143898,51 +150171,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69151] = 21, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [71441] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3636), 1, - sym_identifier, - ACTIONS(3638), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(248), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2211), 1, + STATE(2434), 1, sym_member_expression, - STATE(2214), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(291), 2, + STATE(3445), 2, sym__rhs_expression, sym_call_expression, - STATE(2227), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -143952,51 +150225,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69226] = 21, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [71516] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3636), 1, - sym_identifier, - ACTIONS(3638), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(248), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2211), 1, + STATE(2434), 1, sym_member_expression, - STATE(2214), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(3476), 2, sym__rhs_expression, sym_call_expression, - STATE(2227), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144006,7 +150279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69301] = 21, + [71591] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -144025,21 +150298,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -144047,10 +150320,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3310), 2, + STATE(3644), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144060,51 +150333,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69376] = 21, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, + [71666] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3634), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3738), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1464), 1, + STATE(1964), 1, sym__call, - STATE(1465), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2262), 1, + STATE(2518), 1, sym_string, - STATE(2578), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1470), 2, + STATE(3509), 2, sym__rhs_expression, sym_call_expression, - STATE(2348), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144114,51 +150387,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69451] = 21, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [71741] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2868), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, sym_identifier, - STATE(248), 1, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(293), 1, + STATE(2434), 1, sym_member_expression, - STATE(1302), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(291), 2, + STATE(3519), 2, sym__rhs_expression, sym_call_expression, - STATE(1338), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144168,17 +150441,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69526] = 6, - ACTIONS(3808), 1, - anon_sym_EQ_GT, - ACTIONS(4025), 1, + [71816] = 6, + ACTIONS(3636), 1, anon_sym_DOT, - ACTIONS(4027), 1, + ACTIONS(3638), 1, anon_sym_QMARK, + ACTIONS(4486), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -144189,9 +150462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 17, - sym__lookback_semicolon, + ACTIONS(1778), 17, anon_sym_STAR, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144207,51 +150480,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [69571] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [71861] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2990), 2, + STATE(3414), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144261,51 +150534,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69646] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [71936] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3534), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72011] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3250), 2, + STATE(3412), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144315,51 +150642,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69721] = 21, - ACTIONS(1248), 1, + [72086] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3954), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2262), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2586), 2, + STATE(3379), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -144369,7 +150696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69796] = 21, + [72161] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -144388,21 +150715,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -144410,10 +150737,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3309), 2, + STATE(3426), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144423,51 +150750,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69871] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [72236] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3315), 2, + STATE(3632), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144477,51 +150804,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69946] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [72311] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2798), 2, + STATE(3423), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144531,51 +150858,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70021] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [72386] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2870), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(1308), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(3611), 2, sym__rhs_expression, sym_call_expression, - STATE(1355), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -144585,51 +150912,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70096] = 21, - ACTIONS(670), 1, + [72461] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(3656), 1, + ACTIONS(4432), 1, sym_identifier, - STATE(147), 1, + ACTIONS(4434), 1, + anon_sym_this, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(150), 1, + STATE(2285), 1, sym_member_expression, - STATE(1308), 1, + STATE(2596), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(1329), 9, + STATE(2689), 9, sym__literal, sym_integer, sym_float, @@ -144639,50 +150966,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70171] = 6, - ACTIONS(2996), 1, - anon_sym_DOT, - ACTIONS(2998), 1, - anon_sym_QMARK, - ACTIONS(3786), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 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, - [70216] = 3, + [72536] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1034), 12, + ACTIONS(1904), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -144695,7 +150983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1032), 18, + ACTIONS(1902), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -144714,119 +151002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [70255] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(3916), 1, - sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, - sym_member_expression, - STATE(1655), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(172), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1855), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70330] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3303), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70405] = 3, + [72575] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1112), 12, + ACTIONS(1758), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -144839,9 +151019,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1110), 18, - sym__lookback_semicolon, + ACTIONS(1756), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144858,51 +151038,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [70444] = 21, - ACTIONS(1248), 1, + [72614] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1604), 1, + ACTIONS(2350), 1, anon_sym_this, - ACTIONS(3840), 1, + ACTIONS(3453), 1, sym_identifier, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(1585), 1, + STATE(197), 1, + sym_member_expression, + STATE(928), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1481), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(1878), 9, + STATE(945), 9, sym__literal, sym_integer, sym_float, @@ -144912,11 +151092,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70519] = 3, + [72689] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1088), 12, + ACTIONS(1762), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -144929,9 +151109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1086), 18, - sym__lookback_semicolon, + ACTIONS(1760), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144948,11 +151128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [70558] = 3, + [72728] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1038), 12, + ACTIONS(1766), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -144965,9 +151145,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1036), 18, - sym__lookback_semicolon, + ACTIONS(1764), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144984,51 +151164,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [70597] = 21, - ACTIONS(702), 1, + [72767] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3718), 1, - anon_sym_this, - ACTIONS(3740), 1, + ACTIONS(1432), 1, sym_identifier, - STATE(248), 1, + ACTIONS(1434), 1, + anon_sym_this, + STATE(190), 1, sym__call, - STATE(249), 1, + STATE(191), 1, sym__constructor_call, - STATE(2211), 1, + STATE(197), 1, sym_member_expression, - STATE(2214), 1, + STATE(398), 1, sym_string, - STATE(2615), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(2242), 9, + STATE(582), 9, sym__literal, sym_integer, sym_float, @@ -145038,51 +151218,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70672] = 21, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, + [72842] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1770), 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(1768), 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, + [72881] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1438), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2876), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + STATE(1964), 1, sym__call, - STATE(1465), 1, + STATE(1968), 1, sym__constructor_call, - STATE(1466), 1, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, sym_string, - STATE(2578), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1470), 2, + STATE(3410), 2, sym__rhs_expression, sym_call_expression, - STATE(1520), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -145092,51 +151308,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70747] = 21, - ACTIONS(702), 1, + [72956] = 21, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1362), 1, + anon_sym_this, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(3816), 1, + ACTIONS(3516), 1, sym_identifier, - ACTIONS(3818), 1, - anon_sym_this, - STATE(248), 1, + STATE(337), 1, sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(2211), 1, + STATE(362), 1, sym_member_expression, - STATE(2214), 1, + STATE(371), 1, + sym__constructor_call, + STATE(1369), 1, sym_string, - STATE(2615), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(291), 2, + STATE(385), 2, sym__rhs_expression, sym_call_expression, - STATE(2425), 9, + STATE(1385), 9, sym__literal, sym_integer, sym_float, @@ -145146,51 +151362,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70822] = 21, - ACTIONS(670), 1, + [73031] = 21, + ACTIONS(1352), 1, + sym_identifier, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1362), 1, + anon_sym_this, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(780), 1, + STATE(337), 1, + sym__call, + STATE(362), 1, + sym_member_expression, + STATE(371), 1, + sym__constructor_call, + STATE(393), 1, + sym_string, + STATE(2585), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1376), 2, + anon_sym_true, + anon_sym_false, + STATE(379), 2, + sym__rhs_expression, + sym_call_expression, + STATE(578), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73106] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3120), 2, + STATE(3466), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -145200,51 +151470,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70897] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [73181] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1788), 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(1786), 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, + [73220] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1792), 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(1790), 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, + [73259] = 21, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(2062), 1, + anon_sym_new, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(4454), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4458), 1, + anon_sym_LBRACE, + ACTIONS(4522), 1, sym_identifier, - STATE(147), 1, + STATE(1919), 1, sym__call, - STATE(148), 1, + STATE(1920), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2488), 1, sym_string, - STATE(2444), 1, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3483), 2, + STATE(1944), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2644), 9, sym__literal, sym_integer, sym_float, @@ -145254,51 +151596,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70972] = 21, - ACTIONS(1248), 1, + [73334] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3954), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2262), 1, + STATE(2291), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2540), 2, + STATE(3380), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -145308,7 +151650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71047] = 21, + [73409] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -145327,21 +151669,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -145349,10 +151691,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3413), 2, + STATE(3528), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -145362,7 +151704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71122] = 21, + [73484] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -145381,21 +151723,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -145403,10 +151745,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3336), 2, + STATE(3536), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -145416,7 +151758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71197] = 21, + [73559] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -145435,21 +151777,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -145457,10 +151799,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3282), 2, + STATE(3548), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -145470,51 +151812,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71272] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [73634] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3247), 2, + STATE(3565), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -145524,51 +151866,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71347] = 21, - ACTIONS(670), 1, + [73709] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(2350), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(3518), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2213), 1, + STATE(1375), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2734), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(1387), 9, sym__literal, sym_integer, sym_float, @@ -145578,51 +151920,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71422] = 21, - ACTIONS(702), 1, + [73784] = 19, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1402), 1, anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(3816), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(3818), 1, + ACTIONS(4665), 1, anon_sym_this, - STATE(248), 1, - sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(2211), 1, + STATE(1928), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, sym_member_expression, - STATE(2214), 1, - sym_string, - STATE(2615), 1, + STATE(2267), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2425), 9, + ACTIONS(1395), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -145632,51 +151972,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71497] = 21, - ACTIONS(670), 1, + [73855] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(4408), 1, + sym_identifier, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1928), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, + sym_member_expression, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1436), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(3072), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73926] = 21, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, + anon_sym_LBRACK, + ACTIONS(1362), 1, anon_sym_this, - ACTIONS(2807), 1, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, + anon_sym_null, + ACTIONS(1368), 1, + aux_sym_integer_token1, + ACTIONS(1370), 1, + aux_sym_integer_token2, + ACTIONS(1372), 1, + aux_sym_float_token1, + ACTIONS(1374), 1, + aux_sym_float_token2, + ACTIONS(1378), 1, + aux_sym_string_token1, + ACTIONS(1380), 1, + aux_sym_string_token3, + ACTIONS(3516), 1, sym_identifier, - STATE(147), 1, + STATE(337), 1, sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(362), 1, sym_member_expression, - STATE(912), 1, + STATE(371), 1, + sym__constructor_call, + STATE(1369), 1, sym_string, - STATE(2444), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, + STATE(379), 2, sym__rhs_expression, sym_call_expression, - STATE(919), 9, + STATE(1385), 9, sym__literal, sym_integer, sym_float, @@ -145686,11 +152078,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71572] = 3, + [74001] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1152), 12, + ACTIONS(1822), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -145703,9 +152095,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1150), 18, - sym__lookback_semicolon, + ACTIONS(1820), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -145722,11 +152114,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [71611] = 3, + [74040] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, + anon_sym_null, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(89), 1, + aux_sym_float_token1, + ACTIONS(91), 1, + aux_sym_float_token2, + ACTIONS(95), 1, + aux_sym_string_token1, + ACTIONS(97), 1, + aux_sym_string_token3, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3620), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74115] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1156), 12, + ACTIONS(1826), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -145739,9 +152185,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1154), 18, - sym__lookback_semicolon, + ACTIONS(1824), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -145758,90 +152204,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [71650] = 6, - ACTIONS(3820), 1, - anon_sym_EQ_GT, - ACTIONS(4029), 1, - anon_sym_DOT, - ACTIONS(4031), 1, - anon_sym_QMARK, + [74154] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1432), 1, + sym_identifier, + ACTIONS(1434), 1, + anon_sym_this, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(398), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 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(1046), 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, - [71695] = 21, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(202), 2, + sym__rhs_expression, + sym_call_expression, + STATE(582), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74229] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2884), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1378), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(1464), 1, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3666), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74304] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4460), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(1585), 1, + STATE(2285), 1, + sym_member_expression, + STATE(2291), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1481), 2, + STATE(3597), 2, sym__rhs_expression, sym_call_expression, - STATE(1899), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -145851,7 +152366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71770] = 21, + [74379] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -145870,21 +152385,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -145892,10 +152407,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1789), 2, + STATE(3388), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -145905,11 +152420,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71845] = 3, + [74454] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1160), 12, + ACTIONS(1874), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -145922,7 +152437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1158), 18, + ACTIONS(1872), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -145941,105 +152456,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [71884] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [74493] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, - sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3103), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71959] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3407), 2, + STATE(3325), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146049,51 +152510,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72034] = 21, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, + [74568] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3954), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1464), 1, + STATE(1964), 1, sym__call, - STATE(1465), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2262), 1, + STATE(2518), 1, sym_string, - STATE(2578), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2441), 2, + STATE(3333), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146103,7 +152564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72109] = 21, + [74643] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -146122,21 +152583,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -146144,10 +152605,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3288), 2, + STATE(3413), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146157,51 +152618,159 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72184] = 21, - ACTIONS(670), 1, + [74718] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1444), 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(1446), 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, + [74757] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1838), 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(1836), 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, + [74796] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1300), 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(1302), 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, + [74835] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3284), 2, + STATE(2864), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -146211,51 +152780,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72259] = 21, - ACTIONS(670), 1, + [74910] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1854), 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(1852), 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, + [74949] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1858), 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(1856), 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, + [74988] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2688), 2, + STATE(761), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2307), 9, sym__literal, sym_integer, sym_float, @@ -146265,11 +152906,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72334] = 3, + [75063] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1228), 12, + ACTIONS(1866), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -146282,9 +152923,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1226), 18, - sym__lookback_semicolon, + ACTIONS(1864), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -146301,11 +152942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [72373] = 3, + [75102] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1044), 12, + ACTIONS(1874), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -146318,9 +152959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1042), 18, - sym__lookback_semicolon, + ACTIONS(1872), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -146337,51 +152978,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [72412] = 21, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, + [75141] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2884), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + STATE(1964), 1, sym__call, - STATE(1465), 1, + STATE(1968), 1, sym__constructor_call, - STATE(1585), 1, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, sym_string, - STATE(2578), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, + STATE(3501), 2, sym__rhs_expression, sym_call_expression, - STATE(1899), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146391,51 +153032,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72487] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [75216] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(776), 1, - sym_identifier, - ACTIONS(778), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(780), 1, - anon_sym_new, - STATE(147), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(363), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, + STATE(3571), 2, sym__rhs_expression, sym_call_expression, - STATE(564), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146445,49 +153086,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72562] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(772), 1, - sym_escape_sequence, - ACTIONS(3979), 1, - sym_identifier, - ACTIONS(3981), 1, + [75291] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(3985), 1, - anon_sym_this, - ACTIONS(3987), 1, - aux_sym_string_token1, - ACTIONS(3989), 1, - aux_sym_string_token3, - ACTIONS(3991), 1, - sym_comment, - STATE(1827), 1, - aux_sym_member_expression_repeat1, - STATE(2196), 1, - sym__lhs_expression, - STATE(2200), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - ACTIONS(678), 2, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, aux_sym_integer_token1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 2, + ACTIONS(1338), 1, aux_sym_float_token1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(686), 2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2350), 1, + anon_sym_this, + ACTIONS(3534), 1, + sym_identifier, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(197), 1, + sym_member_expression, + STATE(1688), 1, + sym_string, + STATE(2674), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(774), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2689), 9, + STATE(235), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1756), 9, sym__literal, sym_integer, sym_float, @@ -146497,7 +153140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72633] = 21, + [75366] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -146516,21 +153159,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(1574), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2882), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1654), 1, - sym_string, - STATE(1689), 1, - sym_member_expression, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2461), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -146538,10 +153181,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1789), 2, + STATE(3440), 2, sym__rhs_expression, sym_call_expression, - STATE(1846), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146551,51 +153194,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72708] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [75441] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1878), 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(1876), 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, + [75480] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(2911), 2, + STATE(3421), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146605,51 +153284,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72783] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [75555] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(147), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2444), 1, - sym__lhs_expression, - STATE(2581), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(3652), 2, sym__rhs_expression, sym_call_expression, - STATE(2538), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146659,90 +153338,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72858] = 6, - ACTIONS(3744), 1, - anon_sym_EQ_GT, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 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, - [72903] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [75630] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2880), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(1655), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, + STATE(3496), 2, sym__rhs_expression, sym_call_expression, - STATE(1901), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146752,7 +153392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72978] = 21, + [75705] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -146771,21 +153411,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -146793,10 +153433,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3494), 2, + STATE(3452), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146806,17 +153446,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73053] = 6, - ACTIONS(3820), 1, - anon_sym_EQ_GT, - ACTIONS(4033), 1, - anon_sym_DOT, - ACTIONS(4035), 1, - anon_sym_QMARK, + [75780] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(1886), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -146827,7 +153463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 17, + ACTIONS(1884), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -146843,53 +153479,106 @@ 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, anon_sym_DOT_DOT_DOT, - [73098] = 21, - ACTIONS(670), 1, + [75819] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1384), 1, + sym_escape_sequence, + ACTIONS(4668), 1, + sym_identifier, + ACTIONS(4670), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(4672), 1, + anon_sym_LBRACK, + ACTIONS(4674), 1, + anon_sym_this, + ACTIONS(4676), 1, + aux_sym_string_token1, + ACTIONS(4678), 1, + aux_sym_string_token3, + ACTIONS(4680), 1, + sym_comment, + STATE(1995), 1, + aux_sym_member_expression_repeat1, + STATE(2276), 1, + sym__lhs_expression, + STATE(2277), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(1334), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(1338), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1386), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2927), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75890] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(942), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3928), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(912), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(922), 2, + STATE(3636), 2, sym__rhs_expression, sym_call_expression, - STATE(921), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -146899,17 +153588,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73173] = 6, - ACTIONS(2988), 1, - anon_sym_DOT, - ACTIONS(2990), 1, - anon_sym_QMARK, - ACTIONS(3786), 1, - anon_sym_EQ_GT, + [75965] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1048), 10, + ACTIONS(1896), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -146920,9 +153605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1046), 17, + ACTIONS(1894), 18, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -146936,13 +153621,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, anon_sym_DOT_DOT_DOT, - [73218] = 3, + [76004] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1030), 12, + ACTIONS(1788), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -146955,7 +153641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1028), 18, + ACTIONS(1786), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -146974,61 +153660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [73257] = 21, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_new, - ACTIONS(708), 1, - anon_sym_null, - ACTIONS(710), 1, - aux_sym_integer_token1, - ACTIONS(712), 1, - aux_sym_integer_token2, - ACTIONS(714), 1, - aux_sym_float_token1, - ACTIONS(716), 1, - aux_sym_float_token2, - ACTIONS(720), 1, - aux_sym_string_token1, - ACTIONS(722), 1, - aux_sym_string_token3, - ACTIONS(820), 1, - anon_sym_this, - ACTIONS(840), 1, - sym_identifier, - STATE(248), 1, - sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(293), 1, - sym_member_expression, - STATE(366), 1, - sym_string, - STATE(2615), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(718), 2, - anon_sym_true, - anon_sym_false, - STATE(263), 2, - sym__rhs_expression, - sym_call_expression, - STATE(486), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73332] = 21, + [76043] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -147047,21 +153679,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3774), 1, + ACTIONS(4414), 1, anon_sym_this, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -147069,10 +153701,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1789), 2, + STATE(3395), 2, sym__rhs_expression, sym_call_expression, - STATE(2547), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -147082,51 +153714,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73407] = 21, - ACTIONS(39), 1, + [76118] = 21, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4318), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(190), 1, sym__call, - STATE(2312), 1, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3381), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -147136,51 +153768,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73482] = 21, - ACTIONS(670), 1, + [76193] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1356), 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(1354), 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, + [76232] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1792), 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(1790), 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, + [76271] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(2350), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(3534), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2213), 1, + STATE(1688), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3416), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(1756), 9, sym__literal, sym_integer, sym_float, @@ -147190,103 +153894,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73557] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3730), 1, - anon_sym_this, - STATE(1776), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, + [76346] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(666), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, + ACTIONS(1476), 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, - STATE(2721), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73628] = 21, - ACTIONS(670), 1, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1474), 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, + [76385] = 21, + ACTIONS(2046), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(2062), 1, + anon_sym_new, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(812), 1, - sym_identifier, - ACTIONS(816), 1, + ACTIONS(2316), 1, anon_sym_this, - STATE(147), 1, + ACTIONS(4504), 1, + sym_identifier, + STATE(1600), 1, + sym_string, + STATE(1715), 1, + sym_member_expression, + STATE(1919), 1, sym__call, - STATE(148), 1, + STATE(1920), 1, sym__constructor_call, - STATE(150), 1, - sym_member_expression, - STATE(363), 1, - sym_string, - STATE(2444), 1, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(1970), 2, sym__rhs_expression, sym_call_expression, - STATE(548), 9, + STATE(1872), 9, sym__literal, sym_integer, sym_float, @@ -147296,105 +153984,121 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73703] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, + [76460] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3382), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73778] = 21, - ACTIONS(670), 1, + ACTIONS(1920), 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(1918), 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, + [76499] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1720), 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(1718), 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, + [76538] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(776), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(778), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(780), 1, - anon_sym_new, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(1928), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, sym_member_expression, - STATE(363), 1, - sym_string, - STATE(2444), 1, + STATE(2267), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, - sym__rhs_expression, - sym_call_expression, - STATE(564), 9, + ACTIONS(1440), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -147404,11 +154108,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73853] = 3, + [76609] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1164), 12, + ACTIONS(1854), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -147421,7 +154125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1162), 18, + ACTIONS(1852), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -147440,51 +154144,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [73892] = 21, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(696), 1, - sym_identifier, - ACTIONS(702), 1, + [76648] = 5, + ACTIONS(4684), 1, + anon_sym_RPAREN, + STATE(1976), 1, + aux_sym_variable_declaration_repeat2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4687), 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(4682), 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, + [76691] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1916), 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(1914), 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, + [76730] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - STATE(248), 1, + ACTIONS(1450), 1, + sym_identifier, + ACTIONS(1454), 1, + anon_sym_this, + STATE(190), 1, sym__call, - STATE(249), 1, + STATE(191), 1, sym__constructor_call, - STATE(293), 1, + STATE(197), 1, sym_member_expression, - STATE(366), 1, + STATE(398), 1, sym_string, - STATE(2615), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(220), 2, sym__rhs_expression, sym_call_expression, - STATE(560), 9, + STATE(572), 9, sym__literal, sym_integer, sym_float, @@ -147494,51 +154272,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73967] = 21, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(696), 1, - sym_identifier, - ACTIONS(702), 1, + [76805] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - STATE(248), 1, + ACTIONS(1574), 1, + anon_sym_this, + ACTIONS(4580), 1, + sym_identifier, + STATE(190), 1, sym__call, - STATE(249), 1, + STATE(191), 1, sym__constructor_call, - STATE(293), 1, + STATE(197), 1, sym_member_expression, - STATE(366), 1, + STATE(1688), 1, sym_string, - STATE(2615), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(263), 2, + STATE(220), 2, sym__rhs_expression, sym_call_expression, - STATE(560), 9, + STATE(1898), 9, sym__literal, sym_integer, sym_float, @@ -147548,11 +154326,47 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74042] = 3, + [76880] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1870), 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(1868), 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, + [76919] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1168), 12, + ACTIONS(1920), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -147565,9 +154379,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1166), 18, - sym__lookback_semicolon, + ACTIONS(1918), 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, + [76958] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1972), 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(1970), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -147584,7 +154434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [74081] = 21, + [76997] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -147603,21 +154453,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -147625,10 +154475,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3302), 2, + STATE(3330), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -147638,7 +154488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74156] = 21, + [77072] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -147657,21 +154507,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -147679,10 +154529,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3355), 2, + STATE(3365), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -147692,51 +154542,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74231] = 21, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, + [77147] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3634), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3770), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1464), 1, + STATE(1964), 1, sym__call, - STATE(1465), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2415), 1, + STATE(2518), 1, sym_string, - STATE(2578), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1445), 2, + STATE(3516), 2, sym__rhs_expression, sym_call_expression, - STATE(2562), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -147746,51 +154596,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74306] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [77222] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3159), 2, + STATE(3523), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -147800,51 +154650,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74381] = 21, - ACTIONS(1480), 1, - anon_sym_LBRACE, - ACTIONS(1492), 1, + [77297] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1494), 1, - anon_sym_this, - ACTIONS(1496), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1498), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(1500), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(1502), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(1504), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(1506), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(1510), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(1512), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2874), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, sym_identifier, - STATE(1447), 1, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(1486), 1, + STATE(2518), 1, sym_string, - STATE(1529), 1, - sym__constructor_call, - STATE(1559), 1, - sym__call, - STATE(2436), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1515), 2, + STATE(3703), 2, sym__rhs_expression, sym_call_expression, - STATE(1517), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -147854,51 +154704,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74456] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + [77372] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1388), 1, + sym_escape_sequence, + ACTIONS(4668), 1, + sym_identifier, + ACTIONS(4670), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4672), 1, + anon_sym_LBRACK, + ACTIONS(4674), 1, anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + ACTIONS(4676), 1, + aux_sym_string_token1, + ACTIONS(4678), 1, + aux_sym_string_token3, + ACTIONS(4680), 1, + sym_comment, + STATE(1995), 1, + aux_sym_member_expression_repeat1, + STATE(2276), 1, + sym__lhs_expression, + STATE(2277), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, + ACTIONS(1334), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(1338), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3164), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + ACTIONS(1390), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -147908,11 +154756,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74531] = 3, + [77443] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1216), 12, + ACTIONS(1932), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -147925,9 +154773,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1214), 18, - sym__lookback_semicolon, + ACTIONS(1930), 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, + [77482] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1936), 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(1934), 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, + [77521] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1754), 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(1752), 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, + [77560] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1944), 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(1942), 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, + [77599] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1948), 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(1946), 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, + [77638] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1952), 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(1950), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -147944,51 +154972,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [74570] = 21, - ACTIONS(1248), 1, + [77677] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1395), 1, + sym_escape_sequence, + ACTIONS(1408), 1, + anon_sym_null, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4689), 1, + sym_identifier, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4695), 1, + anon_sym_LBRACK, + ACTIONS(4698), 1, + anon_sym_this, + ACTIONS(4701), 1, + aux_sym_string_token1, + ACTIONS(4704), 1, + aux_sym_string_token3, + STATE(1995), 1, + aux_sym_member_expression_repeat1, + STATE(2276), 1, + sym__lhs_expression, + STATE(2277), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(1411), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(1417), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(1423), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1397), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2927), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [77748] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(3770), 1, + ACTIONS(3471), 1, sym_identifier, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2415), 1, + STATE(928), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1470), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(2562), 9, + STATE(944), 9, sym__literal, sym_integer, sym_float, @@ -147998,7 +155078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74645] = 21, + [77823] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -148017,21 +155097,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -148039,10 +155119,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3368), 2, + STATE(3540), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -148052,51 +155132,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74720] = 21, - ACTIONS(670), 1, + [77898] = 21, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3764), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(1458), 1, anon_sym_this, - STATE(147), 1, + ACTIONS(1496), 1, + sym_identifier, + STATE(337), 1, sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + STATE(362), 1, sym_member_expression, - STATE(2213), 1, + STATE(371), 1, + sym__constructor_call, + STATE(393), 1, sym_string, - STATE(2444), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(589), 2, sym__rhs_expression, sym_call_expression, - STATE(2308), 9, + STATE(569), 9, sym__literal, sym_integer, sym_float, @@ -148106,7 +155186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74795] = 21, + [77973] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -148125,21 +155205,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -148147,10 +155227,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3198), 2, + STATE(3552), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -148160,51 +155240,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74870] = 21, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [78048] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(2868), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, sym_identifier, - STATE(248), 1, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(293), 1, + STATE(2434), 1, sym_member_expression, - STATE(1302), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(263), 2, + STATE(3338), 2, sym__rhs_expression, sym_call_expression, - STATE(1338), 9, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [78123] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1436), 1, + sym_escape_sequence, + ACTIONS(4668), 1, + sym_identifier, + ACTIONS(4670), 1, + anon_sym_LBRACE, + ACTIONS(4672), 1, + anon_sym_LBRACK, + ACTIONS(4674), 1, + anon_sym_this, + ACTIONS(4676), 1, + aux_sym_string_token1, + ACTIONS(4678), 1, + aux_sym_string_token3, + ACTIONS(4680), 1, + sym_comment, + STATE(1995), 1, + aux_sym_member_expression_repeat1, + STATE(2276), 1, + sym__lhs_expression, + STATE(2277), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(1334), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(1338), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1438), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -148214,51 +155346,88 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74945] = 21, - ACTIONS(1248), 1, + [78194] = 4, + ACTIONS(4707), 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(1624), 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, + [78235] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1260), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3624), 1, + ACTIONS(2350), 1, anon_sym_this, - ACTIONS(3954), 1, + ACTIONS(3453), 1, sym_identifier, - STATE(1464), 1, + STATE(190), 1, sym__call, - STATE(1465), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2262), 1, + STATE(928), 1, sym_string, - STATE(2578), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1470), 2, + STATE(235), 2, sym__rhs_expression, sym_call_expression, - STATE(2342), 9, + STATE(945), 9, sym__literal, sym_integer, sym_float, @@ -148268,7 +155437,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75020] = 21, + [78310] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1956), 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(1954), 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, + [78349] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -148287,21 +155492,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -148309,10 +155514,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3365), 2, + STATE(3633), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -148322,51 +155527,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75095] = 21, - ACTIONS(39), 1, + [78424] = 21, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4488), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4490), 1, + anon_sym_this, + STATE(337), 1, sym__call, - STATE(2312), 1, + STATE(371), 1, + sym__constructor_call, + STATE(2289), 1, sym_member_expression, - STATE(2395), 1, + STATE(2292), 1, sym_string, - STATE(2461), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(3480), 2, + STATE(385), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2482), 9, sym__literal, sym_integer, sym_float, @@ -148376,11 +155581,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75170] = 3, + [78499] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1088), 12, + ACTIONS(1804), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -148393,9 +155598,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1086), 18, + ACTIONS(1802), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_while, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -148412,105 +155617,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [75209] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_this, - ACTIONS(2807), 1, - sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, - sym_member_expression, - STATE(912), 1, - sym_string, - STATE(2444), 1, - sym__lhs_expression, + [78538] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(154), 2, - sym__rhs_expression, - sym_call_expression, - STATE(919), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75284] = 21, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(702), 1, + ACTIONS(1960), 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(1958), 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, + [78577] = 21, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(1364), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(2868), 1, + ACTIONS(1458), 1, + anon_sym_this, + ACTIONS(1496), 1, sym_identifier, - STATE(248), 1, + STATE(337), 1, sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(293), 1, + STATE(362), 1, sym_member_expression, - STATE(1302), 1, + STATE(371), 1, + sym__constructor_call, + STATE(393), 1, sym_string, - STATE(2615), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(385), 2, sym__rhs_expression, sym_call_expression, - STATE(1338), 9, + STATE(569), 9, sym__literal, sym_integer, sym_float, @@ -148520,11 +155707,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75359] = 3, + [78652] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1092), 12, + ACTIONS(1444), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -148537,9 +155724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1090), 18, - sym__lookback_semicolon, + ACTIONS(1446), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -148556,7 +155743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [75398] = 21, + [78691] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -148575,21 +155762,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -148597,10 +155784,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3253), 2, + STATE(3587), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -148610,7 +155797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75473] = 21, + [78766] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -148629,21 +155816,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -148651,10 +155838,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3223), 2, + STATE(3594), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -148664,51 +155851,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75548] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [78841] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(776), 1, - sym_identifier, - ACTIONS(778), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(780), 1, - anon_sym_new, - STATE(147), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(363), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(3601), 2, sym__rhs_expression, sym_call_expression, - STATE(564), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -148718,7 +155905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75623] = 21, + [78916] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -148737,21 +155924,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -148759,10 +155946,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3461), 2, + STATE(3474), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -148772,51 +155959,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75698] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [78991] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(2880), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(147), 1, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(150), 1, + STATE(2434), 1, sym_member_expression, - STATE(1655), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(3503), 2, sym__rhs_expression, sym_call_expression, - STATE(1901), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -148826,51 +156013,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75773] = 21, - ACTIONS(39), 1, + [79066] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1838), 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(1836), 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, + [79105] = 21, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2062), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4454), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4458), 1, + anon_sym_LBRACE, + ACTIONS(4522), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1919), 1, sym__call, - STATE(2312), 1, + STATE(1920), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2488), 1, sym_string, - STATE(2461), 1, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3163), 2, + STATE(2010), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2644), 9, sym__literal, sym_integer, sym_float, @@ -148880,51 +156103,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75848] = 21, - ACTIONS(670), 1, + [79180] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1964), 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(1962), 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, + [79219] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4448), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2285), 1, sym_member_expression, - STATE(2213), 1, + STATE(2513), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(695), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2747), 9, sym__literal, sym_integer, sym_float, @@ -148934,51 +156193,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75923] = 21, - ACTIONS(670), 1, + [79294] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1854), 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(1852), 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, + [79333] = 21, + ACTIONS(1358), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1360), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1364), 1, + anon_sym_new, + ACTIONS(1366), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1368), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1370), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1372), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1374), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1378), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1380), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4310), 1, sym_identifier, - STATE(147), 1, + ACTIONS(4312), 1, + anon_sym_this, + STATE(337), 1, sym__call, - STATE(148), 1, + STATE(371), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2289), 1, sym_member_expression, - STATE(2213), 1, + STATE(2292), 1, sym_string, - STATE(2444), 1, + STATE(2585), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1376), 2, anon_sym_true, anon_sym_false, - STATE(3357), 2, + STATE(385), 2, sym__rhs_expression, sym_call_expression, - STATE(2239), 9, + STATE(2300), 9, sym__literal, sym_integer, sym_float, @@ -148988,51 +156283,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75998] = 21, - ACTIONS(39), 1, + [79408] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1968), 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(1966), 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, + [79447] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1300), 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(1302), 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, + [79486] = 21, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2062), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2064), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2066), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2070), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2076), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2078), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4456), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + ACTIONS(4458), 1, + anon_sym_LBRACE, + STATE(1919), 1, sym__call, - STATE(2312), 1, + STATE(1920), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(2395), 1, + STATE(2488), 1, sym_string, - STATE(2461), 1, + STATE(2788), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2074), 2, anon_sym_true, anon_sym_false, - STATE(3308), 2, + STATE(2010), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2675), 9, sym__literal, sym_integer, sym_float, @@ -149042,51 +156409,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76073] = 21, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [79561] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3634), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(147), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, sym__call, - STATE(148), 1, + STATE(1968), 1, sym__constructor_call, - STATE(2207), 1, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, - STATE(2444), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, + STATE(3634), 2, sym__rhs_expression, sym_call_expression, - STATE(2223), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -149096,51 +156463,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76148] = 21, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, + [79636] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(708), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(820), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(840), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(248), 1, + STATE(1964), 1, sym__call, - STATE(249), 1, + STATE(1968), 1, sym__constructor_call, - STATE(293), 1, + STATE(2434), 1, sym_member_expression, - STATE(366), 1, + STATE(2518), 1, sym_string, - STATE(2615), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(464), 2, + STATE(3641), 2, sym__rhs_expression, sym_call_expression, - STATE(486), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -149150,7 +156517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76223] = 21, + [79711] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -149169,32 +156536,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, + sym_string, + STATE(2738), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(3648), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [79786] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1440), 1, + sym_escape_sequence, + ACTIONS(4668), 1, + sym_identifier, + ACTIONS(4670), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4672), 1, + anon_sym_LBRACK, + ACTIONS(4674), 1, anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + ACTIONS(4676), 1, + aux_sym_string_token1, + ACTIONS(4678), 1, + aux_sym_string_token3, + ACTIONS(4680), 1, + sym_comment, + STATE(1995), 1, + aux_sym_member_expression_repeat1, + STATE(2276), 1, + sym__lhs_expression, + STATE(2277), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, + ACTIONS(1334), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(1338), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3236), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + ACTIONS(1442), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -149204,11 +156623,47 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76298] = 3, + [79857] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1908), 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(1906), 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, + [79896] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1220), 12, + ACTIONS(1770), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -149221,7 +156676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1218), 18, + ACTIONS(1768), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -149240,49 +156695,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [76337] = 19, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, + [79935] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3730), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_this, - STATE(1776), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + ACTIONS(4538), 1, + sym_identifier, + STATE(1964), 1, + sym__call, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2213), 1, + STATE(2518), 1, sym_string, + STATE(2738), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(764), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2721), 9, + STATE(3484), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -149292,7 +156749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76408] = 21, + [80010] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -149311,21 +156768,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -149333,10 +156790,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3495), 2, + STATE(3353), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -149346,51 +156803,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76483] = 21, - ACTIONS(1480), 1, + [80085] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1758), 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(1756), 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, + [80124] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1734), 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(1732), 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, + [80163] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(1492), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1494), 1, - anon_sym_this, - ACTIONS(1496), 1, + ACTIONS(1330), 1, anon_sym_new, - ACTIONS(1498), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1500), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1502), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1504), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1506), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1510), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1512), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2874), 1, + ACTIONS(4452), 1, sym_identifier, - STATE(1447), 1, + ACTIONS(4454), 1, + anon_sym_this, + STATE(190), 1, + sym__call, + STATE(191), 1, + sym__constructor_call, + STATE(2285), 1, sym_member_expression, - STATE(1486), 1, + STATE(2291), 1, sym_string, - STATE(1529), 1, - sym__constructor_call, - STATE(1559), 1, - sym__call, - STATE(2436), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1516), 2, + STATE(202), 2, sym__rhs_expression, sym_call_expression, - STATE(1517), 9, + STATE(2403), 9, sym__literal, sym_integer, sym_float, @@ -149400,7 +156929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76558] = 21, + [80238] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -149419,21 +156948,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -149441,10 +156970,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3169), 2, + STATE(3561), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -149454,11 +156983,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76633] = 3, + [80313] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1058), 12, + ACTIONS(1870), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -149471,9 +157000,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1056), 18, - sym__lookback_semicolon, + ACTIONS(1868), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -149490,15 +157019,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [76672] = 5, - ACTIONS(4039), 1, - anon_sym_RPAREN, - STATE(1952), 1, - aux_sym_variable_declaration_repeat2, + [80352] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1804), 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(1802), 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, + [80391] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1882), 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(1880), 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, + [80430] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1904), 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(1902), 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, + [80469] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1912), 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(1910), 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, + [80508] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4042), 10, + ACTIONS(1964), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -149509,7 +157180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(4037), 18, + ACTIONS(1962), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -149528,51 +157199,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [76715] = 21, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(1248), 1, - anon_sym_LBRACE, - ACTIONS(1260), 1, + [80547] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1730), 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(1728), 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, + [80586] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1264), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1266), 1, + ACTIONS(67), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(87), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(91), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(95), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(4044), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + anon_sym_this, + ACTIONS(4538), 1, sym_identifier, - STATE(1378), 1, - sym_member_expression, - STATE(1464), 1, + STATE(1964), 1, sym__call, - STATE(1465), 1, + STATE(1968), 1, sym__constructor_call, - STATE(1466), 1, + STATE(2434), 1, + sym_member_expression, + STATE(2518), 1, sym_string, - STATE(2578), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(1481), 2, + STATE(3675), 2, sym__rhs_expression, sym_call_expression, - STATE(1548), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -149582,51 +157289,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76790] = 21, - ACTIONS(670), 1, + [80661] = 21, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1330), 1, + anon_sym_new, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(3926), 1, + ACTIONS(3471), 1, sym_identifier, - STATE(147), 1, + STATE(190), 1, sym__call, - STATE(148), 1, + STATE(191), 1, sym__constructor_call, - STATE(2207), 1, + STATE(197), 1, sym_member_expression, - STATE(2408), 1, + STATE(928), 1, sym_string, - STATE(2444), 1, + STATE(2674), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, + STATE(975), 2, sym__rhs_expression, sym_call_expression, - STATE(2591), 9, + STATE(944), 9, sym__literal, sym_integer, sym_float, @@ -149636,7 +157343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76865] = 21, + [80736] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, @@ -149655,21 +157362,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, + ACTIONS(1974), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4414), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, + STATE(1964), 1, sym__call, - STATE(2312), 1, + STATE(1968), 1, + sym__constructor_call, + STATE(2434), 1, sym_member_expression, - STATE(2395), 1, + STATE(2518), 1, sym_string, - STATE(2461), 1, + STATE(2738), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -149677,10 +157384,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(3366), 2, + STATE(3443), 2, sym__rhs_expression, sym_call_expression, - STATE(2484), 9, + STATE(2587), 9, sym__literal, sym_integer, sym_float, @@ -149690,51 +157397,169 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76940] = 21, - ACTIONS(39), 1, + [80811] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4712), 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(4710), 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, + [80849] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4624), 1, + anon_sym_this, + ACTIONS(4714), 1, + sym_identifier, + STATE(1003), 1, + sym_member_expression, + STATE(2050), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1436), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2832), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [80919] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4718), 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(4716), 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, + [80957] = 19, + ACTIONS(1399), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + anon_sym_LBRACK, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1411), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1414), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1417), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1420), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1426), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1429), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4720), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + ACTIONS(4723), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, + STATE(2050), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1423), 2, anon_sym_true, anon_sym_false, - STATE(3373), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + ACTIONS(1395), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2832), 9, sym__literal, sym_integer, sym_float, @@ -149744,51 +157569,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77015] = 21, - ACTIONS(39), 1, + [81027] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4624), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4714), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + STATE(1003), 1, sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, + STATE(2050), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3380), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + ACTIONS(1384), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2832), 9, sym__literal, sym_integer, sym_float, @@ -149798,51 +157620,83 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77090] = 21, - ACTIONS(670), 1, + [81097] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1892), 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(1890), 17, + 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_LT, + anon_sym_GT, + anon_sym_EQ, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [81135] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1614), 1, + ACTIONS(4624), 1, anon_sym_this, - ACTIONS(2878), 1, + ACTIONS(4714), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + STATE(1003), 1, sym_member_expression, - STATE(1737), 1, - sym_string, - STATE(2444), 1, + STATE(2050), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(187), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1748), 9, + ACTIONS(1388), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2832), 9, sym__literal, sym_integer, sym_float, @@ -149852,13 +157706,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77165] = 3, + [81205] = 6, + ACTIONS(3668), 1, + anon_sym_DOT, + ACTIONS(3670), 1, + anon_sym_QMARK, + ACTIONS(4326), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1120), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -149869,8 +157727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1118), 18, - sym__lookback_semicolon, + ACTIONS(1778), 16, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -149885,54 +157742,50 @@ 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, anon_sym_DOT_DOT_DOT, - [77204] = 21, - ACTIONS(39), 1, + [81249] = 19, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(4624), 1, anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4714), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + STATE(1003), 1, sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, + STATE(2050), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3408), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + ACTIONS(1440), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2832), 9, sym__literal, sym_integer, sym_float, @@ -149942,105 +157795,81 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77279] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, + [81319] = 5, + ACTIONS(4730), 1, + anon_sym_EQ, + STATE(204), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4726), 11, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, anon_sym_new, - ACTIONS(67), 1, anon_sym_null, - ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(91), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(4728), 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(95), 1, aux_sym_string_token1, - ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3415), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [77354] = 21, - ACTIONS(670), 1, + [81359] = 19, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_this, - ACTIONS(2870), 1, + ACTIONS(4540), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + ACTIONS(4542), 1, + anon_sym_this, + ACTIONS(4732), 1, + anon_sym_RPAREN, + STATE(1003), 1, sym_member_expression, - STATE(1308), 1, + STATE(2291), 1, sym_string, - STATE(2444), 1, + STATE(2395), 1, sym__lhs_expression, + STATE(2897), 1, + sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(172), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1355), 9, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -150050,159 +157879,178 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77429] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + [81427] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1892), 11, + anon_sym_in, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, anon_sym_null, - ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(91), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1890), 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(95), 1, aux_sym_string_token1, - ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, + [81463] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1784), 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(3128), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [77504] = 21, - ACTIONS(39), 1, + sym_identifier, + ACTIONS(1782), 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(55), 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, + [81499] = 4, + ACTIONS(4734), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1775), 12, + anon_sym_in, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, anon_sym_new, - ACTIONS(67), 1, anon_sym_null, - ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, aux_sym_float_token1, - ACTIONS(91), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1772), 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(95), 1, aux_sym_string_token1, - ACTIONS(97), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, - sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, - sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, - sym__lhs_expression, + [81537] = 4, + ACTIONS(1888), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1784), 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(3449), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [77579] = 21, - ACTIONS(1248), 1, + sym_identifier, + ACTIONS(1782), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACE, - ACTIONS(1260), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1264), 1, - anon_sym_new, - ACTIONS(1266), 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, + [81575] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1268), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1270), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1272), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1274), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1278), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1280), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3766), 1, - anon_sym_this, - ACTIONS(3842), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(1464), 1, - sym__call, - STATE(1465), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1796), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, sym_member_expression, - STATE(2415), 1, - sym_string, - STATE(2578), 1, + STATE(2267), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(1470), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2557), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -150212,49 +158060,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77654] = 19, - ACTIONS(670), 1, + [81640] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(1776), 1, + STATE(1003), 1, + sym_member_expression, + STATE(1339), 1, aux_sym_member_expression_repeat1, - STATE(2181), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(2185), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(768), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2721), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -150264,51 +158107,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77725] = 21, - ACTIONS(670), 1, + [81705] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(3624), 1, - anon_sym_this, - ACTIONS(3784), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(2207), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2444), 1, + STATE(1340), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3098), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2239), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -150318,51 +158154,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77800] = 21, - ACTIONS(674), 1, + [81770] = 18, + ACTIONS(41), 1, anon_sym_this, - ACTIONS(696), 1, - sym_identifier, - ACTIONS(702), 1, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_new, - ACTIONS(708), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(710), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(712), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(714), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(716), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(720), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(722), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - STATE(248), 1, - sym__call, - STATE(249), 1, - sym__constructor_call, - STATE(293), 1, + ACTIONS(3628), 1, + sym_identifier, + STATE(939), 1, + aux_sym_member_expression_repeat1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(366), 1, + STATE(2291), 1, sym_string, - STATE(2615), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(718), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(291), 2, - sym__rhs_expression, - sym_call_expression, - STATE(560), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -150372,51 +158201,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77875] = 21, - ACTIONS(39), 1, + [81835] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, + STATE(1341), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3472), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -150426,51 +158248,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77950] = 21, - ACTIONS(39), 1, + [81900] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(3628), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + STATE(936), 1, + aux_sym_member_expression_repeat1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(2395), 1, + STATE(2291), 1, sym_string, - STATE(2461), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3451), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -150480,51 +158295,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78025] = 21, - ACTIONS(39), 1, + [81965] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1889), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, + STATE(2267), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3389), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -150534,51 +158342,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78100] = 21, - ACTIONS(39), 1, + [82030] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1364), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - anon_sym_this, - ACTIONS(3868), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(1725), 1, - sym__constructor_call, - STATE(1951), 1, - sym__call, - STATE(2312), 1, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1929), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, sym_member_expression, - STATE(2395), 1, - sym_string, - STATE(2461), 1, + STATE(2267), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3487), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2484), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -150588,51 +158389,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78175] = 21, - ACTIONS(670), 1, + [82095] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(780), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_this, - ACTIONS(2870), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(147), 1, - sym__call, - STATE(148), 1, - sym__constructor_call, - STATE(150), 1, + ACTIONS(4414), 1, + anon_sym_this, + STATE(1974), 1, + aux_sym_member_expression_repeat1, + STATE(2260), 1, sym_member_expression, - STATE(1308), 1, - sym_string, - STATE(2444), 1, + STATE(2267), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(154), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1355), 9, + STATE(3072), 9, sym__literal, sym_integer, sym_float, @@ -150642,48 +158436,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78250] = 19, - ACTIONS(670), 1, + [82160] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3886), 1, - anon_sym_this, - ACTIONS(4046), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(969), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4736), 1, + anon_sym_new, + STATE(1003), 1, sym_member_expression, - STATE(1979), 1, - sym__lhs_expression, - STATE(1980), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2546), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(772), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2746), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -150693,121 +158483,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78320] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4050), 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(4048), 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, - [78358] = 6, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(2994), 1, - anon_sym_QMARK, - ACTIONS(3650), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1048), 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(1046), 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, - [78402] = 19, - ACTIONS(670), 1, + [82225] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3886), 1, - anon_sym_this, - ACTIONS(4046), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(969), 1, - sym_member_expression, - STATE(1979), 1, + ACTIONS(3920), 1, + anon_sym_this, + STATE(215), 1, sym__lhs_expression, - STATE(1980), 1, + STATE(1003), 1, + sym_member_expression, + STATE(1104), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(764), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2746), 9, + STATE(3007), 9, sym__literal, sym_integer, sym_float, @@ -150817,48 +158530,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78472] = 19, - ACTIONS(670), 1, + [82290] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3886), 1, - anon_sym_this, - ACTIONS(4046), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(969), 1, - sym_member_expression, - STATE(1979), 1, - sym__lhs_expression, - STATE(1980), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(924), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(666), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2746), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -150868,83 +158577,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78542] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1116), 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(1114), 17, - 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_LT, - anon_sym_GT, - anon_sym_EQ, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [78580] = 19, - ACTIONS(731), 1, + [82355] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(740), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(743), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(746), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(749), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(752), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(758), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(761), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(4052), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(4055), 1, + ACTIONS(3596), 1, anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1979), 1, - sym__lhs_expression, - STATE(1980), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(755), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(727), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2746), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -150954,48 +158624,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78650] = 19, - ACTIONS(670), 1, + [82420] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3886), 1, - anon_sym_this, - ACTIONS(4046), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(969), 1, - sym_member_expression, - STATE(1979), 1, - sym__lhs_expression, - STATE(1980), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(921), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - ACTIONS(768), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2746), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -151005,182 +158671,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78720] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4060), 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(4058), 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, - [78758] = 4, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 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, - sym_identifier, - ACTIONS(1050), 15, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + [82485] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1324), 1, 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, - [78796] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 11, - anon_sym_in, - anon_sym_this, - anon_sym_catch, - anon_sym_else, - anon_sym_while, + ACTIONS(1332), 1, anon_sym_null, + ACTIONS(1334), 1, aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1050), 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, + ACTIONS(1336), 1, aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, aux_sym_float_token2, + ACTIONS(1344), 1, aux_sym_string_token1, + ACTIONS(1346), 1, aux_sym_string_token3, - [78832] = 4, - ACTIONS(4062), 1, - anon_sym_EQ, + ACTIONS(3594), 1, + sym_identifier, + ACTIONS(3596), 1, + anon_sym_this, + STATE(918), 1, + aux_sym_member_expression_repeat1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(931), 12, - anon_sym_in, - 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, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(928), 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, - [78870] = 19, - ACTIONS(670), 1, + STATE(2845), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [82550] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3890), 1, - sym_identifier, - ACTIONS(3892), 1, + ACTIONS(1454), 1, anon_sym_this, - ACTIONS(4064), 1, - anon_sym_RPAREN, - STATE(969), 1, + ACTIONS(1552), 1, + sym_identifier, + STATE(150), 1, + aux_sym_member_expression_repeat1, + STATE(215), 1, + sym__lhs_expression, + STATE(570), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2309), 1, - sym__lhs_expression, - STATE(2854), 1, - sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2735), 9, + STATE(3097), 9, sym__literal, sym_integer, sym_float, @@ -151190,112 +158765,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78938] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1116), 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, - sym_identifier, - ACTIONS(1114), 16, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + [82615] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(1324), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, aux_sym_float_token2, + ACTIONS(1344), 1, aux_sym_string_token1, + ACTIONS(1346), 1, aux_sym_string_token3, - [78974] = 5, - ACTIONS(4070), 1, - anon_sym_EQ, - STATE(193), 1, - sym__assignmentOperator, + ACTIONS(1454), 1, + anon_sym_this, + ACTIONS(1552), 1, + sym_identifier, + STATE(153), 1, + aux_sym_member_expression_repeat1, + STATE(215), 1, + sym__lhs_expression, + STATE(570), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4066), 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, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(4068), 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, - [79014] = 18, - ACTIONS(670), 1, + STATE(3097), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [82680] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(864), 1, + ACTIONS(4540), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(4542), 1, anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(815), 1, - aux_sym_member_expression_repeat1, - STATE(850), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2395), 1, + sym__lhs_expression, + STATE(3184), 1, + sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2741), 9, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -151305,44 +158859,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79079] = 18, - ACTIONS(670), 1, + [82745] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1614), 1, + ACTIONS(1454), 1, anon_sym_this, - ACTIONS(2900), 1, + ACTIONS(1552), 1, sym_identifier, - STATE(166), 1, + STATE(152), 1, + aux_sym_member_expression_repeat1, + STATE(215), 1, sym__lhs_expression, - STATE(850), 1, + STATE(570), 1, sym_member_expression, - STATE(868), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(3097), 9, sym__literal, sym_integer, sym_float, @@ -151352,44 +158906,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79144] = 18, - ACTIONS(670), 1, + [82810] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3762), 1, - anon_sym_this, - ACTIONS(3852), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1544), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(1987), 1, + STATE(1338), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2755), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -151399,44 +158953,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79209] = 18, - ACTIONS(670), 1, + [82875] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3762), 1, - anon_sym_this, - ACTIONS(3852), 1, + ACTIONS(4668), 1, sym_identifier, - STATE(1546), 1, + ACTIONS(4674), 1, + anon_sym_this, + STATE(1988), 1, aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, + STATE(2276), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2277), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2755), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -151446,44 +159000,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79274] = 18, - ACTIONS(670), 1, + [82940] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3762), 1, - anon_sym_this, - ACTIONS(3852), 1, + ACTIONS(4668), 1, sym_identifier, - STATE(1547), 1, + ACTIONS(4674), 1, + anon_sym_this, + STATE(2001), 1, aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, + STATE(2276), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2277), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2755), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -151493,44 +159047,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79339] = 18, - ACTIONS(670), 1, + [83005] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3766), 1, - anon_sym_this, - ACTIONS(3788), 1, + ACTIONS(4668), 1, sym_identifier, - STATE(1428), 1, + ACTIONS(4674), 1, + anon_sym_this, + STATE(2028), 1, aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, + STATE(2276), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2277), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2752), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -151540,44 +159094,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79404] = 18, - ACTIONS(670), 1, + [83070] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, + ACTIONS(1454), 1, anon_sym_this, - ACTIONS(4072), 1, - anon_sym_new, - STATE(969), 1, + ACTIONS(1552), 1, + sym_identifier, + STATE(151), 1, + aux_sym_member_expression_repeat1, + STATE(215), 1, + sym__lhs_expression, + STATE(570), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2470), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3097), 9, sym__literal, sym_integer, sym_float, @@ -151587,44 +159141,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79469] = 18, - ACTIONS(670), 1, + [83135] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, + ACTIONS(2448), 1, anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1275), 1, + ACTIONS(3558), 1, + sym_identifier, + STATE(910), 1, aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3099), 9, sym__literal, sym_integer, sym_float, @@ -151634,44 +159188,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79534] = 18, - ACTIONS(670), 1, + [83200] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(2448), 1, anon_sym_this, - ACTIONS(2922), 1, + ACTIONS(3558), 1, sym_identifier, - STATE(850), 1, - sym_member_expression, - STATE(879), 1, + STATE(898), 1, aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2754), 9, + STATE(3099), 9, sym__literal, sym_integer, sym_float, @@ -151681,44 +159235,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79599] = 18, - ACTIONS(670), 1, + [83265] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3638), 1, + ACTIONS(2448), 1, anon_sym_this, - ACTIONS(3654), 1, + ACTIONS(3558), 1, sym_identifier, - STATE(1297), 1, + STATE(903), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, - sym_member_expression, - STATE(2121), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2756), 9, + STATE(3099), 9, sym__literal, sym_integer, sym_float, @@ -151728,44 +159282,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79664] = 18, - ACTIONS(670), 1, + [83330] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3638), 1, - anon_sym_this, - ACTIONS(3654), 1, + ACTIONS(4668), 1, sym_identifier, - STATE(1300), 1, + ACTIONS(4674), 1, + anon_sym_this, + STATE(1961), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, - sym_member_expression, - STATE(2121), 1, + STATE(2276), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2277), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2756), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -151775,44 +159329,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79729] = 18, - ACTIONS(670), 1, + [83395] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3638), 1, + ACTIONS(1518), 1, anon_sym_this, - ACTIONS(3654), 1, + ACTIONS(3463), 1, sym_identifier, - STATE(1301), 1, + STATE(858), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(946), 1, sym_member_expression, - STATE(2121), 1, + STATE(947), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2756), 9, + STATE(3100), 9, sym__literal, sym_integer, sym_float, @@ -151822,44 +159376,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79794] = 18, - ACTIONS(670), 1, + [83460] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3762), 1, + ACTIONS(1518), 1, anon_sym_this, - ACTIONS(3852), 1, + ACTIONS(3463), 1, sym_identifier, - STATE(1543), 1, + STATE(861), 1, aux_sym_member_expression_repeat1, - STATE(1984), 1, + STATE(946), 1, sym_member_expression, - STATE(1987), 1, + STATE(947), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2755), 9, + STATE(3100), 9, sym__literal, sym_integer, sym_float, @@ -151869,44 +159423,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79859] = 18, - ACTIONS(670), 1, + [83525] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, - sym_identifier, - ACTIONS(3718), 1, + ACTIONS(1518), 1, anon_sym_this, - STATE(1360), 1, + ACTIONS(3463), 1, + sym_identifier, + STATE(862), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(946), 1, sym_member_expression, - STATE(2121), 1, + STATE(947), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2757), 9, + STATE(3100), 9, sym__literal, sym_integer, sym_float, @@ -151916,44 +159470,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79924] = 18, - ACTIONS(670), 1, + [83590] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, - sym_identifier, - ACTIONS(3718), 1, + ACTIONS(2448), 1, anon_sym_this, - STATE(1362), 1, + ACTIONS(3558), 1, + sym_identifier, + STATE(905), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(1005), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(2121), 1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3099), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [83655] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1500), 1, + sym_identifier, + ACTIONS(2350), 1, + anon_sym_this, + STATE(215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(844), 1, + aux_sym_member_expression_repeat1, + STATE(884), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2757), 9, + STATE(3102), 9, sym__literal, sym_integer, sym_float, @@ -151963,44 +159564,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79989] = 18, - ACTIONS(670), 1, + [83720] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, + ACTIONS(1500), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(2350), 1, anon_sym_this, - STATE(1310), 1, + STATE(215), 1, + sym__lhs_expression, + STATE(841), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(884), 1, sym_member_expression, - STATE(2121), 1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3102), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [83785] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(1500), 1, + sym_identifier, + ACTIONS(2350), 1, + anon_sym_this, + STATE(215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(843), 1, + aux_sym_member_expression_repeat1, + STATE(884), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2757), 9, + STATE(3102), 9, sym__literal, sym_integer, sym_float, @@ -152010,44 +159658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80054] = 18, - ACTIONS(670), 1, + [83850] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3638), 1, + ACTIONS(1518), 1, anon_sym_this, - ACTIONS(3654), 1, + ACTIONS(3463), 1, sym_identifier, - STATE(1293), 1, + STATE(857), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(946), 1, sym_member_expression, - STATE(2121), 1, + STATE(947), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2756), 9, + STATE(3100), 9, sym__literal, sym_integer, sym_float, @@ -152057,44 +159705,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80119] = 18, - ACTIONS(670), 1, + [83915] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(1456), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(1458), 1, anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1276), 1, + STATE(123), 1, aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(367), 1, + sym_member_expression, + STATE(368), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3103), 9, sym__literal, sym_integer, sym_float, @@ -152104,44 +159752,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80184] = 18, - ACTIONS(670), 1, + [83980] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(912), 1, - anon_sym_this, - ACTIONS(2908), 1, + ACTIONS(1456), 1, sym_identifier, - STATE(872), 1, + ACTIONS(1458), 1, + anon_sym_this, + STATE(125), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, - sym__lhs_expression, - STATE(1029), 1, + STATE(367), 1, sym_member_expression, - STATE(2213), 1, + STATE(368), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(3103), 9, sym__literal, sym_integer, sym_float, @@ -152151,44 +159799,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80249] = 18, - ACTIONS(670), 1, + [84045] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(912), 1, - anon_sym_this, - ACTIONS(2908), 1, + ACTIONS(1456), 1, sym_identifier, - STATE(874), 1, + ACTIONS(1458), 1, + anon_sym_this, + STATE(126), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, - sym__lhs_expression, - STATE(1029), 1, + STATE(367), 1, sym_member_expression, - STATE(2213), 1, + STATE(368), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(3103), 9, sym__literal, sym_integer, sym_float, @@ -152198,44 +159846,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80314] = 18, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(670), 1, + [84110] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2956), 1, + ACTIONS(1500), 1, sym_identifier, - STATE(907), 1, + ACTIONS(2350), 1, + anon_sym_this, + STATE(215), 1, + sym__lhs_expression, + STATE(842), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(884), 1, sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2782), 9, + STATE(3102), 9, sym__literal, sym_integer, sym_float, @@ -152245,44 +159893,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80379] = 18, - ACTIONS(670), 1, + [84175] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(912), 1, + ACTIONS(2558), 1, anon_sym_this, - ACTIONS(2908), 1, + ACTIONS(3544), 1, sym_identifier, - STATE(875), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, - sym__lhs_expression, - STATE(1029), 1, + STATE(989), 1, sym_member_expression, - STATE(2213), 1, + STATE(998), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(3106), 9, sym__literal, sym_integer, sym_float, @@ -152292,44 +159940,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80444] = 18, - ACTIONS(670), 1, + [84240] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3716), 1, - sym_identifier, - ACTIONS(3718), 1, + ACTIONS(2558), 1, anon_sym_this, - STATE(1359), 1, + ACTIONS(3544), 1, + sym_identifier, + STATE(892), 1, aux_sym_member_expression_repeat1, - STATE(2120), 1, + STATE(989), 1, sym_member_expression, - STATE(2121), 1, + STATE(998), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2757), 9, + STATE(3106), 9, sym__literal, sym_integer, sym_float, @@ -152339,44 +159987,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80509] = 18, - ACTIONS(670), 1, + [84305] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(912), 1, + ACTIONS(2558), 1, anon_sym_this, - ACTIONS(2908), 1, + ACTIONS(3544), 1, sym_identifier, - STATE(871), 1, + STATE(894), 1, aux_sym_member_expression_repeat1, - STATE(1022), 1, - sym__lhs_expression, - STATE(1029), 1, + STATE(989), 1, sym_member_expression, - STATE(2213), 1, + STATE(998), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2758), 9, + STATE(3106), 9, sym__literal, sym_integer, sym_float, @@ -152386,44 +160034,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80574] = 18, - ACTIONS(670), 1, + [84370] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(1456), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(1458), 1, anon_sym_this, - ACTIONS(4074), 1, - anon_sym_new, - STATE(969), 1, + STATE(122), 1, + aux_sym_member_expression_repeat1, + STATE(367), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2458), 1, + STATE(368), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3103), 9, sym__literal, sym_integer, sym_float, @@ -152433,79 +160081,185 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80639] = 6, - ACTIONS(4076), 1, - anon_sym_DOT, - ACTIONS(4078), 1, - anon_sym_QMARK, + [84435] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3584), 1, + sym_identifier, + ACTIONS(3586), 1, + anon_sym_this, + STATE(916), 1, + aux_sym_member_expression_repeat1, + STATE(1083), 1, + sym__lhs_expression, + STATE(1094), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1132), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1050), 11, - sym__closing_brace_marker, - anon_sym_LPAREN, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3089), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [84500] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1324), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LT, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, aux_sym_float_token2, + ACTIONS(1344), 1, aux_sym_string_token1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1054), 11, - anon_sym_case, - anon_sym_default, + ACTIONS(3584), 1, + sym_identifier, + ACTIONS(3586), 1, anon_sym_this, - anon_sym_catch, - anon_sym_else, + STATE(919), 1, + aux_sym_member_expression_repeat1, + STATE(1083), 1, + sym__lhs_expression, + STATE(1094), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3089), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [84565] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, anon_sym_null, + ACTIONS(1334), 1, aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3584), 1, + sym_identifier, + ACTIONS(3586), 1, + anon_sym_this, + STATE(920), 1, + aux_sym_member_expression_repeat1, + STATE(1083), 1, + sym__lhs_expression, + STATE(1094), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - sym_identifier, - [80680] = 18, - ACTIONS(670), 1, + STATE(3089), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [84630] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, + ACTIONS(2558), 1, anon_sym_this, - STATE(889), 1, + ACTIONS(3544), 1, + sym_identifier, + STATE(890), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(989), 1, sym_member_expression, - STATE(967), 1, + STATE(998), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(3106), 9, sym__literal, sym_integer, sym_float, @@ -152515,44 +160269,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80745] = 18, - ACTIONS(670), 1, + [84695] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(816), 1, - anon_sym_this, - ACTIONS(876), 1, + ACTIONS(4540), 1, sym_identifier, - STATE(129), 1, + ACTIONS(4542), 1, + anon_sym_this, + STATE(1003), 1, + sym_member_expression, + STATE(1586), 1, aux_sym_member_expression_repeat1, - STATE(166), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(500), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2737), 9, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -152562,44 +160316,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80810] = 18, - ACTIONS(670), 1, + [84760] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3244), 1, + ACTIONS(4540), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(4542), 1, anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(969), 1, + STATE(1003), 1, sym_member_expression, - STATE(1038), 1, + STATE(1609), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2646), 9, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -152609,44 +160363,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80875] = 18, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(670), 1, + [84825] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - STATE(92), 1, - aux_sym_member_expression_repeat1, - STATE(295), 1, + ACTIONS(4540), 1, + sym_identifier, + ACTIONS(4542), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(296), 1, + STATE(1611), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2751), 9, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -152656,44 +160410,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80940] = 18, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(670), 1, + [84890] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2956), 1, + ACTIONS(3584), 1, sym_identifier, - STATE(904), 1, + ACTIONS(3586), 1, + anon_sym_this, + STATE(915), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, + STATE(1083), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(1094), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2782), 9, + STATE(3089), 9, sym__literal, sym_integer, sym_float, @@ -152703,44 +160457,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81005] = 18, - ACTIONS(670), 1, + [84955] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, + ACTIONS(1434), 1, anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1272), 1, + ACTIONS(1500), 1, + sym_identifier, + STATE(135), 1, aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(570), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(2982), 9, sym__literal, sym_integer, sym_float, @@ -152750,44 +160504,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81070] = 18, - ACTIONS(670), 1, + [85020] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3979), 1, - sym_identifier, - ACTIONS(3985), 1, + ACTIONS(1434), 1, anon_sym_this, - STATE(1790), 1, + ACTIONS(1500), 1, + sym_identifier, + STATE(136), 1, aux_sym_member_expression_repeat1, - STATE(2196), 1, + STATE(215), 1, sym__lhs_expression, - STATE(2200), 1, + STATE(570), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2689), 9, + STATE(2982), 9, sym__literal, sym_integer, sym_float, @@ -152797,44 +160551,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81135] = 18, - ACTIONS(670), 1, + [85085] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3979), 1, - sym_identifier, - ACTIONS(3985), 1, + ACTIONS(1434), 1, anon_sym_this, - STATE(1829), 1, + ACTIONS(1500), 1, + sym_identifier, + STATE(138), 1, aux_sym_member_expression_repeat1, - STATE(2196), 1, + STATE(215), 1, sym__lhs_expression, - STATE(2200), 1, + STATE(570), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2689), 9, + STATE(2982), 9, sym__literal, sym_integer, sym_float, @@ -152844,44 +160598,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81200] = 18, - ACTIONS(670), 1, + [85150] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3979), 1, + ACTIONS(4540), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(4542), 1, anon_sym_this, - STATE(1892), 1, + STATE(1003), 1, + sym_member_expression, + STATE(1578), 1, aux_sym_member_expression_repeat1, - STATE(2196), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(2200), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2689), 9, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -152891,44 +160645,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81265] = 18, - ACTIONS(670), 1, + [85215] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1326), 1, + anon_sym_this, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, + ACTIONS(3520), 1, sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(885), 1, + STATE(870), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(946), 1, sym_member_expression, - STATE(967), 1, + STATE(947), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(2831), 9, sym__literal, sym_integer, sym_float, @@ -152938,44 +160692,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81330] = 18, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(670), 1, + [85280] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1326), 1, + anon_sym_this, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2956), 1, + ACTIONS(3520), 1, sym_identifier, - STATE(897), 1, + STATE(873), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(946), 1, sym_member_expression, - STATE(967), 1, + STATE(947), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2782), 9, + STATE(2831), 9, sym__literal, sym_integer, sym_float, @@ -152985,44 +160739,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81395] = 18, - ACTIONS(670), 1, + [85345] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1326), 1, + anon_sym_this, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3244), 1, + ACTIONS(3520), 1, sym_identifier, - ACTIONS(3246), 1, - anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(969), 1, - sym_member_expression, - STATE(1040), 1, + STATE(874), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(946), 1, + sym_member_expression, + STATE(947), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2646), 9, + STATE(2831), 9, sym__literal, sym_integer, sym_float, @@ -153032,44 +160786,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81460] = 18, - ACTIONS(670), 1, + [85410] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, + ACTIONS(1434), 1, anon_sym_this, - STATE(887), 1, + ACTIONS(1500), 1, + sym_identifier, + STATE(134), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, - sym_member_expression, - STATE(967), 1, + STATE(215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(570), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(2982), 9, sym__literal, sym_integer, sym_float, @@ -153079,44 +160833,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81525] = 18, - ACTIONS(670), 1, + [85475] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(816), 1, + ACTIONS(4624), 1, anon_sym_this, - ACTIONS(876), 1, + ACTIONS(4714), 1, sym_identifier, - STATE(125), 1, - aux_sym_member_expression_repeat1, - STATE(166), 1, - sym__lhs_expression, - STATE(500), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2053), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2737), 9, + STATE(2832), 9, sym__literal, sym_integer, sym_float, @@ -153126,44 +160880,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81590] = 18, - ACTIONS(670), 1, + [85540] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(4624), 1, anon_sym_this, - ACTIONS(2898), 1, + ACTIONS(4714), 1, sym_identifier, - STATE(882), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(1003), 1, sym_member_expression, - STATE(967), 1, + STATE(2048), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2738), 9, + STATE(2832), 9, sym__literal, sym_integer, sym_float, @@ -153173,44 +160927,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81655] = 18, - ACTIONS(670), 1, + [85605] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(4624), 1, anon_sym_this, - ACTIONS(2898), 1, + ACTIONS(4714), 1, sym_identifier, - STATE(876), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(1003), 1, sym_member_expression, - STATE(967), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2055), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2738), 9, + STATE(2832), 9, sym__literal, sym_integer, sym_float, @@ -153220,44 +160974,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81720] = 18, - ACTIONS(670), 1, + [85670] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1326), 1, + anon_sym_this, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(2898), 1, + ACTIONS(3520), 1, sym_identifier, - STATE(877), 1, + STATE(871), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(946), 1, sym_member_expression, - STATE(967), 1, + STATE(947), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2738), 9, + STATE(2831), 9, sym__literal, sym_integer, sym_float, @@ -153267,44 +161021,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81785] = 18, - ACTIONS(670), 1, + [85735] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, + ACTIONS(1574), 1, anon_sym_this, - STATE(890), 1, + ACTIONS(3455), 1, + sym_identifier, + STATE(215), 1, + sym__lhs_expression, + STATE(848), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(884), 1, sym_member_expression, - STATE(967), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(3018), 9, sym__literal, sym_integer, sym_float, @@ -153314,44 +161068,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81850] = 18, - ACTIONS(670), 1, + [85800] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(816), 1, + ACTIONS(4438), 1, anon_sym_this, - ACTIONS(876), 1, + ACTIONS(4492), 1, sym_identifier, - STATE(126), 1, + STATE(1573), 1, aux_sym_member_expression_repeat1, - STATE(166), 1, - sym__lhs_expression, - STATE(500), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2737), 9, + STATE(2833), 9, sym__literal, sym_integer, sym_float, @@ -153361,44 +161115,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81915] = 18, - ACTIONS(670), 1, + [85865] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3979), 1, - sym_identifier, - ACTIONS(3985), 1, + ACTIONS(4438), 1, anon_sym_this, - STATE(1759), 1, + ACTIONS(4492), 1, + sym_identifier, + STATE(1509), 1, aux_sym_member_expression_repeat1, - STATE(2196), 1, - sym__lhs_expression, - STATE(2200), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2689), 9, + STATE(2833), 9, sym__literal, sym_integer, sym_float, @@ -153408,44 +161162,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81980] = 18, - ACTIONS(670), 1, + [85930] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(894), 1, + ACTIONS(4624), 1, anon_sym_this, - ACTIONS(2815), 1, + ACTIONS(4714), 1, sym_identifier, - STATE(828), 1, + STATE(1003), 1, + sym_member_expression, + STATE(2051), 1, aux_sym_member_expression_repeat1, - STATE(909), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(910), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2740), 9, + STATE(2832), 9, sym__literal, sym_integer, sym_float, @@ -153455,44 +161209,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82045] = 18, - ACTIONS(670), 1, + [85995] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(894), 1, + ACTIONS(2316), 1, anon_sym_this, - ACTIONS(2815), 1, + ACTIONS(3610), 1, sym_identifier, - STATE(826), 1, + STATE(884), 1, + sym_member_expression, + STATE(930), 1, aux_sym_member_expression_repeat1, - STATE(909), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(910), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2740), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -153502,44 +161256,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82110] = 18, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(670), 1, + [86060] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2956), 1, + ACTIONS(2316), 1, + anon_sym_this, + ACTIONS(3610), 1, sym_identifier, - STATE(906), 1, - aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(884), 1, sym_member_expression, - STATE(967), 1, + STATE(929), 1, + aux_sym_member_expression_repeat1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2782), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -153549,44 +161303,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82175] = 18, - ACTIONS(670), 1, + [86125] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(894), 1, + ACTIONS(2316), 1, anon_sym_this, - ACTIONS(2815), 1, + ACTIONS(3610), 1, sym_identifier, - STATE(825), 1, + STATE(884), 1, + sym_member_expression, + STATE(937), 1, aux_sym_member_expression_repeat1, - STATE(909), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(910), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2740), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -153596,44 +161350,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82240] = 18, - ACTIONS(670), 1, + [86190] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(4438), 1, anon_sym_this, - ACTIONS(2898), 1, + ACTIONS(4492), 1, sym_identifier, - STATE(865), 1, + STATE(1527), 1, aux_sym_member_expression_repeat1, - STATE(960), 1, + STATE(2260), 1, sym_member_expression, - STATE(967), 1, + STATE(2267), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2738), 9, + STATE(2833), 9, sym__literal, sym_integer, sym_float, @@ -153643,44 +161397,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82305] = 18, - ACTIONS(670), 1, + [86255] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(4316), 1, anon_sym_this, - ACTIONS(4080), 1, - anon_sym_new, - STATE(969), 1, + STATE(1347), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2490), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(2835), 9, sym__literal, sym_integer, sym_float, @@ -153690,44 +161444,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82370] = 18, - ACTIONS(670), 1, + [86320] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(864), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(4316), 1, anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(814), 1, + STATE(1350), 1, aux_sym_member_expression_repeat1, - STATE(850), 1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2741), 9, + STATE(2835), 9, sym__literal, sym_integer, sym_float, @@ -153737,44 +161491,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82435] = 18, - ACTIONS(670), 1, + [86385] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(864), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(1438), 1, + ACTIONS(4316), 1, anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(816), 1, + STATE(1353), 1, aux_sym_member_expression_repeat1, - STATE(850), 1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2741), 9, + STATE(2835), 9, sym__literal, sym_integer, sym_float, @@ -153784,44 +161538,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82500] = 18, - ACTIONS(670), 1, + [86450] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, + ACTIONS(2316), 1, anon_sym_this, - ACTIONS(4082), 1, - anon_sym_new, - STATE(969), 1, + ACTIONS(3610), 1, + sym_identifier, + STATE(884), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2494), 1, + STATE(940), 1, + aux_sym_member_expression_repeat1, + STATE(1040), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(2834), 9, sym__literal, sym_integer, sym_float, @@ -153831,44 +161585,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82565] = 18, - ACTIONS(670), 1, + [86515] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, + ACTIONS(4490), 1, anon_sym_this, - ACTIONS(4084), 1, - anon_sym_new, - STATE(969), 1, + ACTIONS(4604), 1, + sym_identifier, + STATE(1679), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2502), 1, + STATE(2215), 1, sym__lhs_expression, + STATE(2291), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(2836), 9, sym__literal, sym_integer, sym_float, @@ -153878,44 +161632,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82630] = 18, - ACTIONS(670), 1, + [86580] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(894), 1, + ACTIONS(4490), 1, anon_sym_this, - ACTIONS(2815), 1, + ACTIONS(4604), 1, sym_identifier, - STATE(827), 1, + STATE(1689), 1, aux_sym_member_expression_repeat1, - STATE(909), 1, - sym__lhs_expression, - STATE(910), 1, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2740), 9, + STATE(2836), 9, sym__literal, sym_integer, sym_float, @@ -153925,44 +161679,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82695] = 18, - ACTIONS(670), 1, + [86645] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(818), 1, - sym_identifier, - ACTIONS(820), 1, + ACTIONS(4490), 1, anon_sym_this, - STATE(102), 1, + ACTIONS(4604), 1, + sym_identifier, + STATE(1697), 1, aux_sym_member_expression_repeat1, - STATE(295), 1, + STATE(2214), 1, sym_member_expression, - STATE(296), 1, + STATE(2215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2742), 9, + STATE(2836), 9, sym__literal, sym_integer, sym_float, @@ -153972,44 +161726,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82760] = 18, - ACTIONS(670), 1, + [86710] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(818), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(820), 1, + ACTIONS(4316), 1, anon_sym_this, - STATE(104), 1, + STATE(1352), 1, aux_sym_member_expression_repeat1, - STATE(295), 1, - sym_member_expression, - STATE(296), 1, + STATE(2058), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2742), 9, + STATE(2835), 9, sym__literal, sym_integer, sym_float, @@ -154019,44 +161773,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82825] = 18, - ACTIONS(670), 1, + [86775] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(818), 1, - sym_identifier, - ACTIONS(820), 1, + ACTIONS(1362), 1, anon_sym_this, - STATE(105), 1, + ACTIONS(1382), 1, + sym_identifier, + STATE(113), 1, aux_sym_member_expression_repeat1, - STATE(295), 1, + STATE(367), 1, sym_member_expression, - STATE(296), 1, + STATE(368), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2742), 9, + STATE(2837), 9, sym__literal, sym_integer, sym_float, @@ -154066,44 +161820,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82890] = 18, - ACTIONS(670), 1, + [86840] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(816), 1, + ACTIONS(1362), 1, anon_sym_this, - ACTIONS(876), 1, + ACTIONS(1382), 1, sym_identifier, - STATE(128), 1, + STATE(117), 1, aux_sym_member_expression_repeat1, - STATE(166), 1, - sym__lhs_expression, - STATE(500), 1, + STATE(367), 1, sym_member_expression, - STATE(2213), 1, + STATE(368), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2737), 9, + STATE(2837), 9, sym__literal, sym_integer, sym_float, @@ -154113,44 +161867,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82955] = 18, - ACTIONS(670), 1, + [86905] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(864), 1, - sym_identifier, - ACTIONS(1438), 1, + ACTIONS(1362), 1, anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(813), 1, + ACTIONS(1382), 1, + sym_identifier, + STATE(118), 1, aux_sym_member_expression_repeat1, - STATE(850), 1, + STATE(367), 1, sym_member_expression, - STATE(2213), 1, + STATE(368), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2741), 9, + STATE(2837), 9, sym__literal, sym_integer, sym_float, @@ -154160,44 +161914,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83020] = 18, - ACTIONS(670), 1, + [86970] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1494), 1, + ACTIONS(4490), 1, anon_sym_this, - ACTIONS(2886), 1, + ACTIONS(4604), 1, sym_identifier, - STATE(862), 1, + STATE(1676), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, - sym__lhs_expression, - STATE(951), 1, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(2836), 9, sym__literal, sym_integer, sym_float, @@ -154207,44 +161961,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83085] = 18, - ACTIONS(670), 1, + [87035] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1494), 1, + ACTIONS(4454), 1, anon_sym_this, - ACTIONS(2886), 1, + ACTIONS(4478), 1, sym_identifier, - STATE(859), 1, + STATE(1489), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(2058), 1, sym__lhs_expression, - STATE(951), 1, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(2838), 9, sym__literal, sym_integer, sym_float, @@ -154254,44 +162008,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83150] = 18, - ACTIONS(670), 1, + [87100] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3766), 1, + ACTIONS(4454), 1, anon_sym_this, - ACTIONS(3788), 1, + ACTIONS(4478), 1, sym_identifier, - STATE(1425), 1, + STATE(1491), 1, aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, + STATE(2058), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2752), 9, + STATE(2838), 9, sym__literal, sym_integer, sym_float, @@ -154301,44 +162055,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83215] = 18, - ACTIONS(670), 1, + [87165] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1614), 1, + ACTIONS(4454), 1, anon_sym_this, - ACTIONS(2900), 1, + ACTIONS(4478), 1, sym_identifier, - STATE(166), 1, + STATE(1492), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, sym__lhs_expression, - STATE(850), 1, + STATE(2059), 1, sym_member_expression, - STATE(866), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(2838), 9, sym__literal, sym_integer, sym_float, @@ -154348,44 +162102,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83280] = 18, - ACTIONS(670), 1, + [87230] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(818), 1, - sym_identifier, - ACTIONS(820), 1, + ACTIONS(1362), 1, anon_sym_this, - STATE(101), 1, + ACTIONS(1382), 1, + sym_identifier, + STATE(112), 1, aux_sym_member_expression_repeat1, - STATE(295), 1, + STATE(367), 1, sym_member_expression, - STATE(296), 1, + STATE(368), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2742), 9, + STATE(2837), 9, sym__literal, sym_integer, sym_float, @@ -154395,44 +162149,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83345] = 18, - ACTIONS(670), 1, + [87295] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1614), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(2900), 1, + ACTIONS(3554), 1, sym_identifier, - STATE(166), 1, + STATE(215), 1, sym__lhs_expression, - STATE(850), 1, + STATE(884), 1, sym_member_expression, - STATE(869), 1, + STATE(901), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(2839), 9, sym__literal, sym_integer, sym_float, @@ -154442,44 +162196,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83410] = 18, - ACTIONS(670), 1, + [87360] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(942), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(2799), 1, + ACTIONS(3554), 1, sym_identifier, - STATE(166), 1, + STATE(215), 1, sym__lhs_expression, - STATE(817), 1, - aux_sym_member_expression_repeat1, - STATE(850), 1, + STATE(884), 1, sym_member_expression, - STATE(2213), 1, + STATE(907), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2703), 9, + STATE(2839), 9, sym__literal, sym_integer, sym_float, @@ -154489,44 +162243,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83475] = 18, - ACTIONS(670), 1, + [87425] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2038), 1, anon_sym_this, - STATE(892), 1, - aux_sym_member_expression_repeat1, - STATE(1044), 1, + ACTIONS(3554), 1, + sym_identifier, + STATE(215), 1, sym__lhs_expression, - STATE(1061), 1, + STATE(884), 1, sym_member_expression, - STATE(2213), 1, + STATE(896), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2733), 9, + STATE(2839), 9, sym__literal, sym_integer, sym_float, @@ -154536,44 +162290,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83540] = 18, - ACTIONS(670), 1, + [87490] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4454), 1, anon_sym_this, - STATE(894), 1, + ACTIONS(4478), 1, + sym_identifier, + STATE(1488), 1, aux_sym_member_expression_repeat1, - STATE(1044), 1, + STATE(2058), 1, sym__lhs_expression, - STATE(1061), 1, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2733), 9, + STATE(2838), 9, sym__literal, sym_integer, sym_float, @@ -154583,44 +162337,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83605] = 18, - ACTIONS(670), 1, + [87555] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1614), 1, + ACTIONS(2060), 1, anon_sym_this, - ACTIONS(2900), 1, + ACTIONS(3552), 1, sym_identifier, - STATE(166), 1, - sym__lhs_expression, - STATE(850), 1, + STATE(884), 1, sym_member_expression, - STATE(870), 1, + STATE(895), 1, aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(1040), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2753), 9, + STATE(2840), 9, sym__literal, sym_integer, sym_float, @@ -154630,44 +162384,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83670] = 18, - ACTIONS(670), 1, + [87620] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3766), 1, + ACTIONS(2060), 1, anon_sym_this, - ACTIONS(3788), 1, + ACTIONS(3552), 1, sym_identifier, - STATE(1424), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + STATE(884), 1, sym_member_expression, - STATE(1987), 1, + STATE(912), 1, + aux_sym_member_expression_repeat1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2752), 9, + STATE(2840), 9, sym__literal, sym_integer, sym_float, @@ -154677,44 +162431,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83735] = 18, - ACTIONS(670), 1, + [87685] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3766), 1, + ACTIONS(2060), 1, anon_sym_this, - ACTIONS(3788), 1, + ACTIONS(3552), 1, sym_identifier, - STATE(1427), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + STATE(884), 1, sym_member_expression, - STATE(1987), 1, + STATE(913), 1, + aux_sym_member_expression_repeat1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2752), 9, + STATE(2840), 9, sym__literal, sym_integer, sym_float, @@ -154724,44 +162478,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83800] = 18, - ACTIONS(670), 1, + [87750] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, + ACTIONS(2038), 1, anon_sym_this, - ACTIONS(2922), 1, + ACTIONS(3554), 1, sym_identifier, - STATE(850), 1, + STATE(215), 1, + sym__lhs_expression, + STATE(884), 1, sym_member_expression, - STATE(880), 1, + STATE(900), 1, aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2754), 9, + STATE(2839), 9, sym__literal, sym_integer, sym_float, @@ -154771,44 +162525,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83865] = 18, - ACTIONS(670), 1, + [87815] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4434), 1, anon_sym_this, - STATE(886), 1, + ACTIONS(4524), 1, + sym_identifier, + STATE(1564), 1, aux_sym_member_expression_repeat1, - STATE(1044), 1, + STATE(2058), 1, sym__lhs_expression, - STATE(1061), 1, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2733), 9, + STATE(2841), 9, sym__literal, sym_integer, sym_float, @@ -154818,44 +162572,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83930] = 18, - ACTIONS(670), 1, + [87880] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1494), 1, + ACTIONS(4434), 1, anon_sym_this, - ACTIONS(2886), 1, + ACTIONS(4524), 1, sym_identifier, - STATE(864), 1, + STATE(1567), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(2058), 1, sym__lhs_expression, - STATE(951), 1, + STATE(2059), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(2841), 9, sym__literal, sym_integer, sym_float, @@ -154865,44 +162619,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83995] = 18, - ACTIONS(670), 1, + [87945] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3890), 1, + ACTIONS(4434), 1, + anon_sym_this, + ACTIONS(4524), 1, sym_identifier, - ACTIONS(3892), 1, + STATE(1568), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, + sym__lhs_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2841), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [88010] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(2060), 1, anon_sym_this, - STATE(969), 1, + ACTIONS(3552), 1, + sym_identifier, + STATE(884), 1, sym_member_expression, - STATE(1611), 1, + STATE(909), 1, aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(1040), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2735), 9, + STATE(2840), 9, sym__literal, sym_integer, sym_float, @@ -154912,44 +162713,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84060] = 18, - ACTIONS(670), 1, + [88075] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3890), 1, - sym_identifier, - ACTIONS(3892), 1, + ACTIONS(4312), 1, anon_sym_this, - STATE(969), 1, + ACTIONS(4332), 1, + sym_identifier, + STATE(1363), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, sym_member_expression, - STATE(1615), 1, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2842), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [88140] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4312), 1, + anon_sym_this, + ACTIONS(4332), 1, + sym_identifier, + STATE(1366), 1, aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2735), 9, + STATE(2842), 9, sym__literal, sym_integer, sym_float, @@ -154959,44 +162807,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84125] = 18, - ACTIONS(670), 1, + [88205] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3244), 1, + ACTIONS(4312), 1, + anon_sym_this, + ACTIONS(4332), 1, sym_identifier, - ACTIONS(3246), 1, + STATE(1368), 1, + aux_sym_member_expression_repeat1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2842), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [88270] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4434), 1, anon_sym_this, - STATE(166), 1, + ACTIONS(4524), 1, + sym_identifier, + STATE(1563), 1, + aux_sym_member_expression_repeat1, + STATE(2058), 1, sym__lhs_expression, - STATE(969), 1, + STATE(2059), 1, sym_member_expression, - STATE(1058), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2646), 9, + STATE(2841), 9, sym__literal, sym_integer, sym_float, @@ -155006,44 +162901,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84190] = 18, - ACTIONS(670), 1, + [88335] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3890), 1, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(3892), 1, + ACTIONS(4398), 1, anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1629), 1, + STATE(1386), 1, aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2735), 9, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -155053,44 +162948,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84255] = 18, - ACTIONS(670), 1, + [88400] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, - anon_sym_this, - ACTIONS(2922), 1, + ACTIONS(4396), 1, sym_identifier, - STATE(850), 1, - sym_member_expression, - STATE(883), 1, + ACTIONS(4398), 1, + anon_sym_this, + STATE(1389), 1, aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2754), 9, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -155100,44 +162995,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84320] = 18, - ACTIONS(670), 1, + [88465] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2934), 1, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(4398), 1, anon_sym_this, - STATE(891), 1, + STATE(1390), 1, aux_sym_member_expression_repeat1, - STATE(1044), 1, - sym__lhs_expression, - STATE(1061), 1, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2733), 9, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -155147,44 +163042,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84385] = 18, - ACTIONS(670), 1, + [88530] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(778), 1, + ACTIONS(4312), 1, anon_sym_this, - ACTIONS(864), 1, + ACTIONS(4332), 1, sym_identifier, - STATE(117), 1, + STATE(1365), 1, aux_sym_member_expression_repeat1, - STATE(166), 1, - sym__lhs_expression, - STATE(500), 1, + STATE(2214), 1, sym_member_expression, - STATE(2213), 1, + STATE(2215), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2744), 9, + STATE(2842), 9, sym__literal, sym_integer, sym_float, @@ -155194,44 +163089,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84450] = 18, - ACTIONS(670), 1, + [88595] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(778), 1, + ACTIONS(1536), 1, anon_sym_this, - ACTIONS(864), 1, + ACTIONS(3556), 1, sym_identifier, - STATE(116), 1, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(166), 1, + STATE(1021), 1, sym__lhs_expression, - STATE(500), 1, + STATE(1038), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2744), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -155241,44 +163136,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84515] = 18, - ACTIONS(670), 1, + [88660] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(778), 1, + ACTIONS(1536), 1, anon_sym_this, - ACTIONS(864), 1, + ACTIONS(3556), 1, sym_identifier, - STATE(118), 1, + STATE(902), 1, aux_sym_member_expression_repeat1, - STATE(166), 1, + STATE(1021), 1, sym__lhs_expression, - STATE(500), 1, + STATE(1038), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2744), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -155288,44 +163183,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84580] = 18, - ACTIONS(670), 1, + [88725] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3730), 1, + ACTIONS(1536), 1, anon_sym_this, - STATE(1947), 1, + ACTIONS(3556), 1, + sym_identifier, + STATE(904), 1, aux_sym_member_expression_repeat1, - STATE(2181), 1, + STATE(1021), 1, sym__lhs_expression, - STATE(2185), 1, + STATE(1038), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2721), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -155335,44 +163230,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84645] = 18, - ACTIONS(670), 1, + [88790] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3890), 1, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(3892), 1, + ACTIONS(4398), 1, anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(1607), 1, + STATE(1381), 1, aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(2214), 1, + sym_member_expression, + STATE(2215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2735), 9, + STATE(2843), 9, sym__literal, sym_integer, sym_float, @@ -155382,44 +163277,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84710] = 18, - ACTIONS(670), 1, + [88855] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(1536), 1, + anon_sym_this, + ACTIONS(3556), 1, sym_identifier, - ACTIONS(3730), 1, + STATE(914), 1, + aux_sym_member_expression_repeat1, + STATE(1021), 1, + sym__lhs_expression, + STATE(1038), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 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, + [88920] = 18, + ACTIONS(41), 1, anon_sym_this, - STATE(1966), 1, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3628), 1, + sym_identifier, + STATE(935), 1, aux_sym_member_expression_repeat1, - STATE(2181), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(2185), 1, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2721), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -155429,44 +163371,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84775] = 18, - ACTIONS(670), 1, + [88985] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(800), 1, + ACTIONS(3918), 1, + sym_identifier, + ACTIONS(3920), 1, + anon_sym_this, + STATE(215), 1, + sym__lhs_expression, + STATE(1003), 1, + sym_member_expression, + STATE(1113), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(3007), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [89050] = 18, + ACTIONS(41), 1, anon_sym_this, - ACTIONS(2860), 1, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3628), 1, sym_identifier, - STATE(834), 1, + STATE(941), 1, aux_sym_member_expression_repeat1, - STATE(909), 1, + STATE(1005), 1, sym__lhs_expression, - STATE(910), 1, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2745), 9, + STATE(2910), 9, sym__literal, sym_integer, sym_float, @@ -155476,44 +163465,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84840] = 18, - ACTIONS(670), 1, + [89115] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(800), 1, - anon_sym_this, - ACTIONS(2860), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(836), 1, - aux_sym_member_expression_repeat1, - STATE(909), 1, - sym__lhs_expression, - STATE(910), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4738), 1, + anon_sym_new, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2629), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2745), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -155523,44 +163512,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84905] = 18, - ACTIONS(670), 1, + [89180] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(2799), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(166), 1, + ACTIONS(3920), 1, + anon_sym_this, + STATE(215), 1, sym__lhs_expression, - STATE(818), 1, - aux_sym_member_expression_repeat1, - STATE(850), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(1097), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2703), 9, + STATE(3007), 9, sym__literal, sym_integer, sym_float, @@ -155570,44 +163559,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84970] = 18, - ACTIONS(670), 1, + [89245] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(1907), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + ACTIONS(4740), 1, + anon_sym_new, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2576), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2721), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -155617,44 +163606,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85035] = 18, - ACTIONS(670), 1, + [89310] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(800), 1, - anon_sym_this, - ACTIONS(2860), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(837), 1, - aux_sym_member_expression_repeat1, - STATE(909), 1, + ACTIONS(3920), 1, + anon_sym_this, + STATE(215), 1, sym__lhs_expression, - STATE(910), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(1107), 1, + aux_sym_member_expression_repeat1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2745), 9, + STATE(3007), 9, sym__literal, sym_integer, sym_float, @@ -155664,44 +163653,79 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85100] = 18, - ACTIONS(670), 1, + [89375] = 6, + ACTIONS(4742), 1, + anon_sym_DOT, + ACTIONS(4744), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1888), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1782), 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(1784), 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, + [89416] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(778), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(864), 1, + ACTIONS(3455), 1, sym_identifier, - STATE(114), 1, - aux_sym_member_expression_repeat1, - STATE(166), 1, + STATE(215), 1, sym__lhs_expression, - STATE(500), 1, + STATE(849), 1, + aux_sym_member_expression_repeat1, + STATE(884), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2744), 9, + STATE(3018), 9, sym__literal, sym_integer, sym_float, @@ -155711,44 +163735,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85165] = 18, - ACTIONS(670), 1, + [89481] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3886), 1, - anon_sym_this, - ACTIONS(4046), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(969), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4746), 1, + anon_sym_new, + STATE(1003), 1, sym_member_expression, - STATE(1979), 1, - sym__lhs_expression, - STATE(1981), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2592), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2746), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -155758,44 +163782,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85230] = 18, - ACTIONS(670), 1, + [89546] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1686), 1, - anon_sym_this, - ACTIONS(2922), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(850), 1, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4748), 1, + anon_sym_new, + STATE(1003), 1, sym_member_expression, - STATE(884), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(2291), 1, + sym_string, + STATE(2602), 1, sym__lhs_expression, - STATE(2213), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2860), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [89611] = 18, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_this, + ACTIONS(4750), 1, + anon_sym_new, + STATE(1003), 1, + sym_member_expression, + STATE(2291), 1, sym_string, + STATE(2608), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2754), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -155805,44 +163876,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85295] = 18, - ACTIONS(670), 1, + [89676] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3886), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(4046), 1, + ACTIONS(3455), 1, sym_identifier, - STATE(969), 1, - sym_member_expression, - STATE(1978), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(852), 1, + aux_sym_member_expression_repeat1, + STATE(884), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2746), 9, + STATE(3018), 9, sym__literal, sym_integer, sym_float, @@ -155852,44 +163923,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85360] = 18, - ACTIONS(670), 1, + [89741] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3886), 1, + ACTIONS(1574), 1, anon_sym_this, - ACTIONS(4046), 1, + ACTIONS(3455), 1, sym_identifier, - STATE(969), 1, - sym_member_expression, - STATE(1974), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(215), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(851), 1, + aux_sym_member_expression_repeat1, + STATE(884), 1, + sym_member_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2746), 9, + STATE(3018), 9, sym__literal, sym_integer, sym_float, @@ -155899,44 +163970,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85425] = 18, - ACTIONS(670), 1, + [89806] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(800), 1, + ACTIONS(4438), 1, anon_sym_this, - ACTIONS(2860), 1, + ACTIONS(4492), 1, sym_identifier, - STATE(840), 1, + STATE(1529), 1, aux_sym_member_expression_repeat1, - STATE(909), 1, - sym__lhs_expression, - STATE(910), 1, + STATE(2260), 1, sym_member_expression, - STATE(2213), 1, + STATE(2267), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2745), 9, + STATE(2833), 9, sym__literal, sym_integer, sym_float, @@ -155946,44 +164017,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85490] = 18, - ACTIONS(670), 1, + [89871] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3724), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3730), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(1803), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2851), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2721), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -155993,44 +164062,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85555] = 18, - ACTIONS(670), 1, + [89933] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3774), 1, - anon_sym_this, - ACTIONS(3844), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(1536), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + ACTIONS(3920), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(3293), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2747), 9, + STATE(3007), 9, sym__literal, sym_integer, sym_float, @@ -156040,44 +164107,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85620] = 18, - ACTIONS(670), 1, + [89995] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3774), 1, - anon_sym_this, - ACTIONS(3844), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1538), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2883), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2747), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156087,44 +164152,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85685] = 18, - ACTIONS(670), 1, + [90057] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3244), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(166), 1, - sym__lhs_expression, - STATE(969), 1, + STATE(1003), 1, sym_member_expression, - STATE(1052), 1, - aux_sym_member_expression_repeat1, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2346), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2646), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156134,44 +164197,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85750] = 18, - ACTIONS(670), 1, + [90119] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3774), 1, - anon_sym_this, - ACTIONS(3844), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1540), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2407), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2747), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156181,44 +164242,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85815] = 18, - ACTIONS(670), 1, + [90181] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(2799), 1, + ACTIONS(3918), 1, sym_identifier, - STATE(166), 1, - sym__lhs_expression, - STATE(820), 1, - aux_sym_member_expression_repeat1, - STATE(850), 1, + ACTIONS(3920), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(3142), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2703), 9, + STATE(3007), 9, sym__literal, sym_integer, sym_float, @@ -156228,44 +164287,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85880] = 18, - ACTIONS(670), 1, + [90243] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3886), 1, - anon_sym_this, - ACTIONS(4046), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(969), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(1977), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, + STATE(1037), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2746), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -156275,44 +164332,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85945] = 18, - ACTIONS(670), 1, + [90305] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1604), 1, + ACTIONS(4674), 1, anon_sym_this, - ACTIONS(2954), 1, + ACTIONS(4752), 1, sym_identifier, - STATE(850), 1, + STATE(2291), 1, + sym_string, + STATE(2474), 1, sym_member_expression, - STATE(899), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(2522), 1, sym__lhs_expression, - STATE(2213), 1, - sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2748), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -156322,44 +164377,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86010] = 18, - ACTIONS(670), 1, + [90367] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1604), 1, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(2954), 1, + STATE(1003), 1, + sym_member_expression, + STATE(2291), 1, + sym_string, + STATE(2355), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1342), 2, + anon_sym_true, + anon_sym_false, + STATE(2860), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [90429] = 17, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_null, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(1338), 1, + aux_sym_float_token1, + ACTIONS(1340), 1, + aux_sym_float_token2, + ACTIONS(1344), 1, + aux_sym_string_token1, + ACTIONS(1346), 1, + aux_sym_string_token3, + ACTIONS(3594), 1, sym_identifier, - STATE(850), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(902), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, + STATE(1070), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2748), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -156369,44 +164467,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86075] = 18, - ACTIONS(670), 1, + [90491] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1604), 1, - anon_sym_this, - ACTIONS(2954), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(850), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(903), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2418), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2748), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156416,44 +164512,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86140] = 18, - ACTIONS(670), 1, + [90553] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3774), 1, - anon_sym_this, - ACTIONS(3844), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1534), 1, - aux_sym_member_expression_repeat1, - STATE(2181), 1, - sym__lhs_expression, - STATE(2185), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2361), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2747), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156463,44 +164557,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86205] = 18, - ACTIONS(670), 1, + [90615] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(942), 1, - anon_sym_this, - ACTIONS(2799), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(166), 1, - sym__lhs_expression, - STATE(819), 1, - aux_sym_member_expression_repeat1, - STATE(850), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(2213), 1, + STATE(1013), 1, + sym__lhs_expression, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2703), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -156510,44 +164602,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86270] = 18, - ACTIONS(670), 1, + [90677] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3640), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(1283), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(1987), 1, + STATE(1061), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2749), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -156557,44 +164647,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86335] = 18, - ACTIONS(670), 1, + [90739] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3640), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1285), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2325), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2749), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156604,44 +164692,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86400] = 18, - ACTIONS(670), 1, + [90801] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - ACTIONS(4086), 1, - anon_sym_new, - STATE(969), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2594), 1, + STATE(2863), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156651,44 +164737,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86465] = 18, - ACTIONS(670), 1, + [90863] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(969), 1, + STATE(1003), 1, sym_member_expression, - STATE(1273), 1, - aux_sym_member_expression_repeat1, - STATE(1979), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2347), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156698,44 +164782,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86530] = 18, - ACTIONS(670), 1, + [90925] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3640), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1286), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2980), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2749), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156745,44 +164827,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86595] = 18, - ACTIONS(670), 1, + [90987] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1604), 1, - anon_sym_this, - ACTIONS(2954), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(850), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(896), 1, - aux_sym_member_expression_repeat1, - STATE(976), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2406), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2748), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156792,44 +164872,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86660] = 18, - ACTIONS(670), 1, + [91049] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3818), 1, - anon_sym_this, - ACTIONS(3918), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(1636), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(2121), 1, + STATE(1031), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2750), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -156839,44 +164917,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86725] = 18, - ACTIONS(670), 1, + [91111] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3818), 1, - anon_sym_this, - ACTIONS(3918), 1, + ACTIONS(3594), 1, sym_identifier, - STATE(1644), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(3596), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(2121), 1, + STATE(1036), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2750), 9, + STATE(2845), 9, sym__literal, sym_integer, sym_float, @@ -156886,44 +164962,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86790] = 18, - ACTIONS(670), 1, + [91173] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3818), 1, - anon_sym_this, - ACTIONS(3918), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1652), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2412), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2750), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -156933,44 +165007,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86855] = 18, - ACTIONS(670), 1, + [91235] = 18, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3634), 1, - anon_sym_this, - ACTIONS(3640), 1, + ACTIONS(4754), 1, sym_identifier, - STATE(1282), 1, - aux_sym_member_expression_repeat1, - STATE(1984), 1, - sym_member_expression, - STATE(1987), 1, - sym__lhs_expression, - STATE(2213), 1, + ACTIONS(4756), 1, + sym__closing_brace_marker, + STATE(2431), 1, + sym__closing_brace, + STATE(2483), 1, + sym_pair, + STATE(2821), 1, + sym_structure_type_pair, + STATE(3158), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2749), 9, + STATE(3345), 8, sym__literal, sym_integer, sym_float, @@ -156979,92 +165053,137 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [86920] = 18, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(670), 1, + [91299] = 5, + ACTIONS(4758), 1, + anon_sym_EQ, + STATE(386), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4728), 11, + sym__closing_brace_marker, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(672), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(674), 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(4726), 12, + anon_sym_case, + anon_sym_default, anon_sym_this, - ACTIONS(676), 1, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_null, - ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(684), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [91337] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1784), 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(1782), 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_DASH_GT, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - STATE(93), 1, - aux_sym_member_expression_repeat1, - STATE(295), 1, - sym_member_expression, - STATE(296), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, + [91371] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1892), 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, - STATE(2751), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [86985] = 18, - ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(1890), 14, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(676), 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, + [91405] = 17, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - STATE(88), 1, - aux_sym_member_expression_repeat1, - STATE(295), 1, + ACTIONS(3918), 1, + sym_identifier, + ACTIONS(3920), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(296), 1, + STATE(2278), 1, sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2751), 9, + STATE(3007), 9, sym__literal, sym_integer, sym_float, @@ -157074,44 +165193,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87050] = 18, - ACTIONS(664), 1, + [91467] = 4, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1784), 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(670), 1, + ACTIONS(1782), 13, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(674), 1, - anon_sym_this, - ACTIONS(676), 1, + 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, + [91503] = 17, + ACTIONS(1312), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - STATE(94), 1, - aux_sym_member_expression_repeat1, - STATE(295), 1, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(296), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2861), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2751), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -157121,44 +165270,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87115] = 18, - ACTIONS(670), 1, + [91565] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3890), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3892), 1, + ACTIONS(4308), 1, anon_sym_this, - STATE(969), 1, + STATE(1003), 1, sym_member_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, - STATE(2309), 1, + STATE(2865), 1, sym__lhs_expression, - STATE(2947), 1, - sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2735), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -157168,44 +165315,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87180] = 18, - ACTIONS(670), 1, + [91627] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3818), 1, - anon_sym_this, - ACTIONS(3918), 1, + ACTIONS(4306), 1, sym_identifier, - STATE(1634), 1, - aux_sym_member_expression_repeat1, - STATE(2120), 1, + ACTIONS(4308), 1, + anon_sym_this, + STATE(1003), 1, sym_member_expression, - STATE(2121), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2291), 1, sym_string, + STATE(2324), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2750), 9, + STATE(2860), 9, sym__literal, sym_integer, sym_float, @@ -157215,44 +165360,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87245] = 18, - ACTIONS(670), 1, + [91689] = 17, + ACTIONS(552), 1, + sym__closing_brace_marker, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(1494), 1, - anon_sym_this, - ACTIONS(2886), 1, + ACTIONS(4760), 1, sym_identifier, - STATE(863), 1, - aux_sym_member_expression_repeat1, - STATE(946), 1, - sym__lhs_expression, - STATE(951), 1, - sym_member_expression, - STATE(2213), 1, + STATE(1518), 1, + sym__closing_brace, + STATE(2512), 1, + sym_pair, + STATE(3158), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2743), 9, + STATE(3345), 8, sym__literal, sym_integer, sym_float, @@ -157261,43 +165404,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [87310] = 17, - ACTIONS(670), 1, + [91750] = 17, + ACTIONS(343), 1, + sym__closing_brace_marker, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4760), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(1975), 1, + sym__closing_brace, + STATE(2464), 1, + sym_pair, + STATE(3158), 1, sym_string, - STATE(2800), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3345), 8, sym__literal, sym_integer, sym_float, @@ -157306,43 +165448,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [87372] = 17, - ACTIONS(670), 1, + [91811] = 17, + ACTIONS(337), 1, + sym__closing_brace_marker, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4760), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(387), 1, + sym__closing_brace, + STATE(2496), 1, + sym_pair, + STATE(3158), 1, sym_string, - STATE(2338), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3345), 8, sym__literal, sym_integer, sym_float, @@ -157351,43 +165492,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [87434] = 17, - ACTIONS(670), 1, + [91872] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4756), 1, + sym__closing_brace_marker, + ACTIONS(4760), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(1946), 1, + sym__closing_brace, + STATE(2453), 1, + sym_pair, + STATE(3158), 1, sym_string, - STATE(2266), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3345), 8, sym__literal, sym_integer, sym_float, @@ -157396,105 +165536,73 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [87496] = 3, + [91933] = 4, + ACTIONS(4734), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 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(1050), 14, + ACTIONS(1772), 11, sym__closing_brace_marker, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, 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, - [87530] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1116), 11, + ACTIONS(1775), 12, anon_sym_case, anon_sym_default, anon_sym_this, 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, - ACTIONS(1114), 14, + [91968] = 17, + ACTIONS(341), 1, sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - 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, - [87564] = 17, - ACTIONS(670), 1, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, + ACTIONS(4760), 1, sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(1011), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(205), 1, + sym__closing_brace, + STATE(2483), 1, + sym_pair, + STATE(3158), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(3345), 8, sym__literal, sym_integer, sym_float, @@ -157503,43 +165611,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [87626] = 17, - ACTIONS(670), 1, + [92029] = 17, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3244), 1, + ACTIONS(4760), 1, sym_identifier, - ACTIONS(3246), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + ACTIONS(4762), 1, + sym__closing_brace_marker, + STATE(1946), 1, + sym__closing_brace, + STATE(2514), 1, + sym_pair, + STATE(3158), 1, sym_string, - STATE(3025), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2646), 9, + STATE(3345), 8, sym__literal, sym_integer, sym_float, @@ -157548,133 +165655,99 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [87688] = 17, - ACTIONS(670), 1, + [92090] = 5, + ACTIONS(4764), 1, + anon_sym_EQ, + STATE(204), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4728), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACE, - ACTIONS(672), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + anon_sym_RBRACK, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(3622), 1, - sym_identifier, - ACTIONS(3624), 1, + ACTIONS(4726), 11, anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, - sym_string, - STATE(2271), 1, - sym__lhs_expression, + 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, + [92126] = 6, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(4766), 1, + anon_sym_DOT, + ACTIONS(4768), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1784), 8, + anon_sym_in, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2650), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [87750] = 17, - ACTIONS(670), 1, + sym_identifier, + ACTIONS(1782), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(1016), 1, - sym__lhs_expression, - STATE(2213), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2762), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [87812] = 17, - ACTIONS(670), 1, + [92164] = 14, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2658), 1, sym_string, - STATE(2784), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3021), 9, sym__literal, sym_integer, sym_float, @@ -157684,42 +165757,38 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87874] = 17, - ACTIONS(670), 1, + [92217] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4772), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2264), 1, - sym__lhs_expression, + STATE(3246), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -157728,43 +165797,36 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [87936] = 17, - ACTIONS(670), 1, + [92272] = 14, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(1026), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(2658), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -157774,42 +165836,36 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87998] = 17, - ACTIONS(670), 1, + [92325] = 14, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2658), 1, sym_string, - STATE(2268), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(2900), 9, sym__literal, sym_integer, sym_float, @@ -157819,75 +165875,38 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88060] = 5, - ACTIONS(4088), 1, - anon_sym_EQ, - STATE(244), 1, - sym__assignmentOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4068), 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(4066), 12, - anon_sym_case, - anon_sym_default, - anon_sym_this, - 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, - [88098] = 17, - ACTIONS(670), 1, + [92378] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3244), 1, + ACTIONS(4774), 1, sym_identifier, - ACTIONS(3246), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2197), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, + STATE(3272), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2646), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -157896,43 +165915,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88160] = 17, - ACTIONS(670), 1, + [92433] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(2658), 1, sym_string, - STATE(2761), 1, - sym__lhs_expression, + STATE(2976), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3507), 8, sym__literal, sym_integer, sym_float, @@ -157941,43 +165955,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88222] = 17, - ACTIONS(670), 1, + [92488] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4776), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2765), 1, - sym__lhs_expression, + STATE(3286), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -157986,43 +165995,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88284] = 17, - ACTIONS(670), 1, + [92543] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4778), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3141), 1, + sym_pair, + STATE(3180), 1, sym_string, - STATE(2319), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158031,75 +166035,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88346] = 4, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 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(1050), 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, - [88382] = 17, - ACTIONS(670), 1, + [92598] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4780), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2335), 1, - sym__lhs_expression, + STATE(3186), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158108,43 +166075,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88444] = 17, - ACTIONS(670), 1, + [92653] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4782), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2768), 1, - sym__lhs_expression, + STATE(3199), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158153,43 +166115,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88506] = 17, - ACTIONS(670), 1, + [92708] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4784), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2847), 1, - sym__lhs_expression, + STATE(3211), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158198,43 +166155,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88568] = 17, - ACTIONS(670), 1, + [92763] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3244), 1, + ACTIONS(4786), 1, sym_identifier, - ACTIONS(3246), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2961), 1, - sym__lhs_expression, + STATE(3213), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2646), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158243,43 +166195,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88630] = 17, - ACTIONS(670), 1, + [92818] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4788), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2287), 1, - sym__lhs_expression, + STATE(3215), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158288,43 +166235,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88692] = 17, - ACTIONS(670), 1, + [92873] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, + ACTIONS(4790), 1, sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(1007), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, + STATE(3217), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158333,45 +166275,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88754] = 18, - ACTIONS(670), 1, + [92928] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(4090), 1, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(4092), 1, - sym__closing_brace_marker, - STATE(2340), 1, - sym__closing_brace, - STATE(2385), 1, - sym_pair, - STATE(2549), 1, - sym_structure_type_pair, - STATE(3072), 1, + STATE(3180), 1, sym_string, + STATE(3219), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3267), 8, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158380,42 +166315,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [88818] = 17, - ACTIONS(670), 1, + [92983] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4794), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2314), 1, - sym__lhs_expression, + STATE(3222), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158424,43 +166355,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88880] = 17, - ACTIONS(670), 1, + [93038] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(4796), 1, sym_identifier, - ACTIONS(3624), 1, - anon_sym_this, - STATE(969), 1, - sym_member_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2250), 1, - sym__lhs_expression, + STATE(3223), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2650), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158469,43 +166395,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [88942] = 17, - ACTIONS(670), 1, + [93093] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, + ACTIONS(4798), 1, sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(987), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, + STATE(3225), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158514,43 +166435,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [89004] = 17, - ACTIONS(670), 1, + [93148] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2930), 1, + ACTIONS(4800), 1, sym_identifier, - ACTIONS(2932), 1, - anon_sym_this, - STATE(960), 1, - sym_member_expression, - STATE(995), 1, - sym__lhs_expression, - STATE(2213), 1, + STATE(3180), 1, sym_string, + STATE(3226), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2762), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158559,43 +166475,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [89066] = 17, - ACTIONS(670), 1, + [93203] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(3985), 1, - anon_sym_this, - ACTIONS(4094), 1, + ACTIONS(4802), 1, sym_identifier, - STATE(2213), 1, + STATE(3180), 1, sym_string, - STATE(2366), 1, - sym__lhs_expression, - STATE(2370), 1, - sym_member_expression, + STATE(3227), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2689), 9, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158604,43 +166515,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [89128] = 17, - ACTIONS(670), 1, + [93258] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(4096), 1, + ACTIONS(4804), 1, sym_identifier, - ACTIONS(4098), 1, - sym__closing_brace_marker, - STATE(1471), 1, - sym__closing_brace, - STATE(2382), 1, - sym_pair, - STATE(3072), 1, + STATE(3180), 1, sym_string, + STATE(3228), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3267), 8, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158649,42 +166555,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [89189] = 17, - ACTIONS(151), 1, - sym__closing_brace_marker, - ACTIONS(670), 1, + [93313] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(4096), 1, + ACTIONS(4806), 1, sym_identifier, - STATE(255), 1, - sym__closing_brace, - STATE(2367), 1, + STATE(3140), 1, sym_pair, - STATE(3072), 1, + STATE(3180), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3267), 8, + STATE(3433), 8, sym__literal, sym_integer, sym_float, @@ -158693,30 +166595,28 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [89250] = 4, - ACTIONS(4062), 1, + [93368] = 4, + ACTIONS(4808), 1, anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(928), 11, - sym__closing_brace_marker, - anon_sym_DOT, + ACTIONS(1772), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, + anon_sym_RBRACK, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(931), 12, - anon_sym_case, - anon_sym_default, + ACTIONS(1775), 11, anon_sym_this, anon_sym_catch, anon_sym_else, + anon_sym_while, anon_sym_new, anon_sym_null, aux_sym_integer_token1, @@ -158724,42 +166624,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [89285] = 17, - ACTIONS(149), 1, - sym__closing_brace_marker, - ACTIONS(670), 1, + [93401] = 15, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(4096), 1, + ACTIONS(4760), 1, sym_identifier, - STATE(1519), 1, - sym__closing_brace, - STATE(2358), 1, + STATE(3005), 1, sym_pair, - STATE(3072), 1, + STATE(3158), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3267), 8, + STATE(3345), 8, sym__literal, sym_integer, sym_float, @@ -158768,42 +166664,36 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [89346] = 17, - ACTIONS(153), 1, - sym__closing_brace_marker, - ACTIONS(670), 1, + [93456] = 14, + ACTIONS(1312), 1, anon_sym_LBRACE, - ACTIONS(672), 1, + ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1332), 1, anon_sym_null, - ACTIONS(678), 1, + ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(680), 1, + ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(682), 1, + ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(684), 1, + ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(690), 1, + ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(4096), 1, + ACTIONS(4770), 1, sym_identifier, - STATE(158), 1, - sym__closing_brace, - STATE(2385), 1, - sym_pair, - STATE(3072), 1, + STATE(2658), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(3267), 8, + STATE(3053), 9, sym__literal, sym_integer, sym_float, @@ -158812,16703 +166702,17560 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [89407] = 17, - ACTIONS(147), 1, + sym_pair, + [93509] = 6, + ACTIONS(1888), 1, + anon_sym_COLON, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1784), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 11, sym__closing_brace_marker, - ACTIONS(670), 1, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + anon_sym_LT, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4096), 1, - sym_identifier, - STATE(1861), 1, - sym__closing_brace, - STATE(2407), 1, - sym_pair, - STATE(3072), 1, - sym_string, + [93545] = 6, + ACTIONS(4814), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1888), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1784), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(3267), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89468] = 16, - ACTIONS(670), 1, + sym_identifier, + ACTIONS(1782), 10, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, + [93581] = 7, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1782), 1, + sym_escape_sequence, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4818), 1, + anon_sym_DOT, + ACTIONS(4822), 1, + anon_sym_QMARK, + ACTIONS(4820), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1784), 16, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + anon_sym_this, anon_sym_null, - ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(690), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(4100), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3231), 1, - sym_range_expression, + [93619] = 5, + ACTIONS(4824), 1, + anon_sym_EQ, + STATE(386), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(4728), 7, + sym__closing_brace_marker, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(4726), 12, + anon_sym_case, + anon_sym_default, + anon_sym_this, + 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, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89526] = 16, - ACTIONS(670), 1, + sym_identifier, + [93653] = 5, + ACTIONS(4826), 1, + anon_sym_EQ, + STATE(1072), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4726), 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(4728), 10, + sym__lookback_semicolon, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + anon_sym_QMARK, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [93686] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1784), 7, + anon_sym_this, anon_sym_null, - ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(684), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1782), 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, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, - sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3371), 1, - sym_range_expression, + [93715] = 5, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4828), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1784), 8, + anon_sym_this, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89584] = 6, - ACTIONS(1132), 1, + sym_identifier, + ACTIONS(1782), 10, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(4102), 1, - anon_sym_DOT, - ACTIONS(4104), 1, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_QMARK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [93748] = 11, + ACTIONS(43), 1, + anon_sym_AT, + ACTIONS(45), 1, + anon_sym_AT_COLON, + ACTIONS(4832), 1, + anon_sym_final, + ACTIONS(4834), 1, + anon_sym_class, + ACTIONS(4836), 1, + anon_sym_typedef, + ACTIONS(4838), 1, + anon_sym_function, + ACTIONS(4840), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2272), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + STATE(2282), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4830), 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, + [93793] = 5, + ACTIONS(4844), 1, + anon_sym_LPAREN, + STATE(2263), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4847), 6, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(4842), 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, + [93826] = 5, + ACTIONS(4849), 1, + anon_sym_EQ, + STATE(1033), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 8, + ACTIONS(4726), 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, sym_identifier, - ACTIONS(1050), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4728), 9, + anon_sym_DOT, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, + anon_sym_QMARK, anon_sym_EQ_GT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [89622] = 16, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(4100), 1, - sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3478), 1, - sym_range_expression, + [93859] = 4, + ACTIONS(4808), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89680] = 16, - ACTIONS(670), 1, + ACTIONS(1772), 7, + sym__closing_brace_marker, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, + ACTIONS(1775), 12, + anon_sym_case, + anon_sym_default, + anon_sym_this, + 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(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3209), 1, - sym_range_expression, + [93890] = 4, + ACTIONS(1888), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1784), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89738] = 16, - ACTIONS(670), 1, + sym_identifier, + ACTIONS(1782), 12, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, - sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3130), 1, - sym_range_expression, + [93921] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1892), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89796] = 16, - ACTIONS(670), 1, + sym_identifier, + ACTIONS(1890), 13, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, - sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3218), 1, - sym_range_expression, + [93950] = 11, + ACTIONS(43), 1, + anon_sym_AT, + ACTIONS(45), 1, + anon_sym_AT_COLON, + ACTIONS(4853), 1, + anon_sym_final, + ACTIONS(4855), 1, + anon_sym_class, + ACTIONS(4857), 1, + anon_sym_typedef, + ACTIONS(4859), 1, + anon_sym_function, + ACTIONS(4861), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2272), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + STATE(2283), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4851), 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, + [93995] = 6, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4863), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1784), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89854] = 16, - ACTIONS(670), 1, + sym_identifier, + ACTIONS(1782), 9, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + anon_sym_LT, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, - sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3257), 1, - sym_range_expression, + [94029] = 4, + ACTIONS(4734), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1775), 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(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89912] = 16, - ACTIONS(670), 1, + sym_identifier, + ACTIONS(1772), 10, + sym__lookback_semicolon, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + anon_sym_QMARK, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, - sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3270), 1, - sym_range_expression, + [94059] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, + ACTIONS(1784), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [89970] = 16, - ACTIONS(670), 1, + sym_identifier, + ACTIONS(1782), 12, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, - sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3221), 1, - sym_range_expression, + [94087] = 5, + ACTIONS(4867), 1, + anon_sym_AT, + ACTIONS(4870), 1, + anon_sym_AT_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [90028] = 16, - ACTIONS(670), 1, + STATE(2272), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + ACTIONS(4873), 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, + [94118] = 9, + ACTIONS(4832), 1, + anon_sym_final, + ACTIONS(4834), 1, + anon_sym_class, + ACTIONS(4836), 1, + anon_sym_typedef, + ACTIONS(4838), 1, + anon_sym_function, + ACTIONS(4840), 1, + anon_sym_var, + ACTIONS(4877), 1, + anon_sym_interface, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4875), 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, + [94156] = 9, + ACTIONS(4853), 1, + anon_sym_final, + ACTIONS(4855), 1, + anon_sym_class, + ACTIONS(4857), 1, + anon_sym_typedef, + ACTIONS(4859), 1, + anon_sym_function, + ACTIONS(4861), 1, + anon_sym_var, + ACTIONS(4879), 1, + anon_sym_interface, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4875), 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, + [94194] = 5, + ACTIONS(4881), 1, + anon_sym_EQ, + STATE(1072), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4728), 7, + sym__lookback_semicolon, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, + ACTIONS(4726), 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, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3225), 1, - sym_range_expression, - ACTIONS(3), 2, + [94224] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(1890), 1, + sym_escape_sequence, + ACTIONS(4680), 1, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [90086] = 16, - ACTIONS(670), 1, + ACTIONS(1892), 16, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + anon_sym_this, anon_sym_null, - ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(690), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(4100), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3155), 1, - sym_range_expression, - ACTIONS(3), 2, + [94252] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(1782), 1, + sym_escape_sequence, + ACTIONS(4680), 1, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [90144] = 16, - ACTIONS(670), 1, + ACTIONS(1784), 16, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, + anon_sym_this, anon_sym_null, - ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(690), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(4100), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3263), 1, - sym_range_expression, + [94280] = 4, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4887), 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, + [94308] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4892), 5, + anon_sym_class, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + ACTIONS(4889), 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, + [94336] = 3, + ACTIONS(4894), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4896), 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, + [94361] = 3, + ACTIONS(4898), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4900), 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, + [94386] = 8, + ACTIONS(4902), 1, + anon_sym_final, + ACTIONS(4904), 1, + anon_sym_class, + ACTIONS(4906), 1, + anon_sym_typedef, + ACTIONS(4908), 1, + anon_sym_function, + ACTIONS(4910), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4875), 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, + [94421] = 8, + ACTIONS(4912), 1, + anon_sym_final, + ACTIONS(4914), 1, + anon_sym_class, + ACTIONS(4916), 1, + anon_sym_typedef, + ACTIONS(4918), 1, + anon_sym_function, + ACTIONS(4920), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4875), 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, + [94456] = 4, + ACTIONS(4808), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [90202] = 16, - ACTIONS(670), 1, + ACTIONS(1772), 7, + sym__lookback_semicolon, anon_sym_LBRACE, - ACTIONS(672), 1, anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, aux_sym_float_token2, - ACTIONS(688), 1, aux_sym_string_token1, - ACTIONS(690), 1, aux_sym_string_token3, - ACTIONS(4100), 1, - sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3279), 1, - sym_range_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [90260] = 16, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, + ACTIONS(1775), 8, + anon_sym_this, + anon_sym_new, anon_sym_null, - ACTIONS(678), 1, aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(4100), 1, + anon_sym_true, + anon_sym_false, sym_identifier, - STATE(3034), 1, - sym_string, - STATE(3044), 1, - sym_pair, - STATE(3274), 1, - sym_range_expression, + [94483] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3339), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [90318] = 5, - ACTIONS(4106), 1, - anon_sym_EQ, - STATE(193), 1, - sym__assignmentOperator, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1778), 12, + anon_sym_DOT, + anon_sym_in, + anon_sym_RPAREN, + 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, + [94506] = 6, + ACTIONS(4922), 1, + anon_sym_DOT, + ACTIONS(4926), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4924), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + [94533] = 6, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4068), 10, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1888), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 6, 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(4066), 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, - [90354] = 14, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(4108), 1, - sym_identifier, - STATE(2537), 1, - sym_string, + [94560] = 6, + ACTIONS(4928), 1, + anon_sym_DOT, + ACTIONS(4930), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2771), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [90407] = 14, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, - aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(4108), 1, - sym_identifier, - STATE(2537), 1, - sym_string, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1888), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [94587] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2714), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [90460] = 4, - ACTIONS(4110), 1, - anon_sym_EQ, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1778), 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, + [94607] = 6, + ACTIONS(4742), 1, + anon_sym_DOT, + ACTIONS(4744), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4924), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [94633] = 3, + ACTIONS(1888), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(928), 10, + ACTIONS(1624), 9, + anon_sym_DOT, 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(931), 11, - anon_sym_this, + anon_sym_QMARK, 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, - [90493] = 14, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, + anon_sym_EQ_GT, + [94652] = 3, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1624), 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, + [94671] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4932), 1, aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(4108), 1, - sym_identifier, - STATE(2537), 1, - sym_string, + ACTIONS(4934), 1, + aux_sym_string_token2, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + sym_escape_sequence, + STATE(2297), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [94701] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2790), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [90546] = 14, - ACTIONS(670), 1, + ACTIONS(4590), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [94717] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4942), 1, aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(4108), 1, - sym_identifier, - STATE(2537), 1, - sym_string, + ACTIONS(4944), 1, + aux_sym_string_token2, + ACTIONS(4946), 1, + sym_escape_sequence, + STATE(2293), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [94747] = 6, + ACTIONS(4766), 1, + anon_sym_DOT, + ACTIONS(4768), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(2766), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [90599] = 15, - ACTIONS(670), 1, - anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1888), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1778), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [94771] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4948), 1, aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(4096), 1, - sym_identifier, - STATE(2695), 1, - sym_pair, - STATE(3072), 1, - sym_string, + ACTIONS(4950), 1, + aux_sym_string_token2, + ACTIONS(4953), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4956), 1, + anon_sym_DOLLAR, + ACTIONS(4959), 1, + sym_escape_sequence, + STATE(2297), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [94801] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4962), 1, + aux_sym_string_token1, + ACTIONS(4964), 1, + aux_sym_string_token2, + ACTIONS(4966), 1, + sym_escape_sequence, + STATE(2303), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [94831] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4968), 1, + aux_sym_string_token1, + ACTIONS(4970), 1, + aux_sym_string_token2, + ACTIONS(4972), 1, + sym_escape_sequence, + STATE(2309), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [94861] = 5, + ACTIONS(4924), 1, + anon_sym_EQ_GT, + ACTIONS(4974), 1, + anon_sym_DOT, + ACTIONS(4976), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3267), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [90654] = 15, - ACTIONS(670), 1, + ACTIONS(1778), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + [94883] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4978), 1, + aux_sym_string_token1, + ACTIONS(4980), 1, + aux_sym_string_token2, + ACTIONS(4982), 1, + sym_escape_sequence, + STATE(2305), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [94913] = 5, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4984), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1778), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [94935] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4934), 1, + aux_sym_string_token2, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + sym_escape_sequence, + ACTIONS(4988), 1, + aux_sym_string_token1, + STATE(2297), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [94965] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4614), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(672), 1, - anon_sym_LBRACK, - ACTIONS(676), 1, - anon_sym_null, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - ACTIONS(682), 1, - aux_sym_float_token1, - ACTIONS(684), 1, - aux_sym_float_token2, - ACTIONS(688), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [94981] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4934), 1, + aux_sym_string_token2, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + sym_escape_sequence, + ACTIONS(4990), 1, aux_sym_string_token1, - ACTIONS(690), 1, - aux_sym_string_token3, - ACTIONS(4108), 1, - sym_identifier, - STATE(2537), 1, - sym_string, - STATE(2719), 1, - sym_pair, - ACTIONS(3), 2, + STATE(2297), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95011] = 9, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - ACTIONS(686), 2, - anon_sym_true, - anon_sym_false, - STATE(3245), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [90709] = 6, - ACTIONS(1132), 1, - anon_sym_COLON, - ACTIONS(4112), 1, + ACTIONS(4934), 1, + aux_sym_string_token2, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + sym_escape_sequence, + ACTIONS(4992), 1, + aux_sym_string_token1, + STATE(2297), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95041] = 5, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4994), 1, anon_sym_DOT, - ACTIONS(4114), 1, + ACTIONS(4996), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1050), 11, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(1778), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [95063] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4998), 1, aux_sym_string_token1, - aux_sym_string_token3, - [90745] = 5, - ACTIONS(4116), 1, - anon_sym_EQ, - STATE(244), 1, - sym__assignmentOperator, - ACTIONS(3), 2, + ACTIONS(5000), 1, + aux_sym_string_token2, + ACTIONS(5002), 1, + sym_escape_sequence, + STATE(2306), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95093] = 9, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - ACTIONS(4068), 7, - sym__closing_brace_marker, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, + ACTIONS(4934), 1, + aux_sym_string_token2, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + sym_escape_sequence, + ACTIONS(5004), 1, aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(4066), 12, - anon_sym_case, - anon_sym_default, - anon_sym_this, - 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, - [90779] = 7, + STATE(2297), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2473), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95123] = 7, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(1050), 1, + ACTIONS(1782), 1, sym_escape_sequence, - ACTIONS(3991), 1, + ACTIONS(4680), 1, sym_comment, - ACTIONS(4118), 1, + ACTIONS(4818), 1, anon_sym_DOT, - ACTIONS(4122), 1, + ACTIONS(4822), 1, anon_sym_QMARK, - ACTIONS(4120), 2, + ACTIONS(4820), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1054), 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, + ACTIONS(1784), 4, aux_sym_string_token1, aux_sym_string_token2, - aux_sym_string_token3, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR, - sym_identifier, - [90817] = 6, - ACTIONS(4124), 1, + [95149] = 6, + ACTIONS(4810), 1, anon_sym_DOT, - ACTIONS(4126), 1, + ACTIONS(4812), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1132), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1054), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1050), 10, - sym__lookback_semicolon, + ACTIONS(1778), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(1782), 2, anon_sym_LPAREN, - anon_sym_LBRACE, - 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, - [90853] = 3, + ACTIONS(4924), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [95172] = 6, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_QMARK, + ACTIONS(5006), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1116), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1114), 13, - sym__lookback_semicolon, + ACTIONS(1782), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + [95195] = 6, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4598), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(4600), 1, anon_sym_QMARK, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1782), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LT, + [95218] = 5, + ACTIONS(4924), 1, anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [90882] = 4, - ACTIONS(4110), 1, - anon_sym_EQ, + ACTIONS(5010), 1, + anon_sym_DOT, + ACTIONS(5012), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(928), 7, + ACTIONS(1778), 5, sym__closing_brace_marker, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(931), 12, anon_sym_case, anon_sym_default, - anon_sym_this, 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, - [90913] = 5, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4128), 1, - anon_sym_DOT, + [95239] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2428), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 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(1050), 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, - aux_sym_string_token1, - aux_sym_string_token3, - [90946] = 11, - ACTIONS(43), 1, - anon_sym_AT, - ACTIONS(45), 1, - anon_sym_AT_COLON, - ACTIONS(4132), 1, - anon_sym_final, - ACTIONS(4134), 1, - anon_sym_class, - ACTIONS(4136), 1, - anon_sym_typedef, - ACTIONS(4138), 1, - anon_sym_function, - ACTIONS(4140), 1, - anon_sym_var, + [95265] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2400), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2194), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - STATE(2206), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4130), 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, - [90991] = 3, + [95291] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2435), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1050), 13, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + [95317] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2447), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95343] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2450), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95369] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2430), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [95395] = 4, + ACTIONS(5018), 1, + anon_sym_LT, + STATE(2498), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4548), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [95413] = 4, + ACTIONS(5018), 1, anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [91020] = 5, - ACTIONS(4144), 1, - anon_sym_LPAREN, - STATE(2186), 1, - aux_sym_variable_declaration_repeat1, + STATE(2519), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4147), 6, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(4142), 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, - [91053] = 5, - ACTIONS(4149), 1, + ACTIONS(4558), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, anon_sym_EQ, - STATE(981), 1, - sym__assignmentOperator, + [95431] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2524), 1, + sym_type_name, + STATE(2605), 1, + sym__type_path, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4066), 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, - sym_identifier, - ACTIONS(4068), 9, - anon_sym_DOT, + [95457] = 8, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5020), 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, - [91086] = 4, - ACTIONS(1132), 1, - anon_sym_COLON, + ACTIONS(5022), 1, + anon_sym_extends, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(711), 1, + sym_block, + STATE(2462), 1, + sym_type_params, + STATE(2751), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1050), 12, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + [95483] = 8, + ACTIONS(5018), 1, anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [91117] = 11, - ACTIONS(43), 1, - anon_sym_AT, - ACTIONS(45), 1, - anon_sym_AT_COLON, - ACTIONS(4153), 1, - anon_sym_final, - ACTIONS(4155), 1, - anon_sym_class, - ACTIONS(4157), 1, - anon_sym_typedef, - ACTIONS(4159), 1, - anon_sym_function, - ACTIONS(4161), 1, - anon_sym_var, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5026), 1, + anon_sym_extends, + STATE(799), 1, + sym_block, + STATE(2502), 1, + sym_type_params, + STATE(2569), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2194), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - STATE(2205), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4151), 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, - [91162] = 5, - ACTIONS(4163), 1, + [95509] = 7, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5030), 1, anon_sym_EQ, - STATE(997), 1, + STATE(2233), 1, sym__assignmentOperator, + STATE(2498), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4066), 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(4068), 10, - sym__lookback_semicolon, + ACTIONS(5028), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [95533] = 6, + ACTIONS(1778), 1, + anon_sym_in, + ACTIONS(4928), 1, anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(4930), 1, anon_sym_QMARK, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [91195] = 3, ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1054), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1050), 12, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - 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, - [91223] = 6, - ACTIONS(1132), 1, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5032), 2, + anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4165), 1, + [95555] = 6, + ACTIONS(1778), 1, + anon_sym_in, + ACTIONS(4766), 1, anon_sym_DOT, - ACTIONS(4167), 1, + ACTIONS(4768), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1054), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1050), 9, + ACTIONS(1782), 2, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LT, + ACTIONS(5032), 2, anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_EQ_GT, + [95577] = 7, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5018), 1, anon_sym_LT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [91257] = 4, - ACTIONS(4062), 1, + ACTIONS(5036), 1, anon_sym_EQ, + STATE(2254), 1, + sym__assignmentOperator, + STATE(2498), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(931), 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(928), 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, - [91287] = 5, - ACTIONS(4169), 1, - anon_sym_AT, - ACTIONS(4172), 1, - anon_sym_AT_COLON, + ACTIONS(5034), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [95601] = 6, + ACTIONS(5038), 1, + anon_sym_LPAREN, + ACTIONS(5040), 1, + anon_sym_LT, + STATE(380), 1, + sym__arg_list, + STATE(2458), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2194), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - ACTIONS(4175), 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, - [91318] = 9, - ACTIONS(4153), 1, - anon_sym_final, - ACTIONS(4155), 1, - anon_sym_class, - ACTIONS(4157), 1, - anon_sym_typedef, - ACTIONS(4159), 1, - anon_sym_function, - ACTIONS(4161), 1, - anon_sym_var, - ACTIONS(4179), 1, - anon_sym_interface, + ACTIONS(4548), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [95623] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(201), 1, + sym__arg_list, + STATE(2506), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2198), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4177), 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, - [91356] = 4, - ACTIONS(3), 1, + ACTIONS(4548), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [95645] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5044), 1, + sym_identifier, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(2912), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3543), 1, + sym_range_expression, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1114), 1, - sym_escape_sequence, - ACTIONS(3991), 1, sym_comment, - ACTIONS(1116), 16, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_this, - anon_sym_null, + [95671] = 8, + ACTIONS(1334), 1, aux_sym_integer_token1, + ACTIONS(1336), 1, 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, - [91384] = 4, - ACTIONS(4181), 1, + ACTIONS(5046), 1, anon_sym_LPAREN, - ACTIONS(4183), 1, - anon_sym_AT, + ACTIONS(5048), 1, + sym_identifier, + STATE(3029), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3557), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4185), 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, - [91412] = 4, + [95697] = 6, + ACTIONS(1778), 1, + anon_sym_RBRACE, + ACTIONS(4928), 1, + anon_sym_DOT, + ACTIONS(4930), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2198), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4190), 5, - anon_sym_class, - anon_sym_interface, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - ACTIONS(4187), 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, - [91440] = 5, - ACTIONS(4192), 1, - anon_sym_EQ, - STATE(997), 1, - sym__assignmentOperator, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5050), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [95719] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2394), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4068), 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(4066), 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, - [91470] = 4, - ACTIONS(3), 1, + [95745] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5052), 1, + anon_sym_STAR, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + STATE(2340), 1, + aux_sym_package_statement_repeat1, + STATE(2517), 1, + sym_type_name, + STATE(2677), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1050), 1, - sym_escape_sequence, - ACTIONS(3991), 1, sym_comment, - ACTIONS(1054), 16, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_this, - anon_sym_null, + [95771] = 8, + ACTIONS(1334), 1, aux_sym_integer_token1, + ACTIONS(1336), 1, 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, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5056), 1, sym_identifier, - [91498] = 9, - ACTIONS(4132), 1, - anon_sym_final, - ACTIONS(4134), 1, - anon_sym_class, - ACTIONS(4136), 1, - anon_sym_typedef, - ACTIONS(4138), 1, - anon_sym_function, - ACTIONS(4140), 1, - anon_sym_var, - ACTIONS(4194), 1, - anon_sym_interface, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2198), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4177), 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, - [91536] = 3, - ACTIONS(4196), 1, - anon_sym_AT, + STATE(2974), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3457), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4198), 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, - [91561] = 4, - ACTIONS(4110), 1, - anon_sym_EQ, + [95797] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5058), 1, + anon_sym_STAR, + STATE(2452), 1, + sym_type_name, + STATE(2505), 1, + aux_sym_package_statement_repeat1, + STATE(2687), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(928), 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(931), 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, - [91588] = 3, - ACTIONS(4200), 1, - anon_sym_AT, + [95823] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5060), 1, + anon_sym_STAR, + STATE(2338), 1, + aux_sym_package_statement_repeat1, + STATE(2480), 1, + sym_type_name, + STATE(2595), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4202), 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, - [91613] = 8, - ACTIONS(4204), 1, - anon_sym_final, - ACTIONS(4206), 1, - anon_sym_class, - ACTIONS(4208), 1, - anon_sym_typedef, - ACTIONS(4210), 1, - anon_sym_function, - ACTIONS(4212), 1, - anon_sym_var, + [95849] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5062), 1, + anon_sym_STAR, + STATE(2466), 1, + sym_type_name, + STATE(2505), 1, + aux_sym_package_statement_repeat1, + STATE(2700), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2198), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4177), 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, - [91648] = 8, - ACTIONS(4214), 1, - anon_sym_final, - ACTIONS(4216), 1, - anon_sym_class, - ACTIONS(4218), 1, - anon_sym_typedef, - ACTIONS(4220), 1, - anon_sym_function, - ACTIONS(4222), 1, - anon_sym_var, + [95875] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5064), 1, + sym_identifier, + STATE(3098), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3671), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2198), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4177), 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, - [91683] = 4, + [95901] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2385), 1, + sym__type_path, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + [95927] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1048), 5, - anon_sym_in, - anon_sym_catch, - anon_sym_else, - anon_sym_while, + ACTIONS(5066), 1, sym_identifier, - ACTIONS(1046), 8, - 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, - [91709] = 6, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, + STATE(2948), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3328), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1132), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1046), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - [91736] = 6, - ACTIONS(4224), 1, - anon_sym_DOT, - ACTIONS(4228), 1, - anon_sym_QMARK, + [95953] = 3, + STATE(3337), 1, + sym__access_identifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4226), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1046), 6, - sym__closing_brace_marker, - anon_sym_case, + ACTIONS(5068), 6, anon_sym_default, - anon_sym_COMMA, - anon_sym_catch, - anon_sym_else, - [91763] = 6, - ACTIONS(4230), 1, - anon_sym_DOT, - ACTIONS(4232), 1, - anon_sym_QMARK, + anon_sym_null, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [95969] = 3, + STATE(3259), 1, + sym__access_identifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, + ACTIONS(5070), 6, + anon_sym_default, + anon_sym_null, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [95985] = 8, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(1132), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1046), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - [91790] = 3, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5074), 1, + anon_sym_extends, + STATE(586), 1, + sym_block, + STATE(2527), 1, + sym_type_params, + STATE(2710), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, + [96011] = 8, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(1046), 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, - [91810] = 6, - ACTIONS(4076), 1, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5076), 1, + anon_sym_extends, + STATE(816), 1, + sym_block, + STATE(2471), 1, + sym_type_params, + STATE(2609), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96037] = 6, + ACTIONS(1778), 1, + sym__lookback_semicolon, + ACTIONS(5078), 1, anon_sym_DOT, - ACTIONS(4078), 1, + ACTIONS(5082), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + ACTIONS(1782), 2, anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4226), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1046), 5, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - [91836] = 3, - ACTIONS(1132), 1, + anon_sym_LT, + ACTIONS(5080), 2, anon_sym_COLON, + anon_sym_EQ_GT, + [96059] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5084), 1, + sym_identifier, + STATE(2888), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3542), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, + [96085] = 5, + ACTIONS(4232), 1, + sym__lookback_semicolon, + ACTIONS(5086), 1, anon_sym_else, - anon_sym_while, - anon_sym_EQ_GT, - [91855] = 3, - ACTIONS(4226), 1, - anon_sym_COLON, + STATE(606), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 9, + ACTIONS(2608), 4, 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, - [91874] = 9, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4234), 1, - aux_sym_string_token1, - ACTIONS(4236), 1, - aux_sym_string_token2, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4242), 1, - sym_escape_sequence, - STATE(2234), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [91904] = 6, - ACTIONS(4230), 1, - anon_sym_DOT, - ACTIONS(4232), 1, - anon_sym_QMARK, + [96105] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2524), 1, + sym_type_name, + STATE(2562), 1, + sym__type_path, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + [96131] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4244), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1046), 3, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5088), 1, sym_identifier, - [91928] = 9, - ACTIONS(3), 1, + STATE(2892), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3566), 1, + sym_range_expression, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4246), 1, - aux_sym_string_token1, - ACTIONS(4248), 1, - aux_sym_string_token2, - ACTIONS(4250), 1, - sym_escape_sequence, - STATE(2230), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [91958] = 9, - ACTIONS(3), 1, + [96157] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5090), 1, + sym_identifier, + STATE(2895), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3580), 1, + sym_range_expression, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4252), 1, - aux_sym_string_token1, - ACTIONS(4254), 1, - aux_sym_string_token2, - ACTIONS(4256), 1, - sym_escape_sequence, - STATE(2221), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [91988] = 9, - ACTIONS(3), 1, + [96183] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5092), 1, + sym_identifier, + STATE(2902), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3637), 1, + sym_range_expression, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4258), 1, - aux_sym_string_token1, - ACTIONS(4260), 1, - aux_sym_string_token2, - ACTIONS(4262), 1, - sym_escape_sequence, - STATE(2228), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [92018] = 9, - ACTIONS(3), 1, + [96209] = 8, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5094), 1, + anon_sym_extends, + STATE(418), 1, + sym_block, + STATE(2477), 1, + sym_type_params, + STATE(2740), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4264), 1, - aux_sym_string_token1, - ACTIONS(4266), 1, - aux_sym_string_token2, - ACTIONS(4269), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4272), 1, - anon_sym_DOLLAR, - ACTIONS(4275), 1, - sym_escape_sequence, - STATE(2220), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [92048] = 9, - ACTIONS(3), 1, + [96235] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5096), 1, + sym_identifier, + STATE(2922), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3342), 1, + sym_range_expression, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4278), 1, - aux_sym_string_token1, - ACTIONS(4280), 1, - aux_sym_string_token2, - ACTIONS(4282), 1, - sym_escape_sequence, - STATE(2220), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [92078] = 9, - ACTIONS(3), 1, + [96261] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5098), 1, + sym_identifier, + STATE(2923), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3346), 1, + sym_range_expression, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4280), 1, - aux_sym_string_token2, - ACTIONS(4282), 1, - sym_escape_sequence, - ACTIONS(4284), 1, - aux_sym_string_token1, - STATE(2220), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [92108] = 5, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4288), 1, - anon_sym_QMARK, + [96287] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5100), 1, + sym_identifier, + STATE(2931), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3371), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - [92130] = 6, - ACTIONS(4102), 1, - anon_sym_DOT, - ACTIONS(4104), 1, - anon_sym_QMARK, + [96313] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + sym_identifier, + STATE(2932), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3374), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + [96339] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1132), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1046), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [92154] = 7, - ACTIONS(3082), 1, - anon_sym_RBRACK, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, + ACTIONS(5104), 1, + sym_identifier, + STATE(2866), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3394), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1050), 2, - anon_sym_LPAREN, + [96365] = 8, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4244), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [92180] = 9, - ACTIONS(3), 1, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5106), 1, + anon_sym_extends, + STATE(439), 1, + sym_block, + STATE(2501), 1, + sym_type_params, + STATE(2779), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4290), 1, - aux_sym_string_token1, - ACTIONS(4292), 1, - aux_sym_string_token2, - ACTIONS(4294), 1, - sym_escape_sequence, - STATE(2222), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [92210] = 5, - ACTIONS(4226), 1, - anon_sym_EQ_GT, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_QMARK, + [96391] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + sym_identifier, + STATE(2914), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3327), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 6, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_catch, - anon_sym_else, - [92232] = 9, - ACTIONS(3), 1, + [96417] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, + sym_identifier, + STATE(2929), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3361), 1, + sym_range_expression, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4280), 1, - aux_sym_string_token2, - ACTIONS(4282), 1, - sym_escape_sequence, - ACTIONS(4300), 1, - aux_sym_string_token1, - STATE(2220), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [92262] = 7, - ACTIONS(3046), 1, - anon_sym_RBRACK, - ACTIONS(3870), 1, + [96443] = 6, + ACTIONS(1778), 1, + anon_sym_RBRACE, + ACTIONS(4598), 1, anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(4600), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1050), 2, + ACTIONS(1782), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(4244), 2, + ACTIONS(5050), 2, anon_sym_COLON, anon_sym_EQ_GT, - [92288] = 9, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4280), 1, - aux_sym_string_token2, - ACTIONS(4282), 1, - sym_escape_sequence, - ACTIONS(4302), 1, - aux_sym_string_token1, - STATE(2220), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [92318] = 2, + [96465] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2388), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3878), 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, - [92334] = 7, - ACTIONS(3), 1, + [96491] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2421), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1050), 1, - sym_escape_sequence, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4118), 1, - anon_sym_DOT, - ACTIONS(4122), 1, - anon_sym_QMARK, - ACTIONS(4120), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1054), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [92360] = 6, - ACTIONS(3870), 1, + [96517] = 6, + ACTIONS(1778), 1, + sym__lookback_semicolon, + ACTIONS(4814), 1, anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(4816), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + ACTIONS(1782), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(4244), 2, + ACTIONS(5080), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1046), 3, - anon_sym_COMMA, - anon_sym_RBRACK, + [96539] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5112), 1, sym_identifier, - [92384] = 9, - ACTIONS(3), 1, + STATE(2986), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3486), 1, + sym_range_expression, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4280), 1, - aux_sym_string_token2, - ACTIONS(4282), 1, - sym_escape_sequence, - ACTIONS(4304), 1, - aux_sym_string_token1, - STATE(2220), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2360), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [92414] = 7, - ACTIONS(3078), 1, - anon_sym_RBRACK, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, + [96565] = 3, + ACTIONS(1972), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4244), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [92440] = 7, - ACTIONS(3054), 1, - anon_sym_RBRACK, - ACTIONS(3870), 1, + ACTIONS(1970), 6, anon_sym_DOT, - ACTIONS(3872), 1, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_QMARK, + anon_sym_EQ_GT, + [96581] = 4, + ACTIONS(5114), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4244), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [92466] = 2, + STATE(2372), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3352), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [96599] = 4, + ACTIONS(5114), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3950), 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, - [92482] = 7, - ACTIONS(3066), 1, - anon_sym_RBRACK, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, + STATE(2372), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3358), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [96617] = 4, + ACTIONS(5116), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4244), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [92508] = 5, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4306), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_QMARK, + STATE(2372), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3362), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [96635] = 4, + ACTIONS(5114), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2372), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3369), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [96653] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2372), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3352), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [96669] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2372), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3358), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [96685] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(2372), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3369), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, anon_sym_catch, anon_sym_else, - anon_sym_while, - [92530] = 6, - ACTIONS(4112), 1, - anon_sym_DOT, - ACTIONS(4114), 1, - anon_sym_QMARK, + [96701] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2381), 1, + sym__type_path, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(1050), 2, + [96727] = 8, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2386), 1, + aux_sym_package_statement_repeat1, + STATE(2432), 1, + sym__type_path, + STATE(2524), 1, + sym_type_name, + STATE(2854), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96753] = 8, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4226), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [92553] = 6, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, - ACTIONS(4310), 1, - anon_sym_COLON, + ACTIONS(5119), 1, + sym_identifier, + STATE(2890), 1, + sym__parenthesized_expression, + STATE(3278), 1, + sym_integer, + STATE(3551), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 4, - anon_sym_RPAREN, + [96779] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(3788), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, + STATE(2947), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96802] = 7, + ACTIONS(5018), 1, anon_sym_LT, - [92576] = 5, - ACTIONS(4226), 1, - anon_sym_EQ_GT, - ACTIONS(4312), 1, - anon_sym_DOT, - ACTIONS(4314), 1, - anon_sym_QMARK, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(776), 1, + sym_block, + STATE(2760), 1, + sym_type_params, + STATE(2770), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 5, + [96825] = 6, + ACTIONS(4762), 1, sym__closing_brace_marker, + ACTIONS(5121), 1, anon_sym_case, + ACTIONS(5123), 1, anon_sym_default, - anon_sym_catch, - anon_sym_else, - [92597] = 6, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, - ACTIONS(4316), 1, - anon_sym_COLON, + STATE(2029), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 4, - anon_sym_RPAREN, + STATE(2461), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [96846] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - [92620] = 8, - ACTIONS(4318), 1, + ACTIONS(3878), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, + STATE(2898), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96869] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2325), 1, + STATE(2505), 1, aux_sym_package_statement_repeat1, - STATE(2349), 1, - sym__type_path, - STATE(2368), 1, + STATE(2507), 1, sym_type_name, - STATE(2815), 1, + STATE(3001), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92646] = 8, - ACTIONS(4318), 1, + [96892] = 7, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(715), 1, + sym_block, + STATE(2635), 1, + sym_type_params, + STATE(2636), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96915] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2325), 1, - aux_sym_package_statement_repeat1, - STATE(2368), 1, + STATE(2455), 1, sym_type_name, - STATE(2604), 1, - sym__type_path, - STATE(2815), 1, + STATE(2505), 1, + aux_sym_package_statement_repeat1, + STATE(3026), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92672] = 7, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4324), 1, + [96938] = 6, + ACTIONS(343), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(401), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2461), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [96959] = 7, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4326), 1, - anon_sym_EQ, - STATE(2174), 1, - sym__assignmentOperator, - STATE(2355), 1, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(676), 1, + sym_block, + STATE(2739), 1, sym_type_params, + STATE(2748), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4322), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [92696] = 6, - ACTIONS(1046), 1, - anon_sym_in, - ACTIONS(4230), 1, - anon_sym_DOT, - ACTIONS(4232), 1, - anon_sym_QMARK, + [96982] = 6, + ACTIONS(552), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(265), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4328), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [92718] = 3, - STATE(3312), 1, - sym__access_identifier, + STATE(2461), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97003] = 7, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2392), 1, + aux_sym_package_statement_repeat1, + STATE(2494), 1, + sym_type_name, + STATE(3047), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4330), 6, - anon_sym_default, - anon_sym_null, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_never, - [92734] = 6, - ACTIONS(1046), 1, - anon_sym_in, - ACTIONS(4102), 1, - anon_sym_DOT, - ACTIONS(4104), 1, - anon_sym_QMARK, + [97026] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + ACTIONS(5125), 6, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LT, - ACTIONS(4328), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [92756] = 8, - ACTIONS(4324), 1, + anon_sym_extends, + anon_sym_implements, + [97039] = 7, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2472), 1, + sym_type_name, + STATE(2505), 1, + aux_sym_package_statement_repeat1, + STATE(3052), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97062] = 7, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + STATE(2397), 1, + aux_sym_package_statement_repeat1, + STATE(3034), 1, + sym_type_name, + STATE(3078), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97085] = 7, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4332), 1, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4334), 1, - anon_sym_extends, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(661), 1, + STATE(654), 1, sym_block, - STATE(2383), 1, + STATE(2639), 1, sym_type_params, - STATE(2460), 1, + STATE(2641), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92782] = 8, - ACTIONS(4318), 1, + [97108] = 6, + ACTIONS(5129), 1, + anon_sym_COLON, + ACTIONS(5131), 1, + anon_sym_QMARK, + ACTIONS(5133), 1, + anon_sym_EQ, + STATE(2232), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5127), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [97129] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4338), 1, - anon_sym_STAR, - ACTIONS(4340), 1, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2260), 1, + STATE(2398), 1, aux_sym_package_statement_repeat1, - STATE(2411), 1, + STATE(2503), 1, sym_type_name, - STATE(2590), 1, + STATE(3080), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92808] = 8, - ACTIONS(4318), 1, + [97152] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5054), 1, sym__pascalCaseIdentifier, - STATE(2325), 1, + STATE(2505), 1, aux_sym_package_statement_repeat1, - STATE(2336), 1, - sym__type_path, - STATE(2368), 1, - sym_type_name, - STATE(2815), 1, + STATE(2870), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3101), 1, + sym_type_name, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92834] = 8, - ACTIONS(4318), 1, + [97175] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4340), 1, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - ACTIONS(4342), 1, - anon_sym_STAR, - STATE(2259), 1, - aux_sym_package_statement_repeat1, - STATE(2416), 1, + STATE(2460), 1, sym_type_name, - STATE(2448), 1, + STATE(2505), 1, + aux_sym_package_statement_repeat1, + STATE(3083), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92860] = 4, - ACTIONS(4324), 1, + [97198] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3842), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, + STATE(2850), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97221] = 7, + ACTIONS(5018), 1, anon_sym_LT, - STATE(2355), 1, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(683), 1, + sym_block, + STATE(2544), 1, sym_type_params, + STATE(2547), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3930), 5, - anon_sym_RPAREN, + [97244] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3718), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [92878] = 6, - ACTIONS(1046), 1, - anon_sym_RBRACE, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, + ACTIONS(3720), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, + STATE(2989), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4344), 2, - anon_sym_COLON, + [97267] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3774), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, + STATE(2875), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97290] = 5, + ACTIONS(1888), 1, anon_sym_EQ_GT, - [92900] = 6, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LPAREN, - STATE(153), 1, - sym__arg_list, - STATE(2359), 1, - sym_type_params, + ACTIONS(5135), 1, + anon_sym_DOT, + ACTIONS(5137), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3930), 3, + ACTIONS(1778), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - [92922] = 8, - ACTIONS(4318), 1, + anon_sym_RBRACK, + [97309] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2325), 1, + STATE(2423), 1, aux_sym_package_statement_repeat1, - STATE(2368), 1, + STATE(2504), 1, sym_type_name, - STATE(2600), 1, - sym__type_path, - STATE(2815), 1, + STATE(2887), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92948] = 8, - ACTIONS(4318), 1, + [97332] = 6, + ACTIONS(337), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(357), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2427), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97353] = 7, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(728), 1, + sym_block, + STATE(2780), 1, + sym_type_params, + STATE(2795), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97376] = 7, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(587), 1, + sym_block, + STATE(2711), 1, + sym_type_params, + STATE(2712), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97399] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3866), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, + STATE(3011), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97422] = 6, + ACTIONS(341), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(227), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2419), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97443] = 6, + ACTIONS(4756), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(1989), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2426), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97464] = 4, + ACTIONS(5086), 1, + anon_sym_else, + STATE(606), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2608), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [97481] = 7, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(800), 1, + sym_block, + STATE(2578), 1, + sym_type_params, + STATE(2579), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97504] = 4, + ACTIONS(5086), 1, + anon_sym_else, + STATE(422), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2652), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [97521] = 4, + ACTIONS(5086), 1, + anon_sym_else, + STATE(444), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2642), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [97538] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3832), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, + STATE(2893), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97561] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3852), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, + STATE(2955), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97584] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2301), 1, - sym__type_path, - STATE(2325), 1, + STATE(2505), 1, aux_sym_package_statement_repeat1, - STATE(2368), 1, + STATE(2516), 1, sym_type_name, - STATE(2815), 1, + STATE(3055), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92974] = 8, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4348), 1, - anon_sym_STAR, - STATE(2412), 1, - sym_type_name, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2459), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [97607] = 7, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(617), 1, + sym_block, + STATE(2744), 1, + sym_type_params, + STATE(2745), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97630] = 6, + ACTIONS(341), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(221), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93000] = 8, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4350), 1, - anon_sym_STAR, - STATE(2388), 1, - sym_type_name, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2564), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + STATE(2461), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97651] = 5, + ACTIONS(4204), 1, + sym__lookback_semicolon, + ACTIONS(5141), 1, + anon_sym_else, + STATE(606), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93026] = 4, - ACTIONS(4324), 1, + ACTIONS(2608), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [97670] = 7, + ACTIONS(5018), 1, anon_sym_LT, - STATE(2389), 1, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(428), 1, + sym_block, + STATE(2763), 1, sym_type_params, + STATE(2764), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3908), 5, - anon_sym_RPAREN, + [97693] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [93044] = 3, - ACTIONS(4244), 1, - anon_sym_COLON, + ACTIONS(3804), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, + STATE(3040), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - sym_identifier, - [93060] = 8, - ACTIONS(4318), 1, + [97716] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2325), 1, + STATE(2505), 1, aux_sym_package_statement_repeat1, - STATE(2345), 1, - sym__type_path, - STATE(2368), 1, + STATE(2525), 1, sym_type_name, - STATE(2815), 1, + STATE(2935), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93086] = 8, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4354), 1, - anon_sym_extends, - STATE(514), 1, - sym_block, - STATE(2373), 1, - sym_type_params, - STATE(2503), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [93112] = 6, - ACTIONS(1046), 1, - sym__lookback_semicolon, - ACTIONS(4124), 1, + [97739] = 5, + ACTIONS(4863), 1, anon_sym_DOT, - ACTIONS(4126), 1, + ACTIONS(4865), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + ACTIONS(1782), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(4356), 2, + ACTIONS(5143), 2, anon_sym_COLON, anon_sym_EQ_GT, - [93134] = 8, - ACTIONS(4324), 1, + [97758] = 7, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3850), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, + STATE(2950), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97781] = 6, + ACTIONS(4756), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(2029), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2461), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97802] = 6, + ACTIONS(337), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(359), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2461), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97823] = 7, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4332), 1, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4358), 1, - anon_sym_extends, - STATE(696), 1, + STATE(770), 1, sym_block, - STATE(2421), 1, + STATE(2660), 1, sym_type_params, - STATE(2606), 1, + STATE(2661), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93160] = 8, - ACTIONS(4318), 1, + [97846] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5054), 1, sym__pascalCaseIdentifier, - STATE(2295), 1, - sym__type_path, - STATE(2325), 1, + STATE(2505), 1, aux_sym_package_statement_repeat1, - STATE(2368), 1, + STATE(2876), 1, sym_type_name, - STATE(2815), 1, + STATE(2881), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93186] = 8, - ACTIONS(4324), 1, + [97869] = 7, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4360), 1, - anon_sym_extends, - STATE(458), 1, + STATE(524), 1, sym_block, - STATE(2417), 1, + STATE(2721), 1, sym_type_params, - STATE(2466), 1, + STATE(2723), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93212] = 6, - ACTIONS(4362), 1, - anon_sym_LPAREN, - ACTIONS(4364), 1, - anon_sym_LT, - STATE(253), 1, - sym__arg_list, - STATE(2381), 1, - sym_type_params, + [97892] = 4, + ACTIONS(5147), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3930), 3, - sym__closing_brace_marker, + ACTIONS(5145), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - [93234] = 5, - ACTIONS(3564), 1, - sym__lookback_semicolon, - ACTIONS(4366), 1, - anon_sym_else, - STATE(470), 1, - sym_else_clause, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1950), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [93254] = 8, - ACTIONS(4324), 1, + ACTIONS(1852), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [97909] = 7, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4368), 1, - anon_sym_extends, - STATE(672), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(452), 1, sym_block, - STATE(2402), 1, + STATE(2800), 1, sym_type_params, - STATE(2567), 1, + STATE(2801), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93280] = 8, - ACTIONS(4318), 1, + [97932] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5054), 1, sym__pascalCaseIdentifier, - STATE(2325), 1, + STATE(2429), 1, aux_sym_package_statement_repeat1, - STATE(2337), 1, - sym__type_path, - STATE(2368), 1, + STATE(2933), 1, sym_type_name, - STATE(2815), 1, + STATE(2968), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93306] = 6, - ACTIONS(1046), 1, - sym__lookback_semicolon, - ACTIONS(4370), 1, - anon_sym_DOT, - ACTIONS(4372), 1, - anon_sym_QMARK, + [97955] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + ACTIONS(1782), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(4356), 2, - anon_sym_COLON, + ACTIONS(1778), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_EQ_GT, - [93328] = 4, - ACTIONS(4374), 1, + [97970] = 7, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_block, + STATE(2809), 1, + sym_type_params, + STATE(2810), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97993] = 7, + ACTIONS(5014), 1, + sym__camelCaseIdentifier, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2417), 1, + aux_sym_package_statement_repeat1, + STATE(2509), 1, + sym_type_name, + STATE(2905), 1, + aux_sym__type_path_repeat1, + STATE(3468), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98016] = 4, + ACTIONS(5149), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2276), 2, + STATE(2439), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(2722), 4, + ACTIONS(3352), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - anon_sym_else, - [93346] = 4, - ACTIONS(4374), 1, + [98033] = 4, + ACTIONS(5149), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2276), 2, + STATE(2439), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(2728), 4, + ACTIONS(3358), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - anon_sym_else, - [93364] = 4, - ACTIONS(4376), 1, + [98050] = 4, + ACTIONS(5151), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2276), 2, + STATE(2439), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(2736), 4, + ACTIONS(3362), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - anon_sym_else, - [93382] = 4, - ACTIONS(4374), 1, + [98067] = 4, + ACTIONS(5149), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2276), 2, + STATE(2439), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(2230), 4, + ACTIONS(3369), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - anon_sym_else, - [93400] = 3, + [98084] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2276), 2, + STATE(2439), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(2722), 5, + ACTIONS(3352), 4, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, - anon_sym_else, - [93416] = 3, + [98099] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2276), 2, + STATE(2439), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(2728), 5, + ACTIONS(3358), 4, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, - anon_sym_else, - [93432] = 3, + [98114] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2276), 2, + STATE(2439), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(2230), 5, + ACTIONS(3369), 4, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, - anon_sym_else, - [93448] = 8, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2313), 1, - sym__type_path, - STATE(2325), 1, - aux_sym_package_statement_repeat1, - STATE(2368), 1, - sym_type_name, - STATE(2815), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [98129] = 6, + ACTIONS(343), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(406), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93474] = 3, - STATE(2960), 1, - sym__access_identifier, + STATE(2387), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98150] = 6, + ACTIONS(552), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, + anon_sym_default, + STATE(255), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2389), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98171] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4630), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + [98184] = 7, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(490), 1, + sym_block, + STATE(2564), 1, + sym_type_params, + STATE(2565), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98207] = 5, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4379), 6, + ACTIONS(1782), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5143), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [98226] = 6, + ACTIONS(4762), 1, + sym__closing_brace_marker, + ACTIONS(5121), 1, + anon_sym_case, + ACTIONS(5123), 1, anon_sym_default, - anon_sym_null, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_never, - [93490] = 8, - ACTIONS(4318), 1, + STATE(1989), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2382), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98247] = 7, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(496), 1, + sym_block, + STATE(2574), 1, + sym_type_params, + STATE(2575), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98270] = 7, + ACTIONS(5014), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2322), 1, - sym__type_path, - STATE(2325), 1, + STATE(2384), 1, aux_sym_package_statement_repeat1, - STATE(2368), 1, + STATE(2457), 1, sym_type_name, - STATE(2815), 1, + STATE(2983), 1, aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93516] = 8, - ACTIONS(4318), 1, + [98293] = 5, + ACTIONS(5158), 1, + anon_sym_DOT, + ACTIONS(5162), 1, + sym__lookback_semicolon, + STATE(764), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5160), 2, + anon_sym_as, + anon_sym_in, + [98311] = 6, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(4428), 1, + anon_sym_COMMA, + ACTIONS(4756), 1, + sym__closing_brace_marker, + STATE(1950), 1, + sym__closing_brace, + STATE(2543), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98331] = 6, + ACTIONS(5164), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2325), 1, + ACTIONS(5166), 1, + sym__lookback_semicolon, + STATE(574), 1, + sym__semicolon, + STATE(3019), 1, + sym_package_name, + STATE(3075), 1, aux_sym_package_statement_repeat1, - STATE(2353), 1, - sym__type_path, - STATE(2368), 1, - sym_type_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98351] = 3, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5170), 4, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [98365] = 4, + ACTIONS(5172), 1, + anon_sym_LT, + STATE(1663), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4558), 3, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [98381] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5038), 1, + anon_sym_LPAREN, + ACTIONS(5168), 1, + anon_sym_DOT, + STATE(383), 1, + sym__arg_list, + STATE(3112), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98401] = 4, + ACTIONS(5038), 1, + anon_sym_LPAREN, + STATE(348), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4544), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [98417] = 5, + ACTIONS(5174), 1, + anon_sym_DOT, + ACTIONS(5178), 1, + sym__lookback_semicolon, + STATE(803), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5176), 2, + anon_sym_as, + anon_sym_in, + [98435] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5180), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym__arg_list, + STATE(3238), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98455] = 5, + ACTIONS(5182), 1, + anon_sym_case, + ACTIONS(5185), 1, + anon_sym_default, + ACTIONS(5188), 1, + sym__closing_brace_marker, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2461), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98473] = 6, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(781), 1, + sym_block, + STATE(2572), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98493] = 4, + ACTIONS(5141), 1, + anon_sym_else, + STATE(606), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2608), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [98509] = 6, + ACTIONS(343), 1, + sym__closing_brace_marker, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(1938), 1, + sym__closing_brace, STATE(2815), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98529] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + STATE(2469), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3936), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [98547] = 5, + ACTIONS(5192), 1, + anon_sym_DOT, + ACTIONS(5196), 1, + sym__lookback_semicolon, + STATE(591), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5194), 2, + anon_sym_as, + anon_sym_in, + [98565] = 4, + ACTIONS(5141), 1, + anon_sym_else, + STATE(422), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2652), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [98581] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5168), 1, + anon_sym_DOT, + STATE(193), 1, + sym__arg_list, + STATE(3250), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98601] = 5, + ACTIONS(1334), 1, + aux_sym_integer_token1, + ACTIONS(1336), 1, + aux_sym_integer_token2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(173), 2, + sym__parenthesized_expression, + sym_integer, + [98619] = 4, + ACTIONS(5141), 1, + anon_sym_else, + STATE(444), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2642), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [98635] = 6, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5198), 1, + anon_sym_extends, + STATE(811), 1, + sym_block, + STATE(2685), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98655] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5200), 1, + anon_sym_LPAREN, + STATE(1544), 1, + sym__arg_list, + STATE(3210), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98675] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(5204), 1, + sym_escape_sequence, + ACTIONS(5202), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [98691] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1782), 1, + sym_escape_sequence, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(1784), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [98707] = 6, + ACTIONS(5164), 1, + sym__camelCaseIdentifier, + ACTIONS(5206), 1, + sym__lookback_semicolon, + STATE(762), 1, + sym__semicolon, + STATE(2930), 1, sym_package_name, + STATE(2957), 1, + aux_sym_package_statement_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93542] = 7, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4383), 1, - anon_sym_EQ, - STATE(2173), 1, - sym__assignmentOperator, - STATE(2355), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4381), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [93566] = 6, - ACTIONS(1046), 1, - anon_sym_RBRACE, - ACTIONS(4230), 1, + [98727] = 3, + ACTIONS(5168), 1, anon_sym_DOT, - ACTIONS(4232), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4344), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [93588] = 8, - ACTIONS(4324), 1, + ACTIONS(5208), 4, + anon_sym_LBRACE, anon_sym_LT, - ACTIONS(4336), 1, + anon_sym_extends, + anon_sym_implements, + [98741] = 6, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4385), 1, + ACTIONS(5210), 1, anon_sym_extends, - STATE(481), 1, + STATE(435), 1, sym_block, - STATE(2422), 1, - sym_type_params, - STATE(2486), 1, + STATE(2772), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93614] = 8, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2304), 1, - sym__type_path, - STATE(2325), 1, - aux_sym_package_statement_repeat1, - STATE(2368), 1, - sym_type_name, - STATE(2815), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [98761] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93640] = 8, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2325), 1, - aux_sym_package_statement_repeat1, - STATE(2346), 1, - sym__type_path, - STATE(2368), 1, - sym_type_name, - STATE(2815), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, - ACTIONS(3), 2, + ACTIONS(3888), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [98779] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - [93666] = 8, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2324), 1, - sym__type_path, - STATE(2325), 1, - aux_sym_package_statement_repeat1, - STATE(2368), 1, - sym_type_name, - STATE(2815), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + ACTIONS(5214), 1, + sym_escape_sequence, + ACTIONS(5212), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [98795] = 5, + ACTIONS(5216), 1, + anon_sym_DOT, + ACTIONS(5220), 1, + sym__lookback_semicolon, + STATE(807), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93692] = 2, + ACTIONS(5218), 2, + anon_sym_as, + anon_sym_in, + [98813] = 5, + ACTIONS(1368), 1, + aux_sym_integer_token1, + ACTIONS(1370), 1, + aux_sym_integer_token2, + ACTIONS(5222), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4387), 6, + STATE(341), 2, + sym__parenthesized_expression, + sym_integer, + [98831] = 5, + ACTIONS(4924), 1, + anon_sym_EQ_GT, + ACTIONS(5224), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_extends, - anon_sym_implements, - [93705] = 4, - ACTIONS(4366), 1, - anon_sym_else, - STATE(470), 1, - sym_else_clause, + ACTIONS(5226), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1950), 4, + ACTIONS(1778), 2, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [93722] = 4, - ACTIONS(4366), 1, - anon_sym_else, - STATE(491), 1, - sym_else_clause, + anon_sym_COMMA, + [98849] = 6, + ACTIONS(341), 1, + sym__closing_brace_marker, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(210), 1, + sym__closing_brace, + STATE(2702), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1974), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [93739] = 4, - ACTIONS(4366), 1, - anon_sym_else, - STATE(520), 1, - sym_else_clause, + [98869] = 4, + ACTIONS(5040), 1, + anon_sym_LT, + STATE(2960), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1978), 4, + ACTIONS(4548), 3, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [93756] = 7, - ACTIONS(4324), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + [98885] = 6, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(679), 1, - sym_block, - STATE(2616), 1, + ACTIONS(5038), 1, + anon_sym_LPAREN, + ACTIONS(5168), 1, + anon_sym_DOT, + STATE(350), 1, + sym__arg_list, + STATE(3168), 1, sym_type_params, - STATE(2619), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93779] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2310), 1, - aux_sym_package_statement_repeat1, - STATE(2384), 1, - sym_type_name, - STATE(2709), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [98905] = 4, + ACTIONS(5040), 1, + anon_sym_LT, + STATE(2961), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93802] = 6, - ACTIONS(151), 1, + ACTIONS(4558), 3, sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(292), 1, - sym__closing_brace, + anon_sym_COMMA, + anon_sym_DASH_GT, + [98921] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2374), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [93823] = 6, - ACTIONS(4098), 1, - sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(1438), 1, - sym__closing_brace, + ACTIONS(4582), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [98933] = 3, + ACTIONS(5032), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2334), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [93844] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - STATE(2311), 1, - aux_sym_package_statement_repeat1, - STATE(2670), 1, - sym_type_name, - STATE(2701), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, - ACTIONS(3), 2, + ACTIONS(1624), 4, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_EQ_GT, + [98947] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - [93867] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - STATE(2351), 1, - aux_sym_package_statement_repeat1, - STATE(2816), 1, - sym_type_name, - STATE(2817), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + ACTIONS(5230), 1, + sym_escape_sequence, + ACTIONS(5228), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [98963] = 5, + ACTIONS(2066), 1, + aux_sym_integer_token1, + ACTIONS(2068), 1, + aux_sym_integer_token2, + ACTIONS(5232), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93890] = 7, - ACTIONS(4324), 1, + STATE(1973), 2, + sym__parenthesized_expression, + sym_integer, + [98981] = 4, + ACTIONS(5172), 1, anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(534), 1, - sym_block, - STATE(2514), 1, + STATE(1585), 1, sym_type_params, - STATE(2515), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93913] = 5, - ACTIONS(4393), 1, - anon_sym_DOT, - ACTIONS(4397), 1, - anon_sym_QMARK, + ACTIONS(4548), 3, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [98997] = 5, + ACTIONS(5236), 1, + anon_sym_COLON, + ACTIONS(5238), 1, + anon_sym_EQ, + STATE(2230), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, + ACTIONS(5234), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [99015] = 5, + ACTIONS(85), 1, + aux_sym_integer_token1, + ACTIONS(87), 1, + aux_sym_integer_token2, + ACTIONS(5240), 1, anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4395), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [93932] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2318), 1, - aux_sym_package_statement_repeat1, - STATE(2423), 1, - sym_type_name, - STATE(2736), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93955] = 7, - ACTIONS(4324), 1, + STATE(1830), 2, + sym__parenthesized_expression, + sym_integer, + [99033] = 6, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(714), 1, - sym_block, - STATE(2571), 1, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5200), 1, + anon_sym_LPAREN, + STATE(1502), 1, + sym__arg_list, + STATE(3175), 1, sym_type_params, - STATE(2572), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [93978] = 5, - ACTIONS(3558), 1, - sym__lookback_semicolon, - ACTIONS(4399), 1, - anon_sym_else, - STATE(470), 1, - sym_else_clause, + [99053] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(2007), 1, + sym__arg_list, + STATE(3279), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1950), 3, + [99073] = 6, + ACTIONS(337), 1, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [93997] = 6, - ACTIONS(149), 1, - sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(217), 1, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(389), 1, sym__closing_brace, + STATE(2607), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2320), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [94018] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2315), 1, - aux_sym_package_statement_repeat1, - STATE(2372), 1, - sym_type_name, - STATE(2727), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [94041] = 5, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4401), 1, - anon_sym_DOT, - ACTIONS(4403), 1, - anon_sym_QMARK, + [99093] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 3, + ACTIONS(4650), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [94060] = 6, - ACTIONS(4407), 1, - anon_sym_COLON, - ACTIONS(4409), 1, - anon_sym_QMARK, - ACTIONS(4411), 1, + anon_sym_GT, anon_sym_EQ, - STATE(2170), 1, - sym__assignmentOperator, + [99107] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4405), 2, + ACTIONS(4544), 5, anon_sym_RPAREN, anon_sym_COMMA, - [94081] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2390), 1, - sym_type_name, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2711), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [99119] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94104] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2690), 1, - sym_type_name, - STATE(2796), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + ACTIONS(4562), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [99131] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94127] = 3, + ACTIONS(4638), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_EQ, + [99145] = 6, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5246), 1, + anon_sym_extends, + STATE(464), 1, + sym_block, + STATE(2825), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1046), 4, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [94142] = 7, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4332), 1, + [99165] = 6, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(804), 1, + ACTIONS(5248), 1, + anon_sym_extends, + STATE(796), 1, sym_block, - STATE(2560), 1, - sym_type_params, - STATE(2561), 1, + STATE(2598), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94165] = 7, - ACTIONS(4324), 1, + [99185] = 6, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(482), 1, - sym_block, - STATE(2488), 1, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5180), 1, + anon_sym_LPAREN, + STATE(1963), 1, + sym__arg_list, + STATE(3193), 1, sym_type_params, - STATE(2489), 1, - aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94188] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2414), 1, - sym_type_name, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2728), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [99205] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5168), 1, + anon_sym_DOT, + STATE(216), 1, + sym__arg_list, + STATE(3161), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94211] = 7, - ACTIONS(4318), 1, + [99225] = 5, + ACTIONS(5252), 1, sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2323), 1, + STATE(2505), 1, aux_sym_package_statement_repeat1, - STATE(2371), 1, - sym_type_name, - STATE(2698), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, + STATE(3468), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94234] = 6, - ACTIONS(153), 1, - sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(178), 1, - sym__closing_brace, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2339), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [94255] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, + ACTIONS(5250), 2, + anon_sym_STAR, sym__pascalCaseIdentifier, - STATE(2401), 1, - sym_type_name, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2712), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [99243] = 4, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(225), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94278] = 7, - ACTIONS(4324), 1, + ACTIONS(4544), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [99259] = 6, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(459), 1, - sym_block, - STATE(2467), 1, + ACTIONS(5038), 1, + anon_sym_LPAREN, + ACTIONS(5168), 1, + anon_sym_DOT, + STATE(378), 1, + sym__arg_list, + STATE(3151), 1, sym_type_params, - STATE(2468), 1, - aux_sym_interface_declaration_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [94301] = 6, - ACTIONS(149), 1, - sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(206), 1, - sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2374), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [94322] = 2, + [99279] = 5, + ACTIONS(5036), 1, + anon_sym_EQ, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + STATE(2254), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3975), 6, + ACTIONS(5034), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, + [99297] = 6, + ACTIONS(5018), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - [94335] = 7, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_block, - STATE(2492), 1, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(1802), 1, + sym__arg_list, + STATE(3236), 1, sym_type_params, - STATE(2493), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94358] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2396), 1, - sym_type_name, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2699), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [99317] = 5, + ACTIONS(5030), 1, + anon_sym_EQ, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + STATE(2233), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94381] = 7, - ACTIONS(4324), 1, + ACTIONS(5028), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [99335] = 6, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(682), 1, - sym_block, - STATE(2554), 1, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5180), 1, + anon_sym_LPAREN, + STATE(2038), 1, + sym__arg_list, + STATE(3115), 1, sym_type_params, - STATE(2555), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94404] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2398), 1, - sym_type_name, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2730), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [99355] = 6, + ACTIONS(552), 1, + sym__closing_brace_marker, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(1521), 1, + sym__closing_brace, + STATE(2688), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94427] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2387), 1, - sym_type_name, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2658), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [99375] = 3, + ACTIONS(5050), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1624), 4, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_EQ_GT, + [99389] = 6, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(4428), 1, + anon_sym_COMMA, + ACTIONS(4762), 1, + sym__closing_brace_marker, + STATE(1950), 1, + sym__closing_brace, + STATE(2530), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94450] = 4, - ACTIONS(4415), 1, - anon_sym_catch, - ACTIONS(3), 2, + [99409] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - STATE(2329), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(2722), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [94467] = 4, - ACTIONS(4415), 1, - anon_sym_catch, + ACTIONS(5257), 1, + sym_escape_sequence, + ACTIONS(5255), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99425] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(1768), 1, + sym__arg_list, + STATE(3252), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2329), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(2728), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [94484] = 4, - ACTIONS(4417), 1, - anon_sym_catch, + [99445] = 5, + ACTIONS(5259), 1, + anon_sym_DOT, + ACTIONS(5263), 1, + sym__lookback_semicolon, + STATE(577), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2329), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(2736), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [94501] = 4, - ACTIONS(4415), 1, - anon_sym_catch, + ACTIONS(5261), 2, + anon_sym_as, + anon_sym_in, + [99463] = 3, + ACTIONS(5080), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2329), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(2230), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [94518] = 3, + ACTIONS(1624), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [99477] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2329), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(2722), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [94533] = 3, + ACTIONS(4594), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [99489] = 5, + ACTIONS(2564), 1, + aux_sym_integer_token1, + ACTIONS(2566), 1, + aux_sym_integer_token2, + ACTIONS(5265), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2329), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(2728), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [94548] = 3, + STATE(1533), 2, + sym__parenthesized_expression, + sym_integer, + [99507] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2329), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(2230), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [94563] = 6, - ACTIONS(4098), 1, - sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(1448), 1, - sym__closing_brace, - ACTIONS(3), 2, + ACTIONS(4654), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_EQ, + [99521] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - STATE(2374), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [94584] = 7, - ACTIONS(4324), 1, + ACTIONS(5269), 1, + sym_escape_sequence, + ACTIONS(5267), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99537] = 6, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(673), 1, - sym_block, - STATE(2573), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5271), 1, + anon_sym_RBRACE, + STATE(201), 1, + sym__arg_list, + STATE(3147), 1, sym_type_params, - STATE(2575), 1, - aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94607] = 7, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4332), 1, + [99557] = 3, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5273), 4, anon_sym_LBRACE, - ACTIONS(4336), 1, + anon_sym_LT, + anon_sym_extends, anon_sym_implements, - STATE(748), 1, - sym_block, - STATE(2476), 1, + [99571] = 6, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5168), 1, + anon_sym_DOT, + STATE(234), 1, + sym__arg_list, + STATE(3201), 1, sym_type_params, - STATE(2477), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94630] = 7, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4336), 1, + [99591] = 5, + ACTIONS(5275), 1, + anon_sym_DOT, + ACTIONS(5279), 1, + sym__lookback_semicolon, + STATE(420), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5277), 2, + anon_sym_as, + anon_sym_in, + [99609] = 6, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(455), 1, + ACTIONS(5281), 1, + anon_sym_extends, + STATE(613), 1, sym_block, - STATE(2527), 1, - sym_type_params, - STATE(2528), 1, + STATE(2731), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94653] = 7, - ACTIONS(4324), 1, + [99629] = 6, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(662), 1, - sym_block, - STATE(2473), 1, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5200), 1, + anon_sym_LPAREN, + STATE(1552), 1, + sym__arg_list, + STATE(3242), 1, sym_type_params, - STATE(2474), 1, - aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94676] = 6, - ACTIONS(153), 1, - sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(135), 1, - sym__closing_brace, + [99649] = 5, + ACTIONS(2616), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2374), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [94697] = 4, - ACTIONS(4422), 1, - anon_sym_EQ, + [99666] = 5, + ACTIONS(4428), 1, + anon_sym_COMMA, + ACTIONS(4762), 1, + sym__closing_brace_marker, + STATE(1990), 1, + sym__closing_brace, + STATE(3006), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4420), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1086), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [94714] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2326), 1, - aux_sym_package_statement_repeat1, - STATE(2403), 1, - sym_type_name, - STATE(2656), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [99683] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3802), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94737] = 5, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4306), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_QMARK, + [99700] = 5, + ACTIONS(4082), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 3, - anon_sym_COMMA, + [99717] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, anon_sym_RBRACK, - sym_identifier, - [94756] = 6, - ACTIONS(151), 1, - sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(290), 1, - sym__closing_brace, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2297), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [94777] = 3, - ACTIONS(1104), 1, - anon_sym_EQ, + [99734] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1102), 5, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(4630), 4, + sym__closing_brace_marker, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ_GT, - [94792] = 7, - ACTIONS(4324), 1, + anon_sym_DASH_GT, anon_sym_LT, - ACTIONS(4332), 1, + [99745] = 5, + ACTIONS(4084), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [99762] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(737), 1, + STATE(695), 1, sym_block, - STATE(2450), 1, - sym_type_params, - STATE(2451), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94815] = 7, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4336), 1, + [99779] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(528), 1, + STATE(556), 1, sym_block, - STATE(2509), 1, - sym_type_params, - STATE(2510), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94838] = 5, - ACTIONS(4165), 1, - anon_sym_DOT, - ACTIONS(4167), 1, - anon_sym_QMARK, + [99796] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5287), 1, + sym__lookback_semicolon, + STATE(3386), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1050), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(4395), 2, + [99813] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5289), 1, anon_sym_COLON, - anon_sym_EQ_GT, - [94857] = 5, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4288), 1, - anon_sym_QMARK, + ACTIONS(5291), 1, + sym__lookback_semicolon, + STATE(3643), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - [94876] = 7, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(397), 1, - sym_block, - STATE(2541), 1, - sym_type_params, - STATE(2542), 1, - aux_sym_class_declaration_repeat3, + [99830] = 5, + ACTIONS(4042), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94899] = 6, - ACTIONS(147), 1, - sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(376), 1, - sym__closing_brace, + [99847] = 5, + ACTIONS(4130), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2374), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [94920] = 7, - ACTIONS(4318), 1, - sym__camelCaseIdentifier, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2769), 1, - sym_type_name, - STATE(2777), 1, - aux_sym__type_path_repeat1, - STATE(3281), 1, - sym_package_name, + [99864] = 5, + ACTIONS(3952), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94943] = 6, - ACTIONS(147), 1, + [99881] = 5, + ACTIONS(4428), 1, + anon_sym_COMMA, + ACTIONS(4756), 1, sym__closing_brace_marker, - ACTIONS(4389), 1, - anon_sym_case, - ACTIONS(4391), 1, - anon_sym_default, - STATE(372), 1, + STATE(1990), 1, sym__closing_brace, + STATE(3006), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2350), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [94964] = 7, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [99898] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(484), 1, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(713), 1, sym_block, - STATE(2532), 1, - sym_type_params, - STATE(2533), 1, + STATE(2633), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [94987] = 6, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3060), 1, - sym_identifier, - ACTIONS(3062), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, + [99915] = 5, + ACTIONS(4090), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, anon_sym_LBRACK, - STATE(2819), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [95007] = 2, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3940), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [95019] = 6, - ACTIONS(4324), 1, + [99932] = 5, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4346), 1, + ACTIONS(5293), 1, anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_DOT, - STATE(192), 1, - sym__arg_list, - STATE(2895), 1, + STATE(2539), 1, + sym__function_arg_list, + STATE(3192), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95039] = 5, - ACTIONS(4383), 1, - anon_sym_EQ, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - STATE(2173), 1, - sym__assignmentOperator, + [99949] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(714), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4381), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [95057] = 6, - ACTIONS(149), 1, - sym__closing_brace_marker, - ACTIONS(1960), 1, - anon_sym_EQ_GT, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(1527), 1, - sym__closing_brace, - STATE(2440), 1, - aux_sym_map_repeat1, + [99966] = 5, + ACTIONS(2630), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95077] = 4, - ACTIONS(4346), 1, - anon_sym_LPAREN, - STATE(175), 1, - sym__arg_list, + [99983] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(508), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3940), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [95093] = 4, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4430), 1, - sym_escape_sequence, - ACTIONS(4428), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [95109] = 4, - ACTIONS(4364), 1, - anon_sym_LT, - STATE(2659), 1, - sym_type_params, + [100000] = 5, + ACTIONS(4294), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3930), 3, - sym__closing_brace_marker, - anon_sym_COMMA, + [100017] = 5, + ACTIONS(4548), 1, anon_sym_DASH_GT, - [95125] = 6, - ACTIONS(4324), 1, + ACTIONS(5172), 1, anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(1441), 1, - sym__arg_list, - STATE(3037), 1, + ACTIONS(5295), 1, + sym__lookback_semicolon, + STATE(1585), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95145] = 4, - ACTIONS(4364), 1, - anon_sym_LT, - STATE(2660), 1, - sym_type_params, + [100034] = 5, + ACTIONS(4096), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3908), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [95161] = 4, - ACTIONS(3), 1, + [100051] = 5, + ACTIONS(4140), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4436), 1, - sym_escape_sequence, - ACTIONS(4434), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [95177] = 6, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3068), 1, - sym_identifier, - ACTIONS(3070), 1, + [100068] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3790), 1, anon_sym_RBRACK, - ACTIONS(3736), 1, + STATE(2469), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100085] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, anon_sym_LBRACK, - STATE(2674), 1, - aux_sym_array_repeat1, + ACTIONS(4118), 1, + anon_sym_RBRACE, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95197] = 4, - ACTIONS(3), 1, + [100102] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5297), 1, + sym__lookback_semicolon, + STATE(3320), 1, + sym_block, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4440), 1, - sym_escape_sequence, - ACTIONS(4438), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [95213] = 6, - ACTIONS(151), 1, - sym__closing_brace_marker, - ACTIONS(1960), 1, - anon_sym_EQ_GT, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(258), 1, - sym__closing_brace, - STATE(2631), 1, - aux_sym_map_repeat1, + [100119] = 5, + ACTIONS(4102), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95233] = 3, - ACTIONS(4424), 1, - anon_sym_DOT, + [100136] = 5, + ACTIONS(4142), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100153] = 5, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5299), 1, + anon_sym_RPAREN, + ACTIONS(5302), 1, + anon_sym_COMMA, + STATE(3079), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4442), 4, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_extends, - anon_sym_implements, - [95247] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, + [100170] = 4, + ACTIONS(5036), 1, + anon_sym_EQ, + STATE(2254), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3971), 4, + ACTIONS(5034), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [95261] = 4, - ACTIONS(3), 1, + [100185] = 5, + ACTIONS(4044), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1050), 1, - sym_escape_sequence, - ACTIONS(3991), 1, sym_comment, - ACTIONS(1054), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [95277] = 6, - ACTIONS(4324), 1, + [100202] = 4, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(1476), 1, - sym__arg_list, - STATE(2857), 1, + STATE(3273), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95297] = 6, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4444), 1, - anon_sym_LPAREN, - STATE(1549), 1, - sym__arg_list, - STATE(3125), 1, - sym_type_params, + ACTIONS(5304), 2, + anon_sym_LBRACE, + anon_sym_implements, + [100217] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(514), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95317] = 6, - ACTIONS(4336), 1, + [100234] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4446), 1, - anon_sym_extends, - STATE(540), 1, + STATE(515), 1, sym_block, - STATE(2519), 1, + STATE(2683), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95337] = 5, - ACTIONS(4448), 1, - anon_sym_case, - ACTIONS(4451), 1, - anon_sym_default, - ACTIONS(4454), 1, - sym__closing_brace_marker, + [100251] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(516), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2374), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [95355] = 6, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3056), 1, - sym_identifier, - ACTIONS(3058), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, - anon_sym_LBRACK, - STATE(2853), 1, - aux_sym_array_repeat1, + [100268] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5306), 1, + sym__lookback_semicolon, + STATE(3649), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95375] = 4, - ACTIONS(4399), 1, - anon_sym_else, - STATE(470), 1, - sym_else_clause, + [100285] = 5, + ACTIONS(3970), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1950), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [95391] = 6, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, + [100302] = 5, + ACTIONS(3972), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, anon_sym_LBRACK, - STATE(2785), 1, - aux_sym_array_repeat1, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95411] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, + [100319] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(802), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3999), 4, - anon_sym_RPAREN, + [100336] = 5, + ACTIONS(5308), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [95425] = 6, - ACTIONS(4456), 1, - sym__camelCaseIdentifier, - ACTIONS(4458), 1, - sym__lookback_semicolon, - STATE(449), 1, - sym__semicolon, - STATE(2666), 1, - sym_package_name, - STATE(2693), 1, - aux_sym_package_statement_repeat1, + ACTIONS(5310), 1, + sym__closing_brace_marker, + STATE(3032), 1, + sym__closing_brace, + STATE(3048), 1, + aux_sym_structure_type_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95445] = 4, - ACTIONS(3), 1, + [100353] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5312), 1, + anon_sym_COLON, + ACTIONS(5314), 1, + sym__lookback_semicolon, + STATE(3495), 1, + sym_block, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4462), 1, - sym_escape_sequence, - ACTIONS(4460), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [95461] = 4, - ACTIONS(4362), 1, - anon_sym_LPAREN, - STATE(265), 1, - sym__arg_list, + [100370] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(777), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3940), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [95477] = 6, - ACTIONS(1960), 1, - anon_sym_EQ_GT, - ACTIONS(3778), 1, - anon_sym_COMMA, - ACTIONS(4098), 1, - sym__closing_brace_marker, - STATE(1473), 1, - sym__closing_brace, - STATE(2584), 1, - aux_sym_map_repeat1, + [100387] = 5, + ACTIONS(4050), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95497] = 6, - ACTIONS(4332), 1, + [100404] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + STATE(522), 1, + sym_block, + STATE(2718), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100421] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4464), 1, - anon_sym_extends, - STATE(691), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(523), 1, sym_block, - STATE(2593), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95517] = 6, - ACTIONS(4324), 1, + [100438] = 5, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4362), 1, + ACTIONS(5293), 1, anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_DOT, - STATE(261), 1, - sym__arg_list, - STATE(3104), 1, + STATE(2612), 1, + sym__function_arg_list, + STATE(3281), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95537] = 6, - ACTIONS(153), 1, - sym__closing_brace_marker, - ACTIONS(1960), 1, - anon_sym_EQ_GT, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(163), 1, - sym__closing_brace, - STATE(2462), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [95557] = 4, + [100455] = 5, + ACTIONS(3978), 1, + sym__lookback_semicolon, ACTIONS(4466), 1, - anon_sym_LT, - STATE(1695), 1, - sym_type_params, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3930), 3, - sym__lookback_semicolon, + [100472] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - anon_sym_DASH_GT, - [95573] = 6, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_DOT, - STATE(185), 1, - sym__arg_list, - STATE(3066), 1, - sym_type_params, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(817), 1, + sym_block, + STATE(2613), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95593] = 5, - ACTIONS(4468), 1, - anon_sym_DOT, - ACTIONS(4472), 1, - sym__lookback_semicolon, - STATE(716), 1, - sym__semicolon, + [100489] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(818), 1, + sym_block, + STATE(2872), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4470), 2, - anon_sym_as, - anon_sym_in, - [95611] = 2, + [100506] = 5, + ACTIONS(3980), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3944), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + [100523] = 5, + ACTIONS(4548), 1, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [95623] = 6, - ACTIONS(4324), 1, + ACTIONS(5172), 1, anon_sym_LT, - ACTIONS(4362), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_DOT, - STATE(272), 1, - sym__arg_list, - STATE(3014), 1, + ACTIONS(5316), 1, + sym__lookback_semicolon, + STATE(1585), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95643] = 5, - ACTIONS(4474), 1, - anon_sym_DOT, - ACTIONS(4478), 1, + [100540] = 4, + ACTIONS(5320), 1, sym__lookback_semicolon, - STATE(485), 1, + STATE(819), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4476), 2, + ACTIONS(5318), 2, anon_sym_as, anon_sym_in, - [95661] = 4, + [100555] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(729), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100572] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3991), 1, + ACTIONS(4680), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4962), 1, + aux_sym_string_token3, + ACTIONS(5322), 1, + aux_sym_string_token4, + ACTIONS(5324), 1, sym_escape_sequence, - ACTIONS(4480), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [95677] = 2, + STATE(2604), 1, + aux_sym_string_repeat2, + [100591] = 5, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5038), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym__arg_list, + STATE(3245), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3956), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + [100608] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5285), 1, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [95689] = 6, - ACTIONS(4456), 1, - sym__camelCaseIdentifier, - ACTIONS(4484), 1, + ACTIONS(5326), 1, sym__lookback_semicolon, - STATE(783), 1, - sym__semicolon, - STATE(2681), 1, - sym_package_name, - STATE(2700), 1, - aux_sym_package_statement_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [95709] = 3, - ACTIONS(4356), 1, - anon_sym_COLON, + STATE(3408), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 4, + [100625] = 5, + ACTIONS(1778), 1, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(5080), 1, anon_sym_EQ_GT, - [95723] = 6, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4424), 1, + ACTIONS(5328), 1, anon_sym_DOT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(1449), 1, - sym__arg_list, - STATE(3023), 1, - sym_type_params, + ACTIONS(5330), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95743] = 4, - ACTIONS(4399), 1, - anon_sym_else, - STATE(520), 1, - sym_else_clause, - ACTIONS(3), 2, + [100642] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - ACTIONS(1978), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [95759] = 3, - ACTIONS(4424), 1, - anon_sym_DOT, + ACTIONS(5332), 1, + aux_sym_string_token3, + ACTIONS(5334), 1, + aux_sym_string_token4, + ACTIONS(5337), 1, + sym_escape_sequence, + STATE(2588), 1, + aux_sym_string_repeat2, + [100661] = 5, + ACTIONS(4182), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4486), 4, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_extends, - anon_sym_implements, - [95773] = 4, + [100678] = 5, + ACTIONS(4116), 1, + sym__lookback_semicolon, ACTIONS(4466), 1, - anon_sym_LT, - STATE(1696), 1, - sym_type_params, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3908), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [95789] = 6, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4488), 1, - anon_sym_LPAREN, - STATE(1837), 1, - sym__arg_list, - STATE(3043), 1, - sym_type_params, + [100695] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(4184), 1, + anon_sym_while, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95809] = 6, - ACTIONS(4324), 1, + [100712] = 5, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4488), 1, + ACTIONS(5293), 1, anon_sym_LPAREN, - STATE(1762), 1, - sym__arg_list, - STATE(2954), 1, + STATE(2713), 1, + sym__function_arg_list, + STATE(3237), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95829] = 6, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4490), 1, - anon_sym_extends, - STATE(645), 1, - sym_block, - STATE(2428), 1, - aux_sym_class_declaration_repeat3, + [100729] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4992), 1, + aux_sym_string_token3, + ACTIONS(5340), 1, + aux_sym_string_token4, + ACTIONS(5342), 1, + sym_escape_sequence, + STATE(2588), 1, + aux_sym_string_repeat2, + [100748] = 5, + ACTIONS(4152), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95849] = 6, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_DOT, - STATE(167), 1, - sym__arg_list, - STATE(3096), 1, - sym_type_params, + [100765] = 5, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5058), 1, + anon_sym_STAR, + STATE(2452), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95869] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, + [100782] = 3, + ACTIONS(5344), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3960), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [95883] = 3, - ACTIONS(4424), 1, + ACTIONS(1624), 3, anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [100795] = 5, + ACTIONS(2608), 1, + anon_sym_catch, + ACTIONS(4224), 1, + sym__lookback_semicolon, + ACTIONS(5347), 1, + anon_sym_else, + STATE(773), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4492), 4, + [100812] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_extends, + ACTIONS(5024), 1, anon_sym_implements, - [95897] = 5, - ACTIONS(4496), 1, - anon_sym_COLON, - ACTIONS(4498), 1, - anon_sym_EQ, - STATE(2171), 1, - sym__assignmentOperator, + STATE(789), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4494), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [95915] = 6, - ACTIONS(147), 1, - sym__closing_brace_marker, - ACTIONS(1960), 1, - anon_sym_EQ_GT, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(1765), 1, - sym__closing_brace, - STATE(2434), 1, - aux_sym_map_repeat1, + [100829] = 4, + ACTIONS(4210), 1, + sym__lookback_semicolon, + ACTIONS(5349), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95935] = 3, - ACTIONS(4344), 1, - anon_sym_COLON, + STATE(3092), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [100844] = 5, + ACTIONS(3996), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 4, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_EQ_GT, - [95949] = 6, - ACTIONS(4324), 1, + [100861] = 5, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5172), 1, anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4444), 1, - anon_sym_LPAREN, - STATE(1509), 1, - sym__arg_list, - STATE(2957), 1, + ACTIONS(5351), 1, + sym__lookback_semicolon, + STATE(1585), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95969] = 6, - ACTIONS(3038), 1, - sym_identifier, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_RBRACK, - ACTIONS(3736), 1, - anon_sym_LBRACK, - STATE(2731), 1, - aux_sym_array_repeat1, + [100878] = 5, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5293), 1, + anon_sym_LPAREN, + STATE(2741), 1, + sym__function_arg_list, + STATE(3265), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95989] = 5, - ACTIONS(4500), 1, - anon_sym_DOT, - ACTIONS(4504), 1, + [100895] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5353), 1, + anon_sym_COLON, + ACTIONS(5355), 1, sym__lookback_semicolon, - STATE(622), 1, - sym__semicolon, + STATE(3504), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4502), 2, - anon_sym_as, - anon_sym_in, - [96007] = 5, - ACTIONS(4506), 1, - anon_sym_DOT, - ACTIONS(4510), 1, - sym__lookback_semicolon, - STATE(466), 1, - sym__semicolon, - ACTIONS(3), 2, + [100912] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - ACTIONS(4508), 2, - anon_sym_as, - anon_sym_in, - [96025] = 6, - ACTIONS(4324), 1, + ACTIONS(4988), 1, + aux_sym_string_token3, + ACTIONS(5340), 1, + aux_sym_string_token4, + ACTIONS(5342), 1, + sym_escape_sequence, + STATE(2588), 1, + aux_sym_string_repeat2, + [100931] = 4, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4362), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_DOT, - STATE(277), 1, - sym__arg_list, - STATE(2989), 1, + STATE(3274), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96045] = 6, - ACTIONS(4324), 1, + ACTIONS(5357), 2, + anon_sym_LBRACE, + anon_sym_extends, + [100946] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(4144), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100963] = 5, + ACTIONS(337), 1, + sym__closing_brace_marker, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(353), 1, + sym__closing_brace, + STATE(3006), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100980] = 5, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4444), 1, + ACTIONS(5293), 1, anon_sym_LPAREN, - STATE(1503), 1, - sym__arg_list, - STATE(2913), 1, + STATE(2784), 1, + sym__function_arg_list, + STATE(3283), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96065] = 3, - ACTIONS(4328), 1, - anon_sym_COLON, + [100997] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(812), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 4, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, - anon_sym_EQ_GT, - [96079] = 5, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(4516), 1, + [101014] = 4, + ACTIONS(5263), 1, sym__lookback_semicolon, - STATE(447), 1, + STATE(577), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4514), 2, + ACTIONS(5261), 2, anon_sym_as, anon_sym_in, - [96097] = 6, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4518), 1, - anon_sym_extends, - STATE(474), 1, - sym_block, - STATE(2479), 1, - aux_sym_class_declaration_repeat3, + [101029] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3830), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96117] = 6, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LPAREN, - ACTIONS(4520), 1, - anon_sym_RBRACE, - STATE(153), 1, - sym__arg_list, - STATE(2988), 1, - sym_type_params, + [101046] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5359), 1, + anon_sym_COLON, + ACTIONS(5361), 1, + sym__lookback_semicolon, + STATE(3435), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96137] = 2, + [101063] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(814), 1, + sym_block, + STATE(2872), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3934), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [96149] = 5, - ACTIONS(4326), 1, - anon_sym_EQ, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - STATE(2174), 1, - sym__assignmentOperator, + [101080] = 5, + ACTIONS(4236), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4322), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [96167] = 6, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4522), 1, - anon_sym_extends, - STATE(758), 1, - sym_block, - STATE(2513), 1, - aux_sym_class_declaration_repeat3, + [101097] = 4, + ACTIONS(5365), 1, + sym__lookback_semicolon, + STATE(649), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96187] = 6, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4524), 1, - anon_sym_extends, - STATE(510), 1, - sym_block, - STATE(2499), 1, - aux_sym_class_declaration_repeat3, + ACTIONS(5363), 2, + anon_sym_as, + anon_sym_in, + [101112] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96207] = 6, - ACTIONS(4324), 1, + ACTIONS(4630), 4, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_LT, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4488), 1, - anon_sym_LPAREN, - STATE(1959), 1, - sym__arg_list, - STATE(3048), 1, - sym_type_params, + [101123] = 5, + ACTIONS(4178), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96227] = 5, - ACTIONS(4528), 1, - sym__camelCaseIdentifier, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(3281), 1, - sym_package_name, + [101140] = 5, + ACTIONS(3262), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4526), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [96245] = 5, - ACTIONS(4226), 1, - anon_sym_EQ_GT, - ACTIONS(4531), 1, - anon_sym_DOT, - ACTIONS(4533), 1, - anon_sym_QMARK, + [101157] = 3, + ACTIONS(4146), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1046), 2, + ACTIONS(5367), 3, sym__closing_brace_marker, - anon_sym_COMMA, - [96263] = 5, - ACTIONS(4535), 1, - anon_sym_DOT, - ACTIONS(4539), 1, + anon_sym_case, + anon_sym_default, + [101170] = 4, + ACTIONS(5196), 1, sym__lookback_semicolon, - STATE(664), 1, + STATE(591), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4537), 2, + ACTIONS(5194), 2, anon_sym_as, anon_sym_in, - [96281] = 4, - ACTIONS(4399), 1, - anon_sym_else, - STATE(491), 1, - sym_else_clause, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1974), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [96297] = 5, - ACTIONS(4332), 1, + [101185] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(683), 1, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(778), 1, sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + STATE(2872), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96314] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4543), 1, - anon_sym_COLON, - ACTIONS(4545), 1, + [101202] = 5, + ACTIONS(4146), 1, sym__lookback_semicolon, - STATE(3150), 1, - sym_block, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96331] = 3, - ACTIONS(3472), 1, + [101219] = 5, + ACTIONS(4058), 1, sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4547), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [96344] = 5, - ACTIONS(3038), 1, - sym_identifier, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_RBRACK, - STATE(2731), 1, - aux_sym_array_repeat1, + [101236] = 5, + ACTIONS(1778), 1, + anon_sym_RBRACE, + ACTIONS(4994), 1, + anon_sym_DOT, + ACTIONS(4996), 1, + anon_sym_QMARK, + ACTIONS(5050), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96361] = 5, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3090), 1, + [101253] = 5, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5369), 1, anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RPAREN, - STATE(2739), 1, - aux_sym__arg_list_repeat1, + ACTIONS(5371), 1, + anon_sym_GT, + STATE(3096), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96378] = 5, - ACTIONS(1046), 1, - anon_sym_COLON, - ACTIONS(4395), 1, - anon_sym_EQ_GT, - ACTIONS(4549), 1, - anon_sym_DOT, - ACTIONS(4551), 1, - anon_sym_QMARK, + [101270] = 5, + ACTIONS(3420), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96395] = 5, - ACTIONS(147), 1, - sym__closing_brace_marker, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(1876), 1, - sym__closing_brace, - STATE(2696), 1, - aux_sym_map_repeat1, + [101287] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(4128), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96412] = 6, - ACTIONS(3), 1, + [101304] = 4, + ACTIONS(3976), 1, + sym__lookback_semicolon, + ACTIONS(5373), 1, + anon_sym_catch, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4234), 1, - aux_sym_string_token3, - ACTIONS(4553), 1, - aux_sym_string_token4, - ACTIONS(4555), 1, - sym_escape_sequence, - STATE(2438), 1, - aux_sym_string_repeat2, - [96431] = 5, - ACTIONS(4324), 1, + STATE(626), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [101319] = 5, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4444), 1, + ACTIONS(5293), 1, anon_sym_LPAREN, - STATE(1496), 1, - sym__arg_list, - STATE(3070), 1, + STATE(2571), 1, + sym__function_arg_list, + STATE(3280), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96448] = 5, - ACTIONS(3040), 1, + [101336] = 5, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5369), 1, anon_sym_COMMA, - ACTIONS(3068), 1, - sym_identifier, - ACTIONS(3070), 1, - anon_sym_RBRACK, - STATE(2674), 1, - aux_sym_array_repeat1, + ACTIONS(5375), 1, + anon_sym_GT, + STATE(2907), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96465] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4304), 1, - aux_sym_string_token3, - ACTIONS(4557), 1, - aux_sym_string_token4, - ACTIONS(4559), 1, - sym_escape_sequence, - STATE(2601), 1, - aux_sym_string_repeat2, - [96484] = 5, - ACTIONS(1052), 1, + [101353] = 5, + ACTIONS(4060), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3150), 1, - anon_sym_RPAREN, - STATE(2663), 1, - aux_sym__arg_list_repeat1, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96501] = 5, - ACTIONS(149), 1, - sym__closing_brace_marker, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(1497), 1, - sym__closing_brace, - STATE(2696), 1, - aux_sym_map_repeat1, + [101370] = 5, + ACTIONS(4168), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96518] = 5, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3054), 1, - anon_sym_RBRACK, - STATE(2686), 1, - aux_sym_array_repeat1, + [101387] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(736), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96535] = 5, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(4561), 1, - anon_sym_RPAREN, - ACTIONS(4564), 1, - anon_sym_COMMA, - STATE(2779), 1, - aux_sym__function_type_args_repeat1, + [101404] = 5, + ACTIONS(3976), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96552] = 6, - ACTIONS(3), 1, + [101421] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(737), 1, + sym_block, + STATE(2811), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4246), 1, - aux_sym_string_token3, - ACTIONS(4566), 1, - aux_sym_string_token4, - ACTIONS(4568), 1, - sym_escape_sequence, - STATE(2456), 1, - aux_sym_string_repeat2, - [96571] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_LPAREN, - STATE(153), 1, - sym__arg_list, - STATE(2988), 1, - sym_type_params, + [101438] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(738), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96588] = 5, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_RPAREN, - STATE(2692), 1, - aux_sym__arg_list_repeat1, + [101455] = 4, + ACTIONS(5379), 1, + sym__lookback_semicolon, + STATE(801), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96605] = 5, - ACTIONS(4332), 1, + ACTIONS(5377), 2, + anon_sym_as, + anon_sym_in, + [101470] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(768), 1, + STATE(663), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96622] = 5, - ACTIONS(4332), 1, + [101487] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(781), 1, + STATE(665), 1, sym_block, - STATE(2818), 1, + STATE(2536), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96639] = 5, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4348), 1, - anon_sym_STAR, - STATE(2412), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [96656] = 5, - ACTIONS(3040), 1, + [101504] = 5, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, anon_sym_COMMA, - ACTIONS(3064), 1, - sym_identifier, - ACTIONS(3066), 1, - anon_sym_RBRACK, - STATE(2707), 1, - aux_sym_array_repeat1, + ACTIONS(5381), 1, + anon_sym_RPAREN, + STATE(3079), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96673] = 5, - ACTIONS(4332), 1, + [101521] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(784), 1, + STATE(666), 1, sym_block, - STATE(2548), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96690] = 5, - ACTIONS(4332), 1, + [101538] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(785), 1, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5384), 1, + sym__lookback_semicolon, + STATE(3687), 1, sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96707] = 5, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(4570), 1, + [101555] = 4, + ACTIONS(5030), 1, + anon_sym_EQ, + STATE(2233), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5028), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4572), 1, - anon_sym_GT, - STATE(2702), 1, - aux_sym_type_params_repeat1, + [101570] = 5, + ACTIONS(1778), 1, + anon_sym_in, + ACTIONS(5032), 1, + anon_sym_EQ_GT, + ACTIONS(5135), 1, + anon_sym_DOT, + ACTIONS(5137), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101587] = 4, + ACTIONS(5178), 1, + sym__lookback_semicolon, + STATE(803), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96724] = 5, - ACTIONS(3040), 1, + ACTIONS(5176), 2, + anon_sym_as, + anon_sym_in, + [101602] = 5, + ACTIONS(4204), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101619] = 5, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5172), 1, + anon_sym_LT, + ACTIONS(5386), 1, + sym__lookback_semicolon, + STATE(1585), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101636] = 4, + ACTIONS(5390), 1, + sym__lookback_semicolon, + STATE(419), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5388), 2, + anon_sym_as, + anon_sym_in, + [101651] = 4, + ACTIONS(5279), 1, + sym__lookback_semicolon, + STATE(420), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5277), 2, + anon_sym_as, + anon_sym_in, + [101666] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5392), 1, + sym__lookback_semicolon, + STATE(3403), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101683] = 5, + ACTIONS(3422), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101700] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4614), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(3060), 1, - sym_identifier, - ACTIONS(3062), 1, - anon_sym_RBRACK, - STATE(2819), 1, - aux_sym_array_repeat1, + anon_sym_DASH_GT, + [101711] = 5, + ACTIONS(4210), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96741] = 4, - ACTIONS(4383), 1, - anon_sym_EQ, - STATE(2173), 1, - sym__assignmentOperator, + [101728] = 4, + ACTIONS(5220), 1, + sym__lookback_semicolon, + STATE(807), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4381), 2, - anon_sym_RPAREN, + ACTIONS(5218), 2, + anon_sym_as, + anon_sym_in, + [101743] = 5, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, anon_sym_COMMA, - [96756] = 4, - ACTIONS(3510), 1, + ACTIONS(5394), 1, + anon_sym_RPAREN, + STATE(2903), 1, + aux_sym__function_type_args_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101760] = 5, + ACTIONS(3410), 1, sym__lookback_semicolon, - ACTIONS(4574), 1, - anon_sym_catch, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(617), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [96771] = 6, + [101777] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3991), 1, + ACTIONS(4680), 1, sym_comment, - ACTIONS(4302), 1, + ACTIONS(4998), 1, aux_sym_string_token3, - ACTIONS(4557), 1, + ACTIONS(5396), 1, aux_sym_string_token4, - ACTIONS(4559), 1, + ACTIONS(5398), 1, sym_escape_sequence, - STATE(2601), 1, + STATE(2593), 1, aux_sym_string_repeat2, - [96790] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4578), 1, - sym__lookback_semicolon, - STATE(3256), 1, - sym_block, + [101796] = 3, + ACTIONS(5400), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96807] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - STATE(2465), 1, - sym__function_arg_list, - STATE(3076), 1, - sym_type_params, + ACTIONS(1624), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ_GT, + [101809] = 5, + ACTIONS(4180), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96824] = 5, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4582), 1, - anon_sym_STAR, - STATE(2391), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + [101826] = 5, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(674), 1, + sym_block, + STATE(2699), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96841] = 5, - ACTIONS(4332), 1, + [101843] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(692), 1, + STATE(675), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96858] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4488), 1, - anon_sym_LPAREN, - STATE(1788), 1, - sym__arg_list, - STATE(2997), 1, - sym_type_params, + [101860] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96875] = 5, - ACTIONS(153), 1, + ACTIONS(4590), 4, sym__closing_brace_marker, - ACTIONS(3778), 1, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(179), 1, - sym__closing_brace, - STATE(2696), 1, - aux_sym_map_repeat1, + anon_sym_DASH_GT, + [101871] = 5, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5172), 1, + anon_sym_LT, + ACTIONS(5402), 1, + sym__lookback_semicolon, + STATE(1585), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96892] = 5, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - sym_identifier, - ACTIONS(3046), 1, - anon_sym_RBRACK, - STATE(2640), 1, - aux_sym_array_repeat1, + [101888] = 5, + ACTIONS(4062), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96909] = 5, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(4564), 1, - anon_sym_COMMA, - ACTIONS(4584), 1, - anon_sym_RPAREN, - STATE(2722), 1, - aux_sym__function_type_args_repeat1, + [101905] = 5, + ACTIONS(4068), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96926] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4586), 1, - anon_sym_COLON, - ACTIONS(4588), 1, + [101922] = 5, + ACTIONS(1778), 1, sym__lookback_semicolon, - STATE(3376), 1, - sym_block, + ACTIONS(5080), 1, + anon_sym_EQ_GT, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5406), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96943] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [101939] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4942), 1, + aux_sym_string_token3, + ACTIONS(5408), 1, + aux_sym_string_token4, + ACTIONS(5410), 1, + sym_escape_sequence, + STATE(2684), 1, + aux_sym_string_repeat2, + [101958] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - STATE(476), 1, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5412), 1, + sym__lookback_semicolon, + STATE(3599), 1, sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96960] = 5, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(477), 1, - sym_block, - STATE(2480), 1, - aux_sym_interface_declaration_repeat1, + [101975] = 5, + ACTIONS(4216), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96977] = 5, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(478), 1, - sym_block, - STATE(2828), 1, - aux_sym_interface_declaration_repeat1, + [101992] = 5, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5200), 1, + anon_sym_LPAREN, + STATE(1516), 1, + sym__arg_list, + STATE(3297), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96994] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4590), 1, - anon_sym_COLON, - ACTIONS(4592), 1, + [102009] = 4, + ACTIONS(5416), 1, sym__lookback_semicolon, - STATE(3314), 1, - sym_block, + STATE(442), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5414), 2, + anon_sym_as, + anon_sym_in, + [102024] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4968), 1, + aux_sym_string_token3, + ACTIONS(5418), 1, + aux_sym_string_token4, + ACTIONS(5420), 1, + sym_escape_sequence, + STATE(2695), 1, + aux_sym_string_repeat2, + [102043] = 5, + ACTIONS(3440), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97011] = 5, - ACTIONS(4324), 1, + [102060] = 5, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4580), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(2609), 1, - sym__function_arg_list, - STATE(3075), 1, + STATE(201), 1, + sym__arg_list, + STATE(3147), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97028] = 5, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_RPAREN, - STATE(2856), 1, - aux_sym__arg_list_repeat1, + [102077] = 5, + ACTIONS(1778), 1, + anon_sym_in, + ACTIONS(4984), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_QMARK, + ACTIONS(5032), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97045] = 5, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(4570), 1, - anon_sym_COMMA, - ACTIONS(4594), 1, - anon_sym_GT, - STATE(2648), 1, - aux_sym_type_params_repeat1, + [102094] = 5, + ACTIONS(4194), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97062] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(697), 1, - sym_block, - STATE(2610), 1, - aux_sym_interface_declaration_repeat1, + [102111] = 5, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5062), 1, + anon_sym_STAR, + STATE(2466), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97079] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(698), 1, - sym_block, - STATE(2828), 1, - aux_sym_interface_declaration_repeat1, + [102128] = 5, + ACTIONS(4064), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97096] = 2, + [102145] = 5, + ACTIONS(3982), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3975), 4, + [102162] = 4, + ACTIONS(4216), 1, sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT, - [97107] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(801), 1, - sym_block, - STATE(2559), 1, - aux_sym_class_declaration_repeat3, + ACTIONS(5422), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97124] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(802), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + STATE(623), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102177] = 4, + ACTIONS(5162), 1, + sym__lookback_semicolon, + STATE(764), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97141] = 4, - ACTIONS(4598), 1, - sym__lookback_semicolon, - STATE(699), 1, - sym__semicolon, + ACTIONS(5160), 2, + anon_sym_as, + anon_sym_in, + [102192] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4596), 2, + ACTIONS(5125), 4, + sym__lookback_semicolon, + anon_sym_DOT, anon_sym_as, anon_sym_in, - [97156] = 5, - ACTIONS(4336), 1, + [102203] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(502), 1, + STATE(538), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97173] = 5, - ACTIONS(4352), 1, + [102220] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4680), 1, + sym_comment, + ACTIONS(4932), 1, + aux_sym_string_token3, + ACTIONS(5340), 1, + aux_sym_string_token4, + ACTIONS(5342), 1, + sym_escape_sequence, + STATE(2588), 1, + aux_sym_string_repeat2, + [102239] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(503), 1, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(684), 1, sym_block, - STATE(2828), 1, - aux_sym_interface_declaration_repeat1, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97190] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4600), 1, - sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, + [102256] = 5, + ACTIONS(1778), 1, + anon_sym_COLON, + ACTIONS(5143), 1, + anon_sym_EQ_GT, + ACTIONS(5424), 1, + anon_sym_DOT, + ACTIONS(5426), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97207] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4602), 1, - anon_sym_COLON, - ACTIONS(4604), 1, - sym__lookback_semicolon, - STATE(3185), 1, - sym_block, + [102273] = 5, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5428), 1, + anon_sym_STAR, + STATE(2459), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97224] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4606), 1, - sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, + [102290] = 5, + ACTIONS(552), 1, + sym__closing_brace_marker, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(1537), 1, + sym__closing_brace, + STATE(3006), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97241] = 5, - ACTIONS(1046), 1, - sym__lookback_semicolon, - ACTIONS(4356), 1, + [102307] = 5, + ACTIONS(1778), 1, + anon_sym_COLON, + ACTIONS(5143), 1, anon_sym_EQ_GT, - ACTIONS(4608), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(4610), 1, + ACTIONS(5432), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97258] = 5, - ACTIONS(4426), 1, + [102324] = 4, + ACTIONS(4182), 1, + sym__lookback_semicolon, + ACTIONS(5422), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(633), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102339] = 5, + ACTIONS(4548), 1, anon_sym_DASH_GT, - ACTIONS(4564), 1, - anon_sym_COMMA, - ACTIONS(4612), 1, - anon_sym_RPAREN, - STATE(2779), 1, - aux_sym__function_type_args_repeat1, + ACTIONS(5172), 1, + anon_sym_LT, + ACTIONS(5434), 1, + sym__lookback_semicolon, + STATE(1585), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97275] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(511), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + [102356] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(4028), 1, + anon_sym_while, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97292] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4615), 1, - anon_sym_COLON, - ACTIONS(4617), 1, + [102373] = 5, + ACTIONS(4066), 1, sym__lookback_semicolon, - STATE(3277), 1, - sym_block, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97309] = 5, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(515), 1, - sym_block, - STATE(2505), 1, - aux_sym_interface_declaration_repeat1, + [102390] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97326] = 5, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(516), 1, - sym_block, - STATE(2828), 1, - aux_sym_interface_declaration_repeat1, - ACTIONS(3), 2, + [102407] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4680), 1, sym_comment, - [97343] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - STATE(2469), 1, - sym__function_arg_list, - STATE(2907), 1, - sym_type_params, + ACTIONS(5004), 1, + aux_sym_string_token3, + ACTIONS(5340), 1, + aux_sym_string_token4, + ACTIONS(5342), 1, + sym_escape_sequence, + STATE(2588), 1, + aux_sym_string_repeat2, + [102426] = 5, + ACTIONS(5436), 1, + anon_sym_STAR, + ACTIONS(5438), 1, + sym__pascalCaseIdentifier, + STATE(2696), 1, + aux_sym__type_path_repeat1, + STATE(3382), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97360] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4619), 1, + [102443] = 5, + ACTIONS(4224), 1, sym__lookback_semicolon, - STATE(3140), 1, - sym_block, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97377] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [102460] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - STATE(526), 1, + ACTIONS(5441), 1, + anon_sym_COLON, + ACTIONS(5443), 1, + sym__lookback_semicolon, + STATE(3356), 1, sym_block, - STATE(2508), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97394] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [102477] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(527), 1, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(703), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97411] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - STATE(2487), 1, - sym__function_arg_list, - STATE(3045), 1, - sym_type_params, + [102494] = 5, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5445), 1, + anon_sym_STAR, + STATE(2526), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97428] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4621), 1, + [102511] = 5, + ACTIONS(4108), 1, sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97445] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4623), 1, - sym__lookback_semicolon, - STATE(3417), 1, - sym_block, + [102528] = 5, + ACTIONS(341), 1, + sym__closing_brace_marker, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(228), 1, + sym__closing_brace, + STATE(3006), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102545] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(4196), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97462] = 2, + [102562] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3950), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [97473] = 4, - ACTIONS(4627), 1, + [102579] = 5, + ACTIONS(3431), 1, sym__lookback_semicolon, - STATE(663), 1, - sym__semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4625), 2, - anon_sym_as, - anon_sym_in, - [97488] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(535), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + [102596] = 5, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5302), 1, + anon_sym_COMMA, + ACTIONS(5447), 1, + anon_sym_RPAREN, + STATE(2903), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97505] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4629), 1, + [102613] = 5, + ACTIONS(2658), 1, sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97522] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4631), 1, - anon_sym_COLON, - ACTIONS(4633), 1, + [102630] = 5, + ACTIONS(4040), 1, sym__lookback_semicolon, - STATE(3145), 1, - sym_block, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97539] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - STATE(2504), 1, - sym__function_arg_list, - STATE(3094), 1, - sym_type_params, + [102647] = 5, + ACTIONS(2610), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97556] = 5, - ACTIONS(4336), 1, + [102664] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(541), 1, + STATE(614), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97573] = 5, - ACTIONS(4541), 1, + [102681] = 5, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4635), 1, - anon_sym_COLON, - ACTIONS(4637), 1, - sym__lookback_semicolon, - STATE(3175), 1, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(615), 1, sym_block, + STATE(2732), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97590] = 5, - ACTIONS(4352), 1, + [102698] = 5, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4413), 1, + ACTIONS(5139), 1, anon_sym_extends, - STATE(543), 1, + STATE(616), 1, sym_block, - STATE(2828), 1, + STATE(2872), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97607] = 4, - ACTIONS(4516), 1, + [102715] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, + anon_sym_COLON, + ACTIONS(5452), 1, sym__lookback_semicolon, - STATE(447), 1, - sym__semicolon, + STATE(3424), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4514), 2, - anon_sym_as, - anon_sym_in, - [97622] = 2, + [102732] = 3, + ACTIONS(2604), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3878), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [97633] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + ACTIONS(1852), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [102745] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(3994), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97650] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_block, - STATE(2523), 1, - aux_sym_class_declaration_repeat3, + [102762] = 5, + ACTIONS(4232), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102779] = 5, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1714), 1, + anon_sym_LBRACK, + ACTIONS(4154), 1, + anon_sym_RBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97667] = 5, - ACTIONS(4336), 1, + [102796] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(568), 1, + STATE(544), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97684] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, + [102813] = 5, + ACTIONS(5244), 1, anon_sym_DASH_GT, - ACTIONS(4639), 1, - sym__lookback_semicolon, - STATE(3224), 1, - sym_block, + ACTIONS(5369), 1, + anon_sym_COMMA, + ACTIONS(5454), 1, + anon_sym_GT, + STATE(2958), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97701] = 4, - ACTIONS(4539), 1, + [102830] = 4, + ACTIONS(5458), 1, sym__lookback_semicolon, - STATE(664), 1, + STATE(470), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4537), 2, + ACTIONS(5456), 2, anon_sym_as, anon_sym_in, - [97716] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, + [102845] = 5, + ACTIONS(5024), 1, anon_sym_implements, - STATE(722), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(545), 1, sym_block, - STATE(2818), 1, + STATE(2537), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97733] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(442), 1, - sym_block, - STATE(2526), 1, - aux_sym_class_declaration_repeat3, + [102862] = 5, + ACTIONS(3657), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97750] = 5, - ACTIONS(4336), 1, + [102879] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(452), 1, + STATE(546), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97767] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4641), 1, + [102896] = 3, + ACTIONS(4200), 1, sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97784] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4643), 1, + ACTIONS(5460), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [102909] = 5, + ACTIONS(4200), 1, sym__lookback_semicolon, - STATE(3264), 1, - sym_block, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97801] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4645), 1, + [102926] = 5, + ACTIONS(4110), 1, sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97818] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(489), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + [102943] = 5, + ACTIONS(3442), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97835] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4647), 1, + [102960] = 5, + ACTIONS(3648), 1, sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97852] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4649), 1, - anon_sym_COLON, - ACTIONS(4651), 1, + [102977] = 5, + ACTIONS(4006), 1, sym__lookback_semicolon, - STATE(3297), 1, - sym_block, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97869] = 5, - ACTIONS(4541), 1, + [102994] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - ACTIONS(4653), 1, - anon_sym_COLON, - ACTIONS(4655), 1, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5462), 1, sym__lookback_semicolon, - STATE(3184), 1, + STATE(3470), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97886] = 5, - ACTIONS(4336), 1, + [103011] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(555), 1, + STATE(429), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97903] = 3, - ACTIONS(1434), 1, - sym__lookback_semicolon, + [103028] = 5, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(430), 1, + sym_block, + STATE(2872), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1086), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [97916] = 4, - ACTIONS(3542), 1, + [103045] = 5, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5172), 1, + anon_sym_LT, + ACTIONS(5464), 1, sym__lookback_semicolon, - ACTIONS(4657), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(602), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [97931] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(387), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + STATE(1585), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97948] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(388), 1, - sym_block, - STATE(2539), 1, - aux_sym_class_declaration_repeat3, + [103062] = 5, + ACTIONS(3314), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97965] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [103079] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - STATE(389), 1, + ACTIONS(5466), 1, + anon_sym_COLON, + ACTIONS(5468), 1, + sym__lookback_semicolon, + STATE(3526), 1, sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97982] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + [103096] = 5, + ACTIONS(3412), 1, sym__lookback_semicolon, - STATE(3394), 1, - sym_block, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97999] = 5, - ACTIONS(4426), 1, + [103113] = 5, + ACTIONS(5244), 1, anon_sym_DASH_GT, - ACTIONS(4564), 1, + ACTIONS(5302), 1, anon_sym_COMMA, - ACTIONS(4661), 1, + ACTIONS(5470), 1, anon_sym_RPAREN, - STATE(2722), 1, + STATE(3079), 1, aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98016] = 4, - ACTIONS(4510), 1, - sym__lookback_semicolon, - STATE(466), 1, - sym__semicolon, + [103130] = 5, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(2016), 1, + sym__arg_list, + STATE(3264), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4508), 2, - anon_sym_as, - anon_sym_in, - [98031] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [103147] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(395), 1, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(704), 1, sym_block, - STATE(2633), 1, + STATE(2583), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98048] = 5, - ACTIONS(4336), 1, + [103164] = 5, + ACTIONS(5024), 1, anon_sym_implements, - ACTIONS(4352), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(436), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98065] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4664), 1, - sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98082] = 5, - ACTIONS(4541), 1, + [103181] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4666), 1, + ACTIONS(5473), 1, + anon_sym_COLON, + ACTIONS(5475), 1, sym__lookback_semicolon, - STATE(3460), 1, + STATE(3550), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98099] = 3, - ACTIONS(3520), 1, + [103198] = 5, + ACTIONS(3350), 1, sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4668), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [98112] = 3, - ACTIONS(4670), 1, - anon_sym_COLON, + [103215] = 4, + ACTIONS(4242), 1, + sym__lookback_semicolon, + ACTIONS(5373), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ_GT, - [98125] = 5, - ACTIONS(1046), 1, - anon_sym_COLON, - ACTIONS(4395), 1, - anon_sym_EQ_GT, - ACTIONS(4672), 1, - anon_sym_DOT, - ACTIONS(4674), 1, - anon_sym_QMARK, + STATE(643), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103230] = 5, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(440), 1, + sym_block, + STATE(2785), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98142] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [103247] = 5, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(410), 1, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(441), 1, sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + STATE(2872), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98159] = 5, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3078), 1, - anon_sym_RBRACK, - STATE(2683), 1, - aux_sym_array_repeat1, + [103264] = 5, + ACTIONS(4242), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98176] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_block, - STATE(2546), 1, - aux_sym_class_declaration_repeat3, + [103281] = 5, + ACTIONS(1778), 1, + anon_sym_RBRACE, + ACTIONS(4984), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_QMARK, + ACTIONS(5050), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98193] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [103298] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(418), 1, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(705), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98210] = 5, - ACTIONS(4541), 1, + [103315] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4676), 1, + ACTIONS(5477), 1, + anon_sym_COLON, + ACTIONS(5479), 1, sym__lookback_semicolon, - STATE(3173), 1, + STATE(3358), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98227] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3975), 4, - sym__closing_brace_marker, - anon_sym_COMMA, + [103332] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5285), 1, anon_sym_DASH_GT, - anon_sym_LT, - [98238] = 4, - ACTIONS(4504), 1, + ACTIONS(5481), 1, sym__lookback_semicolon, - STATE(622), 1, - sym__semicolon, + STATE(3505), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4502), 2, - anon_sym_as, - anon_sym_in, - [98253] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, + [103349] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(429), 1, + ACTIONS(5024), 1, + anon_sym_implements, + STATE(782), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98270] = 5, - ACTIONS(1046), 1, + [103366] = 5, + ACTIONS(4000), 1, sym__lookback_semicolon, - ACTIONS(4356), 1, - anon_sym_EQ_GT, - ACTIONS(4678), 1, - anon_sym_DOT, - ACTIONS(4680), 1, - anon_sym_QMARK, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98287] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(636), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + [103383] = 4, + ACTIONS(4288), 1, + sym__lookback_semicolon, + ACTIONS(5483), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98304] = 5, - ACTIONS(4682), 1, - anon_sym_COMMA, - ACTIONS(4684), 1, - sym__closing_brace_marker, - STATE(2587), 1, - aux_sym_structure_type_repeat1, - STATE(2788), 1, - sym__closing_brace, + STATE(960), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103398] = 5, + ACTIONS(2648), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98321] = 4, - ACTIONS(4688), 1, + [103415] = 5, + ACTIONS(4074), 1, sym__lookback_semicolon, - STATE(483), 1, - sym__semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4686), 2, - anon_sym_as, - anon_sym_in, - [98336] = 4, - ACTIONS(4478), 1, + [103432] = 5, + ACTIONS(3414), 1, sym__lookback_semicolon, - STATE(485), 1, - sym__semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4476), 2, - anon_sym_as, - anon_sym_in, - [98351] = 4, - ACTIONS(4326), 1, - anon_sym_EQ, - STATE(2174), 1, - sym__assignmentOperator, + [103449] = 4, + ACTIONS(4248), 1, + sym__lookback_semicolon, + ACTIONS(5485), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4322), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [98366] = 2, + STATE(599), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103464] = 4, + ACTIONS(4252), 1, + sym__lookback_semicolon, + ACTIONS(5487), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4387), 4, + STATE(2818), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103479] = 4, + ACTIONS(4256), 1, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_as, - anon_sym_in, - [98377] = 5, - ACTIONS(4332), 1, + ACTIONS(5485), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(603), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103494] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(735), 1, + STATE(743), 1, sym_block, - STATE(2447), 1, + STATE(2638), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98394] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, + [103511] = 5, + ACTIONS(4016), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103528] = 5, + ACTIONS(4248), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103545] = 5, + ACTIONS(5024), 1, anon_sym_implements, - STATE(736), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(450), 1, sym_block, - STATE(2818), 1, + STATE(2793), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98411] = 4, - ACTIONS(4472), 1, - sym__lookback_semicolon, - STATE(716), 1, - sym__semicolon, + [103562] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(451), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4470), 2, - anon_sym_as, - anon_sym_in, - [98426] = 5, - ACTIONS(1046), 1, - anon_sym_in, - ACTIONS(4328), 1, - anon_sym_EQ_GT, - ACTIONS(4401), 1, - anon_sym_DOT, - ACTIONS(4403), 1, - anon_sym_QMARK, + [103579] = 5, + ACTIONS(4112), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98443] = 5, - ACTIONS(3930), 1, + [103596] = 5, + ACTIONS(4548), 1, anon_sym_DASH_GT, - ACTIONS(4466), 1, + ACTIONS(5172), 1, anon_sym_LT, - ACTIONS(4690), 1, + ACTIONS(5489), 1, sym__lookback_semicolon, - STATE(1695), 1, + STATE(1585), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98460] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(644), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + [103613] = 5, + ACTIONS(4252), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98477] = 5, - ACTIONS(4332), 1, + [103630] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(647), 1, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5491), 1, + sym__lookback_semicolon, + STATE(3635), 1, sym_block, - STATE(2603), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98494] = 5, - ACTIONS(4332), 1, + [103647] = 5, + ACTIONS(4256), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103664] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(649), 1, + STATE(788), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98511] = 5, - ACTIONS(1046), 1, - anon_sym_in, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4328), 1, - anon_sym_EQ_GT, + [103681] = 5, + ACTIONS(4022), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98528] = 5, - ACTIONS(4541), 1, + [103698] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4692), 1, - sym__lookback_semicolon, - STATE(3387), 1, + STATE(459), 1, sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98545] = 5, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4694), 1, - anon_sym_STAR, - STATE(2426), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98562] = 5, - ACTIONS(1046), 1, - anon_sym_RBRACE, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4344), 1, - anon_sym_EQ_GT, + [103715] = 5, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5172), 1, + anon_sym_LT, + ACTIONS(5493), 1, + sym__lookback_semicolon, + STATE(1585), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98579] = 5, - ACTIONS(4696), 1, - anon_sym_STAR, - ACTIONS(4698), 1, - sym__pascalCaseIdentifier, - STATE(2566), 1, - aux_sym__type_path_repeat1, - STATE(3187), 1, - sym_type_name, + [103732] = 4, + ACTIONS(4260), 1, + sym__lookback_semicolon, + ACTIONS(5495), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98596] = 5, - ACTIONS(4332), 1, + STATE(608), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103747] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(655), 1, + ACTIONS(5497), 1, + anon_sym_COLON, + ACTIONS(5499), 1, + sym__lookback_semicolon, + STATE(3667), 1, sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98613] = 4, - ACTIONS(4703), 1, + [103764] = 5, + ACTIONS(4260), 1, sym__lookback_semicolon, - STATE(517), 1, - sym__semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4701), 2, - anon_sym_as, - anon_sym_in, - [98628] = 5, - ACTIONS(1950), 1, - anon_sym_catch, - ACTIONS(3568), 1, + [103781] = 5, + ACTIONS(4114), 1, sym__lookback_semicolon, - ACTIONS(4705), 1, - anon_sym_else, - STATE(791), 1, - sym_else_clause, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98645] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4707), 1, + [103798] = 4, + ACTIONS(4292), 1, sym__lookback_semicolon, - STATE(3254), 1, - sym_block, + ACTIONS(5501), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98662] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, + STATE(952), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103813] = 5, + ACTIONS(5024), 1, anon_sym_implements, - STATE(668), 1, - sym_block, - STATE(2612), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98679] = 5, - ACTIONS(4332), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(674), 1, + STATE(465), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98696] = 5, - ACTIONS(4332), 1, + [103830] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4413), 1, + ACTIONS(5139), 1, anon_sym_extends, - STATE(656), 1, + STATE(783), 1, sym_block, - STATE(2605), 1, + STATE(2621), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98713] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4709), 1, + [103847] = 4, + ACTIONS(4266), 1, sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, + ACTIONS(5149), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98730] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(657), 1, - sym_block, - STATE(2828), 1, - aux_sym_interface_declaration_repeat1, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103862] = 4, + ACTIONS(4270), 1, + sym__lookback_semicolon, + ACTIONS(5483), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98747] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4711), 1, + STATE(969), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103877] = 4, + ACTIONS(4274), 1, sym__lookback_semicolon, - STATE(3452), 1, - sym_block, + ACTIONS(5149), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98764] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4252), 1, - aux_sym_string_token3, - ACTIONS(4713), 1, - aux_sym_string_token4, - ACTIONS(4715), 1, - sym_escape_sequence, - STATE(2582), 1, - aux_sym_string_repeat2, - [98783] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(1469), 1, - sym__arg_list, - STATE(2985), 1, - sym_type_params, + STATE(2441), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103892] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5503), 1, + anon_sym_COLON, + ACTIONS(5505), 1, + sym__lookback_semicolon, + STATE(3693), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98800] = 5, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_RBRACK, - STATE(2785), 1, - aux_sym_array_repeat1, + [103909] = 5, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(467), 1, + sym_block, + STATE(2872), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98817] = 4, - ACTIONS(3530), 1, + [103926] = 5, + ACTIONS(4266), 1, sym__lookback_semicolon, - ACTIONS(4717), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2842), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [98832] = 3, - ACTIONS(4719), 1, - anon_sym_COLON, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [98845] = 6, + [103943] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3991), 1, + ACTIONS(4680), 1, sym_comment, - ACTIONS(4278), 1, + ACTIONS(4978), 1, aux_sym_string_token3, - ACTIONS(4557), 1, + ACTIONS(5507), 1, aux_sym_string_token4, - ACTIONS(4559), 1, + ACTIONS(5509), 1, sym_escape_sequence, - STATE(2601), 1, + STATE(2823), 1, aux_sym_string_repeat2, - [98864] = 4, - ACTIONS(4724), 1, - sym__lookback_semicolon, - STATE(546), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4722), 2, - anon_sym_as, - anon_sym_in, - [98879] = 5, - ACTIONS(3778), 1, - anon_sym_COMMA, - ACTIONS(4098), 1, - sym__closing_brace_marker, - STATE(1490), 1, - sym__closing_brace, - STATE(2696), 1, - aux_sym_map_repeat1, + [103962] = 5, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5180), 1, + anon_sym_LPAREN, + STATE(1943), 1, + sym__arg_list, + STATE(3220), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98896] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4726), 1, - anon_sym_COLON, - ACTIONS(4728), 1, + [103979] = 5, + ACTIONS(4222), 1, sym__lookback_semicolon, - STATE(3462), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98913] = 5, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3080), 1, - sym_identifier, - ACTIONS(3082), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98930] = 5, - ACTIONS(4682), 1, - anon_sym_COMMA, - ACTIONS(4684), 1, - sym__closing_brace_marker, - STATE(2710), 1, - sym__closing_brace, - STATE(2716), 1, - aux_sym_structure_type_repeat1, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98947] = 5, - ACTIONS(1052), 1, + [103996] = 5, + ACTIONS(4270), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_RPAREN, - STATE(2799), 1, - aux_sym__arg_list_repeat1, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98964] = 5, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(4570), 1, - anon_sym_COMMA, - ACTIONS(4730), 1, - anon_sym_GT, - STATE(2803), 1, - aux_sym_type_params_repeat1, + [104013] = 5, + ACTIONS(4032), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98981] = 5, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4350), 1, - anon_sym_STAR, - STATE(2388), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + [104030] = 5, + ACTIONS(4274), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98998] = 5, - ACTIONS(1046), 1, - anon_sym_RBRACE, - ACTIONS(4306), 1, - anon_sym_DOT, - ACTIONS(4308), 1, - anon_sym_QMARK, - ACTIONS(4344), 1, - anon_sym_EQ_GT, + [104047] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(480), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99015] = 5, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(4564), 1, - anon_sym_COMMA, - ACTIONS(4732), 1, - anon_sym_RPAREN, - STATE(2779), 1, - aux_sym__function_type_args_repeat1, + [104064] = 4, + ACTIONS(3362), 1, + anon_sym_else, + ACTIONS(5511), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99032] = 5, - ACTIONS(4332), 1, + STATE(2794), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104079] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(749), 1, + ACTIONS(5139), 1, + anon_sym_extends, + STATE(785), 1, sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99049] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - STATE(2585), 1, - sym__function_arg_list, - STATE(2981), 1, - sym_type_params, + STATE(2872), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99066] = 5, - ACTIONS(3930), 1, + [104096] = 5, + ACTIONS(4548), 1, anon_sym_DASH_GT, - ACTIONS(4466), 1, + ACTIONS(5172), 1, anon_sym_LT, - ACTIONS(4735), 1, + ACTIONS(5514), 1, sym__lookback_semicolon, - STATE(1695), 1, + STATE(1585), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99083] = 4, - ACTIONS(3578), 1, + [104113] = 4, + ACTIONS(4276), 1, sym__lookback_semicolon, - ACTIONS(4737), 1, + ACTIONS(5114), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(576), 2, + STATE(2370), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [99098] = 4, - ACTIONS(3582), 1, + [104128] = 4, + ACTIONS(4280), 1, sym__lookback_semicolon, - ACTIONS(4657), 1, + ACTIONS(5501), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(607), 2, + STATE(956), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [99113] = 4, - ACTIONS(3586), 1, + [104143] = 4, + ACTIONS(4284), 1, sym__lookback_semicolon, - ACTIONS(4737), 1, + ACTIONS(5114), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(580), 2, + STATE(2374), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [99128] = 5, - ACTIONS(4541), 1, + [104158] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_COLON, - ACTIONS(4741), 1, - sym__lookback_semicolon, - STATE(3239), 1, + STATE(481), 1, sym_block, + STATE(2549), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99145] = 4, - ACTIONS(4324), 1, - anon_sym_LT, - STATE(3005), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4743), 2, - anon_sym_LBRACE, + [104175] = 5, + ACTIONS(5024), 1, anon_sym_implements, - [99160] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4745), 1, - aux_sym_string_token3, - ACTIONS(4747), 1, - aux_sym_string_token4, - ACTIONS(4750), 1, - sym_escape_sequence, - STATE(2601), 1, - aux_sym_string_repeat2, - [99179] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4290), 1, - aux_sym_string_token3, - ACTIONS(4753), 1, - aux_sym_string_token4, - ACTIONS(4755), 1, - sym_escape_sequence, - STATE(2629), 1, - aux_sym_string_repeat2, - [99198] = 5, - ACTIONS(4332), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(715), 1, + STATE(482), 1, sym_block, - STATE(2818), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99215] = 4, - ACTIONS(4324), 1, - anon_sym_LT, - STATE(2861), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4757), 2, - anon_sym_LBRACE, - anon_sym_extends, - [99230] = 5, - ACTIONS(4332), 1, + [104192] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(684), 1, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5516), 1, + sym__lookback_semicolon, + STATE(3479), 1, sym_block, - STATE(2828), 1, - aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99247] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(760), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + [104209] = 5, + ACTIONS(4276), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99264] = 4, - ACTIONS(3590), 1, + [104226] = 5, + ACTIONS(4230), 1, sym__lookback_semicolon, - ACTIONS(4415), 1, - anon_sym_catch, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2327), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99279] = 4, - ACTIONS(3594), 1, + [104243] = 5, + ACTIONS(4280), 1, sym__lookback_semicolon, - ACTIONS(4415), 1, - anon_sym_catch, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2331), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99294] = 5, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4759), 1, - anon_sym_COLON, - ACTIONS(4761), 1, + [104260] = 5, + ACTIONS(4228), 1, sym__lookback_semicolon, - STATE(3190), 1, - sym_block, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99311] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - anon_sym_extends, - STATE(763), 1, - sym_block, - STATE(2828), 1, - aux_sym_interface_declaration_repeat1, + [104277] = 5, + ACTIONS(4036), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99328] = 5, - ACTIONS(3930), 1, - anon_sym_DASH_GT, - ACTIONS(4466), 1, - anon_sym_LT, - ACTIONS(4763), 1, + [104294] = 5, + ACTIONS(4284), 1, sym__lookback_semicolon, - STATE(1695), 1, - sym_type_params, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99345] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, + [104311] = 5, + ACTIONS(5024), 1, anon_sym_implements, - STATE(728), 1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(488), 1, sym_block, - STATE(2818), 1, + STATE(2563), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99362] = 4, - ACTIONS(2736), 1, - anon_sym_else, - ACTIONS(4765), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2613), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99377] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3991), 1, - sym_comment, - ACTIONS(4258), 1, - aux_sym_string_token3, - ACTIONS(4768), 1, - aux_sym_string_token4, - ACTIONS(4770), 1, - sym_escape_sequence, - STATE(2630), 1, - aux_sym_string_repeat2, - [99396] = 5, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4362), 1, - anon_sym_LPAREN, - STATE(253), 1, - sym__arg_list, - STATE(3113), 1, - sym_type_params, + [104328] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(489), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99413] = 5, - ACTIONS(4332), 1, + [104345] = 5, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(5024), 1, anon_sym_implements, - STATE(729), 1, + STATE(749), 1, sym_block, - STATE(2446), 1, + STATE(2906), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99430] = 4, - ACTIONS(3598), 1, + [104362] = 5, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5172), 1, + anon_sym_LT, + ACTIONS(5518), 1, sym__lookback_semicolon, - ACTIONS(4374), 1, - anon_sym_catch, + STATE(1585), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2274), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99445] = 4, - ACTIONS(3602), 1, + [104379] = 5, + ACTIONS(4078), 1, sym__lookback_semicolon, - ACTIONS(4374), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2278), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99460] = 5, - ACTIONS(4332), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - anon_sym_implements, - STATE(731), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99477] = 5, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3056), 1, - sym_identifier, - ACTIONS(3058), 1, - anon_sym_RBRACK, - STATE(2853), 1, - aux_sym_array_repeat1, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99494] = 5, - ACTIONS(4541), 1, + [104396] = 5, + ACTIONS(5283), 1, anon_sym_LBRACE, - ACTIONS(4576), 1, + ACTIONS(5285), 1, anon_sym_DASH_GT, - ACTIONS(4772), 1, + ACTIONS(5520), 1, sym__lookback_semicolon, - STATE(3291), 1, + STATE(3473), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99511] = 4, - ACTIONS(3538), 1, - sym__lookback_semicolon, - ACTIONS(4574), 1, - anon_sym_catch, + [104413] = 5, + ACTIONS(343), 1, + sym__closing_brace_marker, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(1761), 1, + sym__closing_brace, + STATE(3006), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(612), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99526] = 4, - ACTIONS(3618), 1, + [104430] = 4, + ACTIONS(4294), 1, sym__lookback_semicolon, - ACTIONS(4774), 1, + ACTIONS(5495), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(573), 2, + STATE(595), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [99541] = 4, - ACTIONS(4778), 1, + [104445] = 5, + ACTIONS(4288), 1, sym__lookback_semicolon, - STATE(767), 1, - sym__semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4776), 2, - anon_sym_as, - anon_sym_in, - [99556] = 3, + [104462] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2722), 2, + ACTIONS(3352), 2, anon_sym_catch, anon_sym_else, - STATE(2613), 2, + STATE(2794), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [99569] = 3, + [104475] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2728), 2, + ACTIONS(3358), 2, anon_sym_catch, anon_sym_else, - STATE(2613), 2, + STATE(2794), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [99582] = 3, + [104488] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2230), 2, + ACTIONS(3369), 2, anon_sym_catch, anon_sym_else, - STATE(2613), 2, + STATE(2794), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [99595] = 4, - ACTIONS(3608), 1, + [104501] = 5, + ACTIONS(5308), 1, + anon_sym_COMMA, + ACTIONS(5310), 1, + sym__closing_brace_marker, + STATE(2570), 1, + aux_sym_structure_type_repeat1, + STATE(2891), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104518] = 5, + ACTIONS(4038), 1, sym__lookback_semicolon, - ACTIONS(4780), 1, - anon_sym_catch, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2625), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99610] = 6, + [104535] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3991), 1, + ACTIONS(4680), 1, sym_comment, - ACTIONS(4284), 1, + ACTIONS(4990), 1, aux_sym_string_token3, - ACTIONS(4557), 1, + ACTIONS(5340), 1, aux_sym_string_token4, - ACTIONS(4559), 1, + ACTIONS(5342), 1, sym_escape_sequence, - STATE(2601), 1, + STATE(2588), 1, aux_sym_string_repeat2, - [99629] = 6, - ACTIONS(3), 1, + [104554] = 5, + ACTIONS(4292), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3991), 1, sym_comment, - ACTIONS(4300), 1, - aux_sym_string_token3, - ACTIONS(4557), 1, - aux_sym_string_token4, - ACTIONS(4559), 1, - sym_escape_sequence, - STATE(2601), 1, - aux_sym_string_repeat2, - [99648] = 5, - ACTIONS(151), 1, - sym__closing_brace_marker, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(266), 1, - sym__closing_brace, - STATE(2696), 1, - aux_sym_map_repeat1, + [104571] = 5, + ACTIONS(5024), 1, + anon_sym_implements, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(497), 1, + sym_block, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104588] = 5, + ACTIONS(4548), 1, + anon_sym_DASH_GT, + ACTIONS(5172), 1, + anon_sym_LT, + ACTIONS(5522), 1, + sym__lookback_semicolon, + STATE(1585), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99665] = 4, - ACTIONS(3614), 1, + [104605] = 5, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5524), 1, + anon_sym_COLON, + ACTIONS(5526), 1, sym__lookback_semicolon, - ACTIONS(4774), 1, - anon_sym_catch, + STATE(3393), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(586), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99680] = 5, - ACTIONS(4336), 1, - anon_sym_implements, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(416), 1, - sym_block, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + [104622] = 5, + ACTIONS(4080), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99697] = 3, - ACTIONS(4574), 1, - anon_sym_catch, + [104639] = 5, + ACTIONS(4094), 1, + sym__lookback_semicolon, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_DOT_DOT_DOT, + STATE(2493), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(615), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99709] = 4, - ACTIONS(3090), 1, + [104656] = 4, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_RPAREN, - STATE(2856), 1, - aux_sym__arg_list_repeat1, + ACTIONS(4172), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99723] = 3, - ACTIONS(4657), 1, - anon_sym_catch, + [104670] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5528), 1, + anon_sym_DOT, + ACTIONS(5530), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(591), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99735] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4782), 1, - sym__camelCaseIdentifier, - STATE(2929), 1, - sym_type_name, + [104684] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5424), 1, + anon_sym_DOT, + ACTIONS(5426), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99749] = 3, - ACTIONS(4784), 1, - sym__camelCaseIdentifier, + [104698] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5406), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4696), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [99761] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4786), 1, - sym__camelCaseIdentifier, - STATE(3082), 1, - sym_type_name, + [104712] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5532), 1, + anon_sym_DOT, + ACTIONS(5534), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99775] = 4, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(4788), 1, - anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_array_repeat1, + [104726] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4984), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99789] = 3, - ACTIONS(4574), 1, - anon_sym_catch, + [104740] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5224), 1, + anon_sym_DOT, + ACTIONS(5226), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(604), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [99801] = 2, + [104754] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5536), 1, + anon_sym_DOT, + ACTIONS(5538), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3956), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [99811] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4790), 1, - sym__camelCaseIdentifier, - STATE(3100), 1, - sym_type_name, + [104768] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5135), 1, + anon_sym_DOT, + ACTIONS(5137), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99825] = 4, - ACTIONS(4792), 1, - sym_identifier, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(3123), 1, - sym__parenthesized_expression, + [104782] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5542), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99839] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3214), 1, - anon_sym_RPAREN, - STATE(2662), 1, - aux_sym__arg_list_repeat1, + [104796] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5544), 1, + anon_sym_DOT, + ACTIONS(5546), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99853] = 4, - ACTIONS(1132), 1, + [104810] = 4, + ACTIONS(1888), 1, anon_sym_EQ_GT, - ACTIONS(4796), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(4798), 1, + ACTIONS(5432), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99867] = 3, - ACTIONS(4800), 1, - anon_sym_in, + [104824] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4974), 1, + anon_sym_DOT, + ACTIONS(4976), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4802), 2, - anon_sym_COLON, + [104838] = 4, + ACTIONS(1888), 1, anon_sym_EQ_GT, - [99879] = 4, - ACTIONS(4570), 1, - anon_sym_COMMA, - ACTIONS(4804), 1, - anon_sym_GT, - STATE(2781), 1, - aux_sym_type_params_repeat1, + ACTIONS(5010), 1, + anon_sym_DOT, + ACTIONS(5012), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99893] = 3, - ACTIONS(4806), 1, - sym__camelCaseIdentifier, + [104852] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5548), 1, + anon_sym_DOT, + ACTIONS(5550), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4696), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [99905] = 4, - ACTIONS(1132), 1, + [104866] = 4, + ACTIONS(1888), 1, anon_sym_EQ_GT, - ACTIONS(4306), 1, + ACTIONS(5552), 1, anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(5554), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99919] = 3, - ACTIONS(2728), 1, + [104880] = 3, + ACTIONS(5422), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2802), 2, + STATE(633), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [99931] = 2, + [104892] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3848), 1, + anon_sym_RBRACK, + STATE(2915), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4547), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [99941] = 4, - ACTIONS(3090), 1, + [104906] = 4, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(3150), 1, + ACTIONS(5556), 1, anon_sym_RPAREN, - STATE(2663), 1, + STATE(2889), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99955] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4808), 1, - sym__camelCaseIdentifier, - STATE(2979), 1, - sym_type_name, + [104920] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99969] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4810), 1, - sym__camelCaseIdentifier, - STATE(2987), 1, - sym_type_name, + ACTIONS(4562), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [104930] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3848), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99983] = 4, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2387), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + [104944] = 4, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5558), 1, + anon_sym_EQ, + STATE(3377), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99997] = 3, - ACTIONS(4812), 1, - sym__camelCaseIdentifier, + [104958] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4696), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [100009] = 4, - ACTIONS(4320), 1, + ACTIONS(5560), 3, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_COLON, + [104968] = 4, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5562), 1, + sym_identifier, + STATE(3149), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104982] = 4, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2356), 1, + STATE(2455), 1, sym_type_name, - STATE(2566), 1, + STATE(2696), 1, aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100023] = 2, + [104996] = 4, + ACTIONS(5564), 1, + anon_sym_COMMA, + ACTIONS(5567), 1, + anon_sym_GT, + STATE(2855), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3940), 3, - sym__closing_brace_marker, - anon_sym_COMMA, + [105010] = 3, + ACTIONS(5569), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [105022] = 3, + ACTIONS(5573), 1, anon_sym_DASH_GT, - [100033] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3944), 3, + ACTIONS(4650), 2, sym__closing_brace_marker, anon_sym_COMMA, - anon_sym_DASH_GT, - [100043] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RPAREN, - STATE(2774), 1, - aux_sym__arg_list_repeat1, + [105034] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100057] = 4, - ACTIONS(3090), 1, + ACTIONS(1970), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4814), 1, + anon_sym_EQ, + [105044] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3878), 1, anon_sym_RPAREN, - STATE(2775), 1, + STATE(2898), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100071] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RPAREN, - STATE(2775), 1, - aux_sym__arg_list_repeat1, + [105058] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(4994), 1, + anon_sym_DOT, + ACTIONS(4996), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100085] = 4, - ACTIONS(1978), 1, - anon_sym_catch, - ACTIONS(4705), 1, - anon_sym_else, - STATE(709), 1, - sym_else_clause, + [105072] = 4, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5575), 1, + anon_sym_EQ, + STATE(3391), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100099] = 3, - ACTIONS(2230), 1, - anon_sym_catch, + [105086] = 4, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(5577), 1, + anon_sym_RBRACK, + STATE(2978), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2802), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [100111] = 4, - ACTIONS(4816), 1, - anon_sym_DOT, - ACTIONS(4818), 1, - sym__lookback_semicolon, - STATE(445), 1, - sym__semicolon, + [105100] = 4, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5579), 1, + anon_sym_EQ, + STATE(3537), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100125] = 4, - ACTIONS(3090), 1, + [105114] = 4, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3128), 1, + ACTIONS(3790), 1, + anon_sym_RBRACK, + STATE(3061), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105128] = 4, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5581), 1, + anon_sym_EQ, + STATE(3398), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105142] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5583), 1, anon_sym_RPAREN, - STATE(2739), 1, - aux_sym__arg_list_repeat1, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100139] = 4, - ACTIONS(4340), 1, + [105156] = 4, + ACTIONS(5054), 1, sym__pascalCaseIdentifier, - ACTIONS(4820), 1, + ACTIONS(5585), 1, sym__camelCaseIdentifier, - STATE(3059), 1, + STATE(3188), 1, sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100153] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4822), 1, + [105170] = 3, + ACTIONS(5587), 1, sym__camelCaseIdentifier, - STATE(3073), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5436), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [105182] = 3, + ACTIONS(5373), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(631), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105194] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + STATE(2696), 1, + aux_sym__type_path_repeat1, + STATE(2963), 1, sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100167] = 4, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4824), 1, - sym__lookback_semicolon, - STATE(448), 1, - sym__semicolon, + [105208] = 3, + ACTIONS(5422), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100181] = 2, + STATE(624), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105220] = 4, + ACTIONS(5589), 1, + anon_sym_LBRACE, + ACTIONS(5591), 1, + anon_sym_extends, + STATE(2872), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3934), 3, - sym__closing_brace_marker, + [105234] = 4, + ACTIONS(3744), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [100191] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, + ACTIONS(5594), 1, + anon_sym_RPAREN, + STATE(2889), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105248] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACK, + STATE(2918), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105262] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3960), 2, + [105276] = 4, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5596), 1, sym__lookback_semicolon, - anon_sym_LBRACE, - [100203] = 3, - ACTIONS(4826), 1, - sym__camelCaseIdentifier, + STATE(767), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4696), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [100215] = 4, - ACTIONS(3040), 1, + [105290] = 4, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3054), 1, + ACTIONS(3866), 1, anon_sym_RBRACK, - STATE(2708), 1, + STATE(3011), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100229] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, + [105304] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(4132), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3971), 2, - sym__lookback_semicolon, - anon_sym_LBRACE, - [100241] = 4, - ACTIONS(3798), 1, + [105318] = 4, + ACTIONS(4494), 1, anon_sym_COMMA, - ACTIONS(4828), 1, + ACTIONS(5598), 1, anon_sym_RBRACK, - STATE(2724), 1, + STATE(2978), 1, aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100255] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, + [105332] = 3, + ACTIONS(5422), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3999), 2, - sym__lookback_semicolon, - anon_sym_LBRACE, - [100267] = 4, - ACTIONS(4340), 1, + STATE(640), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105344] = 4, + ACTIONS(5054), 1, sym__pascalCaseIdentifier, - ACTIONS(4830), 1, - sym__camelCaseIdentifier, - STATE(3114), 1, + STATE(2696), 1, + aux_sym__type_path_repeat1, + STATE(2979), 1, sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100281] = 3, - ACTIONS(4657), 1, + [105358] = 3, + ACTIONS(5373), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(602), 2, + STATE(638), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [100293] = 4, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4832), 1, - sym__lookback_semicolon, - STATE(665), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [100307] = 4, - ACTIONS(4816), 1, - anon_sym_DOT, - ACTIONS(4834), 1, - sym__lookback_semicolon, - STATE(621), 1, - sym__semicolon, + [105370] = 4, + ACTIONS(5018), 1, + anon_sym_LT, + ACTIONS(5600), 1, + anon_sym_EQ, + STATE(3319), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100321] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_RPAREN, - STATE(2692), 1, - aux_sym__arg_list_repeat1, + [105384] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5602), 1, + sym__camelCaseIdentifier, + STATE(3170), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100335] = 4, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(4836), 1, - anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_array_repeat1, + [105398] = 3, + ACTIONS(5373), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100349] = 3, - ACTIONS(4574), 1, + STATE(626), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105410] = 3, + ACTIONS(5349), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(600), 2, + STATE(2977), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [100361] = 4, - ACTIONS(4340), 1, + [105422] = 4, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - ACTIONS(4838), 1, - sym__camelCaseIdentifier, - STATE(2956), 1, + STATE(2525), 1, sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105436] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5604), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100375] = 4, - ACTIONS(3040), 1, + [105450] = 4, + ACTIONS(3888), 1, + anon_sym_RPAREN, + ACTIONS(5606), 1, anon_sym_COMMA, - ACTIONS(4840), 1, - anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_array_repeat1, + STATE(2889), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100389] = 4, - ACTIONS(4816), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - sym__lookback_semicolon, - STATE(465), 1, - sym__semicolon, + [105464] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5609), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100403] = 4, - ACTIONS(3090), 1, + [105478] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5611), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3126), 1, + anon_sym_EQ, + [105488] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5613), 1, anon_sym_RPAREN, - STATE(2697), 1, - aux_sym__arg_list_repeat1, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100417] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4844), 1, - anon_sym_DOT, - ACTIONS(4846), 1, - anon_sym_QMARK, + [105502] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100431] = 4, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4848), 1, - sym__lookback_semicolon, - STATE(467), 1, - sym__semicolon, + [105516] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5615), 1, + sym__camelCaseIdentifier, + STATE(3126), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100445] = 2, + [105530] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5617), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4668), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [100455] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3126), 1, + [105544] = 4, + ACTIONS(3742), 1, anon_sym_RPAREN, - STATE(2775), 1, + ACTIONS(3744), 1, + anon_sym_COMMA, + STATE(2924), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100469] = 4, - ACTIONS(4456), 1, - sym__camelCaseIdentifier, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2687), 1, - sym_package_name, + [105558] = 4, + ACTIONS(5619), 1, + anon_sym_RPAREN, + ACTIONS(5621), 1, + anon_sym_COMMA, + STATE(3013), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100483] = 4, - ACTIONS(4794), 1, - anon_sym_LPAREN, - ACTIONS(4850), 1, - sym_identifier, - STATE(2965), 1, - sym__parenthesized_expression, + [105572] = 4, + ACTIONS(3742), 1, + anon_sym_RPAREN, + ACTIONS(3744), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105586] = 3, + ACTIONS(3358), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100497] = 3, - ACTIONS(1960), 1, + STATE(2953), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105598] = 3, + ACTIONS(5400), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4852), 2, - sym__closing_brace_marker, + ACTIONS(5623), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [100509] = 4, - ACTIONS(4852), 1, - sym__closing_brace_marker, - ACTIONS(4854), 1, + [105610] = 4, + ACTIONS(3744), 1, anon_sym_COMMA, - STATE(2696), 1, - aux_sym_map_repeat1, + ACTIONS(3852), 1, + anon_sym_RPAREN, + STATE(2955), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105624] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5625), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105638] = 4, + ACTIONS(5302), 1, + anon_sym_COMMA, + ACTIONS(5627), 1, + anon_sym_RPAREN, + STATE(2993), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100523] = 4, - ACTIONS(3090), 1, + [105652] = 4, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(4857), 1, + ACTIONS(3850), 1, anon_sym_RPAREN, - STATE(2775), 1, + STATE(2950), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100537] = 4, - ACTIONS(4320), 1, + [105666] = 4, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2396), 1, + STATE(2516), 1, sym_type_name, - STATE(2566), 1, + STATE(2696), 1, aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100551] = 4, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2362), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + [105680] = 4, + ACTIONS(5629), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_implements, + STATE(2906), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100565] = 4, - ACTIONS(4456), 1, - sym__camelCaseIdentifier, - STATE(2424), 1, - aux_sym_package_statement_repeat1, - STATE(2713), 1, - sym_package_name, + [105694] = 4, + ACTIONS(5369), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_GT, + STATE(2855), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100579] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - STATE(2566), 1, - aux_sym__type_path_repeat1, - STATE(2690), 1, - sym_type_name, + [105708] = 3, + ACTIONS(5636), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100593] = 4, - ACTIONS(4570), 1, - anon_sym_COMMA, - ACTIONS(4859), 1, - anon_sym_GT, - STATE(2781), 1, - aux_sym_type_params_repeat1, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [105720] = 3, + ACTIONS(5638), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100607] = 4, - ACTIONS(1132), 1, + ACTIONS(5436), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [105732] = 4, + ACTIONS(1888), 1, anon_sym_EQ_GT, - ACTIONS(4861), 1, + ACTIONS(5640), 1, anon_sym_DOT, - ACTIONS(4863), 1, + ACTIONS(5642), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100621] = 2, + [105746] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4526), 3, - anon_sym_STAR, - sym__camelCaseIdentifier, - sym__pascalCaseIdentifier, - [100631] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, + ACTIONS(5460), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [105756] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5644), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3260), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [100643] = 4, - ACTIONS(4794), 1, - anon_sym_LPAREN, - ACTIONS(4865), 1, - sym_identifier, - STATE(3086), 1, - sym__parenthesized_expression, + [105770] = 3, + ACTIONS(5349), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100657] = 4, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(4867), 1, - anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_array_repeat1, + STATE(3092), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105782] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5646), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100671] = 4, - ACTIONS(3260), 1, - anon_sym_RBRACK, - ACTIONS(4869), 1, + [105796] = 4, + ACTIONS(3718), 1, anon_sym_COMMA, - STATE(2708), 1, + ACTIONS(4158), 1, + anon_sym_RBRACK, + STATE(3082), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100685] = 4, - ACTIONS(4320), 1, + [105810] = 4, + ACTIONS(5054), 1, sym__pascalCaseIdentifier, - STATE(2390), 1, + ACTIONS(5648), 1, + sym__camelCaseIdentifier, + STATE(3260), 1, sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100699] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4872), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [100709] = 4, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2413), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + [105824] = 3, + ACTIONS(5650), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100723] = 4, - ACTIONS(4320), 1, + ACTIONS(5436), 2, + anon_sym_STAR, sym__pascalCaseIdentifier, - STATE(2400), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + [105836] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3998), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100737] = 4, - ACTIONS(4816), 1, - anon_sym_DOT, - ACTIONS(4874), 1, - sym__lookback_semicolon, - STATE(707), 1, - sym__semicolon, + [105850] = 4, + ACTIONS(2608), 1, + anon_sym_catch, + ACTIONS(5347), 1, + anon_sym_else, + STATE(773), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100751] = 3, - ACTIONS(4670), 1, - anon_sym_EQ_GT, + [105864] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4876), 2, + ACTIONS(5652), 2, anon_sym_RPAREN, anon_sym_COMMA, - [100763] = 4, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4878), 1, - sym__lookback_semicolon, - STATE(487), 1, - sym__semicolon, + [105876] = 3, + ACTIONS(5422), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100777] = 4, - ACTIONS(4880), 1, - anon_sym_COMMA, - ACTIONS(4883), 1, - sym__closing_brace_marker, - STATE(2716), 1, - aux_sym_structure_type_repeat1, + STATE(630), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105888] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5654), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100791] = 3, - ACTIONS(4887), 1, - anon_sym_DASH_GT, + [105902] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5656), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4885), 2, - sym__closing_brace_marker, + [105916] = 4, + ACTIONS(3744), 1, anon_sym_COMMA, - [100803] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(4889), 1, - sym__camelCaseIdentifier, - STATE(2905), 1, - sym_type_name, + ACTIONS(5658), 1, + anon_sym_RPAREN, + STATE(2889), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100817] = 3, - ACTIONS(1960), 1, - anon_sym_EQ_GT, + [105930] = 3, + ACTIONS(5422), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4852), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [100829] = 3, - ACTIONS(4887), 1, - anon_sym_DASH_GT, + STATE(625), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105942] = 3, + ACTIONS(5660), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3960), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [100841] = 4, - ACTIONS(1132), 1, + ACTIONS(5571), 2, + anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4608), 1, + [105954] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5662), 1, anon_sym_DOT, - ACTIONS(4610), 1, + ACTIONS(5664), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100855] = 4, - ACTIONS(4564), 1, + [105968] = 3, + ACTIONS(5400), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5666), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4891), 1, + [105980] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5668), 1, anon_sym_RPAREN, - STATE(2832), 1, - aux_sym__function_type_args_repeat1, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100869] = 4, - ACTIONS(4794), 1, - anon_sym_LPAREN, - ACTIONS(4893), 1, - sym_identifier, - STATE(2931), 1, - sym__parenthesized_expression, + [105994] = 4, + ACTIONS(5670), 1, + anon_sym_DOT, + ACTIONS(5672), 1, + sym__lookback_semicolon, + STATE(798), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100883] = 4, - ACTIONS(4852), 1, - anon_sym_RBRACK, - ACTIONS(4895), 1, - anon_sym_COMMA, - STATE(2724), 1, - aux_sym_map_repeat1, + [106008] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5674), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100897] = 3, - ACTIONS(4887), 1, - anon_sym_DASH_GT, + [106022] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5676), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3971), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [100909] = 3, - ACTIONS(4887), 1, - anon_sym_DASH_GT, + [106036] = 4, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5678), 1, + sym__lookback_semicolon, + STATE(808), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3999), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [100921] = 4, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2414), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + [106050] = 3, + ACTIONS(5680), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100935] = 4, - ACTIONS(4320), 1, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [106062] = 4, + ACTIONS(5016), 1, sym__pascalCaseIdentifier, - STATE(2409), 1, + STATE(2468), 1, sym_type_name, - STATE(2566), 1, + STATE(2696), 1, aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100949] = 3, - ACTIONS(4898), 1, - sym__camelCaseIdentifier, + [106076] = 3, + ACTIONS(5682), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4696), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [100961] = 4, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2405), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [106088] = 3, + ACTIONS(5684), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100975] = 4, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3066), 1, - anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_array_repeat1, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [106100] = 3, + ACTIONS(5686), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100989] = 3, - ACTIONS(4657), 1, - anon_sym_catch, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [106112] = 3, + ACTIONS(5688), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(610), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [101001] = 4, - ACTIONS(1132), 1, + ACTIONS(5571), 2, + anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4900), 1, - anon_sym_DOT, - ACTIONS(4902), 1, - anon_sym_QMARK, + [106124] = 3, + ACTIONS(5690), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101015] = 4, - ACTIONS(3088), 1, - anon_sym_RPAREN, - ACTIONS(3090), 1, - anon_sym_COMMA, - STATE(2793), 1, - aux_sym__arg_list_repeat1, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [106136] = 3, + ACTIONS(5692), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101029] = 4, - ACTIONS(1132), 1, + ACTIONS(5571), 2, + anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4904), 1, - anon_sym_DOT, - ACTIONS(4906), 1, - anon_sym_QMARK, + [106148] = 3, + ACTIONS(5694), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101043] = 4, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2401), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [106160] = 3, + ACTIONS(5696), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101057] = 4, - ACTIONS(1132), 1, + ACTIONS(5571), 2, + anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4908), 1, - anon_sym_DOT, - ACTIONS(4910), 1, - anon_sym_QMARK, + [106172] = 3, + ACTIONS(5698), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101071] = 4, - ACTIONS(1132), 1, + ACTIONS(5571), 2, + anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4912), 1, - anon_sym_DOT, - ACTIONS(4914), 1, - anon_sym_QMARK, + [106184] = 3, + ACTIONS(5700), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [106196] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5702), 3, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_COLON, + [106206] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3750), 1, + anon_sym_RPAREN, + STATE(2889), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101085] = 4, - ACTIONS(3088), 1, + [106220] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5704), 1, anon_sym_RPAREN, - ACTIONS(3090), 1, + STATE(2469), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [106234] = 4, + ACTIONS(3744), 1, anon_sym_COMMA, - STATE(2775), 1, + ACTIONS(3872), 1, + anon_sym_RPAREN, + STATE(2975), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101099] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4916), 1, - anon_sym_DOT, - ACTIONS(4918), 1, - anon_sym_QMARK, + [106248] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RPAREN, + STATE(2889), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101113] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4920), 1, - anon_sym_DOT, - ACTIONS(4922), 1, - anon_sym_QMARK, + [106262] = 4, + ACTIONS(5706), 1, + anon_sym_RPAREN, + ACTIONS(5708), 1, + anon_sym_COMMA, + STATE(2951), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101127] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4924), 1, - anon_sym_DOT, - ACTIONS(4926), 1, - anon_sym_QMARK, + [106276] = 3, + ACTIONS(5483), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101141] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4928), 1, - anon_sym_DOT, - ACTIONS(4930), 1, - anon_sym_QMARK, + STATE(961), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106288] = 3, + ACTIONS(5711), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101155] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4932), 1, - anon_sym_DOT, - ACTIONS(4934), 1, - anon_sym_QMARK, + STATE(2953), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106300] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3806), 1, + anon_sym_RPAREN, + STATE(3014), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101169] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_QMARK, + [106314] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3806), 1, + anon_sym_RPAREN, + STATE(2889), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101183] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4549), 1, - anon_sym_DOT, - ACTIONS(4551), 1, - anon_sym_QMARK, + [106328] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3804), 1, + anon_sym_RPAREN, + STATE(3040), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101197] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4678), 1, - anon_sym_DOT, - ACTIONS(4680), 1, - anon_sym_QMARK, + [106342] = 4, + ACTIONS(5164), 1, + sym__camelCaseIdentifier, + STATE(2505), 1, + aux_sym_package_statement_repeat1, + STATE(3015), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101211] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4940), 1, - anon_sym_DOT, - ACTIONS(4942), 1, - anon_sym_QMARK, + [106356] = 4, + ACTIONS(5369), 1, + anon_sym_COMMA, + ACTIONS(5714), 1, + anon_sym_GT, + STATE(2855), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101225] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4286), 1, - anon_sym_DOT, - ACTIONS(4288), 1, - anon_sym_QMARK, + [106370] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101239] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4531), 1, - anon_sym_DOT, - ACTIONS(4533), 1, - anon_sym_QMARK, + ACTIONS(5716), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [106380] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101253] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4944), 1, - anon_sym_DOT, - ACTIONS(4946), 1, - anon_sym_QMARK, + ACTIONS(4544), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [106390] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101267] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4401), 1, - anon_sym_DOT, - ACTIONS(4403), 1, - anon_sym_QMARK, + ACTIONS(4594), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [106400] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3802), 1, + anon_sym_RBRACK, + STATE(2830), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101281] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4948), 1, + [106414] = 4, + ACTIONS(5168), 1, anon_sym_DOT, - ACTIONS(4950), 1, - anon_sym_QMARK, + ACTIONS(5718), 1, + sym__lookback_semicolon, + STATE(421), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101295] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4952), 1, - anon_sym_DOT, - ACTIONS(4954), 1, - anon_sym_QMARK, + [106428] = 3, + ACTIONS(5373), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101309] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4672), 1, - anon_sym_DOT, - ACTIONS(4674), 1, - anon_sym_QMARK, + STATE(643), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106440] = 4, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(5720), 1, + anon_sym_RBRACK, + STATE(2978), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101323] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4296), 1, - anon_sym_DOT, - ACTIONS(4298), 1, - anon_sym_QMARK, + [106454] = 3, + ACTIONS(5373), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101337] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4312), 1, - anon_sym_DOT, - ACTIONS(4314), 1, - anon_sym_QMARK, + STATE(644), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106466] = 3, + ACTIONS(5373), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101351] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4956), 1, - anon_sym_DOT, - ACTIONS(4958), 1, - anon_sym_QMARK, + STATE(645), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106478] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + STATE(2696), 1, + aux_sym__type_path_repeat1, + STATE(2876), 1, + sym_type_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [106492] = 4, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5722), 1, + sym_identifier, + STATE(3159), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101365] = 2, + [106506] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5724), 1, + sym__camelCaseIdentifier, + STATE(3172), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4960), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [101375] = 4, - ACTIONS(4962), 1, - anon_sym_RPAREN, - ACTIONS(4964), 1, + [106520] = 3, + ACTIONS(5573), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5726), 2, + sym__closing_brace_marker, anon_sym_COMMA, - STATE(2778), 1, - aux_sym__function_arg_list_repeat1, + [106532] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5728), 1, + sym__camelCaseIdentifier, + STATE(3178), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101389] = 4, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_EQ, - STATE(3158), 1, - sym_type_params, + [106546] = 3, + ACTIONS(5730), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101403] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(4968), 1, - anon_sym_DOT, - ACTIONS(4970), 1, - anon_sym_QMARK, + ACTIONS(5436), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [106558] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5732), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [106572] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(5734), 1, + anon_sym_RPAREN, + STATE(2889), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101417] = 4, - ACTIONS(1950), 1, - anon_sym_catch, - ACTIONS(4705), 1, - anon_sym_else, - STATE(791), 1, - sym_else_clause, + [106586] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101431] = 3, - ACTIONS(4574), 1, + ACTIONS(5736), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [106598] = 3, + ACTIONS(3369), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(617), 2, + STATE(2953), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [101443] = 4, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(4972), 1, - anon_sym_EQ, - STATE(3165), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101457] = 3, - ACTIONS(4670), 1, - anon_sym_EQ_GT, + [106610] = 4, + ACTIONS(5736), 1, + anon_sym_RBRACK, + ACTIONS(5738), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4974), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [101469] = 4, - ACTIONS(1974), 1, - anon_sym_catch, - ACTIONS(4705), 1, - anon_sym_else, - STATE(669), 1, - sym_else_clause, + [106624] = 4, + ACTIONS(5168), 1, + anon_sym_DOT, + ACTIONS(5741), 1, + sym__lookback_semicolon, + STATE(806), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101483] = 4, - ACTIONS(4324), 1, + [106638] = 4, + ACTIONS(5018), 1, anon_sym_LT, - ACTIONS(4976), 1, + ACTIONS(5743), 1, anon_sym_EQ, - STATE(3168), 1, + STATE(3574), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101497] = 4, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(4978), 1, - sym__lookback_semicolon, - STATE(717), 1, - sym__semicolon, + [106652] = 3, + ACTIONS(5573), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101511] = 4, - ACTIONS(3798), 1, + ACTIONS(4654), 2, + sym__closing_brace_marker, anon_sym_COMMA, - ACTIONS(4980), 1, - anon_sym_RBRACK, - STATE(2724), 1, - aux_sym_map_repeat1, + [106664] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5745), 1, + anon_sym_DOT, + ACTIONS(5747), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101525] = 3, - ACTIONS(4670), 1, + [106678] = 4, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2507), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [106692] = 3, + ACTIONS(5749), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5571), 2, + anon_sym_COLON, anon_sym_EQ_GT, + [106704] = 3, + ACTIONS(5483), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4982), 2, + STATE(962), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106716] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5751), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [101537] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3254), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [101549] = 2, + [106730] = 4, + ACTIONS(2642), 1, + anon_sym_catch, + ACTIONS(5347), 1, + anon_sym_else, + STATE(822), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4984), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [101559] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(4986), 1, - anon_sym_RPAREN, - STATE(2775), 1, - aux_sym__arg_list_repeat1, + [106744] = 3, + ACTIONS(5495), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101573] = 4, - ACTIONS(3254), 1, - anon_sym_RPAREN, - ACTIONS(4988), 1, + STATE(598), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106756] = 4, + ACTIONS(3718), 1, anon_sym_COMMA, - STATE(2775), 1, - aux_sym__arg_list_repeat1, + ACTIONS(3802), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101587] = 2, + [106770] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4991), 3, + ACTIONS(5753), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - [101597] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - STATE(2566), 1, - aux_sym__type_path_repeat1, - STATE(2680), 1, - sym_type_name, + [106780] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101611] = 4, - ACTIONS(4993), 1, + ACTIONS(5755), 2, anon_sym_RPAREN, - ACTIONS(4995), 1, anon_sym_COMMA, - STATE(2778), 1, - aux_sym__function_arg_list_repeat1, + [106792] = 3, + ACTIONS(5485), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101625] = 4, - ACTIONS(4564), 1, - anon_sym_COMMA, - ACTIONS(4998), 1, + STATE(599), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106804] = 4, + ACTIONS(5755), 1, anon_sym_RPAREN, - STATE(2832), 1, + ACTIONS(5757), 1, + anon_sym_COMMA, + STATE(2993), 1, aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101639] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, + [106818] = 3, + ACTIONS(5485), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5000), 2, - anon_sym_COMMA, - anon_sym_GT, - [101651] = 4, - ACTIONS(5000), 1, - anon_sym_GT, - ACTIONS(5002), 1, - anon_sym_COMMA, - STATE(2781), 1, - aux_sym_type_params_repeat1, + STATE(600), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106830] = 3, + ACTIONS(5485), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101665] = 4, - ACTIONS(1132), 1, - anon_sym_EQ_GT, - ACTIONS(5005), 1, - anon_sym_DOT, - ACTIONS(5007), 1, - anon_sym_QMARK, + STATE(602), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106842] = 3, + ACTIONS(5487), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2818), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106854] = 4, + ACTIONS(2652), 1, + anon_sym_catch, + ACTIONS(5347), 1, + anon_sym_else, + STATE(824), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101679] = 3, - ACTIONS(4717), 1, + [106868] = 3, + ACTIONS(5487), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2842), 2, + STATE(2819), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [101691] = 4, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(5009), 1, - anon_sym_EQ, - STATE(3392), 1, - sym_type_params, + [106880] = 3, + ACTIONS(5487), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101705] = 4, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3082), 1, - anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_array_repeat1, + STATE(2820), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106892] = 3, + ACTIONS(5485), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101719] = 4, - ACTIONS(3798), 1, - anon_sym_COMMA, - ACTIONS(5011), 1, - anon_sym_RBRACK, - STATE(2724), 1, - aux_sym_map_repeat1, + STATE(603), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106904] = 4, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2485), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101733] = 3, - ACTIONS(4717), 1, + [106918] = 3, + ACTIONS(5485), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2651), 2, + STATE(604), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [101745] = 2, + [106930] = 3, + ACTIONS(5485), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5013), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [101755] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_RPAREN, - STATE(2799), 1, - aux_sym__arg_list_repeat1, + STATE(605), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106942] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101769] = 3, - ACTIONS(4670), 1, + ACTIONS(4582), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [106952] = 3, + ACTIONS(1624), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5015), 2, - anon_sym_RPAREN, + ACTIONS(5736), 2, + sym__closing_brace_marker, anon_sym_COMMA, - [101781] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(5017), 1, - sym__camelCaseIdentifier, - STATE(3087), 1, - sym_type_name, + [106964] = 4, + ACTIONS(5736), 1, + sym__closing_brace_marker, + ACTIONS(5760), 1, + anon_sym_COMMA, + STATE(3006), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101795] = 3, - ACTIONS(5019), 1, - sym__camelCaseIdentifier, + [106978] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5763), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4696), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [101807] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(5021), 1, - anon_sym_RPAREN, - STATE(2775), 1, - aux_sym__arg_list_repeat1, + [106992] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101821] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, + ACTIONS(5767), 3, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_COLON, + [107002] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5023), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [101833] = 4, - ACTIONS(3040), 1, + ACTIONS(5250), 3, + anon_sym_STAR, + sym__camelCaseIdentifier, + sym__pascalCaseIdentifier, + [107012] = 4, + ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(5025), 1, + ACTIONS(3830), 1, anon_sym_RBRACK, - STATE(2708), 1, + STATE(2878), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101847] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - STATE(2566), 1, - aux_sym__type_path_repeat1, - STATE(2715), 1, - sym_type_name, + [107026] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3830), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101861] = 3, - ACTIONS(4717), 1, - anon_sym_catch, + [107040] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2665), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [101873] = 4, - ACTIONS(3090), 1, + ACTIONS(4638), 2, + sym__lookback_semicolon, + anon_sym_LBRACE, + [107052] = 4, + ACTIONS(5621), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(5769), 1, anon_sym_RPAREN, - STATE(2804), 1, - aux_sym__arg_list_repeat1, + STATE(2951), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101887] = 4, - ACTIONS(3090), 1, + [107066] = 4, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(5771), 1, anon_sym_RPAREN, - STATE(2775), 1, + STATE(2889), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101901] = 4, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(5027), 1, - anon_sym_EQ, - STATE(3215), 1, - sym_type_params, + [107080] = 4, + ACTIONS(5670), 1, + anon_sym_DOT, + ACTIONS(5773), 1, + sym__lookback_semicolon, + STATE(763), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101915] = 3, - ACTIONS(4774), 1, + [107094] = 3, + ACTIONS(5501), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(575), 2, + STATE(955), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [101927] = 3, - ACTIONS(5029), 1, - anon_sym_catch, + [107106] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + anon_sym_RPAREN, + STATE(2848), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2802), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [101939] = 4, - ACTIONS(4570), 1, - anon_sym_COMMA, - ACTIONS(5032), 1, - anon_sym_GT, - STATE(2781), 1, - aux_sym_type_params_repeat1, + [107120] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5775), 1, + anon_sym_DOT, + ACTIONS(5777), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101953] = 4, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(5034), 1, - anon_sym_RPAREN, - STATE(2775), 1, - aux_sym__arg_list_repeat1, + [107134] = 4, + ACTIONS(5670), 1, + anon_sym_DOT, + ACTIONS(5779), 1, + sym__lookback_semicolon, + STATE(576), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107148] = 3, + ACTIONS(5495), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101967] = 2, + STATE(608), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107160] = 3, + ACTIONS(5400), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1102), 3, + ACTIONS(5781), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [101977] = 3, - ACTIONS(4737), 1, + [107172] = 3, + ACTIONS(5495), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(576), 2, + STATE(609), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [101989] = 3, - ACTIONS(4737), 1, + [107184] = 3, + ACTIONS(5495), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(577), 2, + STATE(610), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102001] = 3, - ACTIONS(4737), 1, - anon_sym_catch, + [107196] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(579), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102013] = 3, - ACTIONS(4657), 1, - anon_sym_catch, + ACTIONS(4654), 2, + sym__lookback_semicolon, + anon_sym_LBRACE, + [107208] = 4, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5783), 1, + sym_identifier, + STATE(3269), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(607), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102025] = 3, - ACTIONS(4657), 1, - anon_sym_catch, + [107222] = 4, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2476), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(608), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102037] = 3, - ACTIONS(4657), 1, - anon_sym_catch, + [107236] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(609), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102049] = 3, - ACTIONS(4737), 1, + ACTIONS(4650), 2, + sym__lookback_semicolon, + anon_sym_LBRACE, + [107248] = 3, + ACTIONS(5501), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(580), 2, + STATE(952), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102061] = 3, - ACTIONS(4737), 1, - anon_sym_catch, + [107260] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5785), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(581), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102073] = 3, - ACTIONS(4737), 1, + [107274] = 3, + ACTIONS(5787), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107286] = 3, + ACTIONS(5501), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(582), 2, + STATE(949), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102085] = 4, - ACTIONS(4320), 1, - sym__pascalCaseIdentifier, - STATE(2398), 1, - sym_type_name, - STATE(2566), 1, - aux_sym__type_path_repeat1, + [107298] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102099] = 4, - ACTIONS(4424), 1, + ACTIONS(5789), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [107308] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3832), 1, + anon_sym_RBRACK, + STATE(2893), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107322] = 4, + ACTIONS(5168), 1, anon_sym_DOT, - ACTIONS(5036), 1, + ACTIONS(5791), 1, sym__lookback_semicolon, - STATE(623), 1, + STATE(579), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102113] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - STATE(2566), 1, - aux_sym__type_path_repeat1, - STATE(2769), 1, - sym_type_name, + [107336] = 3, + ACTIONS(5149), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102127] = 4, - ACTIONS(5038), 1, - anon_sym_LBRACE, - ACTIONS(5040), 1, - anon_sym_implements, - STATE(2818), 1, - aux_sym_class_declaration_repeat3, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107348] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5793), 1, + sym__camelCaseIdentifier, + STATE(3292), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102141] = 4, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3046), 1, - anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_array_repeat1, + [107362] = 3, + ACTIONS(5149), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102155] = 4, - ACTIONS(4794), 1, - anon_sym_LPAREN, - ACTIONS(5043), 1, - sym_identifier, - STATE(2958), 1, - sym__parenthesized_expression, + STATE(2438), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107374] = 3, + ACTIONS(5149), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102169] = 3, - ACTIONS(4415), 1, + STATE(2440), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107386] = 3, + ACTIONS(5483), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2327), 2, + STATE(969), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102181] = 4, - ACTIONS(3798), 1, + [107398] = 4, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(5045), 1, - anon_sym_RBRACK, - STATE(2724), 1, - aux_sym_map_repeat1, + ACTIONS(3828), 1, + anon_sym_RPAREN, + STATE(2889), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102195] = 3, - ACTIONS(4415), 1, + [107412] = 3, + ACTIONS(5483), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2328), 2, + STATE(966), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102207] = 3, - ACTIONS(4415), 1, + [107424] = 3, + ACTIONS(5483), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2330), 2, + STATE(970), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102219] = 3, - ACTIONS(4415), 1, + [107436] = 3, + ACTIONS(5149), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2331), 2, + STATE(2441), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102231] = 3, - ACTIONS(4415), 1, + [107448] = 4, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(5795), 1, + anon_sym_RBRACK, + STATE(2978), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107462] = 3, + ACTIONS(5149), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2332), 2, + STATE(2442), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102243] = 3, - ACTIONS(4415), 1, + [107474] = 3, + ACTIONS(5149), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2333), 2, + STATE(2443), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102255] = 4, - ACTIONS(5047), 1, - anon_sym_LBRACE, - ACTIONS(5049), 1, - anon_sym_extends, - STATE(2828), 1, - aux_sym_interface_declaration_repeat1, + [107486] = 4, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2472), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102269] = 3, - ACTIONS(4574), 1, - anon_sym_catch, + [107500] = 4, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5800), 1, + sym__closing_brace_marker, + STATE(3048), 1, + aux_sym_structure_type_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(613), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102281] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, + [107514] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5802), 1, + sym__camelCaseIdentifier, + STATE(3299), 1, + sym_type_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107528] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5804), 1, + sym__camelCaseIdentifier, + STATE(3298), 1, + sym_type_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107542] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5806), 1, + sym__camelCaseIdentifier, + STATE(3153), 1, + sym_type_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107556] = 4, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2528), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107570] = 3, + ACTIONS(5400), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5052), 2, + ACTIONS(5808), 2, anon_sym_RPAREN, anon_sym_COMMA, - [102293] = 3, - ACTIONS(4374), 1, - anon_sym_catch, + [107582] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_RPAREN, + STATE(2947), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2274), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102305] = 4, - ACTIONS(5052), 1, - anon_sym_RPAREN, - ACTIONS(5054), 1, + [107596] = 4, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2495), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [107610] = 4, + ACTIONS(3718), 1, anon_sym_COMMA, - STATE(2832), 1, - aux_sym__function_type_args_repeat1, + ACTIONS(3842), 1, + anon_sym_RBRACK, + STATE(2850), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102319] = 3, - ACTIONS(4374), 1, - anon_sym_catch, + [107624] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5810), 1, + sym__camelCaseIdentifier, + STATE(3156), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2275), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102331] = 3, - ACTIONS(4374), 1, - anon_sym_catch, + [107638] = 3, + ACTIONS(5812), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2277), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102343] = 3, - ACTIONS(4374), 1, - anon_sym_catch, + ACTIONS(5436), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [107650] = 3, + ACTIONS(5814), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107662] = 3, + ACTIONS(5816), 1, + sym__camelCaseIdentifier, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5436), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [107674] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(4192), 1, + anon_sym_RBRACK, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2278), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102355] = 3, - ACTIONS(4374), 1, - anon_sym_catch, + [107688] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3720), 1, + anon_sym_RBRACK, + STATE(2989), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2279), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102367] = 3, - ACTIONS(4374), 1, + [107702] = 3, + ACTIONS(5114), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2280), 2, + STATE(2370), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102379] = 4, - ACTIONS(4340), 1, - sym__pascalCaseIdentifier, - ACTIONS(5057), 1, - sym__camelCaseIdentifier, - STATE(2891), 1, - sym_type_name, + [107714] = 4, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(5818), 1, + anon_sym_RBRACK, + STATE(2978), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102393] = 3, - ACTIONS(4574), 1, + [107728] = 3, + ACTIONS(5114), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(612), 2, + STATE(2371), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102405] = 3, - ACTIONS(4774), 1, + [107740] = 3, + ACTIONS(5114), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(573), 2, + STATE(2373), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102417] = 3, - ACTIONS(4774), 1, + [107752] = 3, + ACTIONS(5501), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(574), 2, + STATE(956), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102429] = 3, - ACTIONS(2722), 1, + [107764] = 3, + ACTIONS(5349), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2802), 2, + STATE(2899), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102441] = 4, - ACTIONS(678), 1, - aux_sym_integer_token1, - ACTIONS(680), 1, - aux_sym_integer_token2, - STATE(3356), 1, - sym_integer, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102455] = 3, - ACTIONS(4780), 1, + [107776] = 3, + ACTIONS(5501), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2625), 2, + STATE(954), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102467] = 3, - ACTIONS(4780), 1, + [107788] = 3, + ACTIONS(5501), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2626), 2, + STATE(950), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102479] = 3, - ACTIONS(4780), 1, + [107800] = 3, + ACTIONS(5114), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2627), 2, + STATE(2374), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102491] = 4, - ACTIONS(4324), 1, - anon_sym_LT, - ACTIONS(5059), 1, - anon_sym_EQ, - STATE(3403), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102505] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5061), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [102515] = 2, + [107812] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5328), 1, + anon_sym_DOT, + ACTIONS(5330), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5063), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [102525] = 3, - ACTIONS(4774), 1, + [107826] = 3, + ACTIONS(5114), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(586), 2, + STATE(2375), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102537] = 3, - ACTIONS(4774), 1, + [107838] = 3, + ACTIONS(5114), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(587), 2, + STATE(2376), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102549] = 3, - ACTIONS(4774), 1, - anon_sym_catch, + [107850] = 4, + ACTIONS(5164), 1, + sym__camelCaseIdentifier, + STATE(2505), 1, + aux_sym_package_statement_repeat1, + STATE(3087), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(441), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102561] = 4, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_array_repeat1, + [107864] = 4, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5820), 1, + sym_identifier, + STATE(3288), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102575] = 4, - ACTIONS(4964), 1, - anon_sym_COMMA, - ACTIONS(5065), 1, - anon_sym_RPAREN, - STATE(2760), 1, - aux_sym__function_arg_list_repeat1, + [107878] = 3, + ACTIONS(5573), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102589] = 4, - ACTIONS(3798), 1, + ACTIONS(4638), 2, + sym__closing_brace_marker, anon_sym_COMMA, - ACTIONS(5067), 1, - anon_sym_RBRACK, - STATE(2724), 1, - aux_sym_map_repeat1, + [107890] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + STATE(2696), 1, + aux_sym__type_path_repeat1, + STATE(3101), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102603] = 4, - ACTIONS(3090), 1, + [107904] = 4, + ACTIONS(5302), 1, anon_sym_COMMA, - ACTIONS(3214), 1, - anon_sym_RPAREN, - STATE(2775), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102617] = 3, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(1493), 1, - sym__arg_list, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102628] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3572), 1, + ACTIONS(5822), 1, anon_sym_RPAREN, + STATE(2993), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102639] = 3, - ACTIONS(5069), 1, - sym__lookback_semicolon, - STATE(495), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102650] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4645), 1, - sym__lookback_semicolon, + [107918] = 4, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2460), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102661] = 2, + [107932] = 3, + ACTIONS(5422), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5071), 2, - anon_sym_LBRACE, - anon_sym_extends, - [102670] = 3, - ACTIONS(3400), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(623), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107944] = 4, + ACTIONS(3936), 1, + anon_sym_RBRACK, + ACTIONS(5824), 1, + anon_sym_COMMA, + STATE(3082), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102681] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4647), 1, - sym__lookback_semicolon, + [107958] = 4, + ACTIONS(5016), 1, + sym__pascalCaseIdentifier, + STATE(2511), 1, + sym_type_name, + STATE(2696), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102692] = 3, - ACTIONS(3870), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_QMARK, + [107972] = 3, + ACTIONS(5827), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102703] = 3, - ACTIONS(4794), 1, + ACTIONS(5571), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107984] = 4, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(38), 1, + ACTIONS(5829), 1, + sym_identifier, + STATE(3290), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102714] = 3, - ACTIONS(4346), 1, - anon_sym_LPAREN, - STATE(3383), 1, - sym__arg_list, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102725] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4690), 1, - sym__lookback_semicolon, + [107998] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102736] = 3, - ACTIONS(3464), 1, + ACTIONS(5367), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [108008] = 4, + ACTIONS(5670), 1, + anon_sym_DOT, + ACTIONS(5831), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(590), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102747] = 3, - ACTIONS(3318), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108022] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102758] = 3, - ACTIONS(5073), 1, + ACTIONS(5567), 2, + anon_sym_COMMA, + anon_sym_GT, + [108034] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5833), 1, anon_sym_DOT, - ACTIONS(5075), 1, + ACTIONS(5835), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102769] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102780] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5077), 2, - sym__lookback_semicolon, - anon_sym_DOT, - [102789] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3504), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102800] = 3, - ACTIONS(5079), 1, - anon_sym_DOT, - ACTIONS(5081), 1, - anon_sym_QMARK, + [108048] = 3, + ACTIONS(5495), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102811] = 3, - ACTIONS(4794), 1, + STATE(595), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108060] = 4, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(54), 1, + ACTIONS(5837), 1, + sym_identifier, + STATE(3195), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102822] = 3, - ACTIONS(1996), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102833] = 3, - ACTIONS(5083), 1, - anon_sym_DOT, - ACTIONS(5085), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102844] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym__parenthesized_expression, + [108074] = 3, + ACTIONS(3352), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102855] = 3, - ACTIONS(3402), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(2953), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108086] = 4, + ACTIONS(3718), 1, + anon_sym_COMMA, + ACTIONS(3774), 1, + anon_sym_RBRACK, + STATE(2875), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102866] = 3, - ACTIONS(1984), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108100] = 3, + ACTIONS(5495), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102877] = 3, - ACTIONS(5087), 1, + STATE(596), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108112] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5839), 1, anon_sym_DOT, - ACTIONS(5089), 1, + ACTIONS(5841), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102888] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(87), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102899] = 3, - ACTIONS(3404), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108126] = 4, + ACTIONS(5369), 1, + anon_sym_COMMA, + ACTIONS(5843), 1, + anon_sym_GT, + STATE(2855), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102910] = 3, - ACTIONS(5091), 1, + [108140] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5845), 1, anon_sym_DOT, - ACTIONS(5093), 1, + ACTIONS(5847), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102921] = 3, - ACTIONS(1990), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108154] = 4, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5849), 1, + anon_sym_RPAREN, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102932] = 3, - ACTIONS(5095), 1, + [108168] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5851), 1, anon_sym_DOT, - ACTIONS(5097), 1, + ACTIONS(5853), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102943] = 3, - ACTIONS(2788), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102954] = 3, - ACTIONS(5099), 1, + [108182] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5855), 1, anon_sym_DOT, - ACTIONS(5101), 1, + ACTIONS(5857), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102965] = 3, - ACTIONS(5103), 1, - sym__lookback_semicolon, - STATE(625), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102976] = 3, - ACTIONS(5105), 1, + [108196] = 4, + ACTIONS(5168), 1, anon_sym_DOT, - ACTIONS(5107), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102987] = 3, - ACTIONS(5109), 1, + ACTIONS(5859), 1, sym__lookback_semicolon, - STATE(626), 1, + STATE(592), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102998] = 3, - ACTIONS(4128), 1, - anon_sym_DOT, - ACTIONS(5111), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103009] = 3, - ACTIONS(3406), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103020] = 3, - ACTIONS(5113), 1, + [108210] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5861), 1, anon_sym_DOT, - ACTIONS(5115), 1, + ACTIONS(5863), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103031] = 3, - ACTIONS(4346), 1, - anon_sym_LPAREN, - STATE(197), 1, - sym__arg_list, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103042] = 3, - ACTIONS(5117), 1, + [108224] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5865), 1, anon_sym_DOT, - ACTIONS(5119), 1, + ACTIONS(5867), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103053] = 3, - ACTIONS(2769), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108238] = 4, + ACTIONS(3744), 1, + anon_sym_COMMA, + ACTIONS(3750), 1, + anon_sym_RPAREN, + STATE(2873), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103064] = 3, - ACTIONS(4165), 1, - anon_sym_DOT, - ACTIONS(4167), 1, - anon_sym_QMARK, + [108252] = 4, + ACTIONS(5054), 1, + sym__pascalCaseIdentifier, + ACTIONS(5869), 1, + sym__camelCaseIdentifier, + STATE(3224), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103075] = 3, - ACTIONS(5121), 1, + [108266] = 4, + ACTIONS(1888), 1, + anon_sym_EQ_GT, + ACTIONS(5871), 1, anon_sym_DOT, - ACTIONS(5123), 1, + ACTIONS(5873), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103086] = 3, - ACTIONS(4370), 1, - anon_sym_DOT, - ACTIONS(4372), 1, - anon_sym_QMARK, + [108280] = 3, + ACTIONS(5483), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103097] = 3, - ACTIONS(4627), 1, + STATE(960), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108292] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5434), 1, sym__lookback_semicolon, - STATE(663), 1, - sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103108] = 3, - ACTIONS(5125), 1, + [108303] = 3, + ACTIONS(5875), 1, anon_sym_DOT, - ACTIONS(5127), 1, + ACTIONS(5877), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103119] = 3, - ACTIONS(2786), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103130] = 3, - ACTIONS(4230), 1, - anon_sym_DOT, - ACTIONS(4232), 1, - anon_sym_QMARK, + [108314] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103141] = 3, - ACTIONS(4539), 1, + [108325] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5295), 1, sym__lookback_semicolon, - STATE(664), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103152] = 3, - ACTIONS(4112), 1, - anon_sym_DOT, - ACTIONS(4114), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103163] = 3, - ACTIONS(4580), 1, + [108336] = 3, + ACTIONS(5038), 1, anon_sym_LPAREN, - STATE(2482), 1, - sym__function_arg_list, + STATE(375), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103174] = 3, - ACTIONS(5129), 1, + [108347] = 3, + ACTIONS(5879), 1, anon_sym_DOT, - ACTIONS(5131), 1, + ACTIONS(5881), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103185] = 3, - ACTIONS(4794), 1, + [108358] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(23), 1, + STATE(63), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103196] = 3, - ACTIONS(4102), 1, - anon_sym_DOT, - ACTIONS(4104), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103207] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3242), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [103216] = 3, - ACTIONS(5133), 1, - anon_sym_DOT, - ACTIONS(5135), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103227] = 3, - ACTIONS(4444), 1, + [108369] = 3, + ACTIONS(5180), 1, anon_sym_LPAREN, - STATE(1508), 1, + STATE(2043), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103238] = 3, - ACTIONS(5137), 1, + [108380] = 3, + ACTIONS(5883), 1, anon_sym_DOT, - ACTIONS(5139), 1, + ACTIONS(5885), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103249] = 3, - ACTIONS(3410), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103260] = 3, - ACTIONS(4393), 1, + [108391] = 3, + ACTIONS(4828), 1, anon_sym_DOT, - ACTIONS(4397), 1, + ACTIONS(5887), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103271] = 3, - ACTIONS(3542), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103282] = 3, - ACTIONS(4224), 1, + [108402] = 3, + ACTIONS(5889), 1, anon_sym_DOT, - ACTIONS(4228), 1, + ACTIONS(5891), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103293] = 3, - ACTIONS(4076), 1, + [108413] = 3, + ACTIONS(5893), 1, anon_sym_DOT, - ACTIONS(4078), 1, + ACTIONS(5895), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103304] = 3, - ACTIONS(5141), 1, + [108424] = 3, + ACTIONS(4863), 1, anon_sym_DOT, - ACTIONS(5143), 1, + ACTIONS(4865), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103315] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103326] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103337] = 3, - ACTIONS(4576), 1, + [108435] = 3, + ACTIONS(5285), 1, anon_sym_DASH_GT, - ACTIONS(4664), 1, + ACTIONS(5316), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103348] = 3, - ACTIONS(5145), 1, + [108446] = 3, + ACTIONS(5078), 1, anon_sym_DOT, - ACTIONS(5147), 1, + ACTIONS(5082), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103359] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(24), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103370] = 2, + [108457] = 3, + ACTIONS(5897), 1, + anon_sym_DOT, + ACTIONS(5899), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4696), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [103379] = 3, - ACTIONS(4703), 1, + [108468] = 3, + ACTIONS(5320), 1, sym__lookback_semicolon, - STATE(517), 1, + STATE(819), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103390] = 3, - ACTIONS(5149), 1, - aux_sym_preprocessor_statement_token1, - ACTIONS(5151), 1, - aux_sym_preprocessor_statement_token2, + [108479] = 3, + ACTIONS(4928), 1, + anon_sym_DOT, + ACTIONS(4930), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103401] = 3, - ACTIONS(5153), 1, + [108490] = 3, + ACTIONS(5901), 1, sym__lookback_semicolon, - STATE(518), 1, + STATE(820), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103412] = 3, - ACTIONS(3382), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103423] = 3, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym_switch_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103434] = 3, - ACTIONS(3482), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103445] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(4885), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103456] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3496), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103467] = 3, - ACTIONS(4346), 1, - anon_sym_LPAREN, - STATE(3280), 1, - sym__arg_list, + [108501] = 3, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103478] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4621), 1, - sym__lookback_semicolon, + [108512] = 3, + ACTIONS(5903), 1, + anon_sym_DOT, + ACTIONS(5905), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103489] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(15), 1, - sym__parenthesized_expression, + [108523] = 3, + ACTIONS(4766), 1, + anon_sym_DOT, + ACTIONS(4768), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103500] = 3, - ACTIONS(3416), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108534] = 3, + ACTIONS(5907), 1, + anon_sym_DOT, + ACTIONS(5909), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103511] = 3, - ACTIONS(3520), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108545] = 3, + ACTIONS(5911), 1, + anon_sym_DOT, + ACTIONS(5913), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103522] = 3, - ACTIONS(3536), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108556] = 3, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103533] = 3, - ACTIONS(5157), 1, - sym__lookback_semicolon, - STATE(677), 1, - sym__semicolon, + [108567] = 3, + ACTIONS(4922), 1, + anon_sym_DOT, + ACTIONS(4926), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103544] = 3, - ACTIONS(2773), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108578] = 3, + ACTIONS(4742), 1, + anon_sym_DOT, + ACTIONS(4744), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103555] = 3, - ACTIONS(3418), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108589] = 3, + ACTIONS(5915), 1, + anon_sym_DOT, + ACTIONS(5917), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103566] = 3, - ACTIONS(5159), 1, + [108600] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(3031), 1, + STATE(54), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103577] = 2, + [108611] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(25), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3254), 2, + [108622] = 3, + ACTIONS(5919), 1, anon_sym_RPAREN, + ACTIONS(5921), 1, anon_sym_COMMA, - [103586] = 3, - ACTIONS(3330), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103597] = 2, + [108633] = 3, + ACTIONS(5923), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(5925), 1, + aux_sym_preprocessor_statement_token2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4993), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [103606] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4709), 1, - sym__lookback_semicolon, + [108644] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5827), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103617] = 3, - ACTIONS(5161), 1, - sym__lookback_semicolon, - STATE(522), 1, - sym__semicolon, + [108655] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5569), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103628] = 3, - ACTIONS(3420), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108666] = 3, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(588), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103639] = 3, - ACTIONS(5163), 1, - aux_sym_preprocessor_statement_token1, - ACTIONS(5165), 1, - aux_sym_preprocessor_statement_token2, + [108677] = 3, + ACTIONS(5927), 1, + anon_sym_DOT, + ACTIONS(5929), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103650] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(5167), 1, - anon_sym_RPAREN, + [108688] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(73), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103661] = 3, - ACTIONS(3422), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [108699] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(55), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103672] = 3, - ACTIONS(4488), 1, + [108710] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(1835), 1, + STATE(3556), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103683] = 3, - ACTIONS(5169), 1, - sym__lookback_semicolon, - STATE(701), 1, - sym__semicolon, + [108721] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(225), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108732] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5436), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [108741] = 3, + ACTIONS(5931), 1, + anon_sym_LBRACE, + STATE(402), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103694] = 3, - ACTIONS(5171), 1, + [108752] = 3, + ACTIONS(5379), 1, sym__lookback_semicolon, - STATE(702), 1, + STATE(801), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103705] = 3, - ACTIONS(4444), 1, + [108763] = 3, + ACTIONS(5038), 1, anon_sym_LPAREN, - STATE(1513), 1, + STATE(347), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103716] = 3, - ACTIONS(5173), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_switch_block, + [108774] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103727] = 3, - ACTIONS(3558), 1, + ACTIONS(5400), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [108783] = 3, + ACTIONS(5178), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(803), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103738] = 3, - ACTIONS(5175), 1, + [108794] = 3, + ACTIONS(5933), 1, anon_sym_RPAREN, - ACTIONS(5177), 1, + ACTIONS(5935), 1, anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103749] = 3, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_block, + [108805] = 3, + ACTIONS(5937), 1, + sym__lookback_semicolon, + STATE(688), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103760] = 3, - ACTIONS(3346), 1, + [108816] = 3, + ACTIONS(5939), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(689), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103771] = 2, + [108827] = 3, + ACTIONS(5941), 1, + sym__lookback_semicolon, + STATE(719), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5179), 2, - anon_sym_COLON, + [108838] = 3, + ACTIONS(1624), 1, anon_sym_EQ_GT, - [103780] = 3, - ACTIONS(4124), 1, - anon_sym_DOT, - ACTIONS(4126), 1, - anon_sym_QMARK, + ACTIONS(5943), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103791] = 3, - ACTIONS(5181), 1, + [108849] = 3, + ACTIONS(5945), 1, anon_sym_LBRACE, - STATE(220), 1, + STATE(241), 1, sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103802] = 3, - ACTIONS(4794), 1, + [108860] = 3, + ACTIONS(5240), 1, anon_sym_LPAREN, - STATE(65), 1, + STATE(3232), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103813] = 3, - ACTIONS(4794), 1, + [108871] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(233), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108882] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5947), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108893] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(3612), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108904] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(66), 1, + STATE(29), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103824] = 3, - ACTIONS(4598), 1, + [108915] = 3, + ACTIONS(5949), 1, sym__lookback_semicolon, - STATE(699), 1, + STATE(468), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103835] = 3, - ACTIONS(4794), 1, + [108926] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(29), 1, + STATE(46), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103846] = 3, - ACTIONS(4794), 1, + [108937] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(70), 1, + STATE(35), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103857] = 3, - ACTIONS(4794), 1, + [108948] = 3, + ACTIONS(5038), 1, + anon_sym_LPAREN, + STATE(340), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108959] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(30), 1, + STATE(6), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103868] = 3, - ACTIONS(5183), 1, + [108970] = 3, + ACTIONS(5951), 1, sym__lookback_semicolon, - STATE(544), 1, + STATE(720), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103879] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(69), 1, - sym__parenthesized_expression, + [108981] = 3, + ACTIONS(5953), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(5955), 1, + aux_sym_preprocessor_statement_token2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103890] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym__parenthesized_expression, + [108992] = 3, + ACTIONS(5957), 1, + sym__lookback_semicolon, + STATE(469), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103901] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym__parenthesized_expression, + [109003] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103912] = 3, - ACTIONS(4794), 1, + ACTIONS(5943), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [109012] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(47), 1, + STATE(77), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103923] = 3, - ACTIONS(4794), 1, + [109023] = 3, + ACTIONS(5200), 1, anon_sym_LPAREN, - STATE(39), 1, - sym__parenthesized_expression, + STATE(1543), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103934] = 3, - ACTIONS(3424), 1, + [109034] = 3, + ACTIONS(5458), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(470), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103945] = 3, - ACTIONS(5185), 1, + [109045] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109056] = 3, + ACTIONS(5959), 1, sym__lookback_semicolon, - STATE(545), 1, + STATE(471), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103956] = 3, - ACTIONS(4346), 1, + [109067] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(3211), 1, - sym__arg_list, + STATE(107), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103967] = 3, - ACTIONS(4580), 1, + [109078] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5571), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109089] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(2429), 1, - sym__function_arg_list, + STATE(83), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103978] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(5187), 1, - anon_sym_RPAREN, + [109100] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103989] = 3, - ACTIONS(2780), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109111] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(26), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104000] = 3, - ACTIONS(3550), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109122] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104011] = 3, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(1485), 1, - sym__arg_list, + ACTIONS(5706), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [109131] = 3, + ACTIONS(5925), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(5961), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109142] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5636), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104022] = 3, - ACTIONS(4724), 1, + [109153] = 3, + ACTIONS(5390), 1, sym__lookback_semicolon, - STATE(546), 1, + STATE(419), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104033] = 3, - ACTIONS(5189), 1, + [109164] = 3, + ACTIONS(5279), 1, sym__lookback_semicolon, - STATE(547), 1, + STATE(420), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104044] = 3, - ACTIONS(4346), 1, + [109175] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(175), 1, - sym__arg_list, + STATE(39), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104055] = 3, - ACTIONS(4362), 1, + [109186] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(281), 1, + STATE(3448), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104066] = 3, - ACTIONS(5191), 1, - anon_sym_RPAREN, - ACTIONS(5193), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [104077] = 3, - ACTIONS(3564), 1, + [109197] = 3, + ACTIONS(5963), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(528), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104088] = 3, - ACTIONS(5151), 1, - aux_sym_preprocessor_statement_token2, - ACTIONS(5195), 1, - aux_sym_preprocessor_statement_token1, + [109208] = 3, + ACTIONS(5293), 1, + anon_sym_LPAREN, + STATE(2749), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104099] = 3, - ACTIONS(4794), 1, + [109219] = 3, + ACTIONS(5180), 1, anon_sym_LPAREN, - STATE(75), 1, - sym__parenthesized_expression, + STATE(2004), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104110] = 3, - ACTIONS(4794), 1, + [109230] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(57), 1, + STATE(32), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104121] = 3, - ACTIONS(3512), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109241] = 3, + ACTIONS(5965), 1, + anon_sym_LBRACE, + STATE(1949), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104132] = 3, - ACTIONS(4346), 1, + [109252] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(3139), 1, - sym__arg_list, + STATE(7), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104143] = 3, - ACTIONS(4488), 1, - anon_sym_LPAREN, - STATE(1834), 1, - sym__arg_list, + [109263] = 3, + ACTIONS(5967), 1, + anon_sym_RPAREN, + ACTIONS(5969), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104154] = 3, - ACTIONS(4794), 1, + [109274] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(78), 1, + STATE(8), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104165] = 3, - ACTIONS(4794), 1, + [109285] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5660), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109296] = 3, + ACTIONS(5240), 1, anon_sym_LPAREN, - STATE(60), 1, + STATE(3287), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104176] = 3, - ACTIONS(3554), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109307] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(209), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104187] = 3, - ACTIONS(4346), 1, + [109318] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(3219), 1, + STATE(3609), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104198] = 3, - ACTIONS(4794), 1, + [109329] = 3, + ACTIONS(5240), 1, anon_sym_LPAREN, - STATE(63), 1, + STATE(3233), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104209] = 3, - ACTIONS(2242), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109340] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104220] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3350), 1, - anon_sym_RPAREN, + [109351] = 3, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(22), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104231] = 2, + [109362] = 3, + ACTIONS(4814), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5197), 2, - anon_sym_LBRACE, - anon_sym_implements, - [104240] = 3, - ACTIONS(3426), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109373] = 3, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(3), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104251] = 3, - ACTIONS(5199), 1, - sym_identifier, - STATE(3012), 1, - sym_structure_type_pair, + [109384] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104262] = 3, - ACTIONS(3530), 1, + ACTIONS(5971), 2, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + anon_sym_DOT, + [109393] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(90), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104273] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3480), 1, - anon_sym_RBRACK, + [109404] = 3, + ACTIONS(5200), 1, + anon_sym_LPAREN, + STATE(1551), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104284] = 3, - ACTIONS(3334), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109415] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5680), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104295] = 3, - ACTIONS(3568), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109426] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(3554), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104306] = 2, + [109437] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5682), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4883), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [104315] = 3, - ACTIONS(4346), 1, + [109448] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(3167), 1, + STATE(3651), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104326] = 3, - ACTIONS(4362), 1, + [109459] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5684), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109470] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(276), 1, + STATE(3608), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104337] = 3, - ACTIONS(3384), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109481] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5686), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104348] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4606), 1, - sym__lookback_semicolon, + [109492] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(3672), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104359] = 3, - ACTIONS(3320), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109503] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5688), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104370] = 3, - ACTIONS(3432), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109514] = 3, + ACTIONS(5180), 1, + anon_sym_LPAREN, + STATE(1981), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104381] = 3, - ACTIONS(2775), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109525] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104392] = 3, - ACTIONS(2762), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + ACTIONS(3916), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [109534] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5690), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104403] = 3, - ACTIONS(3524), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109545] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5692), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104414] = 3, - ACTIONS(2720), 1, + [109556] = 3, + ACTIONS(5973), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(529), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104425] = 3, - ACTIONS(4432), 1, - anon_sym_LPAREN, - STATE(1440), 1, - sym__arg_list, + [109567] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5694), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104436] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_RBRACE, + [109578] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5696), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104447] = 3, - ACTIONS(4332), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_block, + [109589] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5698), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104458] = 3, - ACTIONS(2712), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109600] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5700), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104469] = 3, - ACTIONS(4346), 1, - anon_sym_LPAREN, - STATE(3238), 1, - sym__arg_list, + [109611] = 3, + ACTIONS(5925), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(5975), 1, + aux_sym_preprocessor_statement_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104480] = 3, - ACTIONS(3436), 1, + [109622] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5464), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104491] = 3, - ACTIONS(4346), 1, + [109633] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(3265), 1, + STATE(3396), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104502] = 3, - ACTIONS(5159), 1, - anon_sym_LPAREN, - STATE(2941), 1, - sym__parenthesized_expression, + [109644] = 3, + ACTIONS(5977), 1, + sym__lookback_semicolon, + STATE(425), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104513] = 3, - ACTIONS(5201), 1, + [109655] = 3, + ACTIONS(5979), 1, sym__lookback_semicolon, - STATE(727), 1, + STATE(793), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104524] = 2, + [109666] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5726), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4670), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [104533] = 3, - ACTIONS(3438), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109677] = 3, + ACTIONS(5981), 1, + anon_sym_DOT, + ACTIONS(5983), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104544] = 3, - ACTIONS(1960), 1, - anon_sym_EQ_GT, - ACTIONS(4802), 1, - anon_sym_COLON, + [109688] = 3, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(1748), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104555] = 3, - ACTIONS(3440), 1, + [109699] = 3, + ACTIONS(5293), 1, + anon_sym_LPAREN, + STATE(2735), 1, + sym__function_arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109710] = 3, + ACTIONS(5180), 1, + anon_sym_LPAREN, + STATE(2037), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109721] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5351), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104566] = 3, - ACTIONS(4426), 1, + [109732] = 3, + ACTIONS(5244), 1, anon_sym_DASH_GT, - ACTIONS(5203), 1, + ACTIONS(5985), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104577] = 3, - ACTIONS(4432), 1, + [109743] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5987), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109754] = 3, + ACTIONS(5200), 1, anon_sym_LPAREN, - STATE(1457), 1, + STATE(1556), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104588] = 3, - ACTIONS(3526), 1, + [109765] = 3, + ACTIONS(5989), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(825), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104599] = 3, - ACTIONS(3556), 1, + [109776] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5402), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104610] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4629), 1, - sym__lookback_semicolon, + [109787] = 3, + ACTIONS(5038), 1, + anon_sym_LPAREN, + STATE(348), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104621] = 2, + [109798] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5749), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3266), 2, + [109809] = 3, + ACTIONS(5991), 1, anon_sym_RPAREN, + ACTIONS(5993), 1, anon_sym_COMMA, - [104630] = 3, - ACTIONS(3442), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104641] = 3, - ACTIONS(4488), 1, + [109820] = 3, + ACTIONS(5240), 1, anon_sym_LPAREN, - STATE(1946), 1, - sym__arg_list, + STATE(3243), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104652] = 3, - ACTIONS(1960), 1, - anon_sym_EQ_GT, - ACTIONS(5205), 1, - anon_sym_in, + [109831] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104663] = 3, - ACTIONS(4580), 1, + [109842] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(2501), 1, - sym__function_arg_list, + STATE(175), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104674] = 3, - ACTIONS(3472), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109853] = 3, + ACTIONS(4442), 1, + anon_sym_DOT, + ACTIONS(4444), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109864] = 3, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(1980), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104685] = 2, + [109875] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3260), 2, + ACTIONS(5800), 2, + sym__closing_brace_marker, anon_sym_COMMA, - anon_sym_RBRACK, - [104694] = 3, - ACTIONS(4488), 1, + [109884] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(1739), 1, - sym__arg_list, + STATE(58), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104705] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3522), 1, - anon_sym_RBRACK, + [109895] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(5995), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104716] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - anon_sym_while, + [109906] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(42), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104727] = 3, - ACTIONS(4576), 1, + [109917] = 3, + ACTIONS(5285), 1, anon_sym_DASH_GT, - ACTIONS(4735), 1, + ACTIONS(5386), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104738] = 3, - ACTIONS(3570), 1, + [109928] = 3, + ACTIONS(5416), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(442), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104749] = 3, - ACTIONS(3578), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109939] = 3, + ACTIONS(5997), 1, + anon_sym_RPAREN, + ACTIONS(5999), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104760] = 3, - ACTIONS(3448), 1, + [109950] = 3, + ACTIONS(6001), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(443), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104771] = 3, - ACTIONS(5207), 1, + [109961] = 3, + ACTIONS(6003), 1, anon_sym_RPAREN, - ACTIONS(5209), 1, + ACTIONS(6005), 1, anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104782] = 3, - ACTIONS(5159), 1, - anon_sym_LPAREN, - STATE(2949), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [104793] = 3, - ACTIONS(3582), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [109972] = 3, + ACTIONS(5955), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(6007), 1, + aux_sym_preprocessor_statement_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104804] = 3, - ACTIONS(5211), 1, + [109983] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5489), 1, sym__lookback_semicolon, - STATE(497), 1, - sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104815] = 3, - ACTIONS(5213), 1, - sym__lookback_semicolon, - STATE(505), 1, - sym__semicolon, + [109994] = 3, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(1972), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104826] = 3, - ACTIONS(3586), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110005] = 3, + ACTIONS(5293), 1, + anon_sym_LPAREN, + STATE(2775), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104837] = 3, - ACTIONS(3336), 1, + [110016] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5493), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104848] = 3, - ACTIONS(3780), 1, - anon_sym_DOT, - ACTIONS(3782), 1, - anon_sym_QMARK, + [110027] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104859] = 3, - ACTIONS(4794), 1, + ACTIONS(3936), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [110036] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(31), 1, + STATE(40), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104870] = 3, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym__parenthesized_expression, + [110047] = 3, + ACTIONS(6009), 1, + anon_sym_LBRACE, + STATE(349), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104881] = 3, - ACTIONS(3300), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110058] = 3, + ACTIONS(6011), 1, + sym_identifier, + STATE(3253), 1, + sym_structure_type_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104892] = 3, - ACTIONS(4346), 1, - anon_sym_LPAREN, - STATE(191), 1, - sym__arg_list, + [110069] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104903] = 3, - ACTIONS(5179), 1, + ACTIONS(3888), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110078] = 3, + ACTIONS(1624), 1, anon_sym_EQ_GT, - ACTIONS(5215), 1, - anon_sym_COLON, + ACTIONS(5787), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104914] = 3, - ACTIONS(3452), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110089] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104925] = 3, - ACTIONS(3538), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + ACTIONS(6013), 2, + anon_sym_LBRACE, + anon_sym_implements, + [110098] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104936] = 3, - ACTIONS(4444), 1, + ACTIONS(6015), 2, + anon_sym_LBRACE, + anon_sym_extends, + [110107] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(1495), 1, - sym__arg_list, + STATE(9), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104947] = 3, - ACTIONS(3314), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110118] = 3, + ACTIONS(6017), 1, + anon_sym_DOT, + ACTIONS(6019), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104958] = 3, - ACTIONS(1960), 1, - anon_sym_EQ_GT, - ACTIONS(5179), 1, - anon_sym_COLON, + [110129] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104969] = 3, - ACTIONS(5217), 1, - sym__lookback_semicolon, - STATE(700), 1, - sym__semicolon, + [110140] = 3, + ACTIONS(1628), 1, + anon_sym_DOT_DOT_DOT, + STATE(2469), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104980] = 3, - ACTIONS(3454), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110151] = 3, + ACTIONS(5242), 1, + anon_sym_LPAREN, + STATE(1891), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104991] = 3, - ACTIONS(4580), 1, + [110162] = 3, + ACTIONS(5293), 1, anon_sym_LPAREN, - STATE(2522), 1, + STATE(2603), 1, sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105002] = 3, - ACTIONS(4580), 1, + [110173] = 3, + ACTIONS(5293), 1, anon_sym_LPAREN, - STATE(2599), 1, + STATE(2698), 1, sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105013] = 3, - ACTIONS(3590), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110184] = 3, + ACTIONS(5943), 1, + anon_sym_EQ_GT, + ACTIONS(6021), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105024] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(5219), 1, - anon_sym_RPAREN, + [110195] = 3, + ACTIONS(5293), 1, + anon_sym_LPAREN, + STATE(2827), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105035] = 3, - ACTIONS(3510), 1, + [110206] = 3, + ACTIONS(6023), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(501), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105046] = 3, - ACTIONS(3594), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110217] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105057] = 3, - ACTIONS(5221), 1, - sym__lookback_semicolon, - STATE(764), 1, - sym__semicolon, + ACTIONS(3928), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [110226] = 3, + ACTIONS(1624), 1, + anon_sym_EQ_GT, + ACTIONS(5814), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105068] = 3, - ACTIONS(5223), 1, + [110237] = 3, + ACTIONS(6025), 1, sym__lookback_semicolon, - STATE(765), 1, + STATE(446), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105079] = 3, - ACTIONS(4688), 1, + [110248] = 3, + ACTIONS(6027), 1, + anon_sym_LBRACE, + STATE(1949), 1, + sym_switch_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110259] = 3, + ACTIONS(6029), 1, sym__lookback_semicolon, - STATE(483), 1, + STATE(830), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105090] = 3, - ACTIONS(2758), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110270] = 3, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(208), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105101] = 3, - ACTIONS(4576), 1, + [110281] = 3, + ACTIONS(5285), 1, anon_sym_DASH_GT, - ACTIONS(4763), 1, + ACTIONS(5514), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105112] = 3, - ACTIONS(5225), 1, - anon_sym_LBRACE, - STATE(1451), 1, - sym_switch_block, + [110292] = 3, + ACTIONS(6033), 1, + sym__lookback_semicolon, + STATE(833), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105123] = 3, - ACTIONS(4478), 1, - sym__lookback_semicolon, - STATE(485), 1, - sym__semicolon, + [110303] = 3, + ACTIONS(5020), 1, + anon_sym_LBRACE, + STATE(733), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105134] = 3, - ACTIONS(3358), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110314] = 3, + ACTIONS(4598), 1, + anon_sym_DOT, + ACTIONS(4600), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105145] = 3, - ACTIONS(3460), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110325] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(85), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105156] = 3, - ACTIONS(3374), 1, + [110336] = 3, + ACTIONS(5365), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(649), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105167] = 3, - ACTIONS(3394), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110347] = 3, + ACTIONS(5200), 1, + anon_sym_LPAREN, + STATE(1535), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105178] = 3, - ACTIONS(1968), 1, + [110358] = 3, + ACTIONS(6035), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(650), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105189] = 3, - ACTIONS(3312), 1, + [110369] = 3, + ACTIONS(6037), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + STATE(502), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105200] = 3, - ACTIONS(4580), 1, - anon_sym_LPAREN, - STATE(2521), 1, - sym__function_arg_list, + [110380] = 3, + ACTIONS(6039), 1, + anon_sym_DOT, + ACTIONS(6041), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105211] = 3, - ACTIONS(5159), 1, + [110391] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(2859), 1, + STATE(89), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105222] = 3, - ACTIONS(4346), 1, + [110402] = 3, + ACTIONS(5244), 1, + anon_sym_DASH_GT, + ACTIONS(6043), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110413] = 3, + ACTIONS(6045), 1, + anon_sym_DOT, + ACTIONS(6047), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110424] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(184), 1, - sym__arg_list, + STATE(50), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105233] = 3, - ACTIONS(3598), 1, + [110435] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5518), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105244] = 3, - ACTIONS(5227), 1, - anon_sym_RPAREN, - ACTIONS(5229), 1, - anon_sym_COMMA, + [110446] = 3, + ACTIONS(6049), 1, + anon_sym_DOT, + ACTIONS(6051), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105255] = 3, - ACTIONS(4778), 1, - sym__lookback_semicolon, - STATE(767), 1, - sym__semicolon, + [110457] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105266] = 3, - ACTIONS(5231), 1, - sym__lookback_semicolon, - STATE(769), 1, - sym__semicolon, + [110468] = 3, + ACTIONS(6053), 1, + anon_sym_DOT, + ACTIONS(6055), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105277] = 3, - ACTIONS(3602), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110479] = 3, + ACTIONS(5046), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105288] = 3, - ACTIONS(1952), 1, + [110490] = 3, + ACTIONS(5285), 1, + anon_sym_DASH_GT, + ACTIONS(5522), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105299] = 3, - ACTIONS(5233), 1, - anon_sym_RPAREN, - ACTIONS(5235), 1, - anon_sym_COMMA, + [110501] = 3, + ACTIONS(6057), 1, + anon_sym_DOT, + ACTIONS(6059), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105310] = 3, - ACTIONS(4362), 1, + [110512] = 3, + ACTIONS(5046), 1, anon_sym_LPAREN, - STATE(271), 1, - sym__arg_list, + STATE(60), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105321] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3514), 1, - anon_sym_while, + [110523] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(3689), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105332] = 3, - ACTIONS(5165), 1, - aux_sym_preprocessor_statement_token2, - ACTIONS(5237), 1, - aux_sym_preprocessor_statement_token1, + [110534] = 2, + ACTIONS(6061), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105343] = 3, - ACTIONS(3502), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110542] = 2, + ACTIONS(6063), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105354] = 3, - ACTIONS(5239), 1, + [110550] = 2, + ACTIONS(6065), 1, anon_sym_DOT, - ACTIONS(5241), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105365] = 3, - ACTIONS(4794), 1, + [110558] = 2, + ACTIONS(6067), 1, anon_sym_LPAREN, - STATE(43), 1, - sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105376] = 3, - ACTIONS(3398), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110566] = 2, + ACTIONS(6069), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105387] = 3, - ACTIONS(5243), 1, - sym__lookback_semicolon, - STATE(401), 1, - sym__semicolon, + [110574] = 2, + ACTIONS(6071), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105398] = 3, - ACTIONS(3608), 1, + [110582] = 2, + ACTIONS(6073), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105409] = 3, - ACTIONS(4362), 1, - anon_sym_LPAREN, - STATE(265), 1, - sym__arg_list, + [110590] = 2, + ACTIONS(4164), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105420] = 3, - ACTIONS(5245), 1, + [110598] = 2, + ACTIONS(3657), 1, sym__lookback_semicolon, - STATE(402), 1, - sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105431] = 3, - ACTIONS(3308), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110606] = 2, + ACTIONS(6075), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105442] = 3, - ACTIONS(3356), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110614] = 2, + ACTIONS(4184), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105453] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4600), 1, + [110622] = 2, + ACTIONS(4086), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105464] = 3, - ACTIONS(4426), 1, - anon_sym_DASH_GT, - ACTIONS(5247), 1, + [110630] = 2, + ACTIONS(6077), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105475] = 3, - ACTIONS(4576), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, - sym__lookback_semicolon, + [110638] = 2, + ACTIONS(5646), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105486] = 3, - ACTIONS(5249), 1, + [110646] = 2, + ACTIONS(5704), 1, anon_sym_RPAREN, - ACTIONS(5251), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105497] = 3, - ACTIONS(3614), 1, + [110654] = 2, + ACTIONS(4044), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105508] = 3, - ACTIONS(1052), 1, - anon_sym_LBRACK, - ACTIONS(3368), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105519] = 3, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(161), 1, - sym_switch_block, + [110662] = 2, + ACTIONS(3960), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105530] = 3, - ACTIONS(3528), 1, + [110670] = 2, + ACTIONS(5316), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105541] = 3, - ACTIONS(4444), 1, - anon_sym_LPAREN, - STATE(1502), 1, - sym__arg_list, + [110678] = 2, + ACTIONS(4158), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105552] = 3, - ACTIONS(3618), 1, + [110686] = 2, + ACTIONS(4088), 1, sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105563] = 3, - ACTIONS(3304), 1, - sym__lookback_semicolon, - ACTIONS(3810), 1, - anon_sym_LBRACK, + [110694] = 2, + ACTIONS(3998), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105574] = 2, - ACTIONS(3600), 1, - sym__lookback_semicolon, + [110702] = 2, + ACTIONS(6079), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105582] = 2, - ACTIONS(5255), 1, - anon_sym_DOT, + [110710] = 2, + ACTIONS(3420), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105590] = 2, - ACTIONS(5257), 1, + [110718] = 2, + ACTIONS(6081), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105598] = 2, - ACTIONS(5259), 1, - anon_sym_LPAREN, + [110726] = 2, + ACTIONS(3964), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105606] = 2, - ACTIONS(5261), 1, - anon_sym_DOT, + [110734] = 2, + ACTIONS(4002), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105614] = 2, - ACTIONS(5263), 1, + [110742] = 2, + ACTIONS(6083), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105622] = 2, - ACTIONS(3434), 1, + [110750] = 2, + ACTIONS(4198), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105630] = 2, - ACTIONS(3576), 1, - anon_sym_while, + [110758] = 2, + ACTIONS(5654), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105638] = 2, - ACTIONS(5265), 1, + [110766] = 2, + ACTIONS(6085), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105646] = 2, - ACTIONS(5267), 1, - anon_sym_DOT, + [110774] = 2, + ACTIONS(4156), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105654] = 2, - ACTIONS(5269), 1, - anon_sym_RPAREN, + [110782] = 2, + ACTIONS(5943), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105662] = 2, - ACTIONS(5271), 1, + [110790] = 2, + ACTIONS(5656), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105670] = 2, - ACTIONS(5273), 1, - sym__lookback_semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105678] = 2, - ACTIONS(5275), 1, - anon_sym_LPAREN, + [110798] = 2, + ACTIONS(6087), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105686] = 2, - ACTIONS(3436), 1, + [110806] = 2, + ACTIONS(4060), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105694] = 2, - ACTIONS(3322), 1, - anon_sym_RBRACE, + [110814] = 2, + ACTIONS(6089), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105702] = 2, - ACTIONS(4641), 1, - sym__lookback_semicolon, + [110822] = 2, + ACTIONS(6091), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105710] = 2, - ACTIONS(5277), 1, + [110830] = 2, + ACTIONS(4168), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105718] = 2, - ACTIONS(4606), 1, + [110838] = 2, + ACTIONS(4004), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105726] = 2, - ACTIONS(3370), 1, + [110846] = 2, + ACTIONS(3966), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105734] = 2, - ACTIONS(5279), 1, - anon_sym_DOT, + [110854] = 2, + ACTIONS(3848), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105742] = 2, - ACTIONS(3536), 1, - sym__lookback_semicolon, + [110862] = 2, + ACTIONS(4172), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105750] = 2, - ACTIONS(5281), 1, + [110870] = 2, + ACTIONS(6093), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105758] = 2, - ACTIONS(3438), 1, + [110878] = 2, + ACTIONS(3648), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105766] = 2, - ACTIONS(5283), 1, - anon_sym_COLON, + [110886] = 2, + ACTIONS(6095), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105774] = 2, - ACTIONS(3400), 1, + [110894] = 2, + ACTIONS(3410), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105782] = 2, - ACTIONS(3440), 1, + [110902] = 2, + ACTIONS(2630), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105790] = 2, - ACTIONS(5285), 1, + [110910] = 2, + ACTIONS(5668), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105798] = 2, - ACTIONS(5287), 1, - anon_sym_LPAREN, + [110918] = 2, + ACTIONS(6097), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105806] = 2, - ACTIONS(3526), 1, + [110926] = 2, + ACTIONS(4160), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105814] = 2, - ACTIONS(5289), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105822] = 2, - ACTIONS(3488), 1, - anon_sym_while, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105830] = 2, - ACTIONS(5291), 1, - anon_sym_RBRACE, + [110934] = 2, + ACTIONS(3412), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105838] = 2, - ACTIONS(4645), 1, + [110942] = 2, + ACTIONS(4202), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105846] = 2, - ACTIONS(3442), 1, + [110950] = 2, + ACTIONS(4006), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105854] = 2, - ACTIONS(3552), 1, + [110958] = 2, + ACTIONS(4084), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105862] = 2, - ACTIONS(3490), 1, + [110966] = 2, + ACTIONS(3996), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105870] = 2, - ACTIONS(5293), 1, - anon_sym_EQ, + [110974] = 2, + ACTIONS(4000), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105878] = 2, - ACTIONS(3504), 1, - anon_sym_RBRACK, + [110982] = 2, + ACTIONS(4224), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105886] = 2, - ACTIONS(5295), 1, + [110990] = 2, + ACTIONS(5674), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105894] = 2, - ACTIONS(5297), 1, - anon_sym_EQ, + [110998] = 2, + ACTIONS(6099), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105902] = 2, - ACTIONS(3298), 1, + [111006] = 2, + ACTIONS(5434), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105910] = 2, - ACTIONS(5299), 1, - anon_sym_DOT, + [111014] = 2, + ACTIONS(5676), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105918] = 2, - ACTIONS(4647), 1, - sym__lookback_semicolon, + [111022] = 2, + ACTIONS(4132), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105926] = 2, - ACTIONS(3512), 1, + [111030] = 2, + ACTIONS(4142), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105934] = 2, - ACTIONS(5301), 1, - sym__lookback_semicolon, + [111038] = 2, + ACTIONS(6101), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105942] = 2, - ACTIONS(3444), 1, - sym__lookback_semicolon, + [111046] = 2, + ACTIONS(6103), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105950] = 2, - ACTIONS(5303), 1, - sym__lookback_semicolon, + [111054] = 2, + ACTIONS(3992), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105958] = 2, - ACTIONS(3446), 1, - sym__lookback_semicolon, + [111062] = 2, + ACTIONS(3974), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105966] = 2, - ACTIONS(3482), 1, - sym__lookback_semicolon, + [111070] = 2, + ACTIONS(6105), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105974] = 2, - ACTIONS(3448), 1, - sym__lookback_semicolon, + [111078] = 2, + ACTIONS(5168), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105982] = 2, - ACTIONS(1952), 1, - sym__lookback_semicolon, + [111086] = 2, + ACTIONS(6107), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105990] = 2, - ACTIONS(1996), 1, + [111094] = 2, + ACTIONS(5295), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105998] = 2, - ACTIONS(4709), 1, - sym__lookback_semicolon, + [111102] = 2, + ACTIONS(6109), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106006] = 2, - ACTIONS(4621), 1, + [111110] = 2, + ACTIONS(6111), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106014] = 2, - ACTIONS(3332), 1, - sym__lookback_semicolon, + [111118] = 2, + ACTIONS(6113), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106022] = 2, - ACTIONS(5305), 1, + [111126] = 2, + ACTIONS(4226), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106030] = 2, - ACTIONS(5307), 1, + [111134] = 2, + ACTIONS(4186), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106038] = 2, - ACTIONS(3402), 1, + [111142] = 2, + ACTIONS(4134), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106046] = 2, - ACTIONS(4424), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106054] = 2, - ACTIONS(3450), 1, - sym__lookback_semicolon, + [111150] = 2, + ACTIONS(6115), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106062] = 2, - ACTIONS(2773), 1, + [111158] = 2, + ACTIONS(4046), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106070] = 2, - ACTIONS(5309), 1, + [111166] = 2, + ACTIONS(6117), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106078] = 2, - ACTIONS(4867), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106086] = 2, - ACTIONS(3544), 1, - sym__lookback_semicolon, + [111174] = 2, + ACTIONS(5583), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106094] = 2, - ACTIONS(3326), 1, + [111182] = 2, + ACTIONS(4104), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106102] = 2, - ACTIONS(3558), 1, - sym__lookback_semicolon, + [111190] = 2, + ACTIONS(6119), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106110] = 2, - ACTIONS(5311), 1, - anon_sym_DASH_GT, + [111198] = 2, + ACTIONS(6121), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106118] = 2, - ACTIONS(3452), 1, - sym__lookback_semicolon, + [111206] = 2, + ACTIONS(6123), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106126] = 2, - ACTIONS(3546), 1, - sym__lookback_semicolon, + [111214] = 2, + ACTIONS(6125), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106134] = 2, - ACTIONS(3560), 1, - sym__lookback_semicolon, + [111222] = 2, + ACTIONS(6127), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106142] = 2, - ACTIONS(3358), 1, + [111230] = 2, + ACTIONS(4210), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106150] = 2, - ACTIONS(3496), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106158] = 2, - ACTIONS(5313), 1, + [111238] = 2, + ACTIONS(6129), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106166] = 2, - ACTIONS(2769), 1, + [111246] = 2, + ACTIONS(6131), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106174] = 2, - ACTIONS(3548), 1, + [111254] = 2, + ACTIONS(3980), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106182] = 2, - ACTIONS(5315), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106190] = 2, - ACTIONS(3538), 1, + [111262] = 2, + ACTIONS(3968), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106198] = 2, - ACTIONS(3404), 1, + [111270] = 2, + ACTIONS(4176), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106206] = 2, - ACTIONS(3510), 1, - sym__lookback_semicolon, + [111278] = 2, + ACTIONS(6133), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106214] = 2, - ACTIONS(5317), 1, - anon_sym_DASH_GT, + [111286] = 2, + ACTIONS(6135), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106222] = 2, - ACTIONS(5319), 1, - anon_sym_RPAREN, + [111294] = 2, + ACTIONS(4162), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106230] = 2, - ACTIONS(5321), 1, - anon_sym_RBRACE, + [111302] = 2, + ACTIONS(4072), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106238] = 2, - ACTIONS(5323), 1, - anon_sym_RPAREN, + [111310] = 2, + ACTIONS(6137), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106246] = 2, - ACTIONS(3454), 1, + [111318] = 2, + ACTIONS(4048), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106254] = 2, - ACTIONS(3550), 1, + [111326] = 2, + ACTIONS(4090), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106262] = 2, - ACTIONS(5325), 1, - anon_sym_DASH_GT, + [111334] = 2, + ACTIONS(4062), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106270] = 2, - ACTIONS(5327), 1, - anon_sym_EQ, + [111342] = 2, + ACTIONS(3314), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106278] = 2, - ACTIONS(3320), 1, + [111350] = 2, + ACTIONS(5464), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106286] = 2, - ACTIONS(3348), 1, + [111358] = 2, + ACTIONS(4166), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106294] = 2, - ACTIONS(5329), 1, - anon_sym_RPAREN, + [111366] = 2, + ACTIONS(4188), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106302] = 2, - ACTIONS(5331), 1, - anon_sym_RPAREN, + [111374] = 2, + ACTIONS(6139), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106310] = 2, - ACTIONS(5333), 1, + [111382] = 2, + ACTIONS(6141), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106318] = 2, - ACTIONS(5335), 1, - anon_sym_RPAREN, + [111390] = 2, + ACTIONS(4068), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106326] = 2, - ACTIONS(5337), 1, + [111398] = 2, + ACTIONS(6143), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106334] = 2, - ACTIONS(3540), 1, + [111406] = 2, + ACTIONS(4212), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106342] = 2, - ACTIONS(5339), 1, + [111414] = 2, + ACTIONS(6145), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106350] = 2, - ACTIONS(5341), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106358] = 2, - ACTIONS(5343), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106366] = 2, - ACTIONS(3456), 1, - sym__lookback_semicolon, + [111422] = 2, + ACTIONS(4008), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106374] = 2, - ACTIONS(3384), 1, + [111430] = 2, + ACTIONS(4208), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106382] = 2, - ACTIONS(3356), 1, + [111438] = 2, + ACTIONS(3970), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106390] = 2, - ACTIONS(3458), 1, - sym__lookback_semicolon, + [111446] = 2, + ACTIONS(3802), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106398] = 2, - ACTIONS(5345), 1, - anon_sym_RPAREN, + [111454] = 2, + ACTIONS(4170), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106406] = 2, - ACTIONS(3334), 1, - sym__lookback_semicolon, + [111462] = 2, + ACTIONS(6147), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106414] = 2, - ACTIONS(3406), 1, - sym__lookback_semicolon, + [111470] = 2, + ACTIONS(4028), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106422] = 2, - ACTIONS(3460), 1, - sym__lookback_semicolon, + [111478] = 2, + ACTIONS(3790), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106430] = 2, - ACTIONS(5347), 1, - anon_sym_RPAREN, + [111486] = 2, + ACTIONS(5571), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106438] = 2, - ACTIONS(3562), 1, + [111494] = 2, + ACTIONS(3986), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106446] = 2, - ACTIONS(5349), 1, - anon_sym_RPAREN, + [111502] = 2, + ACTIONS(6149), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106454] = 2, - ACTIONS(5351), 1, + [111510] = 2, + ACTIONS(4196), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106462] = 2, - ACTIONS(5353), 1, + [111518] = 2, + ACTIONS(3350), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106470] = 2, - ACTIONS(5077), 1, - anon_sym_DOT, + [111526] = 2, + ACTIONS(6151), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106478] = 2, - ACTIONS(4836), 1, - anon_sym_RBRACK, + [111534] = 2, + ACTIONS(4146), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106486] = 2, - ACTIONS(3462), 1, + [111542] = 2, + ACTIONS(4240), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106494] = 2, - ACTIONS(5355), 1, - anon_sym_DOT, + [111550] = 2, + ACTIONS(3414), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106502] = 2, - ACTIONS(3408), 1, + [111558] = 2, + ACTIONS(4180), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106510] = 2, - ACTIONS(4670), 1, - anon_sym_EQ_GT, + [111566] = 2, + ACTIONS(4214), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106518] = 2, - ACTIONS(5357), 1, - anon_sym_RPAREN, + [111574] = 2, + ACTIONS(6153), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106526] = 2, - ACTIONS(3500), 1, - anon_sym_RBRACK, + [111582] = 2, + ACTIONS(4054), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106534] = 2, - ACTIONS(3324), 1, - anon_sym_RBRACK, + [111590] = 2, + ACTIONS(6155), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106542] = 2, - ACTIONS(3564), 1, - sym__lookback_semicolon, + [111598] = 2, + ACTIONS(6157), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106550] = 2, - ACTIONS(5359), 1, + [111606] = 2, + ACTIONS(6159), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106558] = 2, - ACTIONS(5361), 1, - anon_sym_RPAREN, + [111614] = 2, + ACTIONS(4242), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106566] = 2, - ACTIONS(5363), 1, - anon_sym_DOT, + [111622] = 2, + ACTIONS(6161), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106574] = 2, - ACTIONS(3566), 1, - sym__lookback_semicolon, + [111630] = 2, + ACTIONS(6163), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106582] = 2, - ACTIONS(5365), 1, + [111638] = 2, + ACTIONS(4244), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106590] = 2, - ACTIONS(3372), 1, - sym__lookback_semicolon, + [111646] = 2, + ACTIONS(4136), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106598] = 2, - ACTIONS(5367), 1, - sym__lookback_semicolon, + [111654] = 2, + ACTIONS(6165), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106606] = 2, - ACTIONS(5369), 1, + [111662] = 2, + ACTIONS(6167), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106614] = 2, - ACTIONS(3082), 1, - anon_sym_RBRACK, + [111670] = 2, + ACTIONS(6169), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106622] = 2, - ACTIONS(5371), 1, - anon_sym_LPAREN, + [111678] = 2, + ACTIONS(5732), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106630] = 2, - ACTIONS(3514), 1, - anon_sym_while, + [111686] = 2, + ACTIONS(3976), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106638] = 2, - ACTIONS(3304), 1, + [111694] = 2, + ACTIONS(4236), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106646] = 2, - ACTIONS(4840), 1, - anon_sym_RBRACK, + [111702] = 2, + ACTIONS(6171), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106654] = 2, - ACTIONS(5373), 1, - anon_sym_RPAREN, + [111710] = 2, + ACTIONS(3422), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106662] = 2, - ACTIONS(5375), 1, + [111718] = 2, + ACTIONS(5351), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106670] = 2, - ACTIONS(5377), 1, - anon_sym_RPAREN, + [111726] = 2, + ACTIONS(6173), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106678] = 2, - ACTIONS(3554), 1, - sym__lookback_semicolon, + [111734] = 2, + ACTIONS(6175), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106686] = 2, - ACTIONS(5179), 1, - anon_sym_EQ_GT, + [111742] = 2, + ACTIONS(6177), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106694] = 2, - ACTIONS(4629), 1, + [111750] = 2, + ACTIONS(4074), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106702] = 2, - ACTIONS(3502), 1, - sym__lookback_semicolon, + [111758] = 2, + ACTIONS(6179), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106710] = 2, - ACTIONS(5379), 1, - anon_sym_RPAREN, + [111766] = 2, + ACTIONS(5670), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106718] = 2, - ACTIONS(5381), 1, + [111774] = 2, + ACTIONS(6181), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106726] = 2, - ACTIONS(3410), 1, + [111782] = 2, + ACTIONS(6183), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106734] = 2, - ACTIONS(4788), 1, - anon_sym_RBRACK, + [111790] = 2, + ACTIONS(6185), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106742] = 2, - ACTIONS(5383), 1, - anon_sym_RPAREN, + [111798] = 2, + ACTIONS(4174), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106750] = 2, - ACTIONS(4600), 1, + [111806] = 2, + ACTIONS(6187), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106758] = 2, - ACTIONS(2242), 1, + [111814] = 2, + ACTIONS(3962), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106766] = 2, - ACTIONS(5385), 1, + [111822] = 2, + ACTIONS(4112), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106774] = 2, - ACTIONS(3426), 1, + [111830] = 2, + ACTIONS(4056), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106782] = 2, - ACTIONS(5387), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106790] = 2, - ACTIONS(5389), 1, - anon_sym_RPAREN, + [111838] = 2, + ACTIONS(4144), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106798] = 2, - ACTIONS(4816), 1, - anon_sym_DOT, + [111846] = 2, + ACTIONS(6189), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106806] = 2, - ACTIONS(3498), 1, + [111854] = 2, + ACTIONS(6191), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106814] = 2, - ACTIONS(5391), 1, - anon_sym_LPAREN, + [111862] = 2, + ACTIONS(6193), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106822] = 2, - ACTIONS(3506), 1, + [111870] = 2, + ACTIONS(3800), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106830] = 2, - ACTIONS(5393), 1, + [111878] = 2, + ACTIONS(6195), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106838] = 2, - ACTIONS(3480), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106846] = 2, - ACTIONS(5395), 1, - anon_sym_LPAREN, + [111886] = 2, + ACTIONS(5402), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106854] = 2, - ACTIONS(3470), 1, + [111894] = 2, + ACTIONS(4246), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106862] = 2, - ACTIONS(3572), 1, - anon_sym_RPAREN, + [111902] = 2, + ACTIONS(6197), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106870] = 2, - ACTIONS(3568), 1, - sym__lookback_semicolon, + [111910] = 2, + ACTIONS(5751), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106878] = 2, - ACTIONS(5397), 1, + [111918] = 2, + ACTIONS(3972), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106886] = 2, - ACTIONS(5399), 1, - anon_sym_RBRACE, + [111926] = 2, + ACTIONS(6199), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106894] = 2, - ACTIONS(5401), 1, - anon_sym_DOT, + [111934] = 2, + ACTIONS(6201), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106902] = 2, - ACTIONS(5403), 1, + [111942] = 2, + ACTIONS(6203), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106910] = 2, - ACTIONS(3528), 1, + [111950] = 2, + ACTIONS(2648), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106918] = 2, - ACTIONS(4664), 1, - sym__lookback_semicolon, + [111958] = 2, + ACTIONS(6205), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106926] = 2, - ACTIONS(5405), 1, + [111966] = 2, + ACTIONS(4190), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106934] = 2, - ACTIONS(3464), 1, + [111974] = 2, + ACTIONS(2610), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106942] = 2, - ACTIONS(3508), 1, - anon_sym_RBRACE, + [111982] = 2, + ACTIONS(6207), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106950] = 2, - ACTIONS(3412), 1, + [111990] = 2, + ACTIONS(4100), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106958] = 2, - ACTIONS(5025), 1, - anon_sym_RBRACK, + [111998] = 2, + ACTIONS(4016), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106966] = 2, - ACTIONS(3520), 1, - sym__lookback_semicolon, + [112006] = 2, + ACTIONS(6209), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106974] = 2, - ACTIONS(3354), 1, + [112014] = 2, + ACTIONS(3431), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106982] = 2, - ACTIONS(5407), 1, - anon_sym_DASH_GT, + [112022] = 2, + ACTIONS(6211), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106990] = 2, - ACTIONS(2720), 1, + [112030] = 2, + ACTIONS(4092), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106998] = 2, - ACTIONS(3414), 1, - sym__lookback_semicolon, + [112038] = 2, + ACTIONS(6213), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107006] = 2, - ACTIONS(5409), 1, - anon_sym_RBRACE, + [112046] = 2, + ACTIONS(4148), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107014] = 2, - ACTIONS(3574), 1, + [112054] = 2, + ACTIONS(6215), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107022] = 2, - ACTIONS(3484), 1, + [112062] = 2, + ACTIONS(6217), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107030] = 2, - ACTIONS(3556), 1, + [112070] = 2, + ACTIONS(2658), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107038] = 2, - ACTIONS(5411), 1, - anon_sym_LPAREN, + [112078] = 2, + ACTIONS(5400), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107046] = 2, - ACTIONS(5413), 1, - anon_sym_RPAREN, + [112086] = 2, + ACTIONS(6219), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107054] = 2, - ACTIONS(5415), 1, - anon_sym_LPAREN, + [112094] = 2, + ACTIONS(4058), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107062] = 2, - ACTIONS(5417), 1, + [112102] = 2, + ACTIONS(4216), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107070] = 2, - ACTIONS(3486), 1, - anon_sym_RBRACK, + [112110] = 2, + ACTIONS(6221), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112118] = 2, + ACTIONS(6223), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107078] = 2, - ACTIONS(2712), 1, + [112126] = 2, + ACTIONS(4248), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107086] = 2, - ACTIONS(3416), 1, + [112134] = 2, + ACTIONS(4138), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107094] = 2, - ACTIONS(5419), 1, + [112142] = 2, + ACTIONS(6225), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107102] = 2, - ACTIONS(3390), 1, + [112150] = 2, + ACTIONS(4250), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107110] = 2, - ACTIONS(5421), 1, - anon_sym_LPAREN, + [112158] = 2, + ACTIONS(4128), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112166] = 2, + ACTIONS(6227), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107118] = 2, - ACTIONS(1984), 1, + [112174] = 2, + ACTIONS(3952), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107126] = 2, - ACTIONS(5423), 1, - anon_sym_LPAREN, + [112182] = 2, + ACTIONS(4252), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107134] = 2, - ACTIONS(5425), 1, + [112190] = 2, + ACTIONS(6229), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107142] = 2, - ACTIONS(5427), 1, - anon_sym_LPAREN, + [112198] = 2, + ACTIONS(6231), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107150] = 2, - ACTIONS(3534), 1, + [112206] = 2, + ACTIONS(4254), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107158] = 2, - ACTIONS(5429), 1, - anon_sym_LPAREN, + [112214] = 2, + ACTIONS(6233), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107166] = 2, - ACTIONS(5431), 1, - anon_sym_LPAREN, + [112222] = 2, + ACTIONS(5489), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107174] = 2, - ACTIONS(5433), 1, - anon_sym_DOT, + [112230] = 2, + ACTIONS(6235), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107182] = 2, - ACTIONS(5435), 1, - anon_sym_LPAREN, + [112238] = 2, + ACTIONS(4256), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107190] = 2, - ACTIONS(5437), 1, - anon_sym_LPAREN, + [112246] = 2, + ACTIONS(4218), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107198] = 2, - ACTIONS(5439), 1, - anon_sym_LPAREN, + [112254] = 2, + ACTIONS(4064), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107206] = 2, - ACTIONS(5441), 1, - anon_sym_DOT, + [112262] = 2, + ACTIONS(4066), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107214] = 2, - ACTIONS(5443), 1, - anon_sym_LPAREN, + [112270] = 2, + ACTIONS(6237), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107222] = 2, - ACTIONS(5445), 1, + [112278] = 2, + ACTIONS(6239), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107230] = 2, - ACTIONS(5447), 1, - anon_sym_RPAREN, + [112286] = 2, + ACTIONS(6241), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107238] = 2, - ACTIONS(3328), 1, + [112294] = 2, + ACTIONS(4222), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107246] = 2, - ACTIONS(3360), 1, + [112302] = 2, + ACTIONS(4022), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107254] = 2, - ACTIONS(3392), 1, + [112310] = 2, + ACTIONS(4076), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107262] = 2, - ACTIONS(4802), 1, - anon_sym_EQ_GT, + [112318] = 2, + ACTIONS(6243), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112326] = 2, + ACTIONS(6245), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107270] = 2, - ACTIONS(4690), 1, + [112334] = 2, + ACTIONS(4114), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107278] = 2, - ACTIONS(3066), 1, - anon_sym_RBRACK, + [112342] = 2, + ACTIONS(4126), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107286] = 2, - ACTIONS(3376), 1, - anon_sym_RBRACK, + [112350] = 2, + ACTIONS(3440), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107294] = 2, - ACTIONS(5449), 1, - anon_sym_DASH_GT, + [112358] = 2, + ACTIONS(5604), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107302] = 2, - ACTIONS(3418), 1, - sym__lookback_semicolon, + [112366] = 2, + ACTIONS(5644), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107310] = 2, - ACTIONS(3542), 1, + [112374] = 2, + ACTIONS(4052), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107318] = 2, - ACTIONS(3362), 1, - sym__lookback_semicolon, + [112382] = 2, + ACTIONS(6247), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112390] = 2, + ACTIONS(6249), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107326] = 2, - ACTIONS(3394), 1, + [112398] = 2, + ACTIONS(5493), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107334] = 2, - ACTIONS(3570), 1, + [112406] = 2, + ACTIONS(4220), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107342] = 2, - ACTIONS(5451), 1, - anon_sym_DOT, + [112414] = 2, + ACTIONS(4260), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107350] = 2, - ACTIONS(5453), 1, - anon_sym_DASH_GT, + [112422] = 2, + ACTIONS(6251), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107358] = 2, - ACTIONS(5455), 1, - anon_sym_DOT, + [112430] = 2, + ACTIONS(5609), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107366] = 2, - ACTIONS(3420), 1, + [112438] = 2, + ACTIONS(4262), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107374] = 2, - ACTIONS(5457), 1, - anon_sym_DOT, + [112446] = 2, + ACTIONS(6253), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107382] = 2, - ACTIONS(3336), 1, - sym__lookback_semicolon, + [112454] = 2, + ACTIONS(6255), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107390] = 2, - ACTIONS(3330), 1, - sym__lookback_semicolon, + [112462] = 2, + ACTIONS(6257), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107398] = 2, - ACTIONS(5459), 1, + [112470] = 2, + ACTIONS(6259), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107406] = 2, - ACTIONS(3352), 1, + [112478] = 2, + ACTIONS(5785), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107414] = 2, - ACTIONS(3474), 1, - anon_sym_RPAREN, + [112486] = 2, + ACTIONS(6261), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107422] = 2, - ACTIONS(5461), 1, - anon_sym_COLON, + [112494] = 2, + ACTIONS(4150), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107430] = 2, - ACTIONS(5463), 1, + [112502] = 2, + ACTIONS(5971), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107438] = 2, - ACTIONS(5465), 1, - anon_sym_DOT, + [112510] = 2, + ACTIONS(4264), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107446] = 2, - ACTIONS(5467), 1, + [112518] = 2, + ACTIONS(6263), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107454] = 2, - ACTIONS(3578), 1, - sym__lookback_semicolon, + [112526] = 2, + ACTIONS(6265), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107462] = 2, - ACTIONS(4735), 1, + [112534] = 2, + ACTIONS(4194), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107470] = 2, - ACTIONS(3612), 1, + [112542] = 2, + ACTIONS(4078), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107478] = 2, - ACTIONS(3580), 1, - sym__lookback_semicolon, + [112550] = 2, + ACTIONS(5613), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107486] = 2, - ACTIONS(3318), 1, + [112558] = 2, + ACTIONS(4178), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107494] = 2, - ACTIONS(3310), 1, + [112566] = 2, + ACTIONS(4040), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107502] = 2, - ACTIONS(1434), 1, - sym__lookback_semicolon, + [112574] = 2, + ACTIONS(6267), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107510] = 2, - ACTIONS(3582), 1, + [112582] = 2, + ACTIONS(4120), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107518] = 2, - ACTIONS(5469), 1, - anon_sym_RPAREN, + [112590] = 2, + ACTIONS(4094), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107526] = 2, - ACTIONS(5471), 1, - anon_sym_DOT, + [112598] = 2, + ACTIONS(3830), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107534] = 2, - ACTIONS(3584), 1, + [112606] = 2, + ACTIONS(4050), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107542] = 2, - ACTIONS(5473), 1, + [112614] = 2, + ACTIONS(6269), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112622] = 2, + ACTIONS(6271), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107550] = 2, - ACTIONS(3422), 1, + [112630] = 2, + ACTIONS(3306), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107558] = 2, - ACTIONS(5475), 1, + [112638] = 2, + ACTIONS(4106), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107566] = 2, - ACTIONS(3586), 1, + [112646] = 2, + ACTIONS(5386), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107574] = 2, - ACTIONS(5477), 1, - anon_sym_RPAREN, + [112654] = 2, + ACTIONS(6273), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107582] = 2, - ACTIONS(2780), 1, - sym__lookback_semicolon, + [112662] = 2, + ACTIONS(5617), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107590] = 2, - ACTIONS(3588), 1, - sym__lookback_semicolon, + [112670] = 2, + ACTIONS(6275), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107598] = 2, - ACTIONS(3516), 1, - sym__lookback_semicolon, + [112678] = 2, + ACTIONS(6277), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107606] = 2, - ACTIONS(3308), 1, - sym__lookback_semicolon, + [112686] = 2, + ACTIONS(6279), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107614] = 2, - ACTIONS(5479), 1, - anon_sym_RPAREN, + [112694] = 2, + ACTIONS(4266), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107622] = 2, - ACTIONS(5481), 1, + [112702] = 2, + ACTIONS(6281), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107630] = 2, - ACTIONS(5483), 1, - anon_sym_LPAREN, + [112710] = 2, + ACTIONS(3442), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107638] = 2, - ACTIONS(5485), 1, - anon_sym_LPAREN, + [112718] = 2, + ACTIONS(4268), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107646] = 2, - ACTIONS(5487), 1, - sym__lookback_semicolon, + [112726] = 2, + ACTIONS(6283), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107654] = 2, - ACTIONS(5489), 1, - anon_sym_DOT, + [112734] = 2, + ACTIONS(4030), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107662] = 2, - ACTIONS(3316), 1, + [112742] = 2, + ACTIONS(4042), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107670] = 2, - ACTIONS(3046), 1, - anon_sym_RBRACK, + [112750] = 2, + ACTIONS(4270), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107678] = 2, - ACTIONS(3300), 1, + [112758] = 2, + ACTIONS(3982), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107686] = 2, - ACTIONS(5491), 1, - anon_sym_EQ, + [112766] = 2, + ACTIONS(6285), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107694] = 2, - ACTIONS(1990), 1, + [112774] = 2, + ACTIONS(4272), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107702] = 2, - ACTIONS(5493), 1, + [112782] = 2, + ACTIONS(4032), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107710] = 2, - ACTIONS(5495), 1, - anon_sym_DOT, + [112790] = 2, + ACTIONS(4230), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107718] = 2, - ACTIONS(5497), 1, - anon_sym_DOT, + [112798] = 2, + ACTIONS(4192), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107726] = 2, - ACTIONS(3396), 1, + [112806] = 2, + ACTIONS(4274), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107734] = 2, - ACTIONS(3424), 1, + [112814] = 2, + ACTIONS(6287), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107742] = 2, - ACTIONS(5499), 1, - anon_sym_DOT, + [112822] = 2, + ACTIONS(4014), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107750] = 2, - ACTIONS(5501), 1, - anon_sym_DOT, + [112830] = 2, + ACTIONS(3944), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107758] = 2, - ACTIONS(5503), 1, - anon_sym_RPAREN, + [112838] = 2, + ACTIONS(4228), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107766] = 2, - ACTIONS(3346), 1, + [112846] = 2, + ACTIONS(4034), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107774] = 2, - ACTIONS(5505), 1, - anon_sym_EQ, + [112854] = 2, + ACTIONS(6289), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107782] = 2, - ACTIONS(5507), 1, + [112862] = 2, + ACTIONS(6291), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112870] = 2, + ACTIONS(6293), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107790] = 2, - ACTIONS(3590), 1, - sym__lookback_semicolon, + [112878] = 2, + ACTIONS(6295), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107798] = 2, - ACTIONS(5509), 1, - anon_sym_DOT, + [112886] = 2, + ACTIONS(6297), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107806] = 2, - ACTIONS(5511), 1, + [112894] = 2, + ACTIONS(6299), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107814] = 2, - ACTIONS(3592), 1, - sym__lookback_semicolon, + [112902] = 2, + ACTIONS(6301), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107822] = 2, - ACTIONS(2788), 1, + [112910] = 2, + ACTIONS(4070), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107830] = 2, - ACTIONS(5513), 1, - anon_sym_DOT, + [112918] = 2, + ACTIONS(6303), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112926] = 2, + ACTIONS(6305), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107838] = 2, - ACTIONS(3522), 1, + [112934] = 2, + ACTIONS(4154), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107846] = 2, - ACTIONS(3594), 1, + [112942] = 2, + ACTIONS(4182), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107854] = 2, - ACTIONS(3302), 1, - sym__lookback_semicolon, + [112950] = 2, + ACTIONS(3994), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107862] = 2, - ACTIONS(5515), 1, - anon_sym_DOT, + [112958] = 2, + ACTIONS(6307), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107870] = 2, - ACTIONS(3596), 1, + [112966] = 2, + ACTIONS(4200), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107878] = 2, - ACTIONS(3518), 1, - anon_sym_while, + [112974] = 2, + ACTIONS(3946), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107886] = 2, - ACTIONS(5517), 1, + [112982] = 2, + ACTIONS(3978), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107894] = 2, - ACTIONS(2758), 1, + [112990] = 2, + ACTIONS(6309), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112998] = 2, + ACTIONS(4116), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107902] = 2, - ACTIONS(5519), 1, - anon_sym_LPAREN, + [113006] = 2, + ACTIONS(4232), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107910] = 2, - ACTIONS(5521), 1, - anon_sym_LPAREN, + [113014] = 2, + ACTIONS(6311), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107918] = 2, - ACTIONS(5523), 1, + [113022] = 2, + ACTIONS(6313), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107926] = 2, - ACTIONS(5525), 1, + [113030] = 2, + ACTIONS(6315), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107934] = 2, - ACTIONS(2270), 1, + [113038] = 2, + ACTIONS(4204), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107942] = 2, - ACTIONS(3350), 1, - anon_sym_RPAREN, + [113046] = 2, + ACTIONS(3984), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107950] = 2, - ACTIONS(4763), 1, + [113054] = 2, + ACTIONS(4108), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107958] = 2, - ACTIONS(5527), 1, + [113062] = 2, + ACTIONS(6317), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107966] = 2, - ACTIONS(1968), 1, + [113070] = 2, + ACTIONS(4276), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107974] = 2, - ACTIONS(2762), 1, + [113078] = 2, + ACTIONS(4234), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107982] = 2, - ACTIONS(5529), 1, - anon_sym_DOT, + [113086] = 2, + ACTIONS(4130), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107990] = 2, - ACTIONS(5531), 1, - anon_sym_DOT, + [113094] = 2, + ACTIONS(4278), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107998] = 2, - ACTIONS(3428), 1, + [113102] = 2, + ACTIONS(6319), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108006] = 2, - ACTIONS(3314), 1, + [113110] = 2, + ACTIONS(4102), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108014] = 2, - ACTIONS(5533), 1, - anon_sym_DOT, + [113118] = 2, + ACTIONS(5625), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108022] = 2, - ACTIONS(5535), 1, - anon_sym_DOT, + [113126] = 2, + ACTIONS(4280), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108030] = 2, - ACTIONS(5537), 1, - anon_sym_DOT, + [113134] = 2, + ACTIONS(4036), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108038] = 2, - ACTIONS(3398), 1, + [113142] = 2, + ACTIONS(4152), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108046] = 2, - ACTIONS(5539), 1, - anon_sym_RBRACE, + [113150] = 2, + ACTIONS(4282), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108054] = 2, - ACTIONS(5541), 1, + [113158] = 2, + ACTIONS(6321), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108062] = 2, - ACTIONS(3598), 1, + [113166] = 2, + ACTIONS(6323), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108070] = 2, - ACTIONS(5543), 1, - anon_sym_DOT, + [113174] = 2, + ACTIONS(4296), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108078] = 2, - ACTIONS(3530), 1, + [113182] = 2, + ACTIONS(4284), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108086] = 2, - ACTIONS(3472), 1, - sym__lookback_semicolon, + [113190] = 2, + ACTIONS(6325), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108094] = 2, - ACTIONS(3374), 1, + [113198] = 2, + ACTIONS(4140), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108102] = 2, - ACTIONS(5545), 1, - anon_sym_DOT, + [113206] = 2, + ACTIONS(4286), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108110] = 2, - ACTIONS(5547), 1, - anon_sym_DOT, + [113214] = 2, + ACTIONS(6327), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108118] = 2, - ACTIONS(3602), 1, + [113222] = 2, + ACTIONS(4206), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108126] = 2, - ACTIONS(5549), 1, - anon_sym_DOT, + [113230] = 2, + ACTIONS(6329), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108134] = 2, - ACTIONS(5551), 1, - anon_sym_COLON, + [113238] = 2, + ACTIONS(4098), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108142] = 2, - ACTIONS(3604), 1, + [113246] = 2, + ACTIONS(4110), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108150] = 2, - ACTIONS(3054), 1, - anon_sym_RBRACK, + [113254] = 2, + ACTIONS(6331), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108158] = 2, - ACTIONS(3342), 1, - sym__lookback_semicolon, + [113262] = 2, + ACTIONS(6333), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108166] = 2, - ACTIONS(5553), 1, - sym__lookback_semicolon, + [113270] = 2, + ACTIONS(6335), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108174] = 2, - ACTIONS(5555), 1, + [113278] = 2, + ACTIONS(6337), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108182] = 2, - ACTIONS(5557), 1, + [113286] = 2, + ACTIONS(6339), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108190] = 2, - ACTIONS(5559), 1, - anon_sym_DOT, + [113294] = 2, + ACTIONS(6341), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108198] = 2, - ACTIONS(5561), 1, + [113302] = 2, + ACTIONS(6343), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108206] = 2, - ACTIONS(5563), 1, - anon_sym_DOT, + [113310] = 2, + ACTIONS(6345), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108214] = 2, - ACTIONS(3606), 1, - sym__lookback_semicolon, + [113318] = 2, + ACTIONS(6347), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108222] = 2, - ACTIONS(3478), 1, - sym__lookback_semicolon, + [113326] = 2, + ACTIONS(6349), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108230] = 2, - ACTIONS(5565), 1, - sym__lookback_semicolon, + [113334] = 2, + ACTIONS(6351), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108238] = 2, - ACTIONS(3312), 1, + [113342] = 2, + ACTIONS(5518), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108246] = 2, - ACTIONS(5567), 1, + [113350] = 2, + ACTIONS(4082), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108254] = 2, - ACTIONS(5569), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108262] = 2, - ACTIONS(3476), 1, + [113358] = 2, + ACTIONS(6353), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108270] = 2, - ACTIONS(5571), 1, + [113366] = 2, + ACTIONS(6355), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108278] = 2, - ACTIONS(3382), 1, + [113374] = 2, + ACTIONS(4288), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108286] = 2, - ACTIONS(3430), 1, - sym__lookback_semicolon, + [113382] = 2, + ACTIONS(4118), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108294] = 2, - ACTIONS(2786), 1, - sym__lookback_semicolon, + [113390] = 2, + ACTIONS(5849), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108302] = 2, - ACTIONS(3608), 1, - sym__lookback_semicolon, + [113398] = 2, + ACTIONS(6357), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108310] = 2, - ACTIONS(5573), 1, + [113406] = 2, + ACTIONS(6359), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108318] = 2, - ACTIONS(5575), 1, + [113414] = 2, + ACTIONS(6361), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108326] = 2, - ACTIONS(3610), 1, + [113422] = 2, + ACTIONS(4290), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108334] = 2, - ACTIONS(2775), 1, + [113430] = 2, + ACTIONS(5514), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108342] = 2, - ACTIONS(5577), 1, + [113438] = 2, + ACTIONS(6363), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108350] = 2, - ACTIONS(5579), 1, - anon_sym_DOT, + [113446] = 2, + ACTIONS(6365), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108358] = 2, - ACTIONS(5581), 1, - anon_sym_DOT, + [113454] = 2, + ACTIONS(3262), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108366] = 2, - ACTIONS(3368), 1, - anon_sym_RBRACK, + [113462] = 2, + ACTIONS(4038), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108374] = 2, - ACTIONS(5583), 1, - anon_sym_RPAREN, + [113470] = 2, + ACTIONS(2604), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108382] = 2, - ACTIONS(3344), 1, + [113478] = 2, + ACTIONS(4080), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108390] = 2, - ACTIONS(3532), 1, + [113486] = 2, + ACTIONS(6367), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113494] = 2, + ACTIONS(4292), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108398] = 2, - ACTIONS(5585), 1, + [113502] = 2, + ACTIONS(6369), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108406] = 2, - ACTIONS(5587), 1, + [113510] = 2, + ACTIONS(6371), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108414] = 2, - ACTIONS(5589), 1, - anon_sym_RPAREN, + [113518] = 2, + ACTIONS(6373), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108422] = 2, - ACTIONS(3614), 1, + [113526] = 2, + ACTIONS(4096), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108430] = 2, - ACTIONS(5591), 1, - ts_builtin_sym_end, + [113534] = 2, + ACTIONS(6375), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108438] = 2, - ACTIONS(3432), 1, - sym__lookback_semicolon, + [113542] = 2, + ACTIONS(4238), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108446] = 2, - ACTIONS(3616), 1, + [113550] = 2, + ACTIONS(5522), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108454] = 2, - ACTIONS(5593), 1, - anon_sym_RBRACE, + [113558] = 2, + ACTIONS(6377), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108462] = 2, - ACTIONS(5595), 1, - anon_sym_DOT, + [113566] = 2, + ACTIONS(6379), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108470] = 2, - ACTIONS(3078), 1, - anon_sym_RBRACK, + [113574] = 2, + ACTIONS(6381), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108478] = 2, - ACTIONS(5597), 1, + [113582] = 2, + ACTIONS(6383), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108486] = 2, - ACTIONS(5599), 1, - anon_sym_DASH_GT, + [113590] = 2, + ACTIONS(6385), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108494] = 2, - ACTIONS(3618), 1, + [113598] = 2, + ACTIONS(2616), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108502] = 2, - ACTIONS(3306), 1, + [113606] = 2, + ACTIONS(4294), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108510] = 2, - ACTIONS(3524), 1, - sym__lookback_semicolon, + [113614] = 2, + ACTIONS(6387), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113622] = 2, + ACTIONS(6389), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113630] = 2, + ACTIONS(6391), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108518] = 2, - ACTIONS(5601), 1, + [113638] = 2, + ACTIONS(6393), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, + [113646] = 2, + ACTIONS(4258), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(846)] = 0, - [SMALL_STATE(847)] = 111, - [SMALL_STATE(848)] = 222, - [SMALL_STATE(849)] = 330, - [SMALL_STATE(850)] = 440, - [SMALL_STATE(851)] = 509, - [SMALL_STATE(852)] = 618, - [SMALL_STATE(853)] = 727, - [SMALL_STATE(854)] = 836, - [SMALL_STATE(855)] = 945, - [SMALL_STATE(856)] = 1054, - [SMALL_STATE(857)] = 1163, - [SMALL_STATE(858)] = 1272, - [SMALL_STATE(859)] = 1381, - [SMALL_STATE(860)] = 1483, - [SMALL_STATE(861)] = 1585, - [SMALL_STATE(862)] = 1659, - [SMALL_STATE(863)] = 1761, - [SMALL_STATE(864)] = 1863, - [SMALL_STATE(865)] = 1965, - [SMALL_STATE(866)] = 2065, - [SMALL_STATE(867)] = 2165, - [SMALL_STATE(868)] = 2265, - [SMALL_STATE(869)] = 2365, - [SMALL_STATE(870)] = 2465, - [SMALL_STATE(871)] = 2565, - [SMALL_STATE(872)] = 2665, - [SMALL_STATE(873)] = 2765, - [SMALL_STATE(874)] = 2865, - [SMALL_STATE(875)] = 2965, - [SMALL_STATE(876)] = 3065, - [SMALL_STATE(877)] = 3165, - [SMALL_STATE(878)] = 3265, - [SMALL_STATE(879)] = 3365, - [SMALL_STATE(880)] = 3465, - [SMALL_STATE(881)] = 3565, - [SMALL_STATE(882)] = 3665, - [SMALL_STATE(883)] = 3765, - [SMALL_STATE(884)] = 3865, - [SMALL_STATE(885)] = 3965, - [SMALL_STATE(886)] = 4064, - [SMALL_STATE(887)] = 4163, - [SMALL_STATE(888)] = 4262, - [SMALL_STATE(889)] = 4361, - [SMALL_STATE(890)] = 4460, - [SMALL_STATE(891)] = 4559, - [SMALL_STATE(892)] = 4658, - [SMALL_STATE(893)] = 4757, - [SMALL_STATE(894)] = 4856, - [SMALL_STATE(895)] = 4955, - [SMALL_STATE(896)] = 5025, - [SMALL_STATE(897)] = 5123, - [SMALL_STATE(898)] = 5221, - [SMALL_STATE(899)] = 5319, - [SMALL_STATE(900)] = 5417, - [SMALL_STATE(901)] = 5495, - [SMALL_STATE(902)] = 5593, - [SMALL_STATE(903)] = 5691, - [SMALL_STATE(904)] = 5789, - [SMALL_STATE(905)] = 5887, - [SMALL_STATE(906)] = 5953, - [SMALL_STATE(907)] = 6051, - [SMALL_STATE(908)] = 6149, - [SMALL_STATE(909)] = 6225, - [SMALL_STATE(910)] = 6288, - [SMALL_STATE(911)] = 6351, - [SMALL_STATE(912)] = 6420, - [SMALL_STATE(913)] = 6484, - [SMALL_STATE(914)] = 6558, - [SMALL_STATE(915)] = 6632, - [SMALL_STATE(916)] = 6704, - [SMALL_STATE(917)] = 6780, - [SMALL_STATE(918)] = 6852, - [SMALL_STATE(919)] = 6919, - [SMALL_STATE(920)] = 6986, - [SMALL_STATE(921)] = 7053, - [SMALL_STATE(922)] = 7120, - [SMALL_STATE(923)] = 7179, - [SMALL_STATE(924)] = 7240, - [SMALL_STATE(925)] = 7318, - [SMALL_STATE(926)] = 7390, - [SMALL_STATE(927)] = 7468, - [SMALL_STATE(928)] = 7546, - [SMALL_STATE(929)] = 7624, - [SMALL_STATE(930)] = 7702, - [SMALL_STATE(931)] = 7774, - [SMALL_STATE(932)] = 7852, - [SMALL_STATE(933)] = 7926, - [SMALL_STATE(934)] = 8000, - [SMALL_STATE(935)] = 8058, - [SMALL_STATE(936)] = 8120, - [SMALL_STATE(937)] = 8193, - [SMALL_STATE(938)] = 8268, - [SMALL_STATE(939)] = 8343, - [SMALL_STATE(940)] = 8416, - [SMALL_STATE(941)] = 8491, - [SMALL_STATE(942)] = 8546, - [SMALL_STATE(943)] = 8601, - [SMALL_STATE(944)] = 8670, - [SMALL_STATE(945)] = 8731, - [SMALL_STATE(946)] = 8800, - [SMALL_STATE(947)] = 8855, - [SMALL_STATE(948)] = 8910, - [SMALL_STATE(949)] = 8985, - [SMALL_STATE(950)] = 9060, - [SMALL_STATE(951)] = 9115, - [SMALL_STATE(952)] = 9170, - [SMALL_STATE(953)] = 9230, - [SMALL_STATE(954)] = 9308, - [SMALL_STATE(955)] = 9364, - [SMALL_STATE(956)] = 9442, - [SMALL_STATE(957)] = 9500, - [SMALL_STATE(958)] = 9578, - [SMALL_STATE(959)] = 9656, - [SMALL_STATE(960)] = 9734, - [SMALL_STATE(961)] = 9788, - [SMALL_STATE(962)] = 9866, - [SMALL_STATE(963)] = 9922, - [SMALL_STATE(964)] = 10000, - [SMALL_STATE(965)] = 10078, - [SMALL_STATE(966)] = 10156, - [SMALL_STATE(967)] = 10234, - [SMALL_STATE(968)] = 10288, - [SMALL_STATE(969)] = 10348, - [SMALL_STATE(970)] = 10402, - [SMALL_STATE(971)] = 10477, - [SMALL_STATE(972)] = 10546, - [SMALL_STATE(973)] = 10615, - [SMALL_STATE(974)] = 10684, - [SMALL_STATE(975)] = 10753, - [SMALL_STATE(976)] = 10822, - [SMALL_STATE(977)] = 10875, - [SMALL_STATE(978)] = 10944, - [SMALL_STATE(979)] = 11017, - [SMALL_STATE(980)] = 11086, - [SMALL_STATE(981)] = 11155, - [SMALL_STATE(982)] = 11208, - [SMALL_STATE(983)] = 11283, - [SMALL_STATE(984)] = 11358, - [SMALL_STATE(985)] = 11431, - [SMALL_STATE(986)] = 11504, - [SMALL_STATE(987)] = 11577, - [SMALL_STATE(988)] = 11646, - [SMALL_STATE(989)] = 11721, - [SMALL_STATE(990)] = 11790, - [SMALL_STATE(991)] = 11857, - [SMALL_STATE(992)] = 11928, - [SMALL_STATE(993)] = 11995, - [SMALL_STATE(994)] = 12068, - [SMALL_STATE(995)] = 12143, - [SMALL_STATE(996)] = 12212, - [SMALL_STATE(997)] = 12279, - [SMALL_STATE(998)] = 12332, - [SMALL_STATE(999)] = 12405, - [SMALL_STATE(1000)] = 12480, - [SMALL_STATE(1001)] = 12553, - [SMALL_STATE(1002)] = 12626, - [SMALL_STATE(1003)] = 12695, - [SMALL_STATE(1004)] = 12766, - [SMALL_STATE(1005)] = 12839, - [SMALL_STATE(1006)] = 12908, - [SMALL_STATE(1007)] = 12977, - [SMALL_STATE(1008)] = 13046, - [SMALL_STATE(1009)] = 13119, - [SMALL_STATE(1010)] = 13190, - [SMALL_STATE(1011)] = 13263, - [SMALL_STATE(1012)] = 13332, - [SMALL_STATE(1013)] = 13405, - [SMALL_STATE(1014)] = 13480, - [SMALL_STATE(1015)] = 13547, - [SMALL_STATE(1016)] = 13616, - [SMALL_STATE(1017)] = 13685, - [SMALL_STATE(1018)] = 13738, - [SMALL_STATE(1019)] = 13807, - [SMALL_STATE(1020)] = 13860, - [SMALL_STATE(1021)] = 13929, - [SMALL_STATE(1022)] = 14004, - [SMALL_STATE(1023)] = 14057, - [SMALL_STATE(1024)] = 14110, - [SMALL_STATE(1025)] = 14185, - [SMALL_STATE(1026)] = 14238, - [SMALL_STATE(1027)] = 14307, - [SMALL_STATE(1028)] = 14360, - [SMALL_STATE(1029)] = 14429, - [SMALL_STATE(1030)] = 14482, - [SMALL_STATE(1031)] = 14535, - [SMALL_STATE(1032)] = 14604, - [SMALL_STATE(1033)] = 14673, - [SMALL_STATE(1034)] = 14748, - [SMALL_STATE(1035)] = 14801, - [SMALL_STATE(1036)] = 14887, - [SMALL_STATE(1037)] = 14957, - [SMALL_STATE(1038)] = 15027, - [SMALL_STATE(1039)] = 15113, - [SMALL_STATE(1040)] = 15179, - [SMALL_STATE(1041)] = 15265, - [SMALL_STATE(1042)] = 15331, - [SMALL_STATE(1043)] = 15401, - [SMALL_STATE(1044)] = 15467, - [SMALL_STATE(1045)] = 15519, - [SMALL_STATE(1046)] = 15585, - [SMALL_STATE(1047)] = 15655, - [SMALL_STATE(1048)] = 15721, - [SMALL_STATE(1049)] = 15787, - [SMALL_STATE(1050)] = 15857, - [SMALL_STATE(1051)] = 15923, - [SMALL_STATE(1052)] = 15989, - [SMALL_STATE(1053)] = 16075, - [SMALL_STATE(1054)] = 16145, - [SMALL_STATE(1055)] = 16211, - [SMALL_STATE(1056)] = 16277, - [SMALL_STATE(1057)] = 16343, - [SMALL_STATE(1058)] = 16413, - [SMALL_STATE(1059)] = 16499, - [SMALL_STATE(1060)] = 16565, - [SMALL_STATE(1061)] = 16631, - [SMALL_STATE(1062)] = 16683, - [SMALL_STATE(1063)] = 16749, - [SMALL_STATE(1064)] = 16815, - [SMALL_STATE(1065)] = 16881, - [SMALL_STATE(1066)] = 16947, - [SMALL_STATE(1067)] = 17017, - [SMALL_STATE(1068)] = 17083, - [SMALL_STATE(1069)] = 17152, - [SMALL_STATE(1070)] = 17221, - [SMALL_STATE(1071)] = 17290, - [SMALL_STATE(1072)] = 17359, - [SMALL_STATE(1073)] = 17428, - [SMALL_STATE(1074)] = 17497, - [SMALL_STATE(1075)] = 17566, - [SMALL_STATE(1076)] = 17635, - [SMALL_STATE(1077)] = 17704, - [SMALL_STATE(1078)] = 17773, - [SMALL_STATE(1079)] = 17842, - [SMALL_STATE(1080)] = 17911, - [SMALL_STATE(1081)] = 17980, - [SMALL_STATE(1082)] = 18049, - [SMALL_STATE(1083)] = 18118, - [SMALL_STATE(1084)] = 18187, - [SMALL_STATE(1085)] = 18256, - [SMALL_STATE(1086)] = 18325, - [SMALL_STATE(1087)] = 18394, - [SMALL_STATE(1088)] = 18463, - [SMALL_STATE(1089)] = 18532, - [SMALL_STATE(1090)] = 18601, - [SMALL_STATE(1091)] = 18670, - [SMALL_STATE(1092)] = 18739, - [SMALL_STATE(1093)] = 18808, - [SMALL_STATE(1094)] = 18877, - [SMALL_STATE(1095)] = 18946, - [SMALL_STATE(1096)] = 19009, - [SMALL_STATE(1097)] = 19078, - [SMALL_STATE(1098)] = 19147, - [SMALL_STATE(1099)] = 19216, - [SMALL_STATE(1100)] = 19285, - [SMALL_STATE(1101)] = 19354, - [SMALL_STATE(1102)] = 19423, - [SMALL_STATE(1103)] = 19492, - [SMALL_STATE(1104)] = 19561, - [SMALL_STATE(1105)] = 19630, - [SMALL_STATE(1106)] = 19699, - [SMALL_STATE(1107)] = 19768, - [SMALL_STATE(1108)] = 19837, - [SMALL_STATE(1109)] = 19906, - [SMALL_STATE(1110)] = 19975, - [SMALL_STATE(1111)] = 20044, - [SMALL_STATE(1112)] = 20113, - [SMALL_STATE(1113)] = 20182, - [SMALL_STATE(1114)] = 20251, - [SMALL_STATE(1115)] = 20320, - [SMALL_STATE(1116)] = 20383, - [SMALL_STATE(1117)] = 20452, - [SMALL_STATE(1118)] = 20521, - [SMALL_STATE(1119)] = 20590, - [SMALL_STATE(1120)] = 20659, - [SMALL_STATE(1121)] = 20728, - [SMALL_STATE(1122)] = 20791, - [SMALL_STATE(1123)] = 20860, - [SMALL_STATE(1124)] = 20929, - [SMALL_STATE(1125)] = 20998, - [SMALL_STATE(1126)] = 21067, - [SMALL_STATE(1127)] = 21136, - [SMALL_STATE(1128)] = 21199, - [SMALL_STATE(1129)] = 21268, - [SMALL_STATE(1130)] = 21337, - [SMALL_STATE(1131)] = 21406, - [SMALL_STATE(1132)] = 21475, - [SMALL_STATE(1133)] = 21544, - [SMALL_STATE(1134)] = 21613, - [SMALL_STATE(1135)] = 21682, - [SMALL_STATE(1136)] = 21751, - [SMALL_STATE(1137)] = 21820, - [SMALL_STATE(1138)] = 21889, - [SMALL_STATE(1139)] = 21958, - [SMALL_STATE(1140)] = 22027, - [SMALL_STATE(1141)] = 22096, - [SMALL_STATE(1142)] = 22165, - [SMALL_STATE(1143)] = 22234, - [SMALL_STATE(1144)] = 22303, - [SMALL_STATE(1145)] = 22372, - [SMALL_STATE(1146)] = 22441, - [SMALL_STATE(1147)] = 22510, - [SMALL_STATE(1148)] = 22579, - [SMALL_STATE(1149)] = 22648, - [SMALL_STATE(1150)] = 22717, - [SMALL_STATE(1151)] = 22786, - [SMALL_STATE(1152)] = 22855, - [SMALL_STATE(1153)] = 22924, - [SMALL_STATE(1154)] = 22993, - [SMALL_STATE(1155)] = 23062, - [SMALL_STATE(1156)] = 23131, - [SMALL_STATE(1157)] = 23200, - [SMALL_STATE(1158)] = 23269, - [SMALL_STATE(1159)] = 23338, - [SMALL_STATE(1160)] = 23407, - [SMALL_STATE(1161)] = 23476, - [SMALL_STATE(1162)] = 23545, - [SMALL_STATE(1163)] = 23614, - [SMALL_STATE(1164)] = 23683, - [SMALL_STATE(1165)] = 23752, - [SMALL_STATE(1166)] = 23821, - [SMALL_STATE(1167)] = 23890, - [SMALL_STATE(1168)] = 23959, - [SMALL_STATE(1169)] = 24028, - [SMALL_STATE(1170)] = 24097, - [SMALL_STATE(1171)] = 24166, - [SMALL_STATE(1172)] = 24235, - [SMALL_STATE(1173)] = 24304, - [SMALL_STATE(1174)] = 24373, - [SMALL_STATE(1175)] = 24442, - [SMALL_STATE(1176)] = 24511, - [SMALL_STATE(1177)] = 24580, - [SMALL_STATE(1178)] = 24649, - [SMALL_STATE(1179)] = 24712, - [SMALL_STATE(1180)] = 24781, - [SMALL_STATE(1181)] = 24850, - [SMALL_STATE(1182)] = 24919, - [SMALL_STATE(1183)] = 24988, - [SMALL_STATE(1184)] = 25057, - [SMALL_STATE(1185)] = 25126, - [SMALL_STATE(1186)] = 25195, - [SMALL_STATE(1187)] = 25264, - [SMALL_STATE(1188)] = 25333, - [SMALL_STATE(1189)] = 25402, - [SMALL_STATE(1190)] = 25471, - [SMALL_STATE(1191)] = 25540, - [SMALL_STATE(1192)] = 25609, - [SMALL_STATE(1193)] = 25672, - [SMALL_STATE(1194)] = 25741, - [SMALL_STATE(1195)] = 25810, - [SMALL_STATE(1196)] = 25879, - [SMALL_STATE(1197)] = 25948, - [SMALL_STATE(1198)] = 26017, - [SMALL_STATE(1199)] = 26086, - [SMALL_STATE(1200)] = 26155, - [SMALL_STATE(1201)] = 26224, - [SMALL_STATE(1202)] = 26293, - [SMALL_STATE(1203)] = 26362, - [SMALL_STATE(1204)] = 26431, - [SMALL_STATE(1205)] = 26500, - [SMALL_STATE(1206)] = 26569, - [SMALL_STATE(1207)] = 26638, - [SMALL_STATE(1208)] = 26707, - [SMALL_STATE(1209)] = 26776, - [SMALL_STATE(1210)] = 26845, - [SMALL_STATE(1211)] = 26914, - [SMALL_STATE(1212)] = 26983, - [SMALL_STATE(1213)] = 27052, - [SMALL_STATE(1214)] = 27121, - [SMALL_STATE(1215)] = 27190, - [SMALL_STATE(1216)] = 27259, - [SMALL_STATE(1217)] = 27328, - [SMALL_STATE(1218)] = 27397, - [SMALL_STATE(1219)] = 27466, - [SMALL_STATE(1220)] = 27535, - [SMALL_STATE(1221)] = 27604, - [SMALL_STATE(1222)] = 27673, - [SMALL_STATE(1223)] = 27742, - [SMALL_STATE(1224)] = 27811, - [SMALL_STATE(1225)] = 27880, - [SMALL_STATE(1226)] = 27949, - [SMALL_STATE(1227)] = 28018, - [SMALL_STATE(1228)] = 28087, - [SMALL_STATE(1229)] = 28156, - [SMALL_STATE(1230)] = 28225, - [SMALL_STATE(1231)] = 28294, - [SMALL_STATE(1232)] = 28363, - [SMALL_STATE(1233)] = 28432, - [SMALL_STATE(1234)] = 28501, - [SMALL_STATE(1235)] = 28570, - [SMALL_STATE(1236)] = 28639, - [SMALL_STATE(1237)] = 28708, - [SMALL_STATE(1238)] = 28777, - [SMALL_STATE(1239)] = 28846, - [SMALL_STATE(1240)] = 28915, - [SMALL_STATE(1241)] = 28984, - [SMALL_STATE(1242)] = 29053, - [SMALL_STATE(1243)] = 29122, - [SMALL_STATE(1244)] = 29191, - [SMALL_STATE(1245)] = 29260, - [SMALL_STATE(1246)] = 29329, - [SMALL_STATE(1247)] = 29398, - [SMALL_STATE(1248)] = 29467, - [SMALL_STATE(1249)] = 29536, - [SMALL_STATE(1250)] = 29605, - [SMALL_STATE(1251)] = 29674, - [SMALL_STATE(1252)] = 29743, - [SMALL_STATE(1253)] = 29812, - [SMALL_STATE(1254)] = 29881, - [SMALL_STATE(1255)] = 29950, - [SMALL_STATE(1256)] = 30019, - [SMALL_STATE(1257)] = 30088, - [SMALL_STATE(1258)] = 30157, - [SMALL_STATE(1259)] = 30226, - [SMALL_STATE(1260)] = 30295, - [SMALL_STATE(1261)] = 30364, - [SMALL_STATE(1262)] = 30433, - [SMALL_STATE(1263)] = 30502, - [SMALL_STATE(1264)] = 30571, - [SMALL_STATE(1265)] = 30640, - [SMALL_STATE(1266)] = 30709, - [SMALL_STATE(1267)] = 30778, - [SMALL_STATE(1268)] = 30847, - [SMALL_STATE(1269)] = 30916, - [SMALL_STATE(1270)] = 30995, - [SMALL_STATE(1271)] = 31074, - [SMALL_STATE(1272)] = 31153, - [SMALL_STATE(1273)] = 31236, - [SMALL_STATE(1274)] = 31319, - [SMALL_STATE(1275)] = 31402, - [SMALL_STATE(1276)] = 31485, - [SMALL_STATE(1277)] = 31568, - [SMALL_STATE(1278)] = 31647, - [SMALL_STATE(1279)] = 31725, - [SMALL_STATE(1280)] = 31813, - [SMALL_STATE(1281)] = 31891, - [SMALL_STATE(1282)] = 31979, - [SMALL_STATE(1283)] = 32061, - [SMALL_STATE(1284)] = 32143, - [SMALL_STATE(1285)] = 32225, - [SMALL_STATE(1286)] = 32307, - [SMALL_STATE(1287)] = 32389, - [SMALL_STATE(1288)] = 32448, - [SMALL_STATE(1289)] = 32507, - [SMALL_STATE(1290)] = 32566, - [SMALL_STATE(1291)] = 32625, - [SMALL_STATE(1292)] = 32681, - [SMALL_STATE(1293)] = 32767, - [SMALL_STATE(1294)] = 32847, - [SMALL_STATE(1295)] = 32903, - [SMALL_STATE(1296)] = 32959, - [SMALL_STATE(1297)] = 33045, - [SMALL_STATE(1298)] = 33125, - [SMALL_STATE(1299)] = 33205, - [SMALL_STATE(1300)] = 33261, - [SMALL_STATE(1301)] = 33341, - [SMALL_STATE(1302)] = 33421, - [SMALL_STATE(1303)] = 33468, - [SMALL_STATE(1304)] = 33555, - [SMALL_STATE(1305)] = 33642, - [SMALL_STATE(1306)] = 33729, - [SMALL_STATE(1307)] = 33816, - [SMALL_STATE(1308)] = 33903, - [SMALL_STATE(1309)] = 33950, - [SMALL_STATE(1310)] = 34034, - [SMALL_STATE(1311)] = 34112, - [SMALL_STATE(1312)] = 34196, - [SMALL_STATE(1313)] = 34280, - [SMALL_STATE(1314)] = 34364, - [SMALL_STATE(1315)] = 34448, - [SMALL_STATE(1316)] = 34532, - [SMALL_STATE(1317)] = 34588, - [SMALL_STATE(1318)] = 34672, - [SMALL_STATE(1319)] = 34756, - [SMALL_STATE(1320)] = 34840, - [SMALL_STATE(1321)] = 34924, - [SMALL_STATE(1322)] = 34980, - [SMALL_STATE(1323)] = 35064, - [SMALL_STATE(1324)] = 35120, - [SMALL_STATE(1325)] = 35204, - [SMALL_STATE(1326)] = 35254, - [SMALL_STATE(1327)] = 35336, - [SMALL_STATE(1328)] = 35420, - [SMALL_STATE(1329)] = 35504, - [SMALL_STATE(1330)] = 35554, - [SMALL_STATE(1331)] = 35638, - [SMALL_STATE(1332)] = 35722, - [SMALL_STATE(1333)] = 35806, - [SMALL_STATE(1334)] = 35890, - [SMALL_STATE(1335)] = 35974, - [SMALL_STATE(1336)] = 36058, - [SMALL_STATE(1337)] = 36142, - [SMALL_STATE(1338)] = 36198, - [SMALL_STATE(1339)] = 36248, - [SMALL_STATE(1340)] = 36332, - [SMALL_STATE(1341)] = 36416, - [SMALL_STATE(1342)] = 36500, - [SMALL_STATE(1343)] = 36584, - [SMALL_STATE(1344)] = 36634, - [SMALL_STATE(1345)] = 36690, - [SMALL_STATE(1346)] = 36774, - [SMALL_STATE(1347)] = 36858, - [SMALL_STATE(1348)] = 36942, - [SMALL_STATE(1349)] = 37026, - [SMALL_STATE(1350)] = 37110, - [SMALL_STATE(1351)] = 37194, - [SMALL_STATE(1352)] = 37278, - [SMALL_STATE(1353)] = 37362, - [SMALL_STATE(1354)] = 37446, - [SMALL_STATE(1355)] = 37530, - [SMALL_STATE(1356)] = 37580, - [SMALL_STATE(1357)] = 37664, - [SMALL_STATE(1358)] = 37748, - [SMALL_STATE(1359)] = 37832, - [SMALL_STATE(1360)] = 37910, - [SMALL_STATE(1361)] = 37988, - [SMALL_STATE(1362)] = 38066, - [SMALL_STATE(1363)] = 38144, - [SMALL_STATE(1364)] = 38228, - [SMALL_STATE(1365)] = 38309, - [SMALL_STATE(1366)] = 38390, - [SMALL_STATE(1367)] = 38471, - [SMALL_STATE(1368)] = 38520, - [SMALL_STATE(1369)] = 38573, - [SMALL_STATE(1370)] = 38654, - [SMALL_STATE(1371)] = 38707, - [SMALL_STATE(1372)] = 38788, - [SMALL_STATE(1373)] = 38869, - [SMALL_STATE(1374)] = 38914, - [SMALL_STATE(1375)] = 38995, - [SMALL_STATE(1376)] = 39076, - [SMALL_STATE(1377)] = 39159, - [SMALL_STATE(1378)] = 39212, - [SMALL_STATE(1379)] = 39259, - [SMALL_STATE(1380)] = 39340, - [SMALL_STATE(1381)] = 39421, - [SMALL_STATE(1382)] = 39502, - [SMALL_STATE(1383)] = 39583, - [SMALL_STATE(1384)] = 39664, - [SMALL_STATE(1385)] = 39707, - [SMALL_STATE(1386)] = 39788, - [SMALL_STATE(1387)] = 39869, - [SMALL_STATE(1388)] = 39950, - [SMALL_STATE(1389)] = 40031, - [SMALL_STATE(1390)] = 40112, - [SMALL_STATE(1391)] = 40193, - [SMALL_STATE(1392)] = 40274, - [SMALL_STATE(1393)] = 40355, - [SMALL_STATE(1394)] = 40436, - [SMALL_STATE(1395)] = 40479, - [SMALL_STATE(1396)] = 40530, - [SMALL_STATE(1397)] = 40611, - [SMALL_STATE(1398)] = 40660, - [SMALL_STATE(1399)] = 40741, - [SMALL_STATE(1400)] = 40822, - [SMALL_STATE(1401)] = 40903, - [SMALL_STATE(1402)] = 40984, - [SMALL_STATE(1403)] = 41065, - [SMALL_STATE(1404)] = 41146, - [SMALL_STATE(1405)] = 41227, - [SMALL_STATE(1406)] = 41308, - [SMALL_STATE(1407)] = 41359, - [SMALL_STATE(1408)] = 41440, - [SMALL_STATE(1409)] = 41521, - [SMALL_STATE(1410)] = 41602, - [SMALL_STATE(1411)] = 41683, - [SMALL_STATE(1412)] = 41764, - [SMALL_STATE(1413)] = 41845, - [SMALL_STATE(1414)] = 41926, - [SMALL_STATE(1415)] = 42007, - [SMALL_STATE(1416)] = 42050, - [SMALL_STATE(1417)] = 42092, - [SMALL_STATE(1418)] = 42134, - [SMALL_STATE(1419)] = 42218, - [SMALL_STATE(1420)] = 42260, - [SMALL_STATE(1421)] = 42314, - [SMALL_STATE(1422)] = 42356, - [SMALL_STATE(1423)] = 42398, - [SMALL_STATE(1424)] = 42482, - [SMALL_STATE(1425)] = 42558, - [SMALL_STATE(1426)] = 42634, - [SMALL_STATE(1427)] = 42710, - [SMALL_STATE(1428)] = 42786, - [SMALL_STATE(1429)] = 42862, - [SMALL_STATE(1430)] = 42946, - [SMALL_STATE(1431)] = 42994, - [SMALL_STATE(1432)] = 43036, - [SMALL_STATE(1433)] = 43120, - [SMALL_STATE(1434)] = 43204, - [SMALL_STATE(1435)] = 43252, - [SMALL_STATE(1436)] = 43294, - [SMALL_STATE(1437)] = 43378, - [SMALL_STATE(1438)] = 43432, - [SMALL_STATE(1439)] = 43474, - [SMALL_STATE(1440)] = 43516, - [SMALL_STATE(1441)] = 43558, - [SMALL_STATE(1442)] = 43600, - [SMALL_STATE(1443)] = 43642, - [SMALL_STATE(1444)] = 43726, - [SMALL_STATE(1445)] = 43810, - [SMALL_STATE(1446)] = 43852, - [SMALL_STATE(1447)] = 43894, - [SMALL_STATE(1448)] = 43940, - [SMALL_STATE(1449)] = 43982, - [SMALL_STATE(1450)] = 44024, - [SMALL_STATE(1451)] = 44104, - [SMALL_STATE(1452)] = 44146, - [SMALL_STATE(1453)] = 44188, - [SMALL_STATE(1454)] = 44242, - [SMALL_STATE(1455)] = 44290, - [SMALL_STATE(1456)] = 44332, - [SMALL_STATE(1457)] = 44388, - [SMALL_STATE(1458)] = 44430, - [SMALL_STATE(1459)] = 44484, - [SMALL_STATE(1460)] = 44538, - [SMALL_STATE(1461)] = 44580, - [SMALL_STATE(1462)] = 44622, - [SMALL_STATE(1463)] = 44664, - [SMALL_STATE(1464)] = 44706, - [SMALL_STATE(1465)] = 44748, - [SMALL_STATE(1466)] = 44790, - [SMALL_STATE(1467)] = 44834, - [SMALL_STATE(1468)] = 44876, - [SMALL_STATE(1469)] = 44918, - [SMALL_STATE(1470)] = 44960, - [SMALL_STATE(1471)] = 45002, - [SMALL_STATE(1472)] = 45044, - [SMALL_STATE(1473)] = 45086, - [SMALL_STATE(1474)] = 45128, - [SMALL_STATE(1475)] = 45170, - [SMALL_STATE(1476)] = 45212, - [SMALL_STATE(1477)] = 45254, - [SMALL_STATE(1478)] = 45308, - [SMALL_STATE(1479)] = 45362, - [SMALL_STATE(1480)] = 45406, - [SMALL_STATE(1481)] = 45448, - [SMALL_STATE(1482)] = 45490, - [SMALL_STATE(1483)] = 45532, - [SMALL_STATE(1484)] = 45574, - [SMALL_STATE(1485)] = 45658, - [SMALL_STATE(1486)] = 45700, - [SMALL_STATE(1487)] = 45744, - [SMALL_STATE(1488)] = 45828, - [SMALL_STATE(1489)] = 45876, - [SMALL_STATE(1490)] = 45924, - [SMALL_STATE(1491)] = 45966, - [SMALL_STATE(1492)] = 46008, - [SMALL_STATE(1493)] = 46050, - [SMALL_STATE(1494)] = 46092, - [SMALL_STATE(1495)] = 46143, - [SMALL_STATE(1496)] = 46184, - [SMALL_STATE(1497)] = 46225, - [SMALL_STATE(1498)] = 46266, - [SMALL_STATE(1499)] = 46307, - [SMALL_STATE(1500)] = 46348, - [SMALL_STATE(1501)] = 46389, - [SMALL_STATE(1502)] = 46430, - [SMALL_STATE(1503)] = 46471, - [SMALL_STATE(1504)] = 46512, - [SMALL_STATE(1505)] = 46553, - [SMALL_STATE(1506)] = 46594, - [SMALL_STATE(1507)] = 46673, - [SMALL_STATE(1508)] = 46714, - [SMALL_STATE(1509)] = 46755, - [SMALL_STATE(1510)] = 46796, - [SMALL_STATE(1511)] = 46837, - [SMALL_STATE(1512)] = 46878, - [SMALL_STATE(1513)] = 46919, - [SMALL_STATE(1514)] = 46960, - [SMALL_STATE(1515)] = 47001, - [SMALL_STATE(1516)] = 47042, - [SMALL_STATE(1517)] = 47083, - [SMALL_STATE(1518)] = 47130, - [SMALL_STATE(1519)] = 47181, - [SMALL_STATE(1520)] = 47222, - [SMALL_STATE(1521)] = 47269, - [SMALL_STATE(1522)] = 47310, - [SMALL_STATE(1523)] = 47357, - [SMALL_STATE(1524)] = 47408, - [SMALL_STATE(1525)] = 47487, - [SMALL_STATE(1526)] = 47568, - [SMALL_STATE(1527)] = 47649, - [SMALL_STATE(1528)] = 47690, - [SMALL_STATE(1529)] = 47731, - [SMALL_STATE(1530)] = 47772, - [SMALL_STATE(1531)] = 47813, - [SMALL_STATE(1532)] = 47854, - [SMALL_STATE(1533)] = 47933, - [SMALL_STATE(1534)] = 47974, - [SMALL_STATE(1535)] = 48047, - [SMALL_STATE(1536)] = 48098, - [SMALL_STATE(1537)] = 48171, - [SMALL_STATE(1538)] = 48244, - [SMALL_STATE(1539)] = 48317, - [SMALL_STATE(1540)] = 48364, - [SMALL_STATE(1541)] = 48437, - [SMALL_STATE(1542)] = 48488, - [SMALL_STATE(1543)] = 48529, - [SMALL_STATE(1544)] = 48602, - [SMALL_STATE(1545)] = 48675, - [SMALL_STATE(1546)] = 48748, - [SMALL_STATE(1547)] = 48821, - [SMALL_STATE(1548)] = 48894, - [SMALL_STATE(1549)] = 48941, - [SMALL_STATE(1550)] = 48982, - [SMALL_STATE(1551)] = 49033, - [SMALL_STATE(1552)] = 49074, - [SMALL_STATE(1553)] = 49153, - [SMALL_STATE(1554)] = 49194, - [SMALL_STATE(1555)] = 49235, - [SMALL_STATE(1556)] = 49276, - [SMALL_STATE(1557)] = 49329, - [SMALL_STATE(1558)] = 49370, - [SMALL_STATE(1559)] = 49411, - [SMALL_STATE(1560)] = 49452, - [SMALL_STATE(1561)] = 49499, - [SMALL_STATE(1562)] = 49577, - [SMALL_STATE(1563)] = 49655, - [SMALL_STATE(1564)] = 49733, - [SMALL_STATE(1565)] = 49811, - [SMALL_STATE(1566)] = 49889, - [SMALL_STATE(1567)] = 49967, - [SMALL_STATE(1568)] = 50045, - [SMALL_STATE(1569)] = 50091, - [SMALL_STATE(1570)] = 50169, - [SMALL_STATE(1571)] = 50247, - [SMALL_STATE(1572)] = 50325, - [SMALL_STATE(1573)] = 50403, - [SMALL_STATE(1574)] = 50481, - [SMALL_STATE(1575)] = 50559, - [SMALL_STATE(1576)] = 50637, - [SMALL_STATE(1577)] = 50677, - [SMALL_STATE(1578)] = 50755, - [SMALL_STATE(1579)] = 50833, - [SMALL_STATE(1580)] = 50911, - [SMALL_STATE(1581)] = 50989, - [SMALL_STATE(1582)] = 51067, - [SMALL_STATE(1583)] = 51107, - [SMALL_STATE(1584)] = 51185, - [SMALL_STATE(1585)] = 51263, - [SMALL_STATE(1586)] = 51305, - [SMALL_STATE(1587)] = 51383, - [SMALL_STATE(1588)] = 51461, - [SMALL_STATE(1589)] = 51539, - [SMALL_STATE(1590)] = 51617, - [SMALL_STATE(1591)] = 51695, - [SMALL_STATE(1592)] = 51773, - [SMALL_STATE(1593)] = 51851, - [SMALL_STATE(1594)] = 51929, - [SMALL_STATE(1595)] = 52007, - [SMALL_STATE(1596)] = 52085, - [SMALL_STATE(1597)] = 52163, - [SMALL_STATE(1598)] = 52241, - [SMALL_STATE(1599)] = 52319, - [SMALL_STATE(1600)] = 52397, - [SMALL_STATE(1601)] = 52475, - [SMALL_STATE(1602)] = 52553, - [SMALL_STATE(1603)] = 52603, - [SMALL_STATE(1604)] = 52681, - [SMALL_STATE(1605)] = 52725, - [SMALL_STATE(1606)] = 52803, - [SMALL_STATE(1607)] = 52845, - [SMALL_STATE(1608)] = 52917, - [SMALL_STATE(1609)] = 52995, - [SMALL_STATE(1610)] = 53073, - [SMALL_STATE(1611)] = 53151, - [SMALL_STATE(1612)] = 53223, - [SMALL_STATE(1613)] = 53295, - [SMALL_STATE(1614)] = 53373, - [SMALL_STATE(1615)] = 53451, - [SMALL_STATE(1616)] = 53523, - [SMALL_STATE(1617)] = 53601, - [SMALL_STATE(1618)] = 53679, - [SMALL_STATE(1619)] = 53757, - [SMALL_STATE(1620)] = 53835, - [SMALL_STATE(1621)] = 53875, - [SMALL_STATE(1622)] = 53921, - [SMALL_STATE(1623)] = 53999, - [SMALL_STATE(1624)] = 54077, - [SMALL_STATE(1625)] = 54155, - [SMALL_STATE(1626)] = 54233, - [SMALL_STATE(1627)] = 54311, - [SMALL_STATE(1628)] = 54389, - [SMALL_STATE(1629)] = 54433, - [SMALL_STATE(1630)] = 54505, - [SMALL_STATE(1631)] = 54583, - [SMALL_STATE(1632)] = 54661, - [SMALL_STATE(1633)] = 54739, - [SMALL_STATE(1634)] = 54817, - [SMALL_STATE(1635)] = 54889, - [SMALL_STATE(1636)] = 54967, - [SMALL_STATE(1637)] = 55039, - [SMALL_STATE(1638)] = 55117, - [SMALL_STATE(1639)] = 55195, - [SMALL_STATE(1640)] = 55273, - [SMALL_STATE(1641)] = 55351, - [SMALL_STATE(1642)] = 55423, - [SMALL_STATE(1643)] = 55501, - [SMALL_STATE(1644)] = 55579, - [SMALL_STATE(1645)] = 55651, - [SMALL_STATE(1646)] = 55729, - [SMALL_STATE(1647)] = 55807, - [SMALL_STATE(1648)] = 55885, - [SMALL_STATE(1649)] = 55963, - [SMALL_STATE(1650)] = 56041, - [SMALL_STATE(1651)] = 56119, - [SMALL_STATE(1652)] = 56197, - [SMALL_STATE(1653)] = 56269, - [SMALL_STATE(1654)] = 56347, - [SMALL_STATE(1655)] = 56389, - [SMALL_STATE(1656)] = 56431, - [SMALL_STATE(1657)] = 56509, - [SMALL_STATE(1658)] = 56587, - [SMALL_STATE(1659)] = 56665, - [SMALL_STATE(1660)] = 56743, - [SMALL_STATE(1661)] = 56821, - [SMALL_STATE(1662)] = 56899, - [SMALL_STATE(1663)] = 56977, - [SMALL_STATE(1664)] = 57055, - [SMALL_STATE(1665)] = 57133, - [SMALL_STATE(1666)] = 57211, - [SMALL_STATE(1667)] = 57289, - [SMALL_STATE(1668)] = 57367, - [SMALL_STATE(1669)] = 57445, - [SMALL_STATE(1670)] = 57523, - [SMALL_STATE(1671)] = 57601, - [SMALL_STATE(1672)] = 57679, - [SMALL_STATE(1673)] = 57757, - [SMALL_STATE(1674)] = 57835, - [SMALL_STATE(1675)] = 57913, - [SMALL_STATE(1676)] = 57957, - [SMALL_STATE(1677)] = 58035, - [SMALL_STATE(1678)] = 58113, - [SMALL_STATE(1679)] = 58191, - [SMALL_STATE(1680)] = 58269, - [SMALL_STATE(1681)] = 58347, - [SMALL_STATE(1682)] = 58387, - [SMALL_STATE(1683)] = 58429, - [SMALL_STATE(1684)] = 58507, - [SMALL_STATE(1685)] = 58585, - [SMALL_STATE(1686)] = 58663, - [SMALL_STATE(1687)] = 58741, - [SMALL_STATE(1688)] = 58819, - [SMALL_STATE(1689)] = 58897, - [SMALL_STATE(1690)] = 58941, - [SMALL_STATE(1691)] = 59019, - [SMALL_STATE(1692)] = 59097, - [SMALL_STATE(1693)] = 59175, - [SMALL_STATE(1694)] = 59253, - [SMALL_STATE(1695)] = 59331, - [SMALL_STATE(1696)] = 59371, - [SMALL_STATE(1697)] = 59411, - [SMALL_STATE(1698)] = 59489, - [SMALL_STATE(1699)] = 59567, - [SMALL_STATE(1700)] = 59607, - [SMALL_STATE(1701)] = 59685, - [SMALL_STATE(1702)] = 59763, - [SMALL_STATE(1703)] = 59841, - [SMALL_STATE(1704)] = 59919, - [SMALL_STATE(1705)] = 59997, - [SMALL_STATE(1706)] = 60075, - [SMALL_STATE(1707)] = 60153, - [SMALL_STATE(1708)] = 60231, - [SMALL_STATE(1709)] = 60309, - [SMALL_STATE(1710)] = 60387, - [SMALL_STATE(1711)] = 60465, - [SMALL_STATE(1712)] = 60543, - [SMALL_STATE(1713)] = 60621, - [SMALL_STATE(1714)] = 60699, - [SMALL_STATE(1715)] = 60777, - [SMALL_STATE(1716)] = 60855, - [SMALL_STATE(1717)] = 60933, - [SMALL_STATE(1718)] = 60973, - [SMALL_STATE(1719)] = 61013, - [SMALL_STATE(1720)] = 61088, - [SMALL_STATE(1721)] = 61163, - [SMALL_STATE(1722)] = 61202, - [SMALL_STATE(1723)] = 61243, - [SMALL_STATE(1724)] = 61318, - [SMALL_STATE(1725)] = 61393, - [SMALL_STATE(1726)] = 61432, - [SMALL_STATE(1727)] = 61507, - [SMALL_STATE(1728)] = 61582, - [SMALL_STATE(1729)] = 61621, - [SMALL_STATE(1730)] = 61696, - [SMALL_STATE(1731)] = 61771, - [SMALL_STATE(1732)] = 61810, - [SMALL_STATE(1733)] = 61885, - [SMALL_STATE(1734)] = 61924, - [SMALL_STATE(1735)] = 61999, - [SMALL_STATE(1736)] = 62074, - [SMALL_STATE(1737)] = 62149, - [SMALL_STATE(1738)] = 62190, - [SMALL_STATE(1739)] = 62265, - [SMALL_STATE(1740)] = 62304, - [SMALL_STATE(1741)] = 62379, - [SMALL_STATE(1742)] = 62454, - [SMALL_STATE(1743)] = 62529, - [SMALL_STATE(1744)] = 62604, - [SMALL_STATE(1745)] = 62679, - [SMALL_STATE(1746)] = 62754, - [SMALL_STATE(1747)] = 62829, - [SMALL_STATE(1748)] = 62904, - [SMALL_STATE(1749)] = 62949, - [SMALL_STATE(1750)] = 62990, - [SMALL_STATE(1751)] = 63065, - [SMALL_STATE(1752)] = 63140, - [SMALL_STATE(1753)] = 63179, - [SMALL_STATE(1754)] = 63254, - [SMALL_STATE(1755)] = 63329, - [SMALL_STATE(1756)] = 63404, - [SMALL_STATE(1757)] = 63479, - [SMALL_STATE(1758)] = 63554, - [SMALL_STATE(1759)] = 63629, - [SMALL_STATE(1760)] = 63700, - [SMALL_STATE(1761)] = 63775, - [SMALL_STATE(1762)] = 63814, - [SMALL_STATE(1763)] = 63853, - [SMALL_STATE(1764)] = 63928, - [SMALL_STATE(1765)] = 64003, - [SMALL_STATE(1766)] = 64042, - [SMALL_STATE(1767)] = 64117, - [SMALL_STATE(1768)] = 64192, - [SMALL_STATE(1769)] = 64267, - [SMALL_STATE(1770)] = 64342, - [SMALL_STATE(1771)] = 64417, - [SMALL_STATE(1772)] = 64492, - [SMALL_STATE(1773)] = 64567, - [SMALL_STATE(1774)] = 64606, - [SMALL_STATE(1775)] = 64681, - [SMALL_STATE(1776)] = 64756, - [SMALL_STATE(1777)] = 64827, - [SMALL_STATE(1778)] = 64902, - [SMALL_STATE(1779)] = 64977, - [SMALL_STATE(1780)] = 65052, - [SMALL_STATE(1781)] = 65127, - [SMALL_STATE(1782)] = 65166, - [SMALL_STATE(1783)] = 65241, - [SMALL_STATE(1784)] = 65316, - [SMALL_STATE(1785)] = 65355, - [SMALL_STATE(1786)] = 65430, - [SMALL_STATE(1787)] = 65505, - [SMALL_STATE(1788)] = 65580, - [SMALL_STATE(1789)] = 65619, - [SMALL_STATE(1790)] = 65658, - [SMALL_STATE(1791)] = 65729, - [SMALL_STATE(1792)] = 65804, - [SMALL_STATE(1793)] = 65879, - [SMALL_STATE(1794)] = 65954, - [SMALL_STATE(1795)] = 65993, - [SMALL_STATE(1796)] = 66068, - [SMALL_STATE(1797)] = 66143, - [SMALL_STATE(1798)] = 66218, - [SMALL_STATE(1799)] = 66293, - [SMALL_STATE(1800)] = 66368, - [SMALL_STATE(1801)] = 66443, - [SMALL_STATE(1802)] = 66518, - [SMALL_STATE(1803)] = 66593, - [SMALL_STATE(1804)] = 66664, - [SMALL_STATE(1805)] = 66739, - [SMALL_STATE(1806)] = 66814, - [SMALL_STATE(1807)] = 66853, - [SMALL_STATE(1808)] = 66928, - [SMALL_STATE(1809)] = 67003, - [SMALL_STATE(1810)] = 67078, - [SMALL_STATE(1811)] = 67119, - [SMALL_STATE(1812)] = 67194, - [SMALL_STATE(1813)] = 67269, - [SMALL_STATE(1814)] = 67344, - [SMALL_STATE(1815)] = 67419, - [SMALL_STATE(1816)] = 67458, - [SMALL_STATE(1817)] = 67533, - [SMALL_STATE(1818)] = 67608, - [SMALL_STATE(1819)] = 67683, - [SMALL_STATE(1820)] = 67758, - [SMALL_STATE(1821)] = 67833, - [SMALL_STATE(1822)] = 67908, - [SMALL_STATE(1823)] = 67983, - [SMALL_STATE(1824)] = 68028, - [SMALL_STATE(1825)] = 68103, - [SMALL_STATE(1826)] = 68178, - [SMALL_STATE(1827)] = 68253, - [SMALL_STATE(1828)] = 68324, - [SMALL_STATE(1829)] = 68399, - [SMALL_STATE(1830)] = 68470, - [SMALL_STATE(1831)] = 68545, - [SMALL_STATE(1832)] = 68620, - [SMALL_STATE(1833)] = 68695, - [SMALL_STATE(1834)] = 68770, - [SMALL_STATE(1835)] = 68809, - [SMALL_STATE(1836)] = 68848, - [SMALL_STATE(1837)] = 68923, - [SMALL_STATE(1838)] = 68962, - [SMALL_STATE(1839)] = 69037, - [SMALL_STATE(1840)] = 69076, - [SMALL_STATE(1841)] = 69151, - [SMALL_STATE(1842)] = 69226, - [SMALL_STATE(1843)] = 69301, - [SMALL_STATE(1844)] = 69376, - [SMALL_STATE(1845)] = 69451, - [SMALL_STATE(1846)] = 69526, - [SMALL_STATE(1847)] = 69571, - [SMALL_STATE(1848)] = 69646, - [SMALL_STATE(1849)] = 69721, - [SMALL_STATE(1850)] = 69796, - [SMALL_STATE(1851)] = 69871, - [SMALL_STATE(1852)] = 69946, - [SMALL_STATE(1853)] = 70021, - [SMALL_STATE(1854)] = 70096, - [SMALL_STATE(1855)] = 70171, - [SMALL_STATE(1856)] = 70216, - [SMALL_STATE(1857)] = 70255, - [SMALL_STATE(1858)] = 70330, - [SMALL_STATE(1859)] = 70405, - [SMALL_STATE(1860)] = 70444, - [SMALL_STATE(1861)] = 70519, - [SMALL_STATE(1862)] = 70558, - [SMALL_STATE(1863)] = 70597, - [SMALL_STATE(1864)] = 70672, - [SMALL_STATE(1865)] = 70747, - [SMALL_STATE(1866)] = 70822, - [SMALL_STATE(1867)] = 70897, - [SMALL_STATE(1868)] = 70972, - [SMALL_STATE(1869)] = 71047, - [SMALL_STATE(1870)] = 71122, - [SMALL_STATE(1871)] = 71197, - [SMALL_STATE(1872)] = 71272, - [SMALL_STATE(1873)] = 71347, - [SMALL_STATE(1874)] = 71422, - [SMALL_STATE(1875)] = 71497, - [SMALL_STATE(1876)] = 71572, - [SMALL_STATE(1877)] = 71611, - [SMALL_STATE(1878)] = 71650, - [SMALL_STATE(1879)] = 71695, - [SMALL_STATE(1880)] = 71770, - [SMALL_STATE(1881)] = 71845, - [SMALL_STATE(1882)] = 71884, - [SMALL_STATE(1883)] = 71959, - [SMALL_STATE(1884)] = 72034, - [SMALL_STATE(1885)] = 72109, - [SMALL_STATE(1886)] = 72184, - [SMALL_STATE(1887)] = 72259, - [SMALL_STATE(1888)] = 72334, - [SMALL_STATE(1889)] = 72373, - [SMALL_STATE(1890)] = 72412, - [SMALL_STATE(1891)] = 72487, - [SMALL_STATE(1892)] = 72562, - [SMALL_STATE(1893)] = 72633, - [SMALL_STATE(1894)] = 72708, - [SMALL_STATE(1895)] = 72783, - [SMALL_STATE(1896)] = 72858, - [SMALL_STATE(1897)] = 72903, - [SMALL_STATE(1898)] = 72978, - [SMALL_STATE(1899)] = 73053, - [SMALL_STATE(1900)] = 73098, - [SMALL_STATE(1901)] = 73173, - [SMALL_STATE(1902)] = 73218, - [SMALL_STATE(1903)] = 73257, - [SMALL_STATE(1904)] = 73332, - [SMALL_STATE(1905)] = 73407, - [SMALL_STATE(1906)] = 73482, - [SMALL_STATE(1907)] = 73557, - [SMALL_STATE(1908)] = 73628, - [SMALL_STATE(1909)] = 73703, - [SMALL_STATE(1910)] = 73778, - [SMALL_STATE(1911)] = 73853, - [SMALL_STATE(1912)] = 73892, - [SMALL_STATE(1913)] = 73967, - [SMALL_STATE(1914)] = 74042, - [SMALL_STATE(1915)] = 74081, - [SMALL_STATE(1916)] = 74156, - [SMALL_STATE(1917)] = 74231, - [SMALL_STATE(1918)] = 74306, - [SMALL_STATE(1919)] = 74381, - [SMALL_STATE(1920)] = 74456, - [SMALL_STATE(1921)] = 74531, - [SMALL_STATE(1922)] = 74570, - [SMALL_STATE(1923)] = 74645, - [SMALL_STATE(1924)] = 74720, - [SMALL_STATE(1925)] = 74795, - [SMALL_STATE(1926)] = 74870, - [SMALL_STATE(1927)] = 74945, - [SMALL_STATE(1928)] = 75020, - [SMALL_STATE(1929)] = 75095, - [SMALL_STATE(1930)] = 75170, - [SMALL_STATE(1931)] = 75209, - [SMALL_STATE(1932)] = 75284, - [SMALL_STATE(1933)] = 75359, - [SMALL_STATE(1934)] = 75398, - [SMALL_STATE(1935)] = 75473, - [SMALL_STATE(1936)] = 75548, - [SMALL_STATE(1937)] = 75623, - [SMALL_STATE(1938)] = 75698, - [SMALL_STATE(1939)] = 75773, - [SMALL_STATE(1940)] = 75848, - [SMALL_STATE(1941)] = 75923, - [SMALL_STATE(1942)] = 75998, - [SMALL_STATE(1943)] = 76073, - [SMALL_STATE(1944)] = 76148, - [SMALL_STATE(1945)] = 76223, - [SMALL_STATE(1946)] = 76298, - [SMALL_STATE(1947)] = 76337, - [SMALL_STATE(1948)] = 76408, - [SMALL_STATE(1949)] = 76483, - [SMALL_STATE(1950)] = 76558, - [SMALL_STATE(1951)] = 76633, - [SMALL_STATE(1952)] = 76672, - [SMALL_STATE(1953)] = 76715, - [SMALL_STATE(1954)] = 76790, - [SMALL_STATE(1955)] = 76865, - [SMALL_STATE(1956)] = 76940, - [SMALL_STATE(1957)] = 77015, - [SMALL_STATE(1958)] = 77090, - [SMALL_STATE(1959)] = 77165, - [SMALL_STATE(1960)] = 77204, - [SMALL_STATE(1961)] = 77279, - [SMALL_STATE(1962)] = 77354, - [SMALL_STATE(1963)] = 77429, - [SMALL_STATE(1964)] = 77504, - [SMALL_STATE(1965)] = 77579, - [SMALL_STATE(1966)] = 77654, - [SMALL_STATE(1967)] = 77725, - [SMALL_STATE(1968)] = 77800, - [SMALL_STATE(1969)] = 77875, - [SMALL_STATE(1970)] = 77950, - [SMALL_STATE(1971)] = 78025, - [SMALL_STATE(1972)] = 78100, - [SMALL_STATE(1973)] = 78175, - [SMALL_STATE(1974)] = 78250, - [SMALL_STATE(1975)] = 78320, - [SMALL_STATE(1976)] = 78358, - [SMALL_STATE(1977)] = 78402, - [SMALL_STATE(1978)] = 78472, - [SMALL_STATE(1979)] = 78542, - [SMALL_STATE(1980)] = 78580, - [SMALL_STATE(1981)] = 78650, - [SMALL_STATE(1982)] = 78720, - [SMALL_STATE(1983)] = 78758, - [SMALL_STATE(1984)] = 78796, - [SMALL_STATE(1985)] = 78832, - [SMALL_STATE(1986)] = 78870, - [SMALL_STATE(1987)] = 78938, - [SMALL_STATE(1988)] = 78974, - [SMALL_STATE(1989)] = 79014, - [SMALL_STATE(1990)] = 79079, - [SMALL_STATE(1991)] = 79144, - [SMALL_STATE(1992)] = 79209, - [SMALL_STATE(1993)] = 79274, - [SMALL_STATE(1994)] = 79339, - [SMALL_STATE(1995)] = 79404, - [SMALL_STATE(1996)] = 79469, - [SMALL_STATE(1997)] = 79534, - [SMALL_STATE(1998)] = 79599, - [SMALL_STATE(1999)] = 79664, - [SMALL_STATE(2000)] = 79729, - [SMALL_STATE(2001)] = 79794, - [SMALL_STATE(2002)] = 79859, - [SMALL_STATE(2003)] = 79924, - [SMALL_STATE(2004)] = 79989, - [SMALL_STATE(2005)] = 80054, - [SMALL_STATE(2006)] = 80119, - [SMALL_STATE(2007)] = 80184, - [SMALL_STATE(2008)] = 80249, - [SMALL_STATE(2009)] = 80314, - [SMALL_STATE(2010)] = 80379, - [SMALL_STATE(2011)] = 80444, - [SMALL_STATE(2012)] = 80509, - [SMALL_STATE(2013)] = 80574, - [SMALL_STATE(2014)] = 80639, - [SMALL_STATE(2015)] = 80680, - [SMALL_STATE(2016)] = 80745, - [SMALL_STATE(2017)] = 80810, - [SMALL_STATE(2018)] = 80875, - [SMALL_STATE(2019)] = 80940, - [SMALL_STATE(2020)] = 81005, - [SMALL_STATE(2021)] = 81070, - [SMALL_STATE(2022)] = 81135, - [SMALL_STATE(2023)] = 81200, - [SMALL_STATE(2024)] = 81265, - [SMALL_STATE(2025)] = 81330, - [SMALL_STATE(2026)] = 81395, - [SMALL_STATE(2027)] = 81460, - [SMALL_STATE(2028)] = 81525, - [SMALL_STATE(2029)] = 81590, - [SMALL_STATE(2030)] = 81655, - [SMALL_STATE(2031)] = 81720, - [SMALL_STATE(2032)] = 81785, - [SMALL_STATE(2033)] = 81850, - [SMALL_STATE(2034)] = 81915, - [SMALL_STATE(2035)] = 81980, - [SMALL_STATE(2036)] = 82045, - [SMALL_STATE(2037)] = 82110, - [SMALL_STATE(2038)] = 82175, - [SMALL_STATE(2039)] = 82240, - [SMALL_STATE(2040)] = 82305, - [SMALL_STATE(2041)] = 82370, - [SMALL_STATE(2042)] = 82435, - [SMALL_STATE(2043)] = 82500, - [SMALL_STATE(2044)] = 82565, - [SMALL_STATE(2045)] = 82630, - [SMALL_STATE(2046)] = 82695, - [SMALL_STATE(2047)] = 82760, - [SMALL_STATE(2048)] = 82825, - [SMALL_STATE(2049)] = 82890, - [SMALL_STATE(2050)] = 82955, - [SMALL_STATE(2051)] = 83020, - [SMALL_STATE(2052)] = 83085, - [SMALL_STATE(2053)] = 83150, - [SMALL_STATE(2054)] = 83215, - [SMALL_STATE(2055)] = 83280, - [SMALL_STATE(2056)] = 83345, - [SMALL_STATE(2057)] = 83410, - [SMALL_STATE(2058)] = 83475, - [SMALL_STATE(2059)] = 83540, - [SMALL_STATE(2060)] = 83605, - [SMALL_STATE(2061)] = 83670, - [SMALL_STATE(2062)] = 83735, - [SMALL_STATE(2063)] = 83800, - [SMALL_STATE(2064)] = 83865, - [SMALL_STATE(2065)] = 83930, - [SMALL_STATE(2066)] = 83995, - [SMALL_STATE(2067)] = 84060, - [SMALL_STATE(2068)] = 84125, - [SMALL_STATE(2069)] = 84190, - [SMALL_STATE(2070)] = 84255, - [SMALL_STATE(2071)] = 84320, - [SMALL_STATE(2072)] = 84385, - [SMALL_STATE(2073)] = 84450, - [SMALL_STATE(2074)] = 84515, - [SMALL_STATE(2075)] = 84580, - [SMALL_STATE(2076)] = 84645, - [SMALL_STATE(2077)] = 84710, - [SMALL_STATE(2078)] = 84775, - [SMALL_STATE(2079)] = 84840, - [SMALL_STATE(2080)] = 84905, - [SMALL_STATE(2081)] = 84970, - [SMALL_STATE(2082)] = 85035, - [SMALL_STATE(2083)] = 85100, - [SMALL_STATE(2084)] = 85165, - [SMALL_STATE(2085)] = 85230, - [SMALL_STATE(2086)] = 85295, - [SMALL_STATE(2087)] = 85360, - [SMALL_STATE(2088)] = 85425, - [SMALL_STATE(2089)] = 85490, - [SMALL_STATE(2090)] = 85555, - [SMALL_STATE(2091)] = 85620, - [SMALL_STATE(2092)] = 85685, - [SMALL_STATE(2093)] = 85750, - [SMALL_STATE(2094)] = 85815, - [SMALL_STATE(2095)] = 85880, - [SMALL_STATE(2096)] = 85945, - [SMALL_STATE(2097)] = 86010, - [SMALL_STATE(2098)] = 86075, - [SMALL_STATE(2099)] = 86140, - [SMALL_STATE(2100)] = 86205, - [SMALL_STATE(2101)] = 86270, - [SMALL_STATE(2102)] = 86335, - [SMALL_STATE(2103)] = 86400, - [SMALL_STATE(2104)] = 86465, - [SMALL_STATE(2105)] = 86530, - [SMALL_STATE(2106)] = 86595, - [SMALL_STATE(2107)] = 86660, - [SMALL_STATE(2108)] = 86725, - [SMALL_STATE(2109)] = 86790, - [SMALL_STATE(2110)] = 86855, - [SMALL_STATE(2111)] = 86920, - [SMALL_STATE(2112)] = 86985, - [SMALL_STATE(2113)] = 87050, - [SMALL_STATE(2114)] = 87115, - [SMALL_STATE(2115)] = 87180, - [SMALL_STATE(2116)] = 87245, - [SMALL_STATE(2117)] = 87310, - [SMALL_STATE(2118)] = 87372, - [SMALL_STATE(2119)] = 87434, - [SMALL_STATE(2120)] = 87496, - [SMALL_STATE(2121)] = 87530, - [SMALL_STATE(2122)] = 87564, - [SMALL_STATE(2123)] = 87626, - [SMALL_STATE(2124)] = 87688, - [SMALL_STATE(2125)] = 87750, - [SMALL_STATE(2126)] = 87812, - [SMALL_STATE(2127)] = 87874, - [SMALL_STATE(2128)] = 87936, - [SMALL_STATE(2129)] = 87998, - [SMALL_STATE(2130)] = 88060, - [SMALL_STATE(2131)] = 88098, - [SMALL_STATE(2132)] = 88160, - [SMALL_STATE(2133)] = 88222, - [SMALL_STATE(2134)] = 88284, - [SMALL_STATE(2135)] = 88346, - [SMALL_STATE(2136)] = 88382, - [SMALL_STATE(2137)] = 88444, - [SMALL_STATE(2138)] = 88506, - [SMALL_STATE(2139)] = 88568, - [SMALL_STATE(2140)] = 88630, - [SMALL_STATE(2141)] = 88692, - [SMALL_STATE(2142)] = 88754, - [SMALL_STATE(2143)] = 88818, - [SMALL_STATE(2144)] = 88880, - [SMALL_STATE(2145)] = 88942, - [SMALL_STATE(2146)] = 89004, - [SMALL_STATE(2147)] = 89066, - [SMALL_STATE(2148)] = 89128, - [SMALL_STATE(2149)] = 89189, - [SMALL_STATE(2150)] = 89250, - [SMALL_STATE(2151)] = 89285, - [SMALL_STATE(2152)] = 89346, - [SMALL_STATE(2153)] = 89407, - [SMALL_STATE(2154)] = 89468, - [SMALL_STATE(2155)] = 89526, - [SMALL_STATE(2156)] = 89584, - [SMALL_STATE(2157)] = 89622, - [SMALL_STATE(2158)] = 89680, - [SMALL_STATE(2159)] = 89738, - [SMALL_STATE(2160)] = 89796, - [SMALL_STATE(2161)] = 89854, - [SMALL_STATE(2162)] = 89912, - [SMALL_STATE(2163)] = 89970, - [SMALL_STATE(2164)] = 90028, - [SMALL_STATE(2165)] = 90086, - [SMALL_STATE(2166)] = 90144, - [SMALL_STATE(2167)] = 90202, - [SMALL_STATE(2168)] = 90260, - [SMALL_STATE(2169)] = 90318, - [SMALL_STATE(2170)] = 90354, - [SMALL_STATE(2171)] = 90407, - [SMALL_STATE(2172)] = 90460, - [SMALL_STATE(2173)] = 90493, - [SMALL_STATE(2174)] = 90546, - [SMALL_STATE(2175)] = 90599, - [SMALL_STATE(2176)] = 90654, - [SMALL_STATE(2177)] = 90709, - [SMALL_STATE(2178)] = 90745, - [SMALL_STATE(2179)] = 90779, - [SMALL_STATE(2180)] = 90817, - [SMALL_STATE(2181)] = 90853, - [SMALL_STATE(2182)] = 90882, - [SMALL_STATE(2183)] = 90913, - [SMALL_STATE(2184)] = 90946, - [SMALL_STATE(2185)] = 90991, - [SMALL_STATE(2186)] = 91020, - [SMALL_STATE(2187)] = 91053, - [SMALL_STATE(2188)] = 91086, - [SMALL_STATE(2189)] = 91117, - [SMALL_STATE(2190)] = 91162, - [SMALL_STATE(2191)] = 91195, - [SMALL_STATE(2192)] = 91223, - [SMALL_STATE(2193)] = 91257, - [SMALL_STATE(2194)] = 91287, - [SMALL_STATE(2195)] = 91318, - [SMALL_STATE(2196)] = 91356, - [SMALL_STATE(2197)] = 91384, - [SMALL_STATE(2198)] = 91412, - [SMALL_STATE(2199)] = 91440, - [SMALL_STATE(2200)] = 91470, - [SMALL_STATE(2201)] = 91498, - [SMALL_STATE(2202)] = 91536, - [SMALL_STATE(2203)] = 91561, - [SMALL_STATE(2204)] = 91588, - [SMALL_STATE(2205)] = 91613, - [SMALL_STATE(2206)] = 91648, - [SMALL_STATE(2207)] = 91683, - [SMALL_STATE(2208)] = 91709, - [SMALL_STATE(2209)] = 91736, - [SMALL_STATE(2210)] = 91763, - [SMALL_STATE(2211)] = 91790, - [SMALL_STATE(2212)] = 91810, - [SMALL_STATE(2213)] = 91836, - [SMALL_STATE(2214)] = 91855, - [SMALL_STATE(2215)] = 91874, - [SMALL_STATE(2216)] = 91904, - [SMALL_STATE(2217)] = 91928, - [SMALL_STATE(2218)] = 91958, - [SMALL_STATE(2219)] = 91988, - [SMALL_STATE(2220)] = 92018, - [SMALL_STATE(2221)] = 92048, - [SMALL_STATE(2222)] = 92078, - [SMALL_STATE(2223)] = 92108, - [SMALL_STATE(2224)] = 92130, - [SMALL_STATE(2225)] = 92154, - [SMALL_STATE(2226)] = 92180, - [SMALL_STATE(2227)] = 92210, - [SMALL_STATE(2228)] = 92232, - [SMALL_STATE(2229)] = 92262, - [SMALL_STATE(2230)] = 92288, - [SMALL_STATE(2231)] = 92318, - [SMALL_STATE(2232)] = 92334, - [SMALL_STATE(2233)] = 92360, - [SMALL_STATE(2234)] = 92384, - [SMALL_STATE(2235)] = 92414, - [SMALL_STATE(2236)] = 92440, - [SMALL_STATE(2237)] = 92466, - [SMALL_STATE(2238)] = 92482, - [SMALL_STATE(2239)] = 92508, - [SMALL_STATE(2240)] = 92530, - [SMALL_STATE(2241)] = 92553, - [SMALL_STATE(2242)] = 92576, - [SMALL_STATE(2243)] = 92597, - [SMALL_STATE(2244)] = 92620, - [SMALL_STATE(2245)] = 92646, - [SMALL_STATE(2246)] = 92672, - [SMALL_STATE(2247)] = 92696, - [SMALL_STATE(2248)] = 92718, - [SMALL_STATE(2249)] = 92734, - [SMALL_STATE(2250)] = 92756, - [SMALL_STATE(2251)] = 92782, - [SMALL_STATE(2252)] = 92808, - [SMALL_STATE(2253)] = 92834, - [SMALL_STATE(2254)] = 92860, - [SMALL_STATE(2255)] = 92878, - [SMALL_STATE(2256)] = 92900, - [SMALL_STATE(2257)] = 92922, - [SMALL_STATE(2258)] = 92948, - [SMALL_STATE(2259)] = 92974, - [SMALL_STATE(2260)] = 93000, - [SMALL_STATE(2261)] = 93026, - [SMALL_STATE(2262)] = 93044, - [SMALL_STATE(2263)] = 93060, - [SMALL_STATE(2264)] = 93086, - [SMALL_STATE(2265)] = 93112, - [SMALL_STATE(2266)] = 93134, - [SMALL_STATE(2267)] = 93160, - [SMALL_STATE(2268)] = 93186, - [SMALL_STATE(2269)] = 93212, - [SMALL_STATE(2270)] = 93234, - [SMALL_STATE(2271)] = 93254, - [SMALL_STATE(2272)] = 93280, - [SMALL_STATE(2273)] = 93306, - [SMALL_STATE(2274)] = 93328, - [SMALL_STATE(2275)] = 93346, - [SMALL_STATE(2276)] = 93364, - [SMALL_STATE(2277)] = 93382, - [SMALL_STATE(2278)] = 93400, - [SMALL_STATE(2279)] = 93416, - [SMALL_STATE(2280)] = 93432, - [SMALL_STATE(2281)] = 93448, - [SMALL_STATE(2282)] = 93474, - [SMALL_STATE(2283)] = 93490, - [SMALL_STATE(2284)] = 93516, - [SMALL_STATE(2285)] = 93542, - [SMALL_STATE(2286)] = 93566, - [SMALL_STATE(2287)] = 93588, - [SMALL_STATE(2288)] = 93614, - [SMALL_STATE(2289)] = 93640, - [SMALL_STATE(2290)] = 93666, - [SMALL_STATE(2291)] = 93692, - [SMALL_STATE(2292)] = 93705, - [SMALL_STATE(2293)] = 93722, - [SMALL_STATE(2294)] = 93739, - [SMALL_STATE(2295)] = 93756, - [SMALL_STATE(2296)] = 93779, - [SMALL_STATE(2297)] = 93802, - [SMALL_STATE(2298)] = 93823, - [SMALL_STATE(2299)] = 93844, - [SMALL_STATE(2300)] = 93867, - [SMALL_STATE(2301)] = 93890, - [SMALL_STATE(2302)] = 93913, - [SMALL_STATE(2303)] = 93932, - [SMALL_STATE(2304)] = 93955, - [SMALL_STATE(2305)] = 93978, - [SMALL_STATE(2306)] = 93997, - [SMALL_STATE(2307)] = 94018, - [SMALL_STATE(2308)] = 94041, - [SMALL_STATE(2309)] = 94060, - [SMALL_STATE(2310)] = 94081, - [SMALL_STATE(2311)] = 94104, - [SMALL_STATE(2312)] = 94127, - [SMALL_STATE(2313)] = 94142, - [SMALL_STATE(2314)] = 94165, - [SMALL_STATE(2315)] = 94188, - [SMALL_STATE(2316)] = 94211, - [SMALL_STATE(2317)] = 94234, - [SMALL_STATE(2318)] = 94255, - [SMALL_STATE(2319)] = 94278, - [SMALL_STATE(2320)] = 94301, - [SMALL_STATE(2321)] = 94322, - [SMALL_STATE(2322)] = 94335, - [SMALL_STATE(2323)] = 94358, - [SMALL_STATE(2324)] = 94381, - [SMALL_STATE(2325)] = 94404, - [SMALL_STATE(2326)] = 94427, - [SMALL_STATE(2327)] = 94450, - [SMALL_STATE(2328)] = 94467, - [SMALL_STATE(2329)] = 94484, - [SMALL_STATE(2330)] = 94501, - [SMALL_STATE(2331)] = 94518, - [SMALL_STATE(2332)] = 94533, - [SMALL_STATE(2333)] = 94548, - [SMALL_STATE(2334)] = 94563, - [SMALL_STATE(2335)] = 94584, - [SMALL_STATE(2336)] = 94607, - [SMALL_STATE(2337)] = 94630, - [SMALL_STATE(2338)] = 94653, - [SMALL_STATE(2339)] = 94676, - [SMALL_STATE(2340)] = 94697, - [SMALL_STATE(2341)] = 94714, - [SMALL_STATE(2342)] = 94737, - [SMALL_STATE(2343)] = 94756, - [SMALL_STATE(2344)] = 94777, - [SMALL_STATE(2345)] = 94792, - [SMALL_STATE(2346)] = 94815, - [SMALL_STATE(2347)] = 94838, - [SMALL_STATE(2348)] = 94857, - [SMALL_STATE(2349)] = 94876, - [SMALL_STATE(2350)] = 94899, - [SMALL_STATE(2351)] = 94920, - [SMALL_STATE(2352)] = 94943, - [SMALL_STATE(2353)] = 94964, - [SMALL_STATE(2354)] = 94987, - [SMALL_STATE(2355)] = 95007, - [SMALL_STATE(2356)] = 95019, - [SMALL_STATE(2357)] = 95039, - [SMALL_STATE(2358)] = 95057, - [SMALL_STATE(2359)] = 95077, - [SMALL_STATE(2360)] = 95093, - [SMALL_STATE(2361)] = 95109, - [SMALL_STATE(2362)] = 95125, - [SMALL_STATE(2363)] = 95145, - [SMALL_STATE(2364)] = 95161, - [SMALL_STATE(2365)] = 95177, - [SMALL_STATE(2366)] = 95197, - [SMALL_STATE(2367)] = 95213, - [SMALL_STATE(2368)] = 95233, - [SMALL_STATE(2369)] = 95247, - [SMALL_STATE(2370)] = 95261, - [SMALL_STATE(2371)] = 95277, - [SMALL_STATE(2372)] = 95297, - [SMALL_STATE(2373)] = 95317, - [SMALL_STATE(2374)] = 95337, - [SMALL_STATE(2375)] = 95355, - [SMALL_STATE(2376)] = 95375, - [SMALL_STATE(2377)] = 95391, - [SMALL_STATE(2378)] = 95411, - [SMALL_STATE(2379)] = 95425, - [SMALL_STATE(2380)] = 95445, - [SMALL_STATE(2381)] = 95461, - [SMALL_STATE(2382)] = 95477, - [SMALL_STATE(2383)] = 95497, - [SMALL_STATE(2384)] = 95517, - [SMALL_STATE(2385)] = 95537, - [SMALL_STATE(2386)] = 95557, - [SMALL_STATE(2387)] = 95573, - [SMALL_STATE(2388)] = 95593, - [SMALL_STATE(2389)] = 95611, - [SMALL_STATE(2390)] = 95623, - [SMALL_STATE(2391)] = 95643, - [SMALL_STATE(2392)] = 95661, - [SMALL_STATE(2393)] = 95677, - [SMALL_STATE(2394)] = 95689, - [SMALL_STATE(2395)] = 95709, - [SMALL_STATE(2396)] = 95723, - [SMALL_STATE(2397)] = 95743, - [SMALL_STATE(2398)] = 95759, - [SMALL_STATE(2399)] = 95773, - [SMALL_STATE(2400)] = 95789, - [SMALL_STATE(2401)] = 95809, - [SMALL_STATE(2402)] = 95829, - [SMALL_STATE(2403)] = 95849, - [SMALL_STATE(2404)] = 95869, - [SMALL_STATE(2405)] = 95883, - [SMALL_STATE(2406)] = 95897, - [SMALL_STATE(2407)] = 95915, - [SMALL_STATE(2408)] = 95935, - [SMALL_STATE(2409)] = 95949, - [SMALL_STATE(2410)] = 95969, - [SMALL_STATE(2411)] = 95989, - [SMALL_STATE(2412)] = 96007, - [SMALL_STATE(2413)] = 96025, - [SMALL_STATE(2414)] = 96045, - [SMALL_STATE(2415)] = 96065, - [SMALL_STATE(2416)] = 96079, - [SMALL_STATE(2417)] = 96097, - [SMALL_STATE(2418)] = 96117, - [SMALL_STATE(2419)] = 96137, - [SMALL_STATE(2420)] = 96149, - [SMALL_STATE(2421)] = 96167, - [SMALL_STATE(2422)] = 96187, - [SMALL_STATE(2423)] = 96207, - [SMALL_STATE(2424)] = 96227, - [SMALL_STATE(2425)] = 96245, - [SMALL_STATE(2426)] = 96263, - [SMALL_STATE(2427)] = 96281, - [SMALL_STATE(2428)] = 96297, - [SMALL_STATE(2429)] = 96314, - [SMALL_STATE(2430)] = 96331, - [SMALL_STATE(2431)] = 96344, - [SMALL_STATE(2432)] = 96361, - [SMALL_STATE(2433)] = 96378, - [SMALL_STATE(2434)] = 96395, - [SMALL_STATE(2435)] = 96412, - [SMALL_STATE(2436)] = 96431, - [SMALL_STATE(2437)] = 96448, - [SMALL_STATE(2438)] = 96465, - [SMALL_STATE(2439)] = 96484, - [SMALL_STATE(2440)] = 96501, - [SMALL_STATE(2441)] = 96518, - [SMALL_STATE(2442)] = 96535, - [SMALL_STATE(2443)] = 96552, - [SMALL_STATE(2444)] = 96571, - [SMALL_STATE(2445)] = 96588, - [SMALL_STATE(2446)] = 96605, - [SMALL_STATE(2447)] = 96622, - [SMALL_STATE(2448)] = 96639, - [SMALL_STATE(2449)] = 96656, - [SMALL_STATE(2450)] = 96673, - [SMALL_STATE(2451)] = 96690, - [SMALL_STATE(2452)] = 96707, - [SMALL_STATE(2453)] = 96724, - [SMALL_STATE(2454)] = 96741, - [SMALL_STATE(2455)] = 96756, - [SMALL_STATE(2456)] = 96771, - [SMALL_STATE(2457)] = 96790, - [SMALL_STATE(2458)] = 96807, - [SMALL_STATE(2459)] = 96824, - [SMALL_STATE(2460)] = 96841, - [SMALL_STATE(2461)] = 96858, - [SMALL_STATE(2462)] = 96875, - [SMALL_STATE(2463)] = 96892, - [SMALL_STATE(2464)] = 96909, - [SMALL_STATE(2465)] = 96926, - [SMALL_STATE(2466)] = 96943, - [SMALL_STATE(2467)] = 96960, - [SMALL_STATE(2468)] = 96977, - [SMALL_STATE(2469)] = 96994, - [SMALL_STATE(2470)] = 97011, - [SMALL_STATE(2471)] = 97028, - [SMALL_STATE(2472)] = 97045, - [SMALL_STATE(2473)] = 97062, - [SMALL_STATE(2474)] = 97079, - [SMALL_STATE(2475)] = 97096, - [SMALL_STATE(2476)] = 97107, - [SMALL_STATE(2477)] = 97124, - [SMALL_STATE(2478)] = 97141, - [SMALL_STATE(2479)] = 97156, - [SMALL_STATE(2480)] = 97173, - [SMALL_STATE(2481)] = 97190, - [SMALL_STATE(2482)] = 97207, - [SMALL_STATE(2483)] = 97224, - [SMALL_STATE(2484)] = 97241, - [SMALL_STATE(2485)] = 97258, - [SMALL_STATE(2486)] = 97275, - [SMALL_STATE(2487)] = 97292, - [SMALL_STATE(2488)] = 97309, - [SMALL_STATE(2489)] = 97326, - [SMALL_STATE(2490)] = 97343, - [SMALL_STATE(2491)] = 97360, - [SMALL_STATE(2492)] = 97377, - [SMALL_STATE(2493)] = 97394, - [SMALL_STATE(2494)] = 97411, - [SMALL_STATE(2495)] = 97428, - [SMALL_STATE(2496)] = 97445, - [SMALL_STATE(2497)] = 97462, - [SMALL_STATE(2498)] = 97473, - [SMALL_STATE(2499)] = 97488, - [SMALL_STATE(2500)] = 97505, - [SMALL_STATE(2501)] = 97522, - [SMALL_STATE(2502)] = 97539, - [SMALL_STATE(2503)] = 97556, - [SMALL_STATE(2504)] = 97573, - [SMALL_STATE(2505)] = 97590, - [SMALL_STATE(2506)] = 97607, - [SMALL_STATE(2507)] = 97622, - [SMALL_STATE(2508)] = 97633, - [SMALL_STATE(2509)] = 97650, - [SMALL_STATE(2510)] = 97667, - [SMALL_STATE(2511)] = 97684, - [SMALL_STATE(2512)] = 97701, - [SMALL_STATE(2513)] = 97716, - [SMALL_STATE(2514)] = 97733, - [SMALL_STATE(2515)] = 97750, - [SMALL_STATE(2516)] = 97767, - [SMALL_STATE(2517)] = 97784, - [SMALL_STATE(2518)] = 97801, - [SMALL_STATE(2519)] = 97818, - [SMALL_STATE(2520)] = 97835, - [SMALL_STATE(2521)] = 97852, - [SMALL_STATE(2522)] = 97869, - [SMALL_STATE(2523)] = 97886, - [SMALL_STATE(2524)] = 97903, - [SMALL_STATE(2525)] = 97916, - [SMALL_STATE(2526)] = 97931, - [SMALL_STATE(2527)] = 97948, - [SMALL_STATE(2528)] = 97965, - [SMALL_STATE(2529)] = 97982, - [SMALL_STATE(2530)] = 97999, - [SMALL_STATE(2531)] = 98016, - [SMALL_STATE(2532)] = 98031, - [SMALL_STATE(2533)] = 98048, - [SMALL_STATE(2534)] = 98065, - [SMALL_STATE(2535)] = 98082, - [SMALL_STATE(2536)] = 98099, - [SMALL_STATE(2537)] = 98112, - [SMALL_STATE(2538)] = 98125, - [SMALL_STATE(2539)] = 98142, - [SMALL_STATE(2540)] = 98159, - [SMALL_STATE(2541)] = 98176, - [SMALL_STATE(2542)] = 98193, - [SMALL_STATE(2543)] = 98210, - [SMALL_STATE(2544)] = 98227, - [SMALL_STATE(2545)] = 98238, - [SMALL_STATE(2546)] = 98253, - [SMALL_STATE(2547)] = 98270, - [SMALL_STATE(2548)] = 98287, - [SMALL_STATE(2549)] = 98304, - [SMALL_STATE(2550)] = 98321, - [SMALL_STATE(2551)] = 98336, - [SMALL_STATE(2552)] = 98351, - [SMALL_STATE(2553)] = 98366, - [SMALL_STATE(2554)] = 98377, - [SMALL_STATE(2555)] = 98394, - [SMALL_STATE(2556)] = 98411, - [SMALL_STATE(2557)] = 98426, - [SMALL_STATE(2558)] = 98443, - [SMALL_STATE(2559)] = 98460, - [SMALL_STATE(2560)] = 98477, - [SMALL_STATE(2561)] = 98494, - [SMALL_STATE(2562)] = 98511, - [SMALL_STATE(2563)] = 98528, - [SMALL_STATE(2564)] = 98545, - [SMALL_STATE(2565)] = 98562, - [SMALL_STATE(2566)] = 98579, - [SMALL_STATE(2567)] = 98596, - [SMALL_STATE(2568)] = 98613, - [SMALL_STATE(2569)] = 98628, - [SMALL_STATE(2570)] = 98645, - [SMALL_STATE(2571)] = 98662, - [SMALL_STATE(2572)] = 98679, - [SMALL_STATE(2573)] = 98696, - [SMALL_STATE(2574)] = 98713, - [SMALL_STATE(2575)] = 98730, - [SMALL_STATE(2576)] = 98747, - [SMALL_STATE(2577)] = 98764, - [SMALL_STATE(2578)] = 98783, - [SMALL_STATE(2579)] = 98800, - [SMALL_STATE(2580)] = 98817, - [SMALL_STATE(2581)] = 98832, - [SMALL_STATE(2582)] = 98845, - [SMALL_STATE(2583)] = 98864, - [SMALL_STATE(2584)] = 98879, - [SMALL_STATE(2585)] = 98896, - [SMALL_STATE(2586)] = 98913, - [SMALL_STATE(2587)] = 98930, - [SMALL_STATE(2588)] = 98947, - [SMALL_STATE(2589)] = 98964, - [SMALL_STATE(2590)] = 98981, - [SMALL_STATE(2591)] = 98998, - [SMALL_STATE(2592)] = 99015, - [SMALL_STATE(2593)] = 99032, - [SMALL_STATE(2594)] = 99049, - [SMALL_STATE(2595)] = 99066, - [SMALL_STATE(2596)] = 99083, - [SMALL_STATE(2597)] = 99098, - [SMALL_STATE(2598)] = 99113, - [SMALL_STATE(2599)] = 99128, - [SMALL_STATE(2600)] = 99145, - [SMALL_STATE(2601)] = 99160, - [SMALL_STATE(2602)] = 99179, - [SMALL_STATE(2603)] = 99198, - [SMALL_STATE(2604)] = 99215, - [SMALL_STATE(2605)] = 99230, - [SMALL_STATE(2606)] = 99247, - [SMALL_STATE(2607)] = 99264, - [SMALL_STATE(2608)] = 99279, - [SMALL_STATE(2609)] = 99294, - [SMALL_STATE(2610)] = 99311, - [SMALL_STATE(2611)] = 99328, - [SMALL_STATE(2612)] = 99345, - [SMALL_STATE(2613)] = 99362, - [SMALL_STATE(2614)] = 99377, - [SMALL_STATE(2615)] = 99396, - [SMALL_STATE(2616)] = 99413, - [SMALL_STATE(2617)] = 99430, - [SMALL_STATE(2618)] = 99445, - [SMALL_STATE(2619)] = 99460, - [SMALL_STATE(2620)] = 99477, - [SMALL_STATE(2621)] = 99494, - [SMALL_STATE(2622)] = 99511, - [SMALL_STATE(2623)] = 99526, - [SMALL_STATE(2624)] = 99541, - [SMALL_STATE(2625)] = 99556, - [SMALL_STATE(2626)] = 99569, - [SMALL_STATE(2627)] = 99582, - [SMALL_STATE(2628)] = 99595, - [SMALL_STATE(2629)] = 99610, - [SMALL_STATE(2630)] = 99629, - [SMALL_STATE(2631)] = 99648, - [SMALL_STATE(2632)] = 99665, - [SMALL_STATE(2633)] = 99680, - [SMALL_STATE(2634)] = 99697, - [SMALL_STATE(2635)] = 99709, - [SMALL_STATE(2636)] = 99723, - [SMALL_STATE(2637)] = 99735, - [SMALL_STATE(2638)] = 99749, - [SMALL_STATE(2639)] = 99761, - [SMALL_STATE(2640)] = 99775, - [SMALL_STATE(2641)] = 99789, - [SMALL_STATE(2642)] = 99801, - [SMALL_STATE(2643)] = 99811, - [SMALL_STATE(2644)] = 99825, - [SMALL_STATE(2645)] = 99839, - [SMALL_STATE(2646)] = 99853, - [SMALL_STATE(2647)] = 99867, - [SMALL_STATE(2648)] = 99879, - [SMALL_STATE(2649)] = 99893, - [SMALL_STATE(2650)] = 99905, - [SMALL_STATE(2651)] = 99919, - [SMALL_STATE(2652)] = 99931, - [SMALL_STATE(2653)] = 99941, - [SMALL_STATE(2654)] = 99955, - [SMALL_STATE(2655)] = 99969, - [SMALL_STATE(2656)] = 99983, - [SMALL_STATE(2657)] = 99997, - [SMALL_STATE(2658)] = 100009, - [SMALL_STATE(2659)] = 100023, - [SMALL_STATE(2660)] = 100033, - [SMALL_STATE(2661)] = 100043, - [SMALL_STATE(2662)] = 100057, - [SMALL_STATE(2663)] = 100071, - [SMALL_STATE(2664)] = 100085, - [SMALL_STATE(2665)] = 100099, - [SMALL_STATE(2666)] = 100111, - [SMALL_STATE(2667)] = 100125, - [SMALL_STATE(2668)] = 100139, - [SMALL_STATE(2669)] = 100153, - [SMALL_STATE(2670)] = 100167, - [SMALL_STATE(2671)] = 100181, - [SMALL_STATE(2672)] = 100191, - [SMALL_STATE(2673)] = 100203, - [SMALL_STATE(2674)] = 100215, - [SMALL_STATE(2675)] = 100229, - [SMALL_STATE(2676)] = 100241, - [SMALL_STATE(2677)] = 100255, - [SMALL_STATE(2678)] = 100267, - [SMALL_STATE(2679)] = 100281, - [SMALL_STATE(2680)] = 100293, - [SMALL_STATE(2681)] = 100307, - [SMALL_STATE(2682)] = 100321, - [SMALL_STATE(2683)] = 100335, - [SMALL_STATE(2684)] = 100349, - [SMALL_STATE(2685)] = 100361, - [SMALL_STATE(2686)] = 100375, - [SMALL_STATE(2687)] = 100389, - [SMALL_STATE(2688)] = 100403, - [SMALL_STATE(2689)] = 100417, - [SMALL_STATE(2690)] = 100431, - [SMALL_STATE(2691)] = 100445, - [SMALL_STATE(2692)] = 100455, - [SMALL_STATE(2693)] = 100469, - [SMALL_STATE(2694)] = 100483, - [SMALL_STATE(2695)] = 100497, - [SMALL_STATE(2696)] = 100509, - [SMALL_STATE(2697)] = 100523, - [SMALL_STATE(2698)] = 100537, - [SMALL_STATE(2699)] = 100551, - [SMALL_STATE(2700)] = 100565, - [SMALL_STATE(2701)] = 100579, - [SMALL_STATE(2702)] = 100593, - [SMALL_STATE(2703)] = 100607, - [SMALL_STATE(2704)] = 100621, - [SMALL_STATE(2705)] = 100631, - [SMALL_STATE(2706)] = 100643, - [SMALL_STATE(2707)] = 100657, - [SMALL_STATE(2708)] = 100671, - [SMALL_STATE(2709)] = 100685, - [SMALL_STATE(2710)] = 100699, - [SMALL_STATE(2711)] = 100709, - [SMALL_STATE(2712)] = 100723, - [SMALL_STATE(2713)] = 100737, - [SMALL_STATE(2714)] = 100751, - [SMALL_STATE(2715)] = 100763, - [SMALL_STATE(2716)] = 100777, - [SMALL_STATE(2717)] = 100791, - [SMALL_STATE(2718)] = 100803, - [SMALL_STATE(2719)] = 100817, - [SMALL_STATE(2720)] = 100829, - [SMALL_STATE(2721)] = 100841, - [SMALL_STATE(2722)] = 100855, - [SMALL_STATE(2723)] = 100869, - [SMALL_STATE(2724)] = 100883, - [SMALL_STATE(2725)] = 100897, - [SMALL_STATE(2726)] = 100909, - [SMALL_STATE(2727)] = 100921, - [SMALL_STATE(2728)] = 100935, - [SMALL_STATE(2729)] = 100949, - [SMALL_STATE(2730)] = 100961, - [SMALL_STATE(2731)] = 100975, - [SMALL_STATE(2732)] = 100989, - [SMALL_STATE(2733)] = 101001, - [SMALL_STATE(2734)] = 101015, - [SMALL_STATE(2735)] = 101029, - [SMALL_STATE(2736)] = 101043, - [SMALL_STATE(2737)] = 101057, - [SMALL_STATE(2738)] = 101071, - [SMALL_STATE(2739)] = 101085, - [SMALL_STATE(2740)] = 101099, - [SMALL_STATE(2741)] = 101113, - [SMALL_STATE(2742)] = 101127, - [SMALL_STATE(2743)] = 101141, - [SMALL_STATE(2744)] = 101155, - [SMALL_STATE(2745)] = 101169, - [SMALL_STATE(2746)] = 101183, - [SMALL_STATE(2747)] = 101197, - [SMALL_STATE(2748)] = 101211, - [SMALL_STATE(2749)] = 101225, - [SMALL_STATE(2750)] = 101239, - [SMALL_STATE(2751)] = 101253, - [SMALL_STATE(2752)] = 101267, - [SMALL_STATE(2753)] = 101281, - [SMALL_STATE(2754)] = 101295, - [SMALL_STATE(2755)] = 101309, - [SMALL_STATE(2756)] = 101323, - [SMALL_STATE(2757)] = 101337, - [SMALL_STATE(2758)] = 101351, - [SMALL_STATE(2759)] = 101365, - [SMALL_STATE(2760)] = 101375, - [SMALL_STATE(2761)] = 101389, - [SMALL_STATE(2762)] = 101403, - [SMALL_STATE(2763)] = 101417, - [SMALL_STATE(2764)] = 101431, - [SMALL_STATE(2765)] = 101443, - [SMALL_STATE(2766)] = 101457, - [SMALL_STATE(2767)] = 101469, - [SMALL_STATE(2768)] = 101483, - [SMALL_STATE(2769)] = 101497, - [SMALL_STATE(2770)] = 101511, - [SMALL_STATE(2771)] = 101525, - [SMALL_STATE(2772)] = 101537, - [SMALL_STATE(2773)] = 101549, - [SMALL_STATE(2774)] = 101559, - [SMALL_STATE(2775)] = 101573, - [SMALL_STATE(2776)] = 101587, - [SMALL_STATE(2777)] = 101597, - [SMALL_STATE(2778)] = 101611, - [SMALL_STATE(2779)] = 101625, - [SMALL_STATE(2780)] = 101639, - [SMALL_STATE(2781)] = 101651, - [SMALL_STATE(2782)] = 101665, - [SMALL_STATE(2783)] = 101679, - [SMALL_STATE(2784)] = 101691, - [SMALL_STATE(2785)] = 101705, - [SMALL_STATE(2786)] = 101719, - [SMALL_STATE(2787)] = 101733, - [SMALL_STATE(2788)] = 101745, - [SMALL_STATE(2789)] = 101755, - [SMALL_STATE(2790)] = 101769, - [SMALL_STATE(2791)] = 101781, - [SMALL_STATE(2792)] = 101795, - [SMALL_STATE(2793)] = 101807, - [SMALL_STATE(2794)] = 101821, - [SMALL_STATE(2795)] = 101833, - [SMALL_STATE(2796)] = 101847, - [SMALL_STATE(2797)] = 101861, - [SMALL_STATE(2798)] = 101873, - [SMALL_STATE(2799)] = 101887, - [SMALL_STATE(2800)] = 101901, - [SMALL_STATE(2801)] = 101915, - [SMALL_STATE(2802)] = 101927, - [SMALL_STATE(2803)] = 101939, - [SMALL_STATE(2804)] = 101953, - [SMALL_STATE(2805)] = 101967, - [SMALL_STATE(2806)] = 101977, - [SMALL_STATE(2807)] = 101989, - [SMALL_STATE(2808)] = 102001, - [SMALL_STATE(2809)] = 102013, - [SMALL_STATE(2810)] = 102025, - [SMALL_STATE(2811)] = 102037, - [SMALL_STATE(2812)] = 102049, - [SMALL_STATE(2813)] = 102061, - [SMALL_STATE(2814)] = 102073, - [SMALL_STATE(2815)] = 102085, - [SMALL_STATE(2816)] = 102099, - [SMALL_STATE(2817)] = 102113, - [SMALL_STATE(2818)] = 102127, - [SMALL_STATE(2819)] = 102141, - [SMALL_STATE(2820)] = 102155, - [SMALL_STATE(2821)] = 102169, - [SMALL_STATE(2822)] = 102181, - [SMALL_STATE(2823)] = 102195, - [SMALL_STATE(2824)] = 102207, - [SMALL_STATE(2825)] = 102219, - [SMALL_STATE(2826)] = 102231, - [SMALL_STATE(2827)] = 102243, - [SMALL_STATE(2828)] = 102255, - [SMALL_STATE(2829)] = 102269, - [SMALL_STATE(2830)] = 102281, - [SMALL_STATE(2831)] = 102293, - [SMALL_STATE(2832)] = 102305, - [SMALL_STATE(2833)] = 102319, - [SMALL_STATE(2834)] = 102331, - [SMALL_STATE(2835)] = 102343, - [SMALL_STATE(2836)] = 102355, - [SMALL_STATE(2837)] = 102367, - [SMALL_STATE(2838)] = 102379, - [SMALL_STATE(2839)] = 102393, - [SMALL_STATE(2840)] = 102405, - [SMALL_STATE(2841)] = 102417, - [SMALL_STATE(2842)] = 102429, - [SMALL_STATE(2843)] = 102441, - [SMALL_STATE(2844)] = 102455, - [SMALL_STATE(2845)] = 102467, - [SMALL_STATE(2846)] = 102479, - [SMALL_STATE(2847)] = 102491, - [SMALL_STATE(2848)] = 102505, - [SMALL_STATE(2849)] = 102515, - [SMALL_STATE(2850)] = 102525, - [SMALL_STATE(2851)] = 102537, - [SMALL_STATE(2852)] = 102549, - [SMALL_STATE(2853)] = 102561, - [SMALL_STATE(2854)] = 102575, - [SMALL_STATE(2855)] = 102589, - [SMALL_STATE(2856)] = 102603, - [SMALL_STATE(2857)] = 102617, - [SMALL_STATE(2858)] = 102628, - [SMALL_STATE(2859)] = 102639, - [SMALL_STATE(2860)] = 102650, - [SMALL_STATE(2861)] = 102661, - [SMALL_STATE(2862)] = 102670, - [SMALL_STATE(2863)] = 102681, - [SMALL_STATE(2864)] = 102692, - [SMALL_STATE(2865)] = 102703, - [SMALL_STATE(2866)] = 102714, - [SMALL_STATE(2867)] = 102725, - [SMALL_STATE(2868)] = 102736, - [SMALL_STATE(2869)] = 102747, - [SMALL_STATE(2870)] = 102758, - [SMALL_STATE(2871)] = 102769, - [SMALL_STATE(2872)] = 102780, - [SMALL_STATE(2873)] = 102789, - [SMALL_STATE(2874)] = 102800, - [SMALL_STATE(2875)] = 102811, - [SMALL_STATE(2876)] = 102822, - [SMALL_STATE(2877)] = 102833, - [SMALL_STATE(2878)] = 102844, - [SMALL_STATE(2879)] = 102855, - [SMALL_STATE(2880)] = 102866, - [SMALL_STATE(2881)] = 102877, - [SMALL_STATE(2882)] = 102888, - [SMALL_STATE(2883)] = 102899, - [SMALL_STATE(2884)] = 102910, - [SMALL_STATE(2885)] = 102921, - [SMALL_STATE(2886)] = 102932, - [SMALL_STATE(2887)] = 102943, - [SMALL_STATE(2888)] = 102954, - [SMALL_STATE(2889)] = 102965, - [SMALL_STATE(2890)] = 102976, - [SMALL_STATE(2891)] = 102987, - [SMALL_STATE(2892)] = 102998, - [SMALL_STATE(2893)] = 103009, - [SMALL_STATE(2894)] = 103020, - [SMALL_STATE(2895)] = 103031, - [SMALL_STATE(2896)] = 103042, - [SMALL_STATE(2897)] = 103053, - [SMALL_STATE(2898)] = 103064, - [SMALL_STATE(2899)] = 103075, - [SMALL_STATE(2900)] = 103086, - [SMALL_STATE(2901)] = 103097, - [SMALL_STATE(2902)] = 103108, - [SMALL_STATE(2903)] = 103119, - [SMALL_STATE(2904)] = 103130, - [SMALL_STATE(2905)] = 103141, - [SMALL_STATE(2906)] = 103152, - [SMALL_STATE(2907)] = 103163, - [SMALL_STATE(2908)] = 103174, - [SMALL_STATE(2909)] = 103185, - [SMALL_STATE(2910)] = 103196, - [SMALL_STATE(2911)] = 103207, - [SMALL_STATE(2912)] = 103216, - [SMALL_STATE(2913)] = 103227, - [SMALL_STATE(2914)] = 103238, - [SMALL_STATE(2915)] = 103249, - [SMALL_STATE(2916)] = 103260, - [SMALL_STATE(2917)] = 103271, - [SMALL_STATE(2918)] = 103282, - [SMALL_STATE(2919)] = 103293, - [SMALL_STATE(2920)] = 103304, - [SMALL_STATE(2921)] = 103315, - [SMALL_STATE(2922)] = 103326, - [SMALL_STATE(2923)] = 103337, - [SMALL_STATE(2924)] = 103348, - [SMALL_STATE(2925)] = 103359, - [SMALL_STATE(2926)] = 103370, - [SMALL_STATE(2927)] = 103379, - [SMALL_STATE(2928)] = 103390, - [SMALL_STATE(2929)] = 103401, - [SMALL_STATE(2930)] = 103412, - [SMALL_STATE(2931)] = 103423, - [SMALL_STATE(2932)] = 103434, - [SMALL_STATE(2933)] = 103445, - [SMALL_STATE(2934)] = 103456, - [SMALL_STATE(2935)] = 103467, - [SMALL_STATE(2936)] = 103478, - [SMALL_STATE(2937)] = 103489, - [SMALL_STATE(2938)] = 103500, - [SMALL_STATE(2939)] = 103511, - [SMALL_STATE(2940)] = 103522, - [SMALL_STATE(2941)] = 103533, - [SMALL_STATE(2942)] = 103544, - [SMALL_STATE(2943)] = 103555, - [SMALL_STATE(2944)] = 103566, - [SMALL_STATE(2945)] = 103577, - [SMALL_STATE(2946)] = 103586, - [SMALL_STATE(2947)] = 103597, - [SMALL_STATE(2948)] = 103606, - [SMALL_STATE(2949)] = 103617, - [SMALL_STATE(2950)] = 103628, - [SMALL_STATE(2951)] = 103639, - [SMALL_STATE(2952)] = 103650, - [SMALL_STATE(2953)] = 103661, - [SMALL_STATE(2954)] = 103672, - [SMALL_STATE(2955)] = 103683, - [SMALL_STATE(2956)] = 103694, - [SMALL_STATE(2957)] = 103705, - [SMALL_STATE(2958)] = 103716, - [SMALL_STATE(2959)] = 103727, - [SMALL_STATE(2960)] = 103738, - [SMALL_STATE(2961)] = 103749, - [SMALL_STATE(2962)] = 103760, - [SMALL_STATE(2963)] = 103771, - [SMALL_STATE(2964)] = 103780, - [SMALL_STATE(2965)] = 103791, - [SMALL_STATE(2966)] = 103802, - [SMALL_STATE(2967)] = 103813, - [SMALL_STATE(2968)] = 103824, - [SMALL_STATE(2969)] = 103835, - [SMALL_STATE(2970)] = 103846, - [SMALL_STATE(2971)] = 103857, - [SMALL_STATE(2972)] = 103868, - [SMALL_STATE(2973)] = 103879, - [SMALL_STATE(2974)] = 103890, - [SMALL_STATE(2975)] = 103901, - [SMALL_STATE(2976)] = 103912, - [SMALL_STATE(2977)] = 103923, - [SMALL_STATE(2978)] = 103934, - [SMALL_STATE(2979)] = 103945, - [SMALL_STATE(2980)] = 103956, - [SMALL_STATE(2981)] = 103967, - [SMALL_STATE(2982)] = 103978, - [SMALL_STATE(2983)] = 103989, - [SMALL_STATE(2984)] = 104000, - [SMALL_STATE(2985)] = 104011, - [SMALL_STATE(2986)] = 104022, - [SMALL_STATE(2987)] = 104033, - [SMALL_STATE(2988)] = 104044, - [SMALL_STATE(2989)] = 104055, - [SMALL_STATE(2990)] = 104066, - [SMALL_STATE(2991)] = 104077, - [SMALL_STATE(2992)] = 104088, - [SMALL_STATE(2993)] = 104099, - [SMALL_STATE(2994)] = 104110, - [SMALL_STATE(2995)] = 104121, - [SMALL_STATE(2996)] = 104132, - [SMALL_STATE(2997)] = 104143, - [SMALL_STATE(2998)] = 104154, - [SMALL_STATE(2999)] = 104165, - [SMALL_STATE(3000)] = 104176, - [SMALL_STATE(3001)] = 104187, - [SMALL_STATE(3002)] = 104198, - [SMALL_STATE(3003)] = 104209, - [SMALL_STATE(3004)] = 104220, - [SMALL_STATE(3005)] = 104231, - [SMALL_STATE(3006)] = 104240, - [SMALL_STATE(3007)] = 104251, - [SMALL_STATE(3008)] = 104262, - [SMALL_STATE(3009)] = 104273, - [SMALL_STATE(3010)] = 104284, - [SMALL_STATE(3011)] = 104295, - [SMALL_STATE(3012)] = 104306, - [SMALL_STATE(3013)] = 104315, - [SMALL_STATE(3014)] = 104326, - [SMALL_STATE(3015)] = 104337, - [SMALL_STATE(3016)] = 104348, - [SMALL_STATE(3017)] = 104359, - [SMALL_STATE(3018)] = 104370, - [SMALL_STATE(3019)] = 104381, - [SMALL_STATE(3020)] = 104392, - [SMALL_STATE(3021)] = 104403, - [SMALL_STATE(3022)] = 104414, - [SMALL_STATE(3023)] = 104425, - [SMALL_STATE(3024)] = 104436, - [SMALL_STATE(3025)] = 104447, - [SMALL_STATE(3026)] = 104458, - [SMALL_STATE(3027)] = 104469, - [SMALL_STATE(3028)] = 104480, - [SMALL_STATE(3029)] = 104491, - [SMALL_STATE(3030)] = 104502, - [SMALL_STATE(3031)] = 104513, - [SMALL_STATE(3032)] = 104524, - [SMALL_STATE(3033)] = 104533, - [SMALL_STATE(3034)] = 104544, - [SMALL_STATE(3035)] = 104555, - [SMALL_STATE(3036)] = 104566, - [SMALL_STATE(3037)] = 104577, - [SMALL_STATE(3038)] = 104588, - [SMALL_STATE(3039)] = 104599, - [SMALL_STATE(3040)] = 104610, - [SMALL_STATE(3041)] = 104621, - [SMALL_STATE(3042)] = 104630, - [SMALL_STATE(3043)] = 104641, - [SMALL_STATE(3044)] = 104652, - [SMALL_STATE(3045)] = 104663, - [SMALL_STATE(3046)] = 104674, - [SMALL_STATE(3047)] = 104685, - [SMALL_STATE(3048)] = 104694, - [SMALL_STATE(3049)] = 104705, - [SMALL_STATE(3050)] = 104716, - [SMALL_STATE(3051)] = 104727, - [SMALL_STATE(3052)] = 104738, - [SMALL_STATE(3053)] = 104749, - [SMALL_STATE(3054)] = 104760, - [SMALL_STATE(3055)] = 104771, - [SMALL_STATE(3056)] = 104782, - [SMALL_STATE(3057)] = 104793, - [SMALL_STATE(3058)] = 104804, - [SMALL_STATE(3059)] = 104815, - [SMALL_STATE(3060)] = 104826, - [SMALL_STATE(3061)] = 104837, - [SMALL_STATE(3062)] = 104848, - [SMALL_STATE(3063)] = 104859, - [SMALL_STATE(3064)] = 104870, - [SMALL_STATE(3065)] = 104881, - [SMALL_STATE(3066)] = 104892, - [SMALL_STATE(3067)] = 104903, - [SMALL_STATE(3068)] = 104914, - [SMALL_STATE(3069)] = 104925, - [SMALL_STATE(3070)] = 104936, - [SMALL_STATE(3071)] = 104947, - [SMALL_STATE(3072)] = 104958, - [SMALL_STATE(3073)] = 104969, - [SMALL_STATE(3074)] = 104980, - [SMALL_STATE(3075)] = 104991, - [SMALL_STATE(3076)] = 105002, - [SMALL_STATE(3077)] = 105013, - [SMALL_STATE(3078)] = 105024, - [SMALL_STATE(3079)] = 105035, - [SMALL_STATE(3080)] = 105046, - [SMALL_STATE(3081)] = 105057, - [SMALL_STATE(3082)] = 105068, - [SMALL_STATE(3083)] = 105079, - [SMALL_STATE(3084)] = 105090, - [SMALL_STATE(3085)] = 105101, - [SMALL_STATE(3086)] = 105112, - [SMALL_STATE(3087)] = 105123, - [SMALL_STATE(3088)] = 105134, - [SMALL_STATE(3089)] = 105145, - [SMALL_STATE(3090)] = 105156, - [SMALL_STATE(3091)] = 105167, - [SMALL_STATE(3092)] = 105178, - [SMALL_STATE(3093)] = 105189, - [SMALL_STATE(3094)] = 105200, - [SMALL_STATE(3095)] = 105211, - [SMALL_STATE(3096)] = 105222, - [SMALL_STATE(3097)] = 105233, - [SMALL_STATE(3098)] = 105244, - [SMALL_STATE(3099)] = 105255, - [SMALL_STATE(3100)] = 105266, - [SMALL_STATE(3101)] = 105277, - [SMALL_STATE(3102)] = 105288, - [SMALL_STATE(3103)] = 105299, - [SMALL_STATE(3104)] = 105310, - [SMALL_STATE(3105)] = 105321, - [SMALL_STATE(3106)] = 105332, - [SMALL_STATE(3107)] = 105343, - [SMALL_STATE(3108)] = 105354, - [SMALL_STATE(3109)] = 105365, - [SMALL_STATE(3110)] = 105376, - [SMALL_STATE(3111)] = 105387, - [SMALL_STATE(3112)] = 105398, - [SMALL_STATE(3113)] = 105409, - [SMALL_STATE(3114)] = 105420, - [SMALL_STATE(3115)] = 105431, - [SMALL_STATE(3116)] = 105442, - [SMALL_STATE(3117)] = 105453, - [SMALL_STATE(3118)] = 105464, - [SMALL_STATE(3119)] = 105475, - [SMALL_STATE(3120)] = 105486, - [SMALL_STATE(3121)] = 105497, - [SMALL_STATE(3122)] = 105508, - [SMALL_STATE(3123)] = 105519, - [SMALL_STATE(3124)] = 105530, - [SMALL_STATE(3125)] = 105541, - [SMALL_STATE(3126)] = 105552, - [SMALL_STATE(3127)] = 105563, - [SMALL_STATE(3128)] = 105574, - [SMALL_STATE(3129)] = 105582, - [SMALL_STATE(3130)] = 105590, - [SMALL_STATE(3131)] = 105598, - [SMALL_STATE(3132)] = 105606, - [SMALL_STATE(3133)] = 105614, - [SMALL_STATE(3134)] = 105622, - [SMALL_STATE(3135)] = 105630, - [SMALL_STATE(3136)] = 105638, - [SMALL_STATE(3137)] = 105646, - [SMALL_STATE(3138)] = 105654, - [SMALL_STATE(3139)] = 105662, - [SMALL_STATE(3140)] = 105670, - [SMALL_STATE(3141)] = 105678, - [SMALL_STATE(3142)] = 105686, - [SMALL_STATE(3143)] = 105694, - [SMALL_STATE(3144)] = 105702, - [SMALL_STATE(3145)] = 105710, - [SMALL_STATE(3146)] = 105718, - [SMALL_STATE(3147)] = 105726, - [SMALL_STATE(3148)] = 105734, - [SMALL_STATE(3149)] = 105742, - [SMALL_STATE(3150)] = 105750, - [SMALL_STATE(3151)] = 105758, - [SMALL_STATE(3152)] = 105766, - [SMALL_STATE(3153)] = 105774, - [SMALL_STATE(3154)] = 105782, - [SMALL_STATE(3155)] = 105790, - [SMALL_STATE(3156)] = 105798, - [SMALL_STATE(3157)] = 105806, - [SMALL_STATE(3158)] = 105814, - [SMALL_STATE(3159)] = 105822, - [SMALL_STATE(3160)] = 105830, - [SMALL_STATE(3161)] = 105838, - [SMALL_STATE(3162)] = 105846, - [SMALL_STATE(3163)] = 105854, - [SMALL_STATE(3164)] = 105862, - [SMALL_STATE(3165)] = 105870, - [SMALL_STATE(3166)] = 105878, - [SMALL_STATE(3167)] = 105886, - [SMALL_STATE(3168)] = 105894, - [SMALL_STATE(3169)] = 105902, - [SMALL_STATE(3170)] = 105910, - [SMALL_STATE(3171)] = 105918, - [SMALL_STATE(3172)] = 105926, - [SMALL_STATE(3173)] = 105934, - [SMALL_STATE(3174)] = 105942, - [SMALL_STATE(3175)] = 105950, - [SMALL_STATE(3176)] = 105958, - [SMALL_STATE(3177)] = 105966, - [SMALL_STATE(3178)] = 105974, - [SMALL_STATE(3179)] = 105982, - [SMALL_STATE(3180)] = 105990, - [SMALL_STATE(3181)] = 105998, - [SMALL_STATE(3182)] = 106006, - [SMALL_STATE(3183)] = 106014, - [SMALL_STATE(3184)] = 106022, - [SMALL_STATE(3185)] = 106030, - [SMALL_STATE(3186)] = 106038, - [SMALL_STATE(3187)] = 106046, - [SMALL_STATE(3188)] = 106054, - [SMALL_STATE(3189)] = 106062, - [SMALL_STATE(3190)] = 106070, - [SMALL_STATE(3191)] = 106078, - [SMALL_STATE(3192)] = 106086, - [SMALL_STATE(3193)] = 106094, - [SMALL_STATE(3194)] = 106102, - [SMALL_STATE(3195)] = 106110, - [SMALL_STATE(3196)] = 106118, - [SMALL_STATE(3197)] = 106126, - [SMALL_STATE(3198)] = 106134, - [SMALL_STATE(3199)] = 106142, - [SMALL_STATE(3200)] = 106150, - [SMALL_STATE(3201)] = 106158, - [SMALL_STATE(3202)] = 106166, - [SMALL_STATE(3203)] = 106174, - [SMALL_STATE(3204)] = 106182, - [SMALL_STATE(3205)] = 106190, - [SMALL_STATE(3206)] = 106198, - [SMALL_STATE(3207)] = 106206, - [SMALL_STATE(3208)] = 106214, - [SMALL_STATE(3209)] = 106222, - [SMALL_STATE(3210)] = 106230, - [SMALL_STATE(3211)] = 106238, - [SMALL_STATE(3212)] = 106246, - [SMALL_STATE(3213)] = 106254, - [SMALL_STATE(3214)] = 106262, - [SMALL_STATE(3215)] = 106270, - [SMALL_STATE(3216)] = 106278, - [SMALL_STATE(3217)] = 106286, - [SMALL_STATE(3218)] = 106294, - [SMALL_STATE(3219)] = 106302, - [SMALL_STATE(3220)] = 106310, - [SMALL_STATE(3221)] = 106318, - [SMALL_STATE(3222)] = 106326, - [SMALL_STATE(3223)] = 106334, - [SMALL_STATE(3224)] = 106342, - [SMALL_STATE(3225)] = 106350, - [SMALL_STATE(3226)] = 106358, - [SMALL_STATE(3227)] = 106366, - [SMALL_STATE(3228)] = 106374, - [SMALL_STATE(3229)] = 106382, - [SMALL_STATE(3230)] = 106390, - [SMALL_STATE(3231)] = 106398, - [SMALL_STATE(3232)] = 106406, - [SMALL_STATE(3233)] = 106414, - [SMALL_STATE(3234)] = 106422, - [SMALL_STATE(3235)] = 106430, - [SMALL_STATE(3236)] = 106438, - [SMALL_STATE(3237)] = 106446, - [SMALL_STATE(3238)] = 106454, - [SMALL_STATE(3239)] = 106462, - [SMALL_STATE(3240)] = 106470, - [SMALL_STATE(3241)] = 106478, - [SMALL_STATE(3242)] = 106486, - [SMALL_STATE(3243)] = 106494, - [SMALL_STATE(3244)] = 106502, - [SMALL_STATE(3245)] = 106510, - [SMALL_STATE(3246)] = 106518, - [SMALL_STATE(3247)] = 106526, - [SMALL_STATE(3248)] = 106534, - [SMALL_STATE(3249)] = 106542, - [SMALL_STATE(3250)] = 106550, - [SMALL_STATE(3251)] = 106558, - [SMALL_STATE(3252)] = 106566, - [SMALL_STATE(3253)] = 106574, - [SMALL_STATE(3254)] = 106582, - [SMALL_STATE(3255)] = 106590, - [SMALL_STATE(3256)] = 106598, - [SMALL_STATE(3257)] = 106606, - [SMALL_STATE(3258)] = 106614, - [SMALL_STATE(3259)] = 106622, - [SMALL_STATE(3260)] = 106630, - [SMALL_STATE(3261)] = 106638, - [SMALL_STATE(3262)] = 106646, - [SMALL_STATE(3263)] = 106654, - [SMALL_STATE(3264)] = 106662, - [SMALL_STATE(3265)] = 106670, - [SMALL_STATE(3266)] = 106678, - [SMALL_STATE(3267)] = 106686, - [SMALL_STATE(3268)] = 106694, - [SMALL_STATE(3269)] = 106702, - [SMALL_STATE(3270)] = 106710, - [SMALL_STATE(3271)] = 106718, - [SMALL_STATE(3272)] = 106726, - [SMALL_STATE(3273)] = 106734, - [SMALL_STATE(3274)] = 106742, - [SMALL_STATE(3275)] = 106750, - [SMALL_STATE(3276)] = 106758, - [SMALL_STATE(3277)] = 106766, - [SMALL_STATE(3278)] = 106774, - [SMALL_STATE(3279)] = 106782, - [SMALL_STATE(3280)] = 106790, - [SMALL_STATE(3281)] = 106798, - [SMALL_STATE(3282)] = 106806, - [SMALL_STATE(3283)] = 106814, - [SMALL_STATE(3284)] = 106822, - [SMALL_STATE(3285)] = 106830, - [SMALL_STATE(3286)] = 106838, - [SMALL_STATE(3287)] = 106846, - [SMALL_STATE(3288)] = 106854, - [SMALL_STATE(3289)] = 106862, - [SMALL_STATE(3290)] = 106870, - [SMALL_STATE(3291)] = 106878, - [SMALL_STATE(3292)] = 106886, - [SMALL_STATE(3293)] = 106894, - [SMALL_STATE(3294)] = 106902, - [SMALL_STATE(3295)] = 106910, - [SMALL_STATE(3296)] = 106918, - [SMALL_STATE(3297)] = 106926, - [SMALL_STATE(3298)] = 106934, - [SMALL_STATE(3299)] = 106942, - [SMALL_STATE(3300)] = 106950, - [SMALL_STATE(3301)] = 106958, - [SMALL_STATE(3302)] = 106966, - [SMALL_STATE(3303)] = 106974, - [SMALL_STATE(3304)] = 106982, - [SMALL_STATE(3305)] = 106990, - [SMALL_STATE(3306)] = 106998, - [SMALL_STATE(3307)] = 107006, - [SMALL_STATE(3308)] = 107014, - [SMALL_STATE(3309)] = 107022, - [SMALL_STATE(3310)] = 107030, - [SMALL_STATE(3311)] = 107038, - [SMALL_STATE(3312)] = 107046, - [SMALL_STATE(3313)] = 107054, - [SMALL_STATE(3314)] = 107062, - [SMALL_STATE(3315)] = 107070, - [SMALL_STATE(3316)] = 107078, - [SMALL_STATE(3317)] = 107086, - [SMALL_STATE(3318)] = 107094, - [SMALL_STATE(3319)] = 107102, - [SMALL_STATE(3320)] = 107110, - [SMALL_STATE(3321)] = 107118, - [SMALL_STATE(3322)] = 107126, - [SMALL_STATE(3323)] = 107134, - [SMALL_STATE(3324)] = 107142, - [SMALL_STATE(3325)] = 107150, - [SMALL_STATE(3326)] = 107158, - [SMALL_STATE(3327)] = 107166, - [SMALL_STATE(3328)] = 107174, - [SMALL_STATE(3329)] = 107182, - [SMALL_STATE(3330)] = 107190, - [SMALL_STATE(3331)] = 107198, - [SMALL_STATE(3332)] = 107206, - [SMALL_STATE(3333)] = 107214, - [SMALL_STATE(3334)] = 107222, - [SMALL_STATE(3335)] = 107230, - [SMALL_STATE(3336)] = 107238, - [SMALL_STATE(3337)] = 107246, - [SMALL_STATE(3338)] = 107254, - [SMALL_STATE(3339)] = 107262, - [SMALL_STATE(3340)] = 107270, - [SMALL_STATE(3341)] = 107278, - [SMALL_STATE(3342)] = 107286, - [SMALL_STATE(3343)] = 107294, - [SMALL_STATE(3344)] = 107302, - [SMALL_STATE(3345)] = 107310, - [SMALL_STATE(3346)] = 107318, - [SMALL_STATE(3347)] = 107326, - [SMALL_STATE(3348)] = 107334, - [SMALL_STATE(3349)] = 107342, - [SMALL_STATE(3350)] = 107350, - [SMALL_STATE(3351)] = 107358, - [SMALL_STATE(3352)] = 107366, - [SMALL_STATE(3353)] = 107374, - [SMALL_STATE(3354)] = 107382, - [SMALL_STATE(3355)] = 107390, - [SMALL_STATE(3356)] = 107398, - [SMALL_STATE(3357)] = 107406, - [SMALL_STATE(3358)] = 107414, - [SMALL_STATE(3359)] = 107422, - [SMALL_STATE(3360)] = 107430, - [SMALL_STATE(3361)] = 107438, - [SMALL_STATE(3362)] = 107446, - [SMALL_STATE(3363)] = 107454, - [SMALL_STATE(3364)] = 107462, - [SMALL_STATE(3365)] = 107470, - [SMALL_STATE(3366)] = 107478, - [SMALL_STATE(3367)] = 107486, - [SMALL_STATE(3368)] = 107494, - [SMALL_STATE(3369)] = 107502, - [SMALL_STATE(3370)] = 107510, - [SMALL_STATE(3371)] = 107518, - [SMALL_STATE(3372)] = 107526, - [SMALL_STATE(3373)] = 107534, - [SMALL_STATE(3374)] = 107542, - [SMALL_STATE(3375)] = 107550, - [SMALL_STATE(3376)] = 107558, - [SMALL_STATE(3377)] = 107566, - [SMALL_STATE(3378)] = 107574, - [SMALL_STATE(3379)] = 107582, - [SMALL_STATE(3380)] = 107590, - [SMALL_STATE(3381)] = 107598, - [SMALL_STATE(3382)] = 107606, - [SMALL_STATE(3383)] = 107614, - [SMALL_STATE(3384)] = 107622, - [SMALL_STATE(3385)] = 107630, - [SMALL_STATE(3386)] = 107638, - [SMALL_STATE(3387)] = 107646, - [SMALL_STATE(3388)] = 107654, - [SMALL_STATE(3389)] = 107662, - [SMALL_STATE(3390)] = 107670, - [SMALL_STATE(3391)] = 107678, - [SMALL_STATE(3392)] = 107686, - [SMALL_STATE(3393)] = 107694, - [SMALL_STATE(3394)] = 107702, - [SMALL_STATE(3395)] = 107710, - [SMALL_STATE(3396)] = 107718, - [SMALL_STATE(3397)] = 107726, - [SMALL_STATE(3398)] = 107734, - [SMALL_STATE(3399)] = 107742, - [SMALL_STATE(3400)] = 107750, - [SMALL_STATE(3401)] = 107758, - [SMALL_STATE(3402)] = 107766, - [SMALL_STATE(3403)] = 107774, - [SMALL_STATE(3404)] = 107782, - [SMALL_STATE(3405)] = 107790, - [SMALL_STATE(3406)] = 107798, - [SMALL_STATE(3407)] = 107806, - [SMALL_STATE(3408)] = 107814, - [SMALL_STATE(3409)] = 107822, - [SMALL_STATE(3410)] = 107830, - [SMALL_STATE(3411)] = 107838, - [SMALL_STATE(3412)] = 107846, - [SMALL_STATE(3413)] = 107854, - [SMALL_STATE(3414)] = 107862, - [SMALL_STATE(3415)] = 107870, - [SMALL_STATE(3416)] = 107878, - [SMALL_STATE(3417)] = 107886, - [SMALL_STATE(3418)] = 107894, - [SMALL_STATE(3419)] = 107902, - [SMALL_STATE(3420)] = 107910, - [SMALL_STATE(3421)] = 107918, - [SMALL_STATE(3422)] = 107926, - [SMALL_STATE(3423)] = 107934, - [SMALL_STATE(3424)] = 107942, - [SMALL_STATE(3425)] = 107950, - [SMALL_STATE(3426)] = 107958, - [SMALL_STATE(3427)] = 107966, - [SMALL_STATE(3428)] = 107974, - [SMALL_STATE(3429)] = 107982, - [SMALL_STATE(3430)] = 107990, - [SMALL_STATE(3431)] = 107998, - [SMALL_STATE(3432)] = 108006, - [SMALL_STATE(3433)] = 108014, - [SMALL_STATE(3434)] = 108022, - [SMALL_STATE(3435)] = 108030, - [SMALL_STATE(3436)] = 108038, - [SMALL_STATE(3437)] = 108046, - [SMALL_STATE(3438)] = 108054, - [SMALL_STATE(3439)] = 108062, - [SMALL_STATE(3440)] = 108070, - [SMALL_STATE(3441)] = 108078, - [SMALL_STATE(3442)] = 108086, - [SMALL_STATE(3443)] = 108094, - [SMALL_STATE(3444)] = 108102, - [SMALL_STATE(3445)] = 108110, - [SMALL_STATE(3446)] = 108118, - [SMALL_STATE(3447)] = 108126, - [SMALL_STATE(3448)] = 108134, - [SMALL_STATE(3449)] = 108142, - [SMALL_STATE(3450)] = 108150, - [SMALL_STATE(3451)] = 108158, - [SMALL_STATE(3452)] = 108166, - [SMALL_STATE(3453)] = 108174, - [SMALL_STATE(3454)] = 108182, - [SMALL_STATE(3455)] = 108190, - [SMALL_STATE(3456)] = 108198, - [SMALL_STATE(3457)] = 108206, - [SMALL_STATE(3458)] = 108214, - [SMALL_STATE(3459)] = 108222, - [SMALL_STATE(3460)] = 108230, - [SMALL_STATE(3461)] = 108238, - [SMALL_STATE(3462)] = 108246, - [SMALL_STATE(3463)] = 108254, - [SMALL_STATE(3464)] = 108262, - [SMALL_STATE(3465)] = 108270, - [SMALL_STATE(3466)] = 108278, - [SMALL_STATE(3467)] = 108286, - [SMALL_STATE(3468)] = 108294, - [SMALL_STATE(3469)] = 108302, - [SMALL_STATE(3470)] = 108310, - [SMALL_STATE(3471)] = 108318, - [SMALL_STATE(3472)] = 108326, - [SMALL_STATE(3473)] = 108334, - [SMALL_STATE(3474)] = 108342, - [SMALL_STATE(3475)] = 108350, - [SMALL_STATE(3476)] = 108358, - [SMALL_STATE(3477)] = 108366, - [SMALL_STATE(3478)] = 108374, - [SMALL_STATE(3479)] = 108382, - [SMALL_STATE(3480)] = 108390, - [SMALL_STATE(3481)] = 108398, - [SMALL_STATE(3482)] = 108406, - [SMALL_STATE(3483)] = 108414, - [SMALL_STATE(3484)] = 108422, - [SMALL_STATE(3485)] = 108430, - [SMALL_STATE(3486)] = 108438, - [SMALL_STATE(3487)] = 108446, - [SMALL_STATE(3488)] = 108454, - [SMALL_STATE(3489)] = 108462, - [SMALL_STATE(3490)] = 108470, - [SMALL_STATE(3491)] = 108478, - [SMALL_STATE(3492)] = 108486, - [SMALL_STATE(3493)] = 108494, - [SMALL_STATE(3494)] = 108502, - [SMALL_STATE(3495)] = 108510, - [SMALL_STATE(3496)] = 108518, + [SMALL_STATE(878)] = 0, + [SMALL_STATE(879)] = 111, + [SMALL_STATE(880)] = 222, + [SMALL_STATE(881)] = 331, + [SMALL_STATE(882)] = 440, + [SMALL_STATE(883)] = 549, + [SMALL_STATE(884)] = 658, + [SMALL_STATE(885)] = 727, + [SMALL_STATE(886)] = 836, + [SMALL_STATE(887)] = 945, + [SMALL_STATE(888)] = 1054, + [SMALL_STATE(889)] = 1163, + [SMALL_STATE(890)] = 1237, + [SMALL_STATE(891)] = 1339, + [SMALL_STATE(892)] = 1441, + [SMALL_STATE(893)] = 1543, + [SMALL_STATE(894)] = 1645, + [SMALL_STATE(895)] = 1747, + [SMALL_STATE(896)] = 1847, + [SMALL_STATE(897)] = 1947, + [SMALL_STATE(898)] = 2047, + [SMALL_STATE(899)] = 2147, + [SMALL_STATE(900)] = 2247, + [SMALL_STATE(901)] = 2347, + [SMALL_STATE(902)] = 2447, + [SMALL_STATE(903)] = 2547, + [SMALL_STATE(904)] = 2647, + [SMALL_STATE(905)] = 2747, + [SMALL_STATE(906)] = 2847, + [SMALL_STATE(907)] = 2947, + [SMALL_STATE(908)] = 3047, + [SMALL_STATE(909)] = 3147, + [SMALL_STATE(910)] = 3247, + [SMALL_STATE(911)] = 3347, + [SMALL_STATE(912)] = 3447, + [SMALL_STATE(913)] = 3547, + [SMALL_STATE(914)] = 3647, + [SMALL_STATE(915)] = 3747, + [SMALL_STATE(916)] = 3846, + [SMALL_STATE(917)] = 3945, + [SMALL_STATE(918)] = 4044, + [SMALL_STATE(919)] = 4143, + [SMALL_STATE(920)] = 4242, + [SMALL_STATE(921)] = 4341, + [SMALL_STATE(922)] = 4440, + [SMALL_STATE(923)] = 4539, + [SMALL_STATE(924)] = 4638, + [SMALL_STATE(925)] = 4737, + [SMALL_STATE(926)] = 4813, + [SMALL_STATE(927)] = 4887, + [SMALL_STATE(928)] = 4953, + [SMALL_STATE(929)] = 5019, + [SMALL_STATE(930)] = 5117, + [SMALL_STATE(931)] = 5215, + [SMALL_STATE(932)] = 5313, + [SMALL_STATE(933)] = 5387, + [SMALL_STATE(934)] = 5463, + [SMALL_STATE(935)] = 5561, + [SMALL_STATE(936)] = 5659, + [SMALL_STATE(937)] = 5757, + [SMALL_STATE(938)] = 5855, + [SMALL_STATE(939)] = 5925, + [SMALL_STATE(940)] = 6023, + [SMALL_STATE(941)] = 6121, + [SMALL_STATE(942)] = 6219, + [SMALL_STATE(943)] = 6295, + [SMALL_STATE(944)] = 6373, + [SMALL_STATE(945)] = 6442, + [SMALL_STATE(946)] = 6511, + [SMALL_STATE(947)] = 6574, + [SMALL_STATE(948)] = 6637, + [SMALL_STATE(949)] = 6706, + [SMALL_STATE(950)] = 6772, + [SMALL_STATE(951)] = 6836, + [SMALL_STATE(952)] = 6904, + [SMALL_STATE(953)] = 6970, + [SMALL_STATE(954)] = 7046, + [SMALL_STATE(955)] = 7110, + [SMALL_STATE(956)] = 7176, + [SMALL_STATE(957)] = 7240, + [SMALL_STATE(958)] = 7306, + [SMALL_STATE(959)] = 7373, + [SMALL_STATE(960)] = 7438, + [SMALL_STATE(961)] = 7503, + [SMALL_STATE(962)] = 7568, + [SMALL_STATE(963)] = 7633, + [SMALL_STATE(964)] = 7698, + [SMALL_STATE(965)] = 7765, + [SMALL_STATE(966)] = 7830, + [SMALL_STATE(967)] = 7893, + [SMALL_STATE(968)] = 7958, + [SMALL_STATE(969)] = 8025, + [SMALL_STATE(970)] = 8088, + [SMALL_STATE(971)] = 8151, + [SMALL_STATE(972)] = 8215, + [SMALL_STATE(973)] = 8279, + [SMALL_STATE(974)] = 8343, + [SMALL_STATE(975)] = 8409, + [SMALL_STATE(976)] = 8468, + [SMALL_STATE(977)] = 8546, + [SMALL_STATE(978)] = 8618, + [SMALL_STATE(979)] = 8696, + [SMALL_STATE(980)] = 8774, + [SMALL_STATE(981)] = 8852, + [SMALL_STATE(982)] = 8930, + [SMALL_STATE(983)] = 9008, + [SMALL_STATE(984)] = 9080, + [SMALL_STATE(985)] = 9138, + [SMALL_STATE(986)] = 9212, + [SMALL_STATE(987)] = 9274, + [SMALL_STATE(988)] = 9348, + [SMALL_STATE(989)] = 9403, + [SMALL_STATE(990)] = 9458, + [SMALL_STATE(991)] = 9533, + [SMALL_STATE(992)] = 9588, + [SMALL_STATE(993)] = 9661, + [SMALL_STATE(994)] = 9716, + [SMALL_STATE(995)] = 9791, + [SMALL_STATE(996)] = 9846, + [SMALL_STATE(997)] = 9919, + [SMALL_STATE(998)] = 9980, + [SMALL_STATE(999)] = 10035, + [SMALL_STATE(1000)] = 10104, + [SMALL_STATE(1001)] = 10164, + [SMALL_STATE(1002)] = 10220, + [SMALL_STATE(1003)] = 10276, + [SMALL_STATE(1004)] = 10330, + [SMALL_STATE(1005)] = 10388, + [SMALL_STATE(1006)] = 10442, + [SMALL_STATE(1007)] = 10502, + [SMALL_STATE(1008)] = 10556, + [SMALL_STATE(1009)] = 10631, + [SMALL_STATE(1010)] = 10704, + [SMALL_STATE(1011)] = 10773, + [SMALL_STATE(1012)] = 10842, + [SMALL_STATE(1013)] = 10911, + [SMALL_STATE(1014)] = 10980, + [SMALL_STATE(1015)] = 11055, + [SMALL_STATE(1016)] = 11128, + [SMALL_STATE(1017)] = 11197, + [SMALL_STATE(1018)] = 11272, + [SMALL_STATE(1019)] = 11341, + [SMALL_STATE(1020)] = 11410, + [SMALL_STATE(1021)] = 11479, + [SMALL_STATE(1022)] = 11532, + [SMALL_STATE(1023)] = 11605, + [SMALL_STATE(1024)] = 11678, + [SMALL_STATE(1025)] = 11751, + [SMALL_STATE(1026)] = 11804, + [SMALL_STATE(1027)] = 11857, + [SMALL_STATE(1028)] = 11932, + [SMALL_STATE(1029)] = 12005, + [SMALL_STATE(1030)] = 12072, + [SMALL_STATE(1031)] = 12125, + [SMALL_STATE(1032)] = 12194, + [SMALL_STATE(1033)] = 12247, + [SMALL_STATE(1034)] = 12300, + [SMALL_STATE(1035)] = 12375, + [SMALL_STATE(1036)] = 12450, + [SMALL_STATE(1037)] = 12519, + [SMALL_STATE(1038)] = 12588, + [SMALL_STATE(1039)] = 12641, + [SMALL_STATE(1040)] = 12714, + [SMALL_STATE(1041)] = 12767, + [SMALL_STATE(1042)] = 12820, + [SMALL_STATE(1043)] = 12895, + [SMALL_STATE(1044)] = 12970, + [SMALL_STATE(1045)] = 13045, + [SMALL_STATE(1046)] = 13120, + [SMALL_STATE(1047)] = 13189, + [SMALL_STATE(1048)] = 13258, + [SMALL_STATE(1049)] = 13325, + [SMALL_STATE(1050)] = 13394, + [SMALL_STATE(1051)] = 13465, + [SMALL_STATE(1052)] = 13518, + [SMALL_STATE(1053)] = 13591, + [SMALL_STATE(1054)] = 13666, + [SMALL_STATE(1055)] = 13741, + [SMALL_STATE(1056)] = 13816, + [SMALL_STATE(1057)] = 13889, + [SMALL_STATE(1058)] = 13958, + [SMALL_STATE(1059)] = 14031, + [SMALL_STATE(1060)] = 14100, + [SMALL_STATE(1061)] = 14175, + [SMALL_STATE(1062)] = 14244, + [SMALL_STATE(1063)] = 14311, + [SMALL_STATE(1064)] = 14364, + [SMALL_STATE(1065)] = 14437, + [SMALL_STATE(1066)] = 14512, + [SMALL_STATE(1067)] = 14587, + [SMALL_STATE(1068)] = 14658, + [SMALL_STATE(1069)] = 14733, + [SMALL_STATE(1070)] = 14806, + [SMALL_STATE(1071)] = 14875, + [SMALL_STATE(1072)] = 14944, + [SMALL_STATE(1073)] = 14997, + [SMALL_STATE(1074)] = 15066, + [SMALL_STATE(1075)] = 15133, + [SMALL_STATE(1076)] = 15208, + [SMALL_STATE(1077)] = 15277, + [SMALL_STATE(1078)] = 15352, + [SMALL_STATE(1079)] = 15421, + [SMALL_STATE(1080)] = 15496, + [SMALL_STATE(1081)] = 15565, + [SMALL_STATE(1082)] = 15634, + [SMALL_STATE(1083)] = 15704, + [SMALL_STATE(1084)] = 15756, + [SMALL_STATE(1085)] = 15822, + [SMALL_STATE(1086)] = 15888, + [SMALL_STATE(1087)] = 15954, + [SMALL_STATE(1088)] = 16040, + [SMALL_STATE(1089)] = 16110, + [SMALL_STATE(1090)] = 16176, + [SMALL_STATE(1091)] = 16242, + [SMALL_STATE(1092)] = 16308, + [SMALL_STATE(1093)] = 16374, + [SMALL_STATE(1094)] = 16440, + [SMALL_STATE(1095)] = 16492, + [SMALL_STATE(1096)] = 16558, + [SMALL_STATE(1097)] = 16628, + [SMALL_STATE(1098)] = 16714, + [SMALL_STATE(1099)] = 16780, + [SMALL_STATE(1100)] = 16850, + [SMALL_STATE(1101)] = 16916, + [SMALL_STATE(1102)] = 16982, + [SMALL_STATE(1103)] = 17052, + [SMALL_STATE(1104)] = 17118, + [SMALL_STATE(1105)] = 17204, + [SMALL_STATE(1106)] = 17270, + [SMALL_STATE(1107)] = 17336, + [SMALL_STATE(1108)] = 17422, + [SMALL_STATE(1109)] = 17492, + [SMALL_STATE(1110)] = 17558, + [SMALL_STATE(1111)] = 17628, + [SMALL_STATE(1112)] = 17694, + [SMALL_STATE(1113)] = 17760, + [SMALL_STATE(1114)] = 17846, + [SMALL_STATE(1115)] = 17916, + [SMALL_STATE(1116)] = 17985, + [SMALL_STATE(1117)] = 18054, + [SMALL_STATE(1118)] = 18117, + [SMALL_STATE(1119)] = 18186, + [SMALL_STATE(1120)] = 18255, + [SMALL_STATE(1121)] = 18324, + [SMALL_STATE(1122)] = 18393, + [SMALL_STATE(1123)] = 18462, + [SMALL_STATE(1124)] = 18531, + [SMALL_STATE(1125)] = 18600, + [SMALL_STATE(1126)] = 18669, + [SMALL_STATE(1127)] = 18738, + [SMALL_STATE(1128)] = 18807, + [SMALL_STATE(1129)] = 18876, + [SMALL_STATE(1130)] = 18945, + [SMALL_STATE(1131)] = 19014, + [SMALL_STATE(1132)] = 19083, + [SMALL_STATE(1133)] = 19152, + [SMALL_STATE(1134)] = 19221, + [SMALL_STATE(1135)] = 19290, + [SMALL_STATE(1136)] = 19359, + [SMALL_STATE(1137)] = 19428, + [SMALL_STATE(1138)] = 19497, + [SMALL_STATE(1139)] = 19566, + [SMALL_STATE(1140)] = 19635, + [SMALL_STATE(1141)] = 19704, + [SMALL_STATE(1142)] = 19773, + [SMALL_STATE(1143)] = 19842, + [SMALL_STATE(1144)] = 19911, + [SMALL_STATE(1145)] = 19974, + [SMALL_STATE(1146)] = 20043, + [SMALL_STATE(1147)] = 20112, + [SMALL_STATE(1148)] = 20181, + [SMALL_STATE(1149)] = 20250, + [SMALL_STATE(1150)] = 20319, + [SMALL_STATE(1151)] = 20388, + [SMALL_STATE(1152)] = 20457, + [SMALL_STATE(1153)] = 20526, + [SMALL_STATE(1154)] = 20595, + [SMALL_STATE(1155)] = 20658, + [SMALL_STATE(1156)] = 20727, + [SMALL_STATE(1157)] = 20796, + [SMALL_STATE(1158)] = 20865, + [SMALL_STATE(1159)] = 20934, + [SMALL_STATE(1160)] = 21003, + [SMALL_STATE(1161)] = 21066, + [SMALL_STATE(1162)] = 21135, + [SMALL_STATE(1163)] = 21198, + [SMALL_STATE(1164)] = 21267, + [SMALL_STATE(1165)] = 21336, + [SMALL_STATE(1166)] = 21405, + [SMALL_STATE(1167)] = 21474, + [SMALL_STATE(1168)] = 21543, + [SMALL_STATE(1169)] = 21612, + [SMALL_STATE(1170)] = 21681, + [SMALL_STATE(1171)] = 21750, + [SMALL_STATE(1172)] = 21819, + [SMALL_STATE(1173)] = 21888, + [SMALL_STATE(1174)] = 21957, + [SMALL_STATE(1175)] = 22026, + [SMALL_STATE(1176)] = 22095, + [SMALL_STATE(1177)] = 22164, + [SMALL_STATE(1178)] = 22233, + [SMALL_STATE(1179)] = 22302, + [SMALL_STATE(1180)] = 22371, + [SMALL_STATE(1181)] = 22440, + [SMALL_STATE(1182)] = 22509, + [SMALL_STATE(1183)] = 22578, + [SMALL_STATE(1184)] = 22647, + [SMALL_STATE(1185)] = 22716, + [SMALL_STATE(1186)] = 22785, + [SMALL_STATE(1187)] = 22854, + [SMALL_STATE(1188)] = 22923, + [SMALL_STATE(1189)] = 22992, + [SMALL_STATE(1190)] = 23061, + [SMALL_STATE(1191)] = 23130, + [SMALL_STATE(1192)] = 23199, + [SMALL_STATE(1193)] = 23268, + [SMALL_STATE(1194)] = 23337, + [SMALL_STATE(1195)] = 23406, + [SMALL_STATE(1196)] = 23475, + [SMALL_STATE(1197)] = 23544, + [SMALL_STATE(1198)] = 23613, + [SMALL_STATE(1199)] = 23682, + [SMALL_STATE(1200)] = 23751, + [SMALL_STATE(1201)] = 23820, + [SMALL_STATE(1202)] = 23889, + [SMALL_STATE(1203)] = 23958, + [SMALL_STATE(1204)] = 24027, + [SMALL_STATE(1205)] = 24096, + [SMALL_STATE(1206)] = 24165, + [SMALL_STATE(1207)] = 24234, + [SMALL_STATE(1208)] = 24303, + [SMALL_STATE(1209)] = 24372, + [SMALL_STATE(1210)] = 24441, + [SMALL_STATE(1211)] = 24510, + [SMALL_STATE(1212)] = 24579, + [SMALL_STATE(1213)] = 24648, + [SMALL_STATE(1214)] = 24717, + [SMALL_STATE(1215)] = 24786, + [SMALL_STATE(1216)] = 24855, + [SMALL_STATE(1217)] = 24924, + [SMALL_STATE(1218)] = 24993, + [SMALL_STATE(1219)] = 25062, + [SMALL_STATE(1220)] = 25131, + [SMALL_STATE(1221)] = 25200, + [SMALL_STATE(1222)] = 25269, + [SMALL_STATE(1223)] = 25338, + [SMALL_STATE(1224)] = 25407, + [SMALL_STATE(1225)] = 25476, + [SMALL_STATE(1226)] = 25545, + [SMALL_STATE(1227)] = 25614, + [SMALL_STATE(1228)] = 25677, + [SMALL_STATE(1229)] = 25746, + [SMALL_STATE(1230)] = 25815, + [SMALL_STATE(1231)] = 25884, + [SMALL_STATE(1232)] = 25953, + [SMALL_STATE(1233)] = 26022, + [SMALL_STATE(1234)] = 26091, + [SMALL_STATE(1235)] = 26160, + [SMALL_STATE(1236)] = 26229, + [SMALL_STATE(1237)] = 26298, + [SMALL_STATE(1238)] = 26367, + [SMALL_STATE(1239)] = 26436, + [SMALL_STATE(1240)] = 26505, + [SMALL_STATE(1241)] = 26574, + [SMALL_STATE(1242)] = 26643, + [SMALL_STATE(1243)] = 26712, + [SMALL_STATE(1244)] = 26781, + [SMALL_STATE(1245)] = 26850, + [SMALL_STATE(1246)] = 26919, + [SMALL_STATE(1247)] = 26988, + [SMALL_STATE(1248)] = 27057, + [SMALL_STATE(1249)] = 27126, + [SMALL_STATE(1250)] = 27195, + [SMALL_STATE(1251)] = 27264, + [SMALL_STATE(1252)] = 27333, + [SMALL_STATE(1253)] = 27402, + [SMALL_STATE(1254)] = 27471, + [SMALL_STATE(1255)] = 27540, + [SMALL_STATE(1256)] = 27609, + [SMALL_STATE(1257)] = 27678, + [SMALL_STATE(1258)] = 27747, + [SMALL_STATE(1259)] = 27816, + [SMALL_STATE(1260)] = 27885, + [SMALL_STATE(1261)] = 27954, + [SMALL_STATE(1262)] = 28023, + [SMALL_STATE(1263)] = 28092, + [SMALL_STATE(1264)] = 28161, + [SMALL_STATE(1265)] = 28230, + [SMALL_STATE(1266)] = 28299, + [SMALL_STATE(1267)] = 28368, + [SMALL_STATE(1268)] = 28437, + [SMALL_STATE(1269)] = 28506, + [SMALL_STATE(1270)] = 28575, + [SMALL_STATE(1271)] = 28644, + [SMALL_STATE(1272)] = 28713, + [SMALL_STATE(1273)] = 28782, + [SMALL_STATE(1274)] = 28851, + [SMALL_STATE(1275)] = 28920, + [SMALL_STATE(1276)] = 28989, + [SMALL_STATE(1277)] = 29058, + [SMALL_STATE(1278)] = 29127, + [SMALL_STATE(1279)] = 29196, + [SMALL_STATE(1280)] = 29265, + [SMALL_STATE(1281)] = 29334, + [SMALL_STATE(1282)] = 29403, + [SMALL_STATE(1283)] = 29472, + [SMALL_STATE(1284)] = 29541, + [SMALL_STATE(1285)] = 29610, + [SMALL_STATE(1286)] = 29679, + [SMALL_STATE(1287)] = 29748, + [SMALL_STATE(1288)] = 29817, + [SMALL_STATE(1289)] = 29886, + [SMALL_STATE(1290)] = 29955, + [SMALL_STATE(1291)] = 30024, + [SMALL_STATE(1292)] = 30093, + [SMALL_STATE(1293)] = 30162, + [SMALL_STATE(1294)] = 30231, + [SMALL_STATE(1295)] = 30300, + [SMALL_STATE(1296)] = 30369, + [SMALL_STATE(1297)] = 30438, + [SMALL_STATE(1298)] = 30507, + [SMALL_STATE(1299)] = 30576, + [SMALL_STATE(1300)] = 30645, + [SMALL_STATE(1301)] = 30714, + [SMALL_STATE(1302)] = 30783, + [SMALL_STATE(1303)] = 30852, + [SMALL_STATE(1304)] = 30921, + [SMALL_STATE(1305)] = 30990, + [SMALL_STATE(1306)] = 31059, + [SMALL_STATE(1307)] = 31128, + [SMALL_STATE(1308)] = 31197, + [SMALL_STATE(1309)] = 31266, + [SMALL_STATE(1310)] = 31335, + [SMALL_STATE(1311)] = 31404, + [SMALL_STATE(1312)] = 31473, + [SMALL_STATE(1313)] = 31542, + [SMALL_STATE(1314)] = 31611, + [SMALL_STATE(1315)] = 31680, + [SMALL_STATE(1316)] = 31749, + [SMALL_STATE(1317)] = 31818, + [SMALL_STATE(1318)] = 31887, + [SMALL_STATE(1319)] = 31956, + [SMALL_STATE(1320)] = 32025, + [SMALL_STATE(1321)] = 32094, + [SMALL_STATE(1322)] = 32163, + [SMALL_STATE(1323)] = 32232, + [SMALL_STATE(1324)] = 32301, + [SMALL_STATE(1325)] = 32370, + [SMALL_STATE(1326)] = 32439, + [SMALL_STATE(1327)] = 32508, + [SMALL_STATE(1328)] = 32577, + [SMALL_STATE(1329)] = 32646, + [SMALL_STATE(1330)] = 32715, + [SMALL_STATE(1331)] = 32784, + [SMALL_STATE(1332)] = 32853, + [SMALL_STATE(1333)] = 32922, + [SMALL_STATE(1334)] = 32991, + [SMALL_STATE(1335)] = 33060, + [SMALL_STATE(1336)] = 33129, + [SMALL_STATE(1337)] = 33208, + [SMALL_STATE(1338)] = 33291, + [SMALL_STATE(1339)] = 33374, + [SMALL_STATE(1340)] = 33457, + [SMALL_STATE(1341)] = 33540, + [SMALL_STATE(1342)] = 33623, + [SMALL_STATE(1343)] = 33702, + [SMALL_STATE(1344)] = 33781, + [SMALL_STATE(1345)] = 33860, + [SMALL_STATE(1346)] = 33938, + [SMALL_STATE(1347)] = 34026, + [SMALL_STATE(1348)] = 34108, + [SMALL_STATE(1349)] = 34196, + [SMALL_STATE(1350)] = 34278, + [SMALL_STATE(1351)] = 34360, + [SMALL_STATE(1352)] = 34438, + [SMALL_STATE(1353)] = 34520, + [SMALL_STATE(1354)] = 34602, + [SMALL_STATE(1355)] = 34661, + [SMALL_STATE(1356)] = 34720, + [SMALL_STATE(1357)] = 34779, + [SMALL_STATE(1358)] = 34838, + [SMALL_STATE(1359)] = 34894, + [SMALL_STATE(1360)] = 34950, + [SMALL_STATE(1361)] = 35036, + [SMALL_STATE(1362)] = 35092, + [SMALL_STATE(1363)] = 35148, + [SMALL_STATE(1364)] = 35228, + [SMALL_STATE(1365)] = 35308, + [SMALL_STATE(1366)] = 35388, + [SMALL_STATE(1367)] = 35468, + [SMALL_STATE(1368)] = 35554, + [SMALL_STATE(1369)] = 35634, + [SMALL_STATE(1370)] = 35681, + [SMALL_STATE(1371)] = 35768, + [SMALL_STATE(1372)] = 35855, + [SMALL_STATE(1373)] = 35942, + [SMALL_STATE(1374)] = 36029, + [SMALL_STATE(1375)] = 36116, + [SMALL_STATE(1376)] = 36163, + [SMALL_STATE(1377)] = 36213, + [SMALL_STATE(1378)] = 36297, + [SMALL_STATE(1379)] = 36381, + [SMALL_STATE(1380)] = 36465, + [SMALL_STATE(1381)] = 36521, + [SMALL_STATE(1382)] = 36599, + [SMALL_STATE(1383)] = 36683, + [SMALL_STATE(1384)] = 36767, + [SMALL_STATE(1385)] = 36851, + [SMALL_STATE(1386)] = 36901, + [SMALL_STATE(1387)] = 36979, + [SMALL_STATE(1388)] = 37029, + [SMALL_STATE(1389)] = 37107, + [SMALL_STATE(1390)] = 37185, + [SMALL_STATE(1391)] = 37263, + [SMALL_STATE(1392)] = 37313, + [SMALL_STATE(1393)] = 37397, + [SMALL_STATE(1394)] = 37481, + [SMALL_STATE(1395)] = 37565, + [SMALL_STATE(1396)] = 37649, + [SMALL_STATE(1397)] = 37733, + [SMALL_STATE(1398)] = 37817, + [SMALL_STATE(1399)] = 37901, + [SMALL_STATE(1400)] = 37985, + [SMALL_STATE(1401)] = 38069, + [SMALL_STATE(1402)] = 38153, + [SMALL_STATE(1403)] = 38209, + [SMALL_STATE(1404)] = 38293, + [SMALL_STATE(1405)] = 38377, + [SMALL_STATE(1406)] = 38461, + [SMALL_STATE(1407)] = 38545, + [SMALL_STATE(1408)] = 38629, + [SMALL_STATE(1409)] = 38713, + [SMALL_STATE(1410)] = 38797, + [SMALL_STATE(1411)] = 38853, + [SMALL_STATE(1412)] = 38937, + [SMALL_STATE(1413)] = 39021, + [SMALL_STATE(1414)] = 39105, + [SMALL_STATE(1415)] = 39189, + [SMALL_STATE(1416)] = 39273, + [SMALL_STATE(1417)] = 39357, + [SMALL_STATE(1418)] = 39441, + [SMALL_STATE(1419)] = 39525, + [SMALL_STATE(1420)] = 39609, + [SMALL_STATE(1421)] = 39693, + [SMALL_STATE(1422)] = 39777, + [SMALL_STATE(1423)] = 39861, + [SMALL_STATE(1424)] = 39945, + [SMALL_STATE(1425)] = 40029, + [SMALL_STATE(1426)] = 40113, + [SMALL_STATE(1427)] = 40197, + [SMALL_STATE(1428)] = 40278, + [SMALL_STATE(1429)] = 40359, + [SMALL_STATE(1430)] = 40440, + [SMALL_STATE(1431)] = 40491, + [SMALL_STATE(1432)] = 40572, + [SMALL_STATE(1433)] = 40653, + [SMALL_STATE(1434)] = 40702, + [SMALL_STATE(1435)] = 40783, + [SMALL_STATE(1436)] = 40864, + [SMALL_STATE(1437)] = 40945, + [SMALL_STATE(1438)] = 41026, + [SMALL_STATE(1439)] = 41075, + [SMALL_STATE(1440)] = 41156, + [SMALL_STATE(1441)] = 41237, + [SMALL_STATE(1442)] = 41318, + [SMALL_STATE(1443)] = 41399, + [SMALL_STATE(1444)] = 41480, + [SMALL_STATE(1445)] = 41561, + [SMALL_STATE(1446)] = 41642, + [SMALL_STATE(1447)] = 41723, + [SMALL_STATE(1448)] = 41804, + [SMALL_STATE(1449)] = 41885, + [SMALL_STATE(1450)] = 41934, + [SMALL_STATE(1451)] = 42015, + [SMALL_STATE(1452)] = 42068, + [SMALL_STATE(1453)] = 42149, + [SMALL_STATE(1454)] = 42230, + [SMALL_STATE(1455)] = 42311, + [SMALL_STATE(1456)] = 42392, + [SMALL_STATE(1457)] = 42473, + [SMALL_STATE(1458)] = 42524, + [SMALL_STATE(1459)] = 42605, + [SMALL_STATE(1460)] = 42686, + [SMALL_STATE(1461)] = 42767, + [SMALL_STATE(1462)] = 42848, + [SMALL_STATE(1463)] = 42929, + [SMALL_STATE(1464)] = 43010, + [SMALL_STATE(1465)] = 43091, + [SMALL_STATE(1466)] = 43172, + [SMALL_STATE(1467)] = 43255, + [SMALL_STATE(1468)] = 43336, + [SMALL_STATE(1469)] = 43417, + [SMALL_STATE(1470)] = 43498, + [SMALL_STATE(1471)] = 43579, + [SMALL_STATE(1472)] = 43660, + [SMALL_STATE(1473)] = 43741, + [SMALL_STATE(1474)] = 43825, + [SMALL_STATE(1475)] = 43879, + [SMALL_STATE(1476)] = 43933, + [SMALL_STATE(1477)] = 43987, + [SMALL_STATE(1478)] = 44033, + [SMALL_STATE(1479)] = 44087, + [SMALL_STATE(1480)] = 44171, + [SMALL_STATE(1481)] = 44255, + [SMALL_STATE(1482)] = 44309, + [SMALL_STATE(1483)] = 44355, + [SMALL_STATE(1484)] = 44399, + [SMALL_STATE(1485)] = 44483, + [SMALL_STATE(1486)] = 44525, + [SMALL_STATE(1487)] = 44567, + [SMALL_STATE(1488)] = 44609, + [SMALL_STATE(1489)] = 44685, + [SMALL_STATE(1490)] = 44761, + [SMALL_STATE(1491)] = 44837, + [SMALL_STATE(1492)] = 44913, + [SMALL_STATE(1493)] = 44989, + [SMALL_STATE(1494)] = 45073, + [SMALL_STATE(1495)] = 45157, + [SMALL_STATE(1496)] = 45241, + [SMALL_STATE(1497)] = 45325, + [SMALL_STATE(1498)] = 45379, + [SMALL_STATE(1499)] = 45463, + [SMALL_STATE(1500)] = 45547, + [SMALL_STATE(1501)] = 45627, + [SMALL_STATE(1502)] = 45681, + [SMALL_STATE(1503)] = 45722, + [SMALL_STATE(1504)] = 45763, + [SMALL_STATE(1505)] = 45804, + [SMALL_STATE(1506)] = 45845, + [SMALL_STATE(1507)] = 45886, + [SMALL_STATE(1508)] = 45927, + [SMALL_STATE(1509)] = 45968, + [SMALL_STATE(1510)] = 46041, + [SMALL_STATE(1511)] = 46120, + [SMALL_STATE(1512)] = 46171, + [SMALL_STATE(1513)] = 46212, + [SMALL_STATE(1514)] = 46263, + [SMALL_STATE(1515)] = 46304, + [SMALL_STATE(1516)] = 46351, + [SMALL_STATE(1517)] = 46392, + [SMALL_STATE(1518)] = 46433, + [SMALL_STATE(1519)] = 46474, + [SMALL_STATE(1520)] = 46515, + [SMALL_STATE(1521)] = 46562, + [SMALL_STATE(1522)] = 46603, + [SMALL_STATE(1523)] = 46644, + [SMALL_STATE(1524)] = 46685, + [SMALL_STATE(1525)] = 46736, + [SMALL_STATE(1526)] = 46787, + [SMALL_STATE(1527)] = 46828, + [SMALL_STATE(1528)] = 46901, + [SMALL_STATE(1529)] = 46980, + [SMALL_STATE(1530)] = 47053, + [SMALL_STATE(1531)] = 47094, + [SMALL_STATE(1532)] = 47147, + [SMALL_STATE(1533)] = 47228, + [SMALL_STATE(1534)] = 47269, + [SMALL_STATE(1535)] = 47310, + [SMALL_STATE(1536)] = 47351, + [SMALL_STATE(1537)] = 47398, + [SMALL_STATE(1538)] = 47439, + [SMALL_STATE(1539)] = 47480, + [SMALL_STATE(1540)] = 47521, + [SMALL_STATE(1541)] = 47562, + [SMALL_STATE(1542)] = 47609, + [SMALL_STATE(1543)] = 47660, + [SMALL_STATE(1544)] = 47701, + [SMALL_STATE(1545)] = 47742, + [SMALL_STATE(1546)] = 47783, + [SMALL_STATE(1547)] = 47824, + [SMALL_STATE(1548)] = 47865, + [SMALL_STATE(1549)] = 47912, + [SMALL_STATE(1550)] = 47953, + [SMALL_STATE(1551)] = 48000, + [SMALL_STATE(1552)] = 48041, + [SMALL_STATE(1553)] = 48082, + [SMALL_STATE(1554)] = 48123, + [SMALL_STATE(1555)] = 48164, + [SMALL_STATE(1556)] = 48205, + [SMALL_STATE(1557)] = 48246, + [SMALL_STATE(1558)] = 48287, + [SMALL_STATE(1559)] = 48334, + [SMALL_STATE(1560)] = 48407, + [SMALL_STATE(1561)] = 48454, + [SMALL_STATE(1562)] = 48501, + [SMALL_STATE(1563)] = 48582, + [SMALL_STATE(1564)] = 48655, + [SMALL_STATE(1565)] = 48728, + [SMALL_STATE(1566)] = 48775, + [SMALL_STATE(1567)] = 48848, + [SMALL_STATE(1568)] = 48921, + [SMALL_STATE(1569)] = 48994, + [SMALL_STATE(1570)] = 49045, + [SMALL_STATE(1571)] = 49092, + [SMALL_STATE(1572)] = 49171, + [SMALL_STATE(1573)] = 49218, + [SMALL_STATE(1574)] = 49291, + [SMALL_STATE(1575)] = 49332, + [SMALL_STATE(1576)] = 49410, + [SMALL_STATE(1577)] = 49488, + [SMALL_STATE(1578)] = 49566, + [SMALL_STATE(1579)] = 49638, + [SMALL_STATE(1580)] = 49716, + [SMALL_STATE(1581)] = 49760, + [SMALL_STATE(1582)] = 49838, + [SMALL_STATE(1583)] = 49916, + [SMALL_STATE(1584)] = 49994, + [SMALL_STATE(1585)] = 50072, + [SMALL_STATE(1586)] = 50112, + [SMALL_STATE(1587)] = 50184, + [SMALL_STATE(1588)] = 50262, + [SMALL_STATE(1589)] = 50340, + [SMALL_STATE(1590)] = 50384, + [SMALL_STATE(1591)] = 50426, + [SMALL_STATE(1592)] = 50504, + [SMALL_STATE(1593)] = 50582, + [SMALL_STATE(1594)] = 50660, + [SMALL_STATE(1595)] = 50738, + [SMALL_STATE(1596)] = 50816, + [SMALL_STATE(1597)] = 50894, + [SMALL_STATE(1598)] = 50972, + [SMALL_STATE(1599)] = 51016, + [SMALL_STATE(1600)] = 51056, + [SMALL_STATE(1601)] = 51098, + [SMALL_STATE(1602)] = 51176, + [SMALL_STATE(1603)] = 51254, + [SMALL_STATE(1604)] = 51332, + [SMALL_STATE(1605)] = 51410, + [SMALL_STATE(1606)] = 51482, + [SMALL_STATE(1607)] = 51560, + [SMALL_STATE(1608)] = 51638, + [SMALL_STATE(1609)] = 51716, + [SMALL_STATE(1610)] = 51788, + [SMALL_STATE(1611)] = 51866, + [SMALL_STATE(1612)] = 51938, + [SMALL_STATE(1613)] = 52016, + [SMALL_STATE(1614)] = 52094, + [SMALL_STATE(1615)] = 52138, + [SMALL_STATE(1616)] = 52216, + [SMALL_STATE(1617)] = 52294, + [SMALL_STATE(1618)] = 52372, + [SMALL_STATE(1619)] = 52450, + [SMALL_STATE(1620)] = 52528, + [SMALL_STATE(1621)] = 52606, + [SMALL_STATE(1622)] = 52684, + [SMALL_STATE(1623)] = 52762, + [SMALL_STATE(1624)] = 52840, + [SMALL_STATE(1625)] = 52918, + [SMALL_STATE(1626)] = 52968, + [SMALL_STATE(1627)] = 53046, + [SMALL_STATE(1628)] = 53092, + [SMALL_STATE(1629)] = 53170, + [SMALL_STATE(1630)] = 53248, + [SMALL_STATE(1631)] = 53288, + [SMALL_STATE(1632)] = 53366, + [SMALL_STATE(1633)] = 53444, + [SMALL_STATE(1634)] = 53522, + [SMALL_STATE(1635)] = 53600, + [SMALL_STATE(1636)] = 53678, + [SMALL_STATE(1637)] = 53756, + [SMALL_STATE(1638)] = 53834, + [SMALL_STATE(1639)] = 53912, + [SMALL_STATE(1640)] = 53954, + [SMALL_STATE(1641)] = 54032, + [SMALL_STATE(1642)] = 54110, + [SMALL_STATE(1643)] = 54188, + [SMALL_STATE(1644)] = 54266, + [SMALL_STATE(1645)] = 54344, + [SMALL_STATE(1646)] = 54422, + [SMALL_STATE(1647)] = 54462, + [SMALL_STATE(1648)] = 54540, + [SMALL_STATE(1649)] = 54618, + [SMALL_STATE(1650)] = 54696, + [SMALL_STATE(1651)] = 54774, + [SMALL_STATE(1652)] = 54852, + [SMALL_STATE(1653)] = 54930, + [SMALL_STATE(1654)] = 55008, + [SMALL_STATE(1655)] = 55086, + [SMALL_STATE(1656)] = 55164, + [SMALL_STATE(1657)] = 55242, + [SMALL_STATE(1658)] = 55320, + [SMALL_STATE(1659)] = 55360, + [SMALL_STATE(1660)] = 55438, + [SMALL_STATE(1661)] = 55516, + [SMALL_STATE(1662)] = 55594, + [SMALL_STATE(1663)] = 55634, + [SMALL_STATE(1664)] = 55674, + [SMALL_STATE(1665)] = 55720, + [SMALL_STATE(1666)] = 55798, + [SMALL_STATE(1667)] = 55876, + [SMALL_STATE(1668)] = 55954, + [SMALL_STATE(1669)] = 56032, + [SMALL_STATE(1670)] = 56110, + [SMALL_STATE(1671)] = 56188, + [SMALL_STATE(1672)] = 56266, + [SMALL_STATE(1673)] = 56344, + [SMALL_STATE(1674)] = 56422, + [SMALL_STATE(1675)] = 56500, + [SMALL_STATE(1676)] = 56578, + [SMALL_STATE(1677)] = 56650, + [SMALL_STATE(1678)] = 56728, + [SMALL_STATE(1679)] = 56806, + [SMALL_STATE(1680)] = 56878, + [SMALL_STATE(1681)] = 56950, + [SMALL_STATE(1682)] = 57028, + [SMALL_STATE(1683)] = 57106, + [SMALL_STATE(1684)] = 57184, + [SMALL_STATE(1685)] = 57262, + [SMALL_STATE(1686)] = 57306, + [SMALL_STATE(1687)] = 57384, + [SMALL_STATE(1688)] = 57462, + [SMALL_STATE(1689)] = 57504, + [SMALL_STATE(1690)] = 57576, + [SMALL_STATE(1691)] = 57616, + [SMALL_STATE(1692)] = 57694, + [SMALL_STATE(1693)] = 57734, + [SMALL_STATE(1694)] = 57812, + [SMALL_STATE(1695)] = 57890, + [SMALL_STATE(1696)] = 57968, + [SMALL_STATE(1697)] = 58046, + [SMALL_STATE(1698)] = 58118, + [SMALL_STATE(1699)] = 58196, + [SMALL_STATE(1700)] = 58236, + [SMALL_STATE(1701)] = 58276, + [SMALL_STATE(1702)] = 58354, + [SMALL_STATE(1703)] = 58432, + [SMALL_STATE(1704)] = 58510, + [SMALL_STATE(1705)] = 58588, + [SMALL_STATE(1706)] = 58666, + [SMALL_STATE(1707)] = 58744, + [SMALL_STATE(1708)] = 58822, + [SMALL_STATE(1709)] = 58900, + [SMALL_STATE(1710)] = 58978, + [SMALL_STATE(1711)] = 59056, + [SMALL_STATE(1712)] = 59134, + [SMALL_STATE(1713)] = 59212, + [SMALL_STATE(1714)] = 59290, + [SMALL_STATE(1715)] = 59368, + [SMALL_STATE(1716)] = 59412, + [SMALL_STATE(1717)] = 59490, + [SMALL_STATE(1718)] = 59568, + [SMALL_STATE(1719)] = 59646, + [SMALL_STATE(1720)] = 59724, + [SMALL_STATE(1721)] = 59802, + [SMALL_STATE(1722)] = 59880, + [SMALL_STATE(1723)] = 59958, + [SMALL_STATE(1724)] = 60036, + [SMALL_STATE(1725)] = 60114, + [SMALL_STATE(1726)] = 60192, + [SMALL_STATE(1727)] = 60270, + [SMALL_STATE(1728)] = 60348, + [SMALL_STATE(1729)] = 60426, + [SMALL_STATE(1730)] = 60504, + [SMALL_STATE(1731)] = 60582, + [SMALL_STATE(1732)] = 60622, + [SMALL_STATE(1733)] = 60700, + [SMALL_STATE(1734)] = 60778, + [SMALL_STATE(1735)] = 60856, + [SMALL_STATE(1736)] = 60934, + [SMALL_STATE(1737)] = 61012, + [SMALL_STATE(1738)] = 61090, + [SMALL_STATE(1739)] = 61168, + [SMALL_STATE(1740)] = 61246, + [SMALL_STATE(1741)] = 61324, + [SMALL_STATE(1742)] = 61402, + [SMALL_STATE(1743)] = 61480, + [SMALL_STATE(1744)] = 61558, + [SMALL_STATE(1745)] = 61597, + [SMALL_STATE(1746)] = 61672, + [SMALL_STATE(1747)] = 61747, + [SMALL_STATE(1748)] = 61822, + [SMALL_STATE(1749)] = 61861, + [SMALL_STATE(1750)] = 61906, + [SMALL_STATE(1751)] = 61981, + [SMALL_STATE(1752)] = 62056, + [SMALL_STATE(1753)] = 62131, + [SMALL_STATE(1754)] = 62206, + [SMALL_STATE(1755)] = 62281, + [SMALL_STATE(1756)] = 62356, + [SMALL_STATE(1757)] = 62401, + [SMALL_STATE(1758)] = 62440, + [SMALL_STATE(1759)] = 62515, + [SMALL_STATE(1760)] = 62590, + [SMALL_STATE(1761)] = 62665, + [SMALL_STATE(1762)] = 62704, + [SMALL_STATE(1763)] = 62779, + [SMALL_STATE(1764)] = 62854, + [SMALL_STATE(1765)] = 62929, + [SMALL_STATE(1766)] = 63004, + [SMALL_STATE(1767)] = 63079, + [SMALL_STATE(1768)] = 63154, + [SMALL_STATE(1769)] = 63193, + [SMALL_STATE(1770)] = 63232, + [SMALL_STATE(1771)] = 63271, + [SMALL_STATE(1772)] = 63310, + [SMALL_STATE(1773)] = 63385, + [SMALL_STATE(1774)] = 63460, + [SMALL_STATE(1775)] = 63499, + [SMALL_STATE(1776)] = 63538, + [SMALL_STATE(1777)] = 63613, + [SMALL_STATE(1778)] = 63658, + [SMALL_STATE(1779)] = 63733, + [SMALL_STATE(1780)] = 63808, + [SMALL_STATE(1781)] = 63883, + [SMALL_STATE(1782)] = 63958, + [SMALL_STATE(1783)] = 64033, + [SMALL_STATE(1784)] = 64074, + [SMALL_STATE(1785)] = 64149, + [SMALL_STATE(1786)] = 64224, + [SMALL_STATE(1787)] = 64299, + [SMALL_STATE(1788)] = 64374, + [SMALL_STATE(1789)] = 64449, + [SMALL_STATE(1790)] = 64524, + [SMALL_STATE(1791)] = 64599, + [SMALL_STATE(1792)] = 64674, + [SMALL_STATE(1793)] = 64713, + [SMALL_STATE(1794)] = 64788, + [SMALL_STATE(1795)] = 64863, + [SMALL_STATE(1796)] = 64938, + [SMALL_STATE(1797)] = 65009, + [SMALL_STATE(1798)] = 65084, + [SMALL_STATE(1799)] = 65159, + [SMALL_STATE(1800)] = 65234, + [SMALL_STATE(1801)] = 65309, + [SMALL_STATE(1802)] = 65354, + [SMALL_STATE(1803)] = 65393, + [SMALL_STATE(1804)] = 65468, + [SMALL_STATE(1805)] = 65543, + [SMALL_STATE(1806)] = 65618, + [SMALL_STATE(1807)] = 65693, + [SMALL_STATE(1808)] = 65768, + [SMALL_STATE(1809)] = 65843, + [SMALL_STATE(1810)] = 65918, + [SMALL_STATE(1811)] = 65993, + [SMALL_STATE(1812)] = 66068, + [SMALL_STATE(1813)] = 66143, + [SMALL_STATE(1814)] = 66218, + [SMALL_STATE(1815)] = 66293, + [SMALL_STATE(1816)] = 66368, + [SMALL_STATE(1817)] = 66443, + [SMALL_STATE(1818)] = 66518, + [SMALL_STATE(1819)] = 66593, + [SMALL_STATE(1820)] = 66668, + [SMALL_STATE(1821)] = 66743, + [SMALL_STATE(1822)] = 66818, + [SMALL_STATE(1823)] = 66893, + [SMALL_STATE(1824)] = 66968, + [SMALL_STATE(1825)] = 67043, + [SMALL_STATE(1826)] = 67118, + [SMALL_STATE(1827)] = 67193, + [SMALL_STATE(1828)] = 67268, + [SMALL_STATE(1829)] = 67307, + [SMALL_STATE(1830)] = 67382, + [SMALL_STATE(1831)] = 67421, + [SMALL_STATE(1832)] = 67496, + [SMALL_STATE(1833)] = 67535, + [SMALL_STATE(1834)] = 67580, + [SMALL_STATE(1835)] = 67655, + [SMALL_STATE(1836)] = 67700, + [SMALL_STATE(1837)] = 67775, + [SMALL_STATE(1838)] = 67814, + [SMALL_STATE(1839)] = 67889, + [SMALL_STATE(1840)] = 67964, + [SMALL_STATE(1841)] = 68003, + [SMALL_STATE(1842)] = 68078, + [SMALL_STATE(1843)] = 68153, + [SMALL_STATE(1844)] = 68228, + [SMALL_STATE(1845)] = 68303, + [SMALL_STATE(1846)] = 68378, + [SMALL_STATE(1847)] = 68453, + [SMALL_STATE(1848)] = 68528, + [SMALL_STATE(1849)] = 68603, + [SMALL_STATE(1850)] = 68678, + [SMALL_STATE(1851)] = 68717, + [SMALL_STATE(1852)] = 68758, + [SMALL_STATE(1853)] = 68833, + [SMALL_STATE(1854)] = 68908, + [SMALL_STATE(1855)] = 68983, + [SMALL_STATE(1856)] = 69022, + [SMALL_STATE(1857)] = 69097, + [SMALL_STATE(1858)] = 69172, + [SMALL_STATE(1859)] = 69247, + [SMALL_STATE(1860)] = 69322, + [SMALL_STATE(1861)] = 69397, + [SMALL_STATE(1862)] = 69472, + [SMALL_STATE(1863)] = 69547, + [SMALL_STATE(1864)] = 69622, + [SMALL_STATE(1865)] = 69661, + [SMALL_STATE(1866)] = 69702, + [SMALL_STATE(1867)] = 69777, + [SMALL_STATE(1868)] = 69852, + [SMALL_STATE(1869)] = 69891, + [SMALL_STATE(1870)] = 69966, + [SMALL_STATE(1871)] = 70005, + [SMALL_STATE(1872)] = 70080, + [SMALL_STATE(1873)] = 70125, + [SMALL_STATE(1874)] = 70200, + [SMALL_STATE(1875)] = 70275, + [SMALL_STATE(1876)] = 70314, + [SMALL_STATE(1877)] = 70389, + [SMALL_STATE(1878)] = 70464, + [SMALL_STATE(1879)] = 70503, + [SMALL_STATE(1880)] = 70578, + [SMALL_STATE(1881)] = 70617, + [SMALL_STATE(1882)] = 70692, + [SMALL_STATE(1883)] = 70767, + [SMALL_STATE(1884)] = 70842, + [SMALL_STATE(1885)] = 70917, + [SMALL_STATE(1886)] = 70992, + [SMALL_STATE(1887)] = 71067, + [SMALL_STATE(1888)] = 71106, + [SMALL_STATE(1889)] = 71181, + [SMALL_STATE(1890)] = 71252, + [SMALL_STATE(1891)] = 71327, + [SMALL_STATE(1892)] = 71366, + [SMALL_STATE(1893)] = 71441, + [SMALL_STATE(1894)] = 71516, + [SMALL_STATE(1895)] = 71591, + [SMALL_STATE(1896)] = 71666, + [SMALL_STATE(1897)] = 71741, + [SMALL_STATE(1898)] = 71816, + [SMALL_STATE(1899)] = 71861, + [SMALL_STATE(1900)] = 71936, + [SMALL_STATE(1901)] = 72011, + [SMALL_STATE(1902)] = 72086, + [SMALL_STATE(1903)] = 72161, + [SMALL_STATE(1904)] = 72236, + [SMALL_STATE(1905)] = 72311, + [SMALL_STATE(1906)] = 72386, + [SMALL_STATE(1907)] = 72461, + [SMALL_STATE(1908)] = 72536, + [SMALL_STATE(1909)] = 72575, + [SMALL_STATE(1910)] = 72614, + [SMALL_STATE(1911)] = 72689, + [SMALL_STATE(1912)] = 72728, + [SMALL_STATE(1913)] = 72767, + [SMALL_STATE(1914)] = 72842, + [SMALL_STATE(1915)] = 72881, + [SMALL_STATE(1916)] = 72956, + [SMALL_STATE(1917)] = 73031, + [SMALL_STATE(1918)] = 73106, + [SMALL_STATE(1919)] = 73181, + [SMALL_STATE(1920)] = 73220, + [SMALL_STATE(1921)] = 73259, + [SMALL_STATE(1922)] = 73334, + [SMALL_STATE(1923)] = 73409, + [SMALL_STATE(1924)] = 73484, + [SMALL_STATE(1925)] = 73559, + [SMALL_STATE(1926)] = 73634, + [SMALL_STATE(1927)] = 73709, + [SMALL_STATE(1928)] = 73784, + [SMALL_STATE(1929)] = 73855, + [SMALL_STATE(1930)] = 73926, + [SMALL_STATE(1931)] = 74001, + [SMALL_STATE(1932)] = 74040, + [SMALL_STATE(1933)] = 74115, + [SMALL_STATE(1934)] = 74154, + [SMALL_STATE(1935)] = 74229, + [SMALL_STATE(1936)] = 74304, + [SMALL_STATE(1937)] = 74379, + [SMALL_STATE(1938)] = 74454, + [SMALL_STATE(1939)] = 74493, + [SMALL_STATE(1940)] = 74568, + [SMALL_STATE(1941)] = 74643, + [SMALL_STATE(1942)] = 74718, + [SMALL_STATE(1943)] = 74757, + [SMALL_STATE(1944)] = 74796, + [SMALL_STATE(1945)] = 74835, + [SMALL_STATE(1946)] = 74910, + [SMALL_STATE(1947)] = 74949, + [SMALL_STATE(1948)] = 74988, + [SMALL_STATE(1949)] = 75063, + [SMALL_STATE(1950)] = 75102, + [SMALL_STATE(1951)] = 75141, + [SMALL_STATE(1952)] = 75216, + [SMALL_STATE(1953)] = 75291, + [SMALL_STATE(1954)] = 75366, + [SMALL_STATE(1955)] = 75441, + [SMALL_STATE(1956)] = 75480, + [SMALL_STATE(1957)] = 75555, + [SMALL_STATE(1958)] = 75630, + [SMALL_STATE(1959)] = 75705, + [SMALL_STATE(1960)] = 75780, + [SMALL_STATE(1961)] = 75819, + [SMALL_STATE(1962)] = 75890, + [SMALL_STATE(1963)] = 75965, + [SMALL_STATE(1964)] = 76004, + [SMALL_STATE(1965)] = 76043, + [SMALL_STATE(1966)] = 76118, + [SMALL_STATE(1967)] = 76193, + [SMALL_STATE(1968)] = 76232, + [SMALL_STATE(1969)] = 76271, + [SMALL_STATE(1970)] = 76346, + [SMALL_STATE(1971)] = 76385, + [SMALL_STATE(1972)] = 76460, + [SMALL_STATE(1973)] = 76499, + [SMALL_STATE(1974)] = 76538, + [SMALL_STATE(1975)] = 76609, + [SMALL_STATE(1976)] = 76648, + [SMALL_STATE(1977)] = 76691, + [SMALL_STATE(1978)] = 76730, + [SMALL_STATE(1979)] = 76805, + [SMALL_STATE(1980)] = 76880, + [SMALL_STATE(1981)] = 76919, + [SMALL_STATE(1982)] = 76958, + [SMALL_STATE(1983)] = 76997, + [SMALL_STATE(1984)] = 77072, + [SMALL_STATE(1985)] = 77147, + [SMALL_STATE(1986)] = 77222, + [SMALL_STATE(1987)] = 77297, + [SMALL_STATE(1988)] = 77372, + [SMALL_STATE(1989)] = 77443, + [SMALL_STATE(1990)] = 77482, + [SMALL_STATE(1991)] = 77521, + [SMALL_STATE(1992)] = 77560, + [SMALL_STATE(1993)] = 77599, + [SMALL_STATE(1994)] = 77638, + [SMALL_STATE(1995)] = 77677, + [SMALL_STATE(1996)] = 77748, + [SMALL_STATE(1997)] = 77823, + [SMALL_STATE(1998)] = 77898, + [SMALL_STATE(1999)] = 77973, + [SMALL_STATE(2000)] = 78048, + [SMALL_STATE(2001)] = 78123, + [SMALL_STATE(2002)] = 78194, + [SMALL_STATE(2003)] = 78235, + [SMALL_STATE(2004)] = 78310, + [SMALL_STATE(2005)] = 78349, + [SMALL_STATE(2006)] = 78424, + [SMALL_STATE(2007)] = 78499, + [SMALL_STATE(2008)] = 78538, + [SMALL_STATE(2009)] = 78577, + [SMALL_STATE(2010)] = 78652, + [SMALL_STATE(2011)] = 78691, + [SMALL_STATE(2012)] = 78766, + [SMALL_STATE(2013)] = 78841, + [SMALL_STATE(2014)] = 78916, + [SMALL_STATE(2015)] = 78991, + [SMALL_STATE(2016)] = 79066, + [SMALL_STATE(2017)] = 79105, + [SMALL_STATE(2018)] = 79180, + [SMALL_STATE(2019)] = 79219, + [SMALL_STATE(2020)] = 79294, + [SMALL_STATE(2021)] = 79333, + [SMALL_STATE(2022)] = 79408, + [SMALL_STATE(2023)] = 79447, + [SMALL_STATE(2024)] = 79486, + [SMALL_STATE(2025)] = 79561, + [SMALL_STATE(2026)] = 79636, + [SMALL_STATE(2027)] = 79711, + [SMALL_STATE(2028)] = 79786, + [SMALL_STATE(2029)] = 79857, + [SMALL_STATE(2030)] = 79896, + [SMALL_STATE(2031)] = 79935, + [SMALL_STATE(2032)] = 80010, + [SMALL_STATE(2033)] = 80085, + [SMALL_STATE(2034)] = 80124, + [SMALL_STATE(2035)] = 80163, + [SMALL_STATE(2036)] = 80238, + [SMALL_STATE(2037)] = 80313, + [SMALL_STATE(2038)] = 80352, + [SMALL_STATE(2039)] = 80391, + [SMALL_STATE(2040)] = 80430, + [SMALL_STATE(2041)] = 80469, + [SMALL_STATE(2042)] = 80508, + [SMALL_STATE(2043)] = 80547, + [SMALL_STATE(2044)] = 80586, + [SMALL_STATE(2045)] = 80661, + [SMALL_STATE(2046)] = 80736, + [SMALL_STATE(2047)] = 80811, + [SMALL_STATE(2048)] = 80849, + [SMALL_STATE(2049)] = 80919, + [SMALL_STATE(2050)] = 80957, + [SMALL_STATE(2051)] = 81027, + [SMALL_STATE(2052)] = 81097, + [SMALL_STATE(2053)] = 81135, + [SMALL_STATE(2054)] = 81205, + [SMALL_STATE(2055)] = 81249, + [SMALL_STATE(2056)] = 81319, + [SMALL_STATE(2057)] = 81359, + [SMALL_STATE(2058)] = 81427, + [SMALL_STATE(2059)] = 81463, + [SMALL_STATE(2060)] = 81499, + [SMALL_STATE(2061)] = 81537, + [SMALL_STATE(2062)] = 81575, + [SMALL_STATE(2063)] = 81640, + [SMALL_STATE(2064)] = 81705, + [SMALL_STATE(2065)] = 81770, + [SMALL_STATE(2066)] = 81835, + [SMALL_STATE(2067)] = 81900, + [SMALL_STATE(2068)] = 81965, + [SMALL_STATE(2069)] = 82030, + [SMALL_STATE(2070)] = 82095, + [SMALL_STATE(2071)] = 82160, + [SMALL_STATE(2072)] = 82225, + [SMALL_STATE(2073)] = 82290, + [SMALL_STATE(2074)] = 82355, + [SMALL_STATE(2075)] = 82420, + [SMALL_STATE(2076)] = 82485, + [SMALL_STATE(2077)] = 82550, + [SMALL_STATE(2078)] = 82615, + [SMALL_STATE(2079)] = 82680, + [SMALL_STATE(2080)] = 82745, + [SMALL_STATE(2081)] = 82810, + [SMALL_STATE(2082)] = 82875, + [SMALL_STATE(2083)] = 82940, + [SMALL_STATE(2084)] = 83005, + [SMALL_STATE(2085)] = 83070, + [SMALL_STATE(2086)] = 83135, + [SMALL_STATE(2087)] = 83200, + [SMALL_STATE(2088)] = 83265, + [SMALL_STATE(2089)] = 83330, + [SMALL_STATE(2090)] = 83395, + [SMALL_STATE(2091)] = 83460, + [SMALL_STATE(2092)] = 83525, + [SMALL_STATE(2093)] = 83590, + [SMALL_STATE(2094)] = 83655, + [SMALL_STATE(2095)] = 83720, + [SMALL_STATE(2096)] = 83785, + [SMALL_STATE(2097)] = 83850, + [SMALL_STATE(2098)] = 83915, + [SMALL_STATE(2099)] = 83980, + [SMALL_STATE(2100)] = 84045, + [SMALL_STATE(2101)] = 84110, + [SMALL_STATE(2102)] = 84175, + [SMALL_STATE(2103)] = 84240, + [SMALL_STATE(2104)] = 84305, + [SMALL_STATE(2105)] = 84370, + [SMALL_STATE(2106)] = 84435, + [SMALL_STATE(2107)] = 84500, + [SMALL_STATE(2108)] = 84565, + [SMALL_STATE(2109)] = 84630, + [SMALL_STATE(2110)] = 84695, + [SMALL_STATE(2111)] = 84760, + [SMALL_STATE(2112)] = 84825, + [SMALL_STATE(2113)] = 84890, + [SMALL_STATE(2114)] = 84955, + [SMALL_STATE(2115)] = 85020, + [SMALL_STATE(2116)] = 85085, + [SMALL_STATE(2117)] = 85150, + [SMALL_STATE(2118)] = 85215, + [SMALL_STATE(2119)] = 85280, + [SMALL_STATE(2120)] = 85345, + [SMALL_STATE(2121)] = 85410, + [SMALL_STATE(2122)] = 85475, + [SMALL_STATE(2123)] = 85540, + [SMALL_STATE(2124)] = 85605, + [SMALL_STATE(2125)] = 85670, + [SMALL_STATE(2126)] = 85735, + [SMALL_STATE(2127)] = 85800, + [SMALL_STATE(2128)] = 85865, + [SMALL_STATE(2129)] = 85930, + [SMALL_STATE(2130)] = 85995, + [SMALL_STATE(2131)] = 86060, + [SMALL_STATE(2132)] = 86125, + [SMALL_STATE(2133)] = 86190, + [SMALL_STATE(2134)] = 86255, + [SMALL_STATE(2135)] = 86320, + [SMALL_STATE(2136)] = 86385, + [SMALL_STATE(2137)] = 86450, + [SMALL_STATE(2138)] = 86515, + [SMALL_STATE(2139)] = 86580, + [SMALL_STATE(2140)] = 86645, + [SMALL_STATE(2141)] = 86710, + [SMALL_STATE(2142)] = 86775, + [SMALL_STATE(2143)] = 86840, + [SMALL_STATE(2144)] = 86905, + [SMALL_STATE(2145)] = 86970, + [SMALL_STATE(2146)] = 87035, + [SMALL_STATE(2147)] = 87100, + [SMALL_STATE(2148)] = 87165, + [SMALL_STATE(2149)] = 87230, + [SMALL_STATE(2150)] = 87295, + [SMALL_STATE(2151)] = 87360, + [SMALL_STATE(2152)] = 87425, + [SMALL_STATE(2153)] = 87490, + [SMALL_STATE(2154)] = 87555, + [SMALL_STATE(2155)] = 87620, + [SMALL_STATE(2156)] = 87685, + [SMALL_STATE(2157)] = 87750, + [SMALL_STATE(2158)] = 87815, + [SMALL_STATE(2159)] = 87880, + [SMALL_STATE(2160)] = 87945, + [SMALL_STATE(2161)] = 88010, + [SMALL_STATE(2162)] = 88075, + [SMALL_STATE(2163)] = 88140, + [SMALL_STATE(2164)] = 88205, + [SMALL_STATE(2165)] = 88270, + [SMALL_STATE(2166)] = 88335, + [SMALL_STATE(2167)] = 88400, + [SMALL_STATE(2168)] = 88465, + [SMALL_STATE(2169)] = 88530, + [SMALL_STATE(2170)] = 88595, + [SMALL_STATE(2171)] = 88660, + [SMALL_STATE(2172)] = 88725, + [SMALL_STATE(2173)] = 88790, + [SMALL_STATE(2174)] = 88855, + [SMALL_STATE(2175)] = 88920, + [SMALL_STATE(2176)] = 88985, + [SMALL_STATE(2177)] = 89050, + [SMALL_STATE(2178)] = 89115, + [SMALL_STATE(2179)] = 89180, + [SMALL_STATE(2180)] = 89245, + [SMALL_STATE(2181)] = 89310, + [SMALL_STATE(2182)] = 89375, + [SMALL_STATE(2183)] = 89416, + [SMALL_STATE(2184)] = 89481, + [SMALL_STATE(2185)] = 89546, + [SMALL_STATE(2186)] = 89611, + [SMALL_STATE(2187)] = 89676, + [SMALL_STATE(2188)] = 89741, + [SMALL_STATE(2189)] = 89806, + [SMALL_STATE(2190)] = 89871, + [SMALL_STATE(2191)] = 89933, + [SMALL_STATE(2192)] = 89995, + [SMALL_STATE(2193)] = 90057, + [SMALL_STATE(2194)] = 90119, + [SMALL_STATE(2195)] = 90181, + [SMALL_STATE(2196)] = 90243, + [SMALL_STATE(2197)] = 90305, + [SMALL_STATE(2198)] = 90367, + [SMALL_STATE(2199)] = 90429, + [SMALL_STATE(2200)] = 90491, + [SMALL_STATE(2201)] = 90553, + [SMALL_STATE(2202)] = 90615, + [SMALL_STATE(2203)] = 90677, + [SMALL_STATE(2204)] = 90739, + [SMALL_STATE(2205)] = 90801, + [SMALL_STATE(2206)] = 90863, + [SMALL_STATE(2207)] = 90925, + [SMALL_STATE(2208)] = 90987, + [SMALL_STATE(2209)] = 91049, + [SMALL_STATE(2210)] = 91111, + [SMALL_STATE(2211)] = 91173, + [SMALL_STATE(2212)] = 91235, + [SMALL_STATE(2213)] = 91299, + [SMALL_STATE(2214)] = 91337, + [SMALL_STATE(2215)] = 91371, + [SMALL_STATE(2216)] = 91405, + [SMALL_STATE(2217)] = 91467, + [SMALL_STATE(2218)] = 91503, + [SMALL_STATE(2219)] = 91565, + [SMALL_STATE(2220)] = 91627, + [SMALL_STATE(2221)] = 91689, + [SMALL_STATE(2222)] = 91750, + [SMALL_STATE(2223)] = 91811, + [SMALL_STATE(2224)] = 91872, + [SMALL_STATE(2225)] = 91933, + [SMALL_STATE(2226)] = 91968, + [SMALL_STATE(2227)] = 92029, + [SMALL_STATE(2228)] = 92090, + [SMALL_STATE(2229)] = 92126, + [SMALL_STATE(2230)] = 92164, + [SMALL_STATE(2231)] = 92217, + [SMALL_STATE(2232)] = 92272, + [SMALL_STATE(2233)] = 92325, + [SMALL_STATE(2234)] = 92378, + [SMALL_STATE(2235)] = 92433, + [SMALL_STATE(2236)] = 92488, + [SMALL_STATE(2237)] = 92543, + [SMALL_STATE(2238)] = 92598, + [SMALL_STATE(2239)] = 92653, + [SMALL_STATE(2240)] = 92708, + [SMALL_STATE(2241)] = 92763, + [SMALL_STATE(2242)] = 92818, + [SMALL_STATE(2243)] = 92873, + [SMALL_STATE(2244)] = 92928, + [SMALL_STATE(2245)] = 92983, + [SMALL_STATE(2246)] = 93038, + [SMALL_STATE(2247)] = 93093, + [SMALL_STATE(2248)] = 93148, + [SMALL_STATE(2249)] = 93203, + [SMALL_STATE(2250)] = 93258, + [SMALL_STATE(2251)] = 93313, + [SMALL_STATE(2252)] = 93368, + [SMALL_STATE(2253)] = 93401, + [SMALL_STATE(2254)] = 93456, + [SMALL_STATE(2255)] = 93509, + [SMALL_STATE(2256)] = 93545, + [SMALL_STATE(2257)] = 93581, + [SMALL_STATE(2258)] = 93619, + [SMALL_STATE(2259)] = 93653, + [SMALL_STATE(2260)] = 93686, + [SMALL_STATE(2261)] = 93715, + [SMALL_STATE(2262)] = 93748, + [SMALL_STATE(2263)] = 93793, + [SMALL_STATE(2264)] = 93826, + [SMALL_STATE(2265)] = 93859, + [SMALL_STATE(2266)] = 93890, + [SMALL_STATE(2267)] = 93921, + [SMALL_STATE(2268)] = 93950, + [SMALL_STATE(2269)] = 93995, + [SMALL_STATE(2270)] = 94029, + [SMALL_STATE(2271)] = 94059, + [SMALL_STATE(2272)] = 94087, + [SMALL_STATE(2273)] = 94118, + [SMALL_STATE(2274)] = 94156, + [SMALL_STATE(2275)] = 94194, + [SMALL_STATE(2276)] = 94224, + [SMALL_STATE(2277)] = 94252, + [SMALL_STATE(2278)] = 94280, + [SMALL_STATE(2279)] = 94308, + [SMALL_STATE(2280)] = 94336, + [SMALL_STATE(2281)] = 94361, + [SMALL_STATE(2282)] = 94386, + [SMALL_STATE(2283)] = 94421, + [SMALL_STATE(2284)] = 94456, + [SMALL_STATE(2285)] = 94483, + [SMALL_STATE(2286)] = 94506, + [SMALL_STATE(2287)] = 94533, + [SMALL_STATE(2288)] = 94560, + [SMALL_STATE(2289)] = 94587, + [SMALL_STATE(2290)] = 94607, + [SMALL_STATE(2291)] = 94633, + [SMALL_STATE(2292)] = 94652, + [SMALL_STATE(2293)] = 94671, + [SMALL_STATE(2294)] = 94701, + [SMALL_STATE(2295)] = 94717, + [SMALL_STATE(2296)] = 94747, + [SMALL_STATE(2297)] = 94771, + [SMALL_STATE(2298)] = 94801, + [SMALL_STATE(2299)] = 94831, + [SMALL_STATE(2300)] = 94861, + [SMALL_STATE(2301)] = 94883, + [SMALL_STATE(2302)] = 94913, + [SMALL_STATE(2303)] = 94935, + [SMALL_STATE(2304)] = 94965, + [SMALL_STATE(2305)] = 94981, + [SMALL_STATE(2306)] = 95011, + [SMALL_STATE(2307)] = 95041, + [SMALL_STATE(2308)] = 95063, + [SMALL_STATE(2309)] = 95093, + [SMALL_STATE(2310)] = 95123, + [SMALL_STATE(2311)] = 95149, + [SMALL_STATE(2312)] = 95172, + [SMALL_STATE(2313)] = 95195, + [SMALL_STATE(2314)] = 95218, + [SMALL_STATE(2315)] = 95239, + [SMALL_STATE(2316)] = 95265, + [SMALL_STATE(2317)] = 95291, + [SMALL_STATE(2318)] = 95317, + [SMALL_STATE(2319)] = 95343, + [SMALL_STATE(2320)] = 95369, + [SMALL_STATE(2321)] = 95395, + [SMALL_STATE(2322)] = 95413, + [SMALL_STATE(2323)] = 95431, + [SMALL_STATE(2324)] = 95457, + [SMALL_STATE(2325)] = 95483, + [SMALL_STATE(2326)] = 95509, + [SMALL_STATE(2327)] = 95533, + [SMALL_STATE(2328)] = 95555, + [SMALL_STATE(2329)] = 95577, + [SMALL_STATE(2330)] = 95601, + [SMALL_STATE(2331)] = 95623, + [SMALL_STATE(2332)] = 95645, + [SMALL_STATE(2333)] = 95671, + [SMALL_STATE(2334)] = 95697, + [SMALL_STATE(2335)] = 95719, + [SMALL_STATE(2336)] = 95745, + [SMALL_STATE(2337)] = 95771, + [SMALL_STATE(2338)] = 95797, + [SMALL_STATE(2339)] = 95823, + [SMALL_STATE(2340)] = 95849, + [SMALL_STATE(2341)] = 95875, + [SMALL_STATE(2342)] = 95901, + [SMALL_STATE(2343)] = 95927, + [SMALL_STATE(2344)] = 95953, + [SMALL_STATE(2345)] = 95969, + [SMALL_STATE(2346)] = 95985, + [SMALL_STATE(2347)] = 96011, + [SMALL_STATE(2348)] = 96037, + [SMALL_STATE(2349)] = 96059, + [SMALL_STATE(2350)] = 96085, + [SMALL_STATE(2351)] = 96105, + [SMALL_STATE(2352)] = 96131, + [SMALL_STATE(2353)] = 96157, + [SMALL_STATE(2354)] = 96183, + [SMALL_STATE(2355)] = 96209, + [SMALL_STATE(2356)] = 96235, + [SMALL_STATE(2357)] = 96261, + [SMALL_STATE(2358)] = 96287, + [SMALL_STATE(2359)] = 96313, + [SMALL_STATE(2360)] = 96339, + [SMALL_STATE(2361)] = 96365, + [SMALL_STATE(2362)] = 96391, + [SMALL_STATE(2363)] = 96417, + [SMALL_STATE(2364)] = 96443, + [SMALL_STATE(2365)] = 96465, + [SMALL_STATE(2366)] = 96491, + [SMALL_STATE(2367)] = 96517, + [SMALL_STATE(2368)] = 96539, + [SMALL_STATE(2369)] = 96565, + [SMALL_STATE(2370)] = 96581, + [SMALL_STATE(2371)] = 96599, + [SMALL_STATE(2372)] = 96617, + [SMALL_STATE(2373)] = 96635, + [SMALL_STATE(2374)] = 96653, + [SMALL_STATE(2375)] = 96669, + [SMALL_STATE(2376)] = 96685, + [SMALL_STATE(2377)] = 96701, + [SMALL_STATE(2378)] = 96727, + [SMALL_STATE(2379)] = 96753, + [SMALL_STATE(2380)] = 96779, + [SMALL_STATE(2381)] = 96802, + [SMALL_STATE(2382)] = 96825, + [SMALL_STATE(2383)] = 96846, + [SMALL_STATE(2384)] = 96869, + [SMALL_STATE(2385)] = 96892, + [SMALL_STATE(2386)] = 96915, + [SMALL_STATE(2387)] = 96938, + [SMALL_STATE(2388)] = 96959, + [SMALL_STATE(2389)] = 96982, + [SMALL_STATE(2390)] = 97003, + [SMALL_STATE(2391)] = 97026, + [SMALL_STATE(2392)] = 97039, + [SMALL_STATE(2393)] = 97062, + [SMALL_STATE(2394)] = 97085, + [SMALL_STATE(2395)] = 97108, + [SMALL_STATE(2396)] = 97129, + [SMALL_STATE(2397)] = 97152, + [SMALL_STATE(2398)] = 97175, + [SMALL_STATE(2399)] = 97198, + [SMALL_STATE(2400)] = 97221, + [SMALL_STATE(2401)] = 97244, + [SMALL_STATE(2402)] = 97267, + [SMALL_STATE(2403)] = 97290, + [SMALL_STATE(2404)] = 97309, + [SMALL_STATE(2405)] = 97332, + [SMALL_STATE(2406)] = 97353, + [SMALL_STATE(2407)] = 97376, + [SMALL_STATE(2408)] = 97399, + [SMALL_STATE(2409)] = 97422, + [SMALL_STATE(2410)] = 97443, + [SMALL_STATE(2411)] = 97464, + [SMALL_STATE(2412)] = 97481, + [SMALL_STATE(2413)] = 97504, + [SMALL_STATE(2414)] = 97521, + [SMALL_STATE(2415)] = 97538, + [SMALL_STATE(2416)] = 97561, + [SMALL_STATE(2417)] = 97584, + [SMALL_STATE(2418)] = 97607, + [SMALL_STATE(2419)] = 97630, + [SMALL_STATE(2420)] = 97651, + [SMALL_STATE(2421)] = 97670, + [SMALL_STATE(2422)] = 97693, + [SMALL_STATE(2423)] = 97716, + [SMALL_STATE(2424)] = 97739, + [SMALL_STATE(2425)] = 97758, + [SMALL_STATE(2426)] = 97781, + [SMALL_STATE(2427)] = 97802, + [SMALL_STATE(2428)] = 97823, + [SMALL_STATE(2429)] = 97846, + [SMALL_STATE(2430)] = 97869, + [SMALL_STATE(2431)] = 97892, + [SMALL_STATE(2432)] = 97909, + [SMALL_STATE(2433)] = 97932, + [SMALL_STATE(2434)] = 97955, + [SMALL_STATE(2435)] = 97970, + [SMALL_STATE(2436)] = 97993, + [SMALL_STATE(2437)] = 98016, + [SMALL_STATE(2438)] = 98033, + [SMALL_STATE(2439)] = 98050, + [SMALL_STATE(2440)] = 98067, + [SMALL_STATE(2441)] = 98084, + [SMALL_STATE(2442)] = 98099, + [SMALL_STATE(2443)] = 98114, + [SMALL_STATE(2444)] = 98129, + [SMALL_STATE(2445)] = 98150, + [SMALL_STATE(2446)] = 98171, + [SMALL_STATE(2447)] = 98184, + [SMALL_STATE(2448)] = 98207, + [SMALL_STATE(2449)] = 98226, + [SMALL_STATE(2450)] = 98247, + [SMALL_STATE(2451)] = 98270, + [SMALL_STATE(2452)] = 98293, + [SMALL_STATE(2453)] = 98311, + [SMALL_STATE(2454)] = 98331, + [SMALL_STATE(2455)] = 98351, + [SMALL_STATE(2456)] = 98365, + [SMALL_STATE(2457)] = 98381, + [SMALL_STATE(2458)] = 98401, + [SMALL_STATE(2459)] = 98417, + [SMALL_STATE(2460)] = 98435, + [SMALL_STATE(2461)] = 98455, + [SMALL_STATE(2462)] = 98473, + [SMALL_STATE(2463)] = 98493, + [SMALL_STATE(2464)] = 98509, + [SMALL_STATE(2465)] = 98529, + [SMALL_STATE(2466)] = 98547, + [SMALL_STATE(2467)] = 98565, + [SMALL_STATE(2468)] = 98581, + [SMALL_STATE(2469)] = 98601, + [SMALL_STATE(2470)] = 98619, + [SMALL_STATE(2471)] = 98635, + [SMALL_STATE(2472)] = 98655, + [SMALL_STATE(2473)] = 98675, + [SMALL_STATE(2474)] = 98691, + [SMALL_STATE(2475)] = 98707, + [SMALL_STATE(2476)] = 98727, + [SMALL_STATE(2477)] = 98741, + [SMALL_STATE(2478)] = 98761, + [SMALL_STATE(2479)] = 98779, + [SMALL_STATE(2480)] = 98795, + [SMALL_STATE(2481)] = 98813, + [SMALL_STATE(2482)] = 98831, + [SMALL_STATE(2483)] = 98849, + [SMALL_STATE(2484)] = 98869, + [SMALL_STATE(2485)] = 98885, + [SMALL_STATE(2486)] = 98905, + [SMALL_STATE(2487)] = 98921, + [SMALL_STATE(2488)] = 98933, + [SMALL_STATE(2489)] = 98947, + [SMALL_STATE(2490)] = 98963, + [SMALL_STATE(2491)] = 98981, + [SMALL_STATE(2492)] = 98997, + [SMALL_STATE(2493)] = 99015, + [SMALL_STATE(2494)] = 99033, + [SMALL_STATE(2495)] = 99053, + [SMALL_STATE(2496)] = 99073, + [SMALL_STATE(2497)] = 99093, + [SMALL_STATE(2498)] = 99107, + [SMALL_STATE(2499)] = 99119, + [SMALL_STATE(2500)] = 99131, + [SMALL_STATE(2501)] = 99145, + [SMALL_STATE(2502)] = 99165, + [SMALL_STATE(2503)] = 99185, + [SMALL_STATE(2504)] = 99205, + [SMALL_STATE(2505)] = 99225, + [SMALL_STATE(2506)] = 99243, + [SMALL_STATE(2507)] = 99259, + [SMALL_STATE(2508)] = 99279, + [SMALL_STATE(2509)] = 99297, + [SMALL_STATE(2510)] = 99317, + [SMALL_STATE(2511)] = 99335, + [SMALL_STATE(2512)] = 99355, + [SMALL_STATE(2513)] = 99375, + [SMALL_STATE(2514)] = 99389, + [SMALL_STATE(2515)] = 99409, + [SMALL_STATE(2516)] = 99425, + [SMALL_STATE(2517)] = 99445, + [SMALL_STATE(2518)] = 99463, + [SMALL_STATE(2519)] = 99477, + [SMALL_STATE(2520)] = 99489, + [SMALL_STATE(2521)] = 99507, + [SMALL_STATE(2522)] = 99521, + [SMALL_STATE(2523)] = 99537, + [SMALL_STATE(2524)] = 99557, + [SMALL_STATE(2525)] = 99571, + [SMALL_STATE(2526)] = 99591, + [SMALL_STATE(2527)] = 99609, + [SMALL_STATE(2528)] = 99629, + [SMALL_STATE(2529)] = 99649, + [SMALL_STATE(2530)] = 99666, + [SMALL_STATE(2531)] = 99683, + [SMALL_STATE(2532)] = 99700, + [SMALL_STATE(2533)] = 99717, + [SMALL_STATE(2534)] = 99734, + [SMALL_STATE(2535)] = 99745, + [SMALL_STATE(2536)] = 99762, + [SMALL_STATE(2537)] = 99779, + [SMALL_STATE(2538)] = 99796, + [SMALL_STATE(2539)] = 99813, + [SMALL_STATE(2540)] = 99830, + [SMALL_STATE(2541)] = 99847, + [SMALL_STATE(2542)] = 99864, + [SMALL_STATE(2543)] = 99881, + [SMALL_STATE(2544)] = 99898, + [SMALL_STATE(2545)] = 99915, + [SMALL_STATE(2546)] = 99932, + [SMALL_STATE(2547)] = 99949, + [SMALL_STATE(2548)] = 99966, + [SMALL_STATE(2549)] = 99983, + [SMALL_STATE(2550)] = 100000, + [SMALL_STATE(2551)] = 100017, + [SMALL_STATE(2552)] = 100034, + [SMALL_STATE(2553)] = 100051, + [SMALL_STATE(2554)] = 100068, + [SMALL_STATE(2555)] = 100085, + [SMALL_STATE(2556)] = 100102, + [SMALL_STATE(2557)] = 100119, + [SMALL_STATE(2558)] = 100136, + [SMALL_STATE(2559)] = 100153, + [SMALL_STATE(2560)] = 100170, + [SMALL_STATE(2561)] = 100185, + [SMALL_STATE(2562)] = 100202, + [SMALL_STATE(2563)] = 100217, + [SMALL_STATE(2564)] = 100234, + [SMALL_STATE(2565)] = 100251, + [SMALL_STATE(2566)] = 100268, + [SMALL_STATE(2567)] = 100285, + [SMALL_STATE(2568)] = 100302, + [SMALL_STATE(2569)] = 100319, + [SMALL_STATE(2570)] = 100336, + [SMALL_STATE(2571)] = 100353, + [SMALL_STATE(2572)] = 100370, + [SMALL_STATE(2573)] = 100387, + [SMALL_STATE(2574)] = 100404, + [SMALL_STATE(2575)] = 100421, + [SMALL_STATE(2576)] = 100438, + [SMALL_STATE(2577)] = 100455, + [SMALL_STATE(2578)] = 100472, + [SMALL_STATE(2579)] = 100489, + [SMALL_STATE(2580)] = 100506, + [SMALL_STATE(2581)] = 100523, + [SMALL_STATE(2582)] = 100540, + [SMALL_STATE(2583)] = 100555, + [SMALL_STATE(2584)] = 100572, + [SMALL_STATE(2585)] = 100591, + [SMALL_STATE(2586)] = 100608, + [SMALL_STATE(2587)] = 100625, + [SMALL_STATE(2588)] = 100642, + [SMALL_STATE(2589)] = 100661, + [SMALL_STATE(2590)] = 100678, + [SMALL_STATE(2591)] = 100695, + [SMALL_STATE(2592)] = 100712, + [SMALL_STATE(2593)] = 100729, + [SMALL_STATE(2594)] = 100748, + [SMALL_STATE(2595)] = 100765, + [SMALL_STATE(2596)] = 100782, + [SMALL_STATE(2597)] = 100795, + [SMALL_STATE(2598)] = 100812, + [SMALL_STATE(2599)] = 100829, + [SMALL_STATE(2600)] = 100844, + [SMALL_STATE(2601)] = 100861, + [SMALL_STATE(2602)] = 100878, + [SMALL_STATE(2603)] = 100895, + [SMALL_STATE(2604)] = 100912, + [SMALL_STATE(2605)] = 100931, + [SMALL_STATE(2606)] = 100946, + [SMALL_STATE(2607)] = 100963, + [SMALL_STATE(2608)] = 100980, + [SMALL_STATE(2609)] = 100997, + [SMALL_STATE(2610)] = 101014, + [SMALL_STATE(2611)] = 101029, + [SMALL_STATE(2612)] = 101046, + [SMALL_STATE(2613)] = 101063, + [SMALL_STATE(2614)] = 101080, + [SMALL_STATE(2615)] = 101097, + [SMALL_STATE(2616)] = 101112, + [SMALL_STATE(2617)] = 101123, + [SMALL_STATE(2618)] = 101140, + [SMALL_STATE(2619)] = 101157, + [SMALL_STATE(2620)] = 101170, + [SMALL_STATE(2621)] = 101185, + [SMALL_STATE(2622)] = 101202, + [SMALL_STATE(2623)] = 101219, + [SMALL_STATE(2624)] = 101236, + [SMALL_STATE(2625)] = 101253, + [SMALL_STATE(2626)] = 101270, + [SMALL_STATE(2627)] = 101287, + [SMALL_STATE(2628)] = 101304, + [SMALL_STATE(2629)] = 101319, + [SMALL_STATE(2630)] = 101336, + [SMALL_STATE(2631)] = 101353, + [SMALL_STATE(2632)] = 101370, + [SMALL_STATE(2633)] = 101387, + [SMALL_STATE(2634)] = 101404, + [SMALL_STATE(2635)] = 101421, + [SMALL_STATE(2636)] = 101438, + [SMALL_STATE(2637)] = 101455, + [SMALL_STATE(2638)] = 101470, + [SMALL_STATE(2639)] = 101487, + [SMALL_STATE(2640)] = 101504, + [SMALL_STATE(2641)] = 101521, + [SMALL_STATE(2642)] = 101538, + [SMALL_STATE(2643)] = 101555, + [SMALL_STATE(2644)] = 101570, + [SMALL_STATE(2645)] = 101587, + [SMALL_STATE(2646)] = 101602, + [SMALL_STATE(2647)] = 101619, + [SMALL_STATE(2648)] = 101636, + [SMALL_STATE(2649)] = 101651, + [SMALL_STATE(2650)] = 101666, + [SMALL_STATE(2651)] = 101683, + [SMALL_STATE(2652)] = 101700, + [SMALL_STATE(2653)] = 101711, + [SMALL_STATE(2654)] = 101728, + [SMALL_STATE(2655)] = 101743, + [SMALL_STATE(2656)] = 101760, + [SMALL_STATE(2657)] = 101777, + [SMALL_STATE(2658)] = 101796, + [SMALL_STATE(2659)] = 101809, + [SMALL_STATE(2660)] = 101826, + [SMALL_STATE(2661)] = 101843, + [SMALL_STATE(2662)] = 101860, + [SMALL_STATE(2663)] = 101871, + [SMALL_STATE(2664)] = 101888, + [SMALL_STATE(2665)] = 101905, + [SMALL_STATE(2666)] = 101922, + [SMALL_STATE(2667)] = 101939, + [SMALL_STATE(2668)] = 101958, + [SMALL_STATE(2669)] = 101975, + [SMALL_STATE(2670)] = 101992, + [SMALL_STATE(2671)] = 102009, + [SMALL_STATE(2672)] = 102024, + [SMALL_STATE(2673)] = 102043, + [SMALL_STATE(2674)] = 102060, + [SMALL_STATE(2675)] = 102077, + [SMALL_STATE(2676)] = 102094, + [SMALL_STATE(2677)] = 102111, + [SMALL_STATE(2678)] = 102128, + [SMALL_STATE(2679)] = 102145, + [SMALL_STATE(2680)] = 102162, + [SMALL_STATE(2681)] = 102177, + [SMALL_STATE(2682)] = 102192, + [SMALL_STATE(2683)] = 102203, + [SMALL_STATE(2684)] = 102220, + [SMALL_STATE(2685)] = 102239, + [SMALL_STATE(2686)] = 102256, + [SMALL_STATE(2687)] = 102273, + [SMALL_STATE(2688)] = 102290, + [SMALL_STATE(2689)] = 102307, + [SMALL_STATE(2690)] = 102324, + [SMALL_STATE(2691)] = 102339, + [SMALL_STATE(2692)] = 102356, + [SMALL_STATE(2693)] = 102373, + [SMALL_STATE(2694)] = 102390, + [SMALL_STATE(2695)] = 102407, + [SMALL_STATE(2696)] = 102426, + [SMALL_STATE(2697)] = 102443, + [SMALL_STATE(2698)] = 102460, + [SMALL_STATE(2699)] = 102477, + [SMALL_STATE(2700)] = 102494, + [SMALL_STATE(2701)] = 102511, + [SMALL_STATE(2702)] = 102528, + [SMALL_STATE(2703)] = 102545, + [SMALL_STATE(2704)] = 102562, + [SMALL_STATE(2705)] = 102579, + [SMALL_STATE(2706)] = 102596, + [SMALL_STATE(2707)] = 102613, + [SMALL_STATE(2708)] = 102630, + [SMALL_STATE(2709)] = 102647, + [SMALL_STATE(2710)] = 102664, + [SMALL_STATE(2711)] = 102681, + [SMALL_STATE(2712)] = 102698, + [SMALL_STATE(2713)] = 102715, + [SMALL_STATE(2714)] = 102732, + [SMALL_STATE(2715)] = 102745, + [SMALL_STATE(2716)] = 102762, + [SMALL_STATE(2717)] = 102779, + [SMALL_STATE(2718)] = 102796, + [SMALL_STATE(2719)] = 102813, + [SMALL_STATE(2720)] = 102830, + [SMALL_STATE(2721)] = 102845, + [SMALL_STATE(2722)] = 102862, + [SMALL_STATE(2723)] = 102879, + [SMALL_STATE(2724)] = 102896, + [SMALL_STATE(2725)] = 102909, + [SMALL_STATE(2726)] = 102926, + [SMALL_STATE(2727)] = 102943, + [SMALL_STATE(2728)] = 102960, + [SMALL_STATE(2729)] = 102977, + [SMALL_STATE(2730)] = 102994, + [SMALL_STATE(2731)] = 103011, + [SMALL_STATE(2732)] = 103028, + [SMALL_STATE(2733)] = 103045, + [SMALL_STATE(2734)] = 103062, + [SMALL_STATE(2735)] = 103079, + [SMALL_STATE(2736)] = 103096, + [SMALL_STATE(2737)] = 103113, + [SMALL_STATE(2738)] = 103130, + [SMALL_STATE(2739)] = 103147, + [SMALL_STATE(2740)] = 103164, + [SMALL_STATE(2741)] = 103181, + [SMALL_STATE(2742)] = 103198, + [SMALL_STATE(2743)] = 103215, + [SMALL_STATE(2744)] = 103230, + [SMALL_STATE(2745)] = 103247, + [SMALL_STATE(2746)] = 103264, + [SMALL_STATE(2747)] = 103281, + [SMALL_STATE(2748)] = 103298, + [SMALL_STATE(2749)] = 103315, + [SMALL_STATE(2750)] = 103332, + [SMALL_STATE(2751)] = 103349, + [SMALL_STATE(2752)] = 103366, + [SMALL_STATE(2753)] = 103383, + [SMALL_STATE(2754)] = 103398, + [SMALL_STATE(2755)] = 103415, + [SMALL_STATE(2756)] = 103432, + [SMALL_STATE(2757)] = 103449, + [SMALL_STATE(2758)] = 103464, + [SMALL_STATE(2759)] = 103479, + [SMALL_STATE(2760)] = 103494, + [SMALL_STATE(2761)] = 103511, + [SMALL_STATE(2762)] = 103528, + [SMALL_STATE(2763)] = 103545, + [SMALL_STATE(2764)] = 103562, + [SMALL_STATE(2765)] = 103579, + [SMALL_STATE(2766)] = 103596, + [SMALL_STATE(2767)] = 103613, + [SMALL_STATE(2768)] = 103630, + [SMALL_STATE(2769)] = 103647, + [SMALL_STATE(2770)] = 103664, + [SMALL_STATE(2771)] = 103681, + [SMALL_STATE(2772)] = 103698, + [SMALL_STATE(2773)] = 103715, + [SMALL_STATE(2774)] = 103732, + [SMALL_STATE(2775)] = 103747, + [SMALL_STATE(2776)] = 103764, + [SMALL_STATE(2777)] = 103781, + [SMALL_STATE(2778)] = 103798, + [SMALL_STATE(2779)] = 103813, + [SMALL_STATE(2780)] = 103830, + [SMALL_STATE(2781)] = 103847, + [SMALL_STATE(2782)] = 103862, + [SMALL_STATE(2783)] = 103877, + [SMALL_STATE(2784)] = 103892, + [SMALL_STATE(2785)] = 103909, + [SMALL_STATE(2786)] = 103926, + [SMALL_STATE(2787)] = 103943, + [SMALL_STATE(2788)] = 103962, + [SMALL_STATE(2789)] = 103979, + [SMALL_STATE(2790)] = 103996, + [SMALL_STATE(2791)] = 104013, + [SMALL_STATE(2792)] = 104030, + [SMALL_STATE(2793)] = 104047, + [SMALL_STATE(2794)] = 104064, + [SMALL_STATE(2795)] = 104079, + [SMALL_STATE(2796)] = 104096, + [SMALL_STATE(2797)] = 104113, + [SMALL_STATE(2798)] = 104128, + [SMALL_STATE(2799)] = 104143, + [SMALL_STATE(2800)] = 104158, + [SMALL_STATE(2801)] = 104175, + [SMALL_STATE(2802)] = 104192, + [SMALL_STATE(2803)] = 104209, + [SMALL_STATE(2804)] = 104226, + [SMALL_STATE(2805)] = 104243, + [SMALL_STATE(2806)] = 104260, + [SMALL_STATE(2807)] = 104277, + [SMALL_STATE(2808)] = 104294, + [SMALL_STATE(2809)] = 104311, + [SMALL_STATE(2810)] = 104328, + [SMALL_STATE(2811)] = 104345, + [SMALL_STATE(2812)] = 104362, + [SMALL_STATE(2813)] = 104379, + [SMALL_STATE(2814)] = 104396, + [SMALL_STATE(2815)] = 104413, + [SMALL_STATE(2816)] = 104430, + [SMALL_STATE(2817)] = 104445, + [SMALL_STATE(2818)] = 104462, + [SMALL_STATE(2819)] = 104475, + [SMALL_STATE(2820)] = 104488, + [SMALL_STATE(2821)] = 104501, + [SMALL_STATE(2822)] = 104518, + [SMALL_STATE(2823)] = 104535, + [SMALL_STATE(2824)] = 104554, + [SMALL_STATE(2825)] = 104571, + [SMALL_STATE(2826)] = 104588, + [SMALL_STATE(2827)] = 104605, + [SMALL_STATE(2828)] = 104622, + [SMALL_STATE(2829)] = 104639, + [SMALL_STATE(2830)] = 104656, + [SMALL_STATE(2831)] = 104670, + [SMALL_STATE(2832)] = 104684, + [SMALL_STATE(2833)] = 104698, + [SMALL_STATE(2834)] = 104712, + [SMALL_STATE(2835)] = 104726, + [SMALL_STATE(2836)] = 104740, + [SMALL_STATE(2837)] = 104754, + [SMALL_STATE(2838)] = 104768, + [SMALL_STATE(2839)] = 104782, + [SMALL_STATE(2840)] = 104796, + [SMALL_STATE(2841)] = 104810, + [SMALL_STATE(2842)] = 104824, + [SMALL_STATE(2843)] = 104838, + [SMALL_STATE(2844)] = 104852, + [SMALL_STATE(2845)] = 104866, + [SMALL_STATE(2846)] = 104880, + [SMALL_STATE(2847)] = 104892, + [SMALL_STATE(2848)] = 104906, + [SMALL_STATE(2849)] = 104920, + [SMALL_STATE(2850)] = 104930, + [SMALL_STATE(2851)] = 104944, + [SMALL_STATE(2852)] = 104958, + [SMALL_STATE(2853)] = 104968, + [SMALL_STATE(2854)] = 104982, + [SMALL_STATE(2855)] = 104996, + [SMALL_STATE(2856)] = 105010, + [SMALL_STATE(2857)] = 105022, + [SMALL_STATE(2858)] = 105034, + [SMALL_STATE(2859)] = 105044, + [SMALL_STATE(2860)] = 105058, + [SMALL_STATE(2861)] = 105072, + [SMALL_STATE(2862)] = 105086, + [SMALL_STATE(2863)] = 105100, + [SMALL_STATE(2864)] = 105114, + [SMALL_STATE(2865)] = 105128, + [SMALL_STATE(2866)] = 105142, + [SMALL_STATE(2867)] = 105156, + [SMALL_STATE(2868)] = 105170, + [SMALL_STATE(2869)] = 105182, + [SMALL_STATE(2870)] = 105194, + [SMALL_STATE(2871)] = 105208, + [SMALL_STATE(2872)] = 105220, + [SMALL_STATE(2873)] = 105234, + [SMALL_STATE(2874)] = 105248, + [SMALL_STATE(2875)] = 105262, + [SMALL_STATE(2876)] = 105276, + [SMALL_STATE(2877)] = 105290, + [SMALL_STATE(2878)] = 105304, + [SMALL_STATE(2879)] = 105318, + [SMALL_STATE(2880)] = 105332, + [SMALL_STATE(2881)] = 105344, + [SMALL_STATE(2882)] = 105358, + [SMALL_STATE(2883)] = 105370, + [SMALL_STATE(2884)] = 105384, + [SMALL_STATE(2885)] = 105398, + [SMALL_STATE(2886)] = 105410, + [SMALL_STATE(2887)] = 105422, + [SMALL_STATE(2888)] = 105436, + [SMALL_STATE(2889)] = 105450, + [SMALL_STATE(2890)] = 105464, + [SMALL_STATE(2891)] = 105478, + [SMALL_STATE(2892)] = 105488, + [SMALL_STATE(2893)] = 105502, + [SMALL_STATE(2894)] = 105516, + [SMALL_STATE(2895)] = 105530, + [SMALL_STATE(2896)] = 105544, + [SMALL_STATE(2897)] = 105558, + [SMALL_STATE(2898)] = 105572, + [SMALL_STATE(2899)] = 105586, + [SMALL_STATE(2900)] = 105598, + [SMALL_STATE(2901)] = 105610, + [SMALL_STATE(2902)] = 105624, + [SMALL_STATE(2903)] = 105638, + [SMALL_STATE(2904)] = 105652, + [SMALL_STATE(2905)] = 105666, + [SMALL_STATE(2906)] = 105680, + [SMALL_STATE(2907)] = 105694, + [SMALL_STATE(2908)] = 105708, + [SMALL_STATE(2909)] = 105720, + [SMALL_STATE(2910)] = 105732, + [SMALL_STATE(2911)] = 105746, + [SMALL_STATE(2912)] = 105756, + [SMALL_STATE(2913)] = 105770, + [SMALL_STATE(2914)] = 105782, + [SMALL_STATE(2915)] = 105796, + [SMALL_STATE(2916)] = 105810, + [SMALL_STATE(2917)] = 105824, + [SMALL_STATE(2918)] = 105836, + [SMALL_STATE(2919)] = 105850, + [SMALL_STATE(2920)] = 105864, + [SMALL_STATE(2921)] = 105876, + [SMALL_STATE(2922)] = 105888, + [SMALL_STATE(2923)] = 105902, + [SMALL_STATE(2924)] = 105916, + [SMALL_STATE(2925)] = 105930, + [SMALL_STATE(2926)] = 105942, + [SMALL_STATE(2927)] = 105954, + [SMALL_STATE(2928)] = 105968, + [SMALL_STATE(2929)] = 105980, + [SMALL_STATE(2930)] = 105994, + [SMALL_STATE(2931)] = 106008, + [SMALL_STATE(2932)] = 106022, + [SMALL_STATE(2933)] = 106036, + [SMALL_STATE(2934)] = 106050, + [SMALL_STATE(2935)] = 106062, + [SMALL_STATE(2936)] = 106076, + [SMALL_STATE(2937)] = 106088, + [SMALL_STATE(2938)] = 106100, + [SMALL_STATE(2939)] = 106112, + [SMALL_STATE(2940)] = 106124, + [SMALL_STATE(2941)] = 106136, + [SMALL_STATE(2942)] = 106148, + [SMALL_STATE(2943)] = 106160, + [SMALL_STATE(2944)] = 106172, + [SMALL_STATE(2945)] = 106184, + [SMALL_STATE(2946)] = 106196, + [SMALL_STATE(2947)] = 106206, + [SMALL_STATE(2948)] = 106220, + [SMALL_STATE(2949)] = 106234, + [SMALL_STATE(2950)] = 106248, + [SMALL_STATE(2951)] = 106262, + [SMALL_STATE(2952)] = 106276, + [SMALL_STATE(2953)] = 106288, + [SMALL_STATE(2954)] = 106300, + [SMALL_STATE(2955)] = 106314, + [SMALL_STATE(2956)] = 106328, + [SMALL_STATE(2957)] = 106342, + [SMALL_STATE(2958)] = 106356, + [SMALL_STATE(2959)] = 106370, + [SMALL_STATE(2960)] = 106380, + [SMALL_STATE(2961)] = 106390, + [SMALL_STATE(2962)] = 106400, + [SMALL_STATE(2963)] = 106414, + [SMALL_STATE(2964)] = 106428, + [SMALL_STATE(2965)] = 106440, + [SMALL_STATE(2966)] = 106454, + [SMALL_STATE(2967)] = 106466, + [SMALL_STATE(2968)] = 106478, + [SMALL_STATE(2969)] = 106492, + [SMALL_STATE(2970)] = 106506, + [SMALL_STATE(2971)] = 106520, + [SMALL_STATE(2972)] = 106532, + [SMALL_STATE(2973)] = 106546, + [SMALL_STATE(2974)] = 106558, + [SMALL_STATE(2975)] = 106572, + [SMALL_STATE(2976)] = 106586, + [SMALL_STATE(2977)] = 106598, + [SMALL_STATE(2978)] = 106610, + [SMALL_STATE(2979)] = 106624, + [SMALL_STATE(2980)] = 106638, + [SMALL_STATE(2981)] = 106652, + [SMALL_STATE(2982)] = 106664, + [SMALL_STATE(2983)] = 106678, + [SMALL_STATE(2984)] = 106692, + [SMALL_STATE(2985)] = 106704, + [SMALL_STATE(2986)] = 106716, + [SMALL_STATE(2987)] = 106730, + [SMALL_STATE(2988)] = 106744, + [SMALL_STATE(2989)] = 106756, + [SMALL_STATE(2990)] = 106770, + [SMALL_STATE(2991)] = 106780, + [SMALL_STATE(2992)] = 106792, + [SMALL_STATE(2993)] = 106804, + [SMALL_STATE(2994)] = 106818, + [SMALL_STATE(2995)] = 106830, + [SMALL_STATE(2996)] = 106842, + [SMALL_STATE(2997)] = 106854, + [SMALL_STATE(2998)] = 106868, + [SMALL_STATE(2999)] = 106880, + [SMALL_STATE(3000)] = 106892, + [SMALL_STATE(3001)] = 106904, + [SMALL_STATE(3002)] = 106918, + [SMALL_STATE(3003)] = 106930, + [SMALL_STATE(3004)] = 106942, + [SMALL_STATE(3005)] = 106952, + [SMALL_STATE(3006)] = 106964, + [SMALL_STATE(3007)] = 106978, + [SMALL_STATE(3008)] = 106992, + [SMALL_STATE(3009)] = 107002, + [SMALL_STATE(3010)] = 107012, + [SMALL_STATE(3011)] = 107026, + [SMALL_STATE(3012)] = 107040, + [SMALL_STATE(3013)] = 107052, + [SMALL_STATE(3014)] = 107066, + [SMALL_STATE(3015)] = 107080, + [SMALL_STATE(3016)] = 107094, + [SMALL_STATE(3017)] = 107106, + [SMALL_STATE(3018)] = 107120, + [SMALL_STATE(3019)] = 107134, + [SMALL_STATE(3020)] = 107148, + [SMALL_STATE(3021)] = 107160, + [SMALL_STATE(3022)] = 107172, + [SMALL_STATE(3023)] = 107184, + [SMALL_STATE(3024)] = 107196, + [SMALL_STATE(3025)] = 107208, + [SMALL_STATE(3026)] = 107222, + [SMALL_STATE(3027)] = 107236, + [SMALL_STATE(3028)] = 107248, + [SMALL_STATE(3029)] = 107260, + [SMALL_STATE(3030)] = 107274, + [SMALL_STATE(3031)] = 107286, + [SMALL_STATE(3032)] = 107298, + [SMALL_STATE(3033)] = 107308, + [SMALL_STATE(3034)] = 107322, + [SMALL_STATE(3035)] = 107336, + [SMALL_STATE(3036)] = 107348, + [SMALL_STATE(3037)] = 107362, + [SMALL_STATE(3038)] = 107374, + [SMALL_STATE(3039)] = 107386, + [SMALL_STATE(3040)] = 107398, + [SMALL_STATE(3041)] = 107412, + [SMALL_STATE(3042)] = 107424, + [SMALL_STATE(3043)] = 107436, + [SMALL_STATE(3044)] = 107448, + [SMALL_STATE(3045)] = 107462, + [SMALL_STATE(3046)] = 107474, + [SMALL_STATE(3047)] = 107486, + [SMALL_STATE(3048)] = 107500, + [SMALL_STATE(3049)] = 107514, + [SMALL_STATE(3050)] = 107528, + [SMALL_STATE(3051)] = 107542, + [SMALL_STATE(3052)] = 107556, + [SMALL_STATE(3053)] = 107570, + [SMALL_STATE(3054)] = 107582, + [SMALL_STATE(3055)] = 107596, + [SMALL_STATE(3056)] = 107610, + [SMALL_STATE(3057)] = 107624, + [SMALL_STATE(3058)] = 107638, + [SMALL_STATE(3059)] = 107650, + [SMALL_STATE(3060)] = 107662, + [SMALL_STATE(3061)] = 107674, + [SMALL_STATE(3062)] = 107688, + [SMALL_STATE(3063)] = 107702, + [SMALL_STATE(3064)] = 107714, + [SMALL_STATE(3065)] = 107728, + [SMALL_STATE(3066)] = 107740, + [SMALL_STATE(3067)] = 107752, + [SMALL_STATE(3068)] = 107764, + [SMALL_STATE(3069)] = 107776, + [SMALL_STATE(3070)] = 107788, + [SMALL_STATE(3071)] = 107800, + [SMALL_STATE(3072)] = 107812, + [SMALL_STATE(3073)] = 107826, + [SMALL_STATE(3074)] = 107838, + [SMALL_STATE(3075)] = 107850, + [SMALL_STATE(3076)] = 107864, + [SMALL_STATE(3077)] = 107878, + [SMALL_STATE(3078)] = 107890, + [SMALL_STATE(3079)] = 107904, + [SMALL_STATE(3080)] = 107918, + [SMALL_STATE(3081)] = 107932, + [SMALL_STATE(3082)] = 107944, + [SMALL_STATE(3083)] = 107958, + [SMALL_STATE(3084)] = 107972, + [SMALL_STATE(3085)] = 107984, + [SMALL_STATE(3086)] = 107998, + [SMALL_STATE(3087)] = 108008, + [SMALL_STATE(3088)] = 108022, + [SMALL_STATE(3089)] = 108034, + [SMALL_STATE(3090)] = 108048, + [SMALL_STATE(3091)] = 108060, + [SMALL_STATE(3092)] = 108074, + [SMALL_STATE(3093)] = 108086, + [SMALL_STATE(3094)] = 108100, + [SMALL_STATE(3095)] = 108112, + [SMALL_STATE(3096)] = 108126, + [SMALL_STATE(3097)] = 108140, + [SMALL_STATE(3098)] = 108154, + [SMALL_STATE(3099)] = 108168, + [SMALL_STATE(3100)] = 108182, + [SMALL_STATE(3101)] = 108196, + [SMALL_STATE(3102)] = 108210, + [SMALL_STATE(3103)] = 108224, + [SMALL_STATE(3104)] = 108238, + [SMALL_STATE(3105)] = 108252, + [SMALL_STATE(3106)] = 108266, + [SMALL_STATE(3107)] = 108280, + [SMALL_STATE(3108)] = 108292, + [SMALL_STATE(3109)] = 108303, + [SMALL_STATE(3110)] = 108314, + [SMALL_STATE(3111)] = 108325, + [SMALL_STATE(3112)] = 108336, + [SMALL_STATE(3113)] = 108347, + [SMALL_STATE(3114)] = 108358, + [SMALL_STATE(3115)] = 108369, + [SMALL_STATE(3116)] = 108380, + [SMALL_STATE(3117)] = 108391, + [SMALL_STATE(3118)] = 108402, + [SMALL_STATE(3119)] = 108413, + [SMALL_STATE(3120)] = 108424, + [SMALL_STATE(3121)] = 108435, + [SMALL_STATE(3122)] = 108446, + [SMALL_STATE(3123)] = 108457, + [SMALL_STATE(3124)] = 108468, + [SMALL_STATE(3125)] = 108479, + [SMALL_STATE(3126)] = 108490, + [SMALL_STATE(3127)] = 108501, + [SMALL_STATE(3128)] = 108512, + [SMALL_STATE(3129)] = 108523, + [SMALL_STATE(3130)] = 108534, + [SMALL_STATE(3131)] = 108545, + [SMALL_STATE(3132)] = 108556, + [SMALL_STATE(3133)] = 108567, + [SMALL_STATE(3134)] = 108578, + [SMALL_STATE(3135)] = 108589, + [SMALL_STATE(3136)] = 108600, + [SMALL_STATE(3137)] = 108611, + [SMALL_STATE(3138)] = 108622, + [SMALL_STATE(3139)] = 108633, + [SMALL_STATE(3140)] = 108644, + [SMALL_STATE(3141)] = 108655, + [SMALL_STATE(3142)] = 108666, + [SMALL_STATE(3143)] = 108677, + [SMALL_STATE(3144)] = 108688, + [SMALL_STATE(3145)] = 108699, + [SMALL_STATE(3146)] = 108710, + [SMALL_STATE(3147)] = 108721, + [SMALL_STATE(3148)] = 108732, + [SMALL_STATE(3149)] = 108741, + [SMALL_STATE(3150)] = 108752, + [SMALL_STATE(3151)] = 108763, + [SMALL_STATE(3152)] = 108774, + [SMALL_STATE(3153)] = 108783, + [SMALL_STATE(3154)] = 108794, + [SMALL_STATE(3155)] = 108805, + [SMALL_STATE(3156)] = 108816, + [SMALL_STATE(3157)] = 108827, + [SMALL_STATE(3158)] = 108838, + [SMALL_STATE(3159)] = 108849, + [SMALL_STATE(3160)] = 108860, + [SMALL_STATE(3161)] = 108871, + [SMALL_STATE(3162)] = 108882, + [SMALL_STATE(3163)] = 108893, + [SMALL_STATE(3164)] = 108904, + [SMALL_STATE(3165)] = 108915, + [SMALL_STATE(3166)] = 108926, + [SMALL_STATE(3167)] = 108937, + [SMALL_STATE(3168)] = 108948, + [SMALL_STATE(3169)] = 108959, + [SMALL_STATE(3170)] = 108970, + [SMALL_STATE(3171)] = 108981, + [SMALL_STATE(3172)] = 108992, + [SMALL_STATE(3173)] = 109003, + [SMALL_STATE(3174)] = 109012, + [SMALL_STATE(3175)] = 109023, + [SMALL_STATE(3176)] = 109034, + [SMALL_STATE(3177)] = 109045, + [SMALL_STATE(3178)] = 109056, + [SMALL_STATE(3179)] = 109067, + [SMALL_STATE(3180)] = 109078, + [SMALL_STATE(3181)] = 109089, + [SMALL_STATE(3182)] = 109100, + [SMALL_STATE(3183)] = 109111, + [SMALL_STATE(3184)] = 109122, + [SMALL_STATE(3185)] = 109131, + [SMALL_STATE(3186)] = 109142, + [SMALL_STATE(3187)] = 109153, + [SMALL_STATE(3188)] = 109164, + [SMALL_STATE(3189)] = 109175, + [SMALL_STATE(3190)] = 109186, + [SMALL_STATE(3191)] = 109197, + [SMALL_STATE(3192)] = 109208, + [SMALL_STATE(3193)] = 109219, + [SMALL_STATE(3194)] = 109230, + [SMALL_STATE(3195)] = 109241, + [SMALL_STATE(3196)] = 109252, + [SMALL_STATE(3197)] = 109263, + [SMALL_STATE(3198)] = 109274, + [SMALL_STATE(3199)] = 109285, + [SMALL_STATE(3200)] = 109296, + [SMALL_STATE(3201)] = 109307, + [SMALL_STATE(3202)] = 109318, + [SMALL_STATE(3203)] = 109329, + [SMALL_STATE(3204)] = 109340, + [SMALL_STATE(3205)] = 109351, + [SMALL_STATE(3206)] = 109362, + [SMALL_STATE(3207)] = 109373, + [SMALL_STATE(3208)] = 109384, + [SMALL_STATE(3209)] = 109393, + [SMALL_STATE(3210)] = 109404, + [SMALL_STATE(3211)] = 109415, + [SMALL_STATE(3212)] = 109426, + [SMALL_STATE(3213)] = 109437, + [SMALL_STATE(3214)] = 109448, + [SMALL_STATE(3215)] = 109459, + [SMALL_STATE(3216)] = 109470, + [SMALL_STATE(3217)] = 109481, + [SMALL_STATE(3218)] = 109492, + [SMALL_STATE(3219)] = 109503, + [SMALL_STATE(3220)] = 109514, + [SMALL_STATE(3221)] = 109525, + [SMALL_STATE(3222)] = 109534, + [SMALL_STATE(3223)] = 109545, + [SMALL_STATE(3224)] = 109556, + [SMALL_STATE(3225)] = 109567, + [SMALL_STATE(3226)] = 109578, + [SMALL_STATE(3227)] = 109589, + [SMALL_STATE(3228)] = 109600, + [SMALL_STATE(3229)] = 109611, + [SMALL_STATE(3230)] = 109622, + [SMALL_STATE(3231)] = 109633, + [SMALL_STATE(3232)] = 109644, + [SMALL_STATE(3233)] = 109655, + [SMALL_STATE(3234)] = 109666, + [SMALL_STATE(3235)] = 109677, + [SMALL_STATE(3236)] = 109688, + [SMALL_STATE(3237)] = 109699, + [SMALL_STATE(3238)] = 109710, + [SMALL_STATE(3239)] = 109721, + [SMALL_STATE(3240)] = 109732, + [SMALL_STATE(3241)] = 109743, + [SMALL_STATE(3242)] = 109754, + [SMALL_STATE(3243)] = 109765, + [SMALL_STATE(3244)] = 109776, + [SMALL_STATE(3245)] = 109787, + [SMALL_STATE(3246)] = 109798, + [SMALL_STATE(3247)] = 109809, + [SMALL_STATE(3248)] = 109820, + [SMALL_STATE(3249)] = 109831, + [SMALL_STATE(3250)] = 109842, + [SMALL_STATE(3251)] = 109853, + [SMALL_STATE(3252)] = 109864, + [SMALL_STATE(3253)] = 109875, + [SMALL_STATE(3254)] = 109884, + [SMALL_STATE(3255)] = 109895, + [SMALL_STATE(3256)] = 109906, + [SMALL_STATE(3257)] = 109917, + [SMALL_STATE(3258)] = 109928, + [SMALL_STATE(3259)] = 109939, + [SMALL_STATE(3260)] = 109950, + [SMALL_STATE(3261)] = 109961, + [SMALL_STATE(3262)] = 109972, + [SMALL_STATE(3263)] = 109983, + [SMALL_STATE(3264)] = 109994, + [SMALL_STATE(3265)] = 110005, + [SMALL_STATE(3266)] = 110016, + [SMALL_STATE(3267)] = 110027, + [SMALL_STATE(3268)] = 110036, + [SMALL_STATE(3269)] = 110047, + [SMALL_STATE(3270)] = 110058, + [SMALL_STATE(3271)] = 110069, + [SMALL_STATE(3272)] = 110078, + [SMALL_STATE(3273)] = 110089, + [SMALL_STATE(3274)] = 110098, + [SMALL_STATE(3275)] = 110107, + [SMALL_STATE(3276)] = 110118, + [SMALL_STATE(3277)] = 110129, + [SMALL_STATE(3278)] = 110140, + [SMALL_STATE(3279)] = 110151, + [SMALL_STATE(3280)] = 110162, + [SMALL_STATE(3281)] = 110173, + [SMALL_STATE(3282)] = 110184, + [SMALL_STATE(3283)] = 110195, + [SMALL_STATE(3284)] = 110206, + [SMALL_STATE(3285)] = 110217, + [SMALL_STATE(3286)] = 110226, + [SMALL_STATE(3287)] = 110237, + [SMALL_STATE(3288)] = 110248, + [SMALL_STATE(3289)] = 110259, + [SMALL_STATE(3290)] = 110270, + [SMALL_STATE(3291)] = 110281, + [SMALL_STATE(3292)] = 110292, + [SMALL_STATE(3293)] = 110303, + [SMALL_STATE(3294)] = 110314, + [SMALL_STATE(3295)] = 110325, + [SMALL_STATE(3296)] = 110336, + [SMALL_STATE(3297)] = 110347, + [SMALL_STATE(3298)] = 110358, + [SMALL_STATE(3299)] = 110369, + [SMALL_STATE(3300)] = 110380, + [SMALL_STATE(3301)] = 110391, + [SMALL_STATE(3302)] = 110402, + [SMALL_STATE(3303)] = 110413, + [SMALL_STATE(3304)] = 110424, + [SMALL_STATE(3305)] = 110435, + [SMALL_STATE(3306)] = 110446, + [SMALL_STATE(3307)] = 110457, + [SMALL_STATE(3308)] = 110468, + [SMALL_STATE(3309)] = 110479, + [SMALL_STATE(3310)] = 110490, + [SMALL_STATE(3311)] = 110501, + [SMALL_STATE(3312)] = 110512, + [SMALL_STATE(3313)] = 110523, + [SMALL_STATE(3314)] = 110534, + [SMALL_STATE(3315)] = 110542, + [SMALL_STATE(3316)] = 110550, + [SMALL_STATE(3317)] = 110558, + [SMALL_STATE(3318)] = 110566, + [SMALL_STATE(3319)] = 110574, + [SMALL_STATE(3320)] = 110582, + [SMALL_STATE(3321)] = 110590, + [SMALL_STATE(3322)] = 110598, + [SMALL_STATE(3323)] = 110606, + [SMALL_STATE(3324)] = 110614, + [SMALL_STATE(3325)] = 110622, + [SMALL_STATE(3326)] = 110630, + [SMALL_STATE(3327)] = 110638, + [SMALL_STATE(3328)] = 110646, + [SMALL_STATE(3329)] = 110654, + [SMALL_STATE(3330)] = 110662, + [SMALL_STATE(3331)] = 110670, + [SMALL_STATE(3332)] = 110678, + [SMALL_STATE(3333)] = 110686, + [SMALL_STATE(3334)] = 110694, + [SMALL_STATE(3335)] = 110702, + [SMALL_STATE(3336)] = 110710, + [SMALL_STATE(3337)] = 110718, + [SMALL_STATE(3338)] = 110726, + [SMALL_STATE(3339)] = 110734, + [SMALL_STATE(3340)] = 110742, + [SMALL_STATE(3341)] = 110750, + [SMALL_STATE(3342)] = 110758, + [SMALL_STATE(3343)] = 110766, + [SMALL_STATE(3344)] = 110774, + [SMALL_STATE(3345)] = 110782, + [SMALL_STATE(3346)] = 110790, + [SMALL_STATE(3347)] = 110798, + [SMALL_STATE(3348)] = 110806, + [SMALL_STATE(3349)] = 110814, + [SMALL_STATE(3350)] = 110822, + [SMALL_STATE(3351)] = 110830, + [SMALL_STATE(3352)] = 110838, + [SMALL_STATE(3353)] = 110846, + [SMALL_STATE(3354)] = 110854, + [SMALL_STATE(3355)] = 110862, + [SMALL_STATE(3356)] = 110870, + [SMALL_STATE(3357)] = 110878, + [SMALL_STATE(3358)] = 110886, + [SMALL_STATE(3359)] = 110894, + [SMALL_STATE(3360)] = 110902, + [SMALL_STATE(3361)] = 110910, + [SMALL_STATE(3362)] = 110918, + [SMALL_STATE(3363)] = 110926, + [SMALL_STATE(3364)] = 110934, + [SMALL_STATE(3365)] = 110942, + [SMALL_STATE(3366)] = 110950, + [SMALL_STATE(3367)] = 110958, + [SMALL_STATE(3368)] = 110966, + [SMALL_STATE(3369)] = 110974, + [SMALL_STATE(3370)] = 110982, + [SMALL_STATE(3371)] = 110990, + [SMALL_STATE(3372)] = 110998, + [SMALL_STATE(3373)] = 111006, + [SMALL_STATE(3374)] = 111014, + [SMALL_STATE(3375)] = 111022, + [SMALL_STATE(3376)] = 111030, + [SMALL_STATE(3377)] = 111038, + [SMALL_STATE(3378)] = 111046, + [SMALL_STATE(3379)] = 111054, + [SMALL_STATE(3380)] = 111062, + [SMALL_STATE(3381)] = 111070, + [SMALL_STATE(3382)] = 111078, + [SMALL_STATE(3383)] = 111086, + [SMALL_STATE(3384)] = 111094, + [SMALL_STATE(3385)] = 111102, + [SMALL_STATE(3386)] = 111110, + [SMALL_STATE(3387)] = 111118, + [SMALL_STATE(3388)] = 111126, + [SMALL_STATE(3389)] = 111134, + [SMALL_STATE(3390)] = 111142, + [SMALL_STATE(3391)] = 111150, + [SMALL_STATE(3392)] = 111158, + [SMALL_STATE(3393)] = 111166, + [SMALL_STATE(3394)] = 111174, + [SMALL_STATE(3395)] = 111182, + [SMALL_STATE(3396)] = 111190, + [SMALL_STATE(3397)] = 111198, + [SMALL_STATE(3398)] = 111206, + [SMALL_STATE(3399)] = 111214, + [SMALL_STATE(3400)] = 111222, + [SMALL_STATE(3401)] = 111230, + [SMALL_STATE(3402)] = 111238, + [SMALL_STATE(3403)] = 111246, + [SMALL_STATE(3404)] = 111254, + [SMALL_STATE(3405)] = 111262, + [SMALL_STATE(3406)] = 111270, + [SMALL_STATE(3407)] = 111278, + [SMALL_STATE(3408)] = 111286, + [SMALL_STATE(3409)] = 111294, + [SMALL_STATE(3410)] = 111302, + [SMALL_STATE(3411)] = 111310, + [SMALL_STATE(3412)] = 111318, + [SMALL_STATE(3413)] = 111326, + [SMALL_STATE(3414)] = 111334, + [SMALL_STATE(3415)] = 111342, + [SMALL_STATE(3416)] = 111350, + [SMALL_STATE(3417)] = 111358, + [SMALL_STATE(3418)] = 111366, + [SMALL_STATE(3419)] = 111374, + [SMALL_STATE(3420)] = 111382, + [SMALL_STATE(3421)] = 111390, + [SMALL_STATE(3422)] = 111398, + [SMALL_STATE(3423)] = 111406, + [SMALL_STATE(3424)] = 111414, + [SMALL_STATE(3425)] = 111422, + [SMALL_STATE(3426)] = 111430, + [SMALL_STATE(3427)] = 111438, + [SMALL_STATE(3428)] = 111446, + [SMALL_STATE(3429)] = 111454, + [SMALL_STATE(3430)] = 111462, + [SMALL_STATE(3431)] = 111470, + [SMALL_STATE(3432)] = 111478, + [SMALL_STATE(3433)] = 111486, + [SMALL_STATE(3434)] = 111494, + [SMALL_STATE(3435)] = 111502, + [SMALL_STATE(3436)] = 111510, + [SMALL_STATE(3437)] = 111518, + [SMALL_STATE(3438)] = 111526, + [SMALL_STATE(3439)] = 111534, + [SMALL_STATE(3440)] = 111542, + [SMALL_STATE(3441)] = 111550, + [SMALL_STATE(3442)] = 111558, + [SMALL_STATE(3443)] = 111566, + [SMALL_STATE(3444)] = 111574, + [SMALL_STATE(3445)] = 111582, + [SMALL_STATE(3446)] = 111590, + [SMALL_STATE(3447)] = 111598, + [SMALL_STATE(3448)] = 111606, + [SMALL_STATE(3449)] = 111614, + [SMALL_STATE(3450)] = 111622, + [SMALL_STATE(3451)] = 111630, + [SMALL_STATE(3452)] = 111638, + [SMALL_STATE(3453)] = 111646, + [SMALL_STATE(3454)] = 111654, + [SMALL_STATE(3455)] = 111662, + [SMALL_STATE(3456)] = 111670, + [SMALL_STATE(3457)] = 111678, + [SMALL_STATE(3458)] = 111686, + [SMALL_STATE(3459)] = 111694, + [SMALL_STATE(3460)] = 111702, + [SMALL_STATE(3461)] = 111710, + [SMALL_STATE(3462)] = 111718, + [SMALL_STATE(3463)] = 111726, + [SMALL_STATE(3464)] = 111734, + [SMALL_STATE(3465)] = 111742, + [SMALL_STATE(3466)] = 111750, + [SMALL_STATE(3467)] = 111758, + [SMALL_STATE(3468)] = 111766, + [SMALL_STATE(3469)] = 111774, + [SMALL_STATE(3470)] = 111782, + [SMALL_STATE(3471)] = 111790, + [SMALL_STATE(3472)] = 111798, + [SMALL_STATE(3473)] = 111806, + [SMALL_STATE(3474)] = 111814, + [SMALL_STATE(3475)] = 111822, + [SMALL_STATE(3476)] = 111830, + [SMALL_STATE(3477)] = 111838, + [SMALL_STATE(3478)] = 111846, + [SMALL_STATE(3479)] = 111854, + [SMALL_STATE(3480)] = 111862, + [SMALL_STATE(3481)] = 111870, + [SMALL_STATE(3482)] = 111878, + [SMALL_STATE(3483)] = 111886, + [SMALL_STATE(3484)] = 111894, + [SMALL_STATE(3485)] = 111902, + [SMALL_STATE(3486)] = 111910, + [SMALL_STATE(3487)] = 111918, + [SMALL_STATE(3488)] = 111926, + [SMALL_STATE(3489)] = 111934, + [SMALL_STATE(3490)] = 111942, + [SMALL_STATE(3491)] = 111950, + [SMALL_STATE(3492)] = 111958, + [SMALL_STATE(3493)] = 111966, + [SMALL_STATE(3494)] = 111974, + [SMALL_STATE(3495)] = 111982, + [SMALL_STATE(3496)] = 111990, + [SMALL_STATE(3497)] = 111998, + [SMALL_STATE(3498)] = 112006, + [SMALL_STATE(3499)] = 112014, + [SMALL_STATE(3500)] = 112022, + [SMALL_STATE(3501)] = 112030, + [SMALL_STATE(3502)] = 112038, + [SMALL_STATE(3503)] = 112046, + [SMALL_STATE(3504)] = 112054, + [SMALL_STATE(3505)] = 112062, + [SMALL_STATE(3506)] = 112070, + [SMALL_STATE(3507)] = 112078, + [SMALL_STATE(3508)] = 112086, + [SMALL_STATE(3509)] = 112094, + [SMALL_STATE(3510)] = 112102, + [SMALL_STATE(3511)] = 112110, + [SMALL_STATE(3512)] = 112118, + [SMALL_STATE(3513)] = 112126, + [SMALL_STATE(3514)] = 112134, + [SMALL_STATE(3515)] = 112142, + [SMALL_STATE(3516)] = 112150, + [SMALL_STATE(3517)] = 112158, + [SMALL_STATE(3518)] = 112166, + [SMALL_STATE(3519)] = 112174, + [SMALL_STATE(3520)] = 112182, + [SMALL_STATE(3521)] = 112190, + [SMALL_STATE(3522)] = 112198, + [SMALL_STATE(3523)] = 112206, + [SMALL_STATE(3524)] = 112214, + [SMALL_STATE(3525)] = 112222, + [SMALL_STATE(3526)] = 112230, + [SMALL_STATE(3527)] = 112238, + [SMALL_STATE(3528)] = 112246, + [SMALL_STATE(3529)] = 112254, + [SMALL_STATE(3530)] = 112262, + [SMALL_STATE(3531)] = 112270, + [SMALL_STATE(3532)] = 112278, + [SMALL_STATE(3533)] = 112286, + [SMALL_STATE(3534)] = 112294, + [SMALL_STATE(3535)] = 112302, + [SMALL_STATE(3536)] = 112310, + [SMALL_STATE(3537)] = 112318, + [SMALL_STATE(3538)] = 112326, + [SMALL_STATE(3539)] = 112334, + [SMALL_STATE(3540)] = 112342, + [SMALL_STATE(3541)] = 112350, + [SMALL_STATE(3542)] = 112358, + [SMALL_STATE(3543)] = 112366, + [SMALL_STATE(3544)] = 112374, + [SMALL_STATE(3545)] = 112382, + [SMALL_STATE(3546)] = 112390, + [SMALL_STATE(3547)] = 112398, + [SMALL_STATE(3548)] = 112406, + [SMALL_STATE(3549)] = 112414, + [SMALL_STATE(3550)] = 112422, + [SMALL_STATE(3551)] = 112430, + [SMALL_STATE(3552)] = 112438, + [SMALL_STATE(3553)] = 112446, + [SMALL_STATE(3554)] = 112454, + [SMALL_STATE(3555)] = 112462, + [SMALL_STATE(3556)] = 112470, + [SMALL_STATE(3557)] = 112478, + [SMALL_STATE(3558)] = 112486, + [SMALL_STATE(3559)] = 112494, + [SMALL_STATE(3560)] = 112502, + [SMALL_STATE(3561)] = 112510, + [SMALL_STATE(3562)] = 112518, + [SMALL_STATE(3563)] = 112526, + [SMALL_STATE(3564)] = 112534, + [SMALL_STATE(3565)] = 112542, + [SMALL_STATE(3566)] = 112550, + [SMALL_STATE(3567)] = 112558, + [SMALL_STATE(3568)] = 112566, + [SMALL_STATE(3569)] = 112574, + [SMALL_STATE(3570)] = 112582, + [SMALL_STATE(3571)] = 112590, + [SMALL_STATE(3572)] = 112598, + [SMALL_STATE(3573)] = 112606, + [SMALL_STATE(3574)] = 112614, + [SMALL_STATE(3575)] = 112622, + [SMALL_STATE(3576)] = 112630, + [SMALL_STATE(3577)] = 112638, + [SMALL_STATE(3578)] = 112646, + [SMALL_STATE(3579)] = 112654, + [SMALL_STATE(3580)] = 112662, + [SMALL_STATE(3581)] = 112670, + [SMALL_STATE(3582)] = 112678, + [SMALL_STATE(3583)] = 112686, + [SMALL_STATE(3584)] = 112694, + [SMALL_STATE(3585)] = 112702, + [SMALL_STATE(3586)] = 112710, + [SMALL_STATE(3587)] = 112718, + [SMALL_STATE(3588)] = 112726, + [SMALL_STATE(3589)] = 112734, + [SMALL_STATE(3590)] = 112742, + [SMALL_STATE(3591)] = 112750, + [SMALL_STATE(3592)] = 112758, + [SMALL_STATE(3593)] = 112766, + [SMALL_STATE(3594)] = 112774, + [SMALL_STATE(3595)] = 112782, + [SMALL_STATE(3596)] = 112790, + [SMALL_STATE(3597)] = 112798, + [SMALL_STATE(3598)] = 112806, + [SMALL_STATE(3599)] = 112814, + [SMALL_STATE(3600)] = 112822, + [SMALL_STATE(3601)] = 112830, + [SMALL_STATE(3602)] = 112838, + [SMALL_STATE(3603)] = 112846, + [SMALL_STATE(3604)] = 112854, + [SMALL_STATE(3605)] = 112862, + [SMALL_STATE(3606)] = 112870, + [SMALL_STATE(3607)] = 112878, + [SMALL_STATE(3608)] = 112886, + [SMALL_STATE(3609)] = 112894, + [SMALL_STATE(3610)] = 112902, + [SMALL_STATE(3611)] = 112910, + [SMALL_STATE(3612)] = 112918, + [SMALL_STATE(3613)] = 112926, + [SMALL_STATE(3614)] = 112934, + [SMALL_STATE(3615)] = 112942, + [SMALL_STATE(3616)] = 112950, + [SMALL_STATE(3617)] = 112958, + [SMALL_STATE(3618)] = 112966, + [SMALL_STATE(3619)] = 112974, + [SMALL_STATE(3620)] = 112982, + [SMALL_STATE(3621)] = 112990, + [SMALL_STATE(3622)] = 112998, + [SMALL_STATE(3623)] = 113006, + [SMALL_STATE(3624)] = 113014, + [SMALL_STATE(3625)] = 113022, + [SMALL_STATE(3626)] = 113030, + [SMALL_STATE(3627)] = 113038, + [SMALL_STATE(3628)] = 113046, + [SMALL_STATE(3629)] = 113054, + [SMALL_STATE(3630)] = 113062, + [SMALL_STATE(3631)] = 113070, + [SMALL_STATE(3632)] = 113078, + [SMALL_STATE(3633)] = 113086, + [SMALL_STATE(3634)] = 113094, + [SMALL_STATE(3635)] = 113102, + [SMALL_STATE(3636)] = 113110, + [SMALL_STATE(3637)] = 113118, + [SMALL_STATE(3638)] = 113126, + [SMALL_STATE(3639)] = 113134, + [SMALL_STATE(3640)] = 113142, + [SMALL_STATE(3641)] = 113150, + [SMALL_STATE(3642)] = 113158, + [SMALL_STATE(3643)] = 113166, + [SMALL_STATE(3644)] = 113174, + [SMALL_STATE(3645)] = 113182, + [SMALL_STATE(3646)] = 113190, + [SMALL_STATE(3647)] = 113198, + [SMALL_STATE(3648)] = 113206, + [SMALL_STATE(3649)] = 113214, + [SMALL_STATE(3650)] = 113222, + [SMALL_STATE(3651)] = 113230, + [SMALL_STATE(3652)] = 113238, + [SMALL_STATE(3653)] = 113246, + [SMALL_STATE(3654)] = 113254, + [SMALL_STATE(3655)] = 113262, + [SMALL_STATE(3656)] = 113270, + [SMALL_STATE(3657)] = 113278, + [SMALL_STATE(3658)] = 113286, + [SMALL_STATE(3659)] = 113294, + [SMALL_STATE(3660)] = 113302, + [SMALL_STATE(3661)] = 113310, + [SMALL_STATE(3662)] = 113318, + [SMALL_STATE(3663)] = 113326, + [SMALL_STATE(3664)] = 113334, + [SMALL_STATE(3665)] = 113342, + [SMALL_STATE(3666)] = 113350, + [SMALL_STATE(3667)] = 113358, + [SMALL_STATE(3668)] = 113366, + [SMALL_STATE(3669)] = 113374, + [SMALL_STATE(3670)] = 113382, + [SMALL_STATE(3671)] = 113390, + [SMALL_STATE(3672)] = 113398, + [SMALL_STATE(3673)] = 113406, + [SMALL_STATE(3674)] = 113414, + [SMALL_STATE(3675)] = 113422, + [SMALL_STATE(3676)] = 113430, + [SMALL_STATE(3677)] = 113438, + [SMALL_STATE(3678)] = 113446, + [SMALL_STATE(3679)] = 113454, + [SMALL_STATE(3680)] = 113462, + [SMALL_STATE(3681)] = 113470, + [SMALL_STATE(3682)] = 113478, + [SMALL_STATE(3683)] = 113486, + [SMALL_STATE(3684)] = 113494, + [SMALL_STATE(3685)] = 113502, + [SMALL_STATE(3686)] = 113510, + [SMALL_STATE(3687)] = 113518, + [SMALL_STATE(3688)] = 113526, + [SMALL_STATE(3689)] = 113534, + [SMALL_STATE(3690)] = 113542, + [SMALL_STATE(3691)] = 113550, + [SMALL_STATE(3692)] = 113558, + [SMALL_STATE(3693)] = 113566, + [SMALL_STATE(3694)] = 113574, + [SMALL_STATE(3695)] = 113582, + [SMALL_STATE(3696)] = 113590, + [SMALL_STATE(3697)] = 113598, + [SMALL_STATE(3698)] = 113606, + [SMALL_STATE(3699)] = 113614, + [SMALL_STATE(3700)] = 113622, + [SMALL_STATE(3701)] = 113630, + [SMALL_STATE(3702)] = 113638, + [SMALL_STATE(3703)] = 113646, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -175516,2681 +184263,2983 @@ 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(1478), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2379), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3283), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2924), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2909), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2925), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2951), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2394), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 18), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 18), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 0), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 0), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 0), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, 0, 0), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(218), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2152), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(201), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2908), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(141), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(142), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(142), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(143), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(143), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(145), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2217), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2443), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 7), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 7), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 15), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 15), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 30), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 30), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(216), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2886), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 4, 0, 0), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 4, 0, 0), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(174), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2894), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(379), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2870), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(913), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2152), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3141), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2443), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rhs_expression, 1, 0, 0), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rhs_expression, 1, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs_expression, 1, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lhs_expression, 1, 0, 0), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 1), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 1), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 2), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 2), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 0), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 0), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 2, 0, 4), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 2, 0, 4), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 5), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 5), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_brace, 2, 0, 0), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_brace, 2, 0, 0), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 6), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 6), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 3, 0, 10), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 3, 0, 10), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 2, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 2, 0, 0), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 3, 0, 14), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 3, 0, 14), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_trace_expression, 4, 0, 0), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_trace_expression, 4, 0, 0), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 22), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 22), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 23), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 23), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 29), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 29), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 3, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 3, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 39), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 39), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 40), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 40), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 44), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 44), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 4, 0, 0), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 4, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 6, 0, 52), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 6, 0, 52), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 6, 0, 56), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 6, 0, 56), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 5, 0, 0), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 5, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3, 0, 9), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3, 0, 9), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 9), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 9), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 20), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 20), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 37), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 37), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 34), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 34), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 72), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 72), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 42), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 42), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 31), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 31), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 94), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 94), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 95), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 95), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 96), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 96), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 97), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 97), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 98), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 98), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 86), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 86), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 99), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 99), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 49), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 49), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 100), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 100), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 101), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 101), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 102), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 102), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 8, 0, 49), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 8, 0, 49), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 103), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 103), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 104), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 104), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 105), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 105), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 70), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 70), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, 0, 106), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, 0, 106), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 41), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 41), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 57), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 57), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 73), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 73), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 64), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 64), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 80), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 80), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 93), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 93), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 107), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 107), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 108), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 108), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 86), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 86), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 99), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 99), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 109), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 109), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 49), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 49), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 110), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 110), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 111), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 111), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 112), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 112), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 113), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 113), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 114), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 114), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 57), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 57), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 73), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 73), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 64), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 64), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 80), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 80), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 93), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 93), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 86), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 86), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 99), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 99), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 109), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 109), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 115), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 115), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 116), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 116), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 73), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 73), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 80), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 80), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 93), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 93), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 86), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 86), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 99), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 99), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 109), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 109), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 93), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 93), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 99), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 99), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 109), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 109), - [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 13, 0, 109), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 13, 0, 109), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 35), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 35), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 81), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 81), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 3, 0, 3), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 3, 0, 3), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 2, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 2, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 82), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 82), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 83), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 83), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 3), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 3), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 11), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 11), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 11), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 11), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 31), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 31), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 84), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 84), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 11), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 11), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 85), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 85), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 4, 0, 16), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 4, 0, 16), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 4, 0, 0), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 4, 0, 0), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 4, 0, 0), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 4, 0, 0), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 86), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 86), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 21), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 21), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 20), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 20), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 3), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 3), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 25), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 25), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 49), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 49), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 26), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 26), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 25), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 25), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 26), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 26), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 3), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 3), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 31), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 31), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 32), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 32), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 32), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 32), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 33), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 33), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 87), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 87), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 0), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 0), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 88), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 88), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 49), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 49), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 36), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 36), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 49), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 49), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 37), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 37), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 38), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 38), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 67), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 67), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 89), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 89), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 31), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 31), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 3), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 3), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 80), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 80), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 43), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 43), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 43), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 43), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 3), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 3), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 51), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 51), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 3), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 3), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 25), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 25), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 6, 0, 90), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, 0, 90), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 31), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 31), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 47), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 47), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 48), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 48), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 31), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 31), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 49), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 49), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 50), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 50), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 47), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 47), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 48), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 48), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 51), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 51), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 0), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 53), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 53), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 6, 0, 54), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 6, 0, 54), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 55), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 55), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 41), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 41), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 57), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 57), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 3), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 3), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 58), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 58), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 59), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 59), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 60), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 60), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 3), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 3), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 62), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 62), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 63), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 63), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 64), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 64), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 31), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 31), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 65), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 65), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 66), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 66), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 31), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 31), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 31), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 31), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 49), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 49), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 67), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 67), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 68), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 68), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 49), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 49), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 66), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 66), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 69), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 69), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 33), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 33), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 70), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 70), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 41), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 41), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 57), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 57), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 71), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 71), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 73), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 73), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 72), REDUCE(sym_catch_statement, 5, 0, 72), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 72), REDUCE(sym_catch_statement, 5, 0, 72), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 91), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 91), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 92), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 92), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 0), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 41), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 41), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 64), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 64), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 57), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 57), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 73), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 73), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 80), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 80), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 3), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 3), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 74), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 74), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 75), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 75), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 76), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 76), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 78), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 78), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 93), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 93), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 8), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 8), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 19), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 19), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 79), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 79), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 64), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 64), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3386), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 41), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 41), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2884), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(861), - [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2899), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(905), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2881), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(917), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), - [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2152), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(201), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2899), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2341), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(141), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(142), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(142), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(143), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(143), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(145), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2217), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2443), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(895), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2896), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(934), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2888), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(1030), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2912), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(935), - [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2920), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(962), - [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2877), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(954), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2914), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(956), - [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(3108), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(944), - [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2890), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(968), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2902), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(952), - [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2924), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(1397), - [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(3062), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 3, 0, 0), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 3, 0, 0), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 4, 0, 0), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1, 0, 0), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(1568), - [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2864), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(1983), - [3645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2904), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2135), - [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2918), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2241), - [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1304), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2152), - [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(201), - [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2864), - [3687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2321), - [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(141), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(142), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(142), - [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(143), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(143), - [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(145), - [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2217), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2443), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2014), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2919), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2156), - [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2910), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2188), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2900), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2191), - [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2916), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 4, 0, 0), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 4, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2183), - [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2892), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 13), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 13), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2177), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2906), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 12), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 12), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 45), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 45), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 12), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 12), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 13), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 13), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 3, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 3, 0, 0), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 46), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 46), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(306), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 0), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2180), - [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2964), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2179), - [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2152), - [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(201), - [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2874), - [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2217), - [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2443), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(1952), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 3, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 3, 0, 0), - [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2192), - [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 17), SHIFT_REPEAT(2898), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 5, 0, 0), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 5, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binaryOperator, 1, 0, 0), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binaryOperator, 1, 0, 0), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2186), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 2, 0, 3), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 2, 0, 3), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2198), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 5, 0, 3), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 5, 0, 3), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 6, 0, 3), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 6, 0, 3), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), - [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 77), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3326), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 61), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 1, 0, 28), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3322), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 2, 0, 0), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_type, 2, 0, 0), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 1, 0, 0), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 1, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 3, 0, 0), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 3, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 1, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3359), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 4, 0, 0), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 4, 0, 0), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 2, 0, 0), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 3, 0, 0), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 2, 0, 28), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3240), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2419), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(1681), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), REDUCE(sym_structure_type_pair, 3, 0, 0), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), - [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(305), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2671), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 24), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2601), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2601), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 24), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(236), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 4, 0, 0), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 28), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3007), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type_pair, 3, 0, 0), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 4, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 3, 0, 0), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 6, 0, 77), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 28), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 4, 0, 0), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), - [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2114), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 2, 0, 0), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), - [5002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 3, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 5, 0, 61), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 4, 0, 0), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 27), - [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 27), SHIFT_REPEAT(2257), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 27), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 27), SHIFT_REPEAT(2245), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), SHIFT_REPEAT(1369), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 2, 0, 0), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 3, 0, 24), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_name, 1, 0, 0), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 3, 0, 24), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 5, 0, 0), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5591] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1476), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3185), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2475), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2339), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2228), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2433), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(310), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(172), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2853), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(16), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1651), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3678), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3702), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1607), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1903), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3461), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(158), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3235), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2216), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2216), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(96), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3312), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3198), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(195), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2436), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(199), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(199), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2252), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(174), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2228), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2033), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2274), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1342), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2220), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2208), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2191), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2192), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2071), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2203), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1771), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1771), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1868), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1868), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2030), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2308), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2657), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1476), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3185), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2475), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2339), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2228), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2433), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(310), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(172), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2853), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(16), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1651), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3678), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3702), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1657), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2000), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3364), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(158), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3235), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2216), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2216), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(96), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3312), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3198), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(195), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2436), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(199), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(199), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2252), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(174), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2228), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2033), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2274), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1342), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2220), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2208), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2191), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2192), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2071), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2203), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1771), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1771), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1868), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1868), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2030), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2308), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2657), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3262), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2454), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2336), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2393), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(264), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2969), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(20), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3660), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1588), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1892), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3697), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(95), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3179), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3205), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(194), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2273), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1344), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2193), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2194), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2195), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2190), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2184), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2196), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3262), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2454), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2336), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2393), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(264), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2969), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(20), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3660), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1603), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1806), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3506), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(95), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3179), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3205), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(194), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2273), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1344), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2193), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2194), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2195), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2190), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2184), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2196), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3694), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(106), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3254), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3137), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3694), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(106), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3254), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3137), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3701), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(92), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3136), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3183), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3701), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(92), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3136), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3183), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3654), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(93), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3277), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3164), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2853), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(16), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3235), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2436), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2033), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2208), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2192), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3659), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(68), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3174), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3194), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3659), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(68), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3174), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3194), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3654), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(93), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3277), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3164), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2454), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(20), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3268), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2273), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2196), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3478), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(53), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3144), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3268), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3478), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(53), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3144), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3268), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3569), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(78), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3204), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3249), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3569), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(78), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3204), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3249), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 8), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 8), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 16), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 16), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(326), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2226), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(156), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3128), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(182), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(184), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(184), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(185), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(185), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(186), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2299), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2672), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 19), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 19), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 31), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 31), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 4, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 4, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(325), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3109), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(214), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3118), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(403), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3300), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(925), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3085), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2404), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2672), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 6, 0, 55), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 6, 0, 55), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 5, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 5, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rhs_expression, 1, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rhs_expression, 1, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs_expression, 1, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lhs_expression, 1, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 1), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 1), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 2), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 2), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 40), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 40), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 0), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 0), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 2, 0, 5), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 2, 0, 5), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 6), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 6), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 39), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 39), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 44), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 44), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 7), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 7), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 3, 0, 11), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 3, 0, 11), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 4, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 4, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 6, 0, 52), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 6, 0, 52), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 2, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 2, 0, 0), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 3, 0, 15), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 3, 0, 15), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_trace_expression, 4, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_trace_expression, 4, 0, 0), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 23), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 23), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 24), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 24), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 30), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 30), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 3, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 3, 0, 0), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_brace, 2, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_brace, 2, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3, 0, 10), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3, 0, 10), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 70), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 70), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 71), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 71), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 37), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 37), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 21), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 21), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 10), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 10), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 114), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 114), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 3), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 3), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 32), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 32), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 33), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 33), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 34), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 34), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 36), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 36), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 37), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 37), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 38), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 38), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 41), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 41), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 3), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 3), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 42), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 42), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 43), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 43), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 43), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 43), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 3), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 3), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 3), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 3), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 26), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 26), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 32), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 32), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 47), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 47), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 48), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 48), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 32), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 32), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 49), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 49), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 50), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 50), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 47), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 47), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 48), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 48), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 51), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 51), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 0), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 0), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 6, 0, 53), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 6, 0, 53), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 0), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 0), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 54), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 54), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 41), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 41), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 56), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 56), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 3), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 3), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 57), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 57), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 58), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 58), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 59), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 59), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 3), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 3), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 61), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 61), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 62), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 62), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 63), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 63), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 32), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 32), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 64), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 64), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 65), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 65), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 32), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 32), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 32), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 32), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 49), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 49), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 66), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 66), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 67), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 67), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 49), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 49), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 65), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 65), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 68), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 68), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 34), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 34), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 69), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 69), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 0), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 71), REDUCE(sym_catch_statement, 5, 0, 71), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 71), REDUCE(sym_catch_statement, 5, 0, 71), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 0), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 0), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 41), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 41), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 56), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 56), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 72), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 72), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 3), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 3), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 73), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 73), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 74), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 74), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 75), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 75), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 77), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 77), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 78), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 78), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 63), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 63), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 79), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 79), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 32), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 32), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 80), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 80), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 81), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 81), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 82), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 82), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 32), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 32), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 83), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 83), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 84), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 84), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 85), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 85), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 49), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 49), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 86), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 86), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 87), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 87), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 49), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 49), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 49), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 49), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 66), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 66), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 88), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 88), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 51), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 51), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 89), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 89), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 6, 0, 90), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, 0, 90), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 41), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 41), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 56), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 56), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 72), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 72), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 91), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 91), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 92), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 92), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 63), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 63), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 79), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 79), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 93), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 93), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 32), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 32), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 94), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 94), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 95), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 95), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 96), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 96), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 97), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 97), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 98), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 98), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 85), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 85), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 99), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 99), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 49), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 49), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 100), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 100), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 101), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 101), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 102), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 102), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 8, 0, 49), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 8, 0, 49), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 103), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 103), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 104), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 104), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 105), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 105), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 69), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 69), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 106), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 106), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, 0, 107), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, 0, 107), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 41), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 41), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 56), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 56), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 72), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 72), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 63), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 63), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 79), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 79), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 93), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 93), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 108), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 108), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 109), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 109), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 85), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 85), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 99), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 99), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 110), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 110), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 49), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 49), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 111), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 111), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 112), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 112), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 113), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 113), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 115), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 115), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 56), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 56), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 72), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 72), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 63), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 63), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 79), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 79), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 93), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 93), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 85), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 85), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 99), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 99), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 110), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 110), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 116), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 116), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 117), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 117), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 72), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 72), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 79), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 79), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 93), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 93), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 85), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 85), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 99), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 99), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 110), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 110), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 93), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 93), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 99), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 99), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 110), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 110), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 13, 0, 110), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 13, 0, 110), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 2, 0, 0), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 2, 0, 0), + [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 3, 0, 3), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 3, 0, 3), + [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3, 0, 0), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 3), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 3), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 12), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 12), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 4, 0, 17), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 4, 0, 17), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 4, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 4, 0, 0), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 4, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 4, 0, 0), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 20), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 20), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 35), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 35), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 22), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 22), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 21), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 21), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 3), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 3), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 26), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 26), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 27), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 27), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 26), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 26), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 27), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 27), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 33), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 33), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), + [3450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3311), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(889), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3143), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(927), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3308), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(932), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), + [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2226), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(156), + [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(3143), + [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2404), + [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(182), + [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(184), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(184), + [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(185), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(185), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(186), + [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2299), + [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2672), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(938), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3119), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(984), + [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3113), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(986), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3135), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1051), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3130), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1001), + [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3306), + [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1002), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3131), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(997), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3116), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1004), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3276), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1000), + [3615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3123), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1006), + [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3235), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1449), + [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3251), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 3, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 3, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1, 0, 0), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1664), + [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3294), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2061), + [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3125), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2217), + [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3133), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2313), + [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1370), + [4356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2226), + [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(156), + [4362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(3294), + [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2446), + [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(182), + [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(184), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(184), + [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(185), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(185), + [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(186), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2299), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2672), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [4400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2182), + [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3134), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2229), + [4483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3129), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2266), + [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3122), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2271), + [4531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3132), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 13), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 13), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 13), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 13), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 14), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 14), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2261), + [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3117), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 45), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 45), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 4, 0, 0), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 4, 0, 0), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 14), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 14), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [4606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2255), + [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3127), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 3, 0, 0), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 3, 0, 0), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 46), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 46), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2256), + [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3206), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), + [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), + [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), + [4689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2257), + [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2226), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(156), + [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3303), + [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2299), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2672), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(256), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 3, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 3, 0, 0), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 5, 0, 0), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 5, 0, 0), + [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2269), + [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3120), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binaryOperator, 1, 0, 0), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binaryOperator, 1, 0, 0), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [4867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 2, 0, 3), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 2, 0, 3), + [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2279), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 5, 0, 3), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 5, 0, 3), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 6, 0, 3), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 6, 0, 3), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [4950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2197), + [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 60), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 76), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 1, 0, 29), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 2, 0, 0), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_type, 2, 0, 0), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 2, 0, 0), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 1, 0, 0), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 1, 0, 0), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 3, 0, 0), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 3, 0, 0), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 3, 0, 0), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 2, 0, 29), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), + [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 4, 0, 0), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 4, 0, 0), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 1, 0, 0), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2487), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 25), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2588), + [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2588), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(250), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 25), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(3004), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), + [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), REDUCE(sym_structure_type_pair, 3, 0, 0), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(1646), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 2, 0, 0), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 28), + [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 28), SHIFT_REPEAT(2323), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 3, 0, 0), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 5, 0, 60), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 4, 0, 0), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 28), + [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 28), SHIFT_REPEAT(2351), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 4, 0, 0), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 29), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 4, 0, 0), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), + [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), + [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type_pair, 3, 0, 0), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), + [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [5760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 3, 0, 0), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 29), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 4, 0, 0), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3270), + [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 6, 0, 76), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 2, 0, 0), + [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_name, 1, 0, 0), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 3, 0, 25), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 3, 0, 25), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [6153] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), }; enum ts_external_scanner_symbol_identifiers { 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) + ) ) ) ) From 590bd20e8b27e86f805738f21c84511053821f3c Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Sun, 22 Dec 2024 23:25:13 -0800 Subject: [PATCH 7/7] properly alias range expression --- grammar.js | 2 +- src/grammar.json | 9 +- src/node-types.json | 2 +- src/parser.c | 242673 +++++++++++++++++++++-------------------- 4 files changed, 121693 insertions(+), 120993 deletions(-) diff --git a/grammar.js b/grammar.js index ca56368..b7e9598 100644 --- a/grammar.js +++ b/grammar.js @@ -170,7 +170,7 @@ const haxe_grammar = { prec(2, seq( choice($._parenthesized_expression, $.integer), - $._rangeOperator, + alias($._rangeOperator, $.operator), choice($._parenthesized_expression, $.integer), ) ), diff --git a/src/grammar.json b/src/grammar.json index b93a524..2dd8f1b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -881,8 +881,13 @@ ] }, { - "type": "SYMBOL", - "name": "_rangeOperator" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_rangeOperator" + }, + "named": true, + "value": "operator" }, { "type": "CHOICE", diff --git a/src/node-types.json b/src/node-types.json index 676a694..bdfcf30 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2809,7 +2809,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "array", diff --git a/src/parser.c b/src/parser.c index 61c181f..0dd0256 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3704 -#define LARGE_STATE_COUNT 878 +#define STATE_COUNT 3710 +#define LARGE_STATE_COUNT 880 #define SYMBOL_COUNT 222 #define ALIAS_COUNT 2 #define TOKEN_COUNT 117 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 16 #define MAX_ALIAS_SEQUENCE_LENGTH 13 -#define PRODUCTION_ID_COUNT 118 +#define PRODUCTION_ID_COUNT 119 enum ts_symbol_identifiers { sym_identifier = 1, @@ -1646,104 +1646,104 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [10] = {.index = 12, .length = 2}, [11] = {.index = 14, .length = 2}, [12] = {.index = 16, .length = 2}, - [13] = {.index = 18, .length = 1}, - [14] = {.index = 19, .length = 1}, - [15] = {.index = 20, .length = 2}, - [16] = {.index = 22, .length = 2}, - [17] = {.index = 24, .length = 2}, - [18] = {.index = 26, .length = 2}, - [19] = {.index = 28, .length = 2}, - [20] = {.index = 30, .length = 2}, - [21] = {.index = 32, .length = 3}, - [22] = {.index = 35, .length = 3}, - [23] = {.index = 38, .length = 2}, - [24] = {.index = 40, .length = 2}, - [25] = {.index = 42, .length = 1}, - [26] = {.index = 43, .length = 2}, - [27] = {.index = 45, .length = 3}, - [28] = {.index = 48, .length = 2}, - [29] = {.index = 50, .length = 1}, - [30] = {.index = 51, .length = 1}, - [31] = {.index = 52, .length = 2}, - [32] = {.index = 54, .length = 1}, - [33] = {.index = 55, .length = 2}, - [35] = {.index = 57, .length = 3}, - [36] = {.index = 60, .length = 4}, - [37] = {.index = 64, .length = 4}, - [38] = {.index = 68, .length = 2}, - [39] = {.index = 70, .length = 2}, - [40] = {.index = 72, .length = 2}, - [41] = {.index = 74, .length = 2}, - [42] = {.index = 76, .length = 3}, - [43] = {.index = 79, .length = 3}, - [44] = {.index = 82, .length = 2}, - [46] = {.index = 84, .length = 1}, - [47] = {.index = 85, .length = 2}, - [48] = {.index = 87, .length = 3}, - [49] = {.index = 90, .length = 1}, - [50] = {.index = 91, .length = 2}, - [52] = {.index = 93, .length = 1}, - [53] = {.index = 94, .length = 5}, - [54] = {.index = 99, .length = 3}, - [55] = {.index = 102, .length = 2}, - [56] = {.index = 104, .length = 2}, - [57] = {.index = 106, .length = 3}, - [58] = {.index = 109, .length = 4}, - [59] = {.index = 113, .length = 3}, - [60] = {.index = 50, .length = 1}, - [61] = {.index = 116, .length = 2}, - [62] = {.index = 118, .length = 2}, - [63] = {.index = 120, .length = 2}, - [64] = {.index = 122, .length = 3}, - [65] = {.index = 125, .length = 3}, - [66] = {.index = 128, .length = 2}, - [67] = {.index = 130, .length = 3}, - [70] = {.index = 133, .length = 1}, - [71] = {.index = 134, .length = 2}, - [72] = {.index = 136, .length = 2}, - [73] = {.index = 138, .length = 4}, - [74] = {.index = 142, .length = 3}, - [75] = {.index = 145, .length = 4}, - [76] = {.index = 50, .length = 1}, - [77] = {.index = 149, .length = 2}, - [78] = {.index = 151, .length = 3}, - [79] = {.index = 154, .length = 2}, - [80] = {.index = 156, .length = 3}, - [81] = {.index = 159, .length = 4}, - [82] = {.index = 163, .length = 3}, - [83] = {.index = 166, .length = 2}, - [84] = {.index = 168, .length = 2}, - [85] = {.index = 170, .length = 2}, - [86] = {.index = 172, .length = 3}, - [87] = {.index = 175, .length = 3}, - [89] = {.index = 178, .length = 2}, - [90] = {.index = 180, .length = 3}, - [91] = {.index = 183, .length = 4}, - [92] = {.index = 187, .length = 3}, - [93] = {.index = 190, .length = 2}, - [94] = {.index = 192, .length = 4}, - [95] = {.index = 196, .length = 3}, - [96] = {.index = 199, .length = 4}, - [97] = {.index = 203, .length = 2}, - [98] = {.index = 205, .length = 3}, - [99] = {.index = 208, .length = 2}, - [100] = {.index = 210, .length = 3}, - [101] = {.index = 213, .length = 4}, - [102] = {.index = 217, .length = 3}, - [103] = {.index = 220, .length = 2}, - [104] = {.index = 222, .length = 2}, - [106] = {.index = 224, .length = 3}, - [107] = {.index = 227, .length = 4}, - [108] = {.index = 231, .length = 4}, - [109] = {.index = 235, .length = 3}, - [110] = {.index = 238, .length = 2}, - [111] = {.index = 240, .length = 4}, - [112] = {.index = 244, .length = 3}, - [113] = {.index = 247, .length = 4}, - [114] = {.index = 251, .length = 2}, - [115] = {.index = 253, .length = 3}, - [116] = {.index = 256, .length = 4}, - [117] = {.index = 260, .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[] = { @@ -2124,39 +2124,42 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = { [1] = anon_alias_sym_type_check, }, - [19] = { + [13] = { [1] = sym_operator, }, - [31] = { + [20] = { [1] = sym_operator, }, - [34] = { + [32] = { + [1] = sym_operator, + }, + [35] = { [3] = sym_identifier, }, - [45] = { + [46] = { [1] = anon_alias_sym_type, }, - [51] = { + [52] = { [4] = sym_identifier, }, - [60] = { + [61] = { [2] = sym_type, }, - [68] = { + [69] = { [3] = sym_identifier, [5] = sym_identifier, }, - [69] = { + [70] = { [5] = sym_identifier, }, - [76] = { + [77] = { [3] = sym_type, }, - [88] = { + [89] = { [4] = sym_identifier, [6] = sym_identifier, }, - [105] = { + [106] = { [5] = sym_identifier, [7] = sym_identifier, }, @@ -2170,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, @@ -2182,208 +2188,208 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 2, - [5] = 2, - [6] = 3, + [5] = 3, + [6] = 2, [7] = 3, - [8] = 3, - [9] = 3, + [8] = 8, + [9] = 9, [10] = 10, - [11] = 11, - [12] = 12, - [13] = 12, - [14] = 10, - [15] = 11, - [16] = 11, - [17] = 2, - [18] = 2, - [19] = 12, - [20] = 11, + [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] = 10, - [24] = 2, - [25] = 3, - [26] = 3, - [27] = 2, - [28] = 28, + [23] = 2, + [24] = 24, + [25] = 24, + [26] = 2, + [27] = 27, + [28] = 3, [29] = 3, - [30] = 30, - [31] = 2, - [32] = 3, + [30] = 2, + [31] = 3, + [32] = 2, [33] = 2, - [34] = 2, + [34] = 3, [35] = 3, [36] = 3, [37] = 2, - [38] = 30, - [39] = 3, + [38] = 2, + [39] = 2, [40] = 3, - [41] = 2, - [42] = 3, - [43] = 2, + [41] = 3, + [42] = 2, + [43] = 3, [44] = 2, [45] = 3, - [46] = 3, + [46] = 2, [47] = 2, - [48] = 2, + [48] = 3, [49] = 49, - [50] = 50, - [51] = 50, - [52] = 50, - [53] = 53, - [54] = 50, - [55] = 3, - [56] = 2, - [57] = 49, - [58] = 50, - [59] = 59, - [60] = 50, - [61] = 59, - [62] = 50, - [63] = 50, - [64] = 53, - [65] = 49, - [66] = 59, - [67] = 50, - [68] = 53, - [69] = 59, - [70] = 70, - [71] = 59, - [72] = 49, - [73] = 50, - [74] = 74, - [75] = 59, + [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] = 50, - [78] = 53, - [79] = 49, - [80] = 49, - [81] = 49, - [82] = 49, - [83] = 50, - [84] = 50, - [85] = 50, - [86] = 59, - [87] = 59, - [88] = 49, - [89] = 50, - [90] = 50, - [91] = 50, - [92] = 53, - [93] = 53, - [94] = 53, - [95] = 53, - [96] = 53, - [97] = 53, - [98] = 53, - [99] = 53, - [100] = 59, - [101] = 53, - [102] = 53, - [103] = 53, - [104] = 53, - [105] = 53, - [106] = 53, - [107] = 50, + [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] = 109, + [110] = 110, [111] = 111, [112] = 112, [113] = 113, - [114] = 108, - [115] = 115, - [116] = 111, + [114] = 114, + [115] = 110, + [116] = 112, [117] = 117, - [118] = 118, - [119] = 119, - [120] = 108, + [118] = 111, + [119] = 110, + [120] = 120, [121] = 121, - [122] = 112, - [123] = 113, - [124] = 115, - [125] = 117, - [126] = 118, - [127] = 127, - [128] = 128, - [129] = 119, - [130] = 108, - [131] = 128, - [132] = 121, - [133] = 127, - [134] = 112, - [135] = 113, - [136] = 117, - [137] = 115, - [138] = 118, - [139] = 128, + [122] = 122, + [123] = 114, + [124] = 108, + [125] = 122, + [126] = 117, + [127] = 109, + [128] = 110, + [129] = 120, + [130] = 121, + [131] = 131, + [132] = 131, + [133] = 113, + [134] = 108, + [135] = 117, + [136] = 109, + [137] = 113, + [138] = 114, + [139] = 122, [140] = 140, [141] = 141, - [142] = 141, + [142] = 122, [143] = 143, - [144] = 128, + [144] = 143, [145] = 145, - [146] = 145, + [146] = 141, [147] = 147, [148] = 147, [149] = 149, - [150] = 113, - [151] = 112, - [152] = 118, - [153] = 117, - [154] = 115, + [150] = 117, + [151] = 113, + [152] = 109, + [153] = 114, + [154] = 108, [155] = 155, [156] = 155, [157] = 155, [158] = 155, [159] = 155, [160] = 160, - [161] = 160, - [162] = 162, - [163] = 162, - [164] = 162, - [165] = 160, + [161] = 161, + [162] = 160, + [163] = 163, + [164] = 160, + [165] = 165, [166] = 166, - [167] = 160, - [168] = 162, - [169] = 160, - [170] = 170, - [171] = 171, - [172] = 162, + [167] = 161, + [168] = 160, + [169] = 161, + [170] = 160, + [171] = 161, + [172] = 161, [173] = 173, - [174] = 174, + [174] = 173, [175] = 175, [176] = 176, - [177] = 176, + [177] = 177, [178] = 178, - [179] = 179, - [180] = 179, + [179] = 178, + [180] = 180, [181] = 181, [182] = 182, - [183] = 176, + [183] = 183, [184] = 184, - [185] = 185, + [185] = 173, [186] = 186, [187] = 187, [188] = 188, - [189] = 176, + [189] = 189, [190] = 190, - [191] = 191, - [192] = 179, + [191] = 173, + [192] = 192, [193] = 193, [194] = 194, - [195] = 194, + [195] = 195, [196] = 196, - [197] = 197, + [197] = 173, [198] = 198, [199] = 199, [200] = 200, [201] = 201, [202] = 202, - [203] = 179, + [203] = 203, [204] = 204, [205] = 205, - [206] = 206, + [206] = 178, [207] = 207, [208] = 208, [209] = 209, @@ -2398,17 +2404,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [218] = 218, [219] = 219, [220] = 220, - [221] = 221, + [221] = 178, [222] = 222, - [223] = 176, + [223] = 223, [224] = 224, [225] = 225, - [226] = 179, - [227] = 227, + [226] = 226, + [227] = 178, [228] = 228, [229] = 229, [230] = 230, - [231] = 231, + [231] = 209, [232] = 232, [233] = 233, [234] = 234, @@ -2418,182 +2424,182 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [238] = 238, [239] = 239, [240] = 240, - [241] = 208, - [242] = 242, - [243] = 238, + [241] = 241, + [242] = 241, + [243] = 243, [244] = 244, - [245] = 242, + [245] = 245, [246] = 246, [247] = 247, - [248] = 217, + [248] = 248, [249] = 249, - [250] = 240, - [251] = 240, + [250] = 241, + [251] = 241, [252] = 252, - [253] = 242, - [254] = 254, - [255] = 227, - [256] = 240, - [257] = 257, + [253] = 249, + [254] = 241, + [255] = 255, + [256] = 241, + [257] = 241, [258] = 258, - [259] = 259, + [259] = 166, [260] = 260, [261] = 261, [262] = 262, - [263] = 263, + [263] = 241, [264] = 264, - [265] = 221, - [266] = 257, + [265] = 241, + [266] = 266, [267] = 267, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 244, - [272] = 247, - [273] = 249, - [274] = 252, - [275] = 254, + [268] = 241, + [269] = 255, + [270] = 262, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, [276] = 276, [277] = 277, - [278] = 258, - [279] = 259, - [280] = 260, - [281] = 261, - [282] = 262, - [283] = 263, - [284] = 239, - [285] = 267, - [286] = 270, - [287] = 276, - [288] = 277, - [289] = 289, - [290] = 290, - [291] = 240, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 240, - [297] = 289, - [298] = 290, - [299] = 240, - [300] = 300, - [301] = 240, - [302] = 240, - [303] = 240, - [304] = 292, - [305] = 293, - [306] = 294, - [307] = 295, - [308] = 257, - [309] = 268, - [310] = 264, - [311] = 240, - [312] = 240, - [313] = 257, - [314] = 268, - [315] = 257, - [316] = 268, - [317] = 242, - [318] = 171, - [319] = 240, - [320] = 240, - [321] = 321, - [322] = 240, - [323] = 240, - [324] = 166, - [325] = 214, - [326] = 214, - [327] = 242, - [328] = 268, - [329] = 200, - [330] = 240, - [331] = 240, - [332] = 332, - [333] = 333, - [334] = 269, - [335] = 240, - [336] = 300, - [337] = 190, - [338] = 207, - [339] = 222, - [340] = 175, - [341] = 173, - [342] = 181, - [343] = 213, - [344] = 188, - [345] = 224, - [346] = 178, - [347] = 209, - [348] = 225, - [349] = 208, - [350] = 193, - [351] = 238, - [352] = 218, - [353] = 228, - [354] = 229, - [355] = 230, - [356] = 356, - [357] = 227, - [358] = 235, - [359] = 221, - [360] = 174, - [361] = 187, - [362] = 197, - [363] = 182, - [364] = 231, - [365] = 184, - [366] = 212, - [367] = 367, - [368] = 215, - [369] = 185, - [370] = 186, - [371] = 191, - [372] = 199, - [373] = 219, - [374] = 232, - [375] = 233, - [376] = 196, - [377] = 198, - [378] = 234, - [379] = 220, - [380] = 201, - [381] = 236, - [382] = 237, - [383] = 216, - [384] = 211, - [385] = 202, - [386] = 204, - [387] = 205, - [388] = 206, - [389] = 210, - [390] = 390, - [391] = 391, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [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] = 228, + [342] = 234, + [343] = 214, + [344] = 223, + [345] = 229, + [346] = 230, + [347] = 226, + [348] = 233, + [349] = 237, + [350] = 222, + [351] = 189, + [352] = 352, + [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] = 356, + [395] = 214, [396] = 396, - [397] = 397, - [398] = 393, - [399] = 392, + [397] = 175, + [398] = 398, + [399] = 398, [400] = 400, - [401] = 221, - [402] = 208, - [403] = 214, - [404] = 394, - [405] = 394, - [406] = 227, - [407] = 238, - [408] = 392, - [409] = 394, - [410] = 410, - [411] = 411, - [412] = 392, + [401] = 401, + [402] = 402, + [403] = 201, + [404] = 404, + [405] = 405, + [406] = 396, + [407] = 407, + [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, @@ -2723,9 +2729,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [543] = 543, [544] = 544, [545] = 545, - [546] = 546, + [546] = 392, [547] = 547, - [548] = 548, + [548] = 340, [549] = 549, [550] = 550, [551] = 551, @@ -2734,33 +2740,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [554] = 554, [555] = 555, [556] = 556, - [557] = 557, + [557] = 547, [558] = 558, [559] = 559, [560] = 560, [561] = 561, [562] = 562, [563] = 563, - [564] = 564, + [564] = 547, [565] = 565, [566] = 566, [567] = 567, - [568] = 390, + [568] = 568, [569] = 569, - [570] = 367, - [571] = 571, - [572] = 569, + [570] = 547, + [571] = 392, + [572] = 572, [573] = 573, [574] = 574, [575] = 575, [576] = 576, [577] = 577, - [578] = 569, + [578] = 578, [579] = 579, [580] = 580, [581] = 581, - [582] = 569, - [583] = 390, + [582] = 582, + [583] = 583, [584] = 584, [585] = 585, [586] = 586, @@ -2768,26 +2774,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [588] = 588, [589] = 589, [590] = 590, - [591] = 591, + [591] = 392, [592] = 592, [593] = 593, - [594] = 390, + [594] = 417, [595] = 595, [596] = 596, [597] = 597, - [598] = 598, + [598] = 417, [599] = 595, [600] = 596, [601] = 597, - [602] = 598, + [602] = 417, [603] = 595, - [604] = 596, - [605] = 598, + [604] = 597, + [605] = 605, [606] = 606, [607] = 607, - [608] = 595, - [609] = 596, - [610] = 598, + [608] = 608, + [609] = 595, + [610] = 597, [611] = 611, [612] = 612, [613] = 613, @@ -2795,532 +2801,532 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [615] = 615, [616] = 616, [617] = 617, - [618] = 411, - [619] = 413, - [620] = 410, - [621] = 391, - [622] = 396, - [623] = 595, - [624] = 596, - [625] = 598, - [626] = 595, - [627] = 390, - [628] = 414, - [629] = 410, - [630] = 598, - [631] = 596, - [632] = 597, - [633] = 595, - [634] = 400, - [635] = 413, - [636] = 390, - [637] = 397, - [638] = 598, - [639] = 400, - [640] = 596, - [641] = 413, - [642] = 410, + [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] = 596, - [645] = 598, - [646] = 597, - [647] = 400, - [648] = 530, - [649] = 470, - [650] = 471, - [651] = 472, - [652] = 431, - [653] = 473, - [654] = 452, - [655] = 474, - [656] = 475, - [657] = 453, - [658] = 476, - [659] = 477, - [660] = 478, - [661] = 454, - [662] = 479, - [663] = 480, - [664] = 455, - [665] = 481, - [666] = 482, - [667] = 483, - [668] = 484, - [669] = 485, - [670] = 400, - [671] = 486, - [672] = 456, - [673] = 487, - [674] = 488, - [675] = 489, - [676] = 490, - [677] = 491, - [678] = 492, - [679] = 493, - [680] = 494, - [681] = 584, - [682] = 495, - [683] = 496, - [684] = 497, - [685] = 498, - [686] = 499, - [687] = 500, - [688] = 501, - [689] = 502, - [690] = 503, - [691] = 504, - [692] = 505, - [693] = 506, - [694] = 507, - [695] = 508, - [696] = 509, - [697] = 510, - [698] = 511, - [699] = 585, - [700] = 512, - [701] = 571, - [702] = 513, - [703] = 514, - [704] = 515, - [705] = 516, - [706] = 517, - [707] = 518, - [708] = 519, - [709] = 573, - [710] = 520, - [711] = 586, - [712] = 521, - [713] = 522, - [714] = 523, - [715] = 524, - [716] = 525, - [717] = 526, - [718] = 527, - [719] = 528, - [720] = 529, - [721] = 531, - [722] = 532, - [723] = 533, - [724] = 534, - [725] = 535, - [726] = 536, - [727] = 537, - [728] = 587, - [729] = 538, - [730] = 539, - [731] = 540, - [732] = 541, - [733] = 588, - [734] = 542, - [735] = 543, - [736] = 544, - [737] = 545, - [738] = 546, - [739] = 415, - [740] = 547, - [741] = 548, - [742] = 549, - [743] = 450, - [744] = 551, - [745] = 552, - [746] = 553, - [747] = 554, - [748] = 555, - [749] = 556, - [750] = 557, - [751] = 558, - [752] = 559, - [753] = 560, - [754] = 561, - [755] = 562, - [756] = 563, - [757] = 564, - [758] = 565, - [759] = 566, - [760] = 567, - [761] = 589, - [762] = 574, - [763] = 590, - [764] = 591, - [765] = 580, - [766] = 426, - [767] = 592, - [768] = 593, - [769] = 457, - [770] = 458, - [771] = 413, - [772] = 575, - [773] = 606, - [774] = 607, - [775] = 427, - [776] = 428, - [777] = 429, - [778] = 430, - [779] = 611, - [780] = 612, - [781] = 613, - [782] = 614, - [783] = 615, - [784] = 432, - [785] = 616, - [786] = 416, - [787] = 424, - [788] = 451, - [789] = 459, - [790] = 410, - [791] = 460, - [792] = 400, - [793] = 425, - [794] = 461, - [795] = 434, - [796] = 435, - [797] = 417, - [798] = 576, - [799] = 418, - [800] = 617, - [801] = 419, - [802] = 436, - [803] = 420, - [804] = 437, - [805] = 438, - [806] = 421, - [807] = 577, - [808] = 579, - [809] = 462, - [810] = 463, - [811] = 464, - [812] = 465, - [813] = 466, - [814] = 467, - [815] = 413, - [816] = 439, - [817] = 440, - [818] = 441, - [819] = 442, - [820] = 443, - [821] = 581, - [822] = 444, - [823] = 445, - [824] = 422, - [825] = 446, - [826] = 447, - [827] = 410, - [828] = 448, - [829] = 449, - [830] = 468, - [831] = 433, - [832] = 423, - [833] = 469, - [834] = 550, - [835] = 835, - [836] = 835, + [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] = 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] = 839, - [841] = 117, - [842] = 112, - [843] = 118, + [840] = 840, + [841] = 840, + [842] = 839, + [843] = 109, [844] = 113, - [845] = 115, + [845] = 114, [846] = 108, - [847] = 111, - [848] = 118, - [849] = 112, - [850] = 115, - [851] = 117, - [852] = 113, - [853] = 108, - [854] = 119, - [855] = 128, - [856] = 127, - [857] = 112, - [858] = 113, - [859] = 115, - [860] = 121, - [861] = 117, - [862] = 118, - [863] = 863, - [864] = 128, - [865] = 108, - [866] = 108, - [867] = 145, - [868] = 111, - [869] = 111, - [870] = 113, - [871] = 112, - [872] = 147, - [873] = 117, - [874] = 118, - [875] = 115, - [876] = 876, - [877] = 877, - [878] = 108, - [879] = 111, - [880] = 111, - [881] = 108, - [882] = 108, - [883] = 108, - [884] = 367, - [885] = 111, - [886] = 111, - [887] = 108, - [888] = 111, - [889] = 214, - [890] = 112, - [891] = 115, - [892] = 117, - [893] = 113, - [894] = 118, - [895] = 113, - [896] = 118, - [897] = 113, - [898] = 117, - [899] = 115, - [900] = 112, + [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] = 117, - [903] = 118, - [904] = 118, - [905] = 112, - [906] = 115, - [907] = 117, - [908] = 115, - [909] = 112, - [910] = 113, - [911] = 115, - [912] = 117, - [913] = 118, - [914] = 112, - [915] = 112, - [916] = 113, - [917] = 115, - [918] = 112, - [919] = 117, - [920] = 118, - [921] = 118, - [922] = 117, - [923] = 115, - [924] = 113, - [925] = 392, - [926] = 394, - [927] = 214, - [928] = 393, - [929] = 117, - [930] = 113, - [931] = 115, - [932] = 394, - [933] = 392, - [934] = 115, - [935] = 113, - [936] = 117, - [937] = 118, - [938] = 214, - [939] = 112, - [940] = 112, - [941] = 118, - [942] = 392, - [943] = 943, - [944] = 569, - [945] = 569, - [946] = 367, - [947] = 215, - [948] = 188, - [949] = 596, - [950] = 598, - [951] = 390, - [952] = 595, + [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] = 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] = 596, - [955] = 598, + [954] = 392, + [955] = 417, [956] = 595, - [957] = 597, - [958] = 390, - [959] = 413, - [960] = 595, - [961] = 598, - [962] = 596, - [963] = 400, - [964] = 569, - [965] = 410, + [957] = 596, + [958] = 417, + [959] = 595, + [960] = 413, + [961] = 597, + [962] = 402, + [963] = 547, + [964] = 547, + [965] = 417, [966] = 596, - [967] = 597, - [968] = 569, + [967] = 392, + [968] = 407, [969] = 595, - [970] = 598, - [971] = 400, - [972] = 413, - [973] = 410, - [974] = 974, + [970] = 417, + [971] = 595, + [972] = 597, + [973] = 413, + [974] = 407, [975] = 975, - [976] = 127, - [977] = 127, - [978] = 119, - [979] = 128, - [980] = 127, - [981] = 128, - [982] = 119, - [983] = 127, - [984] = 214, - [985] = 128, - [986] = 214, - [987] = 128, - [988] = 174, - [989] = 367, - [990] = 119, - [991] = 204, - [992] = 145, - [993] = 199, - [994] = 128, - [995] = 187, - [996] = 147, - [997] = 214, - [998] = 215, - [999] = 127, - [1000] = 214, - [1001] = 214, - [1002] = 214, - [1003] = 367, - [1004] = 214, - [1005] = 215, - [1006] = 214, - [1007] = 367, - [1008] = 1008, - [1009] = 128, - [1010] = 1010, + [976] = 402, + [977] = 977, + [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] = 1011, - [1013] = 1013, + [1012] = 1012, + [1013] = 176, [1014] = 1014, - [1015] = 128, + [1015] = 1011, [1016] = 1016, - [1017] = 1014, - [1018] = 1018, - [1019] = 1018, + [1017] = 1017, + [1018] = 237, + [1019] = 1019, [1020] = 1020, - [1021] = 215, - [1022] = 127, - [1023] = 128, - [1024] = 119, - [1025] = 174, - [1026] = 199, - [1027] = 1008, - [1028] = 128, - [1029] = 127, - [1030] = 187, - [1031] = 1013, - [1032] = 174, - [1033] = 204, - [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 367, - [1039] = 119, - [1040] = 215, - [1041] = 199, - [1042] = 1035, - [1043] = 1035, - [1044] = 1034, - [1045] = 1014, + [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] = 121, + [1042] = 176, + [1043] = 192, + [1044] = 122, + [1045] = 1045, [1046] = 1046, - [1047] = 1047, - [1048] = 127, - [1049] = 1049, - [1050] = 119, - [1051] = 214, - [1052] = 127, - [1053] = 1014, - [1054] = 1035, - [1055] = 1008, - [1056] = 127, - [1057] = 1046, - [1058] = 119, - [1059] = 1047, - [1060] = 1008, - [1061] = 1037, - [1062] = 127, - [1063] = 187, - [1064] = 119, - [1065] = 1035, - [1066] = 1034, - [1067] = 127, - [1068] = 1034, - [1069] = 127, - [1070] = 1036, - [1071] = 1010, - [1072] = 204, - [1073] = 1049, - [1074] = 127, - [1075] = 1008, - [1076] = 1016, + [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] = 1078, - [1079] = 1034, - [1080] = 1020, - [1081] = 1078, - [1082] = 1082, - [1083] = 215, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 115, - [1088] = 145, + [1078] = 1020, + [1079] = 1028, + [1080] = 1060, + [1081] = 1081, + [1082] = 1023, + [1083] = 1081, + [1084] = 1066, + [1085] = 120, + [1086] = 121, + [1087] = 1087, + [1088] = 1088, [1089] = 1089, - [1090] = 1090, - [1091] = 1089, - [1092] = 1085, - [1093] = 1093, - [1094] = 367, - [1095] = 1093, - [1096] = 1096, - [1097] = 117, - [1098] = 1090, - [1099] = 127, - [1100] = 1084, - [1101] = 1101, - [1102] = 1102, - [1103] = 1101, - [1104] = 112, + [1090] = 141, + [1091] = 1091, + [1092] = 1092, + [1093] = 147, + [1094] = 113, + [1095] = 1095, + [1096] = 1088, + [1097] = 1097, + [1098] = 1098, + [1099] = 1089, + [1100] = 340, + [1101] = 114, + [1102] = 108, + [1103] = 121, + [1104] = 1091, [1105] = 1105, - [1106] = 1105, - [1107] = 118, - [1108] = 1108, + [1106] = 109, + [1107] = 1095, + [1108] = 1105, [1109] = 1109, - [1110] = 147, - [1111] = 1109, - [1112] = 1086, - [1113] = 113, - [1114] = 119, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, + [1110] = 1110, + [1111] = 120, + [1112] = 1092, + [1113] = 1087, + [1114] = 1114, + [1115] = 1114, + [1116] = 1110, + [1117] = 117, [1118] = 1118, - [1119] = 1119, + [1119] = 205, [1120] = 1120, [1121] = 1121, - [1122] = 1115, + [1122] = 1122, [1123] = 1123, [1124] = 1124, [1125] = 1125, [1126] = 1126, [1127] = 1127, - [1128] = 1128, + [1128] = 1124, [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, + [1130] = 121, + [1131] = 122, + [1132] = 120, [1133] = 1133, - [1134] = 1134, + [1134] = 1121, [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1120, - [1142] = 1130, - [1143] = 1138, + [1141] = 1124, + [1142] = 1142, + [1143] = 1143, [1144] = 1144, [1145] = 1145, [1146] = 1146, @@ -3331,1048 +3337,1048 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1151] = 1151, [1152] = 1152, [1153] = 1153, - [1154] = 1117, + [1154] = 1154, [1155] = 1155, - [1156] = 1137, + [1156] = 1156, [1157] = 1157, - [1158] = 1149, - [1159] = 1157, - [1160] = 1144, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, [1161] = 1161, [1162] = 1162, [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1167, + [1167] = 1121, [1168] = 1168, [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1172, + [1172] = 1124, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 1116, - [1177] = 1177, - [1178] = 1118, - [1179] = 1119, - [1180] = 1123, - [1181] = 1124, - [1182] = 1125, - [1183] = 1126, - [1184] = 1127, - [1185] = 1128, - [1186] = 1132, - [1187] = 1133, - [1188] = 1134, - [1189] = 1147, + [1176] = 1176, + [1177] = 122, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1121, + [1182] = 1182, + [1183] = 1183, + [1184] = 1138, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1171, + [1189] = 1124, [1190] = 1190, - [1191] = 1155, - [1192] = 1177, - [1193] = 1190, + [1191] = 1191, + [1192] = 1136, + [1193] = 1193, [1194] = 1194, [1195] = 1195, [1196] = 1196, [1197] = 1197, - [1198] = 1198, - [1199] = 1199, + [1198] = 1121, + [1199] = 1195, [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, + [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] = 1214, - [1215] = 1194, - [1216] = 1195, - [1217] = 1196, - [1218] = 128, - [1219] = 1197, - [1220] = 1198, - [1221] = 1199, - [1222] = 1200, - [1223] = 1201, - [1224] = 1161, + [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] = 1202, - [1227] = 1162, - [1228] = 1120, - [1229] = 1203, - [1230] = 1130, - [1231] = 1146, - [1232] = 1204, - [1233] = 1148, - [1234] = 1205, - [1235] = 1150, - [1236] = 1153, - [1237] = 1206, - [1238] = 1207, - [1239] = 1208, - [1240] = 1209, - [1241] = 1146, - [1242] = 128, - [1243] = 1243, - [1244] = 1210, - [1245] = 1211, - [1246] = 1212, - [1247] = 1120, - [1248] = 1130, - [1249] = 1146, - [1250] = 1153, - [1251] = 1148, - [1252] = 1213, - [1253] = 1150, - [1254] = 1153, - [1255] = 1164, - [1256] = 1214, - [1257] = 1165, - [1258] = 1120, - [1259] = 1146, - [1260] = 1148, - [1261] = 1153, - [1262] = 1166, - [1263] = 1136, - [1264] = 1167, - [1265] = 1131, - [1266] = 1163, - [1267] = 1115, - [1268] = 1145, - [1269] = 1168, - [1270] = 1150, - [1271] = 1148, - [1272] = 1135, - [1273] = 1169, - [1274] = 1274, - [1275] = 1150, + [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] = 1277, - [1278] = 1140, - [1279] = 1170, - [1280] = 1130, - [1281] = 1150, - [1282] = 1151, - [1283] = 1131, - [1284] = 1115, + [1277] = 1180, + [1278] = 1276, + [1279] = 1122, + [1280] = 1123, + [1281] = 1127, + [1282] = 1133, + [1283] = 1135, + [1284] = 1137, [1285] = 1171, - [1286] = 1150, - [1287] = 1131, - [1288] = 1115, - [1289] = 1150, - [1290] = 1172, - [1291] = 1173, - [1292] = 1130, - [1293] = 1150, - [1294] = 1174, - [1295] = 1152, - [1296] = 1130, - [1297] = 1150, - [1298] = 1130, - [1299] = 1130, - [1300] = 1175, - [1301] = 1130, - [1302] = 1302, - [1303] = 1130, - [1304] = 1150, - [1305] = 1131, - [1306] = 1115, - [1307] = 1115, - [1308] = 127, - [1309] = 128, - [1310] = 1131, - [1311] = 1115, - [1312] = 1131, - [1313] = 1115, - [1314] = 1131, - [1315] = 1115, - [1316] = 1131, - [1317] = 1115, - [1318] = 1115, - [1319] = 1131, - [1320] = 1115, - [1321] = 1131, - [1322] = 1115, - [1323] = 1131, - [1324] = 119, - [1325] = 1131, - [1326] = 1115, - [1327] = 1131, - [1328] = 1115, - [1329] = 1131, - [1330] = 1115, - [1331] = 1131, - [1332] = 1115, - [1333] = 1131, - [1334] = 1131, - [1335] = 1139, - [1336] = 1336, - [1337] = 115, - [1338] = 112, - [1339] = 113, - [1340] = 117, - [1341] = 118, - [1342] = 1342, - [1343] = 1336, - [1344] = 1342, - [1345] = 1345, - [1346] = 111, - [1347] = 113, - [1348] = 111, - [1349] = 115, - [1350] = 117, - [1351] = 1345, + [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] = 118, - [1354] = 392, - [1355] = 392, - [1356] = 392, - [1357] = 392, - [1358] = 394, - [1359] = 394, - [1360] = 108, - [1361] = 394, - [1362] = 394, - [1363] = 113, - [1364] = 115, - [1365] = 112, - [1366] = 117, + [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] = 118, - [1369] = 393, - [1370] = 1370, - [1371] = 1370, - [1372] = 1370, - [1373] = 1373, - [1374] = 1370, - [1375] = 393, - [1376] = 569, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 392, - [1381] = 112, - [1382] = 1382, - [1383] = 1382, - [1384] = 1384, - [1385] = 569, - [1386] = 113, - [1387] = 569, - [1388] = 115, - [1389] = 117, - [1390] = 118, - [1391] = 569, - [1392] = 121, + [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] = 131, + [1391] = 117, + [1392] = 1392, [1393] = 1393, [1394] = 1394, - [1395] = 1384, - [1396] = 1379, - [1397] = 1377, - [1398] = 1398, + [1395] = 1395, + [1396] = 1396, + [1397] = 1389, + [1398] = 1396, [1399] = 1399, - [1400] = 1400, + [1400] = 547, [1401] = 1401, - [1402] = 392, + [1402] = 109, [1403] = 1403, - [1404] = 1401, - [1405] = 1405, - [1406] = 1406, - [1407] = 1394, - [1408] = 1408, - [1409] = 1408, - [1410] = 392, - [1411] = 1398, - [1412] = 1412, - [1413] = 1413, - [1414] = 1412, - [1415] = 1415, - [1416] = 1400, - [1417] = 1417, + [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] = 1411, [1418] = 1418, - [1419] = 1417, - [1420] = 1415, - [1421] = 1378, - [1422] = 1403, - [1423] = 1413, - [1424] = 1399, - [1425] = 1406, - [1426] = 1393, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1427, - [1433] = 188, + [1419] = 1399, + [1420] = 1410, + [1421] = 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] = 111, - [1436] = 111, - [1437] = 1437, - [1438] = 171, - [1439] = 1439, - [1440] = 1440, - [1441] = 1429, - [1442] = 1442, + [1435] = 1435, + [1436] = 1436, + [1437] = 112, + [1438] = 1434, + [1439] = 1435, + [1440] = 1436, + [1441] = 184, + [1442] = 398, [1443] = 1443, - [1444] = 1434, + [1444] = 112, [1445] = 1445, - [1446] = 1428, + [1446] = 1443, [1447] = 1447, - [1448] = 1428, - [1449] = 214, - [1450] = 1442, - [1451] = 394, - [1452] = 1445, - [1453] = 1439, - [1454] = 1437, - [1455] = 1455, - [1456] = 1434, - [1457] = 1430, - [1458] = 111, - [1459] = 1440, - [1460] = 1440, - [1461] = 1442, - [1462] = 1428, - [1463] = 111, - [1464] = 1442, - [1465] = 1465, - [1466] = 111, - [1467] = 1439, - [1468] = 1431, - [1469] = 1434, - [1470] = 1443, - [1471] = 1440, - [1472] = 1442, - [1473] = 1473, - [1474] = 392, - [1475] = 392, - [1476] = 392, - [1477] = 197, - [1478] = 392, + [1448] = 175, + [1449] = 112, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1434, + [1454] = 1454, + [1455] = 1454, + [1456] = 1447, + [1457] = 1451, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, + [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] = 1479, - [1481] = 392, - [1482] = 166, - [1483] = 393, - [1484] = 1473, - [1485] = 200, - [1486] = 207, - [1487] = 217, - [1488] = 112, - [1489] = 113, - [1490] = 115, - [1491] = 117, - [1492] = 118, - [1493] = 1473, - [1494] = 1479, - [1495] = 1479, - [1496] = 1473, - [1497] = 392, - [1498] = 1479, - [1499] = 1473, - [1500] = 111, - [1501] = 392, - [1502] = 216, - [1503] = 182, - [1504] = 184, - [1505] = 185, - [1506] = 186, - [1507] = 190, - [1508] = 191, - [1509] = 118, - [1510] = 1510, - [1511] = 394, - [1512] = 196, - [1513] = 394, - [1514] = 198, - [1515] = 1515, - [1516] = 201, - [1517] = 202, - [1518] = 205, - [1519] = 206, - [1520] = 188, - [1521] = 210, - [1522] = 211, + [1480] = 1480, + [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] = 211, + [1515] = 212, + [1516] = 398, + [1517] = 109, + [1518] = 113, + [1519] = 114, + [1520] = 108, + [1521] = 117, + [1522] = 398, [1523] = 213, - [1524] = 394, - [1525] = 394, - [1526] = 218, - [1527] = 112, - [1528] = 1528, - [1529] = 113, - [1530] = 220, - [1531] = 392, - [1532] = 108, - [1533] = 173, - [1534] = 224, - [1535] = 225, - [1536] = 1515, + [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] = 231, - [1541] = 188, - [1542] = 394, - [1543] = 233, - [1544] = 234, - [1545] = 235, - [1546] = 236, - [1547] = 237, - [1548] = 1515, - [1549] = 178, - [1550] = 188, - [1551] = 209, - [1552] = 193, - [1553] = 212, - [1554] = 219, - [1555] = 222, - [1556] = 175, - [1557] = 181, - [1558] = 188, - [1559] = 115, - [1560] = 569, - [1561] = 1515, - [1562] = 111, - [1563] = 112, - [1564] = 113, - [1565] = 171, - [1566] = 115, - [1567] = 117, - [1568] = 118, - [1569] = 394, - [1570] = 1515, - [1571] = 121, - [1572] = 171, - [1573] = 117, - [1574] = 232, - [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 112, - [1579] = 1579, - [1580] = 197, + [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] = 112, + [1568] = 195, + [1569] = 196, + [1570] = 198, + [1571] = 182, + [1572] = 398, + [1573] = 202, + [1574] = 203, + [1575] = 204, + [1576] = 184, + [1577] = 207, + [1578] = 1513, + [1579] = 233, + [1580] = 1580, [1581] = 1581, - [1582] = 1575, - [1583] = 1583, + [1582] = 1582, + [1583] = 199, [1584] = 1584, [1585] = 1585, - [1586] = 113, - [1587] = 1587, + [1586] = 1586, + [1587] = 189, [1588] = 1588, [1589] = 1589, - [1590] = 393, + [1590] = 208, [1591] = 1591, - [1592] = 1592, + [1592] = 1582, [1593] = 1593, - [1594] = 1594, - [1595] = 1595, - [1596] = 1594, - [1597] = 1594, - [1598] = 1598, - [1599] = 1599, - [1600] = 393, - [1601] = 1601, - [1602] = 1602, + [1594] = 110, + [1595] = 208, + [1596] = 1596, + [1597] = 189, + [1598] = 109, + [1599] = 113, + [1600] = 114, + [1601] = 108, + [1602] = 117, [1603] = 1603, - [1604] = 1579, - [1605] = 115, - [1606] = 1606, - [1607] = 1603, + [1604] = 1584, + [1605] = 1605, + [1606] = 1585, + [1607] = 1586, [1608] = 1608, - [1609] = 117, - [1610] = 1610, - [1611] = 118, - [1612] = 1612, + [1609] = 400, + [1610] = 109, + [1611] = 1611, + [1612] = 1580, [1613] = 1613, - [1614] = 166, - [1615] = 1606, - [1616] = 1594, - [1617] = 1617, - [1618] = 1618, - [1619] = 1602, - [1620] = 1601, + [1614] = 113, + [1615] = 1589, + [1616] = 114, + [1617] = 108, + [1618] = 117, + [1619] = 1619, + [1620] = 1608, [1621] = 1621, [1622] = 1622, - [1623] = 1594, + [1623] = 1608, [1624] = 1624, - [1625] = 394, - [1626] = 1626, - [1627] = 569, - [1628] = 1594, + [1625] = 400, + [1626] = 1611, + [1627] = 1580, + [1628] = 1613, [1629] = 1629, - [1630] = 217, + [1630] = 400, [1631] = 1631, - [1632] = 1612, + [1632] = 1613, [1633] = 1633, - [1634] = 1594, - [1635] = 1633, - [1636] = 1584, - [1637] = 108, - [1638] = 1591, - [1639] = 393, - [1640] = 1575, - [1641] = 1613, - [1642] = 1594, - [1643] = 1595, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, - [1647] = 1577, - [1648] = 1594, - [1649] = 1649, - [1650] = 1622, - [1651] = 1594, - [1652] = 1621, - [1653] = 1594, - [1654] = 1594, - [1655] = 1594, - [1656] = 1631, - [1657] = 1588, - [1658] = 207, - [1659] = 1659, - [1660] = 1644, - [1661] = 1644, - [1662] = 1662, + [1634] = 1634, + [1635] = 1611, + [1636] = 1580, + [1637] = 1637, + [1638] = 1608, + [1639] = 193, + [1640] = 1640, + [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] = 175, + [1658] = 1593, + [1659] = 1608, + [1660] = 1605, + [1661] = 1603, + [1662] = 163, [1663] = 1663, - [1664] = 214, + [1664] = 1664, [1665] = 1665, - [1666] = 1602, - [1667] = 1594, - [1668] = 1594, - [1669] = 1575, - [1670] = 1575, - [1671] = 1644, - [1672] = 1672, - [1673] = 1575, - [1674] = 1591, - [1675] = 1581, - [1676] = 112, - [1677] = 1575, - [1678] = 1587, - [1679] = 113, - [1680] = 115, - [1681] = 1618, - [1682] = 1575, - [1683] = 1645, - [1684] = 1593, - [1685] = 166, - [1686] = 1594, - [1687] = 1575, - [1688] = 393, - [1689] = 117, - [1690] = 200, - [1691] = 1583, - [1692] = 207, - [1693] = 1575, - [1694] = 108, - [1695] = 1626, - [1696] = 1602, - [1697] = 118, - [1698] = 1698, - [1699] = 200, - [1700] = 217, - [1701] = 1624, - [1702] = 1592, - [1703] = 1703, - [1704] = 1594, - [1705] = 1602, - [1706] = 1576, - [1707] = 1594, - [1708] = 1602, - [1709] = 1594, - [1710] = 1594, - [1711] = 1602, - [1712] = 1608, - [1713] = 1594, - [1714] = 1602, - [1715] = 197, - [1716] = 1644, - [1717] = 1610, - [1718] = 1602, - [1719] = 1591, - [1720] = 1703, - [1721] = 1602, - [1722] = 1594, - [1723] = 1665, - [1724] = 1602, - [1725] = 1725, - [1726] = 1672, - [1727] = 1602, - [1728] = 1659, - [1729] = 1698, - [1730] = 1602, - [1731] = 1731, - [1732] = 1602, - [1733] = 1602, - [1734] = 1594, - [1735] = 1591, - [1736] = 1602, - [1737] = 1594, - [1738] = 1738, - [1739] = 1602, - [1740] = 1594, - [1741] = 1602, - [1742] = 1594, - [1743] = 1575, - [1744] = 229, - [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 233, - [1749] = 569, + [1666] = 1666, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, + [1670] = 1663, + [1671] = 1671, + [1672] = 1588, + [1673] = 1673, + [1674] = 1674, + [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] = 1580, + [1714] = 1714, + [1715] = 163, + [1716] = 400, + [1717] = 1699, + [1718] = 199, + [1719] = 1719, + [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] = 1751, + [1751] = 190, [1752] = 1752, - [1753] = 1745, - [1754] = 1745, + [1753] = 1753, + [1754] = 1754, [1755] = 1755, - [1756] = 569, - [1757] = 181, - [1758] = 1758, - [1759] = 1759, - [1760] = 1760, - [1761] = 228, - [1762] = 1746, - [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1747, - [1767] = 1767, - [1768] = 234, - [1769] = 1769, - [1770] = 229, - [1771] = 184, + [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] = 1747, - [1774] = 230, - [1775] = 220, - [1776] = 1776, - [1777] = 569, - [1778] = 1747, - [1779] = 1750, - [1780] = 1745, - [1781] = 1751, - [1782] = 1752, - [1783] = 1783, - [1784] = 1745, - [1785] = 1764, - [1786] = 1750, - [1787] = 1751, - [1788] = 1752, - [1789] = 1789, - [1790] = 1790, - [1791] = 1764, - [1792] = 211, - [1793] = 1758, - [1794] = 1794, - [1795] = 1759, - [1796] = 112, - [1797] = 1745, - [1798] = 1746, - [1799] = 1763, - [1800] = 1800, - [1801] = 569, - [1802] = 216, - [1803] = 1758, - [1804] = 1764, - [1805] = 1759, - [1806] = 1806, - [1807] = 1747, - [1808] = 1808, - [1809] = 1809, - [1810] = 1764, - [1811] = 1811, - [1812] = 1750, - [1813] = 1751, - [1814] = 1752, - [1815] = 1764, - [1816] = 1746, - [1817] = 1758, - [1818] = 1759, - [1819] = 1746, - [1820] = 1763, - [1821] = 1747, + [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] = 108, + [1794] = 220, + [1795] = 1795, + [1796] = 547, + [1797] = 222, + [1798] = 223, + [1799] = 1799, + [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] = 1763, - [1824] = 1824, - [1825] = 1747, - [1826] = 1826, + [1823] = 1752, + [1824] = 239, + [1825] = 1825, + [1826] = 1777, [1827] = 1827, - [1828] = 222, - [1829] = 1747, - [1830] = 173, - [1831] = 1745, - [1832] = 212, - [1833] = 569, - [1834] = 1834, - [1835] = 569, - [1836] = 1745, - [1837] = 231, + [1828] = 114, + [1829] = 1795, + [1830] = 1830, + [1831] = 1831, + [1832] = 181, + [1833] = 108, + [1834] = 1752, + [1835] = 1835, + [1836] = 1795, + [1837] = 547, [1838] = 1838, - [1839] = 1839, - [1840] = 224, - [1841] = 1755, - [1842] = 1764, - [1843] = 1755, - [1844] = 1759, - [1845] = 1845, - [1846] = 1764, - [1847] = 1847, - [1848] = 1848, - [1849] = 1847, - [1850] = 237, - [1851] = 1851, - [1852] = 1745, - [1853] = 1853, - [1854] = 1759, - [1855] = 198, - [1856] = 1827, - [1857] = 1857, - [1858] = 1764, - [1859] = 1747, - [1860] = 1834, - [1861] = 1861, - [1862] = 1853, - [1863] = 1745, - [1864] = 178, - [1865] = 1865, - [1866] = 1747, - [1867] = 1750, - [1868] = 185, - [1869] = 1747, - [1870] = 232, + [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] = 569, - [1873] = 1763, - [1874] = 1745, - [1875] = 196, - [1876] = 1745, - [1877] = 1764, - [1878] = 206, - [1879] = 1747, - [1880] = 213, - [1881] = 1800, - [1882] = 1751, - [1883] = 1764, - [1884] = 1745, - [1885] = 1764, + [1872] = 1844, + [1873] = 1873, + [1874] = 1874, + [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] = 218, - [1888] = 1764, - [1889] = 113, - [1890] = 1747, - [1891] = 175, + [1887] = 1820, + [1888] = 1888, + [1889] = 195, + [1890] = 1890, + [1891] = 1891, [1892] = 1892, - [1893] = 1893, - [1894] = 1824, - [1895] = 1772, - [1896] = 1845, - [1897] = 1886, - [1898] = 569, - [1899] = 1899, - [1900] = 1871, - [1901] = 1901, - [1902] = 1839, - [1903] = 1806, - [1904] = 1759, - [1905] = 1838, - [1906] = 1826, - [1907] = 1745, - [1908] = 219, - [1909] = 182, - [1910] = 1745, - [1911] = 184, - [1912] = 185, - [1913] = 1764, - [1914] = 186, - [1915] = 1901, - [1916] = 1745, - [1917] = 1747, - [1918] = 1918, - [1919] = 190, - [1920] = 191, - [1921] = 1745, - [1922] = 1922, - [1923] = 1838, - [1924] = 1765, - [1925] = 1759, - [1926] = 1790, - [1927] = 1745, - [1928] = 115, - [1929] = 117, - [1930] = 1747, - [1931] = 196, - [1932] = 1899, - [1933] = 198, - [1934] = 1745, - [1935] = 1794, - [1936] = 1758, - [1937] = 1759, - [1938] = 210, - [1939] = 1809, - [1940] = 1940, - [1941] = 1941, - [1942] = 235, - [1943] = 201, - [1944] = 202, - [1945] = 1752, - [1946] = 205, - [1947] = 206, - [1948] = 1755, - [1949] = 208, - [1950] = 210, - [1951] = 1808, - [1952] = 1811, - [1953] = 1764, - [1954] = 1759, - [1955] = 211, - [1956] = 1918, - [1957] = 1957, - [1958] = 1760, - [1959] = 1838, - [1960] = 213, - [1961] = 112, - [1962] = 1767, - [1963] = 216, - [1964] = 190, - [1965] = 1861, - [1966] = 1764, - [1967] = 218, - [1968] = 191, - [1969] = 1745, - [1970] = 220, - [1971] = 1747, - [1972] = 225, - [1973] = 173, - [1974] = 118, - [1975] = 205, - [1976] = 1976, - [1977] = 224, - [1978] = 1747, - [1979] = 1747, - [1980] = 209, - [1981] = 225, - [1982] = 238, - [1983] = 1983, - [1984] = 1776, - [1985] = 1838, - [1986] = 1838, - [1987] = 1838, - [1988] = 113, - [1989] = 227, - [1990] = 228, - [1991] = 181, - [1992] = 230, - [1993] = 231, - [1994] = 232, - [1995] = 115, - [1996] = 1745, - [1997] = 1940, - [1998] = 1755, - [1999] = 1838, - [2000] = 1892, - [2001] = 117, - [2002] = 393, - [2003] = 1764, - [2004] = 233, - [2005] = 1941, - [2006] = 1745, - [2007] = 193, - [2008] = 234, - [2009] = 1745, - [2010] = 235, - [2011] = 1838, - [2012] = 1838, - [2013] = 1838, - [2014] = 1838, - [2015] = 1957, - [2016] = 201, - [2017] = 1764, - [2018] = 236, - [2019] = 1745, - [2020] = 356, - [2021] = 1745, - [2022] = 237, - [2023] = 202, - [2024] = 1764, - [2025] = 1838, - [2026] = 1838, - [2027] = 1838, - [2028] = 118, - [2029] = 221, - [2030] = 186, - [2031] = 1838, - [2032] = 1893, - [2033] = 182, - [2034] = 178, - [2035] = 1745, - [2036] = 1838, - [2037] = 209, - [2038] = 193, - [2039] = 212, - [2040] = 219, - [2041] = 222, - [2042] = 236, - [2043] = 175, - [2044] = 1838, - [2045] = 2045, - [2046] = 1759, - [2047] = 2047, - [2048] = 117, - [2049] = 2049, - [2050] = 115, - [2051] = 112, - [2052] = 215, - [2053] = 113, - [2054] = 569, - [2055] = 118, - [2056] = 2056, - [2057] = 2057, - [2058] = 215, - [2059] = 367, - [2060] = 187, - [2061] = 214, - [2062] = 2062, - [2063] = 2063, + [1893] = 1890, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, + [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] = 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] = 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] = 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] = 547, + [2061] = 340, + [2062] = 205, + [2063] = 175, [2064] = 2064, - [2065] = 2062, + [2065] = 237, [2066] = 2066, - [2067] = 2064, - [2068] = 2063, - [2069] = 2064, - [2070] = 2066, - [2071] = 2071, - [2072] = 2062, - [2073] = 2063, - [2074] = 2064, - [2075] = 2066, - [2076] = 2062, - [2077] = 2063, - [2078] = 2064, - [2079] = 2079, - [2080] = 2066, - [2081] = 2062, - [2082] = 2063, - [2083] = 2064, - [2084] = 2066, - [2085] = 2062, - [2086] = 2063, - [2087] = 2064, - [2088] = 2066, - [2089] = 2062, - [2090] = 2063, - [2091] = 2064, - [2092] = 2066, - [2093] = 2062, - [2094] = 2063, - [2095] = 2064, - [2096] = 2066, - [2097] = 2062, - [2098] = 2063, - [2099] = 2064, - [2100] = 2066, - [2101] = 2062, - [2102] = 2063, - [2103] = 2064, - [2104] = 2066, - [2105] = 2062, - [2106] = 2063, - [2107] = 2064, - [2108] = 2066, - [2109] = 2062, - [2110] = 2063, - [2111] = 2064, - [2112] = 2066, - [2113] = 2062, - [2114] = 2063, - [2115] = 2064, - [2116] = 2066, - [2117] = 2062, - [2118] = 2063, - [2119] = 2064, - [2120] = 2066, - [2121] = 2062, - [2122] = 2063, - [2123] = 2064, - [2124] = 2066, - [2125] = 2062, - [2126] = 2066, - [2127] = 2064, - [2128] = 2066, - [2129] = 2062, - [2130] = 2063, - [2131] = 2064, - [2132] = 2066, - [2133] = 2062, - [2134] = 2063, - [2135] = 2064, - [2136] = 2066, - [2137] = 2062, - [2138] = 2063, - [2139] = 2064, - [2140] = 2066, - [2141] = 2062, - [2142] = 2063, - [2143] = 2064, - [2144] = 2066, - [2145] = 2062, - [2146] = 2063, - [2147] = 2064, - [2148] = 2066, - [2149] = 2062, - [2150] = 2063, - [2151] = 2064, - [2152] = 2066, - [2153] = 2062, - [2154] = 2063, - [2155] = 2064, - [2156] = 2066, - [2157] = 2062, - [2158] = 2063, - [2159] = 2064, - [2160] = 2066, - [2161] = 2062, - [2162] = 2063, - [2163] = 2064, - [2164] = 2066, - [2165] = 2062, - [2166] = 2063, - [2167] = 2064, - [2168] = 2066, - [2169] = 2062, - [2170] = 2063, - [2171] = 2064, - [2172] = 2066, - [2173] = 2062, - [2174] = 2062, - [2175] = 2063, - [2176] = 2063, - [2177] = 2066, - [2178] = 2178, - [2179] = 2064, - [2180] = 2180, - [2181] = 2066, - [2182] = 214, - [2183] = 2062, - [2184] = 2071, - [2185] = 2178, - [2186] = 2180, - [2187] = 2063, - [2188] = 2064, - [2189] = 2063, - [2190] = 2190, - [2191] = 2191, - [2192] = 2190, - [2193] = 2193, - [2194] = 2194, - [2195] = 2191, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 2067, + [2072] = 2068, + [2073] = 2069, + [2074] = 2070, + [2075] = 2067, + [2076] = 2068, + [2077] = 2069, + [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] = 2198, @@ -4380,338 +4386,338 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2200] = 2200, [2201] = 2201, [2202] = 2202, - [2203] = 2196, - [2204] = 2198, + [2203] = 2203, + [2204] = 2204, [2205] = 2205, - [2206] = 2201, - [2207] = 2207, - [2208] = 2194, - [2209] = 2202, - [2210] = 2199, - [2211] = 2200, - [2212] = 2212, - [2213] = 2056, - [2214] = 367, - [2215] = 215, + [2206] = 2200, + [2207] = 2202, + [2208] = 205, + [2209] = 2066, + [2210] = 2196, + [2211] = 2195, + [2212] = 2198, + [2213] = 2203, + [2214] = 2197, + [2215] = 2204, [2216] = 2216, - [2217] = 214, - [2218] = 2205, - [2219] = 2207, - [2220] = 2193, - [2221] = 2221, - [2222] = 2221, - [2223] = 2221, - [2224] = 2221, - [2225] = 187, - [2226] = 2221, - [2227] = 2221, - [2228] = 2056, - [2229] = 214, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2233, - [2234] = 2231, + [2217] = 2217, + [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] = 2231, - [2237] = 2231, - [2238] = 2231, - [2239] = 2231, - [2240] = 2231, - [2241] = 2231, - [2242] = 2231, - [2243] = 2231, - [2244] = 2231, - [2245] = 2231, - [2246] = 2231, - [2247] = 2231, - [2248] = 2231, - [2249] = 2231, - [2250] = 2231, - [2251] = 2231, - [2252] = 187, + [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] = 2254, - [2255] = 214, - [2256] = 214, - [2257] = 214, - [2258] = 2056, - [2259] = 2056, - [2260] = 367, - [2261] = 214, - [2262] = 2262, - [2263] = 2263, - [2264] = 2056, - [2265] = 187, - [2266] = 214, - [2267] = 215, - [2268] = 2262, - [2269] = 214, - [2270] = 187, - [2271] = 214, - [2272] = 2272, + [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] = 2273, - [2275] = 2056, - [2276] = 215, - [2277] = 367, - [2278] = 2278, + [2274] = 175, + [2275] = 237, + [2276] = 175, + [2277] = 2277, + [2278] = 2066, [2279] = 2279, [2280] = 2280, - [2281] = 2281, + [2281] = 205, [2282] = 2282, - [2283] = 2282, - [2284] = 187, - [2285] = 197, - [2286] = 394, - [2287] = 394, - [2288] = 394, - [2289] = 197, - [2290] = 394, - [2291] = 393, - [2292] = 393, - [2293] = 2293, - [2294] = 1662, - [2295] = 2295, - [2296] = 394, - [2297] = 2297, - [2298] = 2295, - [2299] = 2295, - [2300] = 569, - [2301] = 2295, - [2302] = 569, - [2303] = 2293, - [2304] = 1731, - [2305] = 2293, - [2306] = 2293, - [2307] = 569, - [2308] = 2295, - [2309] = 2293, - [2310] = 214, - [2311] = 394, + [2283] = 340, + [2284] = 2280, + [2285] = 237, + [2286] = 2286, + [2287] = 2287, + [2288] = 2288, + [2289] = 2288, + [2290] = 189, + [2291] = 398, + [2292] = 398, + [2293] = 398, + [2294] = 189, + [2295] = 398, + [2296] = 400, + [2297] = 400, + [2298] = 2298, + [2299] = 2299, + [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] = 569, - [2315] = 2315, - [2316] = 2316, - [2317] = 2315, + [2313] = 2298, + [2314] = 547, + [2315] = 2299, + [2316] = 398, + [2317] = 2317, [2318] = 2318, - [2319] = 2316, - [2320] = 2320, - [2321] = 1589, - [2322] = 1598, - [2323] = 2323, - [2324] = 2324, + [2319] = 547, + [2320] = 596, + [2321] = 2321, + [2322] = 2322, + [2323] = 2322, + [2324] = 2322, [2325] = 2325, [2326] = 2326, - [2327] = 394, - [2328] = 394, + [2327] = 2322, + [2328] = 2328, [2329] = 2329, [2330] = 2330, - [2331] = 2330, + [2331] = 2331, [2332] = 2332, - [2333] = 2332, - [2334] = 394, + [2333] = 2331, + [2334] = 2334, [2335] = 2335, [2336] = 2336, - [2337] = 2332, - [2338] = 2338, - [2339] = 2336, - [2340] = 2338, - [2341] = 2332, - [2342] = 2320, - [2343] = 2332, - [2344] = 2344, - [2345] = 2345, - [2346] = 2324, - [2347] = 2347, - [2348] = 394, - [2349] = 2332, - [2350] = 390, - [2351] = 2351, - [2352] = 2332, - [2353] = 2332, - [2354] = 2332, - [2355] = 2325, - [2356] = 2332, - [2357] = 2332, - [2358] = 2332, - [2359] = 2332, - [2360] = 2332, - [2361] = 2347, - [2362] = 2332, - [2363] = 2332, - [2364] = 394, - [2365] = 2318, - [2366] = 2366, - [2367] = 394, - [2368] = 2332, - [2369] = 238, - [2370] = 595, - [2371] = 596, - [2372] = 597, - [2373] = 598, + [2337] = 2322, + [2338] = 392, + [2339] = 2322, + [2340] = 2322, + [2341] = 2322, + [2342] = 2322, + [2343] = 2343, + [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] = 1664, + [2363] = 2322, + [2364] = 2322, + [2365] = 2329, + [2366] = 2343, + [2367] = 2322, + [2368] = 201, + [2369] = 2328, + [2370] = 1665, + [2371] = 2360, + [2372] = 2372, + [2373] = 417, [2374] = 595, - [2375] = 596, - [2376] = 598, - [2377] = 2366, - [2378] = 2335, - [2379] = 2332, - [2380] = 2380, - [2381] = 2381, - [2382] = 2382, - [2383] = 2380, - [2384] = 2384, + [2375] = 597, + [2376] = 417, + [2377] = 595, + [2378] = 597, + [2379] = 2379, + [2380] = 2372, + [2381] = 398, + [2382] = 2322, + [2383] = 398, + [2384] = 2357, [2385] = 2385, [2386] = 2386, - [2387] = 2382, + [2387] = 413, [2388] = 2388, - [2389] = 2382, - [2390] = 2390, - [2391] = 2391, - [2392] = 2384, + [2389] = 402, + [2390] = 407, + [2391] = 2388, + [2392] = 2392, [2393] = 2393, - [2394] = 2394, - [2395] = 2395, - [2396] = 2390, + [2394] = 2388, + [2395] = 547, + [2396] = 2386, [2397] = 2397, - [2398] = 2384, + [2398] = 2385, [2399] = 2399, [2400] = 2400, - [2401] = 2399, - [2402] = 2399, - [2403] = 569, - [2404] = 2390, + [2401] = 2386, + [2402] = 2402, + [2403] = 398, + [2404] = 2385, [2405] = 2405, [2406] = 2406, - [2407] = 2406, - [2408] = 2399, - [2409] = 2405, - [2410] = 2405, - [2411] = 400, - [2412] = 2412, - [2413] = 413, - [2414] = 410, - [2415] = 2399, - [2416] = 2380, - [2417] = 2384, - [2418] = 2412, - [2419] = 2382, - [2420] = 390, - [2421] = 2381, - [2422] = 2380, - [2423] = 2384, - [2424] = 394, - [2425] = 2380, - [2426] = 2382, - [2427] = 2382, - [2428] = 2428, - [2429] = 2397, - [2430] = 2385, - [2431] = 2431, - [2432] = 2394, - [2433] = 2393, - [2434] = 197, - [2435] = 2428, - [2436] = 2390, - [2437] = 595, - [2438] = 596, - [2439] = 597, - [2440] = 598, - [2441] = 595, - [2442] = 596, - [2443] = 598, - [2444] = 2405, - [2445] = 2405, - [2446] = 1769, - [2447] = 2388, - [2448] = 394, - [2449] = 2405, - [2450] = 2400, - [2451] = 2390, - [2452] = 2452, - [2453] = 1430, - [2454] = 2454, - [2455] = 2455, - [2456] = 1598, + [2407] = 2399, + [2408] = 2408, + [2409] = 398, + [2410] = 1888, + [2411] = 2400, + [2412] = 2405, + [2413] = 392, + [2414] = 2402, + [2415] = 2415, + [2416] = 2402, + [2417] = 2408, + [2418] = 2388, + [2419] = 2419, + [2420] = 2386, + [2421] = 2385, + [2422] = 2385, + [2423] = 2423, + [2424] = 2424, + [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] = 2386, + [2450] = 2388, + [2451] = 2393, + [2452] = 2386, + [2453] = 2453, + [2454] = 2402, + [2455] = 2400, + [2456] = 2402, [2457] = 2457, [2458] = 2458, [2459] = 2459, [2460] = 2460, [2461] = 2461, - [2462] = 2462, - [2463] = 400, - [2464] = 1430, - [2465] = 2465, - [2466] = 2452, - [2467] = 413, + [2462] = 2457, + [2463] = 2463, + [2464] = 2464, + [2465] = 1975, + [2466] = 2466, + [2467] = 2467, [2468] = 2468, - [2469] = 2469, - [2470] = 410, - [2471] = 2471, - [2472] = 2460, + [2469] = 1443, + [2470] = 2461, + [2471] = 1667, + [2472] = 1665, [2473] = 2473, - [2474] = 367, - [2475] = 2454, - [2476] = 2476, + [2474] = 2474, + [2475] = 413, + [2476] = 1443, [2477] = 2477, [2478] = 2478, [2479] = 2479, - [2480] = 2480, - [2481] = 2469, - [2482] = 569, - [2483] = 1430, - [2484] = 1589, - [2485] = 2468, - [2486] = 1598, - [2487] = 1646, - [2488] = 393, - [2489] = 2489, - [2490] = 2469, - [2491] = 1589, + [2480] = 2464, + [2481] = 2481, + [2482] = 2478, + [2483] = 2483, + [2484] = 1664, + [2485] = 2467, + [2486] = 2468, + [2487] = 2468, + [2488] = 2478, + [2489] = 2474, + [2490] = 2490, + [2491] = 1997, [2492] = 2492, - [2493] = 2469, - [2494] = 2457, - [2495] = 2468, - [2496] = 1430, - [2497] = 1851, - [2498] = 1585, - [2499] = 1599, - [2500] = 1783, - [2501] = 2471, - [2502] = 2477, - [2503] = 2457, - [2504] = 2457, + [2493] = 2493, + [2494] = 2494, + [2495] = 400, + [2496] = 1443, + [2497] = 2497, + [2498] = 1664, + [2499] = 402, + [2500] = 2500, + [2501] = 2501, + [2502] = 547, + [2503] = 2460, + [2504] = 2493, [2505] = 2505, - [2506] = 2458, - [2507] = 2460, - [2508] = 2508, - [2509] = 2457, - [2510] = 2510, + [2506] = 407, + [2507] = 2461, + [2508] = 1443, + [2509] = 1665, + [2510] = 2461, [2511] = 2468, - [2512] = 1430, - [2513] = 393, - [2514] = 1430, + [2512] = 2464, + [2513] = 1694, + [2514] = 1443, [2515] = 2515, - [2516] = 2460, - [2517] = 2480, - [2518] = 393, - [2519] = 1663, - [2520] = 2469, - [2521] = 1865, - [2522] = 2522, - [2523] = 2523, - [2524] = 2524, - [2525] = 2460, - [2526] = 2459, - [2527] = 2462, - [2528] = 2468, + [2516] = 2516, + [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] = 2530, - [2531] = 2531, - [2532] = 2532, - [2533] = 2533, - [2534] = 1769, + [2530] = 400, + [2531] = 2478, + [2532] = 2505, + [2533] = 2461, + [2534] = 2534, [2535] = 2535, [2536] = 2536, [2537] = 2537, @@ -4720,22 +4726,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2540] = 2540, [2541] = 2541, [2542] = 2542, - [2543] = 2530, + [2543] = 2543, [2544] = 2544, - [2545] = 2541, + [2545] = 2545, [2546] = 2546, [2547] = 2547, [2548] = 2548, - [2549] = 2536, + [2549] = 2549, [2550] = 2550, [2551] = 2551, [2552] = 2552, - [2553] = 2553, - [2554] = 2531, + [2553] = 2535, + [2554] = 2554, [2555] = 2555, - [2556] = 2556, + [2556] = 1888, [2557] = 2557, - [2558] = 2552, + [2558] = 2558, [2559] = 2559, [2560] = 2560, [2561] = 2561, @@ -4748,1139 +4754,1145 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2568] = 2568, [2569] = 2569, [2570] = 2570, - [2571] = 2571, + [2571] = 2534, [2572] = 2572, - [2573] = 2542, - [2574] = 2544, - [2575] = 2547, + [2573] = 2573, + [2574] = 2574, + [2575] = 2575, [2576] = 2576, [2577] = 2577, [2578] = 2578, [2579] = 2579, [2580] = 2580, - [2581] = 2551, - [2582] = 2582, - [2583] = 2583, + [2581] = 2563, + [2582] = 2551, + [2583] = 547, [2584] = 2584, [2585] = 2585, - [2586] = 2556, - [2587] = 569, - [2588] = 2588, - [2589] = 2550, + [2586] = 2586, + [2587] = 2587, + [2588] = 1695, + [2589] = 2589, [2590] = 2590, [2591] = 2591, - [2592] = 2546, + [2592] = 2592, [2593] = 2593, - [2594] = 2557, - [2595] = 2595, - [2596] = 393, - [2597] = 390, + [2594] = 2594, + [2595] = 2591, + [2596] = 2587, + [2597] = 2597, [2598] = 2598, [2599] = 2599, [2600] = 2600, [2601] = 2601, [2602] = 2602, [2603] = 2603, - [2604] = 2593, - [2605] = 2605, - [2606] = 2533, - [2607] = 2530, - [2608] = 2576, + [2604] = 2604, + [2605] = 2592, + [2606] = 2606, + [2607] = 400, + [2608] = 547, [2609] = 2609, [2610] = 2610, - [2611] = 2531, + [2611] = 2593, [2612] = 2612, [2613] = 2613, - [2614] = 2561, + [2614] = 2614, [2615] = 2615, - [2616] = 1769, + [2616] = 2616, [2617] = 2617, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2567, - [2624] = 569, - [2625] = 2625, - [2626] = 2618, - [2627] = 2533, - [2628] = 2599, - [2629] = 2602, - [2630] = 2625, - [2631] = 2568, - [2632] = 2632, - [2633] = 2633, - [2634] = 2550, + [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] = 2550, + [2631] = 2631, + [2632] = 2629, + [2633] = 2562, + [2634] = 2634, [2635] = 2635, [2636] = 2636, [2637] = 2637, [2638] = 2638, [2639] = 2639, - [2640] = 2559, - [2641] = 2641, - [2642] = 2642, + [2640] = 2640, + [2641] = 2631, + [2642] = 2640, [2643] = 2643, - [2644] = 569, + [2644] = 2644, [2645] = 2645, - [2646] = 2618, + [2646] = 2646, [2647] = 2647, - [2648] = 2637, - [2649] = 2645, + [2648] = 2590, + [2649] = 2649, [2650] = 2650, [2651] = 2651, - [2652] = 1731, - [2653] = 2550, - [2654] = 2610, - [2655] = 2655, - [2656] = 2656, - [2657] = 2584, - [2658] = 393, + [2652] = 2634, + [2653] = 2541, + [2654] = 2585, + [2655] = 2542, + [2656] = 2609, + [2657] = 2638, + [2658] = 1888, [2659] = 2659, - [2660] = 2660, - [2661] = 2661, - [2662] = 1662, - [2663] = 2663, - [2664] = 2577, + [2660] = 2538, + [2661] = 2644, + [2662] = 2539, + [2663] = 2540, + [2664] = 547, [2665] = 2665, - [2666] = 569, - [2667] = 2584, - [2668] = 2668, - [2669] = 2550, - [2670] = 2585, - [2671] = 2582, - [2672] = 2584, - [2673] = 2673, - [2674] = 2585, - [2675] = 569, + [2666] = 2639, + [2667] = 2667, + [2668] = 2602, + [2669] = 2669, + [2670] = 2544, + [2671] = 2548, + [2672] = 2672, + [2673] = 2665, + [2674] = 2674, + [2675] = 2613, [2676] = 2676, - [2677] = 2595, - [2678] = 2580, - [2679] = 2617, - [2680] = 2599, - [2681] = 2620, - [2682] = 2391, - [2683] = 2583, - [2684] = 2593, - [2685] = 2685, - [2686] = 569, - [2687] = 2687, - [2688] = 2530, - [2689] = 569, - [2690] = 2599, - [2691] = 2691, - [2692] = 2591, - [2693] = 2600, - [2694] = 2531, - [2695] = 2593, - [2696] = 2696, - [2697] = 2618, - [2698] = 2698, - [2699] = 2563, - [2700] = 2687, - [2701] = 2701, - [2702] = 2530, - [2703] = 2703, - [2704] = 2531, - [2705] = 2618, + [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] = 2548, + [2697] = 2697, + [2698] = 2613, + [2699] = 547, + [2700] = 2536, + [2701] = 2535, + [2702] = 2702, + [2703] = 2536, + [2704] = 2549, + [2705] = 2681, [2706] = 2706, - [2707] = 2651, + [2707] = 2707, [2708] = 2708, - [2709] = 2618, - [2710] = 2710, - [2711] = 2711, + [2709] = 2667, + [2710] = 2599, + [2711] = 547, [2712] = 2712, - [2713] = 2539, - [2714] = 356, - [2715] = 2533, - [2716] = 2618, - [2717] = 2533, - [2718] = 2633, - [2719] = 2625, - [2720] = 2615, - [2721] = 2635, - [2722] = 2618, - [2723] = 2636, + [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] = 2725, - [2726] = 2726, - [2727] = 2673, - [2728] = 2618, - [2729] = 2729, - [2730] = 2642, - [2731] = 2572, - [2732] = 2621, - [2733] = 2647, - [2734] = 2618, - [2735] = 2735, - [2736] = 2529, - [2737] = 2559, - [2738] = 2585, - [2739] = 2564, - [2740] = 2569, - [2741] = 2571, - [2742] = 2618, - [2743] = 2599, - [2744] = 2578, - [2745] = 2579, - [2746] = 2550, - [2747] = 569, - [2748] = 2565, - [2749] = 2735, - [2750] = 2566, - [2751] = 2710, - [2752] = 2752, - [2753] = 2599, - [2754] = 2656, - [2755] = 2665, - [2756] = 2548, - [2757] = 2599, - [2758] = 2599, - [2759] = 2599, - [2760] = 2760, - [2761] = 2752, - [2762] = 2550, - [2763] = 2760, - [2764] = 2764, - [2765] = 2532, - [2766] = 2766, - [2767] = 2550, - [2768] = 2538, - [2769] = 2550, - [2770] = 2764, - [2771] = 2590, - [2772] = 2598, - [2773] = 2601, - [2774] = 2599, - [2775] = 2603, - [2776] = 2550, - [2777] = 2535, - [2778] = 2599, - [2779] = 2609, - [2780] = 2711, - [2781] = 2599, - [2782] = 2599, - [2783] = 2599, - [2784] = 2612, - [2785] = 2613, - [2786] = 2550, - [2787] = 2584, - [2788] = 2585, - [2789] = 2708, - [2790] = 2550, - [2791] = 2632, - [2792] = 2550, - [2793] = 2638, - [2794] = 597, - [2795] = 2712, - [2796] = 2766, - [2797] = 2599, - [2798] = 2599, - [2799] = 2599, - [2800] = 2639, - [2801] = 2641, - [2802] = 2650, - [2803] = 2550, - [2804] = 2729, - [2805] = 2550, - [2806] = 2540, - [2807] = 2659, - [2808] = 2550, - [2809] = 2660, - [2810] = 2661, - [2811] = 2537, - [2812] = 2663, - [2813] = 2701, - [2814] = 2668, - [2815] = 2530, - [2816] = 2599, - [2817] = 2550, - [2818] = 595, - [2819] = 596, - [2820] = 598, - [2821] = 2821, - [2822] = 2676, - [2823] = 2593, - [2824] = 2550, - [2825] = 2685, - [2826] = 2691, - [2827] = 2698, - [2828] = 2726, - [2829] = 2553, - [2830] = 2830, - [2831] = 2831, - [2832] = 2831, - [2833] = 2831, - [2834] = 2831, - [2835] = 2831, - [2836] = 2831, - [2837] = 2831, - [2838] = 2831, - [2839] = 2831, - [2840] = 2831, - [2841] = 2831, - [2842] = 2831, - [2843] = 2831, - [2844] = 2831, - [2845] = 2831, + [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] = 2740, + [2741] = 2741, + [2742] = 2667, + [2743] = 2580, + [2744] = 2541, + [2745] = 2578, + [2746] = 2746, + [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] = 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] = 2840, + [2843] = 1694, + [2844] = 2844, + [2845] = 2845, [2846] = 2846, - [2847] = 2847, + [2847] = 1945, [2848] = 2848, - [2849] = 1599, + [2849] = 2844, [2850] = 2850, - [2851] = 2851, + [2851] = 2844, [2852] = 2852, [2853] = 2853, [2854] = 2854, [2855] = 2855, - [2856] = 2856, - [2857] = 1851, - [2858] = 238, + [2856] = 595, + [2857] = 2857, + [2858] = 2850, [2859] = 2859, - [2860] = 2831, + [2860] = 2860, [2861] = 2861, [2862] = 2862, - [2863] = 2861, - [2864] = 2847, + [2863] = 2863, + [2864] = 2864, [2865] = 2865, [2866] = 2866, [2867] = 2867, - [2868] = 2868, + [2868] = 2861, [2869] = 2869, [2870] = 2870, - [2871] = 2869, + [2871] = 2871, [2872] = 2872, - [2873] = 2848, - [2874] = 2847, - [2875] = 2850, + [2873] = 2873, + [2874] = 2869, + [2875] = 2875, [2876] = 2876, - [2877] = 2877, - [2878] = 2830, - [2879] = 2862, - [2880] = 2869, - [2881] = 2870, - [2882] = 2882, - [2883] = 2851, - [2884] = 2884, - [2885] = 2846, - [2886] = 2882, - [2887] = 2887, - [2888] = 2866, - [2889] = 2889, - [2890] = 2866, - [2891] = 2891, - [2892] = 2866, - [2893] = 2850, + [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] = 2866, - [2896] = 2896, - [2897] = 2897, - [2898] = 2898, - [2899] = 596, - [2900] = 2900, - [2901] = 2859, - [2902] = 2866, - [2903] = 2903, - [2904] = 2859, - [2905] = 2887, + [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] = 2907, - [2908] = 2856, - [2909] = 2909, - [2910] = 2831, - [2911] = 2911, - [2912] = 2866, - [2913] = 2846, - [2914] = 2866, - [2915] = 2830, - [2916] = 2894, - [2917] = 2909, - [2918] = 2830, - [2919] = 400, - [2920] = 2920, - [2921] = 2882, - [2922] = 2866, - [2923] = 2866, - [2924] = 2848, - [2925] = 2882, - [2926] = 2856, - [2927] = 2831, - [2928] = 2928, - [2929] = 2866, - [2930] = 2930, - [2931] = 2866, - [2932] = 2866, - [2933] = 2933, - [2934] = 2856, - [2935] = 2935, - [2936] = 2856, - [2937] = 2856, - [2938] = 2856, - [2939] = 2856, - [2940] = 2856, - [2941] = 2856, - [2942] = 2856, - [2943] = 2856, - [2944] = 2856, - [2945] = 2856, - [2946] = 2946, - [2947] = 2898, - [2948] = 2866, - [2949] = 2896, - [2950] = 2898, + [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] = 2882, - [2953] = 597, - [2954] = 2896, - [2955] = 2898, - [2956] = 2859, - [2957] = 2957, - [2958] = 2907, - [2959] = 2959, - [2960] = 1585, - [2961] = 1663, - [2962] = 2847, - [2963] = 2963, - [2964] = 2846, - [2965] = 2862, - [2966] = 2869, - [2967] = 2882, - [2968] = 2968, - [2969] = 2853, - [2970] = 2970, - [2971] = 2971, - [2972] = 2972, - [2973] = 2973, - [2974] = 2866, - [2975] = 2848, - [2976] = 2976, - [2977] = 598, + [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] = 2963, - [2980] = 2865, - [2981] = 1865, - [2982] = 2831, - [2983] = 2887, - [2984] = 2856, - [2985] = 2869, - [2986] = 2866, - [2987] = 410, - [2988] = 2882, - [2989] = 2850, - [2990] = 2990, - [2991] = 2991, - [2992] = 2846, - [2993] = 2993, - [2994] = 2869, - [2995] = 2882, - [2996] = 2846, - [2997] = 413, - [2998] = 2869, - [2999] = 2882, - [3000] = 2846, - [3001] = 2935, - [3002] = 2869, - [3003] = 2882, - [3004] = 1646, - [3005] = 2976, - [3006] = 2978, - [3007] = 2831, - [3008] = 3008, + [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] = 2847, - [3011] = 2850, - [3012] = 1783, - [3013] = 3013, - [3014] = 2848, - [3015] = 3015, - [3016] = 2882, - [3017] = 2896, - [3018] = 2831, - [3019] = 2930, - [3020] = 2846, - [3021] = 3021, - [3022] = 2869, - [3023] = 2882, - [3024] = 1865, - [3025] = 2853, - [3026] = 3026, - [3027] = 1851, - [3028] = 2846, - [3029] = 2866, - [3030] = 2856, - [3031] = 2869, - [3032] = 3032, - [3033] = 2877, - [3034] = 2933, - [3035] = 2846, - [3036] = 2970, - [3037] = 2869, - [3038] = 2882, - [3039] = 2846, - [3040] = 2898, - [3041] = 2869, - [3042] = 2882, - [3043] = 2846, - [3044] = 2862, - [3045] = 2869, - [3046] = 2882, - [3047] = 2887, - [3048] = 3048, + [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] = 2972, - [3051] = 2867, - [3052] = 2935, - [3053] = 3053, - [3054] = 2859, - [3055] = 2935, - [3056] = 2877, - [3057] = 3049, - [3058] = 2973, - [3059] = 2856, - [3060] = 2868, - [3061] = 2830, - [3062] = 2877, - [3063] = 2846, - [3064] = 2862, - [3065] = 2869, - [3066] = 2882, - [3067] = 2846, - [3068] = 2869, - [3069] = 2869, - [3070] = 2882, - [3071] = 2846, - [3072] = 2831, - [3073] = 2869, - [3074] = 2882, - [3075] = 2957, - [3076] = 2853, - [3077] = 1783, - [3078] = 2968, - [3079] = 3079, - [3080] = 2887, - [3081] = 2846, + [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] = 2935, - [3084] = 2856, - [3085] = 2853, - [3086] = 3086, - [3087] = 3015, - [3088] = 3088, - [3089] = 2831, - [3090] = 2846, - [3091] = 2853, - [3092] = 595, - [3093] = 2877, - [3094] = 2869, - [3095] = 2831, - [3096] = 2907, - [3097] = 2831, - [3098] = 2866, - [3099] = 2831, - [3100] = 2831, - [3101] = 2876, - [3102] = 2831, - [3103] = 2831, - [3104] = 2896, - [3105] = 2884, - [3106] = 2831, + [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] = 3108, + [3108] = 2854, [3109] = 3109, - [3110] = 3110, - [3111] = 3111, - [3112] = 3112, - [3113] = 3109, - [3114] = 3110, + [3110] = 407, + [3111] = 597, + [3112] = 2841, + [3113] = 2854, + [3114] = 3114, [3115] = 3115, - [3116] = 3109, - [3117] = 3109, - [3118] = 3109, - [3119] = 3109, - [3120] = 3109, - [3121] = 3111, - [3122] = 3109, - [3123] = 3109, - [3124] = 3124, - [3125] = 3109, - [3126] = 3126, - [3127] = 3109, - [3128] = 3109, - [3129] = 3109, - [3130] = 3109, - [3131] = 3109, - [3132] = 3109, - [3133] = 3109, - [3134] = 3109, - [3135] = 3109, - [3136] = 3110, - [3137] = 3137, - [3138] = 3138, - [3139] = 3139, - [3140] = 3140, - [3141] = 3140, - [3142] = 3142, - [3143] = 3109, - [3144] = 3110, - [3145] = 3137, + [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] = 3147, + [3147] = 3116, [3148] = 3148, - [3149] = 3149, + [3149] = 3117, [3150] = 3150, - [3151] = 3151, - [3152] = 3152, - [3153] = 3153, - [3154] = 3138, + [3151] = 3114, + [3152] = 3146, + [3153] = 3117, + [3154] = 3154, [3155] = 3155, - [3156] = 3156, + [3156] = 3148, [3157] = 3157, - [3158] = 393, - [3159] = 3149, + [3158] = 3158, + [3159] = 3159, [3160] = 3160, - [3161] = 3112, + [3161] = 3161, [3162] = 3162, - [3163] = 3146, - [3164] = 3137, + [3163] = 3155, + [3164] = 3164, [3165] = 3165, - [3166] = 3137, - [3167] = 3137, - [3168] = 3115, - [3169] = 3137, + [3166] = 3166, + [3167] = 3167, + [3168] = 400, + [3169] = 3169, [3170] = 3170, - [3171] = 3139, + [3171] = 400, [3172] = 3172, - [3173] = 3152, - [3174] = 3110, - [3175] = 3112, - [3176] = 3176, - [3177] = 3137, - [3178] = 3178, - [3179] = 3110, - [3180] = 393, - [3181] = 3110, - [3182] = 3110, - [3183] = 3137, - [3184] = 3184, - [3185] = 3139, - [3186] = 3140, - [3187] = 3150, - [3188] = 3153, - [3189] = 3137, - [3190] = 3146, - [3191] = 3157, + [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] = 3112, - [3194] = 3137, - [3195] = 3149, - [3196] = 3137, - [3197] = 3138, - [3198] = 3137, - [3199] = 3140, - [3200] = 3200, - [3201] = 3151, - [3202] = 3146, - [3203] = 3160, - [3204] = 3110, - [3205] = 3137, - [3206] = 3109, - [3207] = 3137, + [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] = 3110, - [3210] = 3151, - [3211] = 3140, - [3212] = 3146, - [3213] = 3140, - [3214] = 3146, - [3215] = 3140, - [3216] = 3146, - [3217] = 3140, - [3218] = 3146, - [3219] = 3140, - [3220] = 3147, - [3221] = 3221, - [3222] = 3140, - [3223] = 3140, - [3224] = 3170, - [3225] = 3140, - [3226] = 3140, - [3227] = 3140, - [3228] = 3140, - [3229] = 3139, - [3230] = 3230, - [3231] = 3146, - [3232] = 3232, - [3233] = 3232, - [3234] = 2971, - [3235] = 3109, - [3236] = 3112, - [3237] = 3192, - [3238] = 3151, - [3239] = 3239, - [3240] = 3162, - [3241] = 3162, - [3242] = 3115, - [3243] = 3243, - [3244] = 3244, - [3245] = 3147, - [3246] = 3140, - [3247] = 3138, - [3248] = 3200, - [3249] = 3137, - [3250] = 3115, - [3251] = 3109, - [3252] = 3151, - [3253] = 3253, - [3254] = 3110, - [3255] = 3162, - [3256] = 3137, - [3257] = 3230, - [3258] = 3124, - [3259] = 3259, - [3260] = 3126, - [3261] = 3138, - [3262] = 3139, + [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] = 3147, + [3264] = 3146, [3265] = 3265, - [3266] = 3239, - [3267] = 3267, - [3268] = 3137, - [3269] = 3149, - [3270] = 3270, - [3271] = 3271, - [3272] = 3140, - [3273] = 3273, - [3274] = 3274, - [3275] = 3137, - [3276] = 3109, - [3277] = 3110, - [3278] = 3278, - [3279] = 3115, - [3280] = 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] = 3282, - [3283] = 3281, - [3284] = 3155, + [3282] = 3150, + [3283] = 3165, + [3284] = 3194, [3285] = 3285, - [3286] = 3140, - [3287] = 3243, - [3288] = 3149, - [3289] = 3165, - [3290] = 3149, - [3291] = 3263, - [3292] = 3172, - [3293] = 3142, - [3294] = 3109, - [3295] = 3110, - [3296] = 3176, - [3297] = 3147, - [3298] = 3178, - [3299] = 3156, - [3300] = 3109, - [3301] = 3110, - [3302] = 3162, - [3303] = 3109, - [3304] = 3110, - [3305] = 3244, - [3306] = 3109, - [3307] = 3110, - [3308] = 3109, - [3309] = 3110, - [3310] = 3108, - [3311] = 3109, - [3312] = 3110, - [3313] = 3146, - [3314] = 3314, - [3315] = 3315, - [3316] = 3314, - [3317] = 3315, - [3318] = 3318, - [3319] = 3319, + [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] = 3322, - [3323] = 3314, + [3322] = 3320, + [3323] = 3320, [3324] = 3324, [3325] = 3325, [3326] = 3326, [3327] = 3327, - [3328] = 3327, + [3328] = 3328, [3329] = 3329, [3330] = 3330, - [3331] = 3331, - [3332] = 3332, + [3331] = 3320, + [3332] = 3321, [3333] = 3333, - [3334] = 3332, + [3334] = 3334, [3335] = 3335, - [3336] = 3322, + [3336] = 3336, [3337] = 3337, [3338] = 3338, [3339] = 3339, - [3340] = 3314, - [3341] = 3339, - [3342] = 3327, - [3343] = 3318, - [3344] = 3344, + [3340] = 3340, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 3320, [3345] = 3345, - [3346] = 3327, - [3347] = 3335, - [3348] = 3348, - [3349] = 3318, - [3350] = 3315, + [3346] = 3346, + [3347] = 3347, + [3348] = 3333, + [3349] = 3349, + [3350] = 575, [3351] = 3351, - [3352] = 3352, + [3352] = 3333, [3353] = 3353, [3354] = 3354, - [3355] = 3332, - [3356] = 3356, - [3357] = 3322, - [3358] = 3358, - [3359] = 3359, - [3360] = 3360, - [3361] = 3327, - [3362] = 3318, - [3363] = 3339, + [3355] = 3355, + [3356] = 3321, + [3357] = 3346, + [3358] = 3354, + [3359] = 3337, + [3360] = 3343, + [3361] = 3337, + [3362] = 3346, + [3363] = 3328, [3364] = 3364, - [3365] = 3365, + [3365] = 3320, [3366] = 3366, - [3367] = 3367, + [3367] = 3333, [3368] = 3368, [3369] = 3369, - [3370] = 3322, - [3371] = 3327, - [3372] = 3314, - [3373] = 3373, - [3374] = 3327, - [3375] = 3332, - [3376] = 3376, - [3377] = 3319, - [3378] = 3315, + [3370] = 3370, + [3371] = 3371, + [3372] = 3328, + [3373] = 3368, + [3374] = 3374, + [3375] = 3375, + [3376] = 3320, + [3377] = 3333, + [3378] = 3337, [3379] = 3379, - [3380] = 3380, - [3381] = 3318, - [3382] = 3382, - [3383] = 3314, - [3384] = 3331, - [3385] = 3314, + [3380] = 3333, + [3381] = 3381, + [3382] = 3325, + [3383] = 3383, + [3384] = 3321, + [3385] = 3325, [3386] = 3386, - [3387] = 3314, - [3388] = 3339, + [3387] = 3387, + [3388] = 3369, [3389] = 3389, - [3390] = 3339, - [3391] = 3391, - [3392] = 3392, - [3393] = 3356, - [3394] = 3327, - [3395] = 3395, + [3390] = 3320, + [3391] = 3333, + [3392] = 3375, + [3393] = 3366, + [3394] = 3394, + [3395] = 3325, [3396] = 3396, - [3397] = 3314, - [3398] = 3398, - [3399] = 3318, - [3400] = 3318, + [3397] = 3337, + [3398] = 3333, + [3399] = 3337, + [3400] = 3334, [3401] = 3401, - [3402] = 3318, + [3402] = 3402, [3403] = 3403, - [3404] = 3404, + [3404] = 3337, [3405] = 3405, - [3406] = 3406, - [3407] = 3314, - [3408] = 3320, - [3409] = 3344, - [3410] = 3410, - [3411] = 3411, - [3412] = 3410, + [3406] = 3320, + [3407] = 3407, + [3408] = 3408, + [3409] = 3409, + [3410] = 3347, + [3411] = 3337, + [3412] = 3337, [3413] = 3413, [3414] = 3414, - [3415] = 3322, - [3416] = 3416, - [3417] = 3395, - [3418] = 3379, - [3419] = 3314, - [3420] = 3318, - [3421] = 3421, - [3422] = 3318, - [3423] = 3389, - [3424] = 3424, - [3425] = 3344, - [3426] = 3352, - [3427] = 3427, - [3428] = 3354, + [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] = 3430, - [3431] = 3324, - [3432] = 3354, - [3433] = 3345, - [3434] = 3365, + [3430] = 3420, + [3431] = 3347, + [3432] = 3320, + [3433] = 3408, + [3434] = 3329, [3435] = 3435, - [3436] = 3436, - [3437] = 3322, - [3438] = 3438, + [3436] = 3242, + [3437] = 3437, + [3438] = 3320, [3439] = 3439, - [3440] = 3339, - [3441] = 3360, + [3440] = 3440, + [3441] = 3333, [3442] = 3442, - [3443] = 3339, - [3444] = 3444, - [3445] = 3353, - [3446] = 3430, - [3447] = 3447, - [3448] = 3396, - [3449] = 3401, - [3450] = 3430, - [3451] = 3451, - [3452] = 3389, - [3453] = 3344, - [3454] = 3314, - [3455] = 3326, - [3456] = 3411, - [3457] = 3327, - [3458] = 3401, - [3459] = 3329, - [3460] = 3411, + [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] = 3462, - [3463] = 3411, - [3464] = 3464, - [3465] = 3411, - [3466] = 3421, - [3467] = 3411, - [3468] = 3468, - [3469] = 3411, + [3462] = 3417, + [3463] = 3333, + [3464] = 3452, + [3465] = 3440, + [3466] = 3417, + [3467] = 3467, + [3468] = 558, + [3469] = 3417, [3470] = 3470, - [3471] = 3411, - [3472] = 3344, - [3473] = 3473, - [3474] = 3389, - [3475] = 3475, - [3476] = 3405, - [3477] = 3429, - [3478] = 3478, - [3479] = 3403, - [3480] = 3447, - [3481] = 3354, - [3482] = 3314, + [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] = 3389, - [3485] = 3411, - [3486] = 3327, - [3487] = 3348, - [3488] = 3464, - [3489] = 3489, - [3490] = 3451, - [3491] = 3359, - [3492] = 3318, - [3493] = 3339, - [3494] = 3322, - [3495] = 3495, - [3496] = 3496, - [3497] = 3369, - [3498] = 3430, - [3499] = 3322, - [3500] = 3318, - [3501] = 3501, - [3502] = 3318, - [3503] = 3503, + [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] = 3505, - [3506] = 3461, - [3507] = 3345, - [3508] = 3314, - [3509] = 3427, - [3510] = 3401, - [3511] = 3314, - [3512] = 3335, - [3513] = 3401, - [3514] = 3501, - [3515] = 3318, - [3516] = 3389, - [3517] = 3429, - [3518] = 3447, - [3519] = 3519, - [3520] = 3401, - [3521] = 3318, - [3522] = 3326, - [3523] = 3389, - [3524] = 3314, + [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] = 3358, - [3527] = 3401, - [3528] = 3389, - [3529] = 3404, - [3530] = 3368, - [3531] = 3451, - [3532] = 3464, - [3533] = 3411, - [3534] = 3534, - [3535] = 3535, + [3526] = 3420, + [3527] = 3333, + [3528] = 3514, + [3529] = 3370, + [3530] = 3387, + [3531] = 3531, + [3532] = 3439, + [3533] = 3420, + [3534] = 3370, + [3535] = 3480, [3536] = 3536, - [3537] = 3391, - [3538] = 3318, - [3539] = 3367, - [3540] = 3333, + [3537] = 3368, + [3538] = 3346, + [3539] = 3539, + [3540] = 3337, [3541] = 3541, - [3542] = 3327, - [3543] = 3327, - [3544] = 3338, - [3545] = 3314, - [3546] = 3335, - [3547] = 3462, - [3548] = 3339, + [3542] = 3420, + [3543] = 3333, + [3544] = 3370, + [3545] = 3521, + [3546] = 3417, + [3547] = 3366, + [3548] = 3548, [3549] = 3401, - [3550] = 3495, - [3551] = 3327, - [3552] = 3389, - [3553] = 3447, - [3554] = 3396, - [3555] = 3478, - [3556] = 3396, - [3557] = 3327, - [3558] = 3314, - [3559] = 3496, - [3560] = 3208, - [3561] = 3389, - [3562] = 3335, - [3563] = 3314, - [3564] = 3564, - [3565] = 3565, - [3566] = 3327, - [3567] = 3567, - [3568] = 3534, - [3569] = 3478, - [3570] = 3325, - [3571] = 3571, - [3572] = 3354, - [3573] = 3519, - [3574] = 3398, - [3575] = 3318, - [3576] = 581, - [3577] = 3536, - [3578] = 3416, - [3579] = 3314, - [3580] = 3327, - [3581] = 3464, - [3582] = 3314, - [3583] = 3314, - [3584] = 3401, - [3585] = 3318, - [3586] = 3541, - [3587] = 3389, - [3588] = 3318, - [3589] = 3321, - [3590] = 3590, - [3591] = 3401, - [3592] = 3567, - [3593] = 3326, - [3594] = 3389, - [3595] = 3351, - [3596] = 3366, - [3597] = 3332, - [3598] = 3401, - [3599] = 3473, - [3600] = 3600, - [3601] = 3389, - [3602] = 3590, - [3603] = 3406, - [3604] = 3318, - [3605] = 3451, - [3606] = 3314, - [3607] = 3478, - [3608] = 3396, - [3609] = 3396, - [3610] = 3451, - [3611] = 3600, - [3612] = 3396, - [3613] = 3335, - [3614] = 3429, - [3615] = 3401, - [3616] = 3429, - [3617] = 3335, - [3618] = 3618, - [3619] = 3392, - [3620] = 3414, - [3621] = 3318, - [3622] = 3535, - [3623] = 3322, - [3624] = 3318, - [3625] = 3314, - [3626] = 3318, - [3627] = 3322, + [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] = 3565, - [3630] = 3326, - [3631] = 3401, - [3632] = 3339, - [3633] = 3413, - [3634] = 3389, - [3635] = 3386, - [3636] = 3636, - [3637] = 3327, - [3638] = 3401, - [3639] = 3442, - [3640] = 3636, - [3641] = 3389, - [3642] = 3314, - [3643] = 3424, - [3644] = 3628, - [3645] = 3401, - [3646] = 3318, - [3647] = 3571, - [3648] = 3389, - [3649] = 3505, - [3650] = 3339, - [3651] = 3396, - [3652] = 3503, - [3653] = 3653, - [3654] = 3478, - [3655] = 3478, - [3656] = 3478, - [3657] = 3478, - [3658] = 3478, - [3659] = 3478, - [3660] = 3478, - [3661] = 3478, - [3662] = 3478, - [3663] = 3478, - [3664] = 3478, - [3665] = 3483, - [3666] = 3475, - [3667] = 3504, - [3668] = 3318, - [3669] = 3401, - [3670] = 3670, - [3671] = 3327, - [3672] = 3396, - [3673] = 3314, - [3674] = 3314, - [3675] = 3389, - [3676] = 3525, - [3677] = 3318, - [3678] = 3315, - [3679] = 3322, - [3680] = 3564, - [3681] = 612, - [3682] = 3653, - [3683] = 3318, - [3684] = 3401, - [3685] = 3314, - [3686] = 3318, - [3687] = 3470, - [3688] = 3376, - [3689] = 3396, - [3690] = 3690, - [3691] = 3373, - [3692] = 3692, - [3693] = 3435, - [3694] = 3478, - [3695] = 3318, - [3696] = 3314, - [3697] = 3364, - [3698] = 3401, - [3699] = 3314, - [3700] = 3318, - [3701] = 3478, - [3702] = 3478, - [3703] = 3389, + [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) { @@ -7717,7 +7729,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [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}, @@ -7726,38 +7738,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [17] = {.lex_state = 37, .external_lex_state = 3}, [18] = {.lex_state = 37, .external_lex_state = 3}, - [19] = {.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 = 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 = 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 = 3}, + [29] = {.lex_state = 37, .external_lex_state = 2}, [30] = {.lex_state = 37, .external_lex_state = 2}, - [31] = {.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 = 3}, - [34] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 3}, + [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 = 3}, - [41] = {.lex_state = 37, .external_lex_state = 3}, - [42] = {.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 = 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}, @@ -7818,31 +7830,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [109] = {.lex_state = 37, .external_lex_state = 3}, [110] = {.lex_state = 37, .external_lex_state = 2}, - [111] = {.lex_state = 37, .external_lex_state = 3}, - [112] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 2}, + [114] = {.lex_state = 37, .external_lex_state = 3}, [115] = {.lex_state = 37, .external_lex_state = 3}, - [116] = {.lex_state = 37, .external_lex_state = 2}, + [116] = {.lex_state = 37, .external_lex_state = 3}, [117] = {.lex_state = 37, .external_lex_state = 3}, - [118] = {.lex_state = 37, .external_lex_state = 3}, - [119] = {.lex_state = 37, .external_lex_state = 3}, - [120] = {.lex_state = 37, .external_lex_state = 3}, - [121] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 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 = 2}, - [129] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 3}, + [131] = {.lex_state = 37, .external_lex_state = 2}, [132] = {.lex_state = 37, .external_lex_state = 3}, - [133] = {.lex_state = 37, .external_lex_state = 2}, + [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}, @@ -7850,14 +7862,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, - [142] = {.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 = 3}, - [145] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 2}, - [148] = {.lex_state = 37, .external_lex_state = 3}, + [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}, @@ -7950,31 +7962,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1}, + [241] = {.lex_state = 37, .external_lex_state = 2}, [242] = {.lex_state = 37, .external_lex_state = 2}, - [243] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 3}, + [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 = 1}, + [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 = 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 = 1}, + [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}, @@ -8011,9 +8023,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, - [303] = {.lex_state = 37, .external_lex_state = 2}, - [304] = {.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}, @@ -8027,26 +8039,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [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 = 3}, - [325] = {.lex_state = 37, .external_lex_state = 3}, - [326] = {.lex_state = 37, .external_lex_state = 3}, - [327] = {.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 = 2}, - [332] = {.lex_state = 37, .external_lex_state = 2}, - [333] = {.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 = 2}, - [337] = {.lex_state = 37, .external_lex_state = 3}, + [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}, @@ -8061,11 +8073,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 1}, + [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}, @@ -8099,34 +8111,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1}, - [391] = {.lex_state = 37, .external_lex_state = 1}, - [392] = {.lex_state = 37, .external_lex_state = 3}, - [393] = {.lex_state = 37, .external_lex_state = 3}, - [394] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 1}, - [397] = {.lex_state = 37, .external_lex_state = 3}, - [398] = {.lex_state = 37, .external_lex_state = 2}, - [399] = {.lex_state = 37, .external_lex_state = 3}, - [400] = {.lex_state = 37, .external_lex_state = 3}, - [401] = {.lex_state = 37, .external_lex_state = 4}, - [402] = {.lex_state = 37, .external_lex_state = 4}, - [403] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 3}, - [406] = {.lex_state = 37, .external_lex_state = 4}, - [407] = {.lex_state = 37, .external_lex_state = 4}, - [408] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 3}, - [411] = {.lex_state = 37, .external_lex_state = 1}, - [412] = {.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 = 1}, - [415] = {.lex_state = 37, .external_lex_state = 3}, - [416] = {.lex_state = 37, .external_lex_state = 3}, - [417] = {.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}, @@ -8255,9 +8267,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [546] = {.lex_state = 37, .external_lex_state = 4}, [547] = {.lex_state = 37, .external_lex_state = 3}, - [548] = {.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}, @@ -8266,7 +8278,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, @@ -8277,11 +8289,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4}, + [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 = 3}, - [572] = {.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}, @@ -8291,8 +8303,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, - [583] = {.lex_state = 37, .external_lex_state = 4}, + [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}, @@ -8300,14 +8312,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 1}, + [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 = 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}, @@ -8317,7 +8329,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [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}, @@ -8327,37 +8339,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4}, - [619] = {.lex_state = 37, .external_lex_state = 2}, - [620] = {.lex_state = 37, .external_lex_state = 2}, - [621] = {.lex_state = 37, .external_lex_state = 4}, - [622] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 3}, - [625] = {.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 = 4}, - [628] = {.lex_state = 37, .external_lex_state = 4}, - [629] = {.lex_state = 37, .external_lex_state = 2}, - [630] = {.lex_state = 37, .external_lex_state = 3}, - [631] = {.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 = 3}, - [634] = {.lex_state = 37, .external_lex_state = 2}, - [635] = {.lex_state = 37, .external_lex_state = 2}, - [636] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 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 = 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 = 2}, - [646] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 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}, @@ -8461,7 +8473,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, @@ -8488,7 +8500,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, @@ -8499,9 +8511,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [790] = {.lex_state = 37, .external_lex_state = 2}, [791] = {.lex_state = 37, .external_lex_state = 2}, - [792] = {.lex_state = 37, .external_lex_state = 3}, + [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}, @@ -8509,7 +8521,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, @@ -8524,7 +8536,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [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}, @@ -8544,13 +8556,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1}, - [836] = {.lex_state = 37, .external_lex_state = 4}, - [837] = {.lex_state = 37, .external_lex_state = 3}, - [838] = {.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 = 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}, @@ -8566,108 +8578,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1, .external_lex_state = 2}, - [858] = {.lex_state = 1, .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 = 37, .external_lex_state = 2}, - [861] = {.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 = 37, .external_lex_state = 2}, - [864] = {.lex_state = 37, .external_lex_state = 2}, - [865] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 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 = 1, .external_lex_state = 2}, - [871] = {.lex_state = 1, .external_lex_state = 2}, + [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 = 2}, - [877] = {.lex_state = 37, .external_lex_state = 2}, - [878] = {.lex_state = 37, .external_lex_state = 1}, - [879] = {.lex_state = 37, .external_lex_state = 1}, - [880] = {.lex_state = 37, .external_lex_state = 4}, - [881] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, - [889] = {.lex_state = 37, .external_lex_state = 2}, - [890] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 2}, + [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 = 4}, - [899] = {.lex_state = 1, .external_lex_state = 3}, - [900] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 1, .external_lex_state = 3}, - [903] = {.lex_state = 37, .external_lex_state = 4}, - [904] = {.lex_state = 1, .external_lex_state = 3}, + [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 = 4}, + [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 = 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 = 1, .external_lex_state = 4}, - [916] = {.lex_state = 1, .external_lex_state = 4}, - [917] = {.lex_state = 1, .external_lex_state = 4}, + [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 = 1, .external_lex_state = 4}, + [919] = {.lex_state = 37, .external_lex_state = 4}, [920] = {.lex_state = 1, .external_lex_state = 4}, - [921] = {.lex_state = 37, .external_lex_state = 4}, - [922] = {.lex_state = 37, .external_lex_state = 4}, - [923] = {.lex_state = 37, .external_lex_state = 4}, - [924] = {.lex_state = 37, .external_lex_state = 4}, - [925] = {.lex_state = 37, .external_lex_state = 2}, - [926] = {.lex_state = 37, .external_lex_state = 2}, - [927] = {.lex_state = 1, .external_lex_state = 2}, - [928] = {.lex_state = 37, .external_lex_state = 2}, - [929] = {.lex_state = 37, .external_lex_state = 2}, - [930] = {.lex_state = 37, .external_lex_state = 2}, - [931] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 1, .external_lex_state = 2}, - [934] = {.lex_state = 37, .external_lex_state = 4}, - [935] = {.lex_state = 37, .external_lex_state = 4}, - [936] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 1, .external_lex_state = 2}, - [939] = {.lex_state = 37, .external_lex_state = 4}, - [940] = {.lex_state = 37, .external_lex_state = 2}, - [941] = {.lex_state = 37, .external_lex_state = 4}, - [942] = {.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 = 2}, - [946] = {.lex_state = 1, .external_lex_state = 2}, - [947] = {.lex_state = 1, .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 = 37, .external_lex_state = 2}, - [950] = {.lex_state = 37, .external_lex_state = 2}, - [951] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 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 = 4}, + [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}, @@ -8676,7 +8688,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, @@ -8685,184 +8697,184 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 2}, - [977] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 2}, - [980] = {.lex_state = 2, .external_lex_state = 3}, - [981] = {.lex_state = 2, .external_lex_state = 3}, - [982] = {.lex_state = 2, .external_lex_state = 3}, - [983] = {.lex_state = 2, .external_lex_state = 2}, - [984] = {.lex_state = 37, .external_lex_state = 1}, - [985] = {.lex_state = 2, .external_lex_state = 2}, - [986] = {.lex_state = 1, .external_lex_state = 3}, - [987] = {.lex_state = 2, .external_lex_state = 3}, - [988] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 37, .external_lex_state = 1}, - [992] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 2, .external_lex_state = 3}, - [997] = {.lex_state = 1, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 2}, - [1001] = {.lex_state = 37, .external_lex_state = 4}, - [1002] = {.lex_state = 37, .external_lex_state = 2}, - [1003] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 2}, - [1010] = {.lex_state = 0, .external_lex_state = 4}, - [1011] = {.lex_state = 0, .external_lex_state = 4}, - [1012] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 2}, - [1015] = {.lex_state = 37, .external_lex_state = 4}, - [1016] = {.lex_state = 0, .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 = 0, .external_lex_state = 4}, - [1019] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 1, .external_lex_state = 3}, - [1022] = {.lex_state = 2, .external_lex_state = 2}, - [1023] = {.lex_state = 2, .external_lex_state = 2}, - [1024] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 37, .external_lex_state = 2}, - [1029] = {.lex_state = 37, .external_lex_state = 4}, - [1030] = {.lex_state = 37, .external_lex_state = 4}, - [1031] = {.lex_state = 37, .external_lex_state = 4}, - [1032] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, - [1037] = {.lex_state = 37, .external_lex_state = 4}, - [1038] = {.lex_state = 1, .external_lex_state = 3}, + [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 = 37, .external_lex_state = 2}, - [1041] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, - [1045] = {.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 = 0, .external_lex_state = 4}, - [1048] = {.lex_state = 2, .external_lex_state = 2}, - [1049] = {.lex_state = 0, .external_lex_state = 4}, - [1050] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 0, .external_lex_state = 4}, + [1057] = {.lex_state = 37, .external_lex_state = 2}, [1058] = {.lex_state = 37, .external_lex_state = 4}, - [1059] = {.lex_state = 0, .external_lex_state = 4}, - [1060] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, - [1064] = {.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 = 2}, - [1067] = {.lex_state = 37, .external_lex_state = 2}, - [1068] = {.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 = 4}, - [1071] = {.lex_state = 0, .external_lex_state = 4}, - [1072] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 2}, - [1075] = {.lex_state = 37, .external_lex_state = 2}, - [1076] = {.lex_state = 0, .external_lex_state = 4}, - [1077] = {.lex_state = 37, .external_lex_state = 2}, + [1074] = {.lex_state = 2, .external_lex_state = 2}, + [1075] = {.lex_state = 2, .external_lex_state = 2}, + [1076] = {.lex_state = 2, .external_lex_state = 2}, + [1077] = {.lex_state = 0, .external_lex_state = 4}, [1078] = {.lex_state = 0, .external_lex_state = 4}, - [1079] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 37, .external_lex_state = 2}, - [1083] = {.lex_state = 1, .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 = 4}, - [1086] = {.lex_state = 37, .external_lex_state = 4}, - [1087] = {.lex_state = 37, .external_lex_state = 2}, - [1088] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 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 = 37, .external_lex_state = 4}, - [1094] = {.lex_state = 1, .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 = 2}, + [1096] = {.lex_state = 37, .external_lex_state = 4}, [1097] = {.lex_state = 37, .external_lex_state = 2}, - [1098] = {.lex_state = 37, .external_lex_state = 4}, - [1099] = {.lex_state = 37, .external_lex_state = 3}, - [1100] = {.lex_state = 37, .external_lex_state = 4}, - [1101] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, - [1104] = {.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 = 4}, - [1107] = {.lex_state = 37, .external_lex_state = 2}, - [1108] = {.lex_state = 37, .external_lex_state = 2}, - [1109] = {.lex_state = 37, .external_lex_state = 4}, - [1110] = {.lex_state = 2, .external_lex_state = 2}, - [1111] = {.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 = 2}, - [1114] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 4}, - [1118] = {.lex_state = 37, .external_lex_state = 4}, - [1119] = {.lex_state = 37, .external_lex_state = 4}, - [1120] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 4}, - [1126] = {.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 = 37, .external_lex_state = 4}, - [1131] = {.lex_state = 37, .external_lex_state = 4}, - [1132] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 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 = 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 = 2}, + [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 = 2, .external_lex_state = 2}, - [1146] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 2}, + [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}, @@ -8872,18 +8884,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 2}, + [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 = 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 = 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}, @@ -8891,7 +8903,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, @@ -8901,90 +8913,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 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 = 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 = 4}, + [1205] = {.lex_state = 37, .external_lex_state = 2}, [1206] = {.lex_state = 37, .external_lex_state = 4}, - [1207] = {.lex_state = 37, .external_lex_state = 4}, - [1208] = {.lex_state = 37, .external_lex_state = 4}, - [1209] = {.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 = 4}, - [1212] = {.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 = 2}, - [1219] = {.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 = 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 = 2}, + [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 = 2}, - [1229] = {.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 = 2}, + [1231] = {.lex_state = 37, .external_lex_state = 4}, [1232] = {.lex_state = 37, .external_lex_state = 4}, - [1233] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 4}, + [1239] = {.lex_state = 37, .external_lex_state = 2}, [1240] = {.lex_state = 37, .external_lex_state = 4}, - [1241] = {.lex_state = 37, .external_lex_state = 2}, - [1242] = {.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 = 2}, + [1247] = {.lex_state = 37, .external_lex_state = 4}, [1248] = {.lex_state = 37, .external_lex_state = 4}, - [1249] = {.lex_state = 37, .external_lex_state = 2}, - [1250] = {.lex_state = 37, .external_lex_state = 2}, - [1251] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 4}, - [1258] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 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 = 2, .external_lex_state = 2}, + [1266] = {.lex_state = 37, .external_lex_state = 4}, [1267] = {.lex_state = 37, .external_lex_state = 4}, - [1268] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 2}, + [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 = 2}, - [1275] = {.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}, @@ -9002,7 +9014,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, @@ -9011,20 +9023,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [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 = 2, .external_lex_state = 2}, - [1309] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 4}, + [1313] = {.lex_state = 37, .external_lex_state = 2}, [1314] = {.lex_state = 37, .external_lex_state = 4}, - [1315] = {.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}, @@ -9033,7 +9045,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 2}, + [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}, @@ -9045,63 +9057,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, - [1337] = {.lex_state = 3, .external_lex_state = 2}, - [1338] = {.lex_state = 3, .external_lex_state = 2}, - [1339] = {.lex_state = 3, .external_lex_state = 2}, - [1340] = {.lex_state = 3, .external_lex_state = 2}, - [1341] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 37, .external_lex_state = 2}, - [1346] = {.lex_state = 37, .external_lex_state = 3}, - [1347] = {.lex_state = 4, .external_lex_state = 2}, - [1348] = {.lex_state = 37, .external_lex_state = 2}, - [1349] = {.lex_state = 4, .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 = 4, .external_lex_state = 2}, + [1352] = {.lex_state = 37, .external_lex_state = 2}, [1353] = {.lex_state = 4, .external_lex_state = 2}, - [1354] = {.lex_state = 2, .external_lex_state = 2}, - [1355] = {.lex_state = 2, .external_lex_state = 3}, - [1356] = {.lex_state = 2, .external_lex_state = 3}, - [1357] = {.lex_state = 2, .external_lex_state = 2}, - [1358] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 37, .external_lex_state = 3}, - [1361] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 4, .external_lex_state = 3}, + [1363] = {.lex_state = 2, .external_lex_state = 2}, [1364] = {.lex_state = 4, .external_lex_state = 3}, - [1365] = {.lex_state = 4, .external_lex_state = 3}, - [1366] = {.lex_state = 4, .external_lex_state = 3}, - [1367] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 3}, - [1370] = {.lex_state = 37, .external_lex_state = 2}, - [1371] = {.lex_state = 37, .external_lex_state = 2}, - [1372] = {.lex_state = 37, .external_lex_state = 2}, - [1373] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 3}, + [1376] = {.lex_state = 37, .external_lex_state = 2}, [1377] = {.lex_state = 37, .external_lex_state = 2}, - [1378] = {.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 = 0, .external_lex_state = 2}, - [1381] = {.lex_state = 3, .external_lex_state = 3}, - [1382] = {.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 = 37, .external_lex_state = 2}, - [1385] = {.lex_state = 2, .external_lex_state = 3}, - [1386] = {.lex_state = 3, .external_lex_state = 3}, - [1387] = {.lex_state = 2, .external_lex_state = 2}, - [1388] = {.lex_state = 3, .external_lex_state = 3}, - [1389] = {.lex_state = 3, .external_lex_state = 3}, - [1390] = {.lex_state = 3, .external_lex_state = 3}, - [1391] = {.lex_state = 2, .external_lex_state = 2}, - [1392] = {.lex_state = 37, .external_lex_state = 3}, + [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}, @@ -9109,17 +9121,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 37, .external_lex_state = 2}, + [1400] = {.lex_state = 2, .external_lex_state = 3}, [1401] = {.lex_state = 37, .external_lex_state = 2}, - [1402] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 37, .external_lex_state = 2}, + [1405] = {.lex_state = 3, .external_lex_state = 3}, [1406] = {.lex_state = 37, .external_lex_state = 2}, - [1407] = {.lex_state = 37, .external_lex_state = 2}, - [1408] = {.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 = 0, .external_lex_state = 3}, + [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}, @@ -9135,38 +9147,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 37, .external_lex_state = 2}, - [1427] = {.lex_state = 37, .external_lex_state = 2}, - [1428] = {.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 = 1}, + [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 = 4}, - [1437] = {.lex_state = 37, .external_lex_state = 2}, - [1438] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 2}, - [1442] = {.lex_state = 37, .external_lex_state = 2}, - [1443] = {.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 = 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 = 1}, + [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 = 1}, + [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}, @@ -9183,65 +9195,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4}, - [1475] = {.lex_state = 2, .external_lex_state = 2}, - [1476] = {.lex_state = 37, .external_lex_state = 4}, - [1477] = {.lex_state = 37, .external_lex_state = 1}, - [1478] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, - [1482] = {.lex_state = 37, .external_lex_state = 1}, + [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 = 2}, - [1485] = {.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 = 1}, - [1488] = {.lex_state = 4, .external_lex_state = 2}, - [1489] = {.lex_state = 4, .external_lex_state = 2}, - [1490] = {.lex_state = 4, .external_lex_state = 2}, - [1491] = {.lex_state = 4, .external_lex_state = 2}, - [1492] = {.lex_state = 4, .external_lex_state = 2}, - [1493] = {.lex_state = 37, .external_lex_state = 2}, - [1494] = {.lex_state = 37, .external_lex_state = 2}, - [1495] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 37, .external_lex_state = 2}, - [1500] = {.lex_state = 37, .external_lex_state = 3}, - [1501] = {.lex_state = 37, .external_lex_state = 2}, - [1502] = {.lex_state = 37, .external_lex_state = 1}, - [1503] = {.lex_state = 37, .external_lex_state = 1}, - [1504] = {.lex_state = 37, .external_lex_state = 1}, - [1505] = {.lex_state = 37, .external_lex_state = 1}, - [1506] = {.lex_state = 37, .external_lex_state = 1}, - [1507] = {.lex_state = 37, .external_lex_state = 1}, - [1508] = {.lex_state = 37, .external_lex_state = 1}, - [1509] = {.lex_state = 4, .external_lex_state = 4}, - [1510] = {.lex_state = 37, .external_lex_state = 2}, - [1511] = {.lex_state = 37, .external_lex_state = 4}, - [1512] = {.lex_state = 37, .external_lex_state = 1}, - [1513] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, - [1516] = {.lex_state = 37, .external_lex_state = 1}, - [1517] = {.lex_state = 37, .external_lex_state = 1}, - [1518] = {.lex_state = 37, .external_lex_state = 1}, - [1519] = {.lex_state = 37, .external_lex_state = 1}, - [1520] = {.lex_state = 2, .external_lex_state = 2}, - [1521] = {.lex_state = 37, .external_lex_state = 1}, - [1522] = {.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 = 2}, - [1525] = {.lex_state = 37, .external_lex_state = 2}, - [1526] = {.lex_state = 37, .external_lex_state = 1}, - [1527] = {.lex_state = 4, .external_lex_state = 4}, + [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 = 4, .external_lex_state = 4}, + [1529] = {.lex_state = 37, .external_lex_state = 1}, [1530] = {.lex_state = 37, .external_lex_state = 1}, - [1531] = {.lex_state = 37, .external_lex_state = 2}, - [1532] = {.lex_state = 37, .external_lex_state = 2}, + [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}, @@ -9249,167 +9261,167 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 37, .external_lex_state = 1}, - [1541] = {.lex_state = 37, .external_lex_state = 4}, - [1542] = {.lex_state = 2, .external_lex_state = 2}, - [1543] = {.lex_state = 37, .external_lex_state = 1}, - [1544] = {.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 = 1}, + [1546] = {.lex_state = 37, .external_lex_state = 2}, [1547] = {.lex_state = 37, .external_lex_state = 1}, - [1548] = {.lex_state = 37, .external_lex_state = 2}, + [1548] = {.lex_state = 37, .external_lex_state = 1}, [1549] = {.lex_state = 37, .external_lex_state = 1}, - [1550] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 1}, + [1553] = {.lex_state = 37, .external_lex_state = 4}, [1554] = {.lex_state = 37, .external_lex_state = 1}, - [1555] = {.lex_state = 37, .external_lex_state = 1}, - [1556] = {.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 = 0, .external_lex_state = 3}, - [1559] = {.lex_state = 4, .external_lex_state = 4}, + [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 = 2}, - [1562] = {.lex_state = 37, .external_lex_state = 2}, - [1563] = {.lex_state = 4, .external_lex_state = 2}, - [1564] = {.lex_state = 4, .external_lex_state = 2}, - [1565] = {.lex_state = 2, .external_lex_state = 2}, - [1566] = {.lex_state = 4, .external_lex_state = 2}, - [1567] = {.lex_state = 4, .external_lex_state = 2}, - [1568] = {.lex_state = 4, .external_lex_state = 2}, - [1569] = {.lex_state = 2, .external_lex_state = 2}, - [1570] = {.lex_state = 37, .external_lex_state = 2}, - [1571] = {.lex_state = 37, .external_lex_state = 2}, - [1572] = {.lex_state = 37, .external_lex_state = 4}, - [1573] = {.lex_state = 4, .external_lex_state = 4}, + [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 = 4}, - [1576] = {.lex_state = 37, .external_lex_state = 4}, - [1577] = {.lex_state = 37, .external_lex_state = 4}, - [1578] = {.lex_state = 3, .external_lex_state = 2}, - [1579] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 4}, + [1583] = {.lex_state = 2, .external_lex_state = 2}, [1584] = {.lex_state = 37, .external_lex_state = 4}, - [1585] = {.lex_state = 0, .external_lex_state = 4}, - [1586] = {.lex_state = 3, .external_lex_state = 2}, - [1587] = {.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 = 0, .external_lex_state = 4}, - [1590] = {.lex_state = 37, .external_lex_state = 4}, - [1591] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, - [1597] = {.lex_state = 37, .external_lex_state = 2}, - [1598] = {.lex_state = 0, .external_lex_state = 4}, - [1599] = {.lex_state = 0, .external_lex_state = 4}, - [1600] = {.lex_state = 2, .external_lex_state = 2}, - [1601] = {.lex_state = 37, .external_lex_state = 4}, - [1602] = {.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 = 3, .external_lex_state = 2}, + [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 = 4}, - [1609] = {.lex_state = 3, .external_lex_state = 2}, - [1610] = {.lex_state = 37, .external_lex_state = 4}, - [1611] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 4}, - [1614] = {.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 = 37, .external_lex_state = 2}, - [1617] = {.lex_state = 37, .external_lex_state = 4}, - [1618] = {.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 = 4}, - [1621] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, - [1626] = {.lex_state = 37, .external_lex_state = 4}, - [1627] = {.lex_state = 37, .external_lex_state = 3}, + [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 = 2}, - [1630] = {.lex_state = 37, .external_lex_state = 4}, - [1631] = {.lex_state = 37, .external_lex_state = 4}, - [1632] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, - [1635] = {.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 = 2}, + [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 = 4}, + [1643] = {.lex_state = 37, .external_lex_state = 2}, [1644] = {.lex_state = 37, .external_lex_state = 2}, - [1645] = {.lex_state = 37, .external_lex_state = 4}, - [1646] = {.lex_state = 0, .external_lex_state = 4}, - [1647] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 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 = 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 = 4}, + [1659] = {.lex_state = 37, .external_lex_state = 2}, [1660] = {.lex_state = 37, .external_lex_state = 2}, - [1661] = {.lex_state = 37, .external_lex_state = 2}, - [1662] = {.lex_state = 0, .external_lex_state = 4}, - [1663] = {.lex_state = 0, .external_lex_state = 4}, - [1664] = {.lex_state = 4, .external_lex_state = 2}, - [1665] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 2}, - [1668] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [1674] = {.lex_state = 37, .external_lex_state = 4}, [1675] = {.lex_state = 37, .external_lex_state = 4}, - [1676] = {.lex_state = 4, .external_lex_state = 3}, - [1677] = {.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 = 4, .external_lex_state = 3}, - [1680] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 4}, + [1682] = {.lex_state = 37, .external_lex_state = 2}, [1683] = {.lex_state = 37, .external_lex_state = 4}, - [1684] = {.lex_state = 37, .external_lex_state = 4}, - [1685] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 4}, - [1688] = {.lex_state = 37, .external_lex_state = 2}, - [1689] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 2, .external_lex_state = 2}, + [1692] = {.lex_state = 37, .external_lex_state = 4}, [1693] = {.lex_state = 37, .external_lex_state = 4}, - [1694] = {.lex_state = 37, .external_lex_state = 4}, - [1695] = {.lex_state = 37, .external_lex_state = 4}, - [1696] = {.lex_state = 37, .external_lex_state = 4}, - [1697] = {.lex_state = 4, .external_lex_state = 3}, - [1698] = {.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 = 2, .external_lex_state = 2}, + [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}, @@ -9419,188 +9431,188 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, - [1711] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, - [1714] = {.lex_state = 37, .external_lex_state = 4}, - [1715] = {.lex_state = 2, .external_lex_state = 2}, - [1716] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [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 = 2}, + [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 = 2}, - [1726] = {.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 = 0, .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 = 2}, - [1735] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, - [1738] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 2}, + [1740] = {.lex_state = 37, .external_lex_state = 4}, [1741] = {.lex_state = 37, .external_lex_state = 4}, - [1742] = {.lex_state = 37, .external_lex_state = 2}, + [1742] = {.lex_state = 37, .external_lex_state = 4}, [1743] = {.lex_state = 37, .external_lex_state = 4}, - [1744] = {.lex_state = 2, .external_lex_state = 2}, - [1745] = {.lex_state = 37, .external_lex_state = 2}, - [1746] = {.lex_state = 37, .external_lex_state = 2}, - [1747] = {.lex_state = 37, .external_lex_state = 2}, + [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 = 37, .external_lex_state = 4}, + [1749] = {.lex_state = 2, .external_lex_state = 2}, [1750] = {.lex_state = 37, .external_lex_state = 2}, - [1751] = {.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 = 37, .external_lex_state = 2}, - [1757] = {.lex_state = 37, .external_lex_state = 4}, - [1758] = {.lex_state = 37, .external_lex_state = 2}, - [1759] = {.lex_state = 37, .external_lex_state = 2}, - [1760] = {.lex_state = 37, .external_lex_state = 2}, - [1761] = {.lex_state = 37, .external_lex_state = 4}, - [1762] = {.lex_state = 37, .external_lex_state = 2}, - [1763] = {.lex_state = 37, .external_lex_state = 2}, - [1764] = {.lex_state = 37, .external_lex_state = 2}, - [1765] = {.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 = 37, .external_lex_state = 2}, + [1767] = {.lex_state = 7, .external_lex_state = 2}, [1768] = {.lex_state = 37, .external_lex_state = 4}, - [1769] = {.lex_state = 0, .external_lex_state = 4}, - [1770] = {.lex_state = 37, .external_lex_state = 4}, - [1771] = {.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 = 37, .external_lex_state = 4}, - [1775] = {.lex_state = 37, .external_lex_state = 4}, - [1776] = {.lex_state = 37, .external_lex_state = 2}, - [1777] = {.lex_state = 2, .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 = 37, .external_lex_state = 2}, + [1779] = {.lex_state = 2, .external_lex_state = 2}, [1780] = {.lex_state = 37, .external_lex_state = 2}, - [1781] = {.lex_state = 37, .external_lex_state = 2}, - [1782] = {.lex_state = 37, .external_lex_state = 2}, - [1783] = {.lex_state = 0, .external_lex_state = 4}, - [1784] = {.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 = 37, .external_lex_state = 2}, - [1787] = {.lex_state = 37, .external_lex_state = 2}, - [1788] = {.lex_state = 37, .external_lex_state = 2}, - [1789] = {.lex_state = 37, .external_lex_state = 2}, - [1790] = {.lex_state = 37, .external_lex_state = 2}, - [1791] = {.lex_state = 37, .external_lex_state = 2}, - [1792] = {.lex_state = 37, .external_lex_state = 4}, - [1793] = {.lex_state = 37, .external_lex_state = 2}, - [1794] = {.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 = 3, .external_lex_state = 4}, - [1797] = {.lex_state = 37, .external_lex_state = 2}, - [1798] = {.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 = 4}, - [1802] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, - [1806] = {.lex_state = 37, .external_lex_state = 2}, - [1807] = {.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 = 37, .external_lex_state = 2}, - [1810] = {.lex_state = 37, .external_lex_state = 2}, - [1811] = {.lex_state = 37, .external_lex_state = 2}, - [1812] = {.lex_state = 37, .external_lex_state = 2}, - [1813] = {.lex_state = 37, .external_lex_state = 2}, - [1814] = {.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 = 37, .external_lex_state = 2}, + [1816] = {.lex_state = 2, .external_lex_state = 2}, [1817] = {.lex_state = 37, .external_lex_state = 2}, - [1818] = {.lex_state = 37, .external_lex_state = 2}, - [1819] = {.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 = 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 = 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 = 37, .external_lex_state = 4}, + [1828] = {.lex_state = 3, .external_lex_state = 4}, [1829] = {.lex_state = 37, .external_lex_state = 2}, - [1830] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 37, .external_lex_state = 2}, + [1833] = {.lex_state = 3, .external_lex_state = 4}, [1834] = {.lex_state = 37, .external_lex_state = 2}, - [1835] = {.lex_state = 37, .external_lex_state = 4}, + [1835] = {.lex_state = 37, .external_lex_state = 2}, [1836] = {.lex_state = 37, .external_lex_state = 2}, - [1837] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, + [1840] = {.lex_state = 37, .external_lex_state = 2}, [1841] = {.lex_state = 37, .external_lex_state = 2}, - [1842] = {.lex_state = 37, .external_lex_state = 2}, - [1843] = {.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 = 2}, - [1846] = {.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 = 2}, - [1849] = {.lex_state = 37, .external_lex_state = 2}, - [1850] = {.lex_state = 37, .external_lex_state = 4}, - [1851] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, + [1853] = {.lex_state = 37, .external_lex_state = 4}, [1854] = {.lex_state = 37, .external_lex_state = 2}, - [1855] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, - [1859] = {.lex_state = 37, .external_lex_state = 2}, - [1860] = {.lex_state = 37, .external_lex_state = 2}, - [1861] = {.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 = 4}, - [1865] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2, .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 = 4}, + [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 = 4}, + [1878] = {.lex_state = 37, .external_lex_state = 2}, [1879] = {.lex_state = 37, .external_lex_state = 2}, - [1880] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, + [1883] = {.lex_state = 37, .external_lex_state = 4}, [1884] = {.lex_state = 37, .external_lex_state = 2}, - [1885] = {.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 = 4}, - [1888] = {.lex_state = 37, .external_lex_state = 2}, - [1889] = {.lex_state = 3, .external_lex_state = 4}, + [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 = 4}, + [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}, @@ -9611,171 +9623,171 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, - [1903] = {.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 = 4}, - [1909] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [1912] = {.lex_state = 2, .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 = 2, .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 = 2, .external_lex_state = 2}, - [1920] = {.lex_state = 2, .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 = 2}, + [1926] = {.lex_state = 37, .external_lex_state = 4}, [1927] = {.lex_state = 37, .external_lex_state = 2}, - [1928] = {.lex_state = 3, .external_lex_state = 4}, - [1929] = {.lex_state = 3, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, + [1931] = {.lex_state = 37, .external_lex_state = 4}, [1932] = {.lex_state = 37, .external_lex_state = 2}, - [1933] = {.lex_state = 2, .external_lex_state = 2}, - [1934] = {.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 = 4}, + [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 = 2, .external_lex_state = 2}, - [1944] = {.lex_state = 2, .external_lex_state = 2}, - [1945] = {.lex_state = 37, .external_lex_state = 2}, - [1946] = {.lex_state = 2, .external_lex_state = 2}, - [1947] = {.lex_state = 2, .external_lex_state = 2}, - [1948] = {.lex_state = 37, .external_lex_state = 2}, - [1949] = {.lex_state = 2, .external_lex_state = 2}, - [1950] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 2, .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 = 2, .external_lex_state = 2}, - [1961] = {.lex_state = 7, .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 = 2, .external_lex_state = 2}, - [1964] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, - [1968] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2, .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 = 4}, - [1973] = {.lex_state = 2, .external_lex_state = 2}, - [1974] = {.lex_state = 3, .external_lex_state = 4}, - [1975] = {.lex_state = 37, .external_lex_state = 4}, - [1976] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, - [1981] = {.lex_state = 2, .external_lex_state = 2}, - [1982] = {.lex_state = 2, .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 = 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 = 7, .external_lex_state = 2}, - [1989] = {.lex_state = 2, .external_lex_state = 2}, - [1990] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [1993] = {.lex_state = 2, .external_lex_state = 2}, - [1994] = {.lex_state = 2, .external_lex_state = 2}, - [1995] = {.lex_state = 7, .external_lex_state = 2}, - [1996] = {.lex_state = 37, .external_lex_state = 2}, - [1997] = {.lex_state = 37, .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 = 37, .external_lex_state = 2}, - [2001] = {.lex_state = 7, .external_lex_state = 2}, - [2002] = {.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 = 2, .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 = 4}, - [2008] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [2011] = {.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 = 4}, + [2016] = {.lex_state = 37, .external_lex_state = 2}, [2017] = {.lex_state = 37, .external_lex_state = 2}, - [2018] = {.lex_state = 2, .external_lex_state = 2}, - [2019] = {.lex_state = 37, .external_lex_state = 2}, - [2020] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [2023] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 2}, - [2026] = {.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 = 7, .external_lex_state = 2}, - [2029] = {.lex_state = 2, .external_lex_state = 2}, - [2030] = {.lex_state = 37, .external_lex_state = 4}, + [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 = 4}, - [2034] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [2038] = {.lex_state = 2, .external_lex_state = 2}, - [2039] = {.lex_state = 2, .external_lex_state = 2}, - [2040] = {.lex_state = 2, .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 = 4}, - [2043] = {.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 = 37, .external_lex_state = 2}, - [2047] = {.lex_state = 37, .external_lex_state = 4}, - [2048] = {.lex_state = 3, .external_lex_state = 2}, - [2049] = {.lex_state = 37, .external_lex_state = 4}, - [2050] = {.lex_state = 3, .external_lex_state = 2}, - [2051] = {.lex_state = 3, .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 = 2}, - [2054] = {.lex_state = 37, .external_lex_state = 2}, + [2054] = {.lex_state = 3, .external_lex_state = 2}, [2055] = {.lex_state = 3, .external_lex_state = 2}, - [2056] = {.lex_state = 4, .external_lex_state = 2}, - [2057] = {.lex_state = 37, .external_lex_state = 2}, - [2058] = {.lex_state = 4, .external_lex_state = 2}, - [2059] = {.lex_state = 4, .external_lex_state = 2}, - [2060] = {.lex_state = 4, .external_lex_state = 2}, + [2056] = {.lex_state = 3, .external_lex_state = 2}, + [2057] = {.lex_state = 3, .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 = 37, .external_lex_state = 2}, - [2063] = {.lex_state = 37, .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 = 37, .external_lex_state = 2}, - [2066] = {.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}, @@ -9848,7 +9860,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, @@ -9891,7 +9903,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4, .external_lex_state = 3}, + [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}, @@ -9917,33 +9929,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 37, .external_lex_state = 2}, - [2209] = {.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 = 3}, - [2213] = {.lex_state = 4, .external_lex_state = 3}, - [2214] = {.lex_state = 4, .external_lex_state = 3}, - [2215] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 4, .external_lex_state = 3}, - [2218] = {.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 = 3}, - [2222] = {.lex_state = 37, .external_lex_state = 3}, - [2223] = {.lex_state = 37, .external_lex_state = 3}, - [2224] = {.lex_state = 37, .external_lex_state = 3}, - [2225] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 3, .external_lex_state = 2}, - [2229] = {.lex_state = 4, .external_lex_state = 2}, - [2230] = {.lex_state = 37, .external_lex_state = 2}, - [2231] = {.lex_state = 37, .external_lex_state = 2}, - [2232] = {.lex_state = 37, .external_lex_state = 2}, - [2233] = {.lex_state = 37, .external_lex_state = 2}, - [2234] = {.lex_state = 37, .external_lex_state = 2}, + [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}, @@ -9961,748 +9973,748 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3, .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 = 4, .external_lex_state = 3}, - [2256] = {.lex_state = 4, .external_lex_state = 4}, - [2257] = {.lex_state = 6, .external_lex_state = 2}, - [2258] = {.lex_state = 3, .external_lex_state = 3}, - [2259] = {.lex_state = 4, .external_lex_state = 4}, - [2260] = {.lex_state = 4, .external_lex_state = 4}, - [2261] = {.lex_state = 4, .external_lex_state = 2}, - [2262] = {.lex_state = 2, .external_lex_state = 2}, - [2263] = {.lex_state = 37, .external_lex_state = 2}, - [2264] = {.lex_state = 4, .external_lex_state = 2}, - [2265] = {.lex_state = 3, .external_lex_state = 3}, - [2266] = {.lex_state = 4, .external_lex_state = 4}, - [2267] = {.lex_state = 4, .external_lex_state = 4}, - [2268] = {.lex_state = 2, .external_lex_state = 2}, - [2269] = {.lex_state = 4, .external_lex_state = 2}, - [2270] = {.lex_state = 4, .external_lex_state = 4}, - [2271] = {.lex_state = 4, .external_lex_state = 2}, - [2272] = {.lex_state = 2, .external_lex_state = 2}, - [2273] = {.lex_state = 2, .external_lex_state = 2}, - [2274] = {.lex_state = 2, .external_lex_state = 2}, - [2275] = {.lex_state = 3, .external_lex_state = 4}, - [2276] = {.lex_state = 7, .external_lex_state = 2}, - [2277] = {.lex_state = 7, .external_lex_state = 2}, - [2278] = {.lex_state = 2, .external_lex_state = 2}, + [2255] = {.lex_state = 3, .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 = 2, .external_lex_state = 2}, + [2281] = {.lex_state = 7, .external_lex_state = 2}, [2282] = {.lex_state = 2, .external_lex_state = 2}, - [2283] = {.lex_state = 2, .external_lex_state = 2}, - [2284] = {.lex_state = 3, .external_lex_state = 4}, - [2285] = {.lex_state = 11, .external_lex_state = 2}, - [2286] = {.lex_state = 11, .external_lex_state = 3}, - [2287] = {.lex_state = 11, .external_lex_state = 2}, - [2288] = {.lex_state = 11, .external_lex_state = 2}, - [2289] = {.lex_state = 11, .external_lex_state = 3}, - [2290] = {.lex_state = 11, .external_lex_state = 3}, - [2291] = {.lex_state = 2, .external_lex_state = 2}, - [2292] = {.lex_state = 2, .external_lex_state = 3}, - [2293] = {.lex_state = 9, .external_lex_state = 2}, - [2294] = {.lex_state = 10, .external_lex_state = 2}, - [2295] = {.lex_state = 9, .external_lex_state = 2}, - [2296] = {.lex_state = 4, .external_lex_state = 2}, - [2297] = {.lex_state = 9, .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 = 2, .external_lex_state = 3}, + [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 = 10, .external_lex_state = 2}, - [2305] = {.lex_state = 9, .external_lex_state = 2}, - [2306] = {.lex_state = 9, .external_lex_state = 2}, - [2307] = {.lex_state = 2, .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 = 9, .external_lex_state = 2}, + [2309] = {.lex_state = 2, .external_lex_state = 2}, [2310] = {.lex_state = 8, .external_lex_state = 2}, - [2311] = {.lex_state = 4, .external_lex_state = 3}, - [2312] = {.lex_state = 4, .external_lex_state = 2}, - [2313] = {.lex_state = 4, .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 = 15, .external_lex_state = 2}, - [2316] = {.lex_state = 15, .external_lex_state = 2}, - [2317] = {.lex_state = 15, .external_lex_state = 2}, - [2318] = {.lex_state = 15, .external_lex_state = 2}, - [2319] = {.lex_state = 15, .external_lex_state = 2}, - [2320] = {.lex_state = 15, .external_lex_state = 2}, - [2321] = {.lex_state = 3, .external_lex_state = 2}, - [2322] = {.lex_state = 3, .external_lex_state = 2}, - [2323] = {.lex_state = 15, .external_lex_state = 2}, - [2324] = {.lex_state = 11, .external_lex_state = 2}, + [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 = 11, .external_lex_state = 2}, - [2328] = {.lex_state = 11, .external_lex_state = 2}, - [2329] = {.lex_state = 3, .external_lex_state = 2}, - [2330] = {.lex_state = 3, .external_lex_state = 3}, - [2331] = {.lex_state = 3, .external_lex_state = 2}, - [2332] = {.lex_state = 12, .external_lex_state = 2}, - [2333] = {.lex_state = 12, .external_lex_state = 2}, - [2334] = {.lex_state = 4, .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 = 15, .external_lex_state = 2}, - [2339] = {.lex_state = 15, .external_lex_state = 2}, - [2340] = {.lex_state = 15, .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 = 15, .external_lex_state = 2}, - [2343] = {.lex_state = 12, .external_lex_state = 2}, - [2344] = {.lex_state = 2, .external_lex_state = 2}, - [2345] = {.lex_state = 2, .external_lex_state = 2}, - [2346] = {.lex_state = 11, .external_lex_state = 2}, - [2347] = {.lex_state = 11, .external_lex_state = 2}, - [2348] = {.lex_state = 4, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 1}, - [2351] = {.lex_state = 15, .external_lex_state = 2}, - [2352] = {.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 = 11, .external_lex_state = 2}, - [2356] = {.lex_state = 12, .external_lex_state = 2}, - [2357] = {.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 = 12, .external_lex_state = 2}, - [2360] = {.lex_state = 12, .external_lex_state = 2}, - [2361] = {.lex_state = 11, .external_lex_state = 2}, - [2362] = {.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 = 4, .external_lex_state = 2}, + [2364] = {.lex_state = 12, .external_lex_state = 2}, [2365] = {.lex_state = 15, .external_lex_state = 2}, - [2366] = {.lex_state = 15, .external_lex_state = 2}, - [2367] = {.lex_state = 4, .external_lex_state = 4}, - [2368] = {.lex_state = 12, .external_lex_state = 2}, - [2369] = {.lex_state = 11, .external_lex_state = 2}, - [2370] = {.lex_state = 2, .external_lex_state = 3}, - [2371] = {.lex_state = 2, .external_lex_state = 3}, - [2372] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 15, .external_lex_state = 2}, - [2378] = {.lex_state = 15, .external_lex_state = 2}, - [2379] = {.lex_state = 12, .external_lex_state = 2}, - [2380] = {.lex_state = 0, .external_lex_state = 2}, - [2381] = {.lex_state = 11, .external_lex_state = 2}, - [2382] = {.lex_state = 2, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 2}, - [2384] = {.lex_state = 15, .external_lex_state = 2}, - [2385] = {.lex_state = 11, .external_lex_state = 2}, - [2386] = {.lex_state = 15, .external_lex_state = 2}, + [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 = 11, .external_lex_state = 2}, + [2388] = {.lex_state = 15, .external_lex_state = 2}, [2389] = {.lex_state = 2, .external_lex_state = 3}, - [2390] = {.lex_state = 15, .external_lex_state = 2}, - [2391] = {.lex_state = 11, .external_lex_state = 2}, + [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 = 11, .external_lex_state = 2}, - [2395] = {.lex_state = 3, .external_lex_state = 2}, - [2396] = {.lex_state = 15, .external_lex_state = 2}, - [2397] = {.lex_state = 15, .external_lex_state = 2}, - [2398] = {.lex_state = 15, .external_lex_state = 2}, - [2399] = {.lex_state = 0, .external_lex_state = 2}, - [2400] = {.lex_state = 11, .external_lex_state = 2}, - [2401] = {.lex_state = 0, .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 = 0, .external_lex_state = 2}, - [2404] = {.lex_state = 15, .external_lex_state = 2}, - [2405] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 2, .external_lex_state = 3}, - [2410] = {.lex_state = 2, .external_lex_state = 3}, - [2411] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 3}, - [2414] = {.lex_state = 2, .external_lex_state = 3}, - [2415] = {.lex_state = 0, .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 = 15, .external_lex_state = 2}, - [2418] = {.lex_state = 11, .external_lex_state = 2}, - [2419] = {.lex_state = 2, .external_lex_state = 3}, - [2420] = {.lex_state = 2, .external_lex_state = 1}, - [2421] = {.lex_state = 11, .external_lex_state = 2}, - [2422] = {.lex_state = 0, .external_lex_state = 2}, - [2423] = {.lex_state = 15, .external_lex_state = 2}, - [2424] = {.lex_state = 4, .external_lex_state = 2}, - [2425] = {.lex_state = 0, .external_lex_state = 2}, - [2426] = {.lex_state = 2, .external_lex_state = 3}, - [2427] = {.lex_state = 2, .external_lex_state = 3}, + [2417] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 15, .external_lex_state = 2}, - [2430] = {.lex_state = 11, .external_lex_state = 2}, - [2431] = {.lex_state = 4, .external_lex_state = 2}, - [2432] = {.lex_state = 11, .external_lex_state = 2}, - [2433] = {.lex_state = 15, .external_lex_state = 2}, - [2434] = {.lex_state = 4, .external_lex_state = 4}, - [2435] = {.lex_state = 11, .external_lex_state = 2}, - [2436] = {.lex_state = 15, .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 = 2, .external_lex_state = 3}, - [2443] = {.lex_state = 2, .external_lex_state = 3}, - [2444] = {.lex_state = 2, .external_lex_state = 3}, - [2445] = {.lex_state = 2, .external_lex_state = 3}, - [2446] = {.lex_state = 3, .external_lex_state = 2}, - [2447] = {.lex_state = 11, .external_lex_state = 2}, - [2448] = {.lex_state = 4, .external_lex_state = 2}, + [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 = 15, .external_lex_state = 2}, + [2446] = {.lex_state = 15, .external_lex_state = 2}, + [2447] = {.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 = 11, .external_lex_state = 2}, + [2450] = {.lex_state = 15, .external_lex_state = 2}, [2451] = {.lex_state = 15, .external_lex_state = 2}, - [2452] = {.lex_state = 2, .external_lex_state = 4}, - [2453] = {.lex_state = 0, .external_lex_state = 3}, - [2454] = {.lex_state = 15, .external_lex_state = 4}, - [2455] = {.lex_state = 11, .external_lex_state = 2}, - [2456] = {.lex_state = 3, .external_lex_state = 4}, - [2457] = {.lex_state = 3, .external_lex_state = 2}, - [2458] = {.lex_state = 0, .external_lex_state = 3}, - [2459] = {.lex_state = 2, .external_lex_state = 4}, - [2460] = {.lex_state = 3, .external_lex_state = 2}, - [2461] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 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 = 2, .external_lex_state = 3}, - [2464] = {.lex_state = 0, .external_lex_state = 3}, - [2465] = {.lex_state = 0, .external_lex_state = 2}, - [2466] = {.lex_state = 2, .external_lex_state = 4}, - [2467] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 13, .external_lex_state = 2}, - [2470] = {.lex_state = 2, .external_lex_state = 3}, - [2471] = {.lex_state = 2, .external_lex_state = 2}, - [2472] = {.lex_state = 3, .external_lex_state = 2}, - [2473] = {.lex_state = 9, .external_lex_state = 2}, - [2474] = {.lex_state = 9, .external_lex_state = 2}, - [2475] = {.lex_state = 15, .external_lex_state = 4}, - [2476] = {.lex_state = 11, .external_lex_state = 2}, - [2477] = {.lex_state = 2, .external_lex_state = 2}, - [2478] = {.lex_state = 0, .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 = 2, .external_lex_state = 4}, - [2481] = {.lex_state = 13, .external_lex_state = 2}, - [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 0, .external_lex_state = 3}, + [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 = 3, .external_lex_state = 2}, - [2486] = {.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 = 2, .external_lex_state = 2}, - [2489] = {.lex_state = 9, .external_lex_state = 2}, - [2490] = {.lex_state = 13, .external_lex_state = 2}, - [2491] = {.lex_state = 3, .external_lex_state = 4}, + [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 = 13, .external_lex_state = 2}, - [2494] = {.lex_state = 3, .external_lex_state = 2}, - [2495] = {.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 = 3}, - [2497] = {.lex_state = 3, .external_lex_state = 2}, - [2498] = {.lex_state = 3, .external_lex_state = 2}, - [2499] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 2}, - [2503] = {.lex_state = 3, .external_lex_state = 2}, - [2504] = {.lex_state = 3, .external_lex_state = 2}, - [2505] = {.lex_state = 15, .external_lex_state = 2}, - [2506] = {.lex_state = 0, .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 = 3, .external_lex_state = 2}, - [2509] = {.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 = 0, .external_lex_state = 3}, - [2513] = {.lex_state = 0, .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 = 9, .external_lex_state = 2}, - [2516] = {.lex_state = 3, .external_lex_state = 2}, - [2517] = {.lex_state = 2, .external_lex_state = 4}, - [2518] = {.lex_state = 0, .external_lex_state = 4}, - [2519] = {.lex_state = 3, .external_lex_state = 2}, - [2520] = {.lex_state = 13, .external_lex_state = 2}, - [2521] = {.lex_state = 3, .external_lex_state = 2}, - [2522] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 11, .external_lex_state = 2}, + [2524] = {.lex_state = 3, .external_lex_state = 2}, [2525] = {.lex_state = 3, .external_lex_state = 2}, - [2526] = {.lex_state = 2, .external_lex_state = 4}, - [2527] = {.lex_state = 2, .external_lex_state = 2}, - [2528] = {.lex_state = 3, .external_lex_state = 2}, - [2529] = {.lex_state = 0, .external_lex_state = 4}, - [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 0, .external_lex_state = 2}, - [2532] = {.lex_state = 0, .external_lex_state = 4}, - [2533] = {.lex_state = 0, .external_lex_state = 2}, - [2534] = {.lex_state = 3, .external_lex_state = 3}, - [2535] = {.lex_state = 0, .external_lex_state = 4}, - [2536] = {.lex_state = 2, .external_lex_state = 2}, - [2537] = {.lex_state = 2, .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 = 13, .external_lex_state = 2}, + [2532] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 0, .external_lex_state = 4}, - [2541] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 3}, - [2544] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 3, .external_lex_state = 2}, - [2547] = {.lex_state = 2, .external_lex_state = 2}, - [2548] = {.lex_state = 0, .external_lex_state = 4}, - [2549] = {.lex_state = 2, .external_lex_state = 2}, - [2550] = {.lex_state = 0, .external_lex_state = 4}, - [2551] = {.lex_state = 3, .external_lex_state = 4}, - [2552] = {.lex_state = 0, .external_lex_state = 4}, - [2553] = {.lex_state = 0, .external_lex_state = 4}, - [2554] = {.lex_state = 0, .external_lex_state = 2}, - [2555] = {.lex_state = 0, .external_lex_state = 2}, - [2556] = {.lex_state = 0, .external_lex_state = 4}, - [2557] = {.lex_state = 0, .external_lex_state = 4}, - [2558] = {.lex_state = 0, .external_lex_state = 4}, - [2559] = {.lex_state = 0, .external_lex_state = 2}, - [2560] = {.lex_state = 3, .external_lex_state = 2}, - [2561] = {.lex_state = 0, .external_lex_state = 4}, - [2562] = {.lex_state = 11, .external_lex_state = 2}, - [2563] = {.lex_state = 2, .external_lex_state = 2}, - [2564] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 3, .external_lex_state = 2}, + [2551] = {.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 = 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 = 2, .external_lex_state = 2}, - [2566] = {.lex_state = 0, .external_lex_state = 4}, - [2567] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 3}, - [2571] = {.lex_state = 0, .external_lex_state = 4}, + [2570] = {.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 = 0, .external_lex_state = 4}, - [2574] = {.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 = 3, .external_lex_state = 2}, + [2576] = {.lex_state = 2, .external_lex_state = 2}, [2577] = {.lex_state = 0, .external_lex_state = 4}, - [2578] = {.lex_state = 2, .external_lex_state = 2}, + [2578] = {.lex_state = 3, .external_lex_state = 2}, [2579] = {.lex_state = 2, .external_lex_state = 2}, - [2580] = {.lex_state = 0, .external_lex_state = 4}, - [2581] = {.lex_state = 3, .external_lex_state = 4}, - [2582] = {.lex_state = 2, .external_lex_state = 4}, - [2583] = {.lex_state = 2, .external_lex_state = 2}, - [2584] = {.lex_state = 5, .external_lex_state = 2}, - [2585] = {.lex_state = 3, .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 = 4}, [2586] = {.lex_state = 0, .external_lex_state = 4}, [2587] = {.lex_state = 0, .external_lex_state = 4}, - [2588] = {.lex_state = 5, .external_lex_state = 2}, - [2589] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 3, .external_lex_state = 2}, - [2593] = {.lex_state = 5, .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 = 15, .external_lex_state = 2}, - [2596] = {.lex_state = 0, .external_lex_state = 2}, - [2597] = {.lex_state = 2, .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 = 4}, - [2600] = {.lex_state = 0, .external_lex_state = 4}, - [2601] = {.lex_state = 3, .external_lex_state = 4}, - [2602] = {.lex_state = 3, .external_lex_state = 2}, - [2603] = {.lex_state = 0, .external_lex_state = 4}, - [2604] = {.lex_state = 5, .external_lex_state = 2}, - [2605] = {.lex_state = 11, .external_lex_state = 2}, - [2606] = {.lex_state = 0, .external_lex_state = 2}, - [2607] = {.lex_state = 0, .external_lex_state = 3}, - [2608] = {.lex_state = 3, .external_lex_state = 2}, - [2609] = {.lex_state = 2, .external_lex_state = 2}, - [2610] = {.lex_state = 2, .external_lex_state = 4}, - [2611] = {.lex_state = 0, .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 = 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 = 2, .external_lex_state = 2}, + [2613] = {.lex_state = 0, .external_lex_state = 4}, [2614] = {.lex_state = 0, .external_lex_state = 4}, - [2615] = {.lex_state = 2, .external_lex_state = 4}, - [2616] = {.lex_state = 3, .external_lex_state = 4}, - [2617] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 1}, + [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 = 0, .external_lex_state = 4}, - [2623] = {.lex_state = 0, .external_lex_state = 4}, - [2624] = {.lex_state = 0, .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 = 2}, - [2628] = {.lex_state = 2, .external_lex_state = 4}, - [2629] = {.lex_state = 3, .external_lex_state = 2}, + [2627] = {.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 = 3, .external_lex_state = 2}, [2631] = {.lex_state = 0, .external_lex_state = 4}, [2632] = {.lex_state = 0, .external_lex_state = 4}, - [2633] = {.lex_state = 2, .external_lex_state = 2}, + [2633] = {.lex_state = 5, .external_lex_state = 2}, [2634] = {.lex_state = 0, .external_lex_state = 4}, - [2635] = {.lex_state = 2, .external_lex_state = 2}, - [2636] = {.lex_state = 2, .external_lex_state = 2}, - [2637] = {.lex_state = 2, .external_lex_state = 4}, - [2638] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 4}, [2639] = {.lex_state = 2, .external_lex_state = 2}, - [2640] = {.lex_state = 0, .external_lex_state = 2}, - [2641] = {.lex_state = 2, .external_lex_state = 2}, + [2640] = {.lex_state = 0, .external_lex_state = 4}, + [2641] = {.lex_state = 0, .external_lex_state = 4}, [2642] = {.lex_state = 0, .external_lex_state = 4}, - [2643] = {.lex_state = 3, .external_lex_state = 2}, - [2644] = {.lex_state = 2, .external_lex_state = 2}, - [2645] = {.lex_state = 2, .external_lex_state = 4}, + [2643] = {.lex_state = 0, .external_lex_state = 2}, + [2644] = {.lex_state = 3, .external_lex_state = 2}, + [2645] = {.lex_state = 0, .external_lex_state = 4}, [2646] = {.lex_state = 0, .external_lex_state = 4}, - [2647] = {.lex_state = 3, .external_lex_state = 4}, - [2648] = {.lex_state = 2, .external_lex_state = 4}, - [2649] = {.lex_state = 2, .external_lex_state = 4}, - [2650] = {.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 = 4}, + [2650] = {.lex_state = 15, .external_lex_state = 2}, [2651] = {.lex_state = 0, .external_lex_state = 4}, - [2652] = {.lex_state = 0, .external_lex_state = 3}, - [2653] = {.lex_state = 0, .external_lex_state = 4}, - [2654] = {.lex_state = 2, .external_lex_state = 4}, - [2655] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 5, .external_lex_state = 2}, - [2658] = {.lex_state = 0, .external_lex_state = 2}, - [2659] = {.lex_state = 0, .external_lex_state = 4}, - [2660] = {.lex_state = 2, .external_lex_state = 2}, - [2661] = {.lex_state = 2, .external_lex_state = 2}, - [2662] = {.lex_state = 0, .external_lex_state = 3}, - [2663] = {.lex_state = 3, .external_lex_state = 4}, - [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 = 5, .external_lex_state = 2}, - [2668] = {.lex_state = 0, .external_lex_state = 4}, + [2657] = {.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 = 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 = 2}, - [2671] = {.lex_state = 2, .external_lex_state = 4}, - [2672] = {.lex_state = 5, .external_lex_state = 2}, - [2673] = {.lex_state = 0, .external_lex_state = 4}, - [2674] = {.lex_state = 3, .external_lex_state = 2}, - [2675] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 15, .external_lex_state = 2}, + [2677] = {.lex_state = 0, .external_lex_state = 4}, [2678] = {.lex_state = 0, .external_lex_state = 4}, - [2679] = {.lex_state = 0, .external_lex_state = 4}, - [2680] = {.lex_state = 2, .external_lex_state = 4}, - [2681] = {.lex_state = 2, .external_lex_state = 4}, - [2682] = {.lex_state = 2, .external_lex_state = 4}, - [2683] = {.lex_state = 2, .external_lex_state = 2}, - [2684] = {.lex_state = 5, .external_lex_state = 2}, - [2685] = {.lex_state = 2, .external_lex_state = 2}, - [2686] = {.lex_state = 0, .external_lex_state = 2}, - [2687] = {.lex_state = 15, .external_lex_state = 2}, - [2688] = {.lex_state = 0, .external_lex_state = 3}, - [2689] = {.lex_state = 0, .external_lex_state = 2}, - [2690] = {.lex_state = 2, .external_lex_state = 4}, - [2691] = {.lex_state = 3, .external_lex_state = 4}, - [2692] = {.lex_state = 2, .external_lex_state = 2}, - [2693] = {.lex_state = 0, .external_lex_state = 4}, - [2694] = {.lex_state = 0, .external_lex_state = 2}, - [2695] = {.lex_state = 5, .external_lex_state = 2}, - [2696] = {.lex_state = 15, .external_lex_state = 2}, - [2697] = {.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 = 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 = 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 = 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 = 2, .external_lex_state = 2}, - [2700] = {.lex_state = 15, .external_lex_state = 2}, - [2701] = {.lex_state = 0, .external_lex_state = 4}, - [2702] = {.lex_state = 0, .external_lex_state = 3}, + [2700] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, - [2705] = {.lex_state = 0, .external_lex_state = 4}, - [2706] = {.lex_state = 0, .external_lex_state = 2}, - [2707] = {.lex_state = 0, .external_lex_state = 4}, - [2708] = {.lex_state = 0, .external_lex_state = 4}, + [2704] = {.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 = 15, .external_lex_state = 2}, + [2708] = {.lex_state = 11, .external_lex_state = 2}, [2709] = {.lex_state = 0, .external_lex_state = 4}, [2710] = {.lex_state = 2, .external_lex_state = 2}, - [2711] = {.lex_state = 2, .external_lex_state = 2}, - [2712] = {.lex_state = 2, .external_lex_state = 2}, - [2713] = {.lex_state = 0, .external_lex_state = 4}, - [2714] = {.lex_state = 0, .external_lex_state = 4}, - [2715] = {.lex_state = 0, .external_lex_state = 2}, - [2716] = {.lex_state = 0, .external_lex_state = 4}, - [2717] = {.lex_state = 0, .external_lex_state = 2}, - [2718] = {.lex_state = 2, .external_lex_state = 2}, - [2719] = {.lex_state = 3, .external_lex_state = 2}, - [2720] = {.lex_state = 2, .external_lex_state = 4}, + [2711] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 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 = 2, .external_lex_state = 2}, - [2722] = {.lex_state = 0, .external_lex_state = 4}, - [2723] = {.lex_state = 2, .external_lex_state = 2}, - [2724] = {.lex_state = 2, .external_lex_state = 1}, + [2722] = {.lex_state = 3, .external_lex_state = 4}, + [2723] = {.lex_state = 0, .external_lex_state = 4}, + [2724] = {.lex_state = 3, .external_lex_state = 4}, [2725] = {.lex_state = 0, .external_lex_state = 4}, [2726] = {.lex_state = 0, .external_lex_state = 4}, - [2727] = {.lex_state = 0, .external_lex_state = 4}, - [2728] = {.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}, + [2730] = {.lex_state = 2, .external_lex_state = 2}, [2731] = {.lex_state = 2, .external_lex_state = 2}, - [2732] = {.lex_state = 2, .external_lex_state = 2}, - [2733] = {.lex_state = 3, .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 = 2}, - [2738] = {.lex_state = 3, .external_lex_state = 2}, - [2739] = {.lex_state = 2, .external_lex_state = 2}, - [2740] = {.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 = 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 = 2, .external_lex_state = 1}, [2741] = {.lex_state = 0, .external_lex_state = 4}, [2742] = {.lex_state = 0, .external_lex_state = 4}, - [2743] = {.lex_state = 2, .external_lex_state = 4}, - [2744] = {.lex_state = 2, .external_lex_state = 2}, - [2745] = {.lex_state = 2, .external_lex_state = 2}, - [2746] = {.lex_state = 0, .external_lex_state = 4}, - [2747] = {.lex_state = 0, .external_lex_state = 2}, - [2748] = {.lex_state = 2, .external_lex_state = 2}, - [2749] = {.lex_state = 0, .external_lex_state = 4}, - [2750] = {.lex_state = 0, .external_lex_state = 4}, - [2751] = {.lex_state = 2, .external_lex_state = 2}, - [2752] = {.lex_state = 0, .external_lex_state = 4}, - [2753] = {.lex_state = 2, .external_lex_state = 4}, - [2754] = {.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 = 2, .external_lex_state = 4}, [2755] = {.lex_state = 0, .external_lex_state = 4}, - [2756] = {.lex_state = 0, .external_lex_state = 4}, - [2757] = {.lex_state = 2, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 4}, + [2759] = {.lex_state = 5, .external_lex_state = 2}, [2760] = {.lex_state = 2, .external_lex_state = 2}, - [2761] = {.lex_state = 0, .external_lex_state = 4}, - [2762] = {.lex_state = 0, .external_lex_state = 4}, - [2763] = {.lex_state = 2, .external_lex_state = 2}, - [2764] = {.lex_state = 2, .external_lex_state = 2}, - [2765] = {.lex_state = 0, .external_lex_state = 4}, - [2766] = {.lex_state = 3, .external_lex_state = 4}, - [2767] = {.lex_state = 0, .external_lex_state = 4}, - [2768] = {.lex_state = 0, .external_lex_state = 4}, - [2769] = {.lex_state = 0, .external_lex_state = 4}, - [2770] = {.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 = 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 = 2, .external_lex_state = 4}, + [2770] = {.lex_state = 0, .external_lex_state = 4}, [2771] = {.lex_state = 0, .external_lex_state = 4}, - [2772] = {.lex_state = 2, .external_lex_state = 2}, - [2773] = {.lex_state = 3, .external_lex_state = 4}, - [2774] = {.lex_state = 2, .external_lex_state = 4}, - [2775] = {.lex_state = 0, .external_lex_state = 4}, - [2776] = {.lex_state = 0, .external_lex_state = 4}, - [2777] = {.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 = 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 = 2}, - [2780] = {.lex_state = 2, .external_lex_state = 2}, - [2781] = {.lex_state = 2, .external_lex_state = 4}, - [2782] = {.lex_state = 2, .external_lex_state = 4}, - [2783] = {.lex_state = 2, .external_lex_state = 4}, - [2784] = {.lex_state = 0, .external_lex_state = 4}, - [2785] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 2}, + [2785] = {.lex_state = 3, .external_lex_state = 4}, [2786] = {.lex_state = 0, .external_lex_state = 4}, - [2787] = {.lex_state = 5, .external_lex_state = 2}, - [2788] = {.lex_state = 3, .external_lex_state = 2}, - [2789] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, [2792] = {.lex_state = 0, .external_lex_state = 4}, - [2793] = {.lex_state = 2, .external_lex_state = 2}, - [2794] = {.lex_state = 2, .external_lex_state = 2}, - [2795] = {.lex_state = 2, .external_lex_state = 2}, - [2796] = {.lex_state = 3, .external_lex_state = 4}, - [2797] = {.lex_state = 2, .external_lex_state = 4}, - [2798] = {.lex_state = 2, .external_lex_state = 4}, - [2799] = {.lex_state = 2, .external_lex_state = 4}, - [2800] = {.lex_state = 2, .external_lex_state = 2}, - [2801] = {.lex_state = 2, .external_lex_state = 2}, - [2802] = {.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 = 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 = 4}, - [2805] = {.lex_state = 0, .external_lex_state = 4}, - [2806] = {.lex_state = 0, .external_lex_state = 4}, - [2807] = {.lex_state = 0, .external_lex_state = 4}, - [2808] = {.lex_state = 0, .external_lex_state = 4}, - [2809] = {.lex_state = 2, .external_lex_state = 2}, - [2810] = {.lex_state = 2, .external_lex_state = 2}, - [2811] = {.lex_state = 2, .external_lex_state = 2}, - [2812] = {.lex_state = 3, .external_lex_state = 4}, + [2804] = {.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 = 3}, - [2816] = {.lex_state = 2, .external_lex_state = 4}, - [2817] = {.lex_state = 0, .external_lex_state = 4}, - [2818] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [2820] = {.lex_state = 2, .external_lex_state = 2}, - [2821] = {.lex_state = 0, .external_lex_state = 3}, - [2822] = {.lex_state = 0, .external_lex_state = 4}, - [2823] = {.lex_state = 5, .external_lex_state = 2}, - [2824] = {.lex_state = 0, .external_lex_state = 4}, - [2825] = {.lex_state = 2, .external_lex_state = 2}, - [2826] = {.lex_state = 3, .external_lex_state = 4}, - [2827] = {.lex_state = 0, .external_lex_state = 4}, - [2828] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [2831] = {.lex_state = 0, .external_lex_state = 2}, - [2832] = {.lex_state = 0, .external_lex_state = 2}, - [2833] = {.lex_state = 0, .external_lex_state = 2}, - [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 = 2}, - [2842] = {.lex_state = 0, .external_lex_state = 2}, - [2843] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, - [2846] = {.lex_state = 2, .external_lex_state = 2}, - [2847] = {.lex_state = 0, .external_lex_state = 2}, - [2848] = {.lex_state = 0, .external_lex_state = 2}, - [2849] = {.lex_state = 0, .external_lex_state = 3}, - [2850] = {.lex_state = 0, .external_lex_state = 2}, - [2851] = {.lex_state = 3, .external_lex_state = 2}, - [2852] = {.lex_state = 0, .external_lex_state = 4}, - [2853] = {.lex_state = 2, .external_lex_state = 2}, - [2854] = {.lex_state = 15, .external_lex_state = 2}, - [2855] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 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 = 3}, - [2858] = {.lex_state = 3, .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 = 0, .external_lex_state = 2}, - [2861] = {.lex_state = 3, .external_lex_state = 2}, - [2862] = {.lex_state = 0, .external_lex_state = 2}, - [2863] = {.lex_state = 3, .external_lex_state = 2}, - [2864] = {.lex_state = 0, .external_lex_state = 2}, - [2865] = {.lex_state = 3, .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 = 2, .external_lex_state = 3}, + [2865] = {.lex_state = 15, .external_lex_state = 2}, [2866] = {.lex_state = 0, .external_lex_state = 2}, - [2867] = {.lex_state = 15, .external_lex_state = 2}, + [2867] = {.lex_state = 0, .external_lex_state = 4}, [2868] = {.lex_state = 15, .external_lex_state = 2}, - [2869] = {.lex_state = 2, .external_lex_state = 2}, + [2869] = {.lex_state = 15, .external_lex_state = 2}, [2870] = {.lex_state = 15, .external_lex_state = 2}, - [2871] = {.lex_state = 2, .external_lex_state = 2}, - [2872] = {.lex_state = 2, .external_lex_state = 2}, + [2871] = {.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 = 4}, + [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 = 2, .external_lex_state = 2}, - [2881] = {.lex_state = 15, .external_lex_state = 2}, - [2882] = {.lex_state = 2, .external_lex_state = 2}, - [2883] = {.lex_state = 3, .external_lex_state = 2}, - [2884] = {.lex_state = 15, .external_lex_state = 2}, - [2885] = {.lex_state = 2, .external_lex_state = 2}, - [2886] = {.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 = 2}, + [2885] = {.lex_state = 0, .external_lex_state = 2}, + [2886] = {.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 = 2}, - [2890] = {.lex_state = 0, .external_lex_state = 2}, - [2891] = {.lex_state = 3, .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 = 0, .external_lex_state = 2}, - [2894] = {.lex_state = 15, .external_lex_state = 2}, - [2895] = {.lex_state = 0, .external_lex_state = 2}, - [2896] = {.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 = 0, .external_lex_state = 2}, - [2899] = {.lex_state = 2, .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 = 0, .external_lex_state = 2}, - [2903] = {.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 = 15, .external_lex_state = 2}, + [2905] = {.lex_state = 2, .external_lex_state = 2}, [2906] = {.lex_state = 2, .external_lex_state = 2}, - [2907] = {.lex_state = 3, .external_lex_state = 2}, - [2908] = {.lex_state = 2, .external_lex_state = 2}, - [2909] = {.lex_state = 15, .external_lex_state = 2}, - [2910] = {.lex_state = 0, .external_lex_state = 2}, - [2911] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 2, .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 = 15, .external_lex_state = 2}, - [2917] = {.lex_state = 15, .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 = 2, .external_lex_state = 2}, + [2919] = {.lex_state = 0, .external_lex_state = 2}, [2920] = {.lex_state = 0, .external_lex_state = 2}, - [2921] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [2926] = {.lex_state = 2, .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 = 4}, + [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 = 4}, - [2934] = {.lex_state = 2, .external_lex_state = 2}, - [2935] = {.lex_state = 15, .external_lex_state = 2}, - [2936] = {.lex_state = 2, .external_lex_state = 2}, - [2937] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [2942] = {.lex_state = 2, .external_lex_state = 2}, - [2943] = {.lex_state = 2, .external_lex_state = 2}, - [2944] = {.lex_state = 2, .external_lex_state = 2}, - [2945] = {.lex_state = 2, .external_lex_state = 2}, - [2946] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [2951] = {.lex_state = 0, .external_lex_state = 2}, - [2952] = {.lex_state = 2, .external_lex_state = 2}, - [2953] = {.lex_state = 2, .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 = 0, .external_lex_state = 2}, - [2957] = {.lex_state = 15, .external_lex_state = 2}, - [2958] = {.lex_state = 3, .external_lex_state = 2}, - [2959] = {.lex_state = 2, .external_lex_state = 3}, - [2960] = {.lex_state = 0, .external_lex_state = 3}, - [2961] = {.lex_state = 0, .external_lex_state = 3}, - [2962] = {.lex_state = 0, .external_lex_state = 2}, - [2963] = {.lex_state = 0, .external_lex_state = 4}, - [2964] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [2967] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [2970] = {.lex_state = 15, .external_lex_state = 2}, - [2971] = {.lex_state = 0, .external_lex_state = 3}, - [2972] = {.lex_state = 15, .external_lex_state = 2}, - [2973] = {.lex_state = 15, .external_lex_state = 2}, - [2974] = {.lex_state = 0, .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 = 2}, - [2977] = {.lex_state = 2, .external_lex_state = 2}, - [2978] = {.lex_state = 0, .external_lex_state = 2}, - [2979] = {.lex_state = 0, .external_lex_state = 4}, - [2980] = {.lex_state = 3, .external_lex_state = 2}, - [2981] = {.lex_state = 0, .external_lex_state = 3}, - [2982] = {.lex_state = 0, .external_lex_state = 2}, - [2983] = {.lex_state = 15, .external_lex_state = 2}, - [2984] = {.lex_state = 2, .external_lex_state = 2}, - [2985] = {.lex_state = 2, .external_lex_state = 2}, - [2986] = {.lex_state = 0, .external_lex_state = 2}, - [2987] = {.lex_state = 2, .external_lex_state = 2}, - [2988] = {.lex_state = 2, .external_lex_state = 2}, - [2989] = {.lex_state = 0, .external_lex_state = 2}, - [2990] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 0, .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}, @@ -10710,42 +10722,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 15, .external_lex_state = 2}, + [3001] = {.lex_state = 2, .external_lex_state = 2}, [3002] = {.lex_state = 2, .external_lex_state = 2}, - [3003] = {.lex_state = 2, .external_lex_state = 2}, - [3004] = {.lex_state = 0, .external_lex_state = 3}, - [3005] = {.lex_state = 0, .external_lex_state = 3}, - [3006] = {.lex_state = 0, .external_lex_state = 3}, - [3007] = {.lex_state = 0, .external_lex_state = 2}, - [3008] = {.lex_state = 0, .external_lex_state = 4}, - [3009] = {.lex_state = 15, .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 = 0, .external_lex_state = 4}, - [3013] = {.lex_state = 0, .external_lex_state = 2}, - [3014] = {.lex_state = 0, .external_lex_state = 2}, - [3015] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .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 = 4}, - [3020] = {.lex_state = 2, .external_lex_state = 2}, - [3021] = {.lex_state = 0, .external_lex_state = 2}, - [3022] = {.lex_state = 2, .external_lex_state = 2}, - [3023] = {.lex_state = 2, .external_lex_state = 2}, - [3024] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 15, .external_lex_state = 2}, - [3027] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 2}, - [3030] = {.lex_state = 2, .external_lex_state = 2}, - [3031] = {.lex_state = 2, .external_lex_state = 2}, - [3032] = {.lex_state = 3, .external_lex_state = 2}, - [3033] = {.lex_state = 0, .external_lex_state = 2}, - [3034] = {.lex_state = 0, .external_lex_state = 4}, - [3035] = {.lex_state = 2, .external_lex_state = 2}, - [3036] = {.lex_state = 15, .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}, @@ -10753,26 +10765,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 0, .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 = 15, .external_lex_state = 2}, - [3048] = {.lex_state = 0, .external_lex_state = 3}, - [3049] = {.lex_state = 15, .external_lex_state = 2}, - [3050] = {.lex_state = 15, .external_lex_state = 2}, - [3051] = {.lex_state = 15, .external_lex_state = 2}, - [3052] = {.lex_state = 15, .external_lex_state = 2}, - [3053] = {.lex_state = 0, .external_lex_state = 2}, - [3054] = {.lex_state = 0, .external_lex_state = 2}, - [3055] = {.lex_state = 15, .external_lex_state = 2}, - [3056] = {.lex_state = 0, .external_lex_state = 2}, - [3057] = {.lex_state = 15, .external_lex_state = 2}, - [3058] = {.lex_state = 15, .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 = 15, .external_lex_state = 2}, - [3061] = {.lex_state = 0, .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 = 2, .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}, @@ -10781,61 +10793,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 0, .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 = 15, .external_lex_state = 2}, - [3076] = {.lex_state = 2, .external_lex_state = 2}, - [3077] = {.lex_state = 0, .external_lex_state = 3}, - [3078] = {.lex_state = 15, .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 = 15, .external_lex_state = 2}, - [3081] = {.lex_state = 2, .external_lex_state = 2}, - [3082] = {.lex_state = 0, .external_lex_state = 2}, - [3083] = {.lex_state = 15, .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 = 3}, - [3087] = {.lex_state = 0, .external_lex_state = 4}, - [3088] = {.lex_state = 3, .external_lex_state = 2}, - [3089] = {.lex_state = 0, .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 = 2, .external_lex_state = 2}, + [3091] = {.lex_state = 0, .external_lex_state = 2}, [3092] = {.lex_state = 2, .external_lex_state = 2}, - [3093] = {.lex_state = 0, .external_lex_state = 2}, - [3094] = {.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 = 3, .external_lex_state = 2}, - [3097] = {.lex_state = 0, .external_lex_state = 2}, - [3098] = {.lex_state = 0, .external_lex_state = 2}, - [3099] = {.lex_state = 0, .external_lex_state = 2}, - [3100] = {.lex_state = 0, .external_lex_state = 2}, - [3101] = {.lex_state = 0, .external_lex_state = 4}, - [3102] = {.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 = 15, .external_lex_state = 2}, + [3105] = {.lex_state = 2, .external_lex_state = 2}, [3106] = {.lex_state = 0, .external_lex_state = 2}, - [3107] = {.lex_state = 2, .external_lex_state = 2}, - [3108] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 2}, - [3111] = {.lex_state = 0, .external_lex_state = 4}, - [3112] = {.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 = 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 = 4}, - [3125] = {.lex_state = 0, .external_lex_state = 2}, - [3126] = {.lex_state = 0, .external_lex_state = 4}, + [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}, @@ -10846,85 +10858,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [3137] = {.lex_state = 0, .external_lex_state = 4}, [3138] = {.lex_state = 0, .external_lex_state = 2}, - [3139] = {.lex_state = 13, .external_lex_state = 2}, - [3140] = {.lex_state = 2, .external_lex_state = 2}, - [3141] = {.lex_state = 2, .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 = 15, .external_lex_state = 2}, + [3148] = {.lex_state = 0, .external_lex_state = 4}, [3149] = {.lex_state = 0, .external_lex_state = 2}, - [3150] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, - [3154] = {.lex_state = 0, .external_lex_state = 2}, - [3155] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 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 = 2}, - [3161] = {.lex_state = 0, .external_lex_state = 2}, - [3162] = {.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 = 4}, + [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 = 2}, + [3169] = {.lex_state = 0, .external_lex_state = 4}, [3170] = {.lex_state = 0, .external_lex_state = 4}, - [3171] = {.lex_state = 13, .external_lex_state = 2}, + [3171] = {.lex_state = 0, .external_lex_state = 2}, [3172] = {.lex_state = 0, .external_lex_state = 4}, - [3173] = {.lex_state = 0, .external_lex_state = 2}, + [3173] = {.lex_state = 0, .external_lex_state = 4}, [3174] = {.lex_state = 0, .external_lex_state = 2}, - [3175] = {.lex_state = 0, .external_lex_state = 2}, - [3176] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, - [3179] = {.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 = 13, .external_lex_state = 2}, - [3186] = {.lex_state = 2, .external_lex_state = 2}, - [3187] = {.lex_state = 0, .external_lex_state = 4}, - [3188] = {.lex_state = 0, .external_lex_state = 4}, - [3189] = {.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 = 2}, - [3193] = {.lex_state = 0, .external_lex_state = 2}, - [3194] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 0, .external_lex_state = 2}, - [3199] = {.lex_state = 2, .external_lex_state = 2}, - [3200] = {.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 = 0, .external_lex_state = 2}, - [3206] = {.lex_state = 0, .external_lex_state = 2}, - [3207] = {.lex_state = 0, .external_lex_state = 2}, - [3208] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, + [3211] = {.lex_state = 0, .external_lex_state = 2}, [3212] = {.lex_state = 0, .external_lex_state = 2}, - [3213] = {.lex_state = 2, .external_lex_state = 2}, + [3213] = {.lex_state = 0, .external_lex_state = 2}, [3214] = {.lex_state = 0, .external_lex_state = 2}, - [3215] = {.lex_state = 2, .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}, @@ -10932,80 +10944,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 2}, - [3224] = {.lex_state = 0, .external_lex_state = 4}, - [3225] = {.lex_state = 2, .external_lex_state = 2}, - [3226] = {.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 = 2, .external_lex_state = 2}, - [3229] = {.lex_state = 13, .external_lex_state = 2}, - [3230] = {.lex_state = 0, .external_lex_state = 4}, - [3231] = {.lex_state = 0, .external_lex_state = 2}, - [3232] = {.lex_state = 0, .external_lex_state = 4}, - [3233] = {.lex_state = 0, .external_lex_state = 4}, - [3234] = {.lex_state = 0, .external_lex_state = 2}, - [3235] = {.lex_state = 0, .external_lex_state = 2}, - [3236] = {.lex_state = 0, .external_lex_state = 2}, - [3237] = {.lex_state = 0, .external_lex_state = 2}, - [3238] = {.lex_state = 0, .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 = 0, .external_lex_state = 2}, + [3240] = {.lex_state = 2, .external_lex_state = 2}, [3241] = {.lex_state = 0, .external_lex_state = 2}, - [3242] = {.lex_state = 0, .external_lex_state = 2}, - [3243] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [3246] = {.lex_state = 2, .external_lex_state = 2}, + [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 = 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 = 3}, + [3253] = {.lex_state = 0, .external_lex_state = 4}, [3254] = {.lex_state = 0, .external_lex_state = 2}, - [3255] = {.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 = 4}, - [3258] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 4}, - [3261] = {.lex_state = 0, .external_lex_state = 2}, - [3262] = {.lex_state = 13, .external_lex_state = 2}, - [3263] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 0, .external_lex_state = 2}, - [3270] = {.lex_state = 2, .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 = 2, .external_lex_state = 2}, - [3273] = {.lex_state = 2, .external_lex_state = 2}, - [3274] = {.lex_state = 2, .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 = 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 = 0, .external_lex_state = 2}, - [3282] = {.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 = 0, .external_lex_state = 4}, + [3284] = {.lex_state = 13, .external_lex_state = 2}, [3285] = {.lex_state = 0, .external_lex_state = 2}, - [3286] = {.lex_state = 2, .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 = 4}, + [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 = 4}, - [3293] = {.lex_state = 0, .external_lex_state = 2}, - [3294] = {.lex_state = 0, .external_lex_state = 2}, - [3295] = {.lex_state = 0, .external_lex_state = 2}, - [3296] = {.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}, @@ -11019,7 +11031,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4}, + [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}, @@ -11028,391 +11040,397 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3, .external_lex_state = 2}, - [3320] = {.lex_state = 0, .external_lex_state = 4}, - [3321] = {.lex_state = 0, .external_lex_state = 4}, - [3322] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2, .external_lex_state = 2}, - [3325] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [3328] = {.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 = 4}, + [3331] = {.lex_state = 0, .external_lex_state = 2}, [3332] = {.lex_state = 0, .external_lex_state = 2}, - [3333] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, + [3340] = {.lex_state = 0, .external_lex_state = 4}, [3341] = {.lex_state = 0, .external_lex_state = 4}, - [3342] = {.lex_state = 0, .external_lex_state = 2}, - [3343] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, - [3349] = {.lex_state = 0, .external_lex_state = 2}, - [3350] = {.lex_state = 0, .external_lex_state = 2}, - [3351] = {.lex_state = 0, .external_lex_state = 4}, - [3352] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [3355] = {.lex_state = 0, .external_lex_state = 2}, - [3356] = {.lex_state = 0, .external_lex_state = 4}, - [3357] = {.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 = 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 = 4}, + [3365] = {.lex_state = 0, .external_lex_state = 2}, [3366] = {.lex_state = 0, .external_lex_state = 4}, - [3367] = {.lex_state = 0, .external_lex_state = 4}, - [3368] = {.lex_state = 0, .external_lex_state = 4}, - [3369] = {.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 = 2}, - [3372] = {.lex_state = 0, .external_lex_state = 2}, - [3373] = {.lex_state = 0, .external_lex_state = 4}, - [3374] = {.lex_state = 0, .external_lex_state = 2}, - [3375] = {.lex_state = 0, .external_lex_state = 2}, - [3376] = {.lex_state = 0, .external_lex_state = 4}, - [3377] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 2}, + [3379] = {.lex_state = 0, .external_lex_state = 4}, [3380] = {.lex_state = 0, .external_lex_state = 2}, - [3381] = {.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 = 2}, - [3384] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [3388] = {.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 = 4}, - [3391] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 2}, - [3395] = {.lex_state = 0, .external_lex_state = 4}, - [3396] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 3, .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 = 0, .external_lex_state = 2}, + [3402] = {.lex_state = 3, .external_lex_state = 2}, [3403] = {.lex_state = 0, .external_lex_state = 4}, - [3404] = {.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 = 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 = 2}, - [3410] = {.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 = 4}, + [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 = 4}, - [3417] = {.lex_state = 0, .external_lex_state = 4}, - [3418] = {.lex_state = 2, .external_lex_state = 2}, - [3419] = {.lex_state = 0, .external_lex_state = 2}, - [3420] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, - [3423] = {.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 = 2}, + [3425] = {.lex_state = 0, .external_lex_state = 4}, [3426] = {.lex_state = 0, .external_lex_state = 4}, - [3427] = {.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 = 2}, - [3431] = {.lex_state = 2, .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 = 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 = 0, .external_lex_state = 4}, + [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 = 4}, - [3441] = {.lex_state = 0, .external_lex_state = 4}, - [3442] = {.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 = 2}, + [3446] = {.lex_state = 0, .external_lex_state = 4}, [3447] = {.lex_state = 0, .external_lex_state = 2}, - [3448] = {.lex_state = 0, .external_lex_state = 2}, - [3449] = {.lex_state = 0, .external_lex_state = 4}, - [3450] = {.lex_state = 0, .external_lex_state = 2}, - [3451] = {.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 = 0, .external_lex_state = 2}, + [3453] = {.lex_state = 3, .external_lex_state = 2}, [3454] = {.lex_state = 0, .external_lex_state = 2}, - [3455] = {.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 = 0, .external_lex_state = 2}, + [3460] = {.lex_state = 2, .external_lex_state = 2}, [3461] = {.lex_state = 0, .external_lex_state = 4}, - [3462] = {.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 = 2}, + [3464] = {.lex_state = 0, .external_lex_state = 4}, [3465] = {.lex_state = 0, .external_lex_state = 2}, - [3466] = {.lex_state = 0, .external_lex_state = 4}, + [3466] = {.lex_state = 0, .external_lex_state = 2}, [3467] = {.lex_state = 0, .external_lex_state = 2}, - [3468] = {.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 = 4}, - [3474] = {.lex_state = 0, .external_lex_state = 4}, - [3475] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, + [3478] = {.lex_state = 0, .external_lex_state = 4}, [3479] = {.lex_state = 0, .external_lex_state = 4}, - [3480] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3484] = {.lex_state = 0, .external_lex_state = 2}, [3485] = {.lex_state = 0, .external_lex_state = 2}, - [3486] = {.lex_state = 0, .external_lex_state = 2}, - [3487] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [3491] = {.lex_state = 0, .external_lex_state = 4}, - [3492] = {.lex_state = 0, .external_lex_state = 2}, - [3493] = {.lex_state = 0, .external_lex_state = 4}, - [3494] = {.lex_state = 0, .external_lex_state = 4}, - [3495] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, - [3498] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, - [3503] = {.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 = 4}, - [3507] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [3511] = {.lex_state = 0, .external_lex_state = 4}, [3512] = {.lex_state = 0, .external_lex_state = 2}, - [3513] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [3516] = {.lex_state = 0, .external_lex_state = 2}, [3517] = {.lex_state = 0, .external_lex_state = 2}, - [3518] = {.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 = 2}, - [3522] = {.lex_state = 0, .external_lex_state = 2}, - [3523] = {.lex_state = 0, .external_lex_state = 4}, - [3524] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 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 = 2}, - [3532] = {.lex_state = 0, .external_lex_state = 2}, - [3533] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 3, .external_lex_state = 2}, + [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 = 4}, - [3541] = {.lex_state = 0, .external_lex_state = 4}, - [3542] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [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 = 0, .external_lex_state = 4}, + [3552] = {.lex_state = 2, .external_lex_state = 2}, [3553] = {.lex_state = 0, .external_lex_state = 2}, - [3554] = {.lex_state = 0, .external_lex_state = 2}, - [3555] = {.lex_state = 0, .external_lex_state = 2}, - [3556] = {.lex_state = 0, .external_lex_state = 2}, - [3557] = {.lex_state = 0, .external_lex_state = 2}, - [3558] = {.lex_state = 0, .external_lex_state = 2}, - [3559] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [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 = 4}, - [3569] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3571] = {.lex_state = 0, .external_lex_state = 2}, [3572] = {.lex_state = 0, .external_lex_state = 2}, - [3573] = {.lex_state = 0, .external_lex_state = 4}, - [3574] = {.lex_state = 3, .external_lex_state = 2}, - [3575] = {.lex_state = 0, .external_lex_state = 2}, - [3576] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [3580] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, - [3583] = {.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 = 2}, + [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 = 2}, + [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 = 4}, - [3592] = {.lex_state = 0, .external_lex_state = 4}, - [3593] = {.lex_state = 0, .external_lex_state = 2}, - [3594] = {.lex_state = 0, .external_lex_state = 4}, - [3595] = {.lex_state = 0, .external_lex_state = 4}, - [3596] = {.lex_state = 0, .external_lex_state = 4}, - [3597] = {.lex_state = 0, .external_lex_state = 2}, - [3598] = {.lex_state = 0, .external_lex_state = 4}, - [3599] = {.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 = 4}, + [3602] = {.lex_state = 0, .external_lex_state = 2}, [3603] = {.lex_state = 0, .external_lex_state = 4}, - [3604] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, - [3608] = {.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 = 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 = 2}, + [3614] = {.lex_state = 0, .external_lex_state = 4}, [3615] = {.lex_state = 0, .external_lex_state = 4}, - [3616] = {.lex_state = 0, .external_lex_state = 2}, + [3616] = {.lex_state = 0, .external_lex_state = 4}, [3617] = {.lex_state = 0, .external_lex_state = 2}, - [3618] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [3622] = {.lex_state = 0, .external_lex_state = 4}, - [3623] = {.lex_state = 0, .external_lex_state = 4}, - [3624] = {.lex_state = 0, .external_lex_state = 2}, - [3625] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, + [3627] = {.lex_state = 0, .external_lex_state = 2}, [3628] = {.lex_state = 0, .external_lex_state = 4}, - [3629] = {.lex_state = 0, .external_lex_state = 4}, - [3630] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, - [3636] = {.lex_state = 0, .external_lex_state = 4}, - [3637] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, - [3642] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 4}, - [3646] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 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 = 2}, - [3652] = {.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 = 2}, - [3655] = {.lex_state = 0, .external_lex_state = 2}, - [3656] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 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 = 4}, - [3666] = {.lex_state = 0, .external_lex_state = 4}, - [3667] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 4}, + [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 = 4}, - [3677] = {.lex_state = 0, .external_lex_state = 2}, - [3678] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, - [3684] = {.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 = 4}, - [3688] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 2}, - [3691] = {.lex_state = 0, .external_lex_state = 4}, - [3692] = {.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 = 2}, - [3695] = {.lex_state = 0, .external_lex_state = 2}, + [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 = 2}, + [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 = 4}, + [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] = { @@ -11531,67 +11549,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__closing_brace_unmarker] = ACTIONS(3), }, [1] = { - [sym_module] = STATE(3444), - [sym_preprocessor_statement] = STATE(28), - [sym_package_statement] = STATE(28), - [sym_import_statement] = STATE(28), - [sym_using_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym__rhs_expression] = STATE(1272), - [sym__unaryExpression] = STATE(3586), - [sym_runtime_type_check_expression] = STATE(3586), - [sym_switch_expression] = STATE(836), - [sym_cast_expression] = STATE(3586), - [sym_type_trace_expression] = STATE(3586), - [sym__parenthesized_expression] = STATE(2727), - [sym_for_statement] = STATE(28), - [sym_range_expression] = STATE(3586), - [sym_subscript_expression] = STATE(3586), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(28), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(28), - [sym_conditional_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_while_statement] = STATE(28), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1272), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(28), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(28), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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), @@ -11644,124 +11662,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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(472), - [sym_package_statement] = STATE(472), - [sym_import_statement] = STATE(472), - [sym_using_statement] = STATE(472), - [sym_throw_statement] = STATE(472), - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3697), - [sym_runtime_type_check_expression] = STATE(3697), - [sym_switch_expression] = STATE(391), - [sym_cast_expression] = STATE(3697), - [sym_type_trace_expression] = STATE(3697), - [sym__parenthesized_expression] = STATE(2529), - [sym_for_statement] = STATE(472), - [sym_range_expression] = STATE(3697), - [sym_subscript_expression] = STATE(3697), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(472), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(472), - [sym_conditional_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_while_statement] = STATE(472), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(472), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_case] = ACTIONS(113), - [anon_sym_default] = ACTIONS(113), + [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(115), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [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(123), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), + [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), @@ -11788,125 +11806,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), + [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(584), - [sym_package_statement] = STATE(584), - [sym_import_statement] = STATE(584), - [sym_using_statement] = STATE(584), - [sym_throw_statement] = STATE(584), - [sym__rhs_expression] = STATE(1143), - [sym__unaryExpression] = STATE(3506), - [sym_runtime_type_check_expression] = STATE(3506), - [sym_switch_expression] = STATE(414), - [sym_cast_expression] = STATE(3506), - [sym_type_trace_expression] = STATE(3506), - [sym__parenthesized_expression] = STATE(2707), - [sym_for_statement] = STATE(584), - [sym_range_expression] = STATE(3506), - [sym_subscript_expression] = STATE(3506), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(584), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(584), - [sym_conditional_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_do_while_statement] = STATE(584), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1143), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(584), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_case] = ACTIONS(149), - [anon_sym_default] = ACTIONS(149), + [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(115), - [anon_sym_return] = ACTIONS(151), - [anon_sym_untyped] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(155), + [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(123), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), + [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), @@ -11933,124 +11951,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(157), + [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(472), - [sym_package_statement] = STATE(472), - [sym_import_statement] = STATE(472), - [sym_using_statement] = STATE(472), - [sym_throw_statement] = STATE(472), - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3697), - [sym_runtime_type_check_expression] = STATE(3697), - [sym_switch_expression] = STATE(391), - [sym_cast_expression] = STATE(3697), - [sym_type_trace_expression] = STATE(3697), - [sym__parenthesized_expression] = STATE(2529), - [sym_for_statement] = STATE(472), - [sym_range_expression] = STATE(3697), - [sym_subscript_expression] = STATE(3697), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(472), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(472), - [sym_conditional_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_while_statement] = STATE(472), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(472), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_case] = ACTIONS(113), - [anon_sym_default] = ACTIONS(113), + [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(159), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [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(161), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(129), + [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), @@ -12077,124 +12095,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), + [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(472), - [sym_package_statement] = STATE(472), - [sym_import_statement] = STATE(472), - [sym_using_statement] = STATE(472), - [sym_throw_statement] = STATE(472), - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3697), - [sym_runtime_type_check_expression] = STATE(3697), - [sym_switch_expression] = STATE(391), - [sym_cast_expression] = STATE(3697), - [sym_type_trace_expression] = STATE(3697), - [sym__parenthesized_expression] = STATE(2529), - [sym_for_statement] = STATE(472), - [sym_range_expression] = STATE(3697), - [sym_subscript_expression] = STATE(3697), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(472), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(472), - [sym_conditional_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_while_statement] = STATE(472), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(472), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_case] = ACTIONS(113), - [anon_sym_default] = ACTIONS(113), + [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(167), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [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(169), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(173), - [anon_sym_do] = ACTIONS(129), + [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), @@ -12221,124 +12239,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), + [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(584), - [sym_package_statement] = STATE(584), - [sym_import_statement] = STATE(584), - [sym_using_statement] = STATE(584), - [sym_throw_statement] = STATE(584), - [sym__rhs_expression] = STATE(1143), - [sym__unaryExpression] = STATE(3506), - [sym_runtime_type_check_expression] = STATE(3506), - [sym_switch_expression] = STATE(414), - [sym_cast_expression] = STATE(3506), - [sym_type_trace_expression] = STATE(3506), - [sym__parenthesized_expression] = STATE(2707), - [sym_for_statement] = STATE(584), - [sym_range_expression] = STATE(3506), - [sym_subscript_expression] = STATE(3506), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(584), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(584), - [sym_conditional_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_do_while_statement] = STATE(584), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1143), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(584), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_case] = ACTIONS(149), - [anon_sym_default] = ACTIONS(149), + [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(159), - [anon_sym_return] = ACTIONS(151), - [anon_sym_untyped] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(155), + [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(161), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(129), + [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), @@ -12365,124 +12383,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(157), + [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(584), - [sym_package_statement] = STATE(584), - [sym_import_statement] = STATE(584), - [sym_using_statement] = STATE(584), - [sym_throw_statement] = STATE(584), - [sym__rhs_expression] = STATE(1143), - [sym__unaryExpression] = STATE(3506), - [sym_runtime_type_check_expression] = STATE(3506), - [sym_switch_expression] = STATE(414), - [sym_cast_expression] = STATE(3506), - [sym_type_trace_expression] = STATE(3506), - [sym__parenthesized_expression] = STATE(2707), - [sym_for_statement] = STATE(584), - [sym_range_expression] = STATE(3506), - [sym_subscript_expression] = STATE(3506), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(584), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(584), - [sym_conditional_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_do_while_statement] = STATE(584), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1143), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(584), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_case] = ACTIONS(149), - [anon_sym_default] = ACTIONS(149), + [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(167), - [anon_sym_return] = ACTIONS(151), - [anon_sym_untyped] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(155), + [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(169), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(173), - [anon_sym_do] = ACTIONS(129), + [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), @@ -12509,266 +12527,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(157), + [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(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(157), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(178), - [anon_sym_package] = ACTIONS(181), - [anon_sym_import] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(190), - [anon_sym_throw] = ACTIONS(193), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(214), - [anon_sym_untyped] = ACTIONS(217), - [anon_sym_break] = ACTIONS(220), - [anon_sym_continue] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_AT_COLON] = ACTIONS(232), - [anon_sym_try] = ACTIONS(235), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(238), - [anon_sym_while] = ACTIONS(241), - [anon_sym_do] = ACTIONS(244), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(268), - [anon_sym_abstract] = ACTIONS(268), - [anon_sym_static] = ACTIONS(268), - [anon_sym_public] = ACTIONS(268), - [anon_sym_private] = ACTIONS(268), - [anon_sym_extern] = ACTIONS(268), - [anon_sym_inline] = ACTIONS(268), - [anon_sym_overload] = ACTIONS(268), - [anon_sym_override] = ACTIONS(268), - [anon_sym_final] = ACTIONS(271), - [anon_sym_class] = ACTIONS(274), - [anon_sym_interface] = ACTIONS(277), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_typedef] = ACTIONS(283), - [anon_sym_function] = ACTIONS(286), - [anon_sym_var] = ACTIONS(289), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [9] = { - [sym_preprocessor_statement] = STATE(584), - [sym_package_statement] = STATE(584), - [sym_import_statement] = STATE(584), - [sym_using_statement] = STATE(584), - [sym_throw_statement] = STATE(584), - [sym__rhs_expression] = STATE(1143), - [sym__unaryExpression] = STATE(3506), - [sym_runtime_type_check_expression] = STATE(3506), - [sym_switch_expression] = STATE(414), - [sym_cast_expression] = STATE(3506), - [sym_type_trace_expression] = STATE(3506), - [sym__parenthesized_expression] = STATE(2707), - [sym_for_statement] = STATE(584), - [sym_range_expression] = STATE(3506), - [sym_subscript_expression] = STATE(3506), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(584), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(584), - [sym_conditional_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_do_while_statement] = STATE(584), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1143), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(584), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_case] = ACTIONS(149), - [anon_sym_default] = ACTIONS(149), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(151), - [anon_sym_untyped] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(155), + [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(315), - [anon_sym_if] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(129), + [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), @@ -12795,123 +12670,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(157), + [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(19), - [sym_package_statement] = STATE(19), - [sym_import_statement] = STATE(19), - [sym_using_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(612), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(19), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(19), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(19), - [sym_conditional_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_while_statement] = STATE(19), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(19), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(19), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [9] = { + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -12938,123 +12813,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(337), + [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), }, - [11] = { - [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(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(2020), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(13), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(13), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(13), - [sym_conditional_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_while_statement] = STATE(13), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(13), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1835), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1835), - [sym_bool] = STATE(1835), - [sym_string] = STATE(1590), - [sym_null] = STATE(1835), - [sym_array] = STATE(1835), - [sym_map] = STATE(1835), - [sym_object] = STATE(1835), - [sym_pair] = STATE(1457), - [aux_sym_module_repeat1] = STATE(13), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(339), - [anon_sym_POUND] = ACTIONS(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [10] = { + [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(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -13081,123 +12956,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(341), + [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), }, - [12] = { - [sym_preprocessor_statement] = STATE(38), - [sym_package_statement] = STATE(38), - [sym_import_statement] = STATE(38), - [sym_using_statement] = STATE(38), - [sym_throw_statement] = STATE(38), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(3576), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(38), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(38), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(38), - [sym_conditional_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_while_statement] = STATE(38), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(38), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [11] = { + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [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(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -13224,123 +13099,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(343), + [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), }, - [13] = { - [sym_preprocessor_statement] = STATE(38), - [sym_package_statement] = STATE(38), - [sym_import_statement] = STATE(38), - [sym_using_statement] = STATE(38), - [sym_throw_statement] = STATE(38), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(821), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(38), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(38), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(38), - [sym_conditional_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_while_statement] = STATE(38), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(38), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [12] = { + [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(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -13367,123 +13242,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(341), + [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), }, - [14] = { - [sym_preprocessor_statement] = STATE(12), - [sym_package_statement] = STATE(12), - [sym_import_statement] = STATE(12), - [sym_using_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(3681), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(12), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(12), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(12), - [sym_conditional_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_while_statement] = STATE(12), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(12), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(12), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [13] = { + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -13510,123 +13385,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(343), + [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), }, - [15] = { - [sym_preprocessor_statement] = STATE(12), - [sym_package_statement] = STATE(12), - [sym_import_statement] = STATE(12), - [sym_using_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(2714), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(12), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(12), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(12), - [sym_conditional_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_while_statement] = STATE(12), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(12), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1835), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1835), - [sym_bool] = STATE(1835), - [sym_string] = STATE(1590), - [sym_null] = STATE(1835), - [sym_array] = STATE(1835), - [sym_map] = STATE(1835), - [sym_object] = STATE(1835), - [sym_pair] = STATE(1457), - [aux_sym_module_repeat1] = STATE(12), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(339), - [anon_sym_POUND] = ACTIONS(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [14] = { + [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(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [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(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -13653,552 +13528,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(343), + [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), }, - [16] = { + [15] = { [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(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(395), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), + [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(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), + [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(2262), + [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(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), + [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(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1835), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1835), - [sym_bool] = STATE(1835), - [sym_string] = STATE(1590), - [sym_null] = STATE(1835), - [sym_array] = STATE(1835), - [sym_map] = STATE(1835), - [sym_object] = STATE(1835), - [sym_pair] = STATE(1430), + [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(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(339), - [anon_sym_POUND] = ACTIONS(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), - [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(343), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [17] = { - [sym_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(348), - [anon_sym_package] = ACTIONS(351), - [anon_sym_import] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(360), - [anon_sym_throw] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(381), - [anon_sym_return] = ACTIONS(384), - [anon_sym_untyped] = ACTIONS(387), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_AT_COLON] = ACTIONS(402), - [anon_sym_try] = ACTIONS(405), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(408), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(414), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(438), - [anon_sym_abstract] = ACTIONS(438), - [anon_sym_static] = ACTIONS(438), - [anon_sym_public] = ACTIONS(438), - [anon_sym_private] = ACTIONS(438), - [anon_sym_extern] = ACTIONS(438), - [anon_sym_inline] = ACTIONS(438), - [anon_sym_overload] = ACTIONS(438), - [anon_sym_override] = ACTIONS(438), - [anon_sym_final] = ACTIONS(441), - [anon_sym_class] = ACTIONS(444), - [anon_sym_interface] = ACTIONS(447), - [anon_sym_enum] = ACTIONS(450), - [anon_sym_typedef] = ACTIONS(453), - [anon_sym_function] = ACTIONS(456), - [anon_sym_var] = ACTIONS(459), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [18] = { - [sym_preprocessor_statement] = STATE(472), - [sym_package_statement] = STATE(472), - [sym_import_statement] = STATE(472), - [sym_using_statement] = STATE(472), - [sym_throw_statement] = STATE(472), - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3697), - [sym_runtime_type_check_expression] = STATE(3697), - [sym_switch_expression] = STATE(391), - [sym_cast_expression] = STATE(3697), - [sym_type_trace_expression] = STATE(3697), - [sym__parenthesized_expression] = STATE(2529), - [sym_for_statement] = STATE(472), - [sym_range_expression] = STATE(3697), - [sym_subscript_expression] = STATE(3697), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(472), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(472), - [sym_conditional_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_while_statement] = STATE(472), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(472), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(483), - [anon_sym_package] = ACTIONS(486), - [anon_sym_import] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(492), - [anon_sym_throw] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(504), - [anon_sym_return] = ACTIONS(507), - [anon_sym_untyped] = ACTIONS(510), - [anon_sym_break] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_AT_COLON] = ACTIONS(402), - [anon_sym_try] = ACTIONS(516), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(519), - [anon_sym_while] = ACTIONS(522), - [anon_sym_do] = ACTIONS(525), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(528), - [anon_sym_abstract] = ACTIONS(528), - [anon_sym_static] = ACTIONS(528), - [anon_sym_public] = ACTIONS(528), - [anon_sym_private] = ACTIONS(528), - [anon_sym_extern] = ACTIONS(528), - [anon_sym_inline] = ACTIONS(528), - [anon_sym_overload] = ACTIONS(528), - [anon_sym_override] = ACTIONS(528), - [anon_sym_final] = ACTIONS(531), - [anon_sym_class] = ACTIONS(534), - [anon_sym_interface] = ACTIONS(537), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_typedef] = ACTIONS(543), - [anon_sym_function] = ACTIONS(546), - [anon_sym_var] = ACTIONS(549), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [19] = { - [sym_preprocessor_statement] = STATE(38), - [sym_package_statement] = STATE(38), - [sym_import_statement] = STATE(38), - [sym_using_statement] = STATE(38), - [sym_throw_statement] = STATE(38), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(581), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(38), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(38), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(38), - [sym_conditional_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_while_statement] = STATE(38), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(38), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -14225,123 +13671,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(337), + [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), }, - [20] = { - [sym_preprocessor_statement] = STATE(19), - [sym_package_statement] = STATE(19), - [sym_import_statement] = STATE(19), - [sym_using_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(356), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(19), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(19), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(19), - [sym_conditional_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_while_statement] = STATE(19), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(19), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1835), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1835), - [sym_bool] = STATE(1835), - [sym_string] = STATE(1590), - [sym_null] = STATE(1835), - [sym_array] = STATE(1835), - [sym_map] = STATE(1835), - [sym_object] = STATE(1835), - [sym_pair] = STATE(1430), - [aux_sym_module_repeat1] = STATE(19), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(339), - [anon_sym_POUND] = ACTIONS(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [16] = { + [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(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -14368,123 +13814,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(552), + [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), }, - [21] = { - [sym_preprocessor_statement] = STATE(472), - [sym_package_statement] = STATE(472), - [sym_import_statement] = STATE(472), - [sym_using_statement] = STATE(472), - [sym_throw_statement] = STATE(472), - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3697), - [sym_runtime_type_check_expression] = STATE(3697), - [sym_switch_expression] = STATE(391), - [sym_cast_expression] = STATE(3697), - [sym_type_trace_expression] = STATE(3697), - [sym__parenthesized_expression] = STATE(2529), - [sym_for_statement] = STATE(472), - [sym_range_expression] = STATE(3697), - [sym_subscript_expression] = STATE(3697), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(472), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(472), - [sym_conditional_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_while_statement] = STATE(472), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(472), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_case] = ACTIONS(113), - [anon_sym_default] = ACTIONS(113), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(117), - [anon_sym_untyped] = ACTIONS(119), - [anon_sym_break] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(121), + [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(315), - [anon_sym_if] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(129), + [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), @@ -14511,266 +13957,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), + [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), }, - [22] = { - [sym_preprocessor_statement] = STATE(584), - [sym_package_statement] = STATE(584), - [sym_import_statement] = STATE(584), - [sym_using_statement] = STATE(584), - [sym_throw_statement] = STATE(584), - [sym__rhs_expression] = STATE(1143), - [sym__unaryExpression] = STATE(3506), - [sym_runtime_type_check_expression] = STATE(3506), - [sym_switch_expression] = STATE(414), - [sym_cast_expression] = STATE(3506), - [sym_type_trace_expression] = STATE(3506), - [sym__parenthesized_expression] = STATE(2707), - [sym_for_statement] = STATE(584), - [sym_range_expression] = STATE(3506), - [sym_subscript_expression] = STATE(3506), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(584), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(584), - [sym_conditional_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_do_while_statement] = STATE(584), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1143), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(584), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_package] = ACTIONS(557), - [anon_sym_import] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(575), - [anon_sym_return] = ACTIONS(578), - [anon_sym_untyped] = ACTIONS(581), - [anon_sym_break] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_AT_COLON] = ACTIONS(232), - [anon_sym_try] = ACTIONS(587), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(590), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(596), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(599), - [anon_sym_abstract] = ACTIONS(599), - [anon_sym_static] = ACTIONS(599), - [anon_sym_public] = ACTIONS(599), - [anon_sym_private] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(599), - [anon_sym_inline] = ACTIONS(599), - [anon_sym_overload] = ACTIONS(599), - [anon_sym_override] = ACTIONS(599), - [anon_sym_final] = ACTIONS(602), - [anon_sym_class] = ACTIONS(605), - [anon_sym_interface] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_typedef] = ACTIONS(614), - [anon_sym_function] = ACTIONS(617), - [anon_sym_var] = ACTIONS(620), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(157), + [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(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(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(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(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), }, - [23] = { - [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(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym__closing_brace] = STATE(780), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(13), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(13), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(13), - [sym_conditional_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_while_statement] = STATE(13), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(13), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(13), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [19] = { + [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(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(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_untyped] = ACTIONS(327), - [anon_sym_break] = ACTIONS(329), - [anon_sym_continue] = ACTIONS(329), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -14797,666 +14386,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(341), + [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_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_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_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_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(348), - [anon_sym_package] = ACTIONS(351), - [anon_sym_import] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(360), - [anon_sym_throw] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(623), - [anon_sym_return] = ACTIONS(384), - [anon_sym_untyped] = ACTIONS(387), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_AT_COLON] = ACTIONS(402), - [anon_sym_try] = ACTIONS(626), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(629), - [anon_sym_while] = ACTIONS(632), - [anon_sym_do] = ACTIONS(414), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(438), - [anon_sym_abstract] = ACTIONS(438), - [anon_sym_static] = ACTIONS(438), - [anon_sym_public] = ACTIONS(438), - [anon_sym_private] = ACTIONS(438), - [anon_sym_extern] = ACTIONS(438), - [anon_sym_inline] = ACTIONS(438), - [anon_sym_overload] = ACTIONS(438), - [anon_sym_override] = ACTIONS(438), - [anon_sym_final] = ACTIONS(441), - [anon_sym_class] = ACTIONS(444), - [anon_sym_interface] = ACTIONS(447), - [anon_sym_enum] = ACTIONS(450), - [anon_sym_typedef] = ACTIONS(453), - [anon_sym_function] = ACTIONS(456), - [anon_sym_var] = ACTIONS(459), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), + [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_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(157), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(178), - [anon_sym_package] = ACTIONS(181), - [anon_sym_import] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(190), - [anon_sym_throw] = ACTIONS(193), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(635), - [anon_sym_return] = ACTIONS(214), - [anon_sym_untyped] = ACTIONS(217), - [anon_sym_break] = ACTIONS(220), - [anon_sym_continue] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_AT_COLON] = ACTIONS(232), - [anon_sym_try] = ACTIONS(638), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(641), - [anon_sym_while] = ACTIONS(644), - [anon_sym_do] = ACTIONS(244), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(268), - [anon_sym_abstract] = ACTIONS(268), - [anon_sym_static] = ACTIONS(268), - [anon_sym_public] = ACTIONS(268), - [anon_sym_private] = ACTIONS(268), - [anon_sym_extern] = ACTIONS(268), - [anon_sym_inline] = ACTIONS(268), - [anon_sym_overload] = ACTIONS(268), - [anon_sym_override] = ACTIONS(268), - [anon_sym_final] = ACTIONS(271), - [anon_sym_class] = ACTIONS(274), - [anon_sym_interface] = ACTIONS(277), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_typedef] = ACTIONS(283), - [anon_sym_function] = ACTIONS(286), - [anon_sym_var] = ACTIONS(289), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), - [sym_comment] = ACTIONS(3), + [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_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(157), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(178), - [anon_sym_package] = ACTIONS(181), - [anon_sym_import] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(190), - [anon_sym_throw] = ACTIONS(193), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(647), - [anon_sym_return] = ACTIONS(214), - [anon_sym_untyped] = ACTIONS(217), - [anon_sym_break] = ACTIONS(220), - [anon_sym_continue] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_AT_COLON] = ACTIONS(232), - [anon_sym_try] = ACTIONS(650), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_if] = ACTIONS(653), - [anon_sym_while] = ACTIONS(656), - [anon_sym_do] = ACTIONS(244), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(268), - [anon_sym_abstract] = ACTIONS(268), - [anon_sym_static] = ACTIONS(268), - [anon_sym_public] = ACTIONS(268), - [anon_sym_private] = ACTIONS(268), - [anon_sym_extern] = ACTIONS(268), - [anon_sym_inline] = ACTIONS(268), - [anon_sym_overload] = ACTIONS(268), - [anon_sym_override] = ACTIONS(268), - [anon_sym_final] = ACTIONS(271), - [anon_sym_class] = ACTIONS(274), - [anon_sym_interface] = ACTIONS(277), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_typedef] = ACTIONS(283), - [anon_sym_function] = ACTIONS(286), - [anon_sym_var] = ACTIONS(289), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), + [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_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(348), - [anon_sym_package] = ACTIONS(351), - [anon_sym_import] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(360), - [anon_sym_throw] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(384), - [anon_sym_untyped] = ACTIONS(387), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_AT_COLON] = ACTIONS(402), - [anon_sym_try] = ACTIONS(662), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_if] = ACTIONS(665), - [anon_sym_while] = ACTIONS(668), - [anon_sym_do] = ACTIONS(414), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(438), - [anon_sym_abstract] = ACTIONS(438), - [anon_sym_static] = ACTIONS(438), - [anon_sym_public] = ACTIONS(438), - [anon_sym_private] = ACTIONS(438), - [anon_sym_extern] = ACTIONS(438), - [anon_sym_inline] = ACTIONS(438), - [anon_sym_overload] = ACTIONS(438), - [anon_sym_override] = ACTIONS(438), - [anon_sym_final] = ACTIONS(441), - [anon_sym_class] = ACTIONS(444), - [anon_sym_interface] = ACTIONS(447), - [anon_sym_enum] = ACTIONS(450), - [anon_sym_typedef] = ACTIONS(453), - [anon_sym_function] = ACTIONS(456), - [anon_sym_var] = ACTIONS(459), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [28] = { - [sym_preprocessor_statement] = STATE(30), - [sym_package_statement] = STATE(30), - [sym_import_statement] = STATE(30), - [sym_using_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym__rhs_expression] = STATE(1272), - [sym__unaryExpression] = STATE(3586), - [sym_runtime_type_check_expression] = STATE(3586), - [sym_switch_expression] = STATE(836), - [sym_cast_expression] = STATE(3586), - [sym_type_trace_expression] = STATE(3586), - [sym__parenthesized_expression] = STATE(2727), - [sym_for_statement] = STATE(30), - [sym_range_expression] = STATE(3586), - [sym_subscript_expression] = STATE(3586), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(30), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(30), - [sym_conditional_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_while_statement] = STATE(30), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1272), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(30), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(30), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(671), + [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), @@ -15508,807 +15384,807 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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_preprocessor_statement] = STATE(584), - [sym_package_statement] = STATE(584), - [sym_import_statement] = STATE(584), - [sym_using_statement] = STATE(584), - [sym_throw_statement] = STATE(584), - [sym__rhs_expression] = STATE(1143), - [sym__unaryExpression] = STATE(3506), - [sym_runtime_type_check_expression] = STATE(3506), - [sym_switch_expression] = STATE(414), - [sym_cast_expression] = STATE(3506), - [sym_type_trace_expression] = STATE(3506), - [sym__parenthesized_expression] = STATE(2707), - [sym_for_statement] = STATE(584), - [sym_range_expression] = STATE(3506), - [sym_subscript_expression] = STATE(3506), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(584), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(584), - [sym_conditional_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_do_while_statement] = STATE(584), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1143), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(584), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_package] = ACTIONS(557), - [anon_sym_import] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(673), - [anon_sym_return] = ACTIONS(578), - [anon_sym_untyped] = ACTIONS(581), - [anon_sym_break] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_AT_COLON] = ACTIONS(232), - [anon_sym_try] = ACTIONS(676), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(679), - [anon_sym_while] = ACTIONS(682), - [anon_sym_do] = ACTIONS(596), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(599), - [anon_sym_abstract] = ACTIONS(599), - [anon_sym_static] = ACTIONS(599), - [anon_sym_public] = ACTIONS(599), - [anon_sym_private] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(599), - [anon_sym_inline] = ACTIONS(599), - [anon_sym_overload] = ACTIONS(599), - [anon_sym_override] = ACTIONS(599), - [anon_sym_final] = ACTIONS(602), - [anon_sym_class] = ACTIONS(605), - [anon_sym_interface] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_typedef] = ACTIONS(614), - [anon_sym_function] = ACTIONS(617), - [anon_sym_var] = ACTIONS(620), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(157), + [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_preprocessor_statement] = STATE(30), - [sym_package_statement] = STATE(30), - [sym_import_statement] = STATE(30), - [sym_using_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym__rhs_expression] = STATE(1272), - [sym__unaryExpression] = STATE(3586), - [sym_runtime_type_check_expression] = STATE(3586), - [sym_switch_expression] = STATE(836), - [sym_cast_expression] = STATE(3586), - [sym_type_trace_expression] = STATE(3586), - [sym__parenthesized_expression] = STATE(2727), - [sym_for_statement] = STATE(30), - [sym_range_expression] = STATE(3586), - [sym_subscript_expression] = STATE(3586), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(30), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(30), - [sym_conditional_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_while_statement] = STATE(30), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1272), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(30), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(30), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(685), - [sym_identifier] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_package] = ACTIONS(693), - [anon_sym_import] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_using] = ACTIONS(702), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(708), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_LBRACE] = ACTIONS(714), - [anon_sym_cast] = ACTIONS(717), - [anon_sym_DOLLARtype] = ACTIONS(720), - [anon_sym_for] = ACTIONS(723), - [anon_sym_return] = ACTIONS(726), - [anon_sym_untyped] = ACTIONS(729), - [anon_sym_break] = ACTIONS(732), - [anon_sym_continue] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_this] = ACTIONS(738), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_AT_COLON] = ACTIONS(744), - [anon_sym_try] = ACTIONS(747), - [anon_sym_if] = ACTIONS(750), - [anon_sym_while] = ACTIONS(753), - [anon_sym_do] = ACTIONS(756), - [anon_sym_new] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(771), - [anon_sym_DASH_DASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [anon_sym_CARET] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_EQ_EQ] = ACTIONS(762), - [anon_sym_BANG_EQ] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(762), - [anon_sym_EQ_GT] = ACTIONS(762), - [anon_sym_QMARK_QMARK] = ACTIONS(762), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(762), - [anon_sym_null] = ACTIONS(777), - [anon_sym_macro] = ACTIONS(780), - [anon_sym_abstract] = ACTIONS(780), - [anon_sym_static] = ACTIONS(780), - [anon_sym_public] = ACTIONS(780), - [anon_sym_private] = ACTIONS(780), - [anon_sym_extern] = ACTIONS(780), - [anon_sym_inline] = ACTIONS(780), - [anon_sym_overload] = ACTIONS(780), - [anon_sym_override] = ACTIONS(780), - [anon_sym_final] = ACTIONS(783), - [anon_sym_class] = ACTIONS(786), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(792), - [anon_sym_typedef] = ACTIONS(795), - [anon_sym_function] = ACTIONS(798), - [anon_sym_var] = ACTIONS(801), - [aux_sym_integer_token1] = ACTIONS(804), - [aux_sym_integer_token2] = ACTIONS(807), - [aux_sym_float_token1] = ACTIONS(810), - [aux_sym_float_token2] = ACTIONS(813), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [aux_sym_string_token1] = ACTIONS(819), - [aux_sym_string_token3] = ACTIONS(822), + [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_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(827), - [anon_sym_return] = ACTIONS(384), - [anon_sym_untyped] = ACTIONS(387), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(43), - [anon_sym_AT_COLON] = ACTIONS(45), - [anon_sym_try] = ACTIONS(829), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(53), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), - [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(893), + [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(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_preprocessor_statement] = STATE(584), - [sym_package_statement] = STATE(584), - [sym_import_statement] = STATE(584), - [sym_using_statement] = STATE(584), - [sym_throw_statement] = STATE(584), - [sym__rhs_expression] = STATE(1143), - [sym__unaryExpression] = STATE(3506), - [sym_runtime_type_check_expression] = STATE(3506), - [sym_switch_expression] = STATE(414), - [sym_cast_expression] = STATE(3506), - [sym_type_trace_expression] = STATE(3506), - [sym__parenthesized_expression] = STATE(2707), - [sym_for_statement] = STATE(584), - [sym_range_expression] = STATE(3506), - [sym_subscript_expression] = STATE(3506), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(584), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(584), - [sym_conditional_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_do_while_statement] = STATE(584), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1143), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(584), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_package] = ACTIONS(557), - [anon_sym_import] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(835), - [anon_sym_return] = ACTIONS(578), - [anon_sym_untyped] = ACTIONS(581), - [anon_sym_break] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_AT_COLON] = ACTIONS(232), - [anon_sym_try] = ACTIONS(838), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_if] = ACTIONS(841), - [anon_sym_while] = ACTIONS(844), - [anon_sym_do] = ACTIONS(596), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(599), - [anon_sym_abstract] = ACTIONS(599), - [anon_sym_static] = ACTIONS(599), - [anon_sym_public] = ACTIONS(599), - [anon_sym_private] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(599), - [anon_sym_inline] = ACTIONS(599), - [anon_sym_overload] = ACTIONS(599), - [anon_sym_override] = ACTIONS(599), - [anon_sym_final] = ACTIONS(602), - [anon_sym_class] = ACTIONS(605), - [anon_sym_interface] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_typedef] = ACTIONS(614), - [anon_sym_function] = ACTIONS(617), - [anon_sym_var] = ACTIONS(620), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(157), + [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_preprocessor_statement] = STATE(472), - [sym_package_statement] = STATE(472), - [sym_import_statement] = STATE(472), - [sym_using_statement] = STATE(472), - [sym_throw_statement] = STATE(472), - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3697), - [sym_runtime_type_check_expression] = STATE(3697), - [sym_switch_expression] = STATE(391), - [sym_cast_expression] = STATE(3697), - [sym_type_trace_expression] = STATE(3697), - [sym__parenthesized_expression] = STATE(2529), - [sym_for_statement] = STATE(472), - [sym_range_expression] = STATE(3697), - [sym_subscript_expression] = STATE(3697), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(472), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(472), - [sym_conditional_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_while_statement] = STATE(472), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(472), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(483), - [anon_sym_package] = ACTIONS(486), - [anon_sym_import] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(492), - [anon_sym_throw] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(847), - [anon_sym_return] = ACTIONS(507), - [anon_sym_untyped] = ACTIONS(510), - [anon_sym_break] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_AT_COLON] = ACTIONS(402), - [anon_sym_try] = ACTIONS(850), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_if] = ACTIONS(853), - [anon_sym_while] = ACTIONS(856), - [anon_sym_do] = ACTIONS(525), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(528), - [anon_sym_abstract] = ACTIONS(528), - [anon_sym_static] = ACTIONS(528), - [anon_sym_public] = ACTIONS(528), - [anon_sym_private] = ACTIONS(528), - [anon_sym_extern] = ACTIONS(528), - [anon_sym_inline] = ACTIONS(528), - [anon_sym_overload] = ACTIONS(528), - [anon_sym_override] = ACTIONS(528), - [anon_sym_final] = ACTIONS(531), - [anon_sym_class] = ACTIONS(534), - [anon_sym_interface] = ACTIONS(537), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_typedef] = ACTIONS(543), - [anon_sym_function] = ACTIONS(546), - [anon_sym_var] = ACTIONS(549), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [34] = { - [sym_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -16319,20 +16195,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_untyped] = ACTIONS(865), - [anon_sym_break] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), + [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(869), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(871), - [anon_sym_while] = ACTIONS(873), + [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), @@ -16360,97 +16236,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -16461,20 +16479,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(861), - [anon_sym_return] = ACTIONS(875), - [anon_sym_untyped] = ACTIONS(877), - [anon_sym_break] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), + [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(869), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(871), - [anon_sym_while] = ACTIONS(873), + [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), @@ -16502,946 +16520,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(825), + [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(187), + [anon_sym_STAR] = ACTIONS(223), [anon_sym_using] = ACTIONS(17), [anon_sym_throw] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(827), - [anon_sym_return] = ACTIONS(214), - [anon_sym_untyped] = ACTIONS(217), - [anon_sym_break] = ACTIONS(220), - [anon_sym_continue] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), + [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(829), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), + [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(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), + [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_preprocessor_statement] = STATE(472), - [sym_package_statement] = STATE(472), - [sym_import_statement] = STATE(472), - [sym_using_statement] = STATE(472), - [sym_throw_statement] = STATE(472), - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3697), - [sym_runtime_type_check_expression] = STATE(3697), - [sym_switch_expression] = STATE(391), - [sym_cast_expression] = STATE(3697), - [sym_type_trace_expression] = STATE(3697), - [sym__parenthesized_expression] = STATE(2529), - [sym_for_statement] = STATE(472), - [sym_range_expression] = STATE(3697), - [sym_subscript_expression] = STATE(3697), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(472), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(472), - [sym_conditional_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_while_statement] = STATE(472), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(472), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(483), - [anon_sym_package] = ACTIONS(486), - [anon_sym_import] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(492), - [anon_sym_throw] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(881), - [anon_sym_return] = ACTIONS(507), - [anon_sym_untyped] = ACTIONS(510), - [anon_sym_break] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_AT_COLON] = ACTIONS(402), - [anon_sym_try] = ACTIONS(884), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(890), - [anon_sym_do] = ACTIONS(525), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(528), - [anon_sym_abstract] = ACTIONS(528), - [anon_sym_static] = ACTIONS(528), - [anon_sym_public] = ACTIONS(528), - [anon_sym_private] = ACTIONS(528), - [anon_sym_extern] = ACTIONS(528), - [anon_sym_inline] = ACTIONS(528), - [anon_sym_overload] = ACTIONS(528), - [anon_sym_override] = ACTIONS(528), - [anon_sym_final] = ACTIONS(531), - [anon_sym_class] = ACTIONS(534), - [anon_sym_interface] = ACTIONS(537), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_typedef] = ACTIONS(543), - [anon_sym_function] = ACTIONS(546), - [anon_sym_var] = ACTIONS(549), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [38] = { - [sym_preprocessor_statement] = STATE(38), - [sym_package_statement] = STATE(38), - [sym_import_statement] = STATE(38), - [sym_using_statement] = STATE(38), - [sym_throw_statement] = STATE(38), - [sym__rhs_expression] = STATE(1135), - [sym__unaryExpression] = STATE(3541), - [sym_runtime_type_check_expression] = STATE(3541), - [sym_switch_expression] = STATE(835), - [sym_cast_expression] = STATE(3541), - [sym_type_trace_expression] = STATE(3541), - [sym__parenthesized_expression] = STATE(2673), - [sym_for_statement] = STATE(38), - [sym_range_expression] = STATE(3541), - [sym_subscript_expression] = STATE(3541), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(38), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(38), - [sym_conditional_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_while_statement] = STATE(38), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1135), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(38), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(893), - [anon_sym_package] = ACTIONS(896), - [anon_sym_import] = ACTIONS(899), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_using] = ACTIONS(902), - [anon_sym_throw] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(708), - [anon_sym_switch] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_cast] = ACTIONS(717), - [anon_sym_DOLLARtype] = ACTIONS(720), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(917), - [anon_sym_untyped] = ACTIONS(920), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_this] = ACTIONS(738), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_AT_COLON] = ACTIONS(744), - [anon_sym_try] = ACTIONS(926), - [anon_sym_if] = ACTIONS(929), - [anon_sym_while] = ACTIONS(932), - [anon_sym_do] = ACTIONS(935), - [anon_sym_new] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(771), - [anon_sym_DASH_DASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(774), - [anon_sym_GT_GT_GT] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(774), - [anon_sym_CARET] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_EQ_EQ] = ACTIONS(762), - [anon_sym_BANG_EQ] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_LT_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(762), - [anon_sym_EQ_GT] = ACTIONS(762), - [anon_sym_QMARK_QMARK] = ACTIONS(762), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(762), - [anon_sym_null] = ACTIONS(777), - [anon_sym_macro] = ACTIONS(938), - [anon_sym_abstract] = ACTIONS(938), - [anon_sym_static] = ACTIONS(938), - [anon_sym_public] = ACTIONS(938), - [anon_sym_private] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_overload] = ACTIONS(938), - [anon_sym_override] = ACTIONS(938), - [anon_sym_final] = ACTIONS(941), - [anon_sym_class] = ACTIONS(944), - [anon_sym_interface] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(953), - [anon_sym_function] = ACTIONS(956), - [anon_sym_var] = ACTIONS(959), - [aux_sym_integer_token1] = ACTIONS(804), - [aux_sym_integer_token2] = ACTIONS(807), - [aux_sym_float_token1] = ACTIONS(810), - [aux_sym_float_token2] = ACTIONS(813), - [anon_sym_true] = ACTIONS(816), - [anon_sym_false] = ACTIONS(816), - [aux_sym_string_token1] = ACTIONS(819), - [aux_sym_string_token3] = ACTIONS(822), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(685), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [39] = { - [sym_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(825), + [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(187), + [anon_sym_STAR] = ACTIONS(364), [anon_sym_using] = ACTIONS(17), [anon_sym_throw] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(214), - [anon_sym_untyped] = ACTIONS(217), - [anon_sym_break] = ACTIONS(220), - [anon_sym_continue] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), + [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(964), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_if] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [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(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), + [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), }, - [40] = { - [sym_preprocessor_statement] = STATE(584), - [sym_package_statement] = STATE(584), - [sym_import_statement] = STATE(584), - [sym_using_statement] = STATE(584), - [sym_throw_statement] = STATE(584), - [sym__rhs_expression] = STATE(1143), - [sym__unaryExpression] = STATE(3506), - [sym_runtime_type_check_expression] = STATE(3506), - [sym_switch_expression] = STATE(414), - [sym_cast_expression] = STATE(3506), - [sym_type_trace_expression] = STATE(3506), - [sym__parenthesized_expression] = STATE(2707), - [sym_for_statement] = STATE(584), - [sym_range_expression] = STATE(3506), - [sym_subscript_expression] = STATE(3506), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(584), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(584), - [sym_conditional_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_do_while_statement] = STATE(584), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1143), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(584), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_package] = ACTIONS(557), - [anon_sym_import] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(578), - [anon_sym_untyped] = ACTIONS(581), - [anon_sym_break] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_AT_COLON] = ACTIONS(232), - [anon_sym_try] = ACTIONS(973), - [anon_sym_if] = ACTIONS(976), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(596), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(599), - [anon_sym_abstract] = ACTIONS(599), - [anon_sym_static] = ACTIONS(599), - [anon_sym_public] = ACTIONS(599), - [anon_sym_private] = ACTIONS(599), - [anon_sym_extern] = ACTIONS(599), - [anon_sym_inline] = ACTIONS(599), - [anon_sym_overload] = ACTIONS(599), - [anon_sym_override] = ACTIONS(599), - [anon_sym_final] = ACTIONS(602), - [anon_sym_class] = ACTIONS(605), - [anon_sym_interface] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_typedef] = ACTIONS(614), - [anon_sym_function] = ACTIONS(617), - [anon_sym_var] = ACTIONS(620), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(157), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [41] = { - [sym_preprocessor_statement] = STATE(472), - [sym_package_statement] = STATE(472), - [sym_import_statement] = STATE(472), - [sym_using_statement] = STATE(472), - [sym_throw_statement] = STATE(472), - [sym__rhs_expression] = STATE(1170), - [sym__unaryExpression] = STATE(3697), - [sym_runtime_type_check_expression] = STATE(3697), - [sym_switch_expression] = STATE(391), - [sym_cast_expression] = STATE(3697), - [sym_type_trace_expression] = STATE(3697), - [sym__parenthesized_expression] = STATE(2529), - [sym_for_statement] = STATE(472), - [sym_range_expression] = STATE(3697), - [sym_subscript_expression] = STATE(3697), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(472), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(472), - [sym_conditional_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_do_while_statement] = STATE(472), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1170), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(472), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(483), - [anon_sym_package] = ACTIONS(486), - [anon_sym_import] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(492), - [anon_sym_throw] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(507), - [anon_sym_untyped] = ACTIONS(510), - [anon_sym_break] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_AT_COLON] = ACTIONS(402), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(988), - [anon_sym_while] = ACTIONS(991), - [anon_sym_do] = ACTIONS(525), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(528), - [anon_sym_abstract] = ACTIONS(528), - [anon_sym_static] = ACTIONS(528), - [anon_sym_public] = ACTIONS(528), - [anon_sym_private] = ACTIONS(528), - [anon_sym_extern] = ACTIONS(528), - [anon_sym_inline] = ACTIONS(528), - [anon_sym_overload] = ACTIONS(528), - [anon_sym_override] = ACTIONS(528), - [anon_sym_final] = ACTIONS(531), - [anon_sym_class] = ACTIONS(534), - [anon_sym_interface] = ACTIONS(537), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_typedef] = ACTIONS(543), - [anon_sym_function] = ACTIONS(546), - [anon_sym_var] = ACTIONS(549), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(147), + [38] = { + [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), }, - [42] = { - [sym_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [39] = { + [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(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -17452,19 +17047,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(875), - [anon_sym_untyped] = ACTIONS(877), - [anon_sym_break] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), + [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(996), - [anon_sym_catch] = ACTIONS(149), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -17492,238 +17087,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [43] = { - [sym_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(384), - [anon_sym_untyped] = ACTIONS(387), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(43), - [anon_sym_AT_COLON] = ACTIONS(45), - [anon_sym_try] = ACTIONS(964), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_if] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(53), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), + [40] = { + [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), }, - [44] = { - [sym_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [41] = { + [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(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -17734,19 +17329,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(863), - [anon_sym_untyped] = ACTIONS(865), - [anon_sym_break] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), + [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(996), - [anon_sym_catch] = ACTIONS(113), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -17774,684 +17369,1107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [45] = { - [sym_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(157), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(178), - [anon_sym_package] = ACTIONS(181), - [anon_sym_import] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(190), - [anon_sym_throw] = ACTIONS(193), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(214), - [anon_sym_untyped] = ACTIONS(217), - [anon_sym_break] = ACTIONS(220), - [anon_sym_continue] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_AT_COLON] = ACTIONS(232), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1008), + [42] = { + [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_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(244), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(268), - [anon_sym_abstract] = ACTIONS(268), - [anon_sym_static] = ACTIONS(268), - [anon_sym_public] = ACTIONS(268), - [anon_sym_private] = ACTIONS(268), - [anon_sym_extern] = ACTIONS(268), - [anon_sym_inline] = ACTIONS(268), - [anon_sym_overload] = ACTIONS(268), - [anon_sym_override] = ACTIONS(268), - [anon_sym_final] = ACTIONS(271), - [anon_sym_class] = ACTIONS(274), - [anon_sym_interface] = ACTIONS(277), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_typedef] = ACTIONS(283), - [anon_sym_function] = ACTIONS(286), - [anon_sym_var] = ACTIONS(289), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), + [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_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(825), + [44] = { + [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(187), + [anon_sym_STAR] = ACTIONS(364), [anon_sym_using] = ACTIONS(17), [anon_sym_throw] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(214), - [anon_sym_untyped] = ACTIONS(217), - [anon_sym_break] = ACTIONS(220), - [anon_sym_continue] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), + [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(1016), - [anon_sym_else] = ACTIONS(149), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [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(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), + [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_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(825), + [45] = { + [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(357), + [anon_sym_STAR] = ACTIONS(223), [anon_sym_using] = ACTIONS(17), [anon_sym_throw] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(384), - [anon_sym_untyped] = ACTIONS(387), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), + [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(1016), - [anon_sym_else] = ACTIONS(113), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [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(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), + [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), }, - [48] = { - [sym_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(147), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(348), - [anon_sym_package] = ACTIONS(351), - [anon_sym_import] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(360), - [anon_sym_throw] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(384), - [anon_sym_untyped] = ACTIONS(387), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_AT_COLON] = ACTIONS(402), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(414), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(438), - [anon_sym_abstract] = ACTIONS(438), - [anon_sym_static] = ACTIONS(438), - [anon_sym_public] = ACTIONS(438), - [anon_sym_private] = ACTIONS(438), - [anon_sym_extern] = ACTIONS(438), - [anon_sym_inline] = ACTIONS(438), - [anon_sym_overload] = ACTIONS(438), - [anon_sym_override] = ACTIONS(438), - [anon_sym_final] = ACTIONS(441), - [anon_sym_class] = ACTIONS(444), - [anon_sym_interface] = ACTIONS(447), - [anon_sym_enum] = ACTIONS(450), - [anon_sym_typedef] = ACTIONS(453), - [anon_sym_function] = ACTIONS(456), - [anon_sym_var] = ACTIONS(459), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), + [46] = { + [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_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_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_preprocessor_statement] = STATE(473), - [sym_package_statement] = STATE(473), - [sym_import_statement] = STATE(473), - [sym_using_statement] = STATE(473), - [sym_throw_statement] = STATE(473), - [sym__rhs_expression] = STATE(1171), - [sym__unaryExpression] = STATE(3360), - [sym_runtime_type_check_expression] = STATE(3360), - [sym_switch_expression] = STATE(396), - [sym_cast_expression] = STATE(3360), - [sym_type_trace_expression] = STATE(3360), - [sym__parenthesized_expression] = STATE(2548), - [sym_for_statement] = STATE(473), - [sym_range_expression] = STATE(3360), - [sym_subscript_expression] = STATE(3360), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(474), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(473), - [sym_conditional_statement] = STATE(473), - [sym_while_statement] = STATE(473), - [sym_do_while_statement] = STATE(473), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1171), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(473), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_untyped] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), + [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(1042), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(129), + [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), @@ -18478,120 +18496,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(2463), - [sym_package_statement] = STATE(2463), - [sym_import_statement] = STATE(2463), - [sym_using_statement] = STATE(2463), - [sym_throw_statement] = STATE(2463), - [sym__rhs_expression] = STATE(1280), - [sym__unaryExpression] = STATE(3627), - [sym_runtime_type_check_expression] = STATE(3627), - [sym_switch_expression] = STATE(2420), - [sym_cast_expression] = STATE(3627), - [sym_type_trace_expression] = STATE(3627), - [sym__parenthesized_expression] = STATE(2646), - [sym_for_statement] = STATE(2463), - [sym_range_expression] = STATE(3627), - [sym_subscript_expression] = STATE(3627), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2463), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(2463), - [sym_conditional_statement] = STATE(2463), - [sym_while_statement] = STATE(2463), - [sym_do_while_statement] = STATE(2463), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1280), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2463), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(159), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), + [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(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(129), + [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), @@ -18618,97 +18636,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(647), - [sym_package_statement] = STATE(647), - [sym_import_statement] = STATE(647), - [sym_using_statement] = STATE(647), - [sym_throw_statement] = STATE(647), - [sym__rhs_expression] = STATE(1230), - [sym__unaryExpression] = STATE(3679), - [sym_runtime_type_check_expression] = STATE(3679), - [sym_switch_expression] = STATE(568), - [sym_cast_expression] = STATE(3679), - [sym_type_trace_expression] = STATE(3679), - [sym__parenthesized_expression] = STATE(2618), - [sym_for_statement] = STATE(647), - [sym_range_expression] = STATE(3679), - [sym_subscript_expression] = STATE(3679), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(647), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(647), - [sym_conditional_statement] = STATE(647), - [sym_while_statement] = STATE(647), - [sym_do_while_statement] = STATE(647), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1230), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(647), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(825), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -18719,18 +18737,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), + [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(1016), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [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), @@ -18758,120 +18776,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(400), - [sym_package_statement] = STATE(400), - [sym_import_statement] = STATE(400), - [sym_using_statement] = STATE(400), - [sym_throw_statement] = STATE(400), - [sym__rhs_expression] = STATE(1248), - [sym__unaryExpression] = STATE(3494), - [sym_runtime_type_check_expression] = STATE(3494), - [sym_switch_expression] = STATE(390), - [sym_cast_expression] = STATE(3494), - [sym_type_trace_expression] = STATE(3494), - [sym__parenthesized_expression] = STATE(2709), - [sym_for_statement] = STATE(400), - [sym_range_expression] = STATE(3494), - [sym_subscript_expression] = STATE(3494), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(400), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(400), - [sym_conditional_statement] = STATE(400), - [sym_while_statement] = STATE(400), - [sym_do_while_statement] = STATE(400), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1248), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(400), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(159), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_untyped] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), + [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(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_do] = ACTIONS(129), + [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), @@ -18898,97 +18916,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(2846), - [sym_package_statement] = STATE(2846), - [sym_import_statement] = STATE(2846), - [sym_using_statement] = STATE(2846), - [sym_throw_statement] = STATE(2846), - [sym__rhs_expression] = STATE(1265), - [sym__unaryExpression] = STATE(3615), - [sym_runtime_type_check_expression] = STATE(3615), - [sym_switch_expression] = STATE(2690), - [sym_cast_expression] = STATE(3615), - [sym_type_trace_expression] = STATE(3615), - [sym__parenthesized_expression] = STATE(2589), - [sym_for_statement] = STATE(2846), - [sym_range_expression] = STATE(3615), - [sym_subscript_expression] = STATE(3615), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2846), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(2846), - [sym_conditional_statement] = STATE(2846), - [sym_while_statement] = STATE(2846), - [sym_do_while_statement] = STATE(2846), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1265), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2846), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(859), + [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -18999,18 +19017,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_untyped] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -19038,97 +19056,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(634), - [sym_package_statement] = STATE(634), - [sym_import_statement] = STATE(634), - [sym_using_statement] = STATE(634), - [sym_throw_statement] = STATE(634), - [sym__rhs_expression] = STATE(1301), - [sym__unaryExpression] = STATE(3415), - [sym_runtime_type_check_expression] = STATE(3415), - [sym_switch_expression] = STATE(583), - [sym_cast_expression] = STATE(3415), - [sym_type_trace_expression] = STATE(3415), - [sym__parenthesized_expression] = STATE(2734), - [sym_for_statement] = STATE(634), - [sym_range_expression] = STATE(3415), - [sym_subscript_expression] = STATE(3415), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(634), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(634), - [sym_conditional_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_do_while_statement] = STATE(634), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1301), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(634), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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_POUND] = ACTIONS(951), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -19139,18 +19157,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_untyped] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), + [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(1080), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1084), + [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), @@ -19178,377 +19196,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(681), - [sym_package_statement] = STATE(681), - [sym_import_statement] = STATE(681), - [sym_using_statement] = STATE(681), - [sym_throw_statement] = STATE(681), - [sym__rhs_expression] = STATE(1138), - [sym__unaryExpression] = STATE(3461), - [sym_runtime_type_check_expression] = STATE(3461), - [sym_switch_expression] = STATE(628), - [sym_cast_expression] = STATE(3461), - [sym_type_trace_expression] = STATE(3461), - [sym__parenthesized_expression] = STATE(2651), - [sym_for_statement] = STATE(681), - [sym_range_expression] = STATE(3461), - [sym_subscript_expression] = STATE(3461), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(681), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(681), - [sym_conditional_statement] = STATE(681), - [sym_while_statement] = STATE(681), - [sym_do_while_statement] = STATE(681), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1138), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(681), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(175), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_switch] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_cast] = ACTIONS(205), - [anon_sym_DOLLARtype] = ACTIONS(208), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(214), - [anon_sym_untyped] = ACTIONS(217), - [anon_sym_break] = ACTIONS(220), - [anon_sym_continue] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_this] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(43), - [anon_sym_AT_COLON] = ACTIONS(45), - [anon_sym_try] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(53), - [anon_sym_new] = ACTIONS(247), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(250), - [anon_sym_QMARK_QMARK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(250), - [anon_sym_null] = ACTIONS(265), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(292), - [aux_sym_integer_token2] = ACTIONS(295), - [aux_sym_float_token1] = ACTIONS(298), - [aux_sym_float_token2] = ACTIONS(301), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [aux_sym_string_token1] = ACTIONS(307), - [aux_sym_string_token3] = ACTIONS(310), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [56] = { - [sym_preprocessor_statement] = STATE(651), - [sym_package_statement] = STATE(651), - [sym_import_statement] = STATE(651), - [sym_using_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym__rhs_expression] = STATE(1279), - [sym__unaryExpression] = STATE(3364), - [sym_runtime_type_check_expression] = STATE(3364), - [sym_switch_expression] = STATE(621), - [sym_cast_expression] = STATE(3364), - [sym_type_trace_expression] = STATE(3364), - [sym__parenthesized_expression] = STATE(2736), - [sym_for_statement] = STATE(651), - [sym_range_expression] = STATE(3364), - [sym_subscript_expression] = STATE(3364), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(651), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(651), - [sym_conditional_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_while_statement] = STATE(651), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1279), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(651), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(345), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(357), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(375), - [anon_sym_DOLLARtype] = ACTIONS(378), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(384), - [anon_sym_untyped] = ACTIONS(387), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_this] = ACTIONS(396), - [anon_sym_AT] = ACTIONS(43), - [anon_sym_AT_COLON] = ACTIONS(45), - [anon_sym_try] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(53), - [anon_sym_new] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(357), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(357), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_null] = ACTIONS(435), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(468), - [aux_sym_float_token2] = ACTIONS(471), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(477), - [aux_sym_string_token3] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [57] = { - [sym_preprocessor_statement] = STATE(653), - [sym_package_statement] = STATE(653), - [sym_import_statement] = STATE(653), - [sym_using_statement] = STATE(653), - [sym_throw_statement] = STATE(653), - [sym__rhs_expression] = STATE(1285), - [sym__unaryExpression] = STATE(3441), - [sym_runtime_type_check_expression] = STATE(3441), - [sym_switch_expression] = STATE(622), - [sym_cast_expression] = STATE(3441), - [sym_type_trace_expression] = STATE(3441), - [sym__parenthesized_expression] = STATE(2756), - [sym_for_statement] = STATE(653), - [sym_range_expression] = STATE(3441), - [sym_subscript_expression] = STATE(3441), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(655), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(653), - [sym_conditional_statement] = STATE(653), - [sym_while_statement] = STATE(653), - [sym_do_while_statement] = STATE(653), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1285), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(653), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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_POUND] = ACTIONS(951), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -19559,18 +19297,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), + [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(1080), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1084), + [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), @@ -19598,120 +19336,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [58] = { - [sym_preprocessor_statement] = STATE(647), - [sym_package_statement] = STATE(647), - [sym_import_statement] = STATE(647), - [sym_using_statement] = STATE(647), - [sym_throw_statement] = STATE(647), - [sym__rhs_expression] = STATE(1230), - [sym__unaryExpression] = STATE(3679), - [sym_runtime_type_check_expression] = STATE(3679), - [sym_switch_expression] = STATE(568), - [sym_cast_expression] = STATE(3679), - [sym_type_trace_expression] = STATE(3679), - [sym__parenthesized_expression] = STATE(2618), - [sym_for_statement] = STATE(647), - [sym_range_expression] = STATE(3679), - [sym_subscript_expression] = STATE(3679), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(647), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(647), - [sym_conditional_statement] = STATE(647), - [sym_while_statement] = STATE(647), - [sym_do_while_statement] = STATE(647), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1230), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(647), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [56] = { + [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(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), + [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(1102), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(53), + [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), @@ -19738,97 +19476,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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_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_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(1137), - [sym__unaryExpression] = STATE(3359), - [sym_runtime_type_check_expression] = STATE(3359), - [sym_switch_expression] = STATE(618), - [sym_cast_expression] = STATE(3359), - [sym_type_trace_expression] = STATE(3359), - [sym__parenthesized_expression] = STATE(2656), - [sym_for_statement] = STATE(832), - [sym_range_expression] = STATE(3359), - [sym_subscript_expression] = STATE(3359), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(832), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(832), - [sym_conditional_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_do_while_statement] = STATE(832), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1137), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(832), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(825), + [anon_sym_POUND] = ACTIONS(951), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -19839,18 +19857,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_untyped] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), + [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(1088), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1092), + [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), @@ -19878,97 +19896,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(647), - [sym_package_statement] = STATE(647), - [sym_import_statement] = STATE(647), - [sym_using_statement] = STATE(647), - [sym_throw_statement] = STATE(647), - [sym__rhs_expression] = STATE(1230), - [sym__unaryExpression] = STATE(3679), - [sym_runtime_type_check_expression] = STATE(3679), - [sym_switch_expression] = STATE(568), - [sym_cast_expression] = STATE(3679), - [sym_type_trace_expression] = STATE(3679), - [sym__parenthesized_expression] = STATE(2618), - [sym_for_statement] = STATE(647), - [sym_range_expression] = STATE(3679), - [sym_subscript_expression] = STATE(3679), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(647), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(647), - [sym_conditional_statement] = STATE(647), - [sym_while_statement] = STATE(647), - [sym_do_while_statement] = STATE(647), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1230), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(647), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -19979,18 +19997,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), + [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(1080), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1084), + [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), @@ -20018,120 +20036,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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(1137), - [sym__unaryExpression] = STATE(3359), - [sym_runtime_type_check_expression] = STATE(3359), - [sym_switch_expression] = STATE(618), - [sym_cast_expression] = STATE(3359), - [sym_type_trace_expression] = STATE(3359), - [sym__parenthesized_expression] = STATE(2656), - [sym_for_statement] = STATE(832), - [sym_range_expression] = STATE(3359), - [sym_subscript_expression] = STATE(3359), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(832), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(832), - [sym_conditional_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_do_while_statement] = STATE(832), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1137), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(832), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(825), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_untyped] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), + [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(964), - [anon_sym_if] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(53), + [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), @@ -20158,97 +20176,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(963), - [sym_package_statement] = STATE(963), - [sym_import_statement] = STATE(963), - [sym_using_statement] = STATE(963), - [sym_throw_statement] = STATE(963), - [sym__rhs_expression] = STATE(1299), - [sym__unaryExpression] = STATE(3357), - [sym_runtime_type_check_expression] = STATE(3357), - [sym_switch_expression] = STATE(951), - [sym_cast_expression] = STATE(3357), - [sym_type_trace_expression] = STATE(3357), - [sym__parenthesized_expression] = STATE(2728), - [sym_for_statement] = STATE(963), - [sym_range_expression] = STATE(3357), - [sym_subscript_expression] = STATE(3357), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(963), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(963), - [sym_conditional_statement] = STATE(963), - [sym_while_statement] = STATE(963), - [sym_do_while_statement] = STATE(963), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1299), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(963), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(825), + [anon_sym_POUND] = ACTIONS(951), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -20259,18 +20277,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(827), - [anon_sym_return] = ACTIONS(1114), - [anon_sym_untyped] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), + [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(829), - [anon_sym_if] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), + [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), @@ -20298,120 +20316,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(647), - [sym_package_statement] = STATE(647), - [sym_import_statement] = STATE(647), - [sym_using_statement] = STATE(647), - [sym_throw_statement] = STATE(647), - [sym__rhs_expression] = STATE(1230), - [sym__unaryExpression] = STATE(3679), - [sym_runtime_type_check_expression] = STATE(3679), - [sym_switch_expression] = STATE(568), - [sym_cast_expression] = STATE(3679), - [sym_type_trace_expression] = STATE(3679), - [sym__parenthesized_expression] = STATE(2618), - [sym_for_statement] = STATE(647), - [sym_range_expression] = STATE(3679), - [sym_subscript_expression] = STATE(3679), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(647), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(647), - [sym_conditional_statement] = STATE(647), - [sym_while_statement] = STATE(647), - [sym_do_while_statement] = STATE(647), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1230), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(647), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(825), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(827), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), + [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(829), - [anon_sym_if] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(53), + [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), @@ -20438,97 +20456,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(2913), - [sym_package_statement] = STATE(2913), - [sym_import_statement] = STATE(2913), - [sym_using_statement] = STATE(2913), - [sym_throw_statement] = STATE(2913), - [sym__rhs_expression] = STATE(1283), - [sym__unaryExpression] = STATE(3401), - [sym_runtime_type_check_expression] = STATE(3401), - [sym_switch_expression] = STATE(2599), - [sym_cast_expression] = STATE(3401), - [sym_type_trace_expression] = STATE(3401), - [sym__parenthesized_expression] = STATE(2653), - [sym_for_statement] = STATE(2913), - [sym_range_expression] = STATE(3401), - [sym_subscript_expression] = STATE(3401), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2913), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(2913), - [sym_conditional_statement] = STATE(2913), - [sym_while_statement] = STATE(2913), - [sym_do_while_statement] = STATE(2913), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1283), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2913), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -20539,18 +20557,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_untyped] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -20578,97 +20596,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(653), - [sym_package_statement] = STATE(653), - [sym_import_statement] = STATE(653), - [sym_using_statement] = STATE(653), - [sym_throw_statement] = STATE(653), - [sym__rhs_expression] = STATE(1285), - [sym__unaryExpression] = STATE(3441), - [sym_runtime_type_check_expression] = STATE(3441), - [sym_switch_expression] = STATE(622), - [sym_cast_expression] = STATE(3441), - [sym_type_trace_expression] = STATE(3441), - [sym__parenthesized_expression] = STATE(2756), - [sym_for_statement] = STATE(653), - [sym_range_expression] = STATE(3441), - [sym_subscript_expression] = STATE(3441), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(655), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(653), - [sym_conditional_statement] = STATE(653), - [sym_while_statement] = STATE(653), - [sym_do_while_statement] = STATE(653), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1285), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(653), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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(825), + [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -20679,18 +20697,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), + [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(964), - [anon_sym_if] = ACTIONS(966), - [anon_sym_while] = ACTIONS(968), + [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), @@ -20718,97 +20736,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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(1137), - [sym__unaryExpression] = STATE(3359), - [sym_runtime_type_check_expression] = STATE(3359), - [sym_switch_expression] = STATE(618), - [sym_cast_expression] = STATE(3359), - [sym_type_trace_expression] = STATE(3359), - [sym__parenthesized_expression] = STATE(2656), - [sym_for_statement] = STATE(832), - [sym_range_expression] = STATE(3359), - [sym_subscript_expression] = STATE(3359), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(832), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(832), - [sym_conditional_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_do_while_statement] = STATE(832), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1137), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(832), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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_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(9), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -20819,18 +20977,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_untyped] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), + [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(1128), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1132), + [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), @@ -20858,120 +21016,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [67] = { - [sym_preprocessor_statement] = STATE(400), - [sym_package_statement] = STATE(400), - [sym_import_statement] = STATE(400), - [sym_using_statement] = STATE(400), - [sym_throw_statement] = STATE(400), - [sym__rhs_expression] = STATE(1248), - [sym__unaryExpression] = STATE(3494), - [sym_runtime_type_check_expression] = STATE(3494), - [sym_switch_expression] = STATE(390), - [sym_cast_expression] = STATE(3494), - [sym_type_trace_expression] = STATE(3494), - [sym__parenthesized_expression] = STATE(2709), - [sym_for_statement] = STATE(400), - [sym_range_expression] = STATE(3494), - [sym_subscript_expression] = STATE(3494), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(400), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(400), - [sym_conditional_statement] = STATE(400), - [sym_while_statement] = STATE(400), - [sym_do_while_statement] = STATE(400), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1248), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(400), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [68] = { + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_untyped] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), + [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(1136), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(129), + [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), @@ -20998,97 +21156,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(3081), - [sym_package_statement] = STATE(3081), - [sym_import_statement] = STATE(3081), - [sym_using_statement] = STATE(3081), - [sym_throw_statement] = STATE(3081), - [sym__rhs_expression] = STATE(1287), - [sym__unaryExpression] = STATE(3510), - [sym_runtime_type_check_expression] = STATE(3510), - [sym_switch_expression] = STATE(2680), - [sym_cast_expression] = STATE(3510), - [sym_type_trace_expression] = STATE(3510), - [sym__parenthesized_expression] = STATE(2669), - [sym_for_statement] = STATE(3081), - [sym_range_expression] = STATE(3510), - [sym_subscript_expression] = STATE(3510), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3081), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3081), - [sym_conditional_statement] = STATE(3081), - [sym_while_statement] = STATE(3081), - [sym_do_while_statement] = STATE(3081), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1287), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3081), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [69] = { + [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(859), + [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -21099,18 +21257,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_untyped] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -21138,95 +21296,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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(1137), - [sym__unaryExpression] = STATE(3359), - [sym_runtime_type_check_expression] = STATE(3359), - [sym_switch_expression] = STATE(618), - [sym_cast_expression] = STATE(3359), - [sym_type_trace_expression] = STATE(3359), - [sym__parenthesized_expression] = STATE(2656), - [sym_for_statement] = STATE(832), - [sym_range_expression] = STATE(3359), - [sym_subscript_expression] = STATE(3359), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(832), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(832), - [sym_conditional_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_do_while_statement] = STATE(832), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1137), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(832), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [70] = { + [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), @@ -21239,18 +21397,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_untyped] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), + [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(47), - [anon_sym_if] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), + [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), @@ -21278,120 +21436,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(3086), - [sym_package_statement] = STATE(3086), - [sym_import_statement] = STATE(3086), - [sym_using_statement] = STATE(3086), - [sym_throw_statement] = STATE(3086), - [sym__rhs_expression] = STATE(1243), - [sym__unaryExpression] = STATE(3439), - [sym_runtime_type_check_expression] = STATE(3439), - [sym_switch_expression] = STATE(2619), - [sym_cast_expression] = STATE(3439), - [sym_type_trace_expression] = STATE(3439), - [sym__parenthesized_expression] = STATE(2622), - [sym_for_statement] = STATE(3086), - [sym_range_expression] = STATE(3439), - [sym_subscript_expression] = STATE(3439), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3086), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(3086), - [sym_conditional_statement] = STATE(3086), - [sym_while_statement] = STATE(3086), - [sym_do_while_statement] = STATE(3086), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1243), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3086), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [71] = { + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_untyped] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), + [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(315), - [anon_sym_if] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(129), + [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), @@ -21418,120 +21576,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(423), - [sym_package_statement] = STATE(423), - [sym_import_statement] = STATE(423), - [sym_using_statement] = STATE(423), - [sym_throw_statement] = STATE(423), - [sym__rhs_expression] = STATE(1156), - [sym__unaryExpression] = STATE(3491), - [sym_runtime_type_check_expression] = STATE(3491), - [sym_switch_expression] = STATE(411), - [sym_cast_expression] = STATE(3491), - [sym_type_trace_expression] = STATE(3491), - [sym__parenthesized_expression] = STATE(2754), - [sym_for_statement] = STATE(423), - [sym_range_expression] = STATE(3491), - [sym_subscript_expression] = STATE(3491), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(423), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(423), - [sym_conditional_statement] = STATE(423), - [sym_while_statement] = STATE(423), - [sym_do_while_statement] = STATE(423), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1156), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(423), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [72] = { + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_untyped] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), + [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(315), - [anon_sym_if] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(129), + [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), @@ -21558,120 +21716,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(473), - [sym_package_statement] = STATE(473), - [sym_import_statement] = STATE(473), - [sym_using_statement] = STATE(473), - [sym_throw_statement] = STATE(473), - [sym__rhs_expression] = STATE(1171), - [sym__unaryExpression] = STATE(3360), - [sym_runtime_type_check_expression] = STATE(3360), - [sym_switch_expression] = STATE(396), - [sym_cast_expression] = STATE(3360), - [sym_type_trace_expression] = STATE(3360), - [sym__parenthesized_expression] = STATE(2548), - [sym_for_statement] = STATE(473), - [sym_range_expression] = STATE(3360), - [sym_subscript_expression] = STATE(3360), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(474), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(473), - [sym_conditional_statement] = STATE(473), - [sym_while_statement] = STATE(473), - [sym_do_while_statement] = STATE(473), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1171), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(473), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [73] = { + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(167), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_untyped] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), + [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(169), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(173), - [anon_sym_do] = ACTIONS(129), + [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), @@ -21698,120 +21856,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(792), - [sym_package_statement] = STATE(792), - [sym_import_statement] = STATE(792), - [sym_using_statement] = STATE(792), - [sym_throw_statement] = STATE(792), - [sym__rhs_expression] = STATE(1142), - [sym__unaryExpression] = STATE(3499), - [sym_runtime_type_check_expression] = STATE(3499), - [sym_switch_expression] = STATE(636), - [sym_cast_expression] = STATE(3499), - [sym_type_trace_expression] = STATE(3499), - [sym__parenthesized_expression] = STATE(2705), - [sym_for_statement] = STATE(792), - [sym_range_expression] = STATE(3499), - [sym_subscript_expression] = STATE(3499), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(792), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(792), - [sym_conditional_statement] = STATE(792), - [sym_while_statement] = STATE(792), - [sym_do_while_statement] = STATE(792), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1142), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(792), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [74] = { + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_untyped] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), + [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(1136), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(129), + [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), @@ -21838,120 +21996,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(2911), - [sym_package_statement] = STATE(2911), - [sym_import_statement] = STATE(2911), - [sym_using_statement] = STATE(2911), - [sym_throw_statement] = STATE(2911), - [sym__rhs_expression] = STATE(1276), - [sym__unaryExpression] = STATE(3618), - [sym_runtime_type_check_expression] = STATE(3618), - [sym_switch_expression] = STATE(2724), - [sym_cast_expression] = STATE(3618), - [sym_type_trace_expression] = STATE(3618), - [sym__parenthesized_expression] = STATE(2725), - [sym_for_statement] = STATE(2911), - [sym_range_expression] = STATE(3618), - [sym_subscript_expression] = STATE(3618), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2911), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(2911), - [sym_conditional_statement] = STATE(2911), - [sym_while_statement] = STATE(2911), - [sym_do_while_statement] = STATE(2911), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1276), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2911), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [75] = { + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_untyped] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), + [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(315), - [anon_sym_if] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(129), + [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), @@ -21978,120 +22136,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(423), - [sym_package_statement] = STATE(423), - [sym_import_statement] = STATE(423), - [sym_using_statement] = STATE(423), - [sym_throw_statement] = STATE(423), - [sym__rhs_expression] = STATE(1156), - [sym__unaryExpression] = STATE(3491), - [sym_runtime_type_check_expression] = STATE(3491), - [sym_switch_expression] = STATE(411), - [sym_cast_expression] = STATE(3491), - [sym_type_trace_expression] = STATE(3491), - [sym__parenthesized_expression] = STATE(2754), - [sym_for_statement] = STATE(423), - [sym_range_expression] = STATE(3491), - [sym_subscript_expression] = STATE(3491), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(423), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(423), - [sym_conditional_statement] = STATE(423), - [sym_while_statement] = STATE(423), - [sym_do_while_statement] = STATE(423), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1156), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(423), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [76] = { + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_untyped] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), + [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(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_do] = ACTIONS(129), + [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), @@ -22118,120 +22276,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(473), - [sym_package_statement] = STATE(473), - [sym_import_statement] = STATE(473), - [sym_using_statement] = STATE(473), - [sym_throw_statement] = STATE(473), - [sym__rhs_expression] = STATE(1171), - [sym__unaryExpression] = STATE(3360), - [sym_runtime_type_check_expression] = STATE(3360), - [sym_switch_expression] = STATE(396), - [sym_cast_expression] = STATE(3360), - [sym_type_trace_expression] = STATE(3360), - [sym__parenthesized_expression] = STATE(2548), - [sym_for_statement] = STATE(473), - [sym_range_expression] = STATE(3360), - [sym_subscript_expression] = STATE(3360), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(474), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(473), - [sym_conditional_statement] = STATE(473), - [sym_while_statement] = STATE(473), - [sym_do_while_statement] = STATE(473), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1171), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(473), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [77] = { + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_untyped] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), + [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(1174), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(129), + [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), @@ -22258,120 +22416,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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(1303), - [sym__unaryExpression] = STATE(3437), - [sym_runtime_type_check_expression] = STATE(3437), - [sym_switch_expression] = STATE(594), - [sym_cast_expression] = STATE(3437), - [sym_type_trace_expression] = STATE(3437), - [sym__parenthesized_expression] = STATE(2742), - [sym_for_statement] = STATE(639), - [sym_range_expression] = STATE(3437), - [sym_subscript_expression] = STATE(3437), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(639), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(639), - [sym_conditional_statement] = STATE(639), - [sym_while_statement] = STATE(639), - [sym_do_while_statement] = STATE(639), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1303), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(639), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [78] = { + [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_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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_untyped] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), + [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(1042), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(129), + [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), @@ -22398,120 +22696,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [78] = { - [sym_preprocessor_statement] = STATE(2885), - [sym_package_statement] = STATE(2885), - [sym_import_statement] = STATE(2885), - [sym_using_statement] = STATE(2885), - [sym_throw_statement] = STATE(2885), - [sym__rhs_expression] = STATE(1131), - [sym__unaryExpression] = STATE(3458), - [sym_runtime_type_check_expression] = STATE(3458), - [sym_switch_expression] = STATE(2628), - [sym_cast_expression] = STATE(3458), - [sym_type_trace_expression] = STATE(3458), - [sym__parenthesized_expression] = STATE(2634), - [sym_for_statement] = STATE(2885), - [sym_range_expression] = STATE(3458), - [sym_subscript_expression] = STATE(3458), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2885), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(2885), - [sym_conditional_statement] = STATE(2885), - [sym_while_statement] = STATE(2885), - [sym_do_while_statement] = STATE(2885), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1131), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2885), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [80] = { + [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(859), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_untyped] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(53), + [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), @@ -22538,120 +22836,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [79] = { - [sym_preprocessor_statement] = STATE(653), - [sym_package_statement] = STATE(653), - [sym_import_statement] = STATE(653), - [sym_using_statement] = STATE(653), - [sym_throw_statement] = STATE(653), - [sym__rhs_expression] = STATE(1285), - [sym__unaryExpression] = STATE(3441), - [sym_runtime_type_check_expression] = STATE(3441), - [sym_switch_expression] = STATE(622), - [sym_cast_expression] = STATE(3441), - [sym_type_trace_expression] = STATE(3441), - [sym__parenthesized_expression] = STATE(2756), - [sym_for_statement] = STATE(653), - [sym_range_expression] = STATE(3441), - [sym_subscript_expression] = STATE(3441), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(655), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(653), - [sym_conditional_statement] = STATE(653), - [sym_while_statement] = STATE(653), - [sym_do_while_statement] = STATE(653), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1285), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(653), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [81] = { + [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(859), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(861), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), + [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(869), - [anon_sym_if] = ACTIONS(871), - [anon_sym_while] = ACTIONS(873), - [anon_sym_do] = ACTIONS(53), + [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), @@ -22678,97 +22976,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(653), - [sym_package_statement] = STATE(653), - [sym_import_statement] = STATE(653), - [sym_using_statement] = STATE(653), - [sym_throw_statement] = STATE(653), - [sym__rhs_expression] = STATE(1285), - [sym__unaryExpression] = STATE(3441), - [sym_runtime_type_check_expression] = STATE(3441), - [sym_switch_expression] = STATE(622), - [sym_cast_expression] = STATE(3441), - [sym_type_trace_expression] = STATE(3441), - [sym__parenthesized_expression] = STATE(2756), - [sym_for_statement] = STATE(653), - [sym_range_expression] = STATE(3441), - [sym_subscript_expression] = STATE(3441), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(655), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(653), - [sym_conditional_statement] = STATE(653), - [sym_while_statement] = STATE(653), - [sym_do_while_statement] = STATE(653), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1285), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(653), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [82] = { + [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(825), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -22779,18 +23077,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(827), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), + [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(829), - [anon_sym_if] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), + [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), @@ -22818,97 +23116,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [81] = { - [sym_preprocessor_statement] = STATE(653), - [sym_package_statement] = STATE(653), - [sym_import_statement] = STATE(653), - [sym_using_statement] = STATE(653), - [sym_throw_statement] = STATE(653), - [sym__rhs_expression] = STATE(1285), - [sym__unaryExpression] = STATE(3441), - [sym_runtime_type_check_expression] = STATE(3441), - [sym_switch_expression] = STATE(622), - [sym_cast_expression] = STATE(3441), - [sym_type_trace_expression] = STATE(3441), - [sym__parenthesized_expression] = STATE(2756), - [sym_for_statement] = STATE(653), - [sym_range_expression] = STATE(3441), - [sym_subscript_expression] = STATE(3441), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(655), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(653), - [sym_conditional_statement] = STATE(653), - [sym_while_statement] = STATE(653), - [sym_do_while_statement] = STATE(653), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1285), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(653), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [83] = { + [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(859), + [anon_sym_POUND] = ACTIONS(951), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -22919,18 +23217,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -22958,120 +23256,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [82] = { - [sym_preprocessor_statement] = STATE(473), - [sym_package_statement] = STATE(473), - [sym_import_statement] = STATE(473), - [sym_using_statement] = STATE(473), - [sym_throw_statement] = STATE(473), - [sym__rhs_expression] = STATE(1171), - [sym__unaryExpression] = STATE(3360), - [sym_runtime_type_check_expression] = STATE(3360), - [sym_switch_expression] = STATE(396), - [sym_cast_expression] = STATE(3360), - [sym_type_trace_expression] = STATE(3360), - [sym__parenthesized_expression] = STATE(2548), - [sym_for_statement] = STATE(473), - [sym_range_expression] = STATE(3360), - [sym_subscript_expression] = STATE(3360), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(474), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(473), - [sym_conditional_statement] = STATE(473), - [sym_while_statement] = STATE(473), - [sym_do_while_statement] = STATE(473), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1171), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(473), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [84] = { + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_untyped] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), + [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), + [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), @@ -23098,120 +23396,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [83] = { - [sym_preprocessor_statement] = STATE(2411), - [sym_package_statement] = STATE(2411), - [sym_import_statement] = STATE(2411), - [sym_using_statement] = STATE(2411), - [sym_throw_statement] = STATE(2411), - [sym__rhs_expression] = STATE(1296), - [sym__unaryExpression] = STATE(3623), - [sym_runtime_type_check_expression] = STATE(3623), - [sym_switch_expression] = STATE(2350), - [sym_cast_expression] = STATE(3623), - [sym_type_trace_expression] = STATE(3623), - [sym__parenthesized_expression] = STATE(2716), - [sym_for_statement] = STATE(2411), - [sym_range_expression] = STATE(3623), - [sym_subscript_expression] = STATE(3623), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2411), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(2411), - [sym_conditional_statement] = STATE(2411), - [sym_while_statement] = STATE(2411), - [sym_do_while_statement] = STATE(2411), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1296), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2411), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [85] = { + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_untyped] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), + [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), + [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), @@ -23238,120 +23536,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [84] = { - [sym_preprocessor_statement] = STATE(400), - [sym_package_statement] = STATE(400), - [sym_import_statement] = STATE(400), - [sym_using_statement] = STATE(400), - [sym_throw_statement] = STATE(400), - [sym__rhs_expression] = STATE(1248), - [sym__unaryExpression] = STATE(3494), - [sym_runtime_type_check_expression] = STATE(3494), - [sym_switch_expression] = STATE(390), - [sym_cast_expression] = STATE(3494), - [sym_type_trace_expression] = STATE(3494), - [sym__parenthesized_expression] = STATE(2709), - [sym_for_statement] = STATE(400), - [sym_range_expression] = STATE(3494), - [sym_subscript_expression] = STATE(3494), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(400), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(400), - [sym_conditional_statement] = STATE(400), - [sym_while_statement] = STATE(400), - [sym_do_while_statement] = STATE(400), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1248), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(400), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [86] = { + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(115), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_untyped] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), + [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(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), + [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), @@ -23378,120 +23676,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(971), - [sym_package_statement] = STATE(971), - [sym_import_statement] = STATE(971), - [sym_using_statement] = STATE(971), - [sym_throw_statement] = STATE(971), - [sym__rhs_expression] = STATE(1298), - [sym__unaryExpression] = STATE(3322), - [sym_runtime_type_check_expression] = STATE(3322), - [sym_switch_expression] = STATE(958), - [sym_cast_expression] = STATE(3322), - [sym_type_trace_expression] = STATE(3322), - [sym__parenthesized_expression] = STATE(2722), - [sym_for_statement] = STATE(971), - [sym_range_expression] = STATE(3322), - [sym_subscript_expression] = STATE(3322), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(971), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(971), - [sym_conditional_statement] = STATE(971), - [sym_while_statement] = STATE(971), - [sym_do_while_statement] = STATE(971), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1298), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(971), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [87] = { + [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(825), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_untyped] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), + [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(1016), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(53), + [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), @@ -23518,120 +23816,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(423), - [sym_package_statement] = STATE(423), - [sym_import_statement] = STATE(423), - [sym_using_statement] = STATE(423), - [sym_throw_statement] = STATE(423), - [sym__rhs_expression] = STATE(1156), - [sym__unaryExpression] = STATE(3491), - [sym_runtime_type_check_expression] = STATE(3491), - [sym_switch_expression] = STATE(411), - [sym_cast_expression] = STATE(3491), - [sym_type_trace_expression] = STATE(3491), - [sym__parenthesized_expression] = STATE(2754), - [sym_for_statement] = STATE(423), - [sym_range_expression] = STATE(3491), - [sym_subscript_expression] = STATE(3491), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(423), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(423), - [sym_conditional_statement] = STATE(423), - [sym_while_statement] = STATE(423), - [sym_do_while_statement] = STATE(423), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1156), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(423), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [88] = { + [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(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_untyped] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), + [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(1174), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(129), + [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), @@ -23658,120 +23956,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(423), - [sym_package_statement] = STATE(423), - [sym_import_statement] = STATE(423), - [sym_using_statement] = STATE(423), - [sym_throw_statement] = STATE(423), - [sym__rhs_expression] = STATE(1156), - [sym__unaryExpression] = STATE(3491), - [sym_runtime_type_check_expression] = STATE(3491), - [sym_switch_expression] = STATE(411), - [sym_cast_expression] = STATE(3491), - [sym_type_trace_expression] = STATE(3491), - [sym__parenthesized_expression] = STATE(2754), - [sym_for_statement] = STATE(423), - [sym_range_expression] = STATE(3491), - [sym_subscript_expression] = STATE(3491), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(423), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(423), - [sym_conditional_statement] = STATE(423), - [sym_while_statement] = STATE(423), - [sym_do_while_statement] = STATE(423), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1156), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(423), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), + [89] = { + [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(99), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(167), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_untyped] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), + [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(169), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(173), - [anon_sym_do] = ACTIONS(129), + [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), @@ -23798,120 +24096,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(653), - [sym_package_statement] = STATE(653), - [sym_import_statement] = STATE(653), - [sym_using_statement] = STATE(653), - [sym_throw_statement] = STATE(653), - [sym__rhs_expression] = STATE(1285), - [sym__unaryExpression] = STATE(3441), - [sym_runtime_type_check_expression] = STATE(3441), - [sym_switch_expression] = STATE(622), - [sym_cast_expression] = STATE(3441), - [sym_type_trace_expression] = STATE(3441), - [sym__parenthesized_expression] = STATE(2756), - [sym_for_statement] = STATE(653), - [sym_range_expression] = STATE(3441), - [sym_subscript_expression] = STATE(3441), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(655), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(653), - [sym_conditional_statement] = STATE(653), - [sym_while_statement] = STATE(653), - [sym_do_while_statement] = STATE(653), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1285), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(653), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [90] = { + [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(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), + [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(1128), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(53), + [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), @@ -23938,120 +24236,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(647), - [sym_package_statement] = STATE(647), - [sym_import_statement] = STATE(647), - [sym_using_statement] = STATE(647), - [sym_throw_statement] = STATE(647), - [sym__rhs_expression] = STATE(1230), - [sym__unaryExpression] = STATE(3679), - [sym_runtime_type_check_expression] = STATE(3679), - [sym_switch_expression] = STATE(568), - [sym_cast_expression] = STATE(3679), - [sym_type_trace_expression] = STATE(3679), - [sym__parenthesized_expression] = STATE(2618), - [sym_for_statement] = STATE(647), - [sym_range_expression] = STATE(3679), - [sym_subscript_expression] = STATE(3679), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(647), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(647), - [sym_conditional_statement] = STATE(647), - [sym_while_statement] = STATE(647), - [sym_do_while_statement] = STATE(647), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1230), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(647), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [91] = { + [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(859), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(17), - [anon_sym_throw] = ACTIONS(19), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(861), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), + [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(869), - [anon_sym_if] = ACTIONS(871), - [anon_sym_while] = ACTIONS(873), - [anon_sym_do] = ACTIONS(53), + [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), @@ -24078,97 +24376,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(2919), - [sym_package_statement] = STATE(2919), - [sym_import_statement] = STATE(2919), - [sym_using_statement] = STATE(2919), - [sym_throw_statement] = STATE(2919), - [sym__rhs_expression] = STATE(1292), - [sym__unaryExpression] = STATE(3370), - [sym_runtime_type_check_expression] = STATE(3370), - [sym_switch_expression] = STATE(2597), - [sym_cast_expression] = STATE(3370), - [sym_type_trace_expression] = STATE(3370), - [sym__parenthesized_expression] = STATE(2697), - [sym_for_statement] = STATE(2919), - [sym_range_expression] = STATE(3370), - [sym_subscript_expression] = STATE(3370), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2919), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(2919), - [sym_conditional_statement] = STATE(2919), - [sym_while_statement] = STATE(2919), - [sym_do_while_statement] = STATE(2919), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1292), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2919), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [92] = { + [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(859), + [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_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(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_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), @@ -24179,18 +24757,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(861), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_untyped] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), + [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(869), - [anon_sym_if] = ACTIONS(871), - [anon_sym_while] = ACTIONS(873), + [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), @@ -24218,97 +24796,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [91] = { - [sym_preprocessor_statement] = STATE(670), - [sym_package_statement] = STATE(670), - [sym_import_statement] = STATE(670), - [sym_using_statement] = STATE(670), - [sym_throw_statement] = STATE(670), - [sym__rhs_expression] = STATE(1130), - [sym__unaryExpression] = STATE(3336), - [sym_runtime_type_check_expression] = STATE(3336), - [sym_switch_expression] = STATE(627), - [sym_cast_expression] = STATE(3336), - [sym_type_trace_expression] = STATE(3336), - [sym__parenthesized_expression] = STATE(2626), - [sym_for_statement] = STATE(670), - [sym_range_expression] = STATE(3336), - [sym_subscript_expression] = STATE(3336), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(670), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(670), - [sym_conditional_statement] = STATE(670), - [sym_while_statement] = STATE(670), - [sym_do_while_statement] = STATE(670), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1130), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(670), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [95] = { + [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(9), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -24319,18 +24897,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_untyped] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), + [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(1102), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1106), + [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), @@ -24358,97 +24936,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [92] = { - [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(1305), - [sym__unaryExpression] = STATE(3449), - [sym_runtime_type_check_expression] = STATE(3449), - [sym_switch_expression] = STATE(2743), - [sym_cast_expression] = STATE(3449), - [sym_type_trace_expression] = STATE(3449), - [sym__parenthesized_expression] = STATE(2746), - [sym_for_statement] = STATE(2964), - [sym_range_expression] = STATE(3449), - [sym_subscript_expression] = STATE(3449), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2964), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(2964), - [sym_conditional_statement] = STATE(2964), - [sym_while_statement] = STATE(2964), - [sym_do_while_statement] = STATE(2964), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1305), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2964), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [96] = { + [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(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -24459,18 +25037,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_untyped] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -24498,97 +25076,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [93] = { - [sym_preprocessor_statement] = STATE(2992), - [sym_package_statement] = STATE(2992), - [sym_import_statement] = STATE(2992), - [sym_using_statement] = STATE(2992), - [sym_throw_statement] = STATE(2992), + [97] = { + [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(3513), - [sym_runtime_type_check_expression] = STATE(3513), - [sym_switch_expression] = STATE(2757), - [sym_cast_expression] = STATE(3513), - [sym_type_trace_expression] = STATE(3513), - [sym__parenthesized_expression] = STATE(2762), - [sym_for_statement] = STATE(2992), - [sym_range_expression] = STATE(3513), - [sym_subscript_expression] = STATE(3513), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2992), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(2992), - [sym_conditional_statement] = STATE(2992), - [sym_while_statement] = STATE(2992), - [sym_do_while_statement] = STATE(2992), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), + [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(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2992), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -24599,18 +25177,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_untyped] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -24638,97 +25216,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [94] = { - [sym_preprocessor_statement] = STATE(2996), - [sym_package_statement] = STATE(2996), - [sym_import_statement] = STATE(2996), - [sym_using_statement] = STATE(2996), - [sym_throw_statement] = STATE(2996), - [sym__rhs_expression] = STATE(1312), - [sym__unaryExpression] = STATE(3520), - [sym_runtime_type_check_expression] = STATE(3520), - [sym_switch_expression] = STATE(2758), - [sym_cast_expression] = STATE(3520), - [sym_type_trace_expression] = STATE(3520), - [sym__parenthesized_expression] = STATE(2767), - [sym_for_statement] = STATE(2996), - [sym_range_expression] = STATE(3520), - [sym_subscript_expression] = STATE(3520), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(2996), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(2996), - [sym_conditional_statement] = STATE(2996), - [sym_while_statement] = STATE(2996), - [sym_do_while_statement] = STATE(2996), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1312), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(2996), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [98] = { + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -24739,18 +25317,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_untyped] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -24778,97 +25356,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(3000), - [sym_package_statement] = STATE(3000), - [sym_import_statement] = STATE(3000), - [sym_using_statement] = STATE(3000), - [sym_throw_statement] = STATE(3000), - [sym__rhs_expression] = STATE(1314), - [sym__unaryExpression] = STATE(3527), - [sym_runtime_type_check_expression] = STATE(3527), - [sym_switch_expression] = STATE(2759), - [sym_cast_expression] = STATE(3527), - [sym_type_trace_expression] = STATE(3527), - [sym__parenthesized_expression] = STATE(2769), - [sym_for_statement] = STATE(3000), - [sym_range_expression] = STATE(3527), - [sym_subscript_expression] = STATE(3527), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3000), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3000), - [sym_conditional_statement] = STATE(3000), - [sym_while_statement] = STATE(3000), - [sym_do_while_statement] = STATE(3000), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1314), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3000), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [99] = { + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -24879,18 +25457,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_untyped] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -24918,97 +25496,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(3020), - [sym_package_statement] = STATE(3020), - [sym_import_statement] = STATE(3020), - [sym_using_statement] = STATE(3020), - [sym_throw_statement] = STATE(3020), - [sym__rhs_expression] = STATE(1316), - [sym__unaryExpression] = STATE(3549), - [sym_runtime_type_check_expression] = STATE(3549), - [sym_switch_expression] = STATE(2774), - [sym_cast_expression] = STATE(3549), - [sym_type_trace_expression] = STATE(3549), - [sym__parenthesized_expression] = STATE(2776), - [sym_for_statement] = STATE(3020), - [sym_range_expression] = STATE(3549), - [sym_subscript_expression] = STATE(3549), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3020), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3020), - [sym_conditional_statement] = STATE(3020), - [sym_while_statement] = STATE(3020), - [sym_do_while_statement] = STATE(3020), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1316), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3020), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [100] = { + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -25019,18 +25597,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_untyped] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -25058,97 +25636,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(3035), - [sym_package_statement] = STATE(3035), - [sym_import_statement] = STATE(3035), - [sym_using_statement] = STATE(3035), - [sym_throw_statement] = STATE(3035), - [sym__rhs_expression] = STATE(1319), - [sym__unaryExpression] = STATE(3584), - [sym_runtime_type_check_expression] = STATE(3584), - [sym_switch_expression] = STATE(2781), - [sym_cast_expression] = STATE(3584), - [sym_type_trace_expression] = STATE(3584), - [sym__parenthesized_expression] = STATE(2786), - [sym_for_statement] = STATE(3035), - [sym_range_expression] = STATE(3584), - [sym_subscript_expression] = STATE(3584), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3035), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3035), - [sym_conditional_statement] = STATE(3035), - [sym_while_statement] = STATE(3035), - [sym_do_while_statement] = STATE(3035), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1319), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3035), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [101] = { + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -25159,18 +25737,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_untyped] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -25198,97 +25776,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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(1321), - [sym__unaryExpression] = STATE(3591), - [sym_runtime_type_check_expression] = STATE(3591), - [sym_switch_expression] = STATE(2782), - [sym_cast_expression] = STATE(3591), - [sym_type_trace_expression] = STATE(3591), - [sym__parenthesized_expression] = STATE(2790), - [sym_for_statement] = STATE(3039), - [sym_range_expression] = STATE(3591), - [sym_subscript_expression] = STATE(3591), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3039), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3039), - [sym_conditional_statement] = STATE(3039), - [sym_while_statement] = STATE(3039), - [sym_do_while_statement] = STATE(3039), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1321), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3039), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [102] = { + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -25299,18 +25877,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_untyped] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -25338,97 +25916,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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(1323), - [sym__unaryExpression] = STATE(3598), - [sym_runtime_type_check_expression] = STATE(3598), - [sym_switch_expression] = STATE(2783), - [sym_cast_expression] = STATE(3598), - [sym_type_trace_expression] = STATE(3598), - [sym__parenthesized_expression] = STATE(2792), - [sym_for_statement] = STATE(3043), - [sym_range_expression] = STATE(3598), - [sym_subscript_expression] = STATE(3598), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3043), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3043), - [sym_conditional_statement] = STATE(3043), - [sym_while_statement] = STATE(3043), - [sym_do_while_statement] = STATE(3043), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1323), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3043), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [103] = { + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -25439,18 +26017,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_untyped] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -25478,97 +26056,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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(1137), - [sym__unaryExpression] = STATE(3359), - [sym_runtime_type_check_expression] = STATE(3359), - [sym_switch_expression] = STATE(618), - [sym_cast_expression] = STATE(3359), - [sym_type_trace_expression] = STATE(3359), - [sym__parenthesized_expression] = STATE(2656), - [sym_for_statement] = STATE(832), - [sym_range_expression] = STATE(3359), - [sym_subscript_expression] = STATE(3359), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(832), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(832), - [sym_conditional_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_do_while_statement] = STATE(832), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1137), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(832), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [104] = { + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -25579,18 +26157,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_untyped] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -25618,237 +26196,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(3063), - [sym_package_statement] = STATE(3063), - [sym_import_statement] = STATE(3063), - [sym_using_statement] = STATE(3063), - [sym_throw_statement] = STATE(3063), - [sym__rhs_expression] = STATE(1325), - [sym__unaryExpression] = STATE(3631), - [sym_runtime_type_check_expression] = STATE(3631), - [sym_switch_expression] = STATE(2797), - [sym_cast_expression] = STATE(3631), - [sym_type_trace_expression] = STATE(3631), - [sym__parenthesized_expression] = STATE(2803), - [sym_for_statement] = STATE(3063), - [sym_range_expression] = STATE(3631), - [sym_subscript_expression] = STATE(3631), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3063), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3063), - [sym_conditional_statement] = STATE(3063), - [sym_while_statement] = STATE(3063), - [sym_do_while_statement] = STATE(3063), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1325), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3063), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(859), - [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(994), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_untyped] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [102] = { - [sym_preprocessor_statement] = STATE(3067), - [sym_package_statement] = STATE(3067), - [sym_import_statement] = STATE(3067), - [sym_using_statement] = STATE(3067), - [sym_throw_statement] = STATE(3067), - [sym__rhs_expression] = STATE(1327), - [sym__unaryExpression] = STATE(3638), - [sym_runtime_type_check_expression] = STATE(3638), - [sym_switch_expression] = STATE(2798), - [sym_cast_expression] = STATE(3638), - [sym_type_trace_expression] = STATE(3638), - [sym__parenthesized_expression] = STATE(2805), - [sym_for_statement] = STATE(3067), - [sym_range_expression] = STATE(3638), - [sym_subscript_expression] = STATE(3638), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3067), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3067), - [sym_conditional_statement] = STATE(3067), - [sym_while_statement] = STATE(3067), - [sym_do_while_statement] = STATE(3067), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1327), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3067), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [105] = { + [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(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -25859,18 +26297,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_untyped] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -25898,97 +26336,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_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(1329), - [sym__unaryExpression] = STATE(3645), - [sym_runtime_type_check_expression] = STATE(3645), - [sym_switch_expression] = STATE(2799), - [sym_cast_expression] = STATE(3645), - [sym_type_trace_expression] = STATE(3645), - [sym__parenthesized_expression] = STATE(2808), - [sym_for_statement] = STATE(3071), - [sym_range_expression] = STATE(3645), - [sym_subscript_expression] = STATE(3645), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3071), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3071), - [sym_conditional_statement] = STATE(3071), - [sym_while_statement] = STATE(3071), - [sym_do_while_statement] = STATE(3071), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1329), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3071), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [106] = { + [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_POUND] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -25999,18 +26437,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_untyped] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -26038,97 +26476,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(3107), - [sym_package_statement] = STATE(3107), - [sym_import_statement] = STATE(3107), - [sym_using_statement] = STATE(3107), - [sym_throw_statement] = STATE(3107), - [sym__rhs_expression] = STATE(1331), - [sym__unaryExpression] = STATE(3669), - [sym_runtime_type_check_expression] = STATE(3669), - [sym_switch_expression] = STATE(2753), - [sym_cast_expression] = STATE(3669), - [sym_type_trace_expression] = STATE(3669), - [sym__parenthesized_expression] = STATE(2817), - [sym_for_statement] = STATE(3107), - [sym_range_expression] = STATE(3669), - [sym_subscript_expression] = STATE(3669), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3107), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3107), - [sym_conditional_statement] = STATE(3107), - [sym_while_statement] = STATE(3107), - [sym_do_while_statement] = STATE(3107), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1331), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3107), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), + [107] = { + [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(859), + [anon_sym_POUND] = ACTIONS(917), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -26139,18 +26577,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_untyped] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), + [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), + [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), @@ -26178,621 +26616,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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_preprocessor_statement] = STATE(3028), - [sym_package_statement] = STATE(3028), - [sym_import_statement] = STATE(3028), - [sym_using_statement] = STATE(3028), - [sym_throw_statement] = STATE(3028), - [sym__rhs_expression] = STATE(1333), - [sym__unaryExpression] = STATE(3684), - [sym_runtime_type_check_expression] = STATE(3684), - [sym_switch_expression] = STATE(2778), - [sym_cast_expression] = STATE(3684), - [sym_type_trace_expression] = STATE(3684), - [sym__parenthesized_expression] = STATE(2824), - [sym_for_statement] = STATE(3028), - [sym_range_expression] = STATE(3684), - [sym_subscript_expression] = STATE(3684), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3028), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3028), - [sym_conditional_statement] = STATE(3028), - [sym_while_statement] = STATE(3028), - [sym_do_while_statement] = STATE(3028), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1333), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3028), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(859), - [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(994), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_untyped] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), + [108] = { + [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), }, - [106] = { - [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(1334), - [sym__unaryExpression] = STATE(3698), - [sym_runtime_type_check_expression] = STATE(3698), - [sym_switch_expression] = STATE(2816), - [sym_cast_expression] = STATE(3698), - [sym_type_trace_expression] = STATE(3698), - [sym__parenthesized_expression] = STATE(2550), - [sym_for_statement] = STATE(3090), - [sym_range_expression] = STATE(3698), - [sym_subscript_expression] = STATE(3698), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(3090), - [sym_metadata] = STATE(2268), - [sym_try_statement] = STATE(3090), - [sym_conditional_statement] = STATE(3090), - [sym_while_statement] = STATE(3090), - [sym_do_while_statement] = STATE(3090), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1334), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(3090), - [sym__modifier] = STATE(2274), - [sym_class_declaration] = STATE(701), - [sym_interface_declaration] = STATE(701), - [sym_enum_declaration] = STATE(701), - [sym_typedef_declaration] = STATE(701), - [sym_function_declaration] = STATE(701), - [sym_variable_declaration] = STATE(701), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2268), - [aux_sym_class_declaration_repeat2] = STATE(2274), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(859), - [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(994), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_untyped] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [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(996), - [anon_sym_if] = ACTIONS(998), - [anon_sym_while] = ACTIONS(1000), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(69), - [anon_sym_abstract] = ACTIONS(69), - [anon_sym_static] = ACTIONS(69), - [anon_sym_public] = ACTIONS(69), - [anon_sym_private] = ACTIONS(69), - [anon_sym_extern] = ACTIONS(69), - [anon_sym_inline] = ACTIONS(69), - [anon_sym_overload] = ACTIONS(69), - [anon_sym_override] = ACTIONS(69), - [anon_sym_final] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_interface] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(77), - [anon_sym_typedef] = ACTIONS(79), - [anon_sym_function] = ACTIONS(81), - [anon_sym_var] = ACTIONS(83), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), - [sym_comment] = ACTIONS(3), + [109] = { + [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), }, - [107] = { - [sym_preprocessor_statement] = STATE(400), - [sym_package_statement] = STATE(400), - [sym_import_statement] = STATE(400), - [sym_using_statement] = STATE(400), - [sym_throw_statement] = STATE(400), - [sym__rhs_expression] = STATE(1248), - [sym__unaryExpression] = STATE(3494), - [sym_runtime_type_check_expression] = STATE(3494), - [sym_switch_expression] = STATE(390), - [sym_cast_expression] = STATE(3494), - [sym_type_trace_expression] = STATE(3494), - [sym__parenthesized_expression] = STATE(2709), - [sym_for_statement] = STATE(400), - [sym_range_expression] = STATE(3494), - [sym_subscript_expression] = STATE(3494), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym_block] = STATE(400), - [sym_metadata] = STATE(2262), - [sym_try_statement] = STATE(400), - [sym_conditional_statement] = STATE(400), - [sym_while_statement] = STATE(400), - [sym_do_while_statement] = STATE(400), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1248), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym_declaration] = STATE(400), - [sym__modifier] = STATE(2273), - [sym_class_declaration] = STATE(571), - [sym_interface_declaration] = STATE(571), - [sym_enum_declaration] = STATE(571), - [sym_typedef_declaration] = STATE(571), - [sym_function_declaration] = STATE(571), - [sym_variable_declaration] = STATE(571), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [aux_sym_class_declaration_repeat1] = STATE(2262), - [aux_sym_class_declaration_repeat2] = STATE(2273), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(321), - [anon_sym_package] = ACTIONS(101), - [anon_sym_import] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_using] = ACTIONS(105), - [anon_sym_throw] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_untyped] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [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(1042), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(129), - [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(57), - [anon_sym_null] = ACTIONS(67), - [anon_sym_macro] = ACTIONS(131), - [anon_sym_abstract] = ACTIONS(131), - [anon_sym_static] = ACTIONS(131), - [anon_sym_public] = ACTIONS(131), - [anon_sym_private] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(131), - [anon_sym_inline] = ACTIONS(131), - [anon_sym_overload] = ACTIONS(131), - [anon_sym_override] = ACTIONS(131), - [anon_sym_final] = ACTIONS(133), - [anon_sym_class] = ACTIONS(135), - [anon_sym_interface] = ACTIONS(137), - [anon_sym_enum] = ACTIONS(139), - [anon_sym_typedef] = ACTIONS(141), - [anon_sym_function] = ACTIONS(143), - [anon_sym_var] = ACTIONS(145), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [110] = { + [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), }, - [108] = { - [sym__rhs_expression] = STATE(379), - [sym_member_expression] = STATE(362), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(379), - [sym__literal] = STATE(578), - [sym_integer] = STATE(578), - [sym_float] = STATE(578), - [sym_bool] = STATE(578), - [sym_string] = STATE(393), - [sym_null] = STATE(578), - [sym_array] = STATE(578), - [sym_map] = STATE(578), - [sym_object] = STATE(578), - [sym_pair] = STATE(578), - [sym_identifier] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_using] = ACTIONS(1300), - [anon_sym_throw] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_AT_COLON] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_macro] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_public] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_overload] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_interface] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_function] = ACTIONS(1300), - [anon_sym_var] = ACTIONS(1300), - [aux_sym_integer_token1] = ACTIONS(1300), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1302), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [109] = { - [sym__rhs_expression] = STATE(877), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(974), - [sym_range_expression] = STATE(169), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(948), - [sym__lhs_expression] = STATE(2331), - [sym_builtin_type] = STATE(2322), - [sym__function_type_args] = STATE(3553), - [sym_function_type] = STATE(2499), - [sym_type] = STATE(2640), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), + [111] = { + [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(166), + [sym_integer] = STATE(163), [sym_float] = STATE(964), [sym_bool] = STATE(964), - [sym_string] = STATE(928), + [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(3490), + [sym_structure_type_pair] = STATE(3652), [sym_pair] = STATE(964), - [aux_sym__parenthesized_expression_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1304), + [aux_sym__parenthesized_expression_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1326), - [anon_sym_Void] = ACTIONS(1328), - [anon_sym_Int] = ACTIONS(1328), - [anon_sym_Float] = ACTIONS(1328), - [anon_sym_Bool] = ACTIONS(1328), - [anon_sym_Null] = ACTIONS(1328), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -26818,83 +27040,695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [110] = { - [sym__rhs_expression] = STATE(877), - [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(974), - [sym_range_expression] = STATE(165), - [sym_subscript_expression] = STATE(165), - [sym_member_expression] = STATE(948), - [sym__lhs_expression] = STATE(2331), - [sym_builtin_type] = STATE(2322), - [sym__function_type_args] = STATE(3480), - [sym_function_type] = STATE(2499), - [sym_type] = STATE(2559), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), + [112] = { + [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_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_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(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(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_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(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(166), + [sym_integer] = STATE(163), [sym_float] = STATE(964), [sym_bool] = STATE(964), - [sym_string] = STATE(928), + [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(3605), + [sym_structure_type_pair] = STATE(3388), [sym_pair] = STATE(964), - [aux_sym__parenthesized_expression_repeat1] = STATE(165), - [sym_identifier] = ACTIONS(1304), + [aux_sym__parenthesized_expression_repeat1] = STATE(164), + [sym_identifier] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1326), - [anon_sym_Void] = ACTIONS(1328), - [anon_sym_Int] = ACTIONS(1328), - [anon_sym_Float] = ACTIONS(1328), - [anon_sym_Bool] = ACTIONS(1328), - [anon_sym_Null] = ACTIONS(1328), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -26920,880 +27754,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [111] = { - [sym__rhs_expression] = STATE(358), - [sym_member_expression] = STATE(362), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(358), - [sym__literal] = STATE(578), - [sym_integer] = STATE(578), - [sym_float] = STATE(578), - [sym_bool] = STATE(578), - [sym_string] = STATE(393), - [sym_null] = STATE(578), - [sym_array] = STATE(578), - [sym_map] = STATE(578), - [sym_object] = STATE(578), - [sym_pair] = STATE(578), - [sym_identifier] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_using] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1366), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1354), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [112] = { - [sym_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(2837), - [sym_integer] = STATE(2837), - [sym_float] = STATE(2837), - [sym_bool] = STATE(2837), - [sym_string] = STATE(2291), - [sym_null] = STATE(2837), - [sym_array] = STATE(2837), - [sym_map] = STATE(2837), - [sym_object] = STATE(2837), - [sym_pair] = STATE(2837), - [aux_sym_member_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1384), - [anon_sym_package] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_import] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_using] = ACTIONS(1386), - [anon_sym_throw] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_cast] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_DOLLARtype] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_AT_COLON] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1386), - [anon_sym_catch] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_EQ_GT] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1386), - [anon_sym_abstract] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_overload] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_final] = ACTIONS(1386), - [anon_sym_class] = ACTIONS(1386), - [anon_sym_interface] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1384), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [113] = { - [sym_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(2837), - [sym_integer] = STATE(2837), - [sym_float] = STATE(2837), - [sym_bool] = STATE(2837), - [sym_string] = STATE(2291), - [sym_null] = STATE(2837), - [sym_array] = STATE(2837), - [sym_map] = STATE(2837), - [sym_object] = STATE(2837), - [sym_pair] = STATE(2837), - [aux_sym_member_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_package] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_import] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_throw] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_cast] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLARtype] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_AT_COLON] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_catch] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_EQ_GT] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1390), - [anon_sym_abstract] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_public] = ACTIONS(1390), - [anon_sym_private] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_overload] = ACTIONS(1390), - [anon_sym_override] = ACTIONS(1390), - [anon_sym_final] = ACTIONS(1390), - [anon_sym_class] = ACTIONS(1390), - [anon_sym_interface] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_function] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1388), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [114] = { - [sym__rhs_expression] = STATE(220), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(220), - [sym__literal] = STATE(582), - [sym_integer] = STATE(582), - [sym_float] = STATE(582), - [sym_bool] = STATE(582), - [sym_string] = STATE(398), - [sym_null] = STATE(582), - [sym_array] = STATE(582), - [sym_map] = STATE(582), - [sym_object] = STATE(582), - [sym_pair] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_using] = ACTIONS(1300), - [anon_sym_throw] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_AT_COLON] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_macro] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_public] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_overload] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_interface] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_function] = ACTIONS(1300), - [anon_sym_var] = ACTIONS(1300), - [aux_sym_integer_token1] = ACTIONS(1300), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [115] = { - [sym_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(2837), - [sym_integer] = STATE(2837), - [sym_float] = STATE(2837), - [sym_bool] = STATE(2837), - [sym_string] = STATE(2291), - [sym_null] = STATE(2837), - [sym_array] = STATE(2837), - [sym_map] = STATE(2837), - [sym_object] = STATE(2837), - [sym_pair] = STATE(2837), - [aux_sym_member_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(1392), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_package] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_using] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_cast] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_DOLLARtype] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_untyped] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_AT_COLON] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1408), - [anon_sym_macro] = ACTIONS(1397), - [anon_sym_abstract] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - [anon_sym_private] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_inline] = ACTIONS(1397), - [anon_sym_overload] = ACTIONS(1397), - [anon_sym_override] = ACTIONS(1397), - [anon_sym_final] = ACTIONS(1397), - [anon_sym_class] = ACTIONS(1397), - [anon_sym_interface] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1411), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1417), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1429), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1395), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [116] = { - [sym__rhs_expression] = STATE(235), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(235), - [sym__literal] = STATE(582), - [sym_integer] = STATE(582), - [sym_float] = STATE(582), - [sym_bool] = STATE(582), - [sym_string] = STATE(398), - [sym_null] = STATE(582), - [sym_array] = STATE(582), - [sym_map] = STATE(582), - [sym_object] = STATE(582), - [sym_pair] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_using] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [119] = { + [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), }, - [117] = { - [sym_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(2837), - [sym_integer] = STATE(2837), - [sym_float] = STATE(2837), - [sym_bool] = STATE(2837), - [sym_string] = STATE(2291), - [sym_null] = STATE(2837), - [sym_array] = STATE(2837), - [sym_map] = STATE(2837), - [sym_object] = STATE(2837), - [sym_pair] = STATE(2837), - [aux_sym_member_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_package] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1312), - [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_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_untyped] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_AT_COLON] = ACTIONS(1436), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1332), - [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_enum] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1436), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [118] = { - [sym_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(2837), - [sym_integer] = STATE(2837), - [sym_float] = STATE(2837), - [sym_bool] = STATE(2837), - [sym_string] = STATE(2291), - [sym_null] = STATE(2837), - [sym_array] = STATE(2837), - [sym_map] = STATE(2837), - [sym_object] = STATE(2837), - [sym_pair] = STATE(2837), - [aux_sym_member_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_using] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1312), - [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_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_untyped] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1442), - [anon_sym_AT_COLON] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1442), - [anon_sym_else] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1332), - [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_enum] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_function] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1440), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [119] = { - [sym_operator] = STATE(1917), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_package] = ACTIONS(1444), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(1444), + [120] = { + [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(1444), - [anon_sym_throw] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_cast] = ACTIONS(1444), - [anon_sym_DOLLARtype] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_untyped] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_this] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1444), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_AT_COLON] = ACTIONS(1446), - [anon_sym_try] = ACTIONS(1444), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_else] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_new] = ACTIONS(1444), + [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), @@ -27819,982 +27938,880 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_macro] = ACTIONS(1444), - [anon_sym_abstract] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_public] = ACTIONS(1444), - [anon_sym_private] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym_overload] = ACTIONS(1444), - [anon_sym_override] = ACTIONS(1444), - [anon_sym_final] = ACTIONS(1444), - [anon_sym_class] = ACTIONS(1444), - [anon_sym_interface] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [aux_sym_integer_token1] = ACTIONS(1444), - [aux_sym_integer_token2] = ACTIONS(1446), - [aux_sym_float_token1] = ACTIONS(1444), - [aux_sym_float_token2] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [aux_sym_string_token1] = ACTIONS(1446), - [aux_sym_string_token3] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1446), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [120] = { - [sym__rhs_expression] = STATE(379), - [sym_member_expression] = STATE(362), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(379), - [sym__literal] = STATE(569), - [sym_integer] = STATE(569), - [sym_float] = STATE(569), - [sym_bool] = STATE(569), - [sym_string] = STATE(393), - [sym_null] = STATE(569), - [sym_array] = STATE(569), - [sym_map] = STATE(569), - [sym_object] = STATE(569), - [sym_pair] = STATE(569), - [sym_identifier] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_using] = ACTIONS(1300), - [anon_sym_throw] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_AT_COLON] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_macro] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_public] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_overload] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_interface] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_function] = ACTIONS(1300), - [anon_sym_var] = ACTIONS(1300), - [aux_sym_integer_token1] = ACTIONS(1300), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1302), + [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(761), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(761), - [sym__literal] = STATE(572), - [sym_integer] = STATE(572), - [sym_float] = STATE(572), - [sym_bool] = STATE(572), - [sym_string] = STATE(398), - [sym_null] = STATE(572), - [sym_array] = STATE(572), - [sym_map] = STATE(572), - [sym_object] = STATE(572), - [sym_pair] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [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(1452), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_interface] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_function] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [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_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(3103), - [sym_integer] = STATE(3103), - [sym_float] = STATE(3103), - [sym_bool] = STATE(3103), - [sym_string] = STATE(2291), - [sym_null] = STATE(3103), - [sym_array] = STATE(3103), - [sym_map] = STATE(3103), - [sym_object] = STATE(3103), - [sym_pair] = STATE(3103), - [aux_sym_member_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1384), - [anon_sym_package] = ACTIONS(1386), - [anon_sym_import] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_using] = ACTIONS(1386), - [anon_sym_throw] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_cast] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_DOLLARtype] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_AT_COLON] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1386), - [anon_sym_catch] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_EQ_GT] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1386), - [anon_sym_abstract] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_overload] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_final] = ACTIONS(1386), - [anon_sym_class] = ACTIONS(1386), - [anon_sym_interface] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1384), + [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_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(3103), - [sym_integer] = STATE(3103), - [sym_float] = STATE(3103), - [sym_bool] = STATE(3103), - [sym_string] = STATE(2291), - [sym_null] = STATE(3103), - [sym_array] = STATE(3103), - [sym_map] = STATE(3103), - [sym_object] = STATE(3103), - [sym_pair] = STATE(3103), - [aux_sym_member_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_package] = ACTIONS(1390), - [anon_sym_import] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_throw] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_cast] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLARtype] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_AT_COLON] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_catch] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_EQ_GT] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1390), - [anon_sym_abstract] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_public] = ACTIONS(1390), - [anon_sym_private] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_overload] = ACTIONS(1390), - [anon_sym_override] = ACTIONS(1390), - [anon_sym_final] = ACTIONS(1390), - [anon_sym_class] = ACTIONS(1390), - [anon_sym_interface] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_function] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1388), + [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_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(3103), - [sym_integer] = STATE(3103), - [sym_float] = STATE(3103), - [sym_bool] = STATE(3103), - [sym_string] = STATE(2291), - [sym_null] = STATE(3103), - [sym_array] = STATE(3103), - [sym_map] = STATE(3103), - [sym_object] = STATE(3103), - [sym_pair] = STATE(3103), - [aux_sym_member_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_package] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_using] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_cast] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_DOLLARtype] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_untyped] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_AT_COLON] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1408), - [anon_sym_macro] = ACTIONS(1397), - [anon_sym_abstract] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - [anon_sym_private] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_inline] = ACTIONS(1397), - [anon_sym_overload] = ACTIONS(1397), - [anon_sym_override] = ACTIONS(1397), - [anon_sym_final] = ACTIONS(1397), - [anon_sym_class] = ACTIONS(1397), - [anon_sym_interface] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1411), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1417), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1429), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1395), + [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_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(3103), - [sym_integer] = STATE(3103), - [sym_float] = STATE(3103), - [sym_bool] = STATE(3103), - [sym_string] = STATE(2291), - [sym_null] = STATE(3103), - [sym_array] = STATE(3103), - [sym_map] = STATE(3103), - [sym_object] = STATE(3103), - [sym_pair] = STATE(3103), - [aux_sym_member_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_package] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1312), - [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_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_untyped] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_AT_COLON] = ACTIONS(1436), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1332), - [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_enum] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1436), + [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_member_expression] = STATE(367), - [sym__lhs_expression] = STATE(368), - [sym__literal] = STATE(3103), - [sym_integer] = STATE(3103), - [sym_float] = STATE(3103), - [sym_bool] = STATE(3103), - [sym_string] = STATE(2291), - [sym_null] = STATE(3103), - [sym_array] = STATE(3103), - [sym_map] = STATE(3103), - [sym_object] = STATE(3103), - [sym_pair] = STATE(3103), - [aux_sym_member_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_using] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1312), - [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_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_untyped] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1442), - [anon_sym_AT_COLON] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1442), - [anon_sym_else] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1332), - [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_enum] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_function] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1440), + [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_operator] = STATE(108), - [sym__unaryOperator] = STATE(372), - [sym__prefixUnaryOperator] = STATE(372), - [sym__postfixUnaryOperator] = STATE(372), - [sym__binaryOperator] = STATE(372), - [sym__arithmeticOperator] = STATE(372), - [sym__bitwiseOperator] = STATE(372), - [sym__logicalOperator] = STATE(372), - [sym__comparisonOperator] = STATE(372), - [sym__miscOperator] = STATE(372), - [sym__assignmentOperator] = STATE(372), - [sym__compoundAssignmentOperator] = STATE(372), - [sym__rangeOperator] = STATE(372), - [aux_sym_expression_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_GT_GT_GT] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_CARET] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT] = ACTIONS(1468), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_EQ_GT] = ACTIONS(1466), - [anon_sym_QMARK_QMARK] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1356), - [aux_sym_integer_token2] = ACTIONS(1354), - [aux_sym_float_token1] = ACTIONS(1356), - [aux_sym_float_token2] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1354), - [aux_sym_string_token3] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1354), + [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_operator] = STATE(1825), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_package] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_import] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1476), - [anon_sym_throw] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_this] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_AT_COLON] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_GT_GT_GT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ_GT] = ACTIONS(1481), - [anon_sym_QMARK_QMARK] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_macro] = ACTIONS(1476), - [anon_sym_abstract] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_public] = ACTIONS(1476), - [anon_sym_private] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym_overload] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1476), - [anon_sym_class] = ACTIONS(1476), - [anon_sym_interface] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [aux_sym_integer_token1] = ACTIONS(1476), - [aux_sym_integer_token2] = ACTIONS(1474), - [aux_sym_float_token1] = ACTIONS(1476), - [aux_sym_float_token2] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1474), - [aux_sym_string_token3] = ACTIONS(1474), - [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_operator] = STATE(1825), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_package] = ACTIONS(1444), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(1444), + [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(1444), - [anon_sym_throw] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_cast] = ACTIONS(1444), - [anon_sym_DOLLARtype] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_untyped] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_this] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1444), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_AT_COLON] = ACTIONS(1446), - [anon_sym_try] = ACTIONS(1444), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_else] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_new] = ACTIONS(1444), + [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), @@ -28820,384 +28837,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_macro] = ACTIONS(1444), - [anon_sym_abstract] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_public] = ACTIONS(1444), - [anon_sym_private] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym_overload] = ACTIONS(1444), - [anon_sym_override] = ACTIONS(1444), - [anon_sym_final] = ACTIONS(1444), - [anon_sym_class] = ACTIONS(1444), - [anon_sym_interface] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [aux_sym_integer_token1] = ACTIONS(1444), - [aux_sym_integer_token2] = ACTIONS(1446), - [aux_sym_float_token1] = ACTIONS(1444), - [aux_sym_float_token2] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [aux_sym_string_token1] = ACTIONS(1446), - [aux_sym_string_token3] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), + [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(220), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(220), - [sym__literal] = STATE(572), - [sym_integer] = STATE(572), - [sym_float] = STATE(572), - [sym_bool] = STATE(572), - [sym_string] = STATE(398), - [sym_null] = STATE(572), - [sym_array] = STATE(572), - [sym_map] = STATE(572), - [sym_object] = STATE(572), - [sym_pair] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_using] = ACTIONS(1300), - [anon_sym_throw] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_AT_COLON] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_macro] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_public] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_overload] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_interface] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_function] = ACTIONS(1300), - [anon_sym_var] = ACTIONS(1300), - [aux_sym_integer_token1] = ACTIONS(1300), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [131] = { - [sym_operator] = STATE(1917), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_package] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_import] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1476), - [anon_sym_throw] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_this] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_AT_COLON] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_GT_GT_GT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ_GT] = ACTIONS(1481), - [anon_sym_QMARK_QMARK] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_macro] = ACTIONS(1476), - [anon_sym_abstract] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_public] = ACTIONS(1476), - [anon_sym_private] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym_overload] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1476), - [anon_sym_class] = ACTIONS(1476), - [anon_sym_interface] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [aux_sym_integer_token1] = ACTIONS(1476), - [aux_sym_integer_token2] = ACTIONS(1474), - [aux_sym_float_token1] = ACTIONS(1476), - [aux_sym_float_token2] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1474), - [aux_sym_string_token3] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1474), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [132] = { - [sym__rhs_expression] = STATE(589), - [sym_member_expression] = STATE(362), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(589), - [sym__literal] = STATE(569), - [sym_integer] = STATE(569), - [sym_float] = STATE(569), - [sym_bool] = STATE(569), - [sym_string] = STATE(393), - [sym_null] = STATE(569), - [sym_array] = STATE(569), - [sym_map] = STATE(569), - [sym_object] = STATE(569), - [sym_pair] = STATE(569), - [sym_identifier] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [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(1452), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1366), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_interface] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_function] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1448), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [133] = { - [sym_operator] = STATE(114), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(199), - [sym__bitwiseOperator] = STATE(199), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), + [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(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1356), + [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(1498), + [anon_sym_DASH] = ACTIONS(1504), [anon_sym_PLUS_PLUS] = ACTIONS(63), [anon_sym_DASH_DASH] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(57), @@ -29220,688 +28938,988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1356), - [aux_sym_integer_token2] = ACTIONS(1354), - [aux_sym_float_token1] = ACTIONS(1356), - [aux_sym_float_token2] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1354), - [aux_sym_string_token3] = ACTIONS(1354), + [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), }, - [134] = { - [sym_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(2982), - [sym_integer] = STATE(2982), - [sym_float] = STATE(2982), - [sym_bool] = STATE(2982), - [sym_string] = STATE(2291), - [sym_null] = STATE(2982), - [sym_array] = STATE(2982), - [sym_map] = STATE(2982), - [sym_object] = STATE(2982), - [sym_pair] = STATE(2982), - [aux_sym_member_expression_repeat1] = STATE(137), - [ts_builtin_sym_end] = ACTIONS(1384), + [131] = { + [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(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_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(1384), - [anon_sym_package] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_import] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_using] = ACTIONS(1386), - [anon_sym_throw] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1386), - [anon_sym_DOLLARtype] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_AT_COLON] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1386), - [anon_sym_catch] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_EQ_GT] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1386), - [anon_sym_abstract] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_overload] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_final] = ACTIONS(1386), - [anon_sym_class] = ACTIONS(1386), - [anon_sym_interface] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(2982), - [sym_integer] = STATE(2982), - [sym_float] = STATE(2982), - [sym_bool] = STATE(2982), - [sym_string] = STATE(2291), - [sym_null] = STATE(2982), - [sym_array] = STATE(2982), - [sym_map] = STATE(2982), - [sym_object] = STATE(2982), - [sym_pair] = STATE(2982), - [aux_sym_member_expression_repeat1] = STATE(137), - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_package] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_import] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_throw] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1390), - [anon_sym_DOLLARtype] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_AT_COLON] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_catch] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_EQ_GT] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1390), - [anon_sym_abstract] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_public] = ACTIONS(1390), - [anon_sym_private] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_overload] = ACTIONS(1390), - [anon_sym_override] = ACTIONS(1390), - [anon_sym_final] = ACTIONS(1390), - [anon_sym_class] = ACTIONS(1390), - [anon_sym_interface] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_function] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(2982), - [sym_integer] = STATE(2982), - [sym_float] = STATE(2982), - [sym_bool] = STATE(2982), - [sym_string] = STATE(2291), - [sym_null] = STATE(2982), - [sym_array] = STATE(2982), - [sym_map] = STATE(2982), - [sym_object] = STATE(2982), - [sym_pair] = STATE(2982), - [aux_sym_member_expression_repeat1] = STATE(137), - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_package] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1438), - [anon_sym_DOLLARtype] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_untyped] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_AT_COLON] = ACTIONS(1436), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1332), - [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_enum] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(2982), - [sym_integer] = STATE(2982), - [sym_float] = STATE(2982), - [sym_bool] = STATE(2982), - [sym_string] = STATE(2291), - [sym_null] = STATE(2982), - [sym_array] = STATE(2982), - [sym_map] = STATE(2982), - [sym_object] = STATE(2982), - [sym_pair] = STATE(2982), - [aux_sym_member_expression_repeat1] = STATE(137), - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_package] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_using] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_cast] = ACTIONS(1397), - [anon_sym_DOLLARtype] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_untyped] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_AT_COLON] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1408), - [anon_sym_macro] = ACTIONS(1397), - [anon_sym_abstract] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - [anon_sym_private] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_inline] = ACTIONS(1397), - [anon_sym_overload] = ACTIONS(1397), - [anon_sym_override] = ACTIONS(1397), - [anon_sym_final] = ACTIONS(1397), - [anon_sym_class] = ACTIONS(1397), - [anon_sym_interface] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1411), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1417), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1429), + [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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(2982), - [sym_integer] = STATE(2982), - [sym_float] = STATE(2982), - [sym_bool] = STATE(2982), - [sym_string] = STATE(2291), - [sym_null] = STATE(2982), - [sym_array] = STATE(2982), - [sym_map] = STATE(2982), - [sym_object] = STATE(2982), - [sym_pair] = STATE(2982), - [aux_sym_member_expression_repeat1] = STATE(137), - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_using] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1442), - [anon_sym_DOLLARtype] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_untyped] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1442), - [anon_sym_AT_COLON] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1442), - [anon_sym_else] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1332), - [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_enum] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_function] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_operator] = STATE(1978), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), + [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(1474), - [sym_identifier] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_package] = ACTIONS(1476), - [anon_sym_import] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1476), - [anon_sym_throw] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_this] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_AT_COLON] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_GT_GT_GT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ_GT] = ACTIONS(1481), - [anon_sym_QMARK_QMARK] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_macro] = ACTIONS(1476), - [anon_sym_abstract] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_public] = ACTIONS(1476), - [anon_sym_private] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym_overload] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1476), - [anon_sym_class] = ACTIONS(1476), - [anon_sym_interface] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [aux_sym_integer_token1] = ACTIONS(1476), - [aux_sym_integer_token2] = ACTIONS(1474), - [aux_sym_float_token1] = ACTIONS(1476), - [aux_sym_float_token2] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1474), - [aux_sym_string_token3] = ACTIONS(1474), + [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(856), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(948), - [sym__lhs_expression] = STATE(2331), - [sym_builtin_type] = STATE(2322), - [sym_function_type] = STATE(2499), - [sym_type] = STATE(2706), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(856), - [sym_operator] = STATE(1910), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(968), - [sym_integer] = STATE(166), - [sym_float] = STATE(968), - [sym_bool] = STATE(968), - [sym_string] = STATE(928), - [sym_null] = STATE(968), - [sym_array] = STATE(968), - [sym_map] = STATE(968), - [sym_object] = STATE(968), - [sym_pair] = STATE(968), - [sym_identifier] = ACTIONS(1508), + [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(1306), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1510), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_untyped] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1518), - [anon_sym_Void] = ACTIONS(1328), - [anon_sym_Int] = ACTIONS(1328), - [anon_sym_Float] = ACTIONS(1328), - [anon_sym_Bool] = ACTIONS(1328), - [anon_sym_Null] = ACTIONS(1328), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -29927,79 +29945,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(856), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(948), - [sym__lhs_expression] = STATE(2331), - [sym_builtin_type] = STATE(2322), - [sym_function_type] = STATE(2499), - [sym_type] = STATE(3234), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(856), - [sym_operator] = STATE(1910), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(968), - [sym_integer] = STATE(166), - [sym_float] = STATE(968), - [sym_bool] = STATE(968), - [sym_string] = STATE(928), - [sym_null] = STATE(968), - [sym_array] = STATE(968), - [sym_map] = STATE(968), - [sym_object] = STATE(968), - [sym_pair] = STATE(968), - [sym_identifier] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), + [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(1316), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_untyped] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1518), - [anon_sym_Void] = ACTIONS(1328), - [anon_sym_Int] = ACTIONS(1328), - [anon_sym_Float] = ACTIONS(1328), - [anon_sym_Bool] = ACTIONS(1328), - [anon_sym_Null] = ACTIONS(1328), - [anon_sym_new] = ACTIONS(1330), + [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_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(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), @@ -30025,79 +30239,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [142] = { - [sym__rhs_expression] = STATE(1099), - [sym__unaryExpression] = STATE(352), - [sym_runtime_type_check_expression] = STATE(352), - [sym_switch_expression] = STATE(352), - [sym_cast_expression] = STATE(352), - [sym_type_trace_expression] = STATE(352), - [sym__parenthesized_expression] = STATE(318), - [sym_range_expression] = STATE(352), - [sym_subscript_expression] = STATE(352), - [sym_member_expression] = STATE(1558), - [sym__lhs_expression] = STATE(2330), - [sym_builtin_type] = STATE(2486), - [sym_function_type] = STATE(2849), - [sym_type] = STATE(2971), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(1099), + [144] = { + [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(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1627), - [sym_integer] = STATE(324), - [sym_float] = STATE(1627), - [sym_bool] = STATE(1627), - [sym_string] = STATE(1369), - [sym_null] = STATE(1627), - [sym_array] = STATE(1627), - [sym_map] = STATE(1627), - [sym_object] = STATE(1627), - [sym_pair] = STATE(1627), - [sym_identifier] = ACTIONS(1520), + [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(1522), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), [anon_sym_cast] = ACTIONS(1526), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_untyped] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1536), - [anon_sym_Void] = ACTIONS(1538), - [anon_sym_Int] = ACTIONS(1538), - [anon_sym_Float] = ACTIONS(1538), - [anon_sym_Bool] = ACTIONS(1538), - [anon_sym_Null] = ACTIONS(1538), - [anon_sym_new] = ACTIONS(1364), + [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), @@ -30123,79 +30337,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), + [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), }, - [143] = { - [sym__rhs_expression] = STATE(976), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(948), - [sym__lhs_expression] = STATE(2331), - [sym_builtin_type] = STATE(2322), - [sym_function_type] = STATE(2499), - [sym_type] = STATE(2920), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(976), - [sym_operator] = STATE(1876), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(2054), - [sym_integer] = STATE(166), - [sym_float] = STATE(2054), - [sym_bool] = STATE(2054), + [145] = { + [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(2054), - [sym_array] = STATE(2054), - [sym_map] = STATE(2054), - [sym_object] = STATE(2054), - [sym_pair] = STATE(2054), - [sym_identifier] = ACTIONS(1540), + [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(1306), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1542), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_untyped] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1518), - [anon_sym_Void] = ACTIONS(1328), - [anon_sym_Int] = ACTIONS(1328), - [anon_sym_Float] = ACTIONS(1328), - [anon_sym_Bool] = ACTIONS(1328), - [anon_sym_Null] = ACTIONS(1328), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -30221,262 +30435,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [144] = { - [sym_operator] = STATE(1869), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_package] = ACTIONS(1476), - [anon_sym_import] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1476), - [anon_sym_throw] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_this] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_AT_COLON] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_GT_GT_GT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ_GT] = ACTIONS(1481), - [anon_sym_QMARK_QMARK] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_macro] = ACTIONS(1476), - [anon_sym_abstract] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_public] = ACTIONS(1476), - [anon_sym_private] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym_overload] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1476), - [anon_sym_class] = ACTIONS(1476), - [anon_sym_interface] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [aux_sym_integer_token1] = ACTIONS(1476), - [aux_sym_integer_token2] = ACTIONS(1474), - [aux_sym_float_token1] = ACTIONS(1476), - [aux_sym_float_token2] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1474), - [aux_sym_string_token3] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1474), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [145] = { - [sym_operator] = STATE(120), - [sym__unaryOperator] = STATE(372), - [sym__prefixUnaryOperator] = STATE(372), - [sym__postfixUnaryOperator] = STATE(372), - [sym__binaryOperator] = STATE(372), - [sym__arithmeticOperator] = STATE(372), - [sym__bitwiseOperator] = STATE(372), - [sym__logicalOperator] = STATE(372), - [sym__comparisonOperator] = STATE(372), - [sym__miscOperator] = STATE(372), - [sym__assignmentOperator] = STATE(372), - [sym__compoundAssignmentOperator] = STATE(372), - [sym__rangeOperator] = STATE(372), - [aux_sym_expression_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_this] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_LT_LT] = ACTIONS(1466), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_GT_GT_GT] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_CARET] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT] = ACTIONS(1468), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_EQ_GT] = ACTIONS(1466), - [anon_sym_QMARK_QMARK] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_interface] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_function] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1452), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1452), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1448), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, [146] = { - [sym_operator] = STATE(130), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(199), - [sym__bitwiseOperator] = STATE(199), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(147), - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), + [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(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_this] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1452), + [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(1498), + [anon_sym_DASH] = ACTIONS(1504), [anon_sym_PLUS_PLUS] = ACTIONS(63), [anon_sym_DASH_DASH] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(57), @@ -30499,79 +30517,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_interface] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_function] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1452), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1452), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), + [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_operator] = STATE(1978), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_identifier] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_package] = ACTIONS(1550), - [anon_sym_import] = ACTIONS(1550), + [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(1550), - [anon_sym_throw] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_cast] = ACTIONS(1550), - [anon_sym_DOLLARtype] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1550), - [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_AT] = ACTIONS(1550), - [anon_sym_AT_COLON] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_new] = ACTIONS(1550), + [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), @@ -30597,78 +30614,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [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_enum] = 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), + [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_operator] = STATE(1869), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_package] = ACTIONS(1550), - [anon_sym_import] = ACTIONS(1550), + [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(1550), - [anon_sym_throw] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_cast] = ACTIONS(1550), - [anon_sym_DOLLARtype] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1550), - [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_AT] = ACTIONS(1550), - [anon_sym_AT_COLON] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_new] = ACTIONS(1550), + [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), @@ -30694,96 +30713,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [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_enum] = 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), + [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(976), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(948), - [sym__lhs_expression] = STATE(2331), - [sym_builtin_type] = STATE(2322), - [sym_function_type] = STATE(2499), - [sym_type] = STATE(2655), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(976), - [sym_operator] = STATE(1876), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(2054), - [sym_integer] = STATE(166), - [sym_float] = STATE(2054), - [sym_bool] = STATE(2054), + [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(2054), - [sym_array] = STATE(2054), - [sym_map] = STATE(2054), - [sym_object] = STATE(2054), - [sym_pair] = STATE(2054), - [sym_identifier] = ACTIONS(1540), + [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(1306), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1542), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_untyped] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1518), - [anon_sym_Void] = ACTIONS(1328), - [anon_sym_Int] = ACTIONS(1328), - [anon_sym_Float] = ACTIONS(1328), - [anon_sym_Bool] = ACTIONS(1328), - [anon_sym_Null] = ACTIONS(1328), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -30809,561 +30827,561 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3097), - [sym_integer] = STATE(3097), - [sym_float] = STATE(3097), - [sym_bool] = STATE(3097), - [sym_string] = STATE(2291), - [sym_null] = STATE(3097), - [sym_array] = STATE(3097), - [sym_map] = STATE(3097), - [sym_object] = STATE(3097), - [sym_pair] = STATE(3097), - [aux_sym_member_expression_repeat1] = STATE(154), - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_package] = ACTIONS(1390), - [anon_sym_import] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_throw] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1390), - [anon_sym_DOLLARtype] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_AT_COLON] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_catch] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_EQ_GT] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1390), - [anon_sym_abstract] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_public] = ACTIONS(1390), - [anon_sym_private] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_overload] = ACTIONS(1390), - [anon_sym_override] = ACTIONS(1390), - [anon_sym_final] = ACTIONS(1390), - [anon_sym_class] = ACTIONS(1390), - [anon_sym_interface] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_function] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3097), - [sym_integer] = STATE(3097), - [sym_float] = STATE(3097), - [sym_bool] = STATE(3097), - [sym_string] = STATE(2291), - [sym_null] = STATE(3097), - [sym_array] = STATE(3097), - [sym_map] = STATE(3097), - [sym_object] = STATE(3097), - [sym_pair] = STATE(3097), - [aux_sym_member_expression_repeat1] = STATE(154), - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1384), - [anon_sym_package] = ACTIONS(1386), - [anon_sym_import] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_using] = ACTIONS(1386), - [anon_sym_throw] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1386), - [anon_sym_DOLLARtype] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_AT_COLON] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1386), - [anon_sym_catch] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_EQ_GT] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1386), - [anon_sym_abstract] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_overload] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_final] = ACTIONS(1386), - [anon_sym_class] = ACTIONS(1386), - [anon_sym_interface] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3097), - [sym_integer] = STATE(3097), - [sym_float] = STATE(3097), - [sym_bool] = STATE(3097), - [sym_string] = STATE(2291), - [sym_null] = STATE(3097), - [sym_array] = STATE(3097), - [sym_map] = STATE(3097), - [sym_object] = STATE(3097), - [sym_pair] = STATE(3097), - [aux_sym_member_expression_repeat1] = STATE(154), - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_using] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1442), - [anon_sym_DOLLARtype] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_untyped] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1442), - [anon_sym_AT_COLON] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1442), - [anon_sym_else] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1332), - [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_enum] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_function] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3097), - [sym_integer] = STATE(3097), - [sym_float] = STATE(3097), - [sym_bool] = STATE(3097), - [sym_string] = STATE(2291), - [sym_null] = STATE(3097), - [sym_array] = STATE(3097), - [sym_map] = STATE(3097), - [sym_object] = STATE(3097), - [sym_pair] = STATE(3097), - [aux_sym_member_expression_repeat1] = STATE(154), - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_package] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1438), - [anon_sym_DOLLARtype] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_untyped] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_AT_COLON] = ACTIONS(1436), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1332), - [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_enum] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(570), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3097), - [sym_integer] = STATE(3097), - [sym_float] = STATE(3097), - [sym_bool] = STATE(3097), - [sym_string] = STATE(2291), - [sym_null] = STATE(3097), - [sym_array] = STATE(3097), - [sym_map] = STATE(3097), - [sym_object] = STATE(3097), - [sym_pair] = STATE(3097), - [aux_sym_member_expression_repeat1] = STATE(154), - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_package] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_using] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_cast] = ACTIONS(1397), - [anon_sym_DOLLARtype] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_untyped] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(1557), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_AT_COLON] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1408), - [anon_sym_macro] = ACTIONS(1397), - [anon_sym_abstract] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - [anon_sym_private] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_inline] = ACTIONS(1397), - [anon_sym_overload] = ACTIONS(1397), - [anon_sym_override] = ACTIONS(1397), - [anon_sym_final] = ACTIONS(1397), - [anon_sym_class] = ACTIONS(1397), - [anon_sym_interface] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1411), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1417), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1429), + [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(1075), - [sym__unaryExpression] = STATE(2877), - [sym_runtime_type_check_expression] = STATE(2877), - [sym_switch_expression] = STATE(2877), - [sym_cast_expression] = STATE(2877), - [sym_type_trace_expression] = STATE(2877), - [sym__parenthesized_expression] = STATE(2408), - [sym_for_statement] = STATE(308), - [sym_range_expression] = STATE(2877), - [sym_subscript_expression] = STATE(2877), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym_while_statement] = STATE(308), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1075), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1561), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_untyped] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -31389,76 +31407,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(1027), - [sym__unaryExpression] = STATE(3093), - [sym_runtime_type_check_expression] = STATE(3093), - [sym_switch_expression] = STATE(3093), - [sym_cast_expression] = STATE(3093), - [sym_type_trace_expression] = STATE(3093), - [sym__parenthesized_expression] = STATE(2402), - [sym_for_statement] = STATE(266), - [sym_range_expression] = STATE(3093), - [sym_subscript_expression] = STATE(3093), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym_while_statement] = STATE(266), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1027), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1536), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_untyped] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1582), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -31484,76 +31502,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(1060), - [sym__unaryExpression] = STATE(3056), - [sym_runtime_type_check_expression] = STATE(3056), - [sym_switch_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_type_trace_expression] = STATE(3056), - [sym__parenthesized_expression] = STATE(2399), - [sym_for_statement] = STATE(313), - [sym_range_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3056), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym_while_statement] = STATE(313), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1060), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1548), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_untyped] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1590), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -31579,76 +31597,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(1055), - [sym__unaryExpression] = STATE(3033), - [sym_runtime_type_check_expression] = STATE(3033), - [sym_switch_expression] = STATE(3033), - [sym_cast_expression] = STATE(3033), - [sym_type_trace_expression] = STATE(3033), - [sym__parenthesized_expression] = STATE(2415), - [sym_for_statement] = STATE(257), - [sym_range_expression] = STATE(3033), - [sym_subscript_expression] = STATE(3033), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym_while_statement] = STATE(257), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1055), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1515), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_untyped] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1598), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -31674,76 +31692,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(1008), - [sym__unaryExpression] = STATE(3062), - [sym_runtime_type_check_expression] = STATE(3062), - [sym_switch_expression] = STATE(3062), - [sym_cast_expression] = STATE(3062), - [sym_type_trace_expression] = STATE(3062), - [sym__parenthesized_expression] = STATE(2401), - [sym_for_statement] = STATE(315), - [sym_range_expression] = STATE(3062), - [sym_subscript_expression] = STATE(3062), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym_while_statement] = STATE(315), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1008), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1570), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_untyped] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1606), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -31769,73 +31787,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(877), - [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(974), - [sym_range_expression] = STATE(170), - [sym_subscript_expression] = STATE(170), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(1608), + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -31861,73 +31879,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(877), - [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(974), - [sym_range_expression] = STATE(170), - [sym_subscript_expression] = STATE(170), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(1608), + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1614), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -31953,73 +31971,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(877), + [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(974), + [sym__parenthesized_expression] = STATE(975), [sym_range_expression] = STATE(165), [sym_subscript_expression] = STATE(165), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_structure_type_pair] = STATE(3605), - [sym_pair] = STATE(944), + [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(1616), + [sym_identifier] = ACTIONS(1624), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -32045,73 +32063,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(877), - [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(974), - [sym_range_expression] = STATE(160), - [sym_subscript_expression] = STATE(160), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_structure_type_pair] = STATE(3531), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1616), + [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(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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -32137,73 +32247,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [164] = { - [sym__rhs_expression] = STATE(877), - [sym__unaryExpression] = STATE(161), - [sym_runtime_type_check_expression] = STATE(161), - [sym_switch_expression] = STATE(161), - [sym_cast_expression] = STATE(161), - [sym_type_trace_expression] = STATE(161), - [sym__parenthesized_expression] = STATE(974), - [sym_range_expression] = STATE(161), - [sym_subscript_expression] = STATE(161), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_structure_type_pair] = STATE(3610), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(1616), + [165] = { + [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__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(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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -32229,73 +32523,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(877), - [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(974), - [sym_range_expression] = STATE(170), - [sym_subscript_expression] = STATE(170), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(1608), + [168] = { + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1622), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -32321,165 +32615,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [166] = { - [sym__rangeOperator] = STATE(2469), - [ts_builtin_sym_end] = ACTIONS(1624), - [sym_identifier] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_package] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_import] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(1626), - [anon_sym_throw] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_RPAREN] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_COLON] = ACTIONS(1624), - [anon_sym_cast] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1624), - [anon_sym_DOLLARtype] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_untyped] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_RBRACK] = ACTIONS(1624), - [anon_sym_this] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_AT_COLON] = ACTIONS(1624), - [anon_sym_try] = ACTIONS(1626), - [anon_sym_catch] = ACTIONS(1626), - [anon_sym_else] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(1626), - [anon_sym_new] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1624), - [anon_sym_DASH_DASH] = ACTIONS(1624), - [anon_sym_PERCENT] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_LT_LT] = ACTIONS(1624), - [anon_sym_GT_GT] = ACTIONS(1626), - [anon_sym_GT_GT_GT] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1624), - [anon_sym_PIPE_PIPE] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1626), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_EQ_GT] = ACTIONS(1624), - [anon_sym_QMARK_QMARK] = ACTIONS(1624), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(1624), - [aux_sym_float_token1] = ACTIONS(1626), - [aux_sym_float_token2] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [aux_sym_string_token1] = ACTIONS(1624), - [aux_sym_string_token3] = ACTIONS(1624), + [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), }, - [167] = { - [sym__rhs_expression] = STATE(877), - [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(974), - [sym_range_expression] = STATE(170), - [sym_subscript_expression] = STATE(170), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(1608), + [169] = { + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1630), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -32505,73 +32707,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(877), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(974), - [sym_range_expression] = STATE(169), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_structure_type_pair] = STATE(3490), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1616), + [170] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -32597,73 +32799,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(877), - [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(974), - [sym_range_expression] = STATE(170), - [sym_subscript_expression] = STATE(170), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(1608), + [171] = { + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -32689,257 +32891,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(877), + [172] = { + [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(974), + [sym__parenthesized_expression] = STATE(975), [sym_range_expression] = STATE(170), [sym_subscript_expression] = STATE(170), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), + [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(1634), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_cast] = ACTIONS(1651), - [anon_sym_DOLLARtype] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_untyped] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_this] = ACTIONS(1669), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_PERCENT] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_LT_LT] = ACTIONS(1637), - [anon_sym_GT_GT] = ACTIONS(1687), - [anon_sym_GT_GT_GT] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_CARET] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [anon_sym_PIPE_PIPE] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1678), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1678), - [anon_sym_GT_EQ] = ACTIONS(1675), - [anon_sym_EQ_GT] = ACTIONS(1675), - [anon_sym_QMARK_QMARK] = ACTIONS(1675), - [anon_sym_EQ] = ACTIONS(1678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), - [anon_sym_null] = ACTIONS(1690), - [aux_sym_integer_token1] = ACTIONS(1693), - [aux_sym_integer_token2] = ACTIONS(1696), - [aux_sym_float_token1] = ACTIONS(1699), - [aux_sym_float_token2] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [aux_sym_string_token1] = ACTIONS(1708), - [aux_sym_string_token3] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [171] = { - [sym__rangeOperator] = STATE(2469), - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_using] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_COLON] = ACTIONS(1354), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1356), - [aux_sym_integer_token2] = ACTIONS(1354), - [aux_sym_float_token1] = ACTIONS(1356), - [aux_sym_float_token2] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1354), - [aux_sym_string_token3] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [172] = { - [sym__rhs_expression] = STATE(877), - [sym__unaryExpression] = STATE(167), - [sym_runtime_type_check_expression] = STATE(167), - [sym_switch_expression] = STATE(167), - [sym_cast_expression] = STATE(167), - [sym_type_trace_expression] = STATE(167), - [sym__parenthesized_expression] = STATE(974), - [sym_range_expression] = STATE(167), - [sym_subscript_expression] = STATE(167), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_structure_type_pair] = STATE(3451), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(167), - [sym_identifier] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1630), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -32965,345 +32983,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(1718), - [sym_identifier] = ACTIONS(1720), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_package] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_import] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_using] = ACTIONS(1720), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_COLON] = ACTIONS(1718), - [anon_sym_cast] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1718), - [anon_sym_DOLLARtype] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_untyped] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1720), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_RBRACK] = ACTIONS(1718), - [anon_sym_this] = ACTIONS(1720), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_AT_COLON] = ACTIONS(1718), - [anon_sym_try] = ACTIONS(1720), - [anon_sym_catch] = ACTIONS(1720), - [anon_sym_else] = ACTIONS(1720), - [anon_sym_if] = ACTIONS(1720), - [anon_sym_while] = ACTIONS(1720), - [anon_sym_do] = ACTIONS(1720), - [anon_sym_new] = ACTIONS(1720), - [anon_sym_TILDE] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1718), - [anon_sym_PERCENT] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1720), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1718), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_GT_GT_GT] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [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(1720), - [anon_sym_LT_EQ] = ACTIONS(1718), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1718), - [anon_sym_EQ_GT] = ACTIONS(1718), - [anon_sym_QMARK_QMARK] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(1720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1718), - [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_enum] = 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(1718), - [aux_sym_float_token1] = ACTIONS(1720), - [aux_sym_float_token2] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1720), - [anon_sym_false] = ACTIONS(1720), - [aux_sym_string_token1] = ACTIONS(1718), - [aux_sym_string_token3] = ACTIONS(1718), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_using] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_RPAREN] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_cast] = ACTIONS(1725), - [anon_sym_COMMA] = ACTIONS(1722), - [anon_sym_DOLLARtype] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_untyped] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_RBRACK] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1725), - [anon_sym_QMARK] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1725), - [anon_sym_AT_COLON] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [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(1725), - [anon_sym_LT_EQ] = ACTIONS(1722), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1722), - [anon_sym_EQ_GT] = ACTIONS(1722), - [anon_sym_QMARK_QMARK] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1725), - [anon_sym_macro] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_inline] = ACTIONS(1725), - [anon_sym_overload] = ACTIONS(1725), - [anon_sym_override] = ACTIONS(1725), - [anon_sym_final] = ACTIONS(1725), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_typedef] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [aux_sym_integer_token1] = ACTIONS(1725), - [aux_sym_integer_token2] = ACTIONS(1722), - [aux_sym_float_token1] = ACTIONS(1725), - [aux_sym_float_token2] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_string_token1] = ACTIONS(1722), - [aux_sym_string_token3] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1728), - [anon_sym_package] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_import] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_using] = ACTIONS(1730), - [anon_sym_throw] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_cast] = ACTIONS(1730), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_DOLLARtype] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_untyped] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_RBRACK] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [anon_sym_QMARK] = ACTIONS(1730), - [anon_sym_AT] = ACTIONS(1730), - [anon_sym_AT_COLON] = ACTIONS(1728), - [anon_sym_try] = ACTIONS(1730), - [anon_sym_catch] = ACTIONS(1730), - [anon_sym_else] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_SLASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_GT] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_EQ_GT] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_EQ] = ACTIONS(1730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1728), - [anon_sym_null] = ACTIONS(1730), - [anon_sym_macro] = ACTIONS(1730), - [anon_sym_abstract] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_public] = ACTIONS(1730), - [anon_sym_private] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [anon_sym_overload] = ACTIONS(1730), - [anon_sym_override] = ACTIONS(1730), - [anon_sym_final] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(1730), - [anon_sym_interface] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_function] = ACTIONS(1730), - [anon_sym_var] = ACTIONS(1730), - [aux_sym_integer_token1] = ACTIONS(1730), - [aux_sym_integer_token2] = ACTIONS(1728), - [aux_sym_float_token1] = ACTIONS(1730), - [aux_sym_float_token2] = ACTIONS(1728), - [anon_sym_true] = ACTIONS(1730), - [anon_sym_false] = ACTIONS(1730), - [aux_sym_string_token1] = ACTIONS(1728), - [aux_sym_string_token3] = ACTIONS(1728), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [176] = { - [sym__rhs_expression] = STATE(877), - [sym__unaryExpression] = STATE(167), - [sym_runtime_type_check_expression] = STATE(167), - [sym_switch_expression] = STATE(167), - [sym_cast_expression] = STATE(167), - [sym_type_trace_expression] = STATE(167), - [sym__parenthesized_expression] = STATE(974), - [sym_range_expression] = STATE(167), - [sym_subscript_expression] = STATE(167), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(167), - [sym_identifier] = ACTIONS(1608), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -33329,72 +33074,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [177] = { - [sym__rhs_expression] = STATE(877), - [sym__unaryExpression] = STATE(169), - [sym_runtime_type_check_expression] = STATE(169), - [sym_switch_expression] = STATE(169), - [sym_cast_expression] = STATE(169), - [sym_type_trace_expression] = STATE(169), - [sym__parenthesized_expression] = STATE(974), - [sym_range_expression] = STATE(169), - [sym_subscript_expression] = STATE(169), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(1608), + [174] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -33420,254 +33165,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1732), - [anon_sym_package] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_import] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_using] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1732), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1732), - [anon_sym_cast] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1732), - [anon_sym_DOLLARtype] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_untyped] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_RBRACK] = ACTIONS(1732), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_AT_COLON] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_catch] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1734), - [anon_sym_new] = ACTIONS(1734), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1734), - [anon_sym_GT_GT_GT] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP_AMP] = ACTIONS(1732), - [anon_sym_PIPE_PIPE] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_EQ_GT] = ACTIONS(1732), - [anon_sym_QMARK_QMARK] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1732), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_macro] = ACTIONS(1734), - [anon_sym_abstract] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_public] = ACTIONS(1734), - [anon_sym_private] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [anon_sym_overload] = ACTIONS(1734), - [anon_sym_override] = ACTIONS(1734), - [anon_sym_final] = ACTIONS(1734), - [anon_sym_class] = ACTIONS(1734), - [anon_sym_interface] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_typedef] = ACTIONS(1734), - [anon_sym_function] = ACTIONS(1734), - [anon_sym_var] = ACTIONS(1734), - [aux_sym_integer_token1] = ACTIONS(1734), - [aux_sym_integer_token2] = ACTIONS(1732), - [aux_sym_float_token1] = ACTIONS(1734), - [aux_sym_float_token2] = ACTIONS(1732), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [aux_sym_string_token1] = ACTIONS(1732), - [aux_sym_string_token3] = ACTIONS(1732), + [175] = { + [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), }, - [179] = { - [sym__rhs_expression] = STATE(1079), - [sym__unaryExpression] = STATE(2859), - [sym_runtime_type_check_expression] = STATE(2859), - [sym_switch_expression] = STATE(2859), - [sym_cast_expression] = STATE(2859), - [sym_type_trace_expression] = STATE(2859), - [sym__parenthesized_expression] = STATE(2383), - [sym_range_expression] = STATE(2859), - [sym_subscript_expression] = STATE(2859), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1079), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_untyped] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), - [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(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [176] = { + [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), }, - [180] = { - [sym__rhs_expression] = STATE(1068), - [sym__unaryExpression] = STATE(2901), - [sym_runtime_type_check_expression] = STATE(2901), - [sym_switch_expression] = STATE(2901), - [sym_cast_expression] = STATE(2901), - [sym_type_trace_expression] = STATE(2901), - [sym__parenthesized_expression] = STATE(2416), - [sym_range_expression] = STATE(2901), - [sym_subscript_expression] = STATE(2901), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1068), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [177] = { + [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] = { + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_untyped] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -33693,254 +33529,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_import] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_using] = ACTIONS(1754), - [anon_sym_throw] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [anon_sym_RPAREN] = ACTIONS(1752), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_COLON] = ACTIONS(1752), - [anon_sym_cast] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1752), - [anon_sym_DOLLARtype] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_untyped] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_RBRACK] = ACTIONS(1752), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_QMARK] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_AT_COLON] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1754), - [anon_sym_catch] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1752), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_GT_GT_GT] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1752), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1752), - [anon_sym_EQ_GT] = ACTIONS(1752), - [anon_sym_QMARK_QMARK] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1752), - [anon_sym_null] = ACTIONS(1754), - [anon_sym_macro] = ACTIONS(1754), - [anon_sym_abstract] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_public] = ACTIONS(1754), - [anon_sym_private] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_inline] = ACTIONS(1754), - [anon_sym_overload] = ACTIONS(1754), - [anon_sym_override] = ACTIONS(1754), - [anon_sym_final] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(1754), - [anon_sym_interface] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_function] = ACTIONS(1754), - [anon_sym_var] = ACTIONS(1754), - [aux_sym_integer_token1] = ACTIONS(1754), - [aux_sym_integer_token2] = ACTIONS(1752), - [aux_sym_float_token1] = ACTIONS(1754), - [aux_sym_float_token2] = ACTIONS(1752), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [aux_sym_string_token1] = ACTIONS(1752), - [aux_sym_string_token3] = ACTIONS(1752), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [182] = { - [ts_builtin_sym_end] = ACTIONS(1756), - [sym_identifier] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1756), - [anon_sym_package] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(1758), - [anon_sym_import] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_using] = ACTIONS(1758), - [anon_sym_throw] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_switch] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_COLON] = ACTIONS(1756), - [anon_sym_cast] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_DOLLARtype] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_untyped] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1756), - [anon_sym_this] = ACTIONS(1758), - [anon_sym_QMARK] = ACTIONS(1758), - [anon_sym_AT] = ACTIONS(1758), - [anon_sym_AT_COLON] = ACTIONS(1756), - [anon_sym_try] = ACTIONS(1758), - [anon_sym_catch] = ACTIONS(1758), - [anon_sym_else] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_do] = ACTIONS(1758), - [anon_sym_new] = ACTIONS(1758), - [anon_sym_TILDE] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1756), - [anon_sym_DASH_DASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_GT_GT_GT] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1756), - [anon_sym_EQ_GT] = ACTIONS(1756), - [anon_sym_QMARK_QMARK] = ACTIONS(1756), - [anon_sym_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1758), - [anon_sym_macro] = ACTIONS(1758), - [anon_sym_abstract] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1758), - [anon_sym_public] = ACTIONS(1758), - [anon_sym_private] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1758), - [anon_sym_inline] = ACTIONS(1758), - [anon_sym_overload] = ACTIONS(1758), - [anon_sym_override] = ACTIONS(1758), - [anon_sym_final] = ACTIONS(1758), - [anon_sym_class] = ACTIONS(1758), - [anon_sym_interface] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_typedef] = ACTIONS(1758), - [anon_sym_function] = ACTIONS(1758), - [anon_sym_var] = ACTIONS(1758), - [aux_sym_integer_token1] = ACTIONS(1758), - [aux_sym_integer_token2] = ACTIONS(1756), - [aux_sym_float_token1] = ACTIONS(1758), - [aux_sym_float_token2] = ACTIONS(1756), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [aux_sym_string_token1] = ACTIONS(1756), - [aux_sym_string_token3] = ACTIONS(1756), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [183] = { - [sym__rhs_expression] = STATE(877), + [179] = { + [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(974), + [sym__parenthesized_expression] = STATE(975), [sym_range_expression] = STATE(160), [sym_subscript_expression] = STATE(160), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), + [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(1608), + [sym_identifier] = ACTIONS(1624), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -33966,322 +33620,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(1760), - [anon_sym_package] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(1762), - [anon_sym_import] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_using] = ACTIONS(1762), - [anon_sym_throw] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_RPAREN] = ACTIONS(1760), - [anon_sym_switch] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_COLON] = ACTIONS(1760), - [anon_sym_cast] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1760), - [anon_sym_DOLLARtype] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_untyped] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_RBRACK] = ACTIONS(1760), - [anon_sym_this] = ACTIONS(1762), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_AT] = ACTIONS(1762), - [anon_sym_AT_COLON] = ACTIONS(1760), - [anon_sym_try] = ACTIONS(1762), - [anon_sym_catch] = ACTIONS(1762), - [anon_sym_else] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_do] = ACTIONS(1762), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_TILDE] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PLUS_PLUS] = ACTIONS(1760), - [anon_sym_DASH_DASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1762), - [anon_sym_LT_LT] = ACTIONS(1760), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_GT_GT_GT] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1760), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1760), - [anon_sym_EQ_GT] = ACTIONS(1760), - [anon_sym_QMARK_QMARK] = ACTIONS(1760), - [anon_sym_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1760), - [anon_sym_null] = ACTIONS(1762), - [anon_sym_macro] = ACTIONS(1762), - [anon_sym_abstract] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_public] = ACTIONS(1762), - [anon_sym_private] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym_overload] = ACTIONS(1762), - [anon_sym_override] = ACTIONS(1762), - [anon_sym_final] = ACTIONS(1762), - [anon_sym_class] = ACTIONS(1762), - [anon_sym_interface] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_typedef] = ACTIONS(1762), - [anon_sym_function] = ACTIONS(1762), - [anon_sym_var] = ACTIONS(1762), - [aux_sym_integer_token1] = ACTIONS(1762), - [aux_sym_integer_token2] = ACTIONS(1760), - [aux_sym_float_token1] = ACTIONS(1762), - [aux_sym_float_token2] = ACTIONS(1760), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [aux_sym_string_token1] = ACTIONS(1760), - [aux_sym_string_token3] = ACTIONS(1760), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [185] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_package] = ACTIONS(1766), - [anon_sym_DOT] = ACTIONS(1766), - [anon_sym_import] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_using] = ACTIONS(1766), - [anon_sym_throw] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_switch] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_COLON] = ACTIONS(1764), - [anon_sym_cast] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_DOLLARtype] = ACTIONS(1764), - [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(1764), - [anon_sym_RBRACK] = ACTIONS(1764), - [anon_sym_this] = ACTIONS(1766), - [anon_sym_QMARK] = ACTIONS(1766), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_AT_COLON] = ACTIONS(1764), - [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(1764), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_LT_LT] = ACTIONS(1764), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_GT_GT_GT] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_EQ_GT] = ACTIONS(1764), - [anon_sym_QMARK_QMARK] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1764), - [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(1764), - [aux_sym_float_token1] = ACTIONS(1766), - [aux_sym_float_token2] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [aux_sym_string_token1] = ACTIONS(1764), - [aux_sym_string_token3] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [186] = { - [ts_builtin_sym_end] = ACTIONS(1768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_package] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_import] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_using] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_switch] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_COLON] = ACTIONS(1768), - [anon_sym_cast] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_DOLLARtype] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_untyped] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_RBRACK] = ACTIONS(1768), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_QMARK] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_AT_COLON] = ACTIONS(1768), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_catch] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1768), - [anon_sym_DASH_DASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1768), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_GT_GT_GT] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_AMP_AMP] = ACTIONS(1768), - [anon_sym_PIPE_PIPE] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1768), - [anon_sym_EQ_GT] = ACTIONS(1768), - [anon_sym_QMARK_QMARK] = ACTIONS(1768), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_macro] = ACTIONS(1770), - [anon_sym_abstract] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_public] = ACTIONS(1770), - [anon_sym_private] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym_overload] = ACTIONS(1770), - [anon_sym_override] = ACTIONS(1770), - [anon_sym_final] = ACTIONS(1770), - [anon_sym_class] = ACTIONS(1770), - [anon_sym_interface] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_typedef] = ACTIONS(1770), - [anon_sym_function] = ACTIONS(1770), - [anon_sym_var] = ACTIONS(1770), - [aux_sym_integer_token1] = ACTIONS(1770), - [aux_sym_integer_token2] = ACTIONS(1768), - [aux_sym_float_token1] = ACTIONS(1770), - [aux_sym_float_token2] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [aux_sym_string_token1] = ACTIONS(1768), - [aux_sym_string_token3] = ACTIONS(1768), + [180] = { + [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), }, - [187] = { - [ts_builtin_sym_end] = ACTIONS(1772), + [181] = { + [ts_builtin_sym_end] = ACTIONS(1773), [sym_identifier] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(1773), [anon_sym_package] = ACTIONS(1775), [anon_sym_DOT] = ACTIONS(1775), [anon_sym_import] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1773), [anon_sym_using] = ACTIONS(1775), [anon_sym_throw] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), [anon_sym_switch] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_COLON] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), [anon_sym_cast] = ACTIONS(1775), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_DOLLARtype] = ACTIONS(1772), + [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(1772), - [anon_sym_RBRACK] = ACTIONS(1772), + [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(1772), + [anon_sym_AT_COLON] = ACTIONS(1773), [anon_sym_try] = ACTIONS(1775), [anon_sym_catch] = ACTIONS(1775), [anon_sym_else] = ACTIONS(1775), @@ -34289,32 +33761,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1775), [anon_sym_do] = ACTIONS(1775), [anon_sym_new] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1772), + [anon_sym_TILDE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), + [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(1772), + [anon_sym_LT_LT] = ACTIONS(1773), [anon_sym_GT_GT] = ACTIONS(1775), - [anon_sym_GT_GT_GT] = ACTIONS(1772), + [anon_sym_GT_GT_GT] = ACTIONS(1773), [anon_sym_AMP] = ACTIONS(1775), [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), + [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(1772), + [anon_sym_LT_EQ] = ACTIONS(1773), [anon_sym_GT] = ACTIONS(1775), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_EQ_GT] = ACTIONS(1772), - [anon_sym_QMARK_QMARK] = ACTIONS(1772), + [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(1772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), [anon_sym_null] = ACTIONS(1775), [anon_sym_macro] = ACTIONS(1775), [anon_sym_abstract] = ACTIONS(1775), @@ -34333,160 +33805,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(1775), [anon_sym_var] = ACTIONS(1775), [aux_sym_integer_token1] = ACTIONS(1775), - [aux_sym_integer_token2] = ACTIONS(1772), + [aux_sym_integer_token2] = ACTIONS(1773), [aux_sym_float_token1] = ACTIONS(1775), - [aux_sym_float_token2] = ACTIONS(1772), + [aux_sym_float_token2] = ACTIONS(1773), [anon_sym_true] = ACTIONS(1775), [anon_sym_false] = ACTIONS(1775), - [aux_sym_string_token1] = ACTIONS(1772), - [aux_sym_string_token3] = ACTIONS(1772), + [aux_sym_string_token1] = ACTIONS(1773), + [aux_sym_string_token3] = ACTIONS(1773), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, - [188] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(1778), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_RBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(1778), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), + [182] = { + [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), }, - [189] = { - [sym__rhs_expression] = STATE(877), - [sym__unaryExpression] = STATE(161), - [sym_runtime_type_check_expression] = STATE(161), - [sym_switch_expression] = STATE(161), - [sym_cast_expression] = STATE(161), - [sym_type_trace_expression] = STATE(161), - [sym__parenthesized_expression] = STATE(974), - [sym_range_expression] = STATE(161), - [sym_subscript_expression] = STATE(161), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(1608), + [183] = { + [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(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] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -34512,254 +34166,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_package] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(1788), - [anon_sym_import] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1788), - [anon_sym_throw] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_COLON] = ACTIONS(1786), - [anon_sym_cast] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_DOLLARtype] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_untyped] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_this] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1788), - [anon_sym_AT_COLON] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_LT_LT] = ACTIONS(1786), - [anon_sym_GT_GT] = ACTIONS(1788), - [anon_sym_GT_GT_GT] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [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(1788), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1788), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_EQ_GT] = ACTIONS(1786), - [anon_sym_QMARK_QMARK] = ACTIONS(1786), - [anon_sym_EQ] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [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_enum] = 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(1786), - [aux_sym_float_token1] = ACTIONS(1788), - [aux_sym_float_token2] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [aux_sym_string_token1] = ACTIONS(1786), - [aux_sym_string_token3] = ACTIONS(1786), + [186] = { + [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), }, - [191] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_package] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_import] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_using] = ACTIONS(1792), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_COLON] = ACTIONS(1790), - [anon_sym_cast] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_DOLLARtype] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_untyped] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_RBRACK] = ACTIONS(1790), - [anon_sym_this] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_AT_COLON] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_catch] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_do] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1790), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_GT_GT_GT] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [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(1792), - [anon_sym_LT_EQ] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1790), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_QMARK_QMARK] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [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_enum] = 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(1790), - [aux_sym_float_token1] = ACTIONS(1792), - [aux_sym_float_token2] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym_string_token1] = ACTIONS(1790), - [aux_sym_string_token3] = ACTIONS(1790), + [187] = { + [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), }, - [192] = { - [sym__rhs_expression] = STATE(1066), - [sym__unaryExpression] = STATE(2904), - [sym_runtime_type_check_expression] = STATE(2904), - [sym_switch_expression] = STATE(2904), - [sym_cast_expression] = STATE(2904), - [sym_type_trace_expression] = STATE(2904), - [sym__parenthesized_expression] = STATE(2425), - [sym_range_expression] = STATE(2904), - [sym_subscript_expression] = STATE(2904), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1066), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [188] = { + [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(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(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] = { + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_untyped] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -34785,254 +34712,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(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(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_package] = ACTIONS(1804), - [anon_sym_DOT] = ACTIONS(1804), - [anon_sym_import] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_using] = ACTIONS(1804), - [anon_sym_throw] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(1802), - [anon_sym_cast] = ACTIONS(1804), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_DOLLARtype] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_untyped] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_this] = ACTIONS(1804), - [anon_sym_QMARK] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1804), - [anon_sym_AT_COLON] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1804), - [anon_sym_catch] = ACTIONS(1804), - [anon_sym_else] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_LT_LT] = ACTIONS(1802), - [anon_sym_GT_GT] = ACTIONS(1804), - [anon_sym_GT_GT_GT] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [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(1804), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT] = ACTIONS(1804), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_EQ_GT] = ACTIONS(1802), - [anon_sym_QMARK_QMARK] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [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_enum] = 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(1802), - [aux_sym_float_token1] = ACTIONS(1804), - [aux_sym_float_token2] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [aux_sym_string_token1] = ACTIONS(1802), - [aux_sym_string_token3] = ACTIONS(1802), + [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] = { - [sym__rhs_expression] = STATE(1266), - [sym__unaryExpression] = STATE(3324), - [sym_runtime_type_check_expression] = STATE(3324), - [sym_switch_expression] = STATE(3324), - [sym_cast_expression] = STATE(3324), - [sym_type_trace_expression] = STATE(3324), - [sym__parenthesized_expression] = STATE(2591), - [sym_range_expression] = STATE(3324), - [sym_subscript_expression] = STATE(3324), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym_block] = STATE(3324), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1266), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_untyped] = ACTIONS(1810), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), - [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(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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] = { - [sym__rhs_expression] = STATE(1163), - [sym__unaryExpression] = STATE(3431), - [sym_runtime_type_check_expression] = STATE(3431), - [sym_switch_expression] = STATE(3431), - [sym_cast_expression] = STATE(3431), - [sym_type_trace_expression] = STATE(3431), - [sym__parenthesized_expression] = STATE(2692), - [sym_range_expression] = STATE(3431), - [sym_subscript_expression] = STATE(3431), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym_block] = STATE(3431), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1163), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [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(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] = { + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_untyped] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -35058,709 +35258,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [196] = { - [ts_builtin_sym_end] = ACTIONS(1820), - [sym_identifier] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_package] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_import] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_using] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_COLON] = ACTIONS(1820), - [anon_sym_cast] = ACTIONS(1822), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_DOLLARtype] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_untyped] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_QMARK] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1822), - [anon_sym_AT_COLON] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_catch] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_new] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1822), - [anon_sym_GT_GT_GT] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_EQ_GT] = ACTIONS(1820), - [anon_sym_QMARK_QMARK] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_macro] = ACTIONS(1822), - [anon_sym_abstract] = ACTIONS(1822), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1822), - [anon_sym_private] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_overload] = ACTIONS(1822), - [anon_sym_override] = ACTIONS(1822), - [anon_sym_final] = ACTIONS(1822), - [anon_sym_class] = ACTIONS(1822), - [anon_sym_interface] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_function] = ACTIONS(1822), - [anon_sym_var] = ACTIONS(1822), - [aux_sym_integer_token1] = ACTIONS(1822), - [aux_sym_integer_token2] = ACTIONS(1820), - [aux_sym_float_token1] = ACTIONS(1822), - [aux_sym_float_token2] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [aux_sym_string_token1] = ACTIONS(1820), - [aux_sym_string_token3] = ACTIONS(1820), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(1778), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_RBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(1778), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), + [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(1824), - [sym_identifier] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1824), - [anon_sym_package] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_import] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_using] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_COLON] = ACTIONS(1824), - [anon_sym_cast] = ACTIONS(1826), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_DOLLARtype] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_untyped] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_QMARK] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(1826), - [anon_sym_AT_COLON] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_LT_LT] = ACTIONS(1824), - [anon_sym_GT_GT] = ACTIONS(1826), - [anon_sym_GT_GT_GT] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_EQ_GT] = ACTIONS(1824), - [anon_sym_QMARK_QMARK] = ACTIONS(1824), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_macro] = ACTIONS(1826), - [anon_sym_abstract] = ACTIONS(1826), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_public] = ACTIONS(1826), - [anon_sym_private] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [anon_sym_overload] = ACTIONS(1826), - [anon_sym_override] = ACTIONS(1826), - [anon_sym_final] = ACTIONS(1826), - [anon_sym_class] = ACTIONS(1826), - [anon_sym_interface] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_function] = ACTIONS(1826), - [anon_sym_var] = ACTIONS(1826), - [aux_sym_integer_token1] = ACTIONS(1826), - [aux_sym_integer_token2] = ACTIONS(1824), - [aux_sym_float_token1] = ACTIONS(1826), - [aux_sym_float_token2] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [aux_sym_string_token1] = ACTIONS(1824), - [aux_sym_string_token3] = ACTIONS(1824), + [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(1828), - [sym_identifier] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_package] = ACTIONS(1830), - [anon_sym_DOT] = ACTIONS(1830), - [anon_sym_import] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_using] = ACTIONS(1830), - [anon_sym_throw] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_switch] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_COLON] = ACTIONS(1828), - [anon_sym_cast] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_DOLLARtype] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_untyped] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_this] = ACTIONS(1830), - [anon_sym_QMARK] = ACTIONS(1830), - [anon_sym_AT] = ACTIONS(1830), - [anon_sym_AT_COLON] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1830), - [anon_sym_catch] = ACTIONS(1830), - [anon_sym_else] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_new] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1828), - [anon_sym_GT_GT] = ACTIONS(1830), - [anon_sym_GT_GT_GT] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_EQ_GT] = ACTIONS(1828), - [anon_sym_QMARK_QMARK] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1830), - [anon_sym_macro] = ACTIONS(1830), - [anon_sym_abstract] = ACTIONS(1830), - [anon_sym_static] = ACTIONS(1830), - [anon_sym_public] = ACTIONS(1830), - [anon_sym_private] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_inline] = ACTIONS(1830), - [anon_sym_overload] = ACTIONS(1830), - [anon_sym_override] = ACTIONS(1830), - [anon_sym_final] = ACTIONS(1830), - [anon_sym_class] = ACTIONS(1830), - [anon_sym_interface] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1830), - [anon_sym_typedef] = ACTIONS(1830), - [anon_sym_function] = ACTIONS(1830), - [anon_sym_var] = ACTIONS(1830), - [aux_sym_integer_token1] = ACTIONS(1830), - [aux_sym_integer_token2] = ACTIONS(1828), - [aux_sym_float_token1] = ACTIONS(1830), - [aux_sym_float_token2] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1830), - [anon_sym_false] = ACTIONS(1830), - [aux_sym_string_token1] = ACTIONS(1828), - [aux_sym_string_token3] = ACTIONS(1828), + [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(1832), - [sym_identifier] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1832), - [anon_sym_package] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1834), - [anon_sym_import] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_using] = ACTIONS(1834), - [anon_sym_throw] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_COLON] = ACTIONS(1832), - [anon_sym_cast] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_DOLLARtype] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1834), - [anon_sym_untyped] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_this] = ACTIONS(1834), - [anon_sym_QMARK] = ACTIONS(1834), - [anon_sym_AT] = ACTIONS(1834), - [anon_sym_AT_COLON] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1834), - [anon_sym_catch] = ACTIONS(1834), - [anon_sym_else] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1834), - [anon_sym_do] = ACTIONS(1834), - [anon_sym_new] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1832), - [anon_sym_DASH_DASH] = ACTIONS(1832), - [anon_sym_PERCENT] = ACTIONS(1832), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1832), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_GT_GT_GT] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_CARET] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_EQ] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_EQ] = ACTIONS(1832), - [anon_sym_EQ_GT] = ACTIONS(1832), - [anon_sym_QMARK_QMARK] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1832), - [anon_sym_null] = ACTIONS(1834), - [anon_sym_macro] = ACTIONS(1834), - [anon_sym_abstract] = ACTIONS(1834), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_public] = ACTIONS(1834), - [anon_sym_private] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1834), - [anon_sym_inline] = ACTIONS(1834), - [anon_sym_overload] = ACTIONS(1834), - [anon_sym_override] = ACTIONS(1834), - [anon_sym_final] = ACTIONS(1834), - [anon_sym_class] = ACTIONS(1834), - [anon_sym_interface] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_typedef] = ACTIONS(1834), - [anon_sym_function] = ACTIONS(1834), - [anon_sym_var] = ACTIONS(1834), - [aux_sym_integer_token1] = ACTIONS(1834), - [aux_sym_integer_token2] = ACTIONS(1832), - [aux_sym_float_token1] = ACTIONS(1834), - [aux_sym_float_token2] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [aux_sym_string_token1] = ACTIONS(1832), - [aux_sym_string_token3] = ACTIONS(1832), + [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(1836), - [sym_identifier] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1836), - [anon_sym_package] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_import] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_using] = ACTIONS(1838), - [anon_sym_throw] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_COLON] = ACTIONS(1836), - [anon_sym_cast] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1836), - [anon_sym_DOLLARtype] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_untyped] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_RBRACK] = ACTIONS(1836), - [anon_sym_this] = ACTIONS(1838), - [anon_sym_QMARK] = ACTIONS(1838), - [anon_sym_AT] = ACTIONS(1838), - [anon_sym_AT_COLON] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1838), - [anon_sym_catch] = ACTIONS(1838), - [anon_sym_else] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_new] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PERCENT] = ACTIONS(1836), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_GT_GT_GT] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_AMP_AMP] = ACTIONS(1836), - [anon_sym_PIPE_PIPE] = ACTIONS(1836), - [anon_sym_EQ_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT] = ACTIONS(1838), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_EQ_GT] = ACTIONS(1836), - [anon_sym_QMARK_QMARK] = ACTIONS(1836), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1836), - [anon_sym_null] = ACTIONS(1838), - [anon_sym_macro] = ACTIONS(1838), - [anon_sym_abstract] = ACTIONS(1838), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_public] = ACTIONS(1838), - [anon_sym_private] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [anon_sym_overload] = ACTIONS(1838), - [anon_sym_override] = ACTIONS(1838), - [anon_sym_final] = ACTIONS(1838), - [anon_sym_class] = ACTIONS(1838), - [anon_sym_interface] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_function] = ACTIONS(1838), - [anon_sym_var] = ACTIONS(1838), - [aux_sym_integer_token1] = ACTIONS(1838), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token1] = ACTIONS(1838), - [aux_sym_float_token2] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [aux_sym_string_token1] = ACTIONS(1836), - [aux_sym_string_token3] = ACTIONS(1836), + [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(1302), - [sym_identifier] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_using] = ACTIONS(1300), - [anon_sym_throw] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1302), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1302), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_RBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_AT_COLON] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_macro] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_public] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_overload] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_interface] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_function] = ACTIONS(1300), - [anon_sym_var] = ACTIONS(1300), - [aux_sym_integer_token1] = ACTIONS(1300), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), + [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] = { - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(3054), - [sym_runtime_type_check_expression] = STATE(3054), - [sym_switch_expression] = STATE(3054), - [sym_cast_expression] = STATE(3054), - [sym_type_trace_expression] = STATE(3054), - [sym__parenthesized_expression] = STATE(2380), - [sym_range_expression] = STATE(3054), - [sym_subscript_expression] = STATE(3054), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(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(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] = { + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_untyped] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -35786,1801 +36077,1346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1848), - [anon_sym_package] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1850), - [anon_sym_import] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_using] = ACTIONS(1850), - [anon_sym_throw] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_switch] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_cast] = ACTIONS(1850), - [anon_sym_COMMA] = ACTIONS(1848), - [anon_sym_DOLLARtype] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_untyped] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1848), - [anon_sym_this] = ACTIONS(1850), - [anon_sym_QMARK] = ACTIONS(1850), - [anon_sym_AT] = ACTIONS(1850), - [anon_sym_AT_COLON] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1850), - [anon_sym_catch] = ACTIONS(1850), - [anon_sym_else] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_new] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PERCENT] = ACTIONS(1848), - [anon_sym_SLASH] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_LT_LT] = ACTIONS(1848), - [anon_sym_GT_GT] = ACTIONS(1850), - [anon_sym_GT_GT_GT] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [anon_sym_EQ_EQ] = ACTIONS(1848), - [anon_sym_BANG_EQ] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_LT_EQ] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1850), - [anon_sym_GT_EQ] = ACTIONS(1848), - [anon_sym_EQ_GT] = ACTIONS(1848), - [anon_sym_QMARK_QMARK] = ACTIONS(1848), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1848), - [anon_sym_null] = ACTIONS(1850), - [anon_sym_macro] = ACTIONS(1850), - [anon_sym_abstract] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_public] = ACTIONS(1850), - [anon_sym_private] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [anon_sym_overload] = ACTIONS(1850), - [anon_sym_override] = ACTIONS(1850), - [anon_sym_final] = ACTIONS(1850), - [anon_sym_class] = ACTIONS(1850), - [anon_sym_interface] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1850), - [anon_sym_function] = ACTIONS(1850), - [anon_sym_var] = ACTIONS(1850), - [aux_sym_integer_token1] = ACTIONS(1850), - [aux_sym_integer_token2] = ACTIONS(1848), - [aux_sym_float_token1] = ACTIONS(1850), - [aux_sym_float_token2] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [aux_sym_string_token1] = ACTIONS(1848), - [aux_sym_string_token3] = ACTIONS(1848), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [205] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_identifier] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1852), - [anon_sym_package] = ACTIONS(1854), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_import] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_using] = ACTIONS(1854), - [anon_sym_throw] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_COLON] = ACTIONS(1852), - [anon_sym_cast] = ACTIONS(1854), - [anon_sym_COMMA] = ACTIONS(1852), - [anon_sym_DOLLARtype] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_untyped] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_RBRACK] = ACTIONS(1852), - [anon_sym_this] = ACTIONS(1854), - [anon_sym_QMARK] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(1854), - [anon_sym_AT_COLON] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1854), - [anon_sym_catch] = ACTIONS(1854), - [anon_sym_else] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_new] = ACTIONS(1854), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_PERCENT] = ACTIONS(1852), - [anon_sym_SLASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_LT_LT] = ACTIONS(1852), - [anon_sym_GT_GT] = ACTIONS(1854), - [anon_sym_GT_GT_GT] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_AMP_AMP] = ACTIONS(1852), - [anon_sym_PIPE_PIPE] = ACTIONS(1852), - [anon_sym_EQ_EQ] = ACTIONS(1852), - [anon_sym_BANG_EQ] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_LT_EQ] = ACTIONS(1852), - [anon_sym_GT] = ACTIONS(1854), - [anon_sym_GT_EQ] = ACTIONS(1852), - [anon_sym_EQ_GT] = ACTIONS(1852), - [anon_sym_QMARK_QMARK] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1852), - [anon_sym_null] = ACTIONS(1854), - [anon_sym_macro] = ACTIONS(1854), - [anon_sym_abstract] = ACTIONS(1854), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_public] = ACTIONS(1854), - [anon_sym_private] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [anon_sym_overload] = ACTIONS(1854), - [anon_sym_override] = ACTIONS(1854), - [anon_sym_final] = ACTIONS(1854), - [anon_sym_class] = ACTIONS(1854), - [anon_sym_interface] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_function] = ACTIONS(1854), - [anon_sym_var] = ACTIONS(1854), - [aux_sym_integer_token1] = ACTIONS(1854), - [aux_sym_integer_token2] = ACTIONS(1852), - [aux_sym_float_token1] = ACTIONS(1854), - [aux_sym_float_token2] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1854), - [anon_sym_false] = ACTIONS(1854), - [aux_sym_string_token1] = ACTIONS(1852), - [aux_sym_string_token3] = ACTIONS(1852), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1856), - [anon_sym_package] = ACTIONS(1858), - [anon_sym_DOT] = ACTIONS(1858), - [anon_sym_import] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_using] = ACTIONS(1858), - [anon_sym_throw] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_RPAREN] = ACTIONS(1856), - [anon_sym_switch] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_COLON] = ACTIONS(1856), - [anon_sym_cast] = ACTIONS(1858), - [anon_sym_COMMA] = ACTIONS(1856), - [anon_sym_DOLLARtype] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_untyped] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_RBRACK] = ACTIONS(1856), - [anon_sym_this] = ACTIONS(1858), - [anon_sym_QMARK] = ACTIONS(1858), - [anon_sym_AT] = ACTIONS(1858), - [anon_sym_AT_COLON] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1858), - [anon_sym_catch] = ACTIONS(1858), - [anon_sym_else] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_do] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_SLASH] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_LT_LT] = ACTIONS(1856), - [anon_sym_GT_GT] = ACTIONS(1858), - [anon_sym_GT_GT_GT] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP_AMP] = ACTIONS(1856), - [anon_sym_PIPE_PIPE] = ACTIONS(1856), - [anon_sym_EQ_EQ] = ACTIONS(1856), - [anon_sym_BANG_EQ] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_LT_EQ] = ACTIONS(1856), - [anon_sym_GT] = ACTIONS(1858), - [anon_sym_GT_EQ] = ACTIONS(1856), - [anon_sym_EQ_GT] = ACTIONS(1856), - [anon_sym_QMARK_QMARK] = ACTIONS(1856), - [anon_sym_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1856), - [anon_sym_null] = ACTIONS(1858), - [anon_sym_macro] = ACTIONS(1858), - [anon_sym_abstract] = ACTIONS(1858), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_public] = ACTIONS(1858), - [anon_sym_private] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1858), - [anon_sym_inline] = ACTIONS(1858), - [anon_sym_overload] = ACTIONS(1858), - [anon_sym_override] = ACTIONS(1858), - [anon_sym_final] = ACTIONS(1858), - [anon_sym_class] = ACTIONS(1858), - [anon_sym_interface] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [anon_sym_typedef] = ACTIONS(1858), - [anon_sym_function] = ACTIONS(1858), - [anon_sym_var] = ACTIONS(1858), - [aux_sym_integer_token1] = ACTIONS(1858), - [aux_sym_integer_token2] = ACTIONS(1856), - [aux_sym_float_token1] = ACTIONS(1858), - [aux_sym_float_token2] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [aux_sym_string_token1] = ACTIONS(1856), - [aux_sym_string_token3] = ACTIONS(1856), + [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(1860), - [sym_identifier] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_package] = ACTIONS(1862), - [anon_sym_DOT] = ACTIONS(1862), - [anon_sym_import] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_using] = ACTIONS(1862), - [anon_sym_throw] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_RPAREN] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_COLON] = ACTIONS(1860), - [anon_sym_cast] = ACTIONS(1862), - [anon_sym_COMMA] = ACTIONS(1860), - [anon_sym_DOLLARtype] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_untyped] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1860), - [anon_sym_RBRACK] = ACTIONS(1860), - [anon_sym_this] = ACTIONS(1862), - [anon_sym_QMARK] = ACTIONS(1862), - [anon_sym_AT] = ACTIONS(1862), - [anon_sym_AT_COLON] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1862), - [anon_sym_catch] = ACTIONS(1862), - [anon_sym_else] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_new] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS_PLUS] = ACTIONS(1860), - [anon_sym_DASH_DASH] = ACTIONS(1860), - [anon_sym_PERCENT] = ACTIONS(1860), - [anon_sym_SLASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_LT_LT] = ACTIONS(1860), - [anon_sym_GT_GT] = ACTIONS(1862), - [anon_sym_GT_GT_GT] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_CARET] = ACTIONS(1860), - [anon_sym_AMP_AMP] = ACTIONS(1860), - [anon_sym_PIPE_PIPE] = ACTIONS(1860), - [anon_sym_EQ_EQ] = ACTIONS(1860), - [anon_sym_BANG_EQ] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_LT_EQ] = ACTIONS(1860), - [anon_sym_GT] = ACTIONS(1862), - [anon_sym_GT_EQ] = ACTIONS(1860), - [anon_sym_EQ_GT] = ACTIONS(1860), - [anon_sym_QMARK_QMARK] = ACTIONS(1860), - [anon_sym_EQ] = ACTIONS(1862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1860), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_macro] = ACTIONS(1862), - [anon_sym_abstract] = ACTIONS(1862), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_public] = ACTIONS(1862), - [anon_sym_private] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [anon_sym_overload] = ACTIONS(1862), - [anon_sym_override] = ACTIONS(1862), - [anon_sym_final] = ACTIONS(1862), - [anon_sym_class] = ACTIONS(1862), - [anon_sym_interface] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_function] = ACTIONS(1862), - [anon_sym_var] = ACTIONS(1862), - [aux_sym_integer_token1] = ACTIONS(1862), - [aux_sym_integer_token2] = ACTIONS(1860), - [aux_sym_float_token1] = ACTIONS(1862), - [aux_sym_float_token2] = ACTIONS(1860), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [aux_sym_string_token1] = ACTIONS(1860), - [aux_sym_string_token3] = ACTIONS(1860), + [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(1864), - [sym_identifier] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1864), - [anon_sym_package] = ACTIONS(1866), - [anon_sym_DOT] = ACTIONS(1866), - [anon_sym_import] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_using] = ACTIONS(1866), - [anon_sym_throw] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_RPAREN] = ACTIONS(1864), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_COLON] = ACTIONS(1864), - [anon_sym_cast] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1864), - [anon_sym_DOLLARtype] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_untyped] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_RBRACK] = ACTIONS(1864), - [anon_sym_this] = ACTIONS(1866), - [anon_sym_QMARK] = ACTIONS(1866), - [anon_sym_AT] = ACTIONS(1866), - [anon_sym_AT_COLON] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1866), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_new] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PERCENT] = ACTIONS(1864), - [anon_sym_SLASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_LT_LT] = ACTIONS(1864), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_GT_GT_GT] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1864), - [anon_sym_EQ_EQ] = ACTIONS(1864), - [anon_sym_BANG_EQ] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_LT_EQ] = ACTIONS(1864), - [anon_sym_GT] = ACTIONS(1866), - [anon_sym_GT_EQ] = ACTIONS(1864), - [anon_sym_EQ_GT] = ACTIONS(1864), - [anon_sym_QMARK_QMARK] = ACTIONS(1864), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1864), - [anon_sym_null] = ACTIONS(1866), - [anon_sym_macro] = ACTIONS(1866), - [anon_sym_abstract] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_public] = ACTIONS(1866), - [anon_sym_private] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [anon_sym_overload] = ACTIONS(1866), - [anon_sym_override] = ACTIONS(1866), - [anon_sym_final] = ACTIONS(1866), - [anon_sym_class] = ACTIONS(1866), - [anon_sym_interface] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_function] = ACTIONS(1866), - [anon_sym_var] = ACTIONS(1866), - [aux_sym_integer_token1] = ACTIONS(1866), - [aux_sym_integer_token2] = ACTIONS(1864), - [aux_sym_float_token1] = ACTIONS(1866), - [aux_sym_float_token2] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [aux_sym_string_token1] = ACTIONS(1864), - [aux_sym_string_token3] = ACTIONS(1864), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1868), - [anon_sym_package] = ACTIONS(1870), - [anon_sym_DOT] = ACTIONS(1870), - [anon_sym_import] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_using] = ACTIONS(1870), - [anon_sym_throw] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_cast] = ACTIONS(1870), - [anon_sym_COMMA] = ACTIONS(1868), - [anon_sym_DOLLARtype] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_untyped] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_RBRACK] = ACTIONS(1868), - [anon_sym_this] = ACTIONS(1870), - [anon_sym_QMARK] = ACTIONS(1870), - [anon_sym_AT] = ACTIONS(1870), - [anon_sym_AT_COLON] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1870), - [anon_sym_catch] = ACTIONS(1870), - [anon_sym_else] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_new] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1870), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1870), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_EQ_GT] = ACTIONS(1868), - [anon_sym_QMARK_QMARK] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_macro] = ACTIONS(1870), - [anon_sym_abstract] = ACTIONS(1870), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_public] = ACTIONS(1870), - [anon_sym_private] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym_inline] = ACTIONS(1870), - [anon_sym_overload] = ACTIONS(1870), - [anon_sym_override] = ACTIONS(1870), - [anon_sym_final] = ACTIONS(1870), - [anon_sym_class] = ACTIONS(1870), - [anon_sym_interface] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_typedef] = ACTIONS(1870), - [anon_sym_function] = ACTIONS(1870), - [anon_sym_var] = ACTIONS(1870), - [aux_sym_integer_token1] = ACTIONS(1870), - [aux_sym_integer_token2] = ACTIONS(1868), - [aux_sym_float_token1] = ACTIONS(1870), - [aux_sym_float_token2] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1870), - [anon_sym_false] = ACTIONS(1870), - [aux_sym_string_token1] = ACTIONS(1868), - [aux_sym_string_token3] = ACTIONS(1868), + [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(1872), - [sym_identifier] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1872), - [anon_sym_package] = ACTIONS(1874), - [anon_sym_DOT] = ACTIONS(1874), - [anon_sym_import] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_using] = ACTIONS(1874), - [anon_sym_throw] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_RPAREN] = ACTIONS(1872), - [anon_sym_switch] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_cast] = ACTIONS(1874), - [anon_sym_COMMA] = ACTIONS(1872), - [anon_sym_DOLLARtype] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_untyped] = ACTIONS(1874), - [anon_sym_break] = ACTIONS(1874), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_RBRACK] = ACTIONS(1872), - [anon_sym_this] = ACTIONS(1874), - [anon_sym_QMARK] = ACTIONS(1874), - [anon_sym_AT] = ACTIONS(1874), - [anon_sym_AT_COLON] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1874), - [anon_sym_catch] = ACTIONS(1874), - [anon_sym_else] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_while] = ACTIONS(1874), - [anon_sym_do] = ACTIONS(1874), - [anon_sym_new] = ACTIONS(1874), - [anon_sym_TILDE] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1872), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_GT_GT_GT] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_AMP_AMP] = ACTIONS(1872), - [anon_sym_PIPE_PIPE] = ACTIONS(1872), - [anon_sym_EQ_EQ] = ACTIONS(1872), - [anon_sym_BANG_EQ] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_EQ_GT] = ACTIONS(1872), - [anon_sym_QMARK_QMARK] = ACTIONS(1872), - [anon_sym_EQ] = ACTIONS(1874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1872), - [anon_sym_null] = ACTIONS(1874), - [anon_sym_macro] = ACTIONS(1874), - [anon_sym_abstract] = ACTIONS(1874), - [anon_sym_static] = ACTIONS(1874), - [anon_sym_public] = ACTIONS(1874), - [anon_sym_private] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1874), - [anon_sym_inline] = ACTIONS(1874), - [anon_sym_overload] = ACTIONS(1874), - [anon_sym_override] = ACTIONS(1874), - [anon_sym_final] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1874), - [anon_sym_interface] = ACTIONS(1874), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_typedef] = ACTIONS(1874), - [anon_sym_function] = ACTIONS(1874), - [anon_sym_var] = ACTIONS(1874), - [aux_sym_integer_token1] = ACTIONS(1874), - [aux_sym_integer_token2] = ACTIONS(1872), - [aux_sym_float_token1] = ACTIONS(1874), - [aux_sym_float_token2] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [aux_sym_string_token1] = ACTIONS(1872), - [aux_sym_string_token3] = ACTIONS(1872), + [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(1876), - [sym_identifier] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_package] = ACTIONS(1878), - [anon_sym_DOT] = ACTIONS(1878), - [anon_sym_import] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_using] = ACTIONS(1878), - [anon_sym_throw] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_switch] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_COLON] = ACTIONS(1876), - [anon_sym_cast] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1876), - [anon_sym_DOLLARtype] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_untyped] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_RBRACK] = ACTIONS(1876), - [anon_sym_this] = ACTIONS(1878), - [anon_sym_QMARK] = ACTIONS(1878), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_AT_COLON] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_catch] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_new] = ACTIONS(1878), - [anon_sym_TILDE] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_PERCENT] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_GT_GT_GT] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_CARET] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_EQ_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_EQ_GT] = ACTIONS(1876), - [anon_sym_QMARK_QMARK] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1876), - [anon_sym_null] = ACTIONS(1878), - [anon_sym_macro] = ACTIONS(1878), - [anon_sym_abstract] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1878), - [anon_sym_public] = ACTIONS(1878), - [anon_sym_private] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_inline] = ACTIONS(1878), - [anon_sym_overload] = ACTIONS(1878), - [anon_sym_override] = ACTIONS(1878), - [anon_sym_final] = ACTIONS(1878), - [anon_sym_class] = ACTIONS(1878), - [anon_sym_interface] = ACTIONS(1878), - [anon_sym_enum] = ACTIONS(1878), - [anon_sym_typedef] = ACTIONS(1878), - [anon_sym_function] = ACTIONS(1878), - [anon_sym_var] = ACTIONS(1878), - [aux_sym_integer_token1] = ACTIONS(1878), - [aux_sym_integer_token2] = ACTIONS(1876), - [aux_sym_float_token1] = ACTIONS(1878), - [aux_sym_float_token2] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [aux_sym_string_token1] = ACTIONS(1876), - [aux_sym_string_token3] = ACTIONS(1876), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1880), - [sym_identifier] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_package] = ACTIONS(1882), - [anon_sym_DOT] = ACTIONS(1882), - [anon_sym_import] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1882), - [anon_sym_throw] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_switch] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_COLON] = ACTIONS(1880), - [anon_sym_cast] = ACTIONS(1882), - [anon_sym_COMMA] = ACTIONS(1880), - [anon_sym_DOLLARtype] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_untyped] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1882), - [anon_sym_continue] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_RBRACK] = ACTIONS(1880), - [anon_sym_this] = ACTIONS(1882), - [anon_sym_QMARK] = ACTIONS(1882), - [anon_sym_AT] = ACTIONS(1882), - [anon_sym_AT_COLON] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1882), - [anon_sym_catch] = ACTIONS(1882), - [anon_sym_else] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_new] = ACTIONS(1882), - [anon_sym_TILDE] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS_PLUS] = ACTIONS(1880), - [anon_sym_DASH_DASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_LT_LT] = ACTIONS(1880), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_GT_GT_GT] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1880), - [anon_sym_EQ_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1880), - [anon_sym_EQ_GT] = ACTIONS(1880), - [anon_sym_QMARK_QMARK] = ACTIONS(1880), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1880), - [anon_sym_null] = ACTIONS(1882), - [anon_sym_macro] = ACTIONS(1882), - [anon_sym_abstract] = ACTIONS(1882), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1882), - [anon_sym_private] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym_inline] = ACTIONS(1882), - [anon_sym_overload] = ACTIONS(1882), - [anon_sym_override] = ACTIONS(1882), - [anon_sym_final] = ACTIONS(1882), - [anon_sym_class] = ACTIONS(1882), - [anon_sym_interface] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_typedef] = ACTIONS(1882), - [anon_sym_function] = ACTIONS(1882), - [anon_sym_var] = ACTIONS(1882), - [aux_sym_integer_token1] = ACTIONS(1882), - [aux_sym_integer_token2] = ACTIONS(1880), - [aux_sym_float_token1] = ACTIONS(1882), - [aux_sym_float_token2] = ACTIONS(1880), - [anon_sym_true] = ACTIONS(1882), - [anon_sym_false] = ACTIONS(1882), - [aux_sym_string_token1] = ACTIONS(1880), - [aux_sym_string_token3] = ACTIONS(1880), + [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(1884), - [sym_identifier] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_package] = ACTIONS(1886), - [anon_sym_DOT] = ACTIONS(1886), - [anon_sym_import] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_using] = ACTIONS(1886), - [anon_sym_throw] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_switch] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_COLON] = ACTIONS(1884), - [anon_sym_cast] = ACTIONS(1886), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_DOLLARtype] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_untyped] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_this] = ACTIONS(1886), - [anon_sym_QMARK] = ACTIONS(1886), - [anon_sym_AT] = ACTIONS(1886), - [anon_sym_AT_COLON] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1886), - [anon_sym_catch] = ACTIONS(1886), - [anon_sym_else] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_GT_GT_GT] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_EQ] = ACTIONS(1884), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_QMARK] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), - [anon_sym_null] = ACTIONS(1886), - [anon_sym_macro] = ACTIONS(1886), - [anon_sym_abstract] = ACTIONS(1886), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_public] = ACTIONS(1886), - [anon_sym_private] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1886), - [anon_sym_inline] = ACTIONS(1886), - [anon_sym_overload] = ACTIONS(1886), - [anon_sym_override] = ACTIONS(1886), - [anon_sym_final] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_interface] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_typedef] = ACTIONS(1886), - [anon_sym_function] = ACTIONS(1886), - [anon_sym_var] = ACTIONS(1886), - [aux_sym_integer_token1] = ACTIONS(1886), - [aux_sym_integer_token2] = ACTIONS(1884), - [aux_sym_float_token1] = ACTIONS(1886), - [aux_sym_float_token2] = ACTIONS(1884), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [aux_sym_string_token1] = ACTIONS(1884), - [aux_sym_string_token3] = ACTIONS(1884), + [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(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_package] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_using] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_COLON] = ACTIONS(1888), - [anon_sym_cast] = ACTIONS(1784), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_DOLLARtype] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_AT_COLON] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_catch] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1784), - [anon_sym_GT_GT_GT] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_QMARK_QMARK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), - [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_enum] = 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(1782), - [aux_sym_float_token1] = ACTIONS(1784), - [aux_sym_float_token2] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [aux_sym_string_token1] = ACTIONS(1782), - [aux_sym_string_token3] = ACTIONS(1782), + [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(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_package] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1892), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_using] = ACTIONS(1892), - [anon_sym_throw] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_COLON] = ACTIONS(1890), - [anon_sym_cast] = ACTIONS(1892), - [anon_sym_COMMA] = ACTIONS(1890), - [anon_sym_DOLLARtype] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_untyped] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1892), - [anon_sym_QMARK] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_AT_COLON] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1892), - [anon_sym_catch] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_do] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1890), - [anon_sym_PERCENT] = ACTIONS(1890), - [anon_sym_SLASH] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1890), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_GT_GT_GT] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [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(1892), - [anon_sym_LT_EQ] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_EQ] = ACTIONS(1890), - [anon_sym_EQ_GT] = ACTIONS(1890), - [anon_sym_QMARK_QMARK] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1890), - [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_enum] = 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(1890), - [aux_sym_float_token1] = ACTIONS(1892), - [aux_sym_float_token2] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym_string_token1] = ACTIONS(1890), - [aux_sym_string_token3] = ACTIONS(1890), + [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(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_package] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(1896), - [anon_sym_import] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_using] = ACTIONS(1896), - [anon_sym_throw] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_COLON] = ACTIONS(1894), - [anon_sym_cast] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1894), - [anon_sym_DOLLARtype] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_untyped] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_RBRACK] = ACTIONS(1894), - [anon_sym_this] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1896), - [anon_sym_AT_COLON] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1896), - [anon_sym_catch] = ACTIONS(1896), - [anon_sym_else] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1894), - [anon_sym_SLASH] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_LT_LT] = ACTIONS(1894), - [anon_sym_GT_GT] = ACTIONS(1896), - [anon_sym_GT_GT_GT] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [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(1896), - [anon_sym_LT_EQ] = ACTIONS(1894), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_EQ] = ACTIONS(1894), - [anon_sym_EQ_GT] = ACTIONS(1894), - [anon_sym_QMARK_QMARK] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1894), - [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_enum] = 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(1894), - [aux_sym_float_token1] = ACTIONS(1896), - [aux_sym_float_token2] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [aux_sym_string_token1] = ACTIONS(1894), - [aux_sym_string_token3] = ACTIONS(1894), + [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(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_package] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_using] = ACTIONS(1900), - [anon_sym_throw] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_RPAREN] = ACTIONS(1898), - [anon_sym_switch] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_cast] = ACTIONS(1900), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_DOLLARtype] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_untyped] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_RBRACK] = ACTIONS(1898), - [anon_sym_this] = ACTIONS(1900), - [anon_sym_QMARK] = ACTIONS(1900), - [anon_sym_AT] = ACTIONS(1900), - [anon_sym_AT_COLON] = ACTIONS(1898), - [anon_sym_try] = ACTIONS(1900), - [anon_sym_catch] = ACTIONS(1900), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1898), - [anon_sym_DASH_DASH] = ACTIONS(1898), - [anon_sym_PERCENT] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_LT_LT] = ACTIONS(1898), - [anon_sym_GT_GT] = ACTIONS(1900), - [anon_sym_GT_GT_GT] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [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(1900), - [anon_sym_LT_EQ] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1898), - [anon_sym_EQ_GT] = ACTIONS(1898), - [anon_sym_QMARK_QMARK] = ACTIONS(1898), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1898), - [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_enum] = 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(1898), - [aux_sym_float_token1] = ACTIONS(1900), - [aux_sym_float_token2] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [aux_sym_string_token1] = ACTIONS(1898), - [aux_sym_string_token3] = ACTIONS(1898), + [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(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_using] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_COLON] = ACTIONS(1354), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1356), - [aux_sym_integer_token2] = ACTIONS(1354), - [aux_sym_float_token1] = ACTIONS(1356), - [aux_sym_float_token2] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1354), - [aux_sym_string_token3] = ACTIONS(1354), + [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(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_package] = ACTIONS(1904), - [anon_sym_DOT] = ACTIONS(1904), - [anon_sym_import] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_using] = ACTIONS(1904), - [anon_sym_throw] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_RPAREN] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_COLON] = ACTIONS(1902), - [anon_sym_cast] = ACTIONS(1904), - [anon_sym_COMMA] = ACTIONS(1902), - [anon_sym_DOLLARtype] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_untyped] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_RBRACK] = ACTIONS(1902), - [anon_sym_this] = ACTIONS(1904), - [anon_sym_QMARK] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1904), - [anon_sym_AT_COLON] = ACTIONS(1902), - [anon_sym_try] = ACTIONS(1904), - [anon_sym_catch] = ACTIONS(1904), - [anon_sym_else] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym_PERCENT] = ACTIONS(1902), - [anon_sym_SLASH] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_LT_LT] = ACTIONS(1902), - [anon_sym_GT_GT] = ACTIONS(1904), - [anon_sym_GT_GT_GT] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [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(1904), - [anon_sym_LT_EQ] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(1904), - [anon_sym_GT_EQ] = ACTIONS(1902), - [anon_sym_EQ_GT] = ACTIONS(1902), - [anon_sym_QMARK_QMARK] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), - [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_enum] = 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(1902), - [aux_sym_float_token1] = ACTIONS(1904), - [aux_sym_float_token2] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [aux_sym_string_token1] = ACTIONS(1902), - [aux_sym_string_token3] = ACTIONS(1902), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_package] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_import] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1476), - [anon_sym_throw] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(1474), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_RBRACK] = ACTIONS(1474), - [anon_sym_this] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_AT_COLON] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PERCENT] = ACTIONS(1474), - [anon_sym_SLASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1474), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_GT_GT_GT] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_PIPE_PIPE] = ACTIONS(1474), - [anon_sym_EQ_EQ] = ACTIONS(1474), - [anon_sym_BANG_EQ] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_GT_EQ] = ACTIONS(1474), - [anon_sym_EQ_GT] = ACTIONS(1474), - [anon_sym_QMARK_QMARK] = ACTIONS(1474), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1474), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_macro] = ACTIONS(1476), - [anon_sym_abstract] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_public] = ACTIONS(1476), - [anon_sym_private] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym_overload] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1476), - [anon_sym_class] = ACTIONS(1476), - [anon_sym_interface] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [aux_sym_integer_token1] = ACTIONS(1476), - [aux_sym_integer_token2] = ACTIONS(1474), - [aux_sym_float_token1] = ACTIONS(1476), - [aux_sym_float_token2] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1474), - [aux_sym_string_token3] = ACTIONS(1474), + [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(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_package] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1908), - [anon_sym_import] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_using] = ACTIONS(1908), - [anon_sym_throw] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_RPAREN] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_COLON] = ACTIONS(1906), - [anon_sym_cast] = ACTIONS(1908), - [anon_sym_COMMA] = ACTIONS(1906), - [anon_sym_DOLLARtype] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_untyped] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_RBRACK] = ACTIONS(1906), - [anon_sym_this] = ACTIONS(1908), - [anon_sym_QMARK] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1908), - [anon_sym_AT_COLON] = ACTIONS(1906), - [anon_sym_try] = ACTIONS(1908), - [anon_sym_catch] = ACTIONS(1908), - [anon_sym_else] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_do] = ACTIONS(1908), - [anon_sym_new] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_LT_LT] = ACTIONS(1906), - [anon_sym_GT_GT] = ACTIONS(1908), - [anon_sym_GT_GT_GT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [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(1908), - [anon_sym_LT_EQ] = ACTIONS(1906), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_GT_EQ] = ACTIONS(1906), - [anon_sym_EQ_GT] = ACTIONS(1906), - [anon_sym_QMARK_QMARK] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1906), - [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_enum] = 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(1906), - [aux_sym_float_token1] = ACTIONS(1908), - [aux_sym_float_token2] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [aux_sym_string_token1] = ACTIONS(1906), - [aux_sym_string_token3] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_package] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(1912), - [anon_sym_import] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_using] = ACTIONS(1912), - [anon_sym_throw] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_switch] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_COLON] = ACTIONS(1910), - [anon_sym_cast] = ACTIONS(1912), - [anon_sym_COMMA] = ACTIONS(1910), - [anon_sym_DOLLARtype] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_untyped] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_RBRACK] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(1912), - [anon_sym_QMARK] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1912), - [anon_sym_AT_COLON] = ACTIONS(1910), - [anon_sym_try] = ACTIONS(1912), - [anon_sym_catch] = ACTIONS(1912), - [anon_sym_else] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_do] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1910), - [anon_sym_PERCENT] = ACTIONS(1910), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1910), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_GT_GT_GT] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [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(1912), - [anon_sym_LT_EQ] = ACTIONS(1910), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_EQ] = ACTIONS(1910), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_QMARK] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1910), - [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_enum] = 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(1910), - [aux_sym_float_token1] = ACTIONS(1912), - [aux_sym_float_token2] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [aux_sym_string_token1] = ACTIONS(1910), - [aux_sym_string_token3] = ACTIONS(1910), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [223] = { - [sym__rhs_expression] = STATE(877), - [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(974), - [sym_range_expression] = STATE(165), - [sym_subscript_expression] = STATE(165), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(877), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [aux_sym__parenthesized_expression_repeat1] = STATE(165), - [sym_identifier] = ACTIONS(1608), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -37606,254 +37442,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(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] = { + [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_unmarker] = ACTIONS(3), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_package] = ACTIONS(1916), - [anon_sym_DOT] = ACTIONS(1916), - [anon_sym_import] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(1916), - [anon_sym_throw] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_switch] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_COLON] = ACTIONS(1914), - [anon_sym_cast] = ACTIONS(1916), - [anon_sym_COMMA] = ACTIONS(1914), - [anon_sym_DOLLARtype] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_untyped] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_RBRACK] = ACTIONS(1914), - [anon_sym_this] = ACTIONS(1916), - [anon_sym_QMARK] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1916), - [anon_sym_AT_COLON] = ACTIONS(1914), - [anon_sym_try] = ACTIONS(1916), - [anon_sym_catch] = ACTIONS(1916), - [anon_sym_else] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_do] = ACTIONS(1916), - [anon_sym_new] = ACTIONS(1916), - [anon_sym_TILDE] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_PERCENT] = ACTIONS(1914), - [anon_sym_SLASH] = ACTIONS(1916), - [anon_sym_PLUS] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(1914), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_GT_GT_GT] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [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(1916), - [anon_sym_LT_EQ] = ACTIONS(1914), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_GT_EQ] = ACTIONS(1914), - [anon_sym_EQ_GT] = ACTIONS(1914), - [anon_sym_QMARK_QMARK] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [anon_sym_macro] = ACTIONS(1916), - [anon_sym_abstract] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_public] = ACTIONS(1916), - [anon_sym_private] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_inline] = ACTIONS(1916), - [anon_sym_overload] = ACTIONS(1916), - [anon_sym_override] = ACTIONS(1916), - [anon_sym_final] = ACTIONS(1916), - [anon_sym_class] = ACTIONS(1916), - [anon_sym_interface] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_typedef] = ACTIONS(1916), - [anon_sym_function] = ACTIONS(1916), - [anon_sym_var] = ACTIONS(1916), - [aux_sym_integer_token1] = ACTIONS(1916), - [aux_sym_integer_token2] = ACTIONS(1914), - [aux_sym_float_token1] = ACTIONS(1916), - [aux_sym_float_token2] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [aux_sym_string_token1] = ACTIONS(1914), - [aux_sym_string_token3] = ACTIONS(1914), + [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(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_package] = ACTIONS(1920), - [anon_sym_DOT] = ACTIONS(1920), - [anon_sym_import] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_using] = ACTIONS(1920), - [anon_sym_throw] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COLON] = ACTIONS(1918), - [anon_sym_cast] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1918), - [anon_sym_DOLLARtype] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_untyped] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(1918), - [anon_sym_this] = ACTIONS(1920), - [anon_sym_QMARK] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1920), - [anon_sym_AT_COLON] = ACTIONS(1918), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_catch] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_PLUS_PLUS] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1918), - [anon_sym_PERCENT] = ACTIONS(1918), - [anon_sym_SLASH] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1920), - [anon_sym_GT_GT_GT] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_EQ_EQ] = ACTIONS(1918), - [anon_sym_BANG_EQ] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_LT_EQ] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1920), - [anon_sym_GT_EQ] = ACTIONS(1918), - [anon_sym_EQ_GT] = ACTIONS(1918), - [anon_sym_QMARK_QMARK] = ACTIONS(1918), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_macro] = ACTIONS(1920), - [anon_sym_abstract] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_public] = ACTIONS(1920), - [anon_sym_private] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_inline] = ACTIONS(1920), - [anon_sym_overload] = ACTIONS(1920), - [anon_sym_override] = ACTIONS(1920), - [anon_sym_final] = ACTIONS(1920), - [anon_sym_class] = ACTIONS(1920), - [anon_sym_interface] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_typedef] = ACTIONS(1920), - [anon_sym_function] = ACTIONS(1920), - [anon_sym_var] = ACTIONS(1920), - [aux_sym_integer_token1] = ACTIONS(1920), - [aux_sym_integer_token2] = ACTIONS(1918), - [aux_sym_float_token1] = ACTIONS(1920), - [aux_sym_float_token2] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym_string_token1] = ACTIONS(1918), - [aux_sym_string_token3] = ACTIONS(1918), + [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] = { - [sym__rhs_expression] = STATE(1044), - [sym__unaryExpression] = STATE(2956), - [sym_runtime_type_check_expression] = STATE(2956), - [sym_switch_expression] = STATE(2956), - [sym_cast_expression] = STATE(2956), - [sym_type_trace_expression] = STATE(2956), - [sym__parenthesized_expression] = STATE(2422), - [sym_range_expression] = STATE(2956), - [sym_subscript_expression] = STATE(2956), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1044), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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] = { + [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(1562), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_untyped] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -37879,1160 +37988,1160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_package] = ACTIONS(1932), - [anon_sym_DOT] = ACTIONS(1932), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_using] = ACTIONS(1932), - [anon_sym_throw] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1932), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_cast] = ACTIONS(1932), - [anon_sym_COMMA] = ACTIONS(1930), - [anon_sym_DOLLARtype] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_untyped] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_this] = ACTIONS(1932), - [anon_sym_QMARK] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1932), - [anon_sym_AT_COLON] = ACTIONS(1930), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_catch] = ACTIONS(1932), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_do] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1932), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1932), - [anon_sym_GT_GT_GT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [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(1932), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_QMARK_QMARK] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), - [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_enum] = 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(1930), - [aux_sym_float_token1] = ACTIONS(1932), - [aux_sym_float_token2] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [aux_sym_string_token1] = ACTIONS(1930), - [aux_sym_string_token3] = ACTIONS(1930), + [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(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_package] = ACTIONS(1936), - [anon_sym_DOT] = ACTIONS(1936), - [anon_sym_import] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_throw] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_switch] = ACTIONS(1936), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_cast] = ACTIONS(1936), - [anon_sym_COMMA] = ACTIONS(1934), - [anon_sym_DOLLARtype] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_untyped] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1936), - [anon_sym_QMARK] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1936), - [anon_sym_AT_COLON] = ACTIONS(1934), - [anon_sym_try] = ACTIONS(1936), - [anon_sym_catch] = ACTIONS(1936), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_do] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1934), - [anon_sym_DASH_DASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_LT_LT] = ACTIONS(1934), - [anon_sym_GT_GT] = ACTIONS(1936), - [anon_sym_GT_GT_GT] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [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(1936), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_QMARK_QMARK] = ACTIONS(1934), - [anon_sym_EQ] = ACTIONS(1936), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1934), - [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_enum] = 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(1934), - [aux_sym_float_token1] = ACTIONS(1936), - [aux_sym_float_token2] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [aux_sym_string_token1] = ACTIONS(1934), - [aux_sym_string_token3] = ACTIONS(1934), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_package] = ACTIONS(1940), - [anon_sym_DOT] = ACTIONS(1940), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(1938), - [anon_sym_cast] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_DOLLARtype] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_untyped] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_this] = ACTIONS(1940), - [anon_sym_QMARK] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1940), - [anon_sym_AT_COLON] = ACTIONS(1938), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_LT_LT] = ACTIONS(1938), - [anon_sym_GT_GT] = ACTIONS(1940), - [anon_sym_GT_GT_GT] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [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(1940), - [anon_sym_LT_EQ] = ACTIONS(1938), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_GT_EQ] = ACTIONS(1938), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_QMARK_QMARK] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), - [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_enum] = 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(1938), - [aux_sym_float_token1] = ACTIONS(1940), - [aux_sym_float_token2] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [aux_sym_string_token1] = ACTIONS(1938), - [aux_sym_string_token3] = ACTIONS(1938), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_package] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_import] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1944), - [anon_sym_throw] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_COLON] = ACTIONS(1942), - [anon_sym_cast] = ACTIONS(1944), - [anon_sym_COMMA] = ACTIONS(1942), - [anon_sym_DOLLARtype] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_untyped] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_RBRACK] = ACTIONS(1942), - [anon_sym_this] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_AT_COLON] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1944), - [anon_sym_catch] = ACTIONS(1944), - [anon_sym_else] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_do] = ACTIONS(1944), - [anon_sym_new] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [anon_sym_PERCENT] = ACTIONS(1942), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1942), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym_GT_GT_GT] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [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(1944), - [anon_sym_LT_EQ] = ACTIONS(1942), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1942), - [anon_sym_EQ_GT] = ACTIONS(1942), - [anon_sym_QMARK_QMARK] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), - [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_enum] = 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(1942), - [aux_sym_float_token1] = ACTIONS(1944), - [aux_sym_float_token2] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [aux_sym_string_token1] = ACTIONS(1942), - [aux_sym_string_token3] = ACTIONS(1942), + [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_unmarker] = ACTIONS(3), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_using] = ACTIONS(1948), - [anon_sym_throw] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_COLON] = ACTIONS(1946), - [anon_sym_cast] = ACTIONS(1948), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_DOLLARtype] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_untyped] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_RBRACK] = ACTIONS(1946), - [anon_sym_this] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1948), - [anon_sym_AT_COLON] = ACTIONS(1946), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = ACTIONS(1948), - [anon_sym_new] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1948), - [anon_sym_GT_GT_GT] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [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(1948), - [anon_sym_LT_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1948), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_EQ_GT] = ACTIONS(1946), - [anon_sym_QMARK_QMARK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [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_enum] = 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(1946), - [aux_sym_float_token1] = ACTIONS(1948), - [aux_sym_float_token2] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [aux_sym_string_token1] = ACTIONS(1946), - [aux_sym_string_token3] = ACTIONS(1946), + [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__closing_brace_unmarker] = ACTIONS(3), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1952), - [anon_sym_DOT] = ACTIONS(1952), - [anon_sym_import] = ACTIONS(1952), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_using] = ACTIONS(1952), - [anon_sym_throw] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_RPAREN] = ACTIONS(1950), - [anon_sym_switch] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_COLON] = ACTIONS(1950), - [anon_sym_cast] = ACTIONS(1952), - [anon_sym_COMMA] = ACTIONS(1950), - [anon_sym_DOLLARtype] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_untyped] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_RBRACK] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1952), - [anon_sym_QMARK] = ACTIONS(1952), - [anon_sym_AT] = ACTIONS(1952), - [anon_sym_AT_COLON] = ACTIONS(1950), - [anon_sym_try] = ACTIONS(1952), - [anon_sym_catch] = ACTIONS(1952), - [anon_sym_else] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_do] = ACTIONS(1952), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [anon_sym_PLUS_PLUS] = ACTIONS(1950), - [anon_sym_DASH_DASH] = ACTIONS(1950), - [anon_sym_PERCENT] = ACTIONS(1950), - [anon_sym_SLASH] = ACTIONS(1952), - [anon_sym_PLUS] = ACTIONS(1952), - [anon_sym_LT_LT] = ACTIONS(1950), - [anon_sym_GT_GT] = ACTIONS(1952), - [anon_sym_GT_GT_GT] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [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(1952), - [anon_sym_LT_EQ] = ACTIONS(1950), - [anon_sym_GT] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1950), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_QMARK_QMARK] = ACTIONS(1950), - [anon_sym_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1950), - [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_enum] = 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(1950), - [aux_sym_float_token1] = ACTIONS(1952), - [aux_sym_float_token2] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [aux_sym_string_token1] = ACTIONS(1950), - [aux_sym_string_token3] = ACTIONS(1950), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_package] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_using] = ACTIONS(1956), - [anon_sym_throw] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_switch] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1954), - [anon_sym_cast] = ACTIONS(1956), - [anon_sym_COMMA] = ACTIONS(1954), - [anon_sym_DOLLARtype] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_untyped] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_RBRACK] = ACTIONS(1954), - [anon_sym_this] = ACTIONS(1956), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_AT_COLON] = ACTIONS(1954), - [anon_sym_try] = ACTIONS(1956), - [anon_sym_catch] = ACTIONS(1956), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_do] = ACTIONS(1956), - [anon_sym_new] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1954), - [anon_sym_DASH_DASH] = ACTIONS(1954), - [anon_sym_PERCENT] = ACTIONS(1954), - [anon_sym_SLASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1956), - [anon_sym_GT_GT_GT] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [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(1956), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1956), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_QMARK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1954), - [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_enum] = 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(1954), - [aux_sym_float_token1] = ACTIONS(1956), - [aux_sym_float_token2] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym_string_token1] = ACTIONS(1954), - [aux_sym_string_token3] = ACTIONS(1954), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_package] = ACTIONS(1960), - [anon_sym_DOT] = ACTIONS(1960), - [anon_sym_import] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_using] = ACTIONS(1960), - [anon_sym_throw] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_RPAREN] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_COLON] = ACTIONS(1958), - [anon_sym_cast] = ACTIONS(1960), - [anon_sym_COMMA] = ACTIONS(1958), - [anon_sym_DOLLARtype] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_untyped] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_RBRACK] = ACTIONS(1958), - [anon_sym_this] = ACTIONS(1960), - [anon_sym_QMARK] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1960), - [anon_sym_AT_COLON] = ACTIONS(1958), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_catch] = ACTIONS(1960), - [anon_sym_else] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_LT_LT] = ACTIONS(1958), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_GT_GT_GT] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [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(1960), - [anon_sym_LT_EQ] = ACTIONS(1958), - [anon_sym_GT] = ACTIONS(1960), - [anon_sym_GT_EQ] = ACTIONS(1958), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_QMARK] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1958), - [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_enum] = 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(1958), - [aux_sym_float_token1] = ACTIONS(1960), - [aux_sym_float_token2] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [aux_sym_string_token1] = ACTIONS(1958), - [aux_sym_string_token3] = ACTIONS(1958), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_package] = ACTIONS(1444), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(1444), - [anon_sym_throw] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_COLON] = ACTIONS(1446), - [anon_sym_cast] = ACTIONS(1444), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_DOLLARtype] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_untyped] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_RBRACK] = ACTIONS(1446), - [anon_sym_this] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1444), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_AT_COLON] = ACTIONS(1446), - [anon_sym_try] = ACTIONS(1444), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_else] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PERCENT] = ACTIONS(1446), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_LT_LT] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1444), - [anon_sym_GT_GT_GT] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_EQ_EQ] = ACTIONS(1446), - [anon_sym_BANG_EQ] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_EQ] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_GT_EQ] = ACTIONS(1446), - [anon_sym_EQ_GT] = ACTIONS(1446), - [anon_sym_QMARK_QMARK] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_macro] = ACTIONS(1444), - [anon_sym_abstract] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_public] = ACTIONS(1444), - [anon_sym_private] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym_overload] = ACTIONS(1444), - [anon_sym_override] = ACTIONS(1444), - [anon_sym_final] = ACTIONS(1444), - [anon_sym_class] = ACTIONS(1444), - [anon_sym_interface] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [aux_sym_integer_token1] = ACTIONS(1444), - [aux_sym_integer_token2] = ACTIONS(1446), - [aux_sym_float_token1] = ACTIONS(1444), - [aux_sym_float_token2] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [aux_sym_string_token1] = ACTIONS(1446), - [aux_sym_string_token3] = ACTIONS(1446), + [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_unmarker] = ACTIONS(3), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_package] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_using] = ACTIONS(1964), - [anon_sym_throw] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_switch] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1962), - [anon_sym_cast] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1962), - [anon_sym_DOLLARtype] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_untyped] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_RBRACK] = ACTIONS(1962), - [anon_sym_this] = ACTIONS(1964), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1964), - [anon_sym_AT_COLON] = ACTIONS(1962), - [anon_sym_try] = ACTIONS(1964), - [anon_sym_catch] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_do] = ACTIONS(1964), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1962), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_GT_GT_GT] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [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(1964), - [anon_sym_LT_EQ] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1964), - [anon_sym_GT_EQ] = ACTIONS(1962), - [anon_sym_EQ_GT] = ACTIONS(1962), - [anon_sym_QMARK_QMARK] = ACTIONS(1962), - [anon_sym_EQ] = ACTIONS(1964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), - [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_enum] = 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(1962), - [aux_sym_float_token1] = ACTIONS(1964), - [aux_sym_float_token2] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [aux_sym_string_token1] = ACTIONS(1962), - [aux_sym_string_token3] = ACTIONS(1962), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_package] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_using] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_COLON] = ACTIONS(1966), - [anon_sym_cast] = ACTIONS(1968), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_DOLLARtype] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_untyped] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_RBRACK] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [anon_sym_QMARK] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1968), - [anon_sym_AT_COLON] = ACTIONS(1966), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_catch] = ACTIONS(1968), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_PERCENT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_GT_GT_GT] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [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(1968), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1966), - [anon_sym_QMARK_QMARK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1966), - [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_enum] = 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(1966), - [aux_sym_float_token1] = ACTIONS(1968), - [aux_sym_float_token2] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [aux_sym_string_token1] = ACTIONS(1966), - [aux_sym_string_token3] = ACTIONS(1966), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_throw] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_cast] = ACTIONS(1972), - [anon_sym_COMMA] = ACTIONS(1970), - [anon_sym_DOLLARtype] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_untyped] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_RBRACK] = ACTIONS(1970), - [anon_sym_this] = ACTIONS(1972), - [anon_sym_QMARK] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_AT_COLON] = ACTIONS(1970), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_GT_GT_GT] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [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(1972), - [anon_sym_LT_EQ] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_GT_EQ] = ACTIONS(1970), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), - [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_enum] = 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(1970), - [aux_sym_float_token1] = ACTIONS(1972), - [aux_sym_float_token2] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [aux_sym_string_token1] = ACTIONS(1970), - [aux_sym_string_token3] = ACTIONS(1970), + [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_unmarker] = ACTIONS(3), }, [239] = { - [sym__rhs_expression] = STATE(1133), - [sym__unaryExpression] = STATE(3620), - [sym_runtime_type_check_expression] = STATE(3620), - [sym_switch_expression] = STATE(3620), - [sym_cast_expression] = STATE(3620), - [sym_type_trace_expression] = STATE(3620), - [sym__parenthesized_expression] = STATE(2577), - [sym_range_expression] = STATE(3620), - [sym_subscript_expression] = STATE(3620), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1133), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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__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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_untyped] = ACTIONS(1978), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), + [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), @@ -39061,71 +39170,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [240] = { - [sym__rhs_expression] = STATE(127), - [sym__unaryExpression] = STATE(352), - [sym_runtime_type_check_expression] = STATE(352), - [sym_switch_expression] = STATE(352), - [sym_cast_expression] = STATE(352), - [sym_type_trace_expression] = STATE(352), - [sym__parenthesized_expression] = STATE(318), - [sym_range_expression] = STATE(352), - [sym_subscript_expression] = STATE(352), - [sym_member_expression] = STATE(344), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(127), - [sym_operator] = STATE(1863), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(578), - [sym_integer] = STATE(324), - [sym_float] = STATE(578), - [sym_bool] = STATE(578), - [sym_string] = STATE(393), - [sym_null] = STATE(578), - [sym_array] = STATE(578), - [sym_map] = STATE(578), - [sym_object] = STATE(578), - [sym_pair] = STATE(578), - [sym_identifier] = ACTIONS(1982), + [241] = { + [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(1984), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_cast] = ACTIONS(1986), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_untyped] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_new] = ACTIONS(1364), + [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), @@ -39151,161 +39260,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), + [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), }, - [241] = { - [sym_identifier] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1864), - [anon_sym_package] = ACTIONS(1866), - [anon_sym_DOT] = ACTIONS(1866), - [anon_sym_import] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_using] = ACTIONS(1866), - [anon_sym_throw] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_cast] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1864), - [anon_sym_DOLLARtype] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_untyped] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_this] = ACTIONS(1866), - [anon_sym_QMARK] = ACTIONS(1866), - [anon_sym_AT] = ACTIONS(1866), - [anon_sym_AT_COLON] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1866), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_new] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PERCENT] = ACTIONS(1864), - [anon_sym_SLASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_LT_LT] = ACTIONS(1864), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_GT_GT_GT] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1864), - [anon_sym_EQ_EQ] = ACTIONS(1864), - [anon_sym_BANG_EQ] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_LT_EQ] = ACTIONS(1864), - [anon_sym_GT] = ACTIONS(1866), - [anon_sym_GT_EQ] = ACTIONS(1864), - [anon_sym_EQ_GT] = ACTIONS(1864), - [anon_sym_QMARK_QMARK] = ACTIONS(1864), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1864), - [anon_sym_null] = ACTIONS(1866), - [anon_sym_macro] = ACTIONS(1866), - [anon_sym_abstract] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_public] = ACTIONS(1866), - [anon_sym_private] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [anon_sym_overload] = ACTIONS(1866), - [anon_sym_override] = ACTIONS(1866), - [anon_sym_final] = ACTIONS(1866), - [anon_sym_class] = ACTIONS(1866), - [anon_sym_interface] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_function] = ACTIONS(1866), - [anon_sym_var] = ACTIONS(1866), - [aux_sym_integer_token1] = ACTIONS(1866), - [aux_sym_integer_token2] = ACTIONS(1864), - [aux_sym_float_token1] = ACTIONS(1866), - [aux_sym_float_token2] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [aux_sym_string_token1] = ACTIONS(1864), - [aux_sym_string_token3] = ACTIONS(1864), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1864), - [sym__closing_brace_marker] = ACTIONS(1864), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, [242] = { - [sym__rhs_expression] = STATE(146), - [sym__unaryExpression] = STATE(772), - [sym_runtime_type_check_expression] = STATE(772), - [sym_switch_expression] = STATE(772), - [sym_cast_expression] = STATE(772), - [sym_type_trace_expression] = STATE(772), - [sym__parenthesized_expression] = STATE(637), - [sym_range_expression] = STATE(772), - [sym_subscript_expression] = STATE(772), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(146), - [sym_operator] = STATE(1852), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(572), - [sym_integer] = STATE(166), - [sym_float] = STATE(572), - [sym_bool] = STATE(572), - [sym_string] = STATE(398), - [sym_null] = STATE(572), - [sym_array] = STATE(572), - [sym_map] = STATE(572), - [sym_object] = STATE(572), - [sym_pair] = STATE(572), - [sym_identifier] = ACTIONS(1992), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1994), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_untyped] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1454), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -39331,158 +39350,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(1972), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_throw] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_case] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_cast] = ACTIONS(1972), - [anon_sym_COMMA] = ACTIONS(1970), - [anon_sym_DOLLARtype] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_untyped] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_this] = ACTIONS(1972), - [anon_sym_QMARK] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_AT_COLON] = ACTIONS(1970), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_GT_GT_GT] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [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(1972), - [anon_sym_LT_EQ] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_GT_EQ] = ACTIONS(1970), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), - [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_enum] = 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(1970), - [aux_sym_float_token1] = ACTIONS(1972), - [aux_sym_float_token2] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [aux_sym_string_token1] = ACTIONS(1970), - [aux_sym_string_token3] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1970), - [sym__closing_brace_marker] = ACTIONS(1970), + [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__rhs_expression] = STATE(1157), - [sym__unaryExpression] = STATE(3369), - [sym_runtime_type_check_expression] = STATE(3369), - [sym_switch_expression] = STATE(3369), - [sym_cast_expression] = STATE(3369), - [sym_type_trace_expression] = STATE(3369), - [sym__parenthesized_expression] = STATE(2752), - [sym_range_expression] = STATE(3369), - [sym_subscript_expression] = STATE(3369), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1157), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_untyped] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), + [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), @@ -39511,71 +39530,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1088), - [sym__unaryExpression] = STATE(772), - [sym_runtime_type_check_expression] = STATE(772), - [sym_switch_expression] = STATE(772), - [sym_cast_expression] = STATE(772), - [sym_type_trace_expression] = STATE(772), - [sym__parenthesized_expression] = STATE(637), - [sym_range_expression] = STATE(772), - [sym_subscript_expression] = STATE(772), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1088), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_untyped] = ACTIONS(2010), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -39601,71 +39620,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1082), - [sym__unaryExpression] = STATE(3271), - [sym_runtime_type_check_expression] = STATE(3271), - [sym_switch_expression] = STATE(3271), - [sym_cast_expression] = STATE(3271), - [sym_type_trace_expression] = STATE(3271), - [sym__parenthesized_expression] = STATE(2478), - [sym_range_expression] = STATE(3271), - [sym_subscript_expression] = STATE(3271), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1082), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = 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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_untyped] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -39691,68 +39710,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1224), - [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(2590), - [sym_range_expression] = STATE(3622), - [sym_subscript_expression] = STATE(3622), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1224), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_untyped] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2022), - [anon_sym_continue] = ACTIONS(2022), + [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), @@ -39781,158 +39800,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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(1900), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_package] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_using] = ACTIONS(1900), - [anon_sym_throw] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_switch] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_cast] = ACTIONS(1900), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_DOLLARtype] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_untyped] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_this] = ACTIONS(1900), - [anon_sym_QMARK] = ACTIONS(1900), - [anon_sym_AT] = ACTIONS(1900), - [anon_sym_AT_COLON] = ACTIONS(1898), - [anon_sym_try] = ACTIONS(1900), - [anon_sym_catch] = ACTIONS(1900), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1898), - [anon_sym_DASH_DASH] = ACTIONS(1898), - [anon_sym_PERCENT] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_LT_LT] = ACTIONS(1898), - [anon_sym_GT_GT] = ACTIONS(1900), - [anon_sym_GT_GT_GT] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [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(1900), - [anon_sym_LT_EQ] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1898), - [anon_sym_EQ_GT] = ACTIONS(1898), - [anon_sym_QMARK_QMARK] = ACTIONS(1898), - [anon_sym_EQ] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1898), - [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_enum] = 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(1898), - [aux_sym_float_token1] = ACTIONS(1900), - [aux_sym_float_token2] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [aux_sym_string_token1] = ACTIONS(1898), - [aux_sym_string_token3] = ACTIONS(1898), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1898), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [249] = { - [sym__rhs_expression] = STATE(1257), - [sym__unaryExpression] = STATE(3351), - [sym_runtime_type_check_expression] = STATE(3351), - [sym_switch_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_type_trace_expression] = STATE(3351), - [sym__parenthesized_expression] = STATE(2632), - [sym_range_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3351), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1257), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_untyped] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), + [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), @@ -39961,71 +39890,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__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__rhs_expression] = STATE(1069), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1069), - [sym_operator] = STATE(1907), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1833), - [sym_integer] = STATE(166), - [sym_float] = STATE(1833), - [sym_bool] = STATE(1833), - [sym_string] = STATE(2002), - [sym_null] = STATE(1833), - [sym_array] = STATE(1833), - [sym_map] = STATE(1833), - [sym_object] = STATE(1833), - [sym_pair] = STATE(1833), - [sym_identifier] = ACTIONS(2030), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(2032), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_untyped] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(2038), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -40051,71 +40070,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1048), - [sym__unaryExpression] = STATE(1967), - [sym_runtime_type_check_expression] = STATE(1967), - [sym_switch_expression] = STATE(1967), - [sym_cast_expression] = STATE(1967), - [sym_type_trace_expression] = STATE(1967), - [sym__parenthesized_expression] = STATE(1565), - [sym_range_expression] = STATE(1967), - [sym_subscript_expression] = STATE(1967), - [sym_member_expression] = STATE(1520), - [sym__lhs_expression] = STATE(2788), - [sym__call] = STATE(1919), - [sym__constructor_call] = STATE(1920), - [sym_call_expression] = STATE(1048), - [sym_operator] = STATE(1784), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1777), - [sym_integer] = STATE(1685), - [sym_float] = STATE(1777), - [sym_bool] = STATE(1777), - [sym_string] = STATE(1600), - [sym_null] = STATE(1777), - [sym_array] = STATE(1777), - [sym_map] = STATE(1777), - [sym_object] = STATE(1777), - [sym_pair] = STATE(1777), - [sym_identifier] = ACTIONS(2040), + [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(2042), - [anon_sym_switch] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_cast] = ACTIONS(2048), - [anon_sym_DOLLARtype] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_untyped] = ACTIONS(2054), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2062), + [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), @@ -40141,71 +40160,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(2064), - [aux_sym_integer_token1] = ACTIONS(2066), - [aux_sym_integer_token2] = ACTIONS(2068), - [aux_sym_float_token1] = ACTIONS(2070), - [aux_sym_float_token2] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [aux_sym_string_token1] = ACTIONS(2076), - [aux_sym_string_token3] = ACTIONS(2078), + [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__rhs_expression] = STATE(1269), - [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(2659), - [sym_range_expression] = STATE(3442), - [sym_subscript_expression] = STATE(3442), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1269), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_untyped] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -40231,71 +40250,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(992), - [sym__unaryExpression] = STATE(575), - [sym_runtime_type_check_expression] = STATE(575), - [sym_switch_expression] = STATE(575), - [sym_cast_expression] = STATE(575), - [sym_type_trace_expression] = STATE(575), - [sym__parenthesized_expression] = STATE(397), - [sym_range_expression] = STATE(575), - [sym_subscript_expression] = STATE(575), - [sym_member_expression] = STATE(344), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(992), - [sym_operator] = STATE(1780), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1376), - [sym_integer] = STATE(324), - [sym_float] = STATE(1376), - [sym_bool] = STATE(1376), - [sym_string] = STATE(1369), - [sym_null] = STATE(1376), - [sym_array] = STATE(1376), - [sym_map] = STATE(1376), - [sym_object] = STATE(1376), - [sym_pair] = STATE(1376), - [sym_identifier] = ACTIONS(2086), + [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(1984), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_cast] = ACTIONS(2088), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_untyped] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_new] = ACTIONS(1364), + [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), @@ -40321,68 +40340,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), + [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__rhs_expression] = STATE(1273), - [sym__unaryExpression] = STATE(3564), - [sym_runtime_type_check_expression] = STATE(3564), - [sym_switch_expression] = STATE(3564), - [sym_cast_expression] = STATE(3564), - [sym_type_trace_expression] = STATE(3564), - [sym__parenthesized_expression] = STATE(2676), - [sym_range_expression] = STATE(3564), - [sym_subscript_expression] = STATE(3564), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1273), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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__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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_untyped] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), + [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), @@ -40411,161 +40520,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [255] = { - [sym_identifier] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_package] = ACTIONS(1932), - [anon_sym_DOT] = ACTIONS(1932), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_using] = ACTIONS(1932), - [anon_sym_throw] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_case] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_cast] = ACTIONS(1932), - [anon_sym_COMMA] = ACTIONS(1930), - [anon_sym_DOLLARtype] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_untyped] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_this] = ACTIONS(1932), - [anon_sym_QMARK] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1932), - [anon_sym_AT_COLON] = ACTIONS(1930), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_catch] = ACTIONS(1932), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_do] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1932), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1932), - [anon_sym_GT_GT_GT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [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(1932), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_QMARK_QMARK] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), - [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_enum] = 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(1930), - [aux_sym_float_token1] = ACTIONS(1932), - [aux_sym_float_token2] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [aux_sym_string_token1] = ACTIONS(1930), - [aux_sym_string_token3] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1930), - [sym__closing_brace_marker] = ACTIONS(1930), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, [256] = { - [sym__rhs_expression] = STATE(1074), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1074), - [sym_operator] = STATE(1754), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1833), - [sym_integer] = STATE(166), - [sym_float] = STATE(1833), - [sym_bool] = STATE(1833), - [sym_string] = STATE(2002), - [sym_null] = STATE(1833), - [sym_array] = STATE(1833), - [sym_map] = STATE(1833), - [sym_object] = STATE(1833), - [sym_pair] = STATE(1833), - [sym_identifier] = ACTIONS(2030), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(2102), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_untyped] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(2038), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -40591,71 +40610,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1120), - [sym__unaryExpression] = STATE(3432), - [sym_runtime_type_check_expression] = STATE(3432), - [sym_switch_expression] = STATE(3432), - [sym_cast_expression] = STATE(3432), - [sym_type_trace_expression] = STATE(3432), - [sym__parenthesized_expression] = STATE(2554), - [sym_range_expression] = STATE(3432), - [sym_subscript_expression] = STATE(3432), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1120), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_untyped] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -40681,71 +40700,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1291), - [sym__unaryExpression] = STATE(3534), - [sym_runtime_type_check_expression] = STATE(3534), - [sym_switch_expression] = STATE(3534), - [sym_cast_expression] = STATE(3534), - [sym_type_trace_expression] = STATE(3534), - [sym__parenthesized_expression] = STATE(2789), - [sym_range_expression] = STATE(3534), - [sym_subscript_expression] = STATE(3534), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1291), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_untyped] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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_new] = ACTIONS(1369), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), [anon_sym_DASH] = ACTIONS(61), @@ -40771,71 +40790,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1294), - [sym__unaryExpression] = STATE(3602), - [sym_runtime_type_check_expression] = STATE(3602), - [sym_switch_expression] = STATE(3602), - [sym_cast_expression] = STATE(3602), - [sym_type_trace_expression] = STATE(3602), - [sym__parenthesized_expression] = STATE(2806), - [sym_range_expression] = STATE(3602), - [sym_subscript_expression] = STATE(3602), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1294), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [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__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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_untyped] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -40861,68 +40970,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [260] = { - [sym__rhs_expression] = STATE(1300), - [sym__unaryExpression] = STATE(3459), - [sym_runtime_type_check_expression] = STATE(3459), - [sym_switch_expression] = STATE(3459), - [sym_cast_expression] = STATE(3459), - [sym_type_trace_expression] = STATE(3459), - [sym__parenthesized_expression] = STATE(2614), - [sym_range_expression] = STATE(3459), - [sym_subscript_expression] = STATE(3459), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1300), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [261] = { + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_untyped] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), + [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), @@ -40951,68 +41060,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [261] = { - [sym__rhs_expression] = STATE(1119), - [sym__unaryExpression] = STATE(3519), - [sym_runtime_type_check_expression] = STATE(3519), - [sym_switch_expression] = STATE(3519), - [sym_cast_expression] = STATE(3519), - [sym_type_trace_expression] = STATE(3519), - [sym__parenthesized_expression] = STATE(2542), - [sym_range_expression] = STATE(3519), - [sym_subscript_expression] = STATE(3519), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1119), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [262] = { + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_untyped] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), + [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), @@ -41041,71 +41150,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1127), - [sym__unaryExpression] = STATE(3427), - [sym_runtime_type_check_expression] = STATE(3427), - [sym_switch_expression] = STATE(3427), - [sym_cast_expression] = STATE(3427), - [sym_type_trace_expression] = STATE(3427), - [sym__parenthesized_expression] = STATE(2567), - [sym_range_expression] = STATE(3427), - [sym_subscript_expression] = STATE(3427), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1127), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [263] = { + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_untyped] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -41131,71 +41240,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [263] = { - [sym__rhs_expression] = STATE(1128), - [sym__unaryExpression] = STATE(3487), - [sym_runtime_type_check_expression] = STATE(3487), - [sym_switch_expression] = STATE(3487), - [sym_cast_expression] = STATE(3487), - [sym_type_trace_expression] = STATE(3487), - [sym__parenthesized_expression] = STATE(2568), - [sym_range_expression] = STATE(3487), - [sym_subscript_expression] = STATE(3487), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1128), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [264] = { + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_untyped] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -41221,70 +41330,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1136), - [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(2679), - [sym_range_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3592), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1136), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [265] = { + [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(1974), - [anon_sym_cast] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(2197), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_untyped] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), + [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(41), + [anon_sym_this] = ACTIONS(2205), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -41311,161 +41420,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [265] = { - [sym_identifier] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_package] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1908), - [anon_sym_import] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_using] = ACTIONS(1908), - [anon_sym_throw] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_cast] = ACTIONS(1908), - [anon_sym_COMMA] = ACTIONS(1906), - [anon_sym_DOLLARtype] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_untyped] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_this] = ACTIONS(1908), - [anon_sym_QMARK] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1908), - [anon_sym_AT_COLON] = ACTIONS(1906), - [anon_sym_try] = ACTIONS(1908), - [anon_sym_catch] = ACTIONS(1908), - [anon_sym_else] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_do] = ACTIONS(1908), - [anon_sym_new] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_LT_LT] = ACTIONS(1906), - [anon_sym_GT_GT] = ACTIONS(1908), - [anon_sym_GT_GT_GT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [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(1908), - [anon_sym_LT_EQ] = ACTIONS(1906), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_GT_EQ] = ACTIONS(1906), - [anon_sym_EQ_GT] = ACTIONS(1906), - [anon_sym_QMARK_QMARK] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1906), - [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_enum] = 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(1906), - [aux_sym_float_token1] = ACTIONS(1908), - [aux_sym_float_token2] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [aux_sym_string_token1] = ACTIONS(1906), - [aux_sym_string_token3] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1906), - [sym__closing_brace_marker] = ACTIONS(1906), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, [266] = { - [sym__rhs_expression] = STATE(1141), - [sym__unaryExpression] = STATE(3481), - [sym_runtime_type_check_expression] = STATE(3481), - [sym_switch_expression] = STATE(3481), - [sym_cast_expression] = STATE(3481), - [sym_type_trace_expression] = STATE(3481), - [sym__parenthesized_expression] = STATE(2704), - [sym_range_expression] = STATE(3481), - [sym_subscript_expression] = STATE(3481), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1141), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_untyped] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -41491,68 +41510,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1134), - [sym__unaryExpression] = STATE(3404), - [sym_runtime_type_check_expression] = STATE(3404), - [sym_switch_expression] = STATE(3404), - [sym_cast_expression] = STATE(3404), - [sym_type_trace_expression] = STATE(3404), - [sym__parenthesized_expression] = STATE(2580), - [sym_range_expression] = STATE(3404), - [sym_subscript_expression] = STATE(3404), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1134), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_untyped] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), + [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), @@ -41581,71 +41600,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1146), - [sym__unaryExpression] = STATE(3616), - [sym_runtime_type_check_expression] = STATE(3616), - [sym_switch_expression] = STATE(3616), - [sym_cast_expression] = STATE(3616), - [sym_type_trace_expression] = STATE(3616), - [sym__parenthesized_expression] = STATE(2715), - [sym_range_expression] = STATE(3616), - [sym_subscript_expression] = STATE(3616), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1146), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_untyped] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -41671,68 +41690,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1152), - [sym__unaryExpression] = STATE(3366), - [sym_runtime_type_check_expression] = STATE(3366), - [sym_switch_expression] = STATE(3366), - [sym_cast_expression] = STATE(3366), - [sym_type_trace_expression] = STATE(3366), - [sym__parenthesized_expression] = STATE(2729), - [sym_range_expression] = STATE(3366), - [sym_subscript_expression] = STATE(3366), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1152), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_untyped] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), + [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), @@ -41761,68 +41780,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1147), - [sym__unaryExpression] = STATE(3368), - [sym_runtime_type_check_expression] = STATE(3368), - [sym_switch_expression] = STATE(3368), - [sym_cast_expression] = STATE(3368), - [sym_type_trace_expression] = STATE(3368), - [sym__parenthesized_expression] = STATE(2600), - [sym_range_expression] = STATE(3368), - [sym_subscript_expression] = STATE(3368), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1147), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_untyped] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), + [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), @@ -41851,68 +41870,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1159), - [sym__unaryExpression] = STATE(3497), - [sym_runtime_type_check_expression] = STATE(3497), - [sym_switch_expression] = STATE(3497), - [sym_cast_expression] = STATE(3497), - [sym_type_trace_expression] = STATE(3497), - [sym__parenthesized_expression] = STATE(2761), - [sym_range_expression] = STATE(3497), - [sym_subscript_expression] = STATE(3497), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1159), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2186), - [anon_sym_untyped] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), + [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), @@ -41941,68 +41960,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1161), - [sym__unaryExpression] = STATE(3535), - [sym_runtime_type_check_expression] = STATE(3535), - [sym_switch_expression] = STATE(3535), - [sym_cast_expression] = STATE(3535), - [sym_type_trace_expression] = STATE(3535), - [sym__parenthesized_expression] = STATE(2771), - [sym_range_expression] = STATE(3535), - [sym_subscript_expression] = STATE(3535), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1161), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_untyped] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), + [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), @@ -42031,68 +42050,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1165), - [sym__unaryExpression] = STATE(3595), - [sym_runtime_type_check_expression] = STATE(3595), - [sym_switch_expression] = STATE(3595), - [sym_cast_expression] = STATE(3595), - [sym_type_trace_expression] = STATE(3595), - [sym__parenthesized_expression] = STATE(2791), - [sym_range_expression] = STATE(3595), - [sym_subscript_expression] = STATE(3595), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1165), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_untyped] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2202), - [anon_sym_continue] = ACTIONS(2202), + [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), @@ -42121,71 +42140,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1168), - [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(2807), - [sym_range_expression] = STATE(3639), - [sym_subscript_expression] = STATE(3639), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1168), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_untyped] = ACTIONS(2206), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -42211,68 +42230,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1169), - [sym__unaryExpression] = STATE(3680), - [sym_runtime_type_check_expression] = STATE(3680), - [sym_switch_expression] = STATE(3680), - [sym_cast_expression] = STATE(3680), - [sym_type_trace_expression] = STATE(3680), - [sym__parenthesized_expression] = STATE(2822), - [sym_range_expression] = STATE(3680), - [sym_subscript_expression] = STATE(3680), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1169), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_untyped] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), + [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), @@ -42301,68 +42320,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1215), - [sym__unaryExpression] = STATE(3421), - [sym_runtime_type_check_expression] = STATE(3421), - [sym_switch_expression] = STATE(3421), - [sym_cast_expression] = STATE(3421), - [sym_type_trace_expression] = STATE(3421), - [sym__parenthesized_expression] = STATE(2665), - [sym_range_expression] = STATE(3421), - [sym_subscript_expression] = STATE(3421), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1215), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_untyped] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), + [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), @@ -42391,68 +42410,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1219), - [sym__unaryExpression] = STATE(3629), - [sym_runtime_type_check_expression] = STATE(3629), - [sym_switch_expression] = STATE(3629), - [sym_cast_expression] = STATE(3629), - [sym_type_trace_expression] = STATE(3629), - [sym__parenthesized_expression] = STATE(2701), - [sym_range_expression] = STATE(3629), - [sym_subscript_expression] = STATE(3629), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1219), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_untyped] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), + [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), @@ -42481,68 +42500,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1173), - [sym__unaryExpression] = STATE(3568), - [sym_runtime_type_check_expression] = STATE(3568), - [sym_switch_expression] = STATE(3568), - [sym_cast_expression] = STATE(3568), - [sym_type_trace_expression] = STATE(3568), - [sym__parenthesized_expression] = STATE(2708), - [sym_range_expression] = STATE(3568), - [sym_subscript_expression] = STATE(3568), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1173), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_untyped] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), + [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), @@ -42571,68 +42590,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, [279] = { - [sym__rhs_expression] = STATE(1174), - [sym__unaryExpression] = STATE(3590), - [sym_runtime_type_check_expression] = STATE(3590), - [sym_switch_expression] = STATE(3590), - [sym_cast_expression] = STATE(3590), - [sym_type_trace_expression] = STATE(3590), - [sym__parenthesized_expression] = STATE(2540), - [sym_range_expression] = STATE(3590), - [sym_subscript_expression] = STATE(3590), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1174), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_untyped] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), + [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), @@ -42661,68 +42680,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1175), - [sym__unaryExpression] = STATE(3329), - [sym_runtime_type_check_expression] = STATE(3329), - [sym_switch_expression] = STATE(3329), - [sym_cast_expression] = STATE(3329), - [sym_type_trace_expression] = STATE(3329), - [sym__parenthesized_expression] = STATE(2561), - [sym_range_expression] = STATE(3329), - [sym_subscript_expression] = STATE(3329), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1175), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_untyped] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), + [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), @@ -42751,68 +42770,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1179), - [sym__unaryExpression] = STATE(3573), - [sym_runtime_type_check_expression] = STATE(3573), - [sym_switch_expression] = STATE(3573), - [sym_cast_expression] = STATE(3573), - [sym_type_trace_expression] = STATE(3573), - [sym__parenthesized_expression] = STATE(2573), - [sym_range_expression] = STATE(3573), - [sym_subscript_expression] = STATE(3573), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1179), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_untyped] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), + [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), @@ -42841,68 +42860,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1184), - [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(2623), - [sym_range_expression] = STATE(3509), - [sym_subscript_expression] = STATE(3509), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1184), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_untyped] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), + [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), @@ -42931,68 +42950,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1185), - [sym__unaryExpression] = STATE(3348), - [sym_runtime_type_check_expression] = STATE(3348), - [sym_switch_expression] = STATE(3348), - [sym_cast_expression] = STATE(3348), - [sym_type_trace_expression] = STATE(3348), - [sym__parenthesized_expression] = STATE(2631), - [sym_range_expression] = STATE(3348), - [sym_subscript_expression] = STATE(3348), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1185), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_untyped] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), + [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), @@ -43021,68 +43040,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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] = { - [sym__rhs_expression] = STATE(1187), - [sym__unaryExpression] = STATE(3414), - [sym_runtime_type_check_expression] = STATE(3414), - [sym_switch_expression] = STATE(3414), - [sym_cast_expression] = STATE(3414), - [sym_type_trace_expression] = STATE(3414), - [sym__parenthesized_expression] = STATE(2664), - [sym_range_expression] = STATE(3414), - [sym_subscript_expression] = STATE(3414), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1187), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_untyped] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), + [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), @@ -43111,68 +43130,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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] = { - [sym__rhs_expression] = STATE(1188), - [sym__unaryExpression] = STATE(3529), - [sym_runtime_type_check_expression] = STATE(3529), - [sym_switch_expression] = STATE(3529), - [sym_cast_expression] = STATE(3529), - [sym_type_trace_expression] = STATE(3529), - [sym__parenthesized_expression] = STATE(2678), - [sym_range_expression] = STATE(3529), - [sym_subscript_expression] = STATE(3529), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1188), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_untyped] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), + [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), @@ -43201,68 +43220,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1189), - [sym__unaryExpression] = STATE(3530), - [sym_runtime_type_check_expression] = STATE(3530), - [sym_switch_expression] = STATE(3530), - [sym_cast_expression] = STATE(3530), - [sym_type_trace_expression] = STATE(3530), - [sym__parenthesized_expression] = STATE(2693), - [sym_range_expression] = STATE(3530), - [sym_subscript_expression] = STATE(3530), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1189), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_untyped] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), + [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), @@ -43291,68 +43310,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1194), - [sym__unaryExpression] = STATE(3466), - [sym_runtime_type_check_expression] = STATE(3466), - [sym_switch_expression] = STATE(3466), - [sym_cast_expression] = STATE(3466), - [sym_type_trace_expression] = STATE(3466), - [sym__parenthesized_expression] = STATE(2755), - [sym_range_expression] = STATE(3466), - [sym_subscript_expression] = STATE(3466), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1194), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_untyped] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), + [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), @@ -43381,68 +43400,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1197), - [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(2813), - [sym_range_expression] = STATE(3565), - [sym_subscript_expression] = STATE(3565), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1197), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_untyped] = ACTIONS(2290), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), + [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), @@ -43471,68 +43490,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1198), - [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(2828), - [sym_range_expression] = STATE(3682), - [sym_subscript_expression] = STATE(3682), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1198), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_untyped] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), + [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), @@ -43561,68 +43580,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1200), - [sym__unaryExpression] = STATE(3666), - [sym_runtime_type_check_expression] = STATE(3666), - [sym_switch_expression] = STATE(3666), - [sym_cast_expression] = STATE(3666), - [sym_type_trace_expression] = STATE(3666), - [sym__parenthesized_expression] = STATE(2532), - [sym_range_expression] = STATE(3666), - [sym_subscript_expression] = STATE(3666), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1200), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_untyped] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), + [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), @@ -43651,158 +43670,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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] = { - [sym__rhs_expression] = STATE(1308), - [sym__unaryExpression] = STATE(1967), - [sym_runtime_type_check_expression] = STATE(1967), - [sym_switch_expression] = STATE(1967), - [sym_cast_expression] = STATE(1967), - [sym_type_trace_expression] = STATE(1967), - [sym__parenthesized_expression] = STATE(1565), - [sym_range_expression] = STATE(1967), - [sym_subscript_expression] = STATE(1967), - [sym_member_expression] = STATE(1520), - [sym__lhs_expression] = STATE(2788), - [sym__call] = STATE(1919), - [sym__constructor_call] = STATE(1920), - [sym_call_expression] = STATE(1308), - [sym_operator] = STATE(1921), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1872), - [sym_integer] = STATE(1685), - [sym_float] = STATE(1872), - [sym_bool] = STATE(1872), - [sym_string] = STATE(1600), - [sym_null] = STATE(1872), - [sym_array] = STATE(1872), - [sym_map] = STATE(1872), - [sym_object] = STATE(1872), - [sym_pair] = STATE(1872), - [sym_identifier] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_cast] = ACTIONS(2310), - [anon_sym_DOLLARtype] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_untyped] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_this] = ACTIONS(2316), - [anon_sym_new] = ACTIONS(2062), - [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(57), - [anon_sym_null] = ACTIONS(2064), - [aux_sym_integer_token1] = ACTIONS(2066), - [aux_sym_integer_token2] = ACTIONS(2068), - [aux_sym_float_token1] = ACTIONS(2070), - [aux_sym_float_token2] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [aux_sym_string_token1] = ACTIONS(2076), - [aux_sym_string_token3] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [292] = { - [sym__rhs_expression] = STATE(1205), - [sym__unaryExpression] = STATE(3413), - [sym_runtime_type_check_expression] = STATE(3413), - [sym_switch_expression] = STATE(3413), - [sym_cast_expression] = STATE(3413), - [sym_type_trace_expression] = STATE(3413), - [sym__parenthesized_expression] = STATE(2545), - [sym_range_expression] = STATE(3413), - [sym_subscript_expression] = STATE(3413), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1205), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_untyped] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2322), - [anon_sym_continue] = ACTIONS(2322), + [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), @@ -43831,68 +43760,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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] = { - [sym__rhs_expression] = STATE(1208), - [sym__unaryExpression] = STATE(3571), - [sym_runtime_type_check_expression] = STATE(3571), - [sym_switch_expression] = STATE(3571), - [sym_cast_expression] = STATE(3571), - [sym_type_trace_expression] = STATE(3571), - [sym__parenthesized_expression] = STATE(2829), - [sym_range_expression] = STATE(3571), - [sym_subscript_expression] = STATE(3571), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1208), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [292] = { + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_untyped] = ACTIONS(2326), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), + [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), @@ -43921,68 +43850,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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] = { - [sym__rhs_expression] = STATE(1209), - [sym__unaryExpression] = STATE(3688), - [sym_runtime_type_check_expression] = STATE(3688), - [sym_switch_expression] = STATE(3688), - [sym_cast_expression] = STATE(3688), - [sym_type_trace_expression] = STATE(3688), - [sym__parenthesized_expression] = STATE(2552), - [sym_range_expression] = STATE(3688), - [sym_subscript_expression] = STATE(3688), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1209), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [293] = { + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2330), - [anon_sym_untyped] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2334), - [anon_sym_continue] = ACTIONS(2334), + [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), @@ -44011,68 +43940,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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] = { - [sym__rhs_expression] = STATE(1213), - [sym__unaryExpression] = STATE(3636), - [sym_runtime_type_check_expression] = STATE(3636), - [sym_switch_expression] = STATE(3636), - [sym_cast_expression] = STATE(3636), - [sym_type_trace_expression] = STATE(3636), - [sym__parenthesized_expression] = STATE(2557), - [sym_range_expression] = STATE(3636), - [sym_subscript_expression] = STATE(3636), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1213), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [294] = { + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_untyped] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), + [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), @@ -44101,71 +44030,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [296] = { + [295] = { [sym__rhs_expression] = STATE(983), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), + [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(1927), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1387), - [sym_integer] = STATE(166), - [sym_float] = STATE(1387), - [sym_bool] = STATE(1387), - [sym_string] = STATE(1375), - [sym_null] = STATE(1387), - [sym_array] = STATE(1387), - [sym_map] = STATE(1387), - [sym_object] = STATE(1387), - [sym_pair] = STATE(1387), - [sym_identifier] = ACTIONS(2342), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(2344), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2346), - [anon_sym_untyped] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -44191,71 +44120,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [297] = { - [sym__rhs_expression] = STATE(1220), - [sym__unaryExpression] = STATE(3653), - [sym_runtime_type_check_expression] = STATE(3653), - [sym_switch_expression] = STATE(3653), - [sym_cast_expression] = STATE(3653), - [sym_type_trace_expression] = STATE(3653), - [sym__parenthesized_expression] = STATE(2726), - [sym_range_expression] = STATE(3653), - [sym_subscript_expression] = STATE(3653), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1220), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [296] = { + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_untyped] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -44281,71 +44210,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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] = { - [sym__rhs_expression] = STATE(1222), - [sym__unaryExpression] = STATE(3475), - [sym_runtime_type_check_expression] = STATE(3475), - [sym_switch_expression] = STATE(3475), - [sym_cast_expression] = STATE(3475), - [sym_type_trace_expression] = STATE(3475), - [sym__parenthesized_expression] = STATE(2765), - [sym_range_expression] = STATE(3475), - [sym_subscript_expression] = STATE(3475), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1222), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [297] = { + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2358), - [anon_sym_untyped] = ACTIONS(2360), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -44371,71 +44300,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [299] = { - [sym__rhs_expression] = STATE(980), - [sym__unaryExpression] = STATE(352), - [sym_runtime_type_check_expression] = STATE(352), - [sym_switch_expression] = STATE(352), - [sym_cast_expression] = STATE(352), - [sym_type_trace_expression] = STATE(352), - [sym__parenthesized_expression] = STATE(318), - [sym_range_expression] = STATE(352), - [sym_subscript_expression] = STATE(352), - [sym_member_expression] = STATE(344), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(980), - [sym_operator] = STATE(2021), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1385), - [sym_integer] = STATE(324), - [sym_float] = STATE(1385), - [sym_bool] = STATE(1385), - [sym_string] = STATE(1369), - [sym_null] = STATE(1385), - [sym_array] = STATE(1385), - [sym_map] = STATE(1385), - [sym_object] = STATE(1385), - [sym_pair] = STATE(1385), - [sym_identifier] = ACTIONS(2364), + [298] = { + [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(1984), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_cast] = ACTIONS(2366), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_untyped] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_new] = ACTIONS(1364), + [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), @@ -44461,71 +44390,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), + [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), }, - [300] = { - [sym__rhs_expression] = STATE(1223), - [sym__unaryExpression] = STATE(3539), - [sym_runtime_type_check_expression] = STATE(3539), - [sym_switch_expression] = STATE(3539), - [sym_cast_expression] = STATE(3539), - [sym_type_trace_expression] = STATE(3539), - [sym__parenthesized_expression] = STATE(2777), - [sym_range_expression] = STATE(3539), - [sym_subscript_expression] = STATE(3539), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1223), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [299] = { + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_untyped] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -44551,71 +44480,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [301] = { - [sym__rhs_expression] = STATE(1067), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1067), - [sym_operator] = STATE(2035), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [300] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(2378), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_untyped] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -44641,71 +44570,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [302] = { - [sym__rhs_expression] = STATE(1022), - [sym__unaryExpression] = STATE(1967), - [sym_runtime_type_check_expression] = STATE(1967), - [sym_switch_expression] = STATE(1967), - [sym_cast_expression] = STATE(1967), - [sym_type_trace_expression] = STATE(1967), - [sym__parenthesized_expression] = STATE(1565), - [sym_range_expression] = STATE(1967), - [sym_subscript_expression] = STATE(1967), - [sym_member_expression] = STATE(1520), - [sym__lhs_expression] = STATE(2788), - [sym__call] = STATE(1919), - [sym__constructor_call] = STATE(1920), - [sym_call_expression] = STATE(1022), - [sym_operator] = STATE(1874), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1777), - [sym_integer] = STATE(1685), - [sym_float] = STATE(1777), - [sym_bool] = STATE(1777), - [sym_string] = STATE(1600), - [sym_null] = STATE(1777), - [sym_array] = STATE(1777), - [sym_map] = STATE(1777), - [sym_object] = STATE(1777), - [sym_pair] = STATE(1777), - [sym_identifier] = ACTIONS(2040), + [301] = { + [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(2042), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_cast] = ACTIONS(2384), - [anon_sym_DOLLARtype] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_untyped] = ACTIONS(2388), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_this] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2062), + [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), @@ -44731,71 +44660,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(2064), - [aux_sym_integer_token1] = ACTIONS(2066), - [aux_sym_integer_token2] = ACTIONS(2068), - [aux_sym_float_token1] = ACTIONS(2070), - [aux_sym_float_token2] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [aux_sym_string_token1] = ACTIONS(2076), - [aux_sym_string_token3] = ACTIONS(2078), + [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), }, + [302] = { + [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] = { - [sym__rhs_expression] = STATE(977), - [sym__unaryExpression] = STATE(352), - [sym_runtime_type_check_expression] = STATE(352), - [sym_switch_expression] = STATE(352), - [sym_cast_expression] = STATE(352), - [sym_type_trace_expression] = STATE(352), - [sym__parenthesized_expression] = STATE(318), - [sym_range_expression] = STATE(352), - [sym_subscript_expression] = STATE(352), - [sym_member_expression] = STATE(344), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(977), - [sym_operator] = STATE(1916), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1385), - [sym_integer] = STATE(324), - [sym_float] = STATE(1385), - [sym_bool] = STATE(1385), - [sym_string] = STATE(1369), - [sym_null] = STATE(1385), - [sym_array] = STATE(1385), - [sym_map] = STATE(1385), - [sym_object] = STATE(1385), - [sym_pair] = STATE(1385), - [sym_identifier] = ACTIONS(2364), + [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] = { + [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__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(1984), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_cast] = ACTIONS(2390), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_untyped] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_new] = ACTIONS(1364), + [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), @@ -44821,71 +45020,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), + [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), }, - [304] = { - [sym__rhs_expression] = STATE(1234), - [sym__unaryExpression] = STATE(3633), - [sym_runtime_type_check_expression] = STATE(3633), - [sym_switch_expression] = STATE(3633), - [sym_cast_expression] = STATE(3633), - [sym_type_trace_expression] = STATE(3633), - [sym__parenthesized_expression] = STATE(2541), - [sym_range_expression] = STATE(3633), - [sym_subscript_expression] = STATE(3633), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1234), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [306] = { + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_untyped] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -44911,71 +45110,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [305] = { - [sym__rhs_expression] = STATE(1239), - [sym__unaryExpression] = STATE(3647), - [sym_runtime_type_check_expression] = STATE(3647), - [sym_switch_expression] = STATE(3647), - [sym_cast_expression] = STATE(3647), - [sym_type_trace_expression] = STATE(3647), - [sym__parenthesized_expression] = STATE(2553), - [sym_range_expression] = STATE(3647), - [sym_subscript_expression] = STATE(3647), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1239), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [307] = { + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_untyped] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -45001,71 +45200,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1240), - [sym__unaryExpression] = STATE(3376), - [sym_runtime_type_check_expression] = STATE(3376), - [sym_switch_expression] = STATE(3376), - [sym_cast_expression] = STATE(3376), - [sym_type_trace_expression] = STATE(3376), - [sym__parenthesized_expression] = STATE(2558), - [sym_range_expression] = STATE(3376), - [sym_subscript_expression] = STATE(3376), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1240), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [308] = { + [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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_untyped] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -45091,68 +45290,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [307] = { - [sym__rhs_expression] = STATE(1252), - [sym__unaryExpression] = STATE(3640), - [sym_runtime_type_check_expression] = STATE(3640), - [sym_switch_expression] = STATE(3640), - [sym_cast_expression] = STATE(3640), - [sym_type_trace_expression] = STATE(3640), - [sym__parenthesized_expression] = STATE(2594), - [sym_range_expression] = STATE(3640), - [sym_subscript_expression] = STATE(3640), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1252), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [309] = { + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_untyped] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), + [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), @@ -45181,71 +45380,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [308] = { - [sym__rhs_expression] = STATE(1228), - [sym__unaryExpression] = STATE(3572), - [sym_runtime_type_check_expression] = STATE(3572), - [sym_switch_expression] = STATE(3572), - [sym_cast_expression] = STATE(3572), - [sym_type_trace_expression] = STATE(3572), - [sym__parenthesized_expression] = STATE(2611), - [sym_range_expression] = STATE(3572), - [sym_subscript_expression] = STATE(3572), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1228), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [310] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_untyped] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -45271,71 +45470,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [309] = { - [sym__rhs_expression] = STATE(1231), - [sym__unaryExpression] = STATE(3517), - [sym_runtime_type_check_expression] = STATE(3517), - [sym_switch_expression] = STATE(3517), - [sym_cast_expression] = STATE(3517), - [sym_type_trace_expression] = STATE(3517), - [sym__parenthesized_expression] = STATE(2627), - [sym_range_expression] = STATE(3517), - [sym_subscript_expression] = STATE(3517), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1231), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [311] = { + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_untyped] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -45361,68 +45560,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [310] = { - [sym__rhs_expression] = STATE(1263), - [sym__unaryExpression] = STATE(3567), - [sym_runtime_type_check_expression] = STATE(3567), - [sym_switch_expression] = STATE(3567), - [sym_cast_expression] = STATE(3567), - [sym_type_trace_expression] = STATE(3567), - [sym__parenthesized_expression] = STATE(2617), - [sym_range_expression] = STATE(3567), - [sym_subscript_expression] = STATE(3567), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1263), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [312] = { + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_untyped] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), + [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), @@ -45451,71 +45650,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1099), - [sym__unaryExpression] = STATE(352), - [sym_runtime_type_check_expression] = STATE(352), - [sym_switch_expression] = STATE(352), - [sym_cast_expression] = STATE(352), - [sym_type_trace_expression] = STATE(352), - [sym__parenthesized_expression] = STATE(318), - [sym_range_expression] = STATE(352), - [sym_subscript_expression] = STATE(352), - [sym_member_expression] = STATE(344), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(1099), - [sym_operator] = STATE(2006), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1376), - [sym_integer] = STATE(324), - [sym_float] = STATE(1376), - [sym_bool] = STATE(1376), - [sym_string] = STATE(1369), - [sym_null] = STATE(1376), - [sym_array] = STATE(1376), - [sym_map] = STATE(1376), - [sym_object] = STATE(1376), - [sym_pair] = STATE(1376), - [sym_identifier] = ACTIONS(2086), + [313] = { + [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(1984), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_cast] = ACTIONS(1526), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_untyped] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_new] = ACTIONS(1364), + [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), @@ -45541,70 +45740,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), + [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__rhs_expression] = STATE(1029), - [sym__unaryExpression] = STATE(1887), - [sym_runtime_type_check_expression] = STATE(1887), - [sym_switch_expression] = STATE(1887), - [sym_cast_expression] = STATE(1887), - [sym_type_trace_expression] = STATE(1887), - [sym__parenthesized_expression] = STATE(1572), - [sym_range_expression] = STATE(1887), - [sym_subscript_expression] = STATE(1887), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1029), - [sym_operator] = STATE(1831), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1749), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1749), - [sym_bool] = STATE(1749), - [sym_string] = STATE(1639), - [sym_null] = STATE(1749), - [sym_array] = STATE(1749), - [sym_map] = STATE(1749), - [sym_object] = STATE(1749), - [sym_pair] = STATE(1749), - [sym_identifier] = ACTIONS(2438), + [314] = { + [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(1974), - [anon_sym_cast] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(2487), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_untyped] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), + [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(2448), + [anon_sym_this] = ACTIONS(2205), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -45631,71 +45830,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(1247), - [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(2694), - [sym_range_expression] = STATE(3354), - [sym_subscript_expression] = STATE(3354), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1247), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [315] = { + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_untyped] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -45721,71 +45920,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1249), - [sym__unaryExpression] = STATE(3614), - [sym_runtime_type_check_expression] = STATE(3614), - [sym_switch_expression] = STATE(3614), - [sym_cast_expression] = STATE(3614), - [sym_type_trace_expression] = STATE(3614), - [sym__parenthesized_expression] = STATE(2717), - [sym_range_expression] = STATE(3614), - [sym_subscript_expression] = STATE(3614), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1249), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), + [316] = { + [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(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_untyped] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -45811,71 +46010,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [315] = { - [sym__rhs_expression] = STATE(1258), - [sym__unaryExpression] = STATE(3428), - [sym_runtime_type_check_expression] = STATE(3428), - [sym_switch_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_type_trace_expression] = STATE(3428), - [sym__parenthesized_expression] = STATE(2531), - [sym_range_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3428), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1258), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [317] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_untyped] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -45901,71 +46100,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [316] = { - [sym__rhs_expression] = STATE(1259), - [sym__unaryExpression] = STATE(3429), - [sym_runtime_type_check_expression] = STATE(3429), - [sym_switch_expression] = STATE(3429), - [sym_cast_expression] = STATE(3429), - [sym_type_trace_expression] = STATE(3429), - [sym__parenthesized_expression] = STATE(2533), - [sym_range_expression] = STATE(3429), - [sym_subscript_expression] = STATE(3429), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1259), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [318] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_untyped] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2472), - [anon_sym_continue] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -45991,71 +46190,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [317] = { - [sym__rhs_expression] = STATE(867), - [sym__unaryExpression] = STATE(772), - [sym_runtime_type_check_expression] = STATE(772), - [sym_switch_expression] = STATE(772), - [sym_cast_expression] = STATE(772), - [sym_type_trace_expression] = STATE(772), - [sym__parenthesized_expression] = STATE(637), - [sym_range_expression] = STATE(772), - [sym_subscript_expression] = STATE(772), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(867), - [sym_operator] = STATE(1996), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(944), - [sym_integer] = STATE(166), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [sym_identifier] = ACTIONS(1608), + [319] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1314), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_untyped] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -46081,161 +46280,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [318] = { - [sym__rangeOperator] = STATE(2481), - [sym_identifier] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_using] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2480), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1356), - [aux_sym_integer_token2] = ACTIONS(1354), - [aux_sym_float_token1] = ACTIONS(1356), - [aux_sym_float_token2] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1354), - [aux_sym_string_token3] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1354), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [319] = { - [sym__rhs_expression] = STATE(133), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(133), - [sym_operator] = STATE(1934), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(582), - [sym_integer] = STATE(166), - [sym_float] = STATE(582), - [sym_bool] = STATE(582), - [sym_string] = STATE(398), - [sym_null] = STATE(582), - [sym_array] = STATE(582), - [sym_map] = STATE(582), - [sym_object] = STATE(582), - [sym_pair] = STATE(582), - [sym_identifier] = ACTIONS(2482), + [320] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(2484), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_untyped] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -46261,71 +46370,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [320] = { - [sym__rhs_expression] = STATE(856), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(856), - [sym_operator] = STATE(1910), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(945), - [sym_integer] = STATE(166), - [sym_float] = STATE(945), - [sym_bool] = STATE(945), - [sym_string] = STATE(928), - [sym_null] = STATE(945), - [sym_array] = STATE(945), - [sym_map] = STATE(945), - [sym_object] = STATE(945), - [sym_pair] = STATE(945), - [sym_identifier] = ACTIONS(2490), + [321] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1510), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_untyped] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -46351,71 +46460,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [321] = { - [sym__rhs_expression] = STATE(1225), - [sym__unaryExpression] = STATE(3670), - [sym_runtime_type_check_expression] = STATE(3670), - [sym_switch_expression] = STATE(3670), - [sym_cast_expression] = STATE(3670), - [sym_type_trace_expression] = STATE(3670), - [sym__parenthesized_expression] = STATE(2555), - [sym_range_expression] = STATE(3670), - [sym_subscript_expression] = STATE(3670), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2523), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1225), - [sym_operator] = STATE(1753), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1898), - [sym_integer] = STATE(166), - [sym_float] = STATE(1898), - [sym_bool] = STATE(1898), - [sym_string] = STATE(1688), - [sym_null] = STATE(1898), - [sym_array] = STATE(1898), - [sym_map] = STATE(1898), - [sym_object] = STATE(1898), - [sym_pair] = STATE(1898), - [sym_identifier] = ACTIONS(2492), + [322] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(2494), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_untyped] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -46441,71 +46550,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [322] = { - [sym__rhs_expression] = STATE(1062), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(1550), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1062), - [sym_operator] = STATE(1969), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1756), - [sym_integer] = STATE(166), - [sym_float] = STATE(1756), - [sym_bool] = STATE(1756), - [sym_string] = STATE(1688), - [sym_null] = STATE(1756), - [sym_array] = STATE(1756), - [sym_map] = STATE(1756), - [sym_object] = STATE(1756), - [sym_pair] = STATE(1756), - [sym_identifier] = ACTIONS(2502), + [323] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(2504), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_untyped] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -46531,71 +46640,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [323] = { - [sym__rhs_expression] = STATE(1056), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(1550), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1056), - [sym_operator] = STATE(2019), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1756), - [sym_integer] = STATE(166), - [sym_float] = STATE(1756), - [sym_bool] = STATE(1756), - [sym_string] = STATE(1688), - [sym_null] = STATE(1756), - [sym_array] = STATE(1756), - [sym_map] = STATE(1756), - [sym_object] = STATE(1756), - [sym_pair] = STATE(1756), - [sym_identifier] = ACTIONS(2502), + [324] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(2510), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_untyped] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -46621,341 +46730,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rangeOperator] = STATE(2481), - [sym_identifier] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_package] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_import] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(1626), - [anon_sym_throw] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_case] = ACTIONS(1626), - [anon_sym_default] = ACTIONS(1626), - [anon_sym_cast] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1624), - [anon_sym_DOLLARtype] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_untyped] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_this] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_AT_COLON] = ACTIONS(1624), - [anon_sym_try] = ACTIONS(1626), - [anon_sym_catch] = ACTIONS(1626), - [anon_sym_else] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(1626), - [anon_sym_new] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1624), - [anon_sym_DASH_DASH] = ACTIONS(1624), - [anon_sym_PERCENT] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_LT_LT] = ACTIONS(1624), - [anon_sym_GT_GT] = ACTIONS(1626), - [anon_sym_GT_GT_GT] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1624), - [anon_sym_PIPE_PIPE] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1626), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_EQ_GT] = ACTIONS(1624), - [anon_sym_QMARK_QMARK] = ACTIONS(1624), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2480), - [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_enum] = 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(1624), - [aux_sym_float_token1] = ACTIONS(1626), - [aux_sym_float_token2] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [aux_sym_string_token1] = ACTIONS(1624), - [aux_sym_string_token3] = ACTIONS(1624), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1624), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, [325] = { - [sym_identifier] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_package] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_using] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1784), - [anon_sym_COLON] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_cast] = ACTIONS(1784), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_DOLLARtype] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_AT_COLON] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_catch] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1784), - [anon_sym_GT_GT_GT] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_QMARK_QMARK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), - [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_enum] = 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(1782), - [aux_sym_float_token1] = ACTIONS(1784), - [aux_sym_float_token2] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [aux_sym_string_token1] = ACTIONS(1782), - [aux_sym_string_token3] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1782), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [326] = { - [sym_identifier] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_package] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_using] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1784), - [anon_sym_COLON] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_cast] = ACTIONS(1784), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_DOLLARtype] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_AT_COLON] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_catch] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1784), - [anon_sym_GT_GT_GT] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_QMARK_QMARK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), - [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_enum] = 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(1782), - [aux_sym_float_token1] = ACTIONS(1784), - [aux_sym_float_token2] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [aux_sym_string_token1] = ACTIONS(1782), - [aux_sym_string_token3] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1782), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [327] = { - [sym__rhs_expression] = STATE(145), - [sym__unaryExpression] = STATE(575), - [sym_runtime_type_check_expression] = STATE(575), - [sym_switch_expression] = STATE(575), - [sym_cast_expression] = STATE(575), - [sym_type_trace_expression] = STATE(575), - [sym__parenthesized_expression] = STATE(397), - [sym_range_expression] = STATE(575), - [sym_subscript_expression] = STATE(575), - [sym_member_expression] = STATE(344), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(145), - [sym_operator] = STATE(2009), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(569), - [sym_integer] = STATE(324), - [sym_float] = STATE(569), - [sym_bool] = STATE(569), - [sym_string] = STATE(393), - [sym_null] = STATE(569), - [sym_array] = STATE(569), - [sym_map] = STATE(569), - [sym_object] = STATE(569), - [sym_pair] = STATE(569), - [sym_identifier] = ACTIONS(2520), + [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(1984), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_cast] = ACTIONS(2522), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_untyped] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_new] = ACTIONS(1364), + [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), @@ -46981,71 +46820,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), + [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), }, - [328] = { - [sym__rhs_expression] = STATE(1241), - [sym__unaryExpression] = STATE(3477), - [sym_runtime_type_check_expression] = STATE(3477), - [sym_switch_expression] = STATE(3477), - [sym_cast_expression] = STATE(3477), - [sym_type_trace_expression] = STATE(3477), - [sym__parenthesized_expression] = STATE(2606), - [sym_range_expression] = STATE(3477), - [sym_subscript_expression] = STATE(3477), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1241), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), + [326] = { + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_untyped] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -47071,160 +46910,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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), }, - [329] = { - [sym_identifier] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1832), - [anon_sym_package] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1834), - [anon_sym_import] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_using] = ACTIONS(1834), - [anon_sym_throw] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_COLON] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1834), - [anon_sym_cast] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_DOLLARtype] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1834), - [anon_sym_untyped] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_this] = ACTIONS(1834), - [anon_sym_QMARK] = ACTIONS(1834), - [anon_sym_AT] = ACTIONS(1834), - [anon_sym_AT_COLON] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1834), - [anon_sym_catch] = ACTIONS(1834), - [anon_sym_else] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1834), - [anon_sym_do] = ACTIONS(1834), - [anon_sym_new] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PLUS_PLUS] = ACTIONS(1832), - [anon_sym_DASH_DASH] = ACTIONS(1832), - [anon_sym_PERCENT] = ACTIONS(1832), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_LT_LT] = ACTIONS(1832), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_GT_GT_GT] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_CARET] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_LT_EQ] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_EQ] = ACTIONS(1832), - [anon_sym_EQ_GT] = ACTIONS(1832), - [anon_sym_QMARK_QMARK] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1832), - [anon_sym_null] = ACTIONS(1834), - [anon_sym_macro] = ACTIONS(1834), - [anon_sym_abstract] = ACTIONS(1834), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_public] = ACTIONS(1834), - [anon_sym_private] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1834), - [anon_sym_inline] = ACTIONS(1834), - [anon_sym_overload] = ACTIONS(1834), - [anon_sym_override] = ACTIONS(1834), - [anon_sym_final] = ACTIONS(1834), - [anon_sym_class] = ACTIONS(1834), - [anon_sym_interface] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_typedef] = ACTIONS(1834), - [anon_sym_function] = ACTIONS(1834), - [anon_sym_var] = ACTIONS(1834), - [aux_sym_integer_token1] = ACTIONS(1834), - [aux_sym_integer_token2] = ACTIONS(1832), - [aux_sym_float_token1] = ACTIONS(1834), - [aux_sym_float_token2] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [aux_sym_string_token1] = ACTIONS(1832), - [aux_sym_string_token3] = ACTIONS(1832), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1832), + [327] = { + [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), }, - [330] = { - [sym__rhs_expression] = STATE(1052), - [sym__unaryExpression] = STATE(1887), - [sym_runtime_type_check_expression] = STATE(1887), - [sym_switch_expression] = STATE(1887), - [sym_cast_expression] = STATE(1887), - [sym_type_trace_expression] = STATE(1887), - [sym__parenthesized_expression] = STATE(1572), - [sym_range_expression] = STATE(1887), - [sym_subscript_expression] = STATE(1887), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1052), - [sym_operator] = STATE(1836), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1749), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1749), - [sym_bool] = STATE(1749), - [sym_string] = STATE(1639), - [sym_null] = STATE(1749), - [sym_array] = STATE(1749), - [sym_map] = STATE(1749), - [sym_object] = STATE(1749), - [sym_pair] = STATE(1749), - [sym_identifier] = ACTIONS(2438), + [328] = { + [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(1974), - [anon_sym_cast] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_untyped] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), + [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(2448), + [anon_sym_this] = ACTIONS(41), [anon_sym_new] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_BANG] = ACTIONS(59), @@ -47251,71 +47090,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [331] = { - [sym__rhs_expression] = STATE(999), - [sym__unaryExpression] = STATE(1526), - [sym_runtime_type_check_expression] = STATE(1526), - [sym_switch_expression] = STATE(1526), - [sym_cast_expression] = STATE(1526), - [sym_type_trace_expression] = STATE(1526), - [sym__parenthesized_expression] = STATE(1438), - [sym_range_expression] = STATE(1526), - [sym_subscript_expression] = STATE(1526), - [sym_member_expression] = STATE(1433), - [sym__lhs_expression] = STATE(2670), - [sym__call] = STATE(1507), - [sym__constructor_call] = STATE(1508), - [sym_call_expression] = STATE(999), - [sym_operator] = STATE(1745), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1560), - [sym_integer] = STATE(1482), - [sym_float] = STATE(1560), - [sym_bool] = STATE(1560), - [sym_string] = STATE(1483), - [sym_null] = STATE(1560), - [sym_array] = STATE(1560), - [sym_map] = STATE(1560), - [sym_object] = STATE(1560), - [sym_pair] = STATE(1560), - [sym_identifier] = ACTIONS(2540), + [329] = { + [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__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(2542), - [anon_sym_switch] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_cast] = ACTIONS(2546), - [anon_sym_DOLLARtype] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2550), - [anon_sym_untyped] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_this] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2560), + [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), @@ -47341,248 +47270,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(2562), - [aux_sym_integer_token1] = ACTIONS(2564), - [aux_sym_integer_token2] = ACTIONS(2566), - [aux_sym_float_token1] = ACTIONS(2568), - [aux_sym_float_token2] = ACTIONS(2570), - [anon_sym_true] = ACTIONS(2572), - [anon_sym_false] = ACTIONS(2572), - [aux_sym_string_token1] = ACTIONS(2574), - [aux_sym_string_token3] = ACTIONS(2576), + [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(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__rhs_expression] = STATE(1108), - [sym__unaryExpression] = STATE(3267), - [sym_runtime_type_check_expression] = STATE(3267), - [sym_switch_expression] = STATE(3267), - [sym_cast_expression] = STATE(3267), - [sym_type_trace_expression] = STATE(3267), - [sym__parenthesized_expression] = STATE(2465), - [sym_range_expression] = STATE(3267), - [sym_subscript_expression] = STATE(3267), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1108), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_untyped] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2582), - [anon_sym_continue] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), - [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(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), + [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__rhs_expression] = STATE(1274), - [sym__unaryExpression] = STATE(3436), - [sym_runtime_type_check_expression] = STATE(3436), - [sym_switch_expression] = STATE(3436), - [sym_cast_expression] = STATE(3436), - [sym_type_trace_expression] = STATE(3436), - [sym__parenthesized_expression] = STATE(2703), - [sym_range_expression] = STATE(3436), - [sym_subscript_expression] = STATE(3436), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(1274), - [sym_operator] = STATE(1884), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1391), - [sym_integer] = STATE(166), - [sym_float] = STATE(1391), - [sym_bool] = STATE(1391), - [sym_string] = STATE(1375), - [sym_null] = STATE(1391), - [sym_array] = STATE(1391), - [sym_map] = STATE(1391), - [sym_object] = STATE(1391), - [sym_pair] = STATE(1391), - [sym_identifier] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_untyped] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1330), - [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(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), + [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__rhs_expression] = STATE(1295), - [sym__unaryExpression] = STATE(3596), - [sym_runtime_type_check_expression] = STATE(3596), - [sym_switch_expression] = STATE(3596), - [sym_cast_expression] = STATE(3596), - [sym_type_trace_expression] = STATE(3596), - [sym__parenthesized_expression] = STATE(2804), - [sym_range_expression] = STATE(3596), - [sym_subscript_expression] = STATE(3596), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1295), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), + [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(1974), + [anon_sym_LBRACE] = ACTIONS(1997), [anon_sym_cast] = ACTIONS(27), [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_untyped] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), + [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), @@ -47611,71 +47630,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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__rhs_expression] = STATE(976), - [sym__unaryExpression] = STATE(218), - [sym_runtime_type_check_expression] = STATE(218), - [sym_switch_expression] = STATE(218), - [sym_cast_expression] = STATE(218), - [sym_type_trace_expression] = STATE(218), - [sym__parenthesized_expression] = STATE(171), - [sym_range_expression] = STATE(218), - [sym_subscript_expression] = STATE(218), - [sym_member_expression] = STATE(188), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(976), - [sym_operator] = STATE(1876), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1387), - [sym_integer] = STATE(166), - [sym_float] = STATE(1387), - [sym_bool] = STATE(1387), - [sym_string] = STATE(1375), - [sym_null] = STATE(1387), - [sym_array] = STATE(1387), - [sym_map] = STATE(1387), - [sym_object] = STATE(1387), - [sym_pair] = STATE(1387), - [sym_identifier] = ACTIONS(2342), + [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(1562), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1542), - [anon_sym_DOLLARtype] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_untyped] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(1330), + [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), @@ -47701,71 +47720,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(1201), - [sym__unaryExpression] = STATE(3367), - [sym_runtime_type_check_expression] = STATE(3367), - [sym_switch_expression] = STATE(3367), - [sym_cast_expression] = STATE(3367), - [sym_type_trace_expression] = STATE(3367), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(3367), - [sym_subscript_expression] = STATE(3367), - [sym_member_expression] = STATE(1541), - [sym__lhs_expression] = STATE(2738), - [sym__call] = STATE(1964), - [sym__constructor_call] = STATE(1968), - [sym_call_expression] = STATE(1201), - [sym_operator] = STATE(1797), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [sym__literal] = STATE(1801), - [sym_integer] = STATE(1614), - [sym_float] = STATE(1801), - [sym_bool] = STATE(1801), - [sym_string] = STATE(1639), - [sym_null] = STATE(1801), - [sym_array] = STATE(1801), - [sym_map] = STATE(1801), - [sym_object] = STATE(1801), - [sym_pair] = STATE(1801), - [sym_identifier] = ACTIONS(7), + [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__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(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(27), - [anon_sym_DOLLARtype] = ACTIONS(29), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_untyped] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_this] = ACTIONS(41), - [anon_sym_new] = ACTIONS(55), + [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), @@ -47791,2182 +47900,2093 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(67), - [aux_sym_integer_token1] = ACTIONS(85), - [aux_sym_integer_token2] = ACTIONS(87), - [aux_sym_float_token1] = ACTIONS(89), - [aux_sym_float_token2] = ACTIONS(91), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [aux_sym_string_token1] = ACTIONS(95), - [aux_sym_string_token3] = ACTIONS(97), + [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), }, - [337] = { - [sym_identifier] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_package] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(1788), - [anon_sym_import] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1788), - [anon_sym_throw] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_cast] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_DOLLARtype] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_untyped] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_this] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1788), - [anon_sym_AT_COLON] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_LT_LT] = ACTIONS(1786), - [anon_sym_GT_GT] = ACTIONS(1788), - [anon_sym_GT_GT_GT] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [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(1788), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1788), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_EQ_GT] = ACTIONS(1786), - [anon_sym_QMARK_QMARK] = ACTIONS(1786), - [anon_sym_EQ] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [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_enum] = 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(1786), - [aux_sym_float_token1] = ACTIONS(1788), - [aux_sym_float_token2] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [aux_sym_string_token1] = ACTIONS(1786), - [aux_sym_string_token3] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1786), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, [338] = { - [sym_identifier] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_package] = ACTIONS(1862), - [anon_sym_DOT] = ACTIONS(1862), - [anon_sym_import] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_using] = ACTIONS(1862), - [anon_sym_throw] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_cast] = ACTIONS(1862), - [anon_sym_COMMA] = ACTIONS(1860), - [anon_sym_DOLLARtype] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_untyped] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1860), - [anon_sym_this] = ACTIONS(1862), - [anon_sym_QMARK] = ACTIONS(1862), - [anon_sym_AT] = ACTIONS(1862), - [anon_sym_AT_COLON] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1862), - [anon_sym_catch] = ACTIONS(1862), - [anon_sym_else] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_new] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS_PLUS] = ACTIONS(1860), - [anon_sym_DASH_DASH] = ACTIONS(1860), - [anon_sym_PERCENT] = ACTIONS(1860), - [anon_sym_SLASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_LT_LT] = ACTIONS(1860), - [anon_sym_GT_GT] = ACTIONS(1862), - [anon_sym_GT_GT_GT] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_CARET] = ACTIONS(1860), - [anon_sym_AMP_AMP] = ACTIONS(1860), - [anon_sym_PIPE_PIPE] = ACTIONS(1860), - [anon_sym_EQ_EQ] = ACTIONS(1860), - [anon_sym_BANG_EQ] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_LT_EQ] = ACTIONS(1860), - [anon_sym_GT] = ACTIONS(1862), - [anon_sym_GT_EQ] = ACTIONS(1860), - [anon_sym_EQ_GT] = ACTIONS(1860), - [anon_sym_QMARK_QMARK] = ACTIONS(1860), - [anon_sym_EQ] = ACTIONS(1862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1860), - [anon_sym_null] = ACTIONS(1862), - [anon_sym_macro] = ACTIONS(1862), - [anon_sym_abstract] = ACTIONS(1862), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_public] = ACTIONS(1862), - [anon_sym_private] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [anon_sym_overload] = ACTIONS(1862), - [anon_sym_override] = ACTIONS(1862), - [anon_sym_final] = ACTIONS(1862), - [anon_sym_class] = ACTIONS(1862), - [anon_sym_interface] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_function] = ACTIONS(1862), - [anon_sym_var] = ACTIONS(1862), - [aux_sym_integer_token1] = ACTIONS(1862), - [aux_sym_integer_token2] = ACTIONS(1860), - [aux_sym_float_token1] = ACTIONS(1862), - [aux_sym_float_token2] = ACTIONS(1860), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [aux_sym_string_token1] = ACTIONS(1860), - [aux_sym_string_token3] = ACTIONS(1860), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1860), + [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(1912), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_package] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(1912), - [anon_sym_import] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_using] = ACTIONS(1912), - [anon_sym_throw] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_switch] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_case] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_cast] = ACTIONS(1912), - [anon_sym_COMMA] = ACTIONS(1910), - [anon_sym_DOLLARtype] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_untyped] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(1912), - [anon_sym_QMARK] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1912), - [anon_sym_AT_COLON] = ACTIONS(1910), - [anon_sym_try] = ACTIONS(1912), - [anon_sym_catch] = ACTIONS(1912), - [anon_sym_else] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_do] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1910), - [anon_sym_PERCENT] = ACTIONS(1910), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1910), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_GT_GT_GT] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [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(1912), - [anon_sym_LT_EQ] = ACTIONS(1910), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_EQ] = ACTIONS(1910), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_QMARK] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1910), - [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_enum] = 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(1910), - [aux_sym_float_token1] = ACTIONS(1912), - [aux_sym_float_token2] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [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(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(1730), - [anon_sym_POUND] = ACTIONS(1728), - [anon_sym_package] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_import] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_using] = ACTIONS(1730), - [anon_sym_throw] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1728), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_cast] = ACTIONS(1730), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_DOLLARtype] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_untyped] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [anon_sym_QMARK] = ACTIONS(1730), - [anon_sym_AT] = ACTIONS(1730), - [anon_sym_AT_COLON] = ACTIONS(1728), - [anon_sym_try] = ACTIONS(1730), - [anon_sym_catch] = ACTIONS(1730), - [anon_sym_else] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PERCENT] = ACTIONS(1728), - [anon_sym_SLASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_LT_LT] = ACTIONS(1728), - [anon_sym_GT_GT] = ACTIONS(1730), - [anon_sym_GT_GT_GT] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_PIPE_PIPE] = ACTIONS(1728), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_LT_EQ] = ACTIONS(1728), - [anon_sym_GT] = ACTIONS(1730), - [anon_sym_GT_EQ] = ACTIONS(1728), - [anon_sym_EQ_GT] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1728), - [anon_sym_EQ] = ACTIONS(1730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1728), - [anon_sym_null] = ACTIONS(1730), - [anon_sym_macro] = ACTIONS(1730), - [anon_sym_abstract] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_public] = ACTIONS(1730), - [anon_sym_private] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [anon_sym_overload] = ACTIONS(1730), - [anon_sym_override] = ACTIONS(1730), - [anon_sym_final] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(1730), - [anon_sym_interface] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_function] = ACTIONS(1730), - [anon_sym_var] = ACTIONS(1730), - [aux_sym_integer_token1] = ACTIONS(1730), - [aux_sym_integer_token2] = ACTIONS(1728), - [aux_sym_float_token1] = ACTIONS(1730), - [aux_sym_float_token2] = ACTIONS(1728), - [anon_sym_true] = ACTIONS(1730), - [anon_sym_false] = ACTIONS(1730), - [aux_sym_string_token1] = ACTIONS(1728), - [aux_sym_string_token3] = ACTIONS(1728), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1728), + [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(1720), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_package] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_import] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_using] = ACTIONS(1720), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_case] = ACTIONS(1720), - [anon_sym_default] = ACTIONS(1720), - [anon_sym_cast] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1718), - [anon_sym_DOLLARtype] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_untyped] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1720), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_this] = ACTIONS(1720), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_AT_COLON] = ACTIONS(1718), - [anon_sym_try] = ACTIONS(1720), - [anon_sym_catch] = ACTIONS(1720), - [anon_sym_else] = ACTIONS(1720), - [anon_sym_if] = ACTIONS(1720), - [anon_sym_while] = ACTIONS(1720), - [anon_sym_do] = ACTIONS(1720), - [anon_sym_new] = ACTIONS(1720), - [anon_sym_TILDE] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1718), - [anon_sym_PERCENT] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1720), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1718), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_GT_GT_GT] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [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(1720), - [anon_sym_LT_EQ] = ACTIONS(1718), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1718), - [anon_sym_EQ_GT] = ACTIONS(1718), - [anon_sym_QMARK_QMARK] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(1720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1718), - [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_enum] = 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(1718), - [aux_sym_float_token1] = ACTIONS(1720), - [aux_sym_float_token2] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1720), - [anon_sym_false] = ACTIONS(1720), - [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(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(1754), - [anon_sym_POUND] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_import] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_using] = ACTIONS(1754), - [anon_sym_throw] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1752), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_cast] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1752), - [anon_sym_DOLLARtype] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_untyped] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_this] = ACTIONS(1754), - [anon_sym_QMARK] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_AT_COLON] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1754), - [anon_sym_catch] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1752), - [anon_sym_GT_GT] = ACTIONS(1754), - [anon_sym_GT_GT_GT] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1752), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_LT_EQ] = ACTIONS(1752), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1752), - [anon_sym_EQ_GT] = ACTIONS(1752), - [anon_sym_QMARK_QMARK] = ACTIONS(1752), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1752), - [anon_sym_null] = ACTIONS(1754), - [anon_sym_macro] = ACTIONS(1754), - [anon_sym_abstract] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_public] = ACTIONS(1754), - [anon_sym_private] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_inline] = ACTIONS(1754), - [anon_sym_overload] = ACTIONS(1754), - [anon_sym_override] = ACTIONS(1754), - [anon_sym_final] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(1754), - [anon_sym_interface] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_function] = ACTIONS(1754), - [anon_sym_var] = ACTIONS(1754), - [aux_sym_integer_token1] = ACTIONS(1754), - [aux_sym_integer_token2] = ACTIONS(1752), - [aux_sym_float_token1] = ACTIONS(1754), - [aux_sym_float_token2] = ACTIONS(1752), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [aux_sym_string_token1] = ACTIONS(1752), - [aux_sym_string_token3] = ACTIONS(1752), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1752), + [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(1886), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_package] = ACTIONS(1886), - [anon_sym_DOT] = ACTIONS(1886), - [anon_sym_import] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_using] = ACTIONS(1886), - [anon_sym_throw] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_switch] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_case] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_cast] = ACTIONS(1886), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_DOLLARtype] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_untyped] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_this] = ACTIONS(1886), - [anon_sym_QMARK] = ACTIONS(1886), - [anon_sym_AT] = ACTIONS(1886), - [anon_sym_AT_COLON] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1886), - [anon_sym_catch] = ACTIONS(1886), - [anon_sym_else] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_GT_GT_GT] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_EQ] = ACTIONS(1884), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_QMARK] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), - [anon_sym_null] = ACTIONS(1886), - [anon_sym_macro] = ACTIONS(1886), - [anon_sym_abstract] = ACTIONS(1886), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_public] = ACTIONS(1886), - [anon_sym_private] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1886), - [anon_sym_inline] = ACTIONS(1886), - [anon_sym_overload] = ACTIONS(1886), - [anon_sym_override] = ACTIONS(1886), - [anon_sym_final] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_interface] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_typedef] = ACTIONS(1886), - [anon_sym_function] = ACTIONS(1886), - [anon_sym_var] = ACTIONS(1886), - [aux_sym_integer_token1] = ACTIONS(1886), - [aux_sym_integer_token2] = ACTIONS(1884), - [aux_sym_float_token1] = ACTIONS(1886), - [aux_sym_float_token2] = ACTIONS(1884), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [aux_sym_string_token1] = ACTIONS(1884), - [aux_sym_string_token3] = ACTIONS(1884), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1884), + [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(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_case] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(1778), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [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(1916), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_package] = ACTIONS(1916), - [anon_sym_DOT] = ACTIONS(1916), - [anon_sym_import] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(1916), - [anon_sym_throw] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_switch] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_case] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_cast] = ACTIONS(1916), - [anon_sym_COMMA] = ACTIONS(1914), - [anon_sym_DOLLARtype] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_untyped] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_this] = ACTIONS(1916), - [anon_sym_QMARK] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1916), - [anon_sym_AT_COLON] = ACTIONS(1914), - [anon_sym_try] = ACTIONS(1916), - [anon_sym_catch] = ACTIONS(1916), - [anon_sym_else] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_do] = ACTIONS(1916), - [anon_sym_new] = ACTIONS(1916), - [anon_sym_TILDE] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_PERCENT] = ACTIONS(1914), - [anon_sym_SLASH] = ACTIONS(1916), - [anon_sym_PLUS] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(1914), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_GT_GT_GT] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [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(1916), - [anon_sym_LT_EQ] = ACTIONS(1914), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_GT_EQ] = ACTIONS(1914), - [anon_sym_EQ_GT] = ACTIONS(1914), - [anon_sym_QMARK_QMARK] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [anon_sym_macro] = ACTIONS(1916), - [anon_sym_abstract] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_public] = ACTIONS(1916), - [anon_sym_private] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_inline] = ACTIONS(1916), - [anon_sym_overload] = ACTIONS(1916), - [anon_sym_override] = ACTIONS(1916), - [anon_sym_final] = ACTIONS(1916), - [anon_sym_class] = ACTIONS(1916), - [anon_sym_interface] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_typedef] = ACTIONS(1916), - [anon_sym_function] = ACTIONS(1916), - [anon_sym_var] = ACTIONS(1916), - [aux_sym_integer_token1] = ACTIONS(1916), - [aux_sym_integer_token2] = ACTIONS(1914), - [aux_sym_float_token1] = ACTIONS(1916), - [aux_sym_float_token2] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [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(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(1734), - [anon_sym_POUND] = ACTIONS(1732), - [anon_sym_package] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_import] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_using] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_case] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_cast] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1732), - [anon_sym_DOLLARtype] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_untyped] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_AT_COLON] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_catch] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1734), - [anon_sym_new] = ACTIONS(1734), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PERCENT] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_LT_LT] = ACTIONS(1732), - [anon_sym_GT_GT] = ACTIONS(1734), - [anon_sym_GT_GT_GT] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP_AMP] = ACTIONS(1732), - [anon_sym_PIPE_PIPE] = ACTIONS(1732), - [anon_sym_EQ_EQ] = ACTIONS(1732), - [anon_sym_BANG_EQ] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_GT_EQ] = ACTIONS(1732), - [anon_sym_EQ_GT] = ACTIONS(1732), - [anon_sym_QMARK_QMARK] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1732), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_macro] = ACTIONS(1734), - [anon_sym_abstract] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_public] = ACTIONS(1734), - [anon_sym_private] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [anon_sym_overload] = ACTIONS(1734), - [anon_sym_override] = ACTIONS(1734), - [anon_sym_final] = ACTIONS(1734), - [anon_sym_class] = ACTIONS(1734), - [anon_sym_interface] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_typedef] = ACTIONS(1734), - [anon_sym_function] = ACTIONS(1734), - [anon_sym_var] = ACTIONS(1734), - [aux_sym_integer_token1] = ACTIONS(1734), - [aux_sym_integer_token2] = ACTIONS(1732), - [aux_sym_float_token1] = ACTIONS(1734), - [aux_sym_float_token2] = ACTIONS(1732), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [aux_sym_string_token1] = ACTIONS(1732), - [aux_sym_string_token3] = ACTIONS(1732), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1732), + [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(1870), - [anon_sym_POUND] = ACTIONS(1868), - [anon_sym_package] = ACTIONS(1870), - [anon_sym_DOT] = ACTIONS(1870), - [anon_sym_import] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_using] = ACTIONS(1870), - [anon_sym_throw] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1868), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_case] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_cast] = ACTIONS(1870), - [anon_sym_COMMA] = ACTIONS(1868), - [anon_sym_DOLLARtype] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_untyped] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_this] = ACTIONS(1870), - [anon_sym_QMARK] = ACTIONS(1870), - [anon_sym_AT] = ACTIONS(1870), - [anon_sym_AT_COLON] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1870), - [anon_sym_catch] = ACTIONS(1870), - [anon_sym_else] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_new] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1870), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1870), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_EQ_GT] = ACTIONS(1868), - [anon_sym_QMARK_QMARK] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_macro] = ACTIONS(1870), - [anon_sym_abstract] = ACTIONS(1870), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_public] = ACTIONS(1870), - [anon_sym_private] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym_inline] = ACTIONS(1870), - [anon_sym_overload] = ACTIONS(1870), - [anon_sym_override] = ACTIONS(1870), - [anon_sym_final] = ACTIONS(1870), - [anon_sym_class] = ACTIONS(1870), - [anon_sym_interface] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_typedef] = ACTIONS(1870), - [anon_sym_function] = ACTIONS(1870), - [anon_sym_var] = ACTIONS(1870), - [aux_sym_integer_token1] = ACTIONS(1870), - [aux_sym_integer_token2] = ACTIONS(1868), - [aux_sym_float_token1] = ACTIONS(1870), - [aux_sym_float_token2] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1870), - [anon_sym_false] = ACTIONS(1870), - [aux_sym_string_token1] = ACTIONS(1868), - [aux_sym_string_token3] = ACTIONS(1868), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1868), + [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(1920), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_package] = ACTIONS(1920), - [anon_sym_DOT] = ACTIONS(1920), - [anon_sym_import] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_using] = ACTIONS(1920), - [anon_sym_throw] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_case] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_cast] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1918), - [anon_sym_DOLLARtype] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_untyped] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_this] = ACTIONS(1920), - [anon_sym_QMARK] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1920), - [anon_sym_AT_COLON] = ACTIONS(1918), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_catch] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_PLUS_PLUS] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1918), - [anon_sym_PERCENT] = ACTIONS(1918), - [anon_sym_SLASH] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1920), - [anon_sym_GT_GT_GT] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_EQ_EQ] = ACTIONS(1918), - [anon_sym_BANG_EQ] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_LT_EQ] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1920), - [anon_sym_GT_EQ] = ACTIONS(1918), - [anon_sym_EQ_GT] = ACTIONS(1918), - [anon_sym_QMARK_QMARK] = ACTIONS(1918), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_macro] = ACTIONS(1920), - [anon_sym_abstract] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_public] = ACTIONS(1920), - [anon_sym_private] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_inline] = ACTIONS(1920), - [anon_sym_overload] = ACTIONS(1920), - [anon_sym_override] = ACTIONS(1920), - [anon_sym_final] = ACTIONS(1920), - [anon_sym_class] = ACTIONS(1920), - [anon_sym_interface] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_typedef] = ACTIONS(1920), - [anon_sym_function] = ACTIONS(1920), - [anon_sym_var] = ACTIONS(1920), - [aux_sym_integer_token1] = ACTIONS(1920), - [aux_sym_integer_token2] = ACTIONS(1918), - [aux_sym_float_token1] = ACTIONS(1920), - [aux_sym_float_token2] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [aux_sym_string_token1] = ACTIONS(1918), - [aux_sym_string_token3] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1918), + [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(1866), - [anon_sym_POUND] = ACTIONS(1864), - [anon_sym_package] = ACTIONS(1866), - [anon_sym_DOT] = ACTIONS(1866), - [anon_sym_import] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_using] = ACTIONS(1866), - [anon_sym_throw] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_cast] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1864), - [anon_sym_DOLLARtype] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_untyped] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_this] = ACTIONS(1866), - [anon_sym_QMARK] = ACTIONS(1866), - [anon_sym_AT] = ACTIONS(1866), - [anon_sym_AT_COLON] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1866), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_new] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PERCENT] = ACTIONS(1864), - [anon_sym_SLASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_LT_LT] = ACTIONS(1864), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_GT_GT_GT] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1864), - [anon_sym_EQ_EQ] = ACTIONS(1864), - [anon_sym_BANG_EQ] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_LT_EQ] = ACTIONS(1864), - [anon_sym_GT] = ACTIONS(1866), - [anon_sym_GT_EQ] = ACTIONS(1864), - [anon_sym_EQ_GT] = ACTIONS(1864), - [anon_sym_QMARK_QMARK] = ACTIONS(1864), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1864), - [anon_sym_null] = ACTIONS(1866), - [anon_sym_macro] = ACTIONS(1866), - [anon_sym_abstract] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_public] = ACTIONS(1866), - [anon_sym_private] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [anon_sym_overload] = ACTIONS(1866), - [anon_sym_override] = ACTIONS(1866), - [anon_sym_final] = ACTIONS(1866), - [anon_sym_class] = ACTIONS(1866), - [anon_sym_interface] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_function] = ACTIONS(1866), - [anon_sym_var] = ACTIONS(1866), - [aux_sym_integer_token1] = ACTIONS(1866), - [aux_sym_integer_token2] = ACTIONS(1864), - [aux_sym_float_token1] = ACTIONS(1866), - [aux_sym_float_token2] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [aux_sym_string_token1] = ACTIONS(1864), - [aux_sym_string_token3] = ACTIONS(1864), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1864), + [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(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_package] = ACTIONS(1804), - [anon_sym_DOT] = ACTIONS(1804), - [anon_sym_import] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_using] = ACTIONS(1804), - [anon_sym_throw] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_cast] = ACTIONS(1804), - [anon_sym_COMMA] = ACTIONS(1802), - [anon_sym_DOLLARtype] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_untyped] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_this] = ACTIONS(1804), - [anon_sym_QMARK] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1804), - [anon_sym_AT_COLON] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1804), - [anon_sym_catch] = ACTIONS(1804), - [anon_sym_else] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_LT_LT] = ACTIONS(1802), - [anon_sym_GT_GT] = ACTIONS(1804), - [anon_sym_GT_GT_GT] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [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(1804), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT] = ACTIONS(1804), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_EQ_GT] = ACTIONS(1802), - [anon_sym_QMARK_QMARK] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [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_enum] = 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(1802), - [aux_sym_float_token1] = ACTIONS(1804), - [aux_sym_float_token2] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [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(1972), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_throw] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_case] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_cast] = ACTIONS(1972), - [anon_sym_COMMA] = ACTIONS(1970), - [anon_sym_DOLLARtype] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_untyped] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_this] = ACTIONS(1972), - [anon_sym_QMARK] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_AT_COLON] = ACTIONS(1970), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_GT_GT_GT] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [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(1972), - [anon_sym_LT_EQ] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_GT_EQ] = ACTIONS(1970), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), - [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_enum] = 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(1970), - [aux_sym_float_token1] = ACTIONS(1972), - [aux_sym_float_token2] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [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(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(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_using] = ACTIONS(1356), - [anon_sym_throw] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_interface] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_function] = ACTIONS(1356), - [anon_sym_var] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1356), - [aux_sym_integer_token2] = ACTIONS(1354), - [aux_sym_float_token1] = ACTIONS(1356), - [aux_sym_float_token2] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1354), - [aux_sym_string_token3] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1354), + [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(1936), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_package] = ACTIONS(1936), - [anon_sym_DOT] = ACTIONS(1936), - [anon_sym_import] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_throw] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_switch] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_cast] = ACTIONS(1936), - [anon_sym_COMMA] = ACTIONS(1934), - [anon_sym_DOLLARtype] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_untyped] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1936), - [anon_sym_QMARK] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1936), - [anon_sym_AT_COLON] = ACTIONS(1934), - [anon_sym_try] = ACTIONS(1936), - [anon_sym_catch] = ACTIONS(1936), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_do] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1934), - [anon_sym_DASH_DASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_LT_LT] = ACTIONS(1934), - [anon_sym_GT_GT] = ACTIONS(1936), - [anon_sym_GT_GT_GT] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [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(1936), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_QMARK_QMARK] = ACTIONS(1934), - [anon_sym_EQ] = ACTIONS(1936), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1934), - [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_enum] = 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(1934), - [aux_sym_float_token1] = ACTIONS(1936), - [aux_sym_float_token2] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [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(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(1940), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_package] = ACTIONS(1940), - [anon_sym_DOT] = ACTIONS(1940), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_cast] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_DOLLARtype] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_untyped] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_this] = ACTIONS(1940), - [anon_sym_QMARK] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1940), - [anon_sym_AT_COLON] = ACTIONS(1938), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_catch] = ACTIONS(1940), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_do] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_LT_LT] = ACTIONS(1938), - [anon_sym_GT_GT] = ACTIONS(1940), - [anon_sym_GT_GT_GT] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [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(1940), - [anon_sym_LT_EQ] = ACTIONS(1938), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_GT_EQ] = ACTIONS(1938), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_QMARK_QMARK] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), - [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_enum] = 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(1938), - [aux_sym_float_token1] = ACTIONS(1940), - [aux_sym_float_token2] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [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(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(1944), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_package] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_import] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1944), - [anon_sym_throw] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_cast] = ACTIONS(1944), - [anon_sym_COMMA] = ACTIONS(1942), - [anon_sym_DOLLARtype] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_untyped] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_this] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_AT_COLON] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1944), - [anon_sym_catch] = ACTIONS(1944), - [anon_sym_else] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_do] = ACTIONS(1944), - [anon_sym_new] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [anon_sym_PERCENT] = ACTIONS(1942), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1942), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym_GT_GT_GT] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [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(1944), - [anon_sym_LT_EQ] = ACTIONS(1942), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1942), - [anon_sym_EQ_GT] = ACTIONS(1942), - [anon_sym_QMARK_QMARK] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), - [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_enum] = 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(1942), - [aux_sym_float_token1] = ACTIONS(1944), - [aux_sym_float_token2] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [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(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(2602), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_package] = ACTIONS(2602), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_import] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_case] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_cast] = ACTIONS(2602), - [anon_sym_DOLLARtype] = ACTIONS(2604), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_untyped] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_this] = ACTIONS(2602), - [anon_sym_QMARK] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(2602), - [anon_sym_AT_COLON] = ACTIONS(2604), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_catch] = ACTIONS(2602), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_PERCENT] = ACTIONS(1852), - [anon_sym_SLASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_LT_LT] = ACTIONS(1852), - [anon_sym_GT_GT] = ACTIONS(1854), - [anon_sym_GT_GT_GT] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_AMP_AMP] = ACTIONS(1852), - [anon_sym_PIPE_PIPE] = ACTIONS(1852), - [anon_sym_EQ_EQ] = ACTIONS(1852), - [anon_sym_BANG_EQ] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_LT_EQ] = ACTIONS(1852), - [anon_sym_GT] = ACTIONS(1854), - [anon_sym_GT_EQ] = ACTIONS(1852), - [anon_sym_EQ_GT] = ACTIONS(1852), - [anon_sym_QMARK_QMARK] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1852), - [anon_sym_null] = ACTIONS(2602), - [anon_sym_macro] = ACTIONS(2602), - [anon_sym_abstract] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_public] = ACTIONS(2602), - [anon_sym_private] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_overload] = ACTIONS(2602), - [anon_sym_override] = ACTIONS(2602), - [anon_sym_final] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_interface] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_function] = ACTIONS(2602), - [anon_sym_var] = ACTIONS(2602), - [aux_sym_integer_token1] = ACTIONS(2602), - [aux_sym_integer_token2] = ACTIONS(2604), - [aux_sym_float_token1] = ACTIONS(2602), - [aux_sym_float_token2] = ACTIONS(2604), - [anon_sym_true] = ACTIONS(2602), - [anon_sym_false] = ACTIONS(2602), - [aux_sym_string_token1] = ACTIONS(2604), - [aux_sym_string_token3] = ACTIONS(2604), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1852), - [sym__closing_brace_marker] = ACTIONS(2604), + [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(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_package] = ACTIONS(1932), - [anon_sym_DOT] = ACTIONS(1932), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_using] = ACTIONS(1932), - [anon_sym_throw] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_case] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_cast] = ACTIONS(1932), - [anon_sym_COMMA] = ACTIONS(1930), - [anon_sym_DOLLARtype] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_untyped] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_this] = ACTIONS(1932), - [anon_sym_QMARK] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1932), - [anon_sym_AT_COLON] = ACTIONS(1930), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_catch] = ACTIONS(1932), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_do] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1932), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1932), - [anon_sym_GT_GT_GT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [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(1932), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_QMARK_QMARK] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), - [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_enum] = 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(1930), - [aux_sym_float_token1] = ACTIONS(1932), - [aux_sym_float_token2] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [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(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(1444), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_package] = ACTIONS(1444), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(1444), - [anon_sym_throw] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_cast] = ACTIONS(1444), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_DOLLARtype] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_untyped] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_this] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1444), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_AT_COLON] = ACTIONS(1446), - [anon_sym_try] = ACTIONS(1444), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_else] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PERCENT] = ACTIONS(1446), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_LT_LT] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1444), - [anon_sym_GT_GT_GT] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1446), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_EQ_EQ] = ACTIONS(1446), - [anon_sym_BANG_EQ] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_EQ] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_GT_EQ] = ACTIONS(1446), - [anon_sym_EQ_GT] = ACTIONS(1446), - [anon_sym_QMARK_QMARK] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_macro] = ACTIONS(1444), - [anon_sym_abstract] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_public] = ACTIONS(1444), - [anon_sym_private] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym_overload] = ACTIONS(1444), - [anon_sym_override] = ACTIONS(1444), - [anon_sym_final] = ACTIONS(1444), - [anon_sym_class] = ACTIONS(1444), - [anon_sym_interface] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_function] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [aux_sym_integer_token1] = ACTIONS(1444), - [aux_sym_integer_token2] = ACTIONS(1446), - [aux_sym_float_token1] = ACTIONS(1444), - [aux_sym_float_token2] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [aux_sym_string_token1] = ACTIONS(1446), - [aux_sym_string_token3] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1446), + [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(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_package] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1908), - [anon_sym_import] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_using] = ACTIONS(1908), - [anon_sym_throw] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_cast] = ACTIONS(1908), - [anon_sym_COMMA] = ACTIONS(1906), - [anon_sym_DOLLARtype] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_untyped] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_this] = ACTIONS(1908), - [anon_sym_QMARK] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1908), - [anon_sym_AT_COLON] = ACTIONS(1906), - [anon_sym_try] = ACTIONS(1908), - [anon_sym_catch] = ACTIONS(1908), - [anon_sym_else] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_do] = ACTIONS(1908), - [anon_sym_new] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_LT_LT] = ACTIONS(1906), - [anon_sym_GT_GT] = ACTIONS(1908), - [anon_sym_GT_GT_GT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [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(1908), - [anon_sym_LT_EQ] = ACTIONS(1906), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_GT_EQ] = ACTIONS(1906), - [anon_sym_EQ_GT] = ACTIONS(1906), - [anon_sym_QMARK_QMARK] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1906), - [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_enum] = 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(1906), - [aux_sym_float_token1] = ACTIONS(1908), - [aux_sym_float_token2] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [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(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(1725), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_using] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_cast] = ACTIONS(1725), - [anon_sym_COMMA] = ACTIONS(1722), - [anon_sym_DOLLARtype] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_untyped] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1725), - [anon_sym_QMARK] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1725), - [anon_sym_AT_COLON] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [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(1725), - [anon_sym_LT_EQ] = ACTIONS(1722), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1722), - [anon_sym_EQ_GT] = ACTIONS(1722), - [anon_sym_QMARK_QMARK] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1725), - [anon_sym_macro] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_inline] = ACTIONS(1725), - [anon_sym_overload] = ACTIONS(1725), - [anon_sym_override] = ACTIONS(1725), - [anon_sym_final] = ACTIONS(1725), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_typedef] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [aux_sym_integer_token1] = ACTIONS(1725), - [aux_sym_integer_token2] = ACTIONS(1722), - [aux_sym_float_token1] = ACTIONS(1725), - [aux_sym_float_token2] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_string_token1] = ACTIONS(1722), - [aux_sym_string_token3] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1722), + [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(1775), - [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(1773), [anon_sym_package] = ACTIONS(1775), [anon_sym_DOT] = ACTIONS(1775), [anon_sym_import] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1773), [anon_sym_using] = ACTIONS(1775), [anon_sym_throw] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1773), [anon_sym_switch] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1773), [anon_sym_case] = ACTIONS(1775), [anon_sym_default] = ACTIONS(1775), [anon_sym_cast] = ACTIONS(1775), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_DOLLARtype] = ACTIONS(1772), + [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(1772), + [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(1772), + [anon_sym_AT_COLON] = ACTIONS(1773), [anon_sym_try] = ACTIONS(1775), [anon_sym_catch] = ACTIONS(1775), [anon_sym_else] = ACTIONS(1775), @@ -49974,32 +49994,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1775), [anon_sym_do] = ACTIONS(1775), [anon_sym_new] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1772), + [anon_sym_TILDE] = ACTIONS(1773), [anon_sym_BANG] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), + [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(1772), + [anon_sym_LT_LT] = ACTIONS(1773), [anon_sym_GT_GT] = ACTIONS(1775), - [anon_sym_GT_GT_GT] = ACTIONS(1772), + [anon_sym_GT_GT_GT] = ACTIONS(1773), [anon_sym_AMP] = ACTIONS(1775), [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), + [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(1772), + [anon_sym_LT_EQ] = ACTIONS(1773), [anon_sym_GT] = ACTIONS(1775), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_EQ_GT] = ACTIONS(1772), - [anon_sym_QMARK_QMARK] = ACTIONS(1772), + [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(1772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), [anon_sym_null] = ACTIONS(1775), [anon_sym_macro] = ACTIONS(1775), [anon_sym_abstract] = ACTIONS(1775), @@ -50018,41903 +50038,42009 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(1775), [anon_sym_var] = ACTIONS(1775), [aux_sym_integer_token1] = ACTIONS(1775), - [aux_sym_integer_token2] = ACTIONS(1772), + [aux_sym_integer_token2] = ACTIONS(1773), [aux_sym_float_token1] = ACTIONS(1775), - [aux_sym_float_token2] = ACTIONS(1772), + [aux_sym_float_token2] = ACTIONS(1773), [anon_sym_true] = ACTIONS(1775), [anon_sym_false] = ACTIONS(1775), - [aux_sym_string_token1] = ACTIONS(1772), - [aux_sym_string_token3] = ACTIONS(1772), + [aux_sym_string_token1] = ACTIONS(1773), + [aux_sym_string_token3] = ACTIONS(1773), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1772), + [sym__closing_brace_marker] = ACTIONS(1773), [sym__closing_brace_unmarker] = ACTIONS(3), }, [362] = { - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_case] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(1778), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [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(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(1758), - [anon_sym_POUND] = ACTIONS(1756), - [anon_sym_package] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(1758), - [anon_sym_import] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_using] = ACTIONS(1758), - [anon_sym_throw] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_switch] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_case] = ACTIONS(1758), - [anon_sym_default] = ACTIONS(1758), - [anon_sym_cast] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_DOLLARtype] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_untyped] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_this] = ACTIONS(1758), - [anon_sym_QMARK] = ACTIONS(1758), - [anon_sym_AT] = ACTIONS(1758), - [anon_sym_AT_COLON] = ACTIONS(1756), - [anon_sym_try] = ACTIONS(1758), - [anon_sym_catch] = ACTIONS(1758), - [anon_sym_else] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_do] = ACTIONS(1758), - [anon_sym_new] = ACTIONS(1758), - [anon_sym_TILDE] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1756), - [anon_sym_DASH_DASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1758), - [anon_sym_GT_GT_GT] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_LT_EQ] = ACTIONS(1756), - [anon_sym_GT] = ACTIONS(1758), - [anon_sym_GT_EQ] = ACTIONS(1756), - [anon_sym_EQ_GT] = ACTIONS(1756), - [anon_sym_QMARK_QMARK] = ACTIONS(1756), - [anon_sym_EQ] = ACTIONS(1758), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1758), - [anon_sym_macro] = ACTIONS(1758), - [anon_sym_abstract] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1758), - [anon_sym_public] = ACTIONS(1758), - [anon_sym_private] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1758), - [anon_sym_inline] = ACTIONS(1758), - [anon_sym_overload] = ACTIONS(1758), - [anon_sym_override] = ACTIONS(1758), - [anon_sym_final] = ACTIONS(1758), - [anon_sym_class] = ACTIONS(1758), - [anon_sym_interface] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_typedef] = ACTIONS(1758), - [anon_sym_function] = ACTIONS(1758), - [anon_sym_var] = ACTIONS(1758), - [aux_sym_integer_token1] = ACTIONS(1758), - [aux_sym_integer_token2] = ACTIONS(1756), - [aux_sym_float_token1] = ACTIONS(1758), - [aux_sym_float_token2] = ACTIONS(1756), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [aux_sym_string_token1] = ACTIONS(1756), - [aux_sym_string_token3] = ACTIONS(1756), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1756), + [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(1948), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_using] = ACTIONS(1948), - [anon_sym_throw] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_cast] = ACTIONS(1948), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_DOLLARtype] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_untyped] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_this] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1948), - [anon_sym_AT_COLON] = ACTIONS(1946), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = ACTIONS(1948), - [anon_sym_new] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1948), - [anon_sym_GT_GT_GT] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [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(1948), - [anon_sym_LT_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1948), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_EQ_GT] = ACTIONS(1946), - [anon_sym_QMARK_QMARK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [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_enum] = 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(1946), - [aux_sym_float_token1] = ACTIONS(1948), - [aux_sym_float_token2] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [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(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(1762), - [anon_sym_POUND] = ACTIONS(1760), - [anon_sym_package] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(1762), - [anon_sym_import] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_using] = ACTIONS(1762), - [anon_sym_throw] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_switch] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_case] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_cast] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1760), - [anon_sym_DOLLARtype] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_untyped] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_this] = ACTIONS(1762), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_AT] = ACTIONS(1762), - [anon_sym_AT_COLON] = ACTIONS(1760), - [anon_sym_try] = ACTIONS(1762), - [anon_sym_catch] = ACTIONS(1762), - [anon_sym_else] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_do] = ACTIONS(1762), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_TILDE] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PLUS_PLUS] = ACTIONS(1760), - [anon_sym_DASH_DASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1762), - [anon_sym_LT_LT] = ACTIONS(1760), - [anon_sym_GT_GT] = ACTIONS(1762), - [anon_sym_GT_GT_GT] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1760), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1760), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_GT_EQ] = ACTIONS(1760), - [anon_sym_EQ_GT] = ACTIONS(1760), - [anon_sym_QMARK_QMARK] = ACTIONS(1760), - [anon_sym_EQ] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1760), - [anon_sym_null] = ACTIONS(1762), - [anon_sym_macro] = ACTIONS(1762), - [anon_sym_abstract] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_public] = ACTIONS(1762), - [anon_sym_private] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym_overload] = ACTIONS(1762), - [anon_sym_override] = ACTIONS(1762), - [anon_sym_final] = ACTIONS(1762), - [anon_sym_class] = ACTIONS(1762), - [anon_sym_interface] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_typedef] = ACTIONS(1762), - [anon_sym_function] = ACTIONS(1762), - [anon_sym_var] = ACTIONS(1762), - [aux_sym_integer_token1] = ACTIONS(1762), - [aux_sym_integer_token2] = ACTIONS(1760), - [aux_sym_float_token1] = ACTIONS(1762), - [aux_sym_float_token2] = ACTIONS(1760), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [aux_sym_string_token1] = ACTIONS(1760), - [aux_sym_string_token3] = ACTIONS(1760), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1760), + [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(1882), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_package] = ACTIONS(1882), - [anon_sym_DOT] = ACTIONS(1882), - [anon_sym_import] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1882), - [anon_sym_throw] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_switch] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_case] = ACTIONS(1882), - [anon_sym_default] = ACTIONS(1882), - [anon_sym_cast] = ACTIONS(1882), - [anon_sym_COMMA] = ACTIONS(1880), - [anon_sym_DOLLARtype] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_untyped] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1882), - [anon_sym_continue] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_this] = ACTIONS(1882), - [anon_sym_QMARK] = ACTIONS(1882), - [anon_sym_AT] = ACTIONS(1882), - [anon_sym_AT_COLON] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1882), - [anon_sym_catch] = ACTIONS(1882), - [anon_sym_else] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_new] = ACTIONS(1882), - [anon_sym_TILDE] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS_PLUS] = ACTIONS(1880), - [anon_sym_DASH_DASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_LT_LT] = ACTIONS(1880), - [anon_sym_GT_GT] = ACTIONS(1882), - [anon_sym_GT_GT_GT] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_AMP_AMP] = ACTIONS(1880), - [anon_sym_PIPE_PIPE] = ACTIONS(1880), - [anon_sym_EQ_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_LT_EQ] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1882), - [anon_sym_GT_EQ] = ACTIONS(1880), - [anon_sym_EQ_GT] = ACTIONS(1880), - [anon_sym_QMARK_QMARK] = ACTIONS(1880), - [anon_sym_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1880), - [anon_sym_null] = ACTIONS(1882), - [anon_sym_macro] = ACTIONS(1882), - [anon_sym_abstract] = ACTIONS(1882), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1882), - [anon_sym_private] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym_inline] = ACTIONS(1882), - [anon_sym_overload] = ACTIONS(1882), - [anon_sym_override] = ACTIONS(1882), - [anon_sym_final] = ACTIONS(1882), - [anon_sym_class] = ACTIONS(1882), - [anon_sym_interface] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_typedef] = ACTIONS(1882), - [anon_sym_function] = ACTIONS(1882), - [anon_sym_var] = ACTIONS(1882), - [aux_sym_integer_token1] = ACTIONS(1882), - [aux_sym_integer_token2] = ACTIONS(1880), - [aux_sym_float_token1] = ACTIONS(1882), - [aux_sym_float_token2] = ACTIONS(1880), - [anon_sym_true] = ACTIONS(1882), - [anon_sym_false] = ACTIONS(1882), - [aux_sym_string_token1] = ACTIONS(1880), - [aux_sym_string_token3] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1880), + [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(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_package] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_using] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_cast] = ACTIONS(1784), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_DOLLARtype] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_AT_COLON] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_catch] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1784), - [anon_sym_GT_GT_GT] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_QMARK_QMARK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), - [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_enum] = 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(1782), - [aux_sym_float_token1] = ACTIONS(1784), - [aux_sym_float_token2] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [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(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(1892), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_package] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1892), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_using] = ACTIONS(1892), - [anon_sym_throw] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_case] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_cast] = ACTIONS(1892), - [anon_sym_COMMA] = ACTIONS(1890), - [anon_sym_DOLLARtype] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_untyped] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1892), - [anon_sym_QMARK] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_AT_COLON] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1892), - [anon_sym_catch] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_do] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1890), - [anon_sym_PERCENT] = ACTIONS(1890), - [anon_sym_SLASH] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1890), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_GT_GT_GT] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [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(1892), - [anon_sym_LT_EQ] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_EQ] = ACTIONS(1890), - [anon_sym_EQ_GT] = ACTIONS(1890), - [anon_sym_QMARK_QMARK] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1890), - [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_enum] = 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(1890), - [aux_sym_float_token1] = ACTIONS(1892), - [aux_sym_float_token2] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [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(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(1766), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_package] = ACTIONS(1766), - [anon_sym_DOT] = ACTIONS(1766), - [anon_sym_import] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_using] = ACTIONS(1766), - [anon_sym_throw] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_switch] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_case] = ACTIONS(1766), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_cast] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_DOLLARtype] = ACTIONS(1764), - [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(1764), - [anon_sym_this] = ACTIONS(1766), - [anon_sym_QMARK] = ACTIONS(1766), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_AT_COLON] = ACTIONS(1764), - [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(1764), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_LT_LT] = ACTIONS(1764), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_GT_GT_GT] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1766), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_EQ_GT] = ACTIONS(1764), - [anon_sym_QMARK_QMARK] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1764), - [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(1764), - [aux_sym_float_token1] = ACTIONS(1766), - [aux_sym_float_token2] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [aux_sym_string_token1] = ACTIONS(1764), - [aux_sym_string_token3] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1764), + [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(1770), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_package] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_import] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_using] = ACTIONS(1770), - [anon_sym_throw] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_switch] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_case] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_cast] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_DOLLARtype] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_untyped] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_this] = ACTIONS(1770), - [anon_sym_QMARK] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_AT_COLON] = ACTIONS(1768), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_catch] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1768), - [anon_sym_DASH_DASH] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1768), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_GT_GT_GT] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_AMP_AMP] = ACTIONS(1768), - [anon_sym_PIPE_PIPE] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1768), - [anon_sym_BANG_EQ] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1768), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1768), - [anon_sym_EQ_GT] = ACTIONS(1768), - [anon_sym_QMARK_QMARK] = ACTIONS(1768), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1770), - [anon_sym_macro] = ACTIONS(1770), - [anon_sym_abstract] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_public] = ACTIONS(1770), - [anon_sym_private] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym_overload] = ACTIONS(1770), - [anon_sym_override] = ACTIONS(1770), - [anon_sym_final] = ACTIONS(1770), - [anon_sym_class] = ACTIONS(1770), - [anon_sym_interface] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_typedef] = ACTIONS(1770), - [anon_sym_function] = ACTIONS(1770), - [anon_sym_var] = ACTIONS(1770), - [aux_sym_integer_token1] = ACTIONS(1770), - [aux_sym_integer_token2] = ACTIONS(1768), - [aux_sym_float_token1] = ACTIONS(1770), - [aux_sym_float_token2] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [aux_sym_string_token1] = ACTIONS(1768), - [aux_sym_string_token3] = ACTIONS(1768), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1768), + [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(1792), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_package] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_import] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_using] = ACTIONS(1792), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_cast] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_DOLLARtype] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_untyped] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_this] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_AT_COLON] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_catch] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_do] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1790), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_GT_GT_GT] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [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(1792), - [anon_sym_LT_EQ] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1790), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_QMARK_QMARK] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [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_enum] = 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(1790), - [aux_sym_float_token1] = ACTIONS(1792), - [aux_sym_float_token2] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [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(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(1830), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_package] = ACTIONS(1830), - [anon_sym_DOT] = ACTIONS(1830), - [anon_sym_import] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_using] = ACTIONS(1830), - [anon_sym_throw] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_switch] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_case] = ACTIONS(1830), - [anon_sym_default] = ACTIONS(1830), - [anon_sym_cast] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_DOLLARtype] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_untyped] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_this] = ACTIONS(1830), - [anon_sym_QMARK] = ACTIONS(1830), - [anon_sym_AT] = ACTIONS(1830), - [anon_sym_AT_COLON] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1830), - [anon_sym_catch] = ACTIONS(1830), - [anon_sym_else] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_new] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_LT_LT] = ACTIONS(1828), - [anon_sym_GT_GT] = ACTIONS(1830), - [anon_sym_GT_GT_GT] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP_AMP] = ACTIONS(1828), - [anon_sym_PIPE_PIPE] = ACTIONS(1828), - [anon_sym_EQ_EQ] = ACTIONS(1828), - [anon_sym_BANG_EQ] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_LT_EQ] = ACTIONS(1828), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_GT_EQ] = ACTIONS(1828), - [anon_sym_EQ_GT] = ACTIONS(1828), - [anon_sym_QMARK_QMARK] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1830), - [anon_sym_macro] = ACTIONS(1830), - [anon_sym_abstract] = ACTIONS(1830), - [anon_sym_static] = ACTIONS(1830), - [anon_sym_public] = ACTIONS(1830), - [anon_sym_private] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_inline] = ACTIONS(1830), - [anon_sym_overload] = ACTIONS(1830), - [anon_sym_override] = ACTIONS(1830), - [anon_sym_final] = ACTIONS(1830), - [anon_sym_class] = ACTIONS(1830), - [anon_sym_interface] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1830), - [anon_sym_typedef] = ACTIONS(1830), - [anon_sym_function] = ACTIONS(1830), - [anon_sym_var] = ACTIONS(1830), - [aux_sym_integer_token1] = ACTIONS(1830), - [aux_sym_integer_token2] = ACTIONS(1828), - [aux_sym_float_token1] = ACTIONS(1830), - [aux_sym_float_token2] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1830), - [anon_sym_false] = ACTIONS(1830), - [aux_sym_string_token1] = ACTIONS(1828), - [aux_sym_string_token3] = ACTIONS(1828), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1828), + [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(1904), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_package] = ACTIONS(1904), - [anon_sym_DOT] = ACTIONS(1904), - [anon_sym_import] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_using] = ACTIONS(1904), - [anon_sym_throw] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_cast] = ACTIONS(1904), - [anon_sym_COMMA] = ACTIONS(1902), - [anon_sym_DOLLARtype] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_untyped] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_this] = ACTIONS(1904), - [anon_sym_QMARK] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1904), - [anon_sym_AT_COLON] = ACTIONS(1902), - [anon_sym_try] = ACTIONS(1904), - [anon_sym_catch] = ACTIONS(1904), - [anon_sym_else] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym_PERCENT] = ACTIONS(1902), - [anon_sym_SLASH] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_LT_LT] = ACTIONS(1902), - [anon_sym_GT_GT] = ACTIONS(1904), - [anon_sym_GT_GT_GT] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [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(1904), - [anon_sym_LT_EQ] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(1904), - [anon_sym_GT_EQ] = ACTIONS(1902), - [anon_sym_EQ_GT] = ACTIONS(1902), - [anon_sym_QMARK_QMARK] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1902), - [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_enum] = 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(1902), - [aux_sym_float_token1] = ACTIONS(1904), - [aux_sym_float_token2] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [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(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(1952), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1952), - [anon_sym_DOT] = ACTIONS(1952), - [anon_sym_import] = ACTIONS(1952), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_using] = ACTIONS(1952), - [anon_sym_throw] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_switch] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_cast] = ACTIONS(1952), - [anon_sym_COMMA] = ACTIONS(1950), - [anon_sym_DOLLARtype] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_untyped] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1952), - [anon_sym_QMARK] = ACTIONS(1952), - [anon_sym_AT] = ACTIONS(1952), - [anon_sym_AT_COLON] = ACTIONS(1950), - [anon_sym_try] = ACTIONS(1952), - [anon_sym_catch] = ACTIONS(1952), - [anon_sym_else] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_do] = ACTIONS(1952), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [anon_sym_PLUS_PLUS] = ACTIONS(1950), - [anon_sym_DASH_DASH] = ACTIONS(1950), - [anon_sym_PERCENT] = ACTIONS(1950), - [anon_sym_SLASH] = ACTIONS(1952), - [anon_sym_PLUS] = ACTIONS(1952), - [anon_sym_LT_LT] = ACTIONS(1950), - [anon_sym_GT_GT] = ACTIONS(1952), - [anon_sym_GT_GT_GT] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [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(1952), - [anon_sym_LT_EQ] = ACTIONS(1950), - [anon_sym_GT] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1950), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_QMARK_QMARK] = ACTIONS(1950), - [anon_sym_EQ] = ACTIONS(1952), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1950), - [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_enum] = 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(1950), - [aux_sym_float_token1] = ACTIONS(1952), - [aux_sym_float_token2] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [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(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(1956), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_package] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_using] = ACTIONS(1956), - [anon_sym_throw] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_switch] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_cast] = ACTIONS(1956), - [anon_sym_COMMA] = ACTIONS(1954), - [anon_sym_DOLLARtype] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_untyped] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_this] = ACTIONS(1956), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_AT_COLON] = ACTIONS(1954), - [anon_sym_try] = ACTIONS(1956), - [anon_sym_catch] = ACTIONS(1956), - [anon_sym_else] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_do] = ACTIONS(1956), - [anon_sym_new] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1954), - [anon_sym_DASH_DASH] = ACTIONS(1954), - [anon_sym_PERCENT] = ACTIONS(1954), - [anon_sym_SLASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1956), - [anon_sym_GT_GT_GT] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [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(1956), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1956), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_QMARK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1954), - [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_enum] = 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(1954), - [aux_sym_float_token1] = ACTIONS(1956), - [aux_sym_float_token2] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [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(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(1822), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_package] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_import] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_using] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_cast] = ACTIONS(1822), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_DOLLARtype] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_untyped] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_QMARK] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1822), - [anon_sym_AT_COLON] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_catch] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_new] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_LT_LT] = ACTIONS(1820), - [anon_sym_GT_GT] = ACTIONS(1822), - [anon_sym_GT_GT_GT] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym_AMP_AMP] = ACTIONS(1820), - [anon_sym_PIPE_PIPE] = ACTIONS(1820), - [anon_sym_EQ_EQ] = ACTIONS(1820), - [anon_sym_BANG_EQ] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1820), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_GT_EQ] = ACTIONS(1820), - [anon_sym_EQ_GT] = ACTIONS(1820), - [anon_sym_QMARK_QMARK] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_macro] = ACTIONS(1822), - [anon_sym_abstract] = ACTIONS(1822), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1822), - [anon_sym_private] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_overload] = ACTIONS(1822), - [anon_sym_override] = ACTIONS(1822), - [anon_sym_final] = ACTIONS(1822), - [anon_sym_class] = ACTIONS(1822), - [anon_sym_interface] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_function] = ACTIONS(1822), - [anon_sym_var] = ACTIONS(1822), - [aux_sym_integer_token1] = ACTIONS(1822), - [aux_sym_integer_token2] = ACTIONS(1820), - [aux_sym_float_token1] = ACTIONS(1822), - [aux_sym_float_token2] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [aux_sym_string_token1] = ACTIONS(1820), - [aux_sym_string_token3] = ACTIONS(1820), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1820), + [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(1826), - [anon_sym_POUND] = ACTIONS(1824), - [anon_sym_package] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1826), - [anon_sym_import] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_using] = ACTIONS(1826), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_cast] = ACTIONS(1826), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_DOLLARtype] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_untyped] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_this] = ACTIONS(1826), - [anon_sym_QMARK] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(1826), - [anon_sym_AT_COLON] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_SLASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_LT_LT] = ACTIONS(1824), - [anon_sym_GT_GT] = ACTIONS(1826), - [anon_sym_GT_GT_GT] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT] = ACTIONS(1826), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_EQ_GT] = ACTIONS(1824), - [anon_sym_QMARK_QMARK] = ACTIONS(1824), - [anon_sym_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_macro] = ACTIONS(1826), - [anon_sym_abstract] = ACTIONS(1826), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_public] = ACTIONS(1826), - [anon_sym_private] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [anon_sym_overload] = ACTIONS(1826), - [anon_sym_override] = ACTIONS(1826), - [anon_sym_final] = ACTIONS(1826), - [anon_sym_class] = ACTIONS(1826), - [anon_sym_interface] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_function] = ACTIONS(1826), - [anon_sym_var] = ACTIONS(1826), - [aux_sym_integer_token1] = ACTIONS(1826), - [aux_sym_integer_token2] = ACTIONS(1824), - [aux_sym_float_token1] = ACTIONS(1826), - [aux_sym_float_token2] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [aux_sym_string_token1] = ACTIONS(1824), - [aux_sym_string_token3] = ACTIONS(1824), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1824), + [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(1960), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_package] = ACTIONS(1960), - [anon_sym_DOT] = ACTIONS(1960), - [anon_sym_import] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_using] = ACTIONS(1960), - [anon_sym_throw] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_case] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_cast] = ACTIONS(1960), - [anon_sym_COMMA] = ACTIONS(1958), - [anon_sym_DOLLARtype] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_untyped] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_this] = ACTIONS(1960), - [anon_sym_QMARK] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1960), - [anon_sym_AT_COLON] = ACTIONS(1958), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_catch] = ACTIONS(1960), - [anon_sym_else] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_LT_LT] = ACTIONS(1958), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_GT_GT_GT] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [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(1960), - [anon_sym_LT_EQ] = ACTIONS(1958), - [anon_sym_GT] = ACTIONS(1960), - [anon_sym_GT_EQ] = ACTIONS(1958), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_QMARK] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1958), - [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_enum] = 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(1958), - [aux_sym_float_token1] = ACTIONS(1960), - [aux_sym_float_token2] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [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(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] = { - [sym_identifier] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_package] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_import] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_using] = ACTIONS(1476), - [anon_sym_throw] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_this] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_AT_COLON] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PERCENT] = ACTIONS(1474), - [anon_sym_SLASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1474), - [anon_sym_GT_GT] = ACTIONS(1476), - [anon_sym_GT_GT_GT] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_PIPE_PIPE] = ACTIONS(1474), - [anon_sym_EQ_EQ] = ACTIONS(1474), - [anon_sym_BANG_EQ] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_GT_EQ] = ACTIONS(1474), - [anon_sym_EQ_GT] = ACTIONS(1474), - [anon_sym_QMARK_QMARK] = ACTIONS(1474), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1474), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_macro] = ACTIONS(1476), - [anon_sym_abstract] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_public] = ACTIONS(1476), - [anon_sym_private] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym_overload] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1476), - [anon_sym_class] = ACTIONS(1476), - [anon_sym_interface] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [aux_sym_integer_token1] = ACTIONS(1476), - [aux_sym_integer_token2] = ACTIONS(1474), - [aux_sym_float_token1] = ACTIONS(1476), - [aux_sym_float_token2] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1474), - [aux_sym_string_token3] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1474), + [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(1838), - [anon_sym_POUND] = ACTIONS(1836), - [anon_sym_package] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_import] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_using] = ACTIONS(1838), - [anon_sym_throw] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1836), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_cast] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1836), - [anon_sym_DOLLARtype] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_untyped] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_this] = ACTIONS(1838), - [anon_sym_QMARK] = ACTIONS(1838), - [anon_sym_AT] = ACTIONS(1838), - [anon_sym_AT_COLON] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1838), - [anon_sym_catch] = ACTIONS(1838), - [anon_sym_else] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_new] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PERCENT] = ACTIONS(1836), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1838), - [anon_sym_GT_GT_GT] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_AMP_AMP] = ACTIONS(1836), - [anon_sym_PIPE_PIPE] = ACTIONS(1836), - [anon_sym_EQ_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_GT] = ACTIONS(1838), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_EQ_GT] = ACTIONS(1836), - [anon_sym_QMARK_QMARK] = ACTIONS(1836), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1836), - [anon_sym_null] = ACTIONS(1838), - [anon_sym_macro] = ACTIONS(1838), - [anon_sym_abstract] = ACTIONS(1838), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_public] = ACTIONS(1838), - [anon_sym_private] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [anon_sym_overload] = ACTIONS(1838), - [anon_sym_override] = ACTIONS(1838), - [anon_sym_final] = ACTIONS(1838), - [anon_sym_class] = ACTIONS(1838), - [anon_sym_interface] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_function] = ACTIONS(1838), - [anon_sym_var] = ACTIONS(1838), - [aux_sym_integer_token1] = ACTIONS(1838), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token1] = ACTIONS(1838), - [aux_sym_float_token2] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [aux_sym_string_token1] = ACTIONS(1836), - [aux_sym_string_token3] = ACTIONS(1836), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1836), + [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(1964), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_package] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_using] = ACTIONS(1964), - [anon_sym_throw] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_switch] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_case] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_cast] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1962), - [anon_sym_DOLLARtype] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_untyped] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_this] = ACTIONS(1964), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1964), - [anon_sym_AT_COLON] = ACTIONS(1962), - [anon_sym_try] = ACTIONS(1964), - [anon_sym_catch] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_do] = ACTIONS(1964), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1962), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_GT_GT_GT] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [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(1964), - [anon_sym_LT_EQ] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1964), - [anon_sym_GT_EQ] = ACTIONS(1962), - [anon_sym_EQ_GT] = ACTIONS(1962), - [anon_sym_QMARK_QMARK] = ACTIONS(1962), - [anon_sym_EQ] = ACTIONS(1964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1962), - [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_enum] = 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(1962), - [aux_sym_float_token1] = ACTIONS(1964), - [aux_sym_float_token2] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [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(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(1968), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_package] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_using] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_cast] = ACTIONS(1968), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_DOLLARtype] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_untyped] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [anon_sym_QMARK] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1968), - [anon_sym_AT_COLON] = ACTIONS(1966), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_catch] = ACTIONS(1968), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_PERCENT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_GT_GT_GT] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [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(1968), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1966), - [anon_sym_QMARK_QMARK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1966), - [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_enum] = 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(1966), - [aux_sym_float_token1] = ACTIONS(1968), - [aux_sym_float_token2] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [aux_sym_string_token1] = ACTIONS(1966), - [aux_sym_string_token3] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1966), + [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(1896), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_package] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(1896), - [anon_sym_import] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_using] = ACTIONS(1896), - [anon_sym_throw] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_case] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_cast] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1894), - [anon_sym_DOLLARtype] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_untyped] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_this] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1896), - [anon_sym_AT_COLON] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1896), - [anon_sym_catch] = ACTIONS(1896), - [anon_sym_else] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1894), - [anon_sym_SLASH] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_LT_LT] = ACTIONS(1894), - [anon_sym_GT_GT] = ACTIONS(1896), - [anon_sym_GT_GT_GT] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [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(1896), - [anon_sym_LT_EQ] = ACTIONS(1894), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_EQ] = ACTIONS(1894), - [anon_sym_EQ_GT] = ACTIONS(1894), - [anon_sym_QMARK_QMARK] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1894), - [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_enum] = 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(1894), - [aux_sym_float_token1] = ACTIONS(1896), - [aux_sym_float_token2] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [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(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(1878), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_package] = ACTIONS(1878), - [anon_sym_DOT] = ACTIONS(1878), - [anon_sym_import] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_using] = ACTIONS(1878), - [anon_sym_throw] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_switch] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_case] = ACTIONS(1878), - [anon_sym_default] = ACTIONS(1878), - [anon_sym_cast] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1876), - [anon_sym_DOLLARtype] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_untyped] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_this] = ACTIONS(1878), - [anon_sym_QMARK] = ACTIONS(1878), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_AT_COLON] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_catch] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_new] = ACTIONS(1878), - [anon_sym_TILDE] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_PERCENT] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1876), - [anon_sym_GT_GT] = ACTIONS(1878), - [anon_sym_GT_GT_GT] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_CARET] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_EQ_EQ] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_LT_EQ] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_EQ] = ACTIONS(1876), - [anon_sym_EQ_GT] = ACTIONS(1876), - [anon_sym_QMARK_QMARK] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1876), - [anon_sym_null] = ACTIONS(1878), - [anon_sym_macro] = ACTIONS(1878), - [anon_sym_abstract] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1878), - [anon_sym_public] = ACTIONS(1878), - [anon_sym_private] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_inline] = ACTIONS(1878), - [anon_sym_overload] = ACTIONS(1878), - [anon_sym_override] = ACTIONS(1878), - [anon_sym_final] = ACTIONS(1878), - [anon_sym_class] = ACTIONS(1878), - [anon_sym_interface] = ACTIONS(1878), - [anon_sym_enum] = ACTIONS(1878), - [anon_sym_typedef] = ACTIONS(1878), - [anon_sym_function] = ACTIONS(1878), - [anon_sym_var] = ACTIONS(1878), - [aux_sym_integer_token1] = ACTIONS(1878), - [aux_sym_integer_token2] = ACTIONS(1876), - [aux_sym_float_token1] = ACTIONS(1878), - [aux_sym_float_token2] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [aux_sym_string_token1] = ACTIONS(1876), - [aux_sym_string_token3] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1876), + [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(1300), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_using] = ACTIONS(1300), - [anon_sym_throw] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1302), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_AT_COLON] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_macro] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_public] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_overload] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_interface] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_function] = ACTIONS(1300), - [anon_sym_var] = ACTIONS(1300), - [aux_sym_integer_token1] = ACTIONS(1300), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1302), + [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(1850), - [anon_sym_POUND] = ACTIONS(1848), - [anon_sym_package] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1850), - [anon_sym_import] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_using] = ACTIONS(1850), - [anon_sym_throw] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_switch] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_case] = ACTIONS(1850), - [anon_sym_default] = ACTIONS(1850), - [anon_sym_cast] = ACTIONS(1850), - [anon_sym_COMMA] = ACTIONS(1848), - [anon_sym_DOLLARtype] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_untyped] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_this] = ACTIONS(1850), - [anon_sym_QMARK] = ACTIONS(1850), - [anon_sym_AT] = ACTIONS(1850), - [anon_sym_AT_COLON] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1850), - [anon_sym_catch] = ACTIONS(1850), - [anon_sym_else] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_new] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PERCENT] = ACTIONS(1848), - [anon_sym_SLASH] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_LT_LT] = ACTIONS(1848), - [anon_sym_GT_GT] = ACTIONS(1850), - [anon_sym_GT_GT_GT] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [anon_sym_EQ_EQ] = ACTIONS(1848), - [anon_sym_BANG_EQ] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_LT_EQ] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1850), - [anon_sym_GT_EQ] = ACTIONS(1848), - [anon_sym_EQ_GT] = ACTIONS(1848), - [anon_sym_QMARK_QMARK] = ACTIONS(1848), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1848), - [anon_sym_null] = ACTIONS(1850), - [anon_sym_macro] = ACTIONS(1850), - [anon_sym_abstract] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_public] = ACTIONS(1850), - [anon_sym_private] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [anon_sym_overload] = ACTIONS(1850), - [anon_sym_override] = ACTIONS(1850), - [anon_sym_final] = ACTIONS(1850), - [anon_sym_class] = ACTIONS(1850), - [anon_sym_interface] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1850), - [anon_sym_function] = ACTIONS(1850), - [anon_sym_var] = ACTIONS(1850), - [aux_sym_integer_token1] = ACTIONS(1850), - [aux_sym_integer_token2] = ACTIONS(1848), - [aux_sym_float_token1] = ACTIONS(1850), - [aux_sym_float_token2] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [aux_sym_string_token1] = ACTIONS(1848), - [aux_sym_string_token3] = ACTIONS(1848), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1848), + [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(1854), - [anon_sym_POUND] = ACTIONS(1852), - [anon_sym_package] = ACTIONS(1854), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_import] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_using] = ACTIONS(1854), - [anon_sym_throw] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_cast] = ACTIONS(1854), - [anon_sym_COMMA] = ACTIONS(1852), - [anon_sym_DOLLARtype] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_untyped] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_this] = ACTIONS(1854), - [anon_sym_QMARK] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(1854), - [anon_sym_AT_COLON] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1854), - [anon_sym_catch] = ACTIONS(1854), - [anon_sym_else] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_new] = ACTIONS(1854), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_PERCENT] = ACTIONS(1852), - [anon_sym_SLASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_LT_LT] = ACTIONS(1852), - [anon_sym_GT_GT] = ACTIONS(1854), - [anon_sym_GT_GT_GT] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_AMP_AMP] = ACTIONS(1852), - [anon_sym_PIPE_PIPE] = ACTIONS(1852), - [anon_sym_EQ_EQ] = ACTIONS(1852), - [anon_sym_BANG_EQ] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_LT_EQ] = ACTIONS(1852), - [anon_sym_GT] = ACTIONS(1854), - [anon_sym_GT_EQ] = ACTIONS(1852), - [anon_sym_EQ_GT] = ACTIONS(1852), - [anon_sym_QMARK_QMARK] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1852), - [anon_sym_null] = ACTIONS(1854), - [anon_sym_macro] = ACTIONS(1854), - [anon_sym_abstract] = ACTIONS(1854), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_public] = ACTIONS(1854), - [anon_sym_private] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [anon_sym_overload] = ACTIONS(1854), - [anon_sym_override] = ACTIONS(1854), - [anon_sym_final] = ACTIONS(1854), - [anon_sym_class] = ACTIONS(1854), - [anon_sym_interface] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_function] = ACTIONS(1854), - [anon_sym_var] = ACTIONS(1854), - [aux_sym_integer_token1] = ACTIONS(1854), - [aux_sym_integer_token2] = ACTIONS(1852), - [aux_sym_float_token1] = ACTIONS(1854), - [aux_sym_float_token2] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1854), - [anon_sym_false] = ACTIONS(1854), - [aux_sym_string_token1] = ACTIONS(1852), - [aux_sym_string_token3] = ACTIONS(1852), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1852), + [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(1858), - [anon_sym_POUND] = ACTIONS(1856), - [anon_sym_package] = ACTIONS(1858), - [anon_sym_DOT] = ACTIONS(1858), - [anon_sym_import] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_using] = ACTIONS(1858), - [anon_sym_throw] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_switch] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_case] = ACTIONS(1858), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_cast] = ACTIONS(1858), - [anon_sym_COMMA] = ACTIONS(1856), - [anon_sym_DOLLARtype] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_untyped] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_this] = ACTIONS(1858), - [anon_sym_QMARK] = ACTIONS(1858), - [anon_sym_AT] = ACTIONS(1858), - [anon_sym_AT_COLON] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1858), - [anon_sym_catch] = ACTIONS(1858), - [anon_sym_else] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_do] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_SLASH] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_LT_LT] = ACTIONS(1856), - [anon_sym_GT_GT] = ACTIONS(1858), - [anon_sym_GT_GT_GT] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP_AMP] = ACTIONS(1856), - [anon_sym_PIPE_PIPE] = ACTIONS(1856), - [anon_sym_EQ_EQ] = ACTIONS(1856), - [anon_sym_BANG_EQ] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_LT_EQ] = ACTIONS(1856), - [anon_sym_GT] = ACTIONS(1858), - [anon_sym_GT_EQ] = ACTIONS(1856), - [anon_sym_EQ_GT] = ACTIONS(1856), - [anon_sym_QMARK_QMARK] = ACTIONS(1856), - [anon_sym_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1856), - [anon_sym_null] = ACTIONS(1858), - [anon_sym_macro] = ACTIONS(1858), - [anon_sym_abstract] = ACTIONS(1858), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_public] = ACTIONS(1858), - [anon_sym_private] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1858), - [anon_sym_inline] = ACTIONS(1858), - [anon_sym_overload] = ACTIONS(1858), - [anon_sym_override] = ACTIONS(1858), - [anon_sym_final] = ACTIONS(1858), - [anon_sym_class] = ACTIONS(1858), - [anon_sym_interface] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [anon_sym_typedef] = ACTIONS(1858), - [anon_sym_function] = ACTIONS(1858), - [anon_sym_var] = ACTIONS(1858), - [aux_sym_integer_token1] = ACTIONS(1858), - [aux_sym_integer_token2] = ACTIONS(1856), - [aux_sym_float_token1] = ACTIONS(1858), - [aux_sym_float_token2] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [aux_sym_string_token1] = ACTIONS(1856), - [aux_sym_string_token3] = ACTIONS(1856), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1856), + [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(1874), - [anon_sym_POUND] = ACTIONS(1872), - [anon_sym_package] = ACTIONS(1874), - [anon_sym_DOT] = ACTIONS(1874), - [anon_sym_import] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_using] = ACTIONS(1874), - [anon_sym_throw] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_switch] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_case] = ACTIONS(1874), - [anon_sym_default] = ACTIONS(1874), - [anon_sym_cast] = ACTIONS(1874), - [anon_sym_COMMA] = ACTIONS(1872), - [anon_sym_DOLLARtype] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_untyped] = ACTIONS(1874), - [anon_sym_break] = ACTIONS(1874), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_this] = ACTIONS(1874), - [anon_sym_QMARK] = ACTIONS(1874), - [anon_sym_AT] = ACTIONS(1874), - [anon_sym_AT_COLON] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1874), - [anon_sym_catch] = ACTIONS(1874), - [anon_sym_else] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_while] = ACTIONS(1874), - [anon_sym_do] = ACTIONS(1874), - [anon_sym_new] = ACTIONS(1874), - [anon_sym_TILDE] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PLUS_PLUS] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_SLASH] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_LT_LT] = ACTIONS(1872), - [anon_sym_GT_GT] = ACTIONS(1874), - [anon_sym_GT_GT_GT] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_AMP_AMP] = ACTIONS(1872), - [anon_sym_PIPE_PIPE] = ACTIONS(1872), - [anon_sym_EQ_EQ] = ACTIONS(1872), - [anon_sym_BANG_EQ] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT] = ACTIONS(1874), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_EQ_GT] = ACTIONS(1872), - [anon_sym_QMARK_QMARK] = ACTIONS(1872), - [anon_sym_EQ] = ACTIONS(1874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1872), - [anon_sym_null] = ACTIONS(1874), - [anon_sym_macro] = ACTIONS(1874), - [anon_sym_abstract] = ACTIONS(1874), - [anon_sym_static] = ACTIONS(1874), - [anon_sym_public] = ACTIONS(1874), - [anon_sym_private] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1874), - [anon_sym_inline] = ACTIONS(1874), - [anon_sym_overload] = ACTIONS(1874), - [anon_sym_override] = ACTIONS(1874), - [anon_sym_final] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1874), - [anon_sym_interface] = ACTIONS(1874), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_typedef] = ACTIONS(1874), - [anon_sym_function] = ACTIONS(1874), - [anon_sym_var] = ACTIONS(1874), - [aux_sym_integer_token1] = ACTIONS(1874), - [aux_sym_integer_token2] = ACTIONS(1872), - [aux_sym_float_token1] = ACTIONS(1874), - [aux_sym_float_token2] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [aux_sym_string_token1] = ACTIONS(1872), - [aux_sym_string_token3] = ACTIONS(1872), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1872), + [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_else_clause] = STATE(606), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_case] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_catch] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2610), - [sym__closing_brace_marker] = ACTIONS(2608), + [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(2612), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_package] = ACTIONS(2612), - [anon_sym_import] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2612), - [anon_sym_throw] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2612), - [anon_sym_default] = ACTIONS(2612), - [anon_sym_cast] = ACTIONS(2612), - [anon_sym_DOLLARtype] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_untyped] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_this] = ACTIONS(2612), - [anon_sym_AT] = ACTIONS(2612), - [anon_sym_AT_COLON] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2612), - [anon_sym_catch] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_do] = ACTIONS(2612), - [anon_sym_new] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2614), - [anon_sym_PERCENT] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2612), - [anon_sym_PLUS] = ACTIONS(2612), - [anon_sym_LT_LT] = ACTIONS(2614), - [anon_sym_GT_GT] = ACTIONS(2612), - [anon_sym_GT_GT_GT] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT] = ACTIONS(2612), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_EQ_GT] = ACTIONS(2614), - [anon_sym_QMARK_QMARK] = ACTIONS(2614), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2612), - [anon_sym_macro] = ACTIONS(2612), - [anon_sym_abstract] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_inline] = ACTIONS(2612), - [anon_sym_overload] = ACTIONS(2612), - [anon_sym_override] = ACTIONS(2612), - [anon_sym_final] = ACTIONS(2612), - [anon_sym_class] = ACTIONS(2612), - [anon_sym_interface] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2612), - [anon_sym_function] = ACTIONS(2612), - [anon_sym_var] = ACTIONS(2612), - [aux_sym_integer_token1] = ACTIONS(2612), - [aux_sym_integer_token2] = ACTIONS(2614), - [aux_sym_float_token1] = ACTIONS(2612), - [aux_sym_float_token2] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [aux_sym_string_token1] = ACTIONS(2614), - [aux_sym_string_token3] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2616), - [sym__closing_brace_marker] = ACTIONS(2614), + [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(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(2618), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1778), + [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(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_package] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_import] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(1626), - [anon_sym_throw] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_COLON] = ACTIONS(2618), - [anon_sym_cast] = ACTIONS(1626), - [anon_sym_DOLLARtype] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_untyped] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_this] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_AT_COLON] = ACTIONS(1624), - [anon_sym_try] = ACTIONS(1626), - [anon_sym_catch] = ACTIONS(1626), - [anon_sym_else] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(1626), - [anon_sym_new] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1624), - [anon_sym_DASH_DASH] = ACTIONS(1624), - [anon_sym_PERCENT] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_LT_LT] = ACTIONS(1624), - [anon_sym_GT_GT] = ACTIONS(1626), - [anon_sym_GT_GT_GT] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1624), - [anon_sym_PIPE_PIPE] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1626), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_EQ_GT] = ACTIONS(1624), - [anon_sym_QMARK_QMARK] = ACTIONS(1624), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), - [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_enum] = 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(1624), - [aux_sym_float_token1] = ACTIONS(1626), - [aux_sym_float_token2] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [aux_sym_string_token1] = ACTIONS(1624), - [aux_sym_string_token3] = ACTIONS(1624), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1624), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(2622), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(2624), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2602), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_package] = ACTIONS(2602), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_import] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_cast] = ACTIONS(2602), - [anon_sym_DOLLARtype] = ACTIONS(2604), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_untyped] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_this] = ACTIONS(2602), - [anon_sym_QMARK] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(2602), - [anon_sym_AT_COLON] = ACTIONS(2604), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_catch] = ACTIONS(2602), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_PERCENT] = ACTIONS(1852), - [anon_sym_SLASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_LT_LT] = ACTIONS(1852), - [anon_sym_GT_GT] = ACTIONS(1854), - [anon_sym_GT_GT_GT] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_AMP_AMP] = ACTIONS(1852), - [anon_sym_PIPE_PIPE] = ACTIONS(1852), - [anon_sym_EQ_EQ] = ACTIONS(1852), - [anon_sym_BANG_EQ] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_LT_EQ] = ACTIONS(1852), - [anon_sym_GT] = ACTIONS(1854), - [anon_sym_GT_EQ] = ACTIONS(1852), - [anon_sym_EQ_GT] = ACTIONS(1852), - [anon_sym_QMARK_QMARK] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1852), - [anon_sym_null] = ACTIONS(2602), - [anon_sym_macro] = ACTIONS(2602), - [anon_sym_abstract] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_public] = ACTIONS(2602), - [anon_sym_private] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_overload] = ACTIONS(2602), - [anon_sym_override] = ACTIONS(2602), - [anon_sym_final] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_interface] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_function] = ACTIONS(2602), - [anon_sym_var] = ACTIONS(2602), - [aux_sym_integer_token1] = ACTIONS(2602), - [aux_sym_integer_token2] = ACTIONS(2604), - [aux_sym_float_token1] = ACTIONS(2602), - [aux_sym_float_token2] = ACTIONS(2604), - [anon_sym_true] = ACTIONS(2602), - [anon_sym_false] = ACTIONS(2602), - [aux_sym_string_token1] = ACTIONS(2604), - [aux_sym_string_token3] = ACTIONS(2604), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1852), + [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(2626), - [anon_sym_POUND] = ACTIONS(2628), - [anon_sym_package] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_cast] = ACTIONS(2626), - [anon_sym_DOLLARtype] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_untyped] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_this] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2626), - [anon_sym_AT_COLON] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_catch] = ACTIONS(2626), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_GT_GT_GT] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2628), - [anon_sym_EQ_GT] = ACTIONS(2628), - [anon_sym_QMARK_QMARK] = ACTIONS(2628), - [anon_sym_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_macro] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_extern] = ACTIONS(2626), - [anon_sym_inline] = ACTIONS(2626), - [anon_sym_overload] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_typedef] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [aux_sym_integer_token1] = ACTIONS(2626), - [aux_sym_integer_token2] = ACTIONS(2628), - [aux_sym_float_token1] = ACTIONS(2626), - [aux_sym_float_token2] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [aux_sym_string_token1] = ACTIONS(2628), - [aux_sym_string_token3] = ACTIONS(2628), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2630), - [sym__closing_brace_marker] = ACTIONS(2628), + [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__rangeOperator] = STATE(2481), - [sym_identifier] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [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(1452), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2480), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_interface] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_function] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1452), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1452), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1448), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1624), - [sym_identifier] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_package] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_import] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(1626), - [anon_sym_throw] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_COLON] = ACTIONS(2622), - [anon_sym_cast] = ACTIONS(1626), - [anon_sym_DOLLARtype] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_untyped] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_this] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_AT_COLON] = ACTIONS(1624), - [anon_sym_try] = ACTIONS(1626), - [anon_sym_catch] = ACTIONS(1626), - [anon_sym_else] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(1626), - [anon_sym_new] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1624), - [anon_sym_DASH_DASH] = ACTIONS(1624), - [anon_sym_PERCENT] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_LT_LT] = ACTIONS(1624), - [anon_sym_GT_GT] = ACTIONS(1626), - [anon_sym_GT_GT_GT] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1624), - [anon_sym_PIPE_PIPE] = ACTIONS(1624), - [anon_sym_EQ_EQ] = ACTIONS(1624), - [anon_sym_BANG_EQ] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_LT_EQ] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1626), - [anon_sym_GT_EQ] = ACTIONS(1624), - [anon_sym_EQ_GT] = ACTIONS(1624), - [anon_sym_QMARK_QMARK] = ACTIONS(1624), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1624), - [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_enum] = 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(1624), - [aux_sym_float_token1] = ACTIONS(1626), - [aux_sym_float_token2] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [aux_sym_string_token1] = ACTIONS(1624), - [aux_sym_string_token3] = ACTIONS(1624), - [sym_comment] = ACTIONS(3), + [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(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(2618), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1778), + [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_else_clause] = STATE(606), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_case] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_catch] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2608), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_package] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1908), - [anon_sym_import] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_using] = ACTIONS(1908), - [anon_sym_throw] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_cast] = ACTIONS(1908), - [anon_sym_DOLLARtype] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_untyped] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_this] = ACTIONS(1908), - [anon_sym_QMARK] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1908), - [anon_sym_AT_COLON] = ACTIONS(1906), - [anon_sym_try] = ACTIONS(1908), - [anon_sym_catch] = ACTIONS(1908), - [anon_sym_else] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_do] = ACTIONS(1908), - [anon_sym_new] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_LT_LT] = ACTIONS(1906), - [anon_sym_GT_GT] = ACTIONS(1908), - [anon_sym_GT_GT_GT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [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(1908), - [anon_sym_LT_EQ] = ACTIONS(1906), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_GT_EQ] = ACTIONS(1906), - [anon_sym_EQ_GT] = ACTIONS(1906), - [anon_sym_QMARK_QMARK] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1906), - [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_enum] = 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(1906), - [aux_sym_float_token1] = ACTIONS(1908), - [aux_sym_float_token2] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [aux_sym_string_token1] = ACTIONS(1906), - [aux_sym_string_token3] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1906), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1864), - [anon_sym_package] = ACTIONS(1866), - [anon_sym_DOT] = ACTIONS(1866), - [anon_sym_import] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_using] = ACTIONS(1866), - [anon_sym_throw] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_cast] = ACTIONS(1866), - [anon_sym_DOLLARtype] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_untyped] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_this] = ACTIONS(1866), - [anon_sym_QMARK] = ACTIONS(1866), - [anon_sym_AT] = ACTIONS(1866), - [anon_sym_AT_COLON] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1866), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_new] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PERCENT] = ACTIONS(1864), - [anon_sym_SLASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_LT_LT] = ACTIONS(1864), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_GT_GT_GT] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1864), - [anon_sym_EQ_EQ] = ACTIONS(1864), - [anon_sym_BANG_EQ] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_LT_EQ] = ACTIONS(1864), - [anon_sym_GT] = ACTIONS(1866), - [anon_sym_GT_EQ] = ACTIONS(1864), - [anon_sym_EQ_GT] = ACTIONS(1864), - [anon_sym_QMARK_QMARK] = ACTIONS(1864), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1864), - [anon_sym_null] = ACTIONS(1866), - [anon_sym_macro] = ACTIONS(1866), - [anon_sym_abstract] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_public] = ACTIONS(1866), - [anon_sym_private] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [anon_sym_overload] = ACTIONS(1866), - [anon_sym_override] = ACTIONS(1866), - [anon_sym_final] = ACTIONS(1866), - [anon_sym_class] = ACTIONS(1866), - [anon_sym_interface] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_function] = ACTIONS(1866), - [anon_sym_var] = ACTIONS(1866), - [aux_sym_integer_token1] = ACTIONS(1866), - [aux_sym_integer_token2] = ACTIONS(1864), - [aux_sym_float_token1] = ACTIONS(1866), - [aux_sym_float_token2] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [aux_sym_string_token1] = ACTIONS(1864), - [aux_sym_string_token3] = ACTIONS(1864), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1864), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_package] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_using] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_COLON] = ACTIONS(1888), - [anon_sym_cast] = ACTIONS(1784), - [anon_sym_DOLLARtype] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(2624), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_AT_COLON] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_catch] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1784), - [anon_sym_GT_GT_GT] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_QMARK_QMARK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), - [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_enum] = 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(1782), - [aux_sym_float_token1] = ACTIONS(1784), - [aux_sym_float_token2] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [aux_sym_string_token1] = ACTIONS(1782), - [aux_sym_string_token3] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), + [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(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(2618), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1778), + [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(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(2618), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [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(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] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_package] = ACTIONS(1932), - [anon_sym_DOT] = ACTIONS(1932), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_using] = ACTIONS(1932), - [anon_sym_throw] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_cast] = ACTIONS(1932), - [anon_sym_DOLLARtype] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_untyped] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_this] = ACTIONS(1932), - [anon_sym_QMARK] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1932), - [anon_sym_AT_COLON] = ACTIONS(1930), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_catch] = ACTIONS(1932), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_do] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1932), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1932), - [anon_sym_GT_GT_GT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [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(1932), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_QMARK_QMARK] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), - [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_enum] = 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(1930), - [aux_sym_float_token1] = ACTIONS(1932), - [aux_sym_float_token2] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [aux_sym_string_token1] = ACTIONS(1930), - [aux_sym_string_token3] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1930), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_throw] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_cast] = ACTIONS(1972), - [anon_sym_DOLLARtype] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_untyped] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_this] = ACTIONS(1972), - [anon_sym_QMARK] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_AT_COLON] = ACTIONS(1970), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_GT_GT_GT] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [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(1972), - [anon_sym_LT_EQ] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_GT_EQ] = ACTIONS(1970), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), - [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_enum] = 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(1970), - [aux_sym_float_token1] = ACTIONS(1972), - [aux_sym_float_token2] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [aux_sym_string_token1] = ACTIONS(1970), - [aux_sym_string_token3] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1970), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(2622), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(2638), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(2622), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(2638), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), + [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_else_clause] = STATE(444), - [sym_identifier] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_package] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_case] = ACTIONS(2640), - [anon_sym_default] = ACTIONS(2640), - [anon_sym_cast] = ACTIONS(2640), - [anon_sym_DOLLARtype] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_untyped] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_AT_COLON] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_catch] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_LT_LT] = ACTIONS(2642), - [anon_sym_GT_GT] = ACTIONS(2640), - [anon_sym_GT_GT_GT] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2642), - [anon_sym_AMP_AMP] = ACTIONS(2642), - [anon_sym_PIPE_PIPE] = ACTIONS(2642), - [anon_sym_EQ_EQ] = ACTIONS(2642), - [anon_sym_BANG_EQ] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_LT_EQ] = ACTIONS(2642), - [anon_sym_GT] = ACTIONS(2640), - [anon_sym_GT_EQ] = ACTIONS(2642), - [anon_sym_EQ_GT] = ACTIONS(2642), - [anon_sym_QMARK_QMARK] = ACTIONS(2642), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2640), - [anon_sym_macro] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_inline] = ACTIONS(2640), - [anon_sym_overload] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_final] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [aux_sym_integer_token1] = ACTIONS(2640), - [aux_sym_integer_token2] = ACTIONS(2642), - [aux_sym_float_token1] = ACTIONS(2640), - [aux_sym_float_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [aux_sym_string_token1] = ACTIONS(2642), - [aux_sym_string_token3] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2642), + [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(2644), - [anon_sym_POUND] = ACTIONS(2646), - [anon_sym_package] = ACTIONS(2644), - [anon_sym_import] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2644), - [anon_sym_throw] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_switch] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_case] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_cast] = ACTIONS(2644), - [anon_sym_DOLLARtype] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_untyped] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_this] = ACTIONS(2644), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_AT_COLON] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_catch] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), - [anon_sym_SLASH] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_LT_LT] = ACTIONS(2646), - [anon_sym_GT_GT] = ACTIONS(2644), - [anon_sym_GT_GT_GT] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP_AMP] = ACTIONS(2646), - [anon_sym_PIPE_PIPE] = ACTIONS(2646), - [anon_sym_EQ_EQ] = ACTIONS(2646), - [anon_sym_BANG_EQ] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2644), - [anon_sym_LT_EQ] = ACTIONS(2646), - [anon_sym_GT] = ACTIONS(2644), - [anon_sym_GT_EQ] = ACTIONS(2646), - [anon_sym_EQ_GT] = ACTIONS(2646), - [anon_sym_QMARK_QMARK] = ACTIONS(2646), - [anon_sym_EQ] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2646), - [anon_sym_null] = ACTIONS(2644), - [anon_sym_macro] = ACTIONS(2644), - [anon_sym_abstract] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_public] = ACTIONS(2644), - [anon_sym_private] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_inline] = ACTIONS(2644), - [anon_sym_overload] = ACTIONS(2644), - [anon_sym_override] = ACTIONS(2644), - [anon_sym_final] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2644), - [anon_sym_interface] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(2644), - [anon_sym_var] = ACTIONS(2644), - [aux_sym_integer_token1] = ACTIONS(2644), - [aux_sym_integer_token2] = ACTIONS(2646), - [aux_sym_float_token1] = ACTIONS(2644), - [aux_sym_float_token2] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [aux_sym_string_token1] = ACTIONS(2646), - [aux_sym_string_token3] = ACTIONS(2646), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2648), - [sym__closing_brace_marker] = ACTIONS(2646), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(2622), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(2624), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), + [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_else_clause] = STATE(422), - [sym_identifier] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2652), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_case] = ACTIONS(2650), - [anon_sym_default] = ACTIONS(2650), - [anon_sym_cast] = ACTIONS(2650), - [anon_sym_DOLLARtype] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_untyped] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2650), - [anon_sym_AT_COLON] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_catch] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_PERCENT] = ACTIONS(2652), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_LT_LT] = ACTIONS(2652), - [anon_sym_GT_GT] = ACTIONS(2650), - [anon_sym_GT_GT_GT] = ACTIONS(2652), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_CARET] = ACTIONS(2652), - [anon_sym_AMP_AMP] = ACTIONS(2652), - [anon_sym_PIPE_PIPE] = ACTIONS(2652), - [anon_sym_EQ_EQ] = ACTIONS(2652), - [anon_sym_BANG_EQ] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_LT_EQ] = ACTIONS(2652), - [anon_sym_GT] = ACTIONS(2650), - [anon_sym_GT_EQ] = ACTIONS(2652), - [anon_sym_EQ_GT] = ACTIONS(2652), - [anon_sym_QMARK_QMARK] = ACTIONS(2652), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_macro] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_extern] = ACTIONS(2650), - [anon_sym_inline] = ACTIONS(2650), - [anon_sym_overload] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [anon_sym_typedef] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [aux_sym_integer_token1] = ACTIONS(2650), - [aux_sym_integer_token2] = ACTIONS(2652), - [aux_sym_float_token1] = ACTIONS(2650), - [aux_sym_float_token2] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [aux_sym_string_token3] = ACTIONS(2652), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2652), + [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(2654), - [anon_sym_POUND] = ACTIONS(2656), - [anon_sym_package] = ACTIONS(2654), - [anon_sym_import] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2656), - [anon_sym_using] = ACTIONS(2654), - [anon_sym_throw] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_switch] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_case] = ACTIONS(2654), - [anon_sym_default] = ACTIONS(2654), - [anon_sym_cast] = ACTIONS(2654), - [anon_sym_DOLLARtype] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_untyped] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2656), - [anon_sym_this] = ACTIONS(2654), - [anon_sym_AT] = ACTIONS(2654), - [anon_sym_AT_COLON] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_catch] = ACTIONS(2654), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS_PLUS] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2656), - [anon_sym_PERCENT] = ACTIONS(2656), - [anon_sym_SLASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_LT_LT] = ACTIONS(2656), - [anon_sym_GT_GT] = ACTIONS(2654), - [anon_sym_GT_GT_GT] = ACTIONS(2656), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_CARET] = ACTIONS(2656), - [anon_sym_AMP_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2656), - [anon_sym_EQ_EQ] = ACTIONS(2656), - [anon_sym_BANG_EQ] = ACTIONS(2656), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_LT_EQ] = ACTIONS(2656), - [anon_sym_GT] = ACTIONS(2654), - [anon_sym_GT_EQ] = ACTIONS(2656), - [anon_sym_EQ_GT] = ACTIONS(2656), - [anon_sym_QMARK_QMARK] = ACTIONS(2656), - [anon_sym_EQ] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), - [anon_sym_null] = ACTIONS(2654), - [anon_sym_macro] = ACTIONS(2654), - [anon_sym_abstract] = ACTIONS(2654), - [anon_sym_static] = ACTIONS(2654), - [anon_sym_public] = ACTIONS(2654), - [anon_sym_private] = ACTIONS(2654), - [anon_sym_extern] = ACTIONS(2654), - [anon_sym_inline] = ACTIONS(2654), - [anon_sym_overload] = ACTIONS(2654), - [anon_sym_override] = ACTIONS(2654), - [anon_sym_final] = ACTIONS(2654), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_interface] = ACTIONS(2654), - [anon_sym_enum] = ACTIONS(2654), - [anon_sym_typedef] = ACTIONS(2654), - [anon_sym_function] = ACTIONS(2654), - [anon_sym_var] = ACTIONS(2654), - [aux_sym_integer_token1] = ACTIONS(2654), - [aux_sym_integer_token2] = ACTIONS(2656), - [aux_sym_float_token1] = ACTIONS(2654), - [aux_sym_float_token2] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [aux_sym_string_token1] = ACTIONS(2656), - [aux_sym_string_token3] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2658), - [sym__closing_brace_marker] = ACTIONS(2656), + [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(2660), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_package] = ACTIONS(2660), - [anon_sym_import] = ACTIONS(2660), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_using] = ACTIONS(2660), - [anon_sym_throw] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_case] = ACTIONS(2660), - [anon_sym_default] = ACTIONS(2660), - [anon_sym_cast] = ACTIONS(2660), - [anon_sym_DOLLARtype] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_untyped] = ACTIONS(2660), - [anon_sym_break] = ACTIONS(2660), - [anon_sym_continue] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_this] = ACTIONS(2660), - [anon_sym_AT] = ACTIONS(2660), - [anon_sym_AT_COLON] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_catch] = ACTIONS(2660), - [anon_sym_else] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_PLUS] = ACTIONS(2662), - [anon_sym_DASH_DASH] = ACTIONS(2662), - [anon_sym_PERCENT] = ACTIONS(2662), - [anon_sym_SLASH] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_LT_LT] = ACTIONS(2662), - [anon_sym_GT_GT] = ACTIONS(2660), - [anon_sym_GT_GT_GT] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2660), - [anon_sym_CARET] = ACTIONS(2662), - [anon_sym_AMP_AMP] = ACTIONS(2662), - [anon_sym_PIPE_PIPE] = ACTIONS(2662), - [anon_sym_EQ_EQ] = ACTIONS(2662), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_LT_EQ] = ACTIONS(2662), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_GT_EQ] = ACTIONS(2662), - [anon_sym_EQ_GT] = ACTIONS(2662), - [anon_sym_QMARK_QMARK] = ACTIONS(2662), - [anon_sym_EQ] = ACTIONS(2660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_macro] = ACTIONS(2660), - [anon_sym_abstract] = ACTIONS(2660), - [anon_sym_static] = ACTIONS(2660), - [anon_sym_public] = ACTIONS(2660), - [anon_sym_private] = ACTIONS(2660), - [anon_sym_extern] = ACTIONS(2660), - [anon_sym_inline] = ACTIONS(2660), - [anon_sym_overload] = ACTIONS(2660), - [anon_sym_override] = ACTIONS(2660), - [anon_sym_final] = ACTIONS(2660), - [anon_sym_class] = ACTIONS(2660), - [anon_sym_interface] = ACTIONS(2660), - [anon_sym_enum] = ACTIONS(2660), - [anon_sym_typedef] = ACTIONS(2660), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_var] = ACTIONS(2660), - [aux_sym_integer_token1] = ACTIONS(2660), - [aux_sym_integer_token2] = ACTIONS(2662), - [aux_sym_float_token1] = ACTIONS(2660), - [aux_sym_float_token2] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [aux_sym_string_token1] = ACTIONS(2662), - [aux_sym_string_token3] = ACTIONS(2662), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2662), + [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(2664), - [anon_sym_POUND] = ACTIONS(2666), - [anon_sym_package] = ACTIONS(2664), - [anon_sym_import] = ACTIONS(2664), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_using] = ACTIONS(2664), - [anon_sym_throw] = ACTIONS(2664), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2664), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_case] = ACTIONS(2664), - [anon_sym_default] = ACTIONS(2664), - [anon_sym_cast] = ACTIONS(2664), - [anon_sym_DOLLARtype] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2664), - [anon_sym_untyped] = ACTIONS(2664), - [anon_sym_break] = ACTIONS(2664), - [anon_sym_continue] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_this] = ACTIONS(2664), - [anon_sym_AT] = ACTIONS(2664), - [anon_sym_AT_COLON] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2664), - [anon_sym_catch] = ACTIONS(2664), - [anon_sym_else] = ACTIONS(2664), - [anon_sym_if] = ACTIONS(2664), - [anon_sym_while] = ACTIONS(2664), - [anon_sym_do] = ACTIONS(2664), - [anon_sym_new] = ACTIONS(2664), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2664), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2664), - [anon_sym_PLUS] = ACTIONS(2664), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT] = ACTIONS(2664), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2664), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2664), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2664), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_EQ_GT] = ACTIONS(2666), - [anon_sym_QMARK_QMARK] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2664), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [anon_sym_null] = ACTIONS(2664), - [anon_sym_macro] = ACTIONS(2664), - [anon_sym_abstract] = ACTIONS(2664), - [anon_sym_static] = ACTIONS(2664), - [anon_sym_public] = ACTIONS(2664), - [anon_sym_private] = ACTIONS(2664), - [anon_sym_extern] = ACTIONS(2664), - [anon_sym_inline] = ACTIONS(2664), - [anon_sym_overload] = ACTIONS(2664), - [anon_sym_override] = ACTIONS(2664), - [anon_sym_final] = ACTIONS(2664), - [anon_sym_class] = ACTIONS(2664), - [anon_sym_interface] = ACTIONS(2664), - [anon_sym_enum] = ACTIONS(2664), - [anon_sym_typedef] = ACTIONS(2664), - [anon_sym_function] = ACTIONS(2664), - [anon_sym_var] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2664), - [aux_sym_integer_token2] = ACTIONS(2666), - [aux_sym_float_token1] = ACTIONS(2664), - [aux_sym_float_token2] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2664), - [anon_sym_false] = ACTIONS(2664), - [aux_sym_string_token1] = ACTIONS(2666), - [aux_sym_string_token3] = ACTIONS(2666), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2666), + [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(2668), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_package] = ACTIONS(2668), - [anon_sym_import] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_using] = ACTIONS(2668), - [anon_sym_throw] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2670), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_case] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_cast] = ACTIONS(2668), - [anon_sym_DOLLARtype] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_untyped] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_this] = ACTIONS(2668), - [anon_sym_AT] = ACTIONS(2668), - [anon_sym_AT_COLON] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2668), - [anon_sym_catch] = ACTIONS(2668), - [anon_sym_else] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_new] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2670), - [anon_sym_DASH_DASH] = ACTIONS(2670), - [anon_sym_PERCENT] = ACTIONS(2670), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_LT_LT] = ACTIONS(2670), - [anon_sym_GT_GT] = ACTIONS(2668), - [anon_sym_GT_GT_GT] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_CARET] = ACTIONS(2670), - [anon_sym_AMP_AMP] = ACTIONS(2670), - [anon_sym_PIPE_PIPE] = ACTIONS(2670), - [anon_sym_EQ_EQ] = ACTIONS(2670), - [anon_sym_BANG_EQ] = ACTIONS(2670), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_EQ_GT] = ACTIONS(2670), - [anon_sym_QMARK_QMARK] = ACTIONS(2670), - [anon_sym_EQ] = ACTIONS(2668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), - [anon_sym_null] = ACTIONS(2668), - [anon_sym_macro] = ACTIONS(2668), - [anon_sym_abstract] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_inline] = ACTIONS(2668), - [anon_sym_overload] = ACTIONS(2668), - [anon_sym_override] = ACTIONS(2668), - [anon_sym_final] = ACTIONS(2668), - [anon_sym_class] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_typedef] = ACTIONS(2668), - [anon_sym_function] = ACTIONS(2668), - [anon_sym_var] = ACTIONS(2668), - [aux_sym_integer_token1] = ACTIONS(2668), - [aux_sym_integer_token2] = ACTIONS(2670), - [aux_sym_float_token1] = ACTIONS(2668), - [aux_sym_float_token2] = ACTIONS(2670), - [anon_sym_true] = ACTIONS(2668), - [anon_sym_false] = ACTIONS(2668), - [aux_sym_string_token1] = ACTIONS(2670), - [aux_sym_string_token3] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2670), + [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(2672), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_import] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_using] = ACTIONS(2672), - [anon_sym_throw] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_case] = ACTIONS(2672), - [anon_sym_default] = ACTIONS(2672), - [anon_sym_cast] = ACTIONS(2672), - [anon_sym_DOLLARtype] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_untyped] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_this] = ACTIONS(2672), - [anon_sym_AT] = ACTIONS(2672), - [anon_sym_AT_COLON] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_catch] = ACTIONS(2672), - [anon_sym_else] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_while] = ACTIONS(2672), - [anon_sym_do] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_PERCENT] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_GT_GT_GT] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2672), - [anon_sym_CARET] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [anon_sym_EQ_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_LT_EQ] = ACTIONS(2674), - [anon_sym_GT] = ACTIONS(2672), - [anon_sym_GT_EQ] = ACTIONS(2674), - [anon_sym_EQ_GT] = ACTIONS(2674), - [anon_sym_QMARK_QMARK] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2672), - [anon_sym_macro] = ACTIONS(2672), - [anon_sym_abstract] = ACTIONS(2672), - [anon_sym_static] = ACTIONS(2672), - [anon_sym_public] = ACTIONS(2672), - [anon_sym_private] = ACTIONS(2672), - [anon_sym_extern] = ACTIONS(2672), - [anon_sym_inline] = ACTIONS(2672), - [anon_sym_overload] = ACTIONS(2672), - [anon_sym_override] = ACTIONS(2672), - [anon_sym_final] = ACTIONS(2672), - [anon_sym_class] = ACTIONS(2672), - [anon_sym_interface] = ACTIONS(2672), - [anon_sym_enum] = ACTIONS(2672), - [anon_sym_typedef] = ACTIONS(2672), - [anon_sym_function] = ACTIONS(2672), - [anon_sym_var] = ACTIONS(2672), - [aux_sym_integer_token1] = ACTIONS(2672), - [aux_sym_integer_token2] = ACTIONS(2674), - [aux_sym_float_token1] = ACTIONS(2672), - [aux_sym_float_token2] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [aux_sym_string_token1] = ACTIONS(2674), - [aux_sym_string_token3] = ACTIONS(2674), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2674), + [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(2676), - [anon_sym_POUND] = ACTIONS(2678), - [anon_sym_package] = ACTIONS(2676), - [anon_sym_import] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_using] = ACTIONS(2676), - [anon_sym_throw] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_switch] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2676), - [anon_sym_default] = ACTIONS(2676), - [anon_sym_cast] = ACTIONS(2676), - [anon_sym_DOLLARtype] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2676), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_untyped] = ACTIONS(2676), - [anon_sym_break] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_this] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [anon_sym_AT_COLON] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2676), - [anon_sym_catch] = ACTIONS(2676), - [anon_sym_else] = ACTIONS(2676), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_while] = ACTIONS(2676), - [anon_sym_do] = ACTIONS(2676), - [anon_sym_new] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PERCENT] = ACTIONS(2678), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2676), - [anon_sym_GT_GT_GT] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_CARET] = ACTIONS(2678), - [anon_sym_AMP_AMP] = ACTIONS(2678), - [anon_sym_PIPE_PIPE] = ACTIONS(2678), - [anon_sym_EQ_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_EQ_GT] = ACTIONS(2678), - [anon_sym_QMARK_QMARK] = ACTIONS(2678), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_null] = ACTIONS(2676), - [anon_sym_macro] = ACTIONS(2676), - [anon_sym_abstract] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_extern] = ACTIONS(2676), - [anon_sym_inline] = ACTIONS(2676), - [anon_sym_overload] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_final] = ACTIONS(2676), - [anon_sym_class] = ACTIONS(2676), - [anon_sym_interface] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_typedef] = ACTIONS(2676), - [anon_sym_function] = ACTIONS(2676), - [anon_sym_var] = ACTIONS(2676), - [aux_sym_integer_token1] = ACTIONS(2676), - [aux_sym_integer_token2] = ACTIONS(2678), - [aux_sym_float_token1] = ACTIONS(2676), - [aux_sym_float_token2] = ACTIONS(2678), - [anon_sym_true] = ACTIONS(2676), - [anon_sym_false] = ACTIONS(2676), - [aux_sym_string_token1] = ACTIONS(2678), - [aux_sym_string_token3] = ACTIONS(2678), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2678), + [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(2680), - [anon_sym_POUND] = ACTIONS(2682), - [anon_sym_package] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_cast] = ACTIONS(2680), - [anon_sym_DOLLARtype] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_untyped] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_this] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2680), - [anon_sym_AT_COLON] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_catch] = ACTIONS(2680), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2682), - [anon_sym_PERCENT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_LT_LT] = ACTIONS(2682), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_GT_GT_GT] = ACTIONS(2682), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2682), - [anon_sym_AMP_AMP] = ACTIONS(2682), - [anon_sym_PIPE_PIPE] = ACTIONS(2682), - [anon_sym_EQ_EQ] = ACTIONS(2682), - [anon_sym_BANG_EQ] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2682), - [anon_sym_GT] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2682), - [anon_sym_EQ_GT] = ACTIONS(2682), - [anon_sym_QMARK_QMARK] = ACTIONS(2682), - [anon_sym_EQ] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2682), - [anon_sym_null] = ACTIONS(2680), - [anon_sym_macro] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_extern] = ACTIONS(2680), - [anon_sym_inline] = ACTIONS(2680), - [anon_sym_overload] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_typedef] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [aux_sym_integer_token1] = ACTIONS(2680), - [aux_sym_integer_token2] = ACTIONS(2682), - [aux_sym_float_token1] = ACTIONS(2680), - [aux_sym_float_token2] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [aux_sym_string_token1] = ACTIONS(2682), - [aux_sym_string_token3] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2682), + [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(2684), - [anon_sym_POUND] = ACTIONS(2686), - [anon_sym_package] = ACTIONS(2684), - [anon_sym_import] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2686), - [anon_sym_using] = ACTIONS(2684), - [anon_sym_throw] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_case] = ACTIONS(2684), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_cast] = ACTIONS(2684), - [anon_sym_DOLLARtype] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_untyped] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_this] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_AT_COLON] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2684), - [anon_sym_catch] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2684), - [anon_sym_do] = ACTIONS(2684), - [anon_sym_new] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [anon_sym_PERCENT] = ACTIONS(2686), - [anon_sym_SLASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_LT_LT] = ACTIONS(2686), - [anon_sym_GT_GT] = ACTIONS(2684), - [anon_sym_GT_GT_GT] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_CARET] = ACTIONS(2686), - [anon_sym_AMP_AMP] = ACTIONS(2686), - [anon_sym_PIPE_PIPE] = ACTIONS(2686), - [anon_sym_EQ_EQ] = ACTIONS(2686), - [anon_sym_BANG_EQ] = ACTIONS(2686), - [anon_sym_LT] = ACTIONS(2684), - [anon_sym_LT_EQ] = ACTIONS(2686), - [anon_sym_GT] = ACTIONS(2684), - [anon_sym_GT_EQ] = ACTIONS(2686), - [anon_sym_EQ_GT] = ACTIONS(2686), - [anon_sym_QMARK_QMARK] = ACTIONS(2686), - [anon_sym_EQ] = ACTIONS(2684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), - [anon_sym_null] = ACTIONS(2684), - [anon_sym_macro] = ACTIONS(2684), - [anon_sym_abstract] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_public] = ACTIONS(2684), - [anon_sym_private] = ACTIONS(2684), - [anon_sym_extern] = ACTIONS(2684), - [anon_sym_inline] = ACTIONS(2684), - [anon_sym_overload] = ACTIONS(2684), - [anon_sym_override] = ACTIONS(2684), - [anon_sym_final] = ACTIONS(2684), - [anon_sym_class] = ACTIONS(2684), - [anon_sym_interface] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2684), - [anon_sym_function] = ACTIONS(2684), - [anon_sym_var] = ACTIONS(2684), - [aux_sym_integer_token1] = ACTIONS(2684), - [aux_sym_integer_token2] = ACTIONS(2686), - [aux_sym_float_token1] = ACTIONS(2684), - [aux_sym_float_token2] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [aux_sym_string_token1] = ACTIONS(2686), - [aux_sym_string_token3] = ACTIONS(2686), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2686), + [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(2688), - [anon_sym_POUND] = ACTIONS(2690), - [anon_sym_package] = ACTIONS(2688), - [anon_sym_import] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_using] = ACTIONS(2688), - [anon_sym_throw] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_switch] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_case] = ACTIONS(2688), - [anon_sym_default] = ACTIONS(2688), - [anon_sym_cast] = ACTIONS(2688), - [anon_sym_DOLLARtype] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_untyped] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_this] = ACTIONS(2688), - [anon_sym_AT] = ACTIONS(2688), - [anon_sym_AT_COLON] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2688), - [anon_sym_catch] = ACTIONS(2688), - [anon_sym_else] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_while] = ACTIONS(2688), - [anon_sym_do] = ACTIONS(2688), - [anon_sym_new] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2690), - [anon_sym_PERCENT] = ACTIONS(2690), - [anon_sym_SLASH] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_LT_LT] = ACTIONS(2690), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_GT_GT_GT] = ACTIONS(2690), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2690), - [anon_sym_AMP_AMP] = ACTIONS(2690), - [anon_sym_PIPE_PIPE] = ACTIONS(2690), - [anon_sym_EQ_EQ] = ACTIONS(2690), - [anon_sym_BANG_EQ] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2690), - [anon_sym_GT] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2690), - [anon_sym_EQ_GT] = ACTIONS(2690), - [anon_sym_QMARK_QMARK] = ACTIONS(2690), - [anon_sym_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2690), - [anon_sym_null] = ACTIONS(2688), - [anon_sym_macro] = ACTIONS(2688), - [anon_sym_abstract] = ACTIONS(2688), - [anon_sym_static] = ACTIONS(2688), - [anon_sym_public] = ACTIONS(2688), - [anon_sym_private] = ACTIONS(2688), - [anon_sym_extern] = ACTIONS(2688), - [anon_sym_inline] = ACTIONS(2688), - [anon_sym_overload] = ACTIONS(2688), - [anon_sym_override] = ACTIONS(2688), - [anon_sym_final] = ACTIONS(2688), - [anon_sym_class] = ACTIONS(2688), - [anon_sym_interface] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [anon_sym_typedef] = ACTIONS(2688), - [anon_sym_function] = ACTIONS(2688), - [anon_sym_var] = ACTIONS(2688), - [aux_sym_integer_token1] = ACTIONS(2688), - [aux_sym_integer_token2] = ACTIONS(2690), - [aux_sym_float_token1] = ACTIONS(2688), - [aux_sym_float_token2] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [aux_sym_string_token1] = ACTIONS(2690), - [aux_sym_string_token3] = ACTIONS(2690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2690), + [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(2644), - [anon_sym_POUND] = ACTIONS(2646), - [anon_sym_package] = ACTIONS(2644), - [anon_sym_import] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2644), - [anon_sym_throw] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_switch] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_case] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_cast] = ACTIONS(2644), - [anon_sym_DOLLARtype] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_untyped] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_this] = ACTIONS(2644), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_AT_COLON] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_catch] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), - [anon_sym_SLASH] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_LT_LT] = ACTIONS(2646), - [anon_sym_GT_GT] = ACTIONS(2644), - [anon_sym_GT_GT_GT] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP_AMP] = ACTIONS(2646), - [anon_sym_PIPE_PIPE] = ACTIONS(2646), - [anon_sym_EQ_EQ] = ACTIONS(2646), - [anon_sym_BANG_EQ] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2644), - [anon_sym_LT_EQ] = ACTIONS(2646), - [anon_sym_GT] = ACTIONS(2644), - [anon_sym_GT_EQ] = ACTIONS(2646), - [anon_sym_EQ_GT] = ACTIONS(2646), - [anon_sym_QMARK_QMARK] = ACTIONS(2646), - [anon_sym_EQ] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2646), - [anon_sym_null] = ACTIONS(2644), - [anon_sym_macro] = ACTIONS(2644), - [anon_sym_abstract] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_public] = ACTIONS(2644), - [anon_sym_private] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_inline] = ACTIONS(2644), - [anon_sym_overload] = ACTIONS(2644), - [anon_sym_override] = ACTIONS(2644), - [anon_sym_final] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2644), - [anon_sym_interface] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(2644), - [anon_sym_var] = ACTIONS(2644), - [aux_sym_integer_token1] = ACTIONS(2644), - [aux_sym_integer_token2] = ACTIONS(2646), - [aux_sym_float_token1] = ACTIONS(2644), - [aux_sym_float_token2] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [aux_sym_string_token1] = ACTIONS(2646), - [aux_sym_string_token3] = ACTIONS(2646), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2646), + [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(2692), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_package] = ACTIONS(2692), - [anon_sym_import] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_using] = ACTIONS(2692), - [anon_sym_throw] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2692), - [anon_sym_default] = ACTIONS(2692), - [anon_sym_cast] = ACTIONS(2692), - [anon_sym_DOLLARtype] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_untyped] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_this] = ACTIONS(2692), - [anon_sym_AT] = ACTIONS(2692), - [anon_sym_AT_COLON] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2692), - [anon_sym_catch] = ACTIONS(2692), - [anon_sym_else] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_while] = ACTIONS(2692), - [anon_sym_do] = ACTIONS(2692), - [anon_sym_new] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2692), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2692), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_EQ_GT] = ACTIONS(2694), - [anon_sym_QMARK_QMARK] = ACTIONS(2694), - [anon_sym_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2692), - [anon_sym_macro] = ACTIONS(2692), - [anon_sym_abstract] = ACTIONS(2692), - [anon_sym_static] = ACTIONS(2692), - [anon_sym_public] = ACTIONS(2692), - [anon_sym_private] = ACTIONS(2692), - [anon_sym_extern] = ACTIONS(2692), - [anon_sym_inline] = ACTIONS(2692), - [anon_sym_overload] = ACTIONS(2692), - [anon_sym_override] = ACTIONS(2692), - [anon_sym_final] = ACTIONS(2692), - [anon_sym_class] = ACTIONS(2692), - [anon_sym_interface] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_typedef] = ACTIONS(2692), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_var] = ACTIONS(2692), - [aux_sym_integer_token1] = ACTIONS(2692), - [aux_sym_integer_token2] = ACTIONS(2694), - [aux_sym_float_token1] = ACTIONS(2692), - [aux_sym_float_token2] = ACTIONS(2694), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [aux_sym_string_token1] = ACTIONS(2694), - [aux_sym_string_token3] = ACTIONS(2694), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2694), + [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(2696), - [anon_sym_POUND] = ACTIONS(2698), - [anon_sym_package] = ACTIONS(2696), - [anon_sym_import] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_using] = ACTIONS(2696), - [anon_sym_throw] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2696), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_cast] = ACTIONS(2696), - [anon_sym_DOLLARtype] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_untyped] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_this] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2696), - [anon_sym_AT_COLON] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2696), - [anon_sym_catch] = ACTIONS(2696), - [anon_sym_else] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_do] = ACTIONS(2696), - [anon_sym_new] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2696), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_EQ_GT] = ACTIONS(2698), - [anon_sym_QMARK_QMARK] = ACTIONS(2698), - [anon_sym_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2698), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_macro] = ACTIONS(2696), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_public] = ACTIONS(2696), - [anon_sym_private] = ACTIONS(2696), - [anon_sym_extern] = ACTIONS(2696), - [anon_sym_inline] = ACTIONS(2696), - [anon_sym_overload] = ACTIONS(2696), - [anon_sym_override] = ACTIONS(2696), - [anon_sym_final] = ACTIONS(2696), - [anon_sym_class] = ACTIONS(2696), - [anon_sym_interface] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [anon_sym_typedef] = ACTIONS(2696), - [anon_sym_function] = ACTIONS(2696), - [anon_sym_var] = ACTIONS(2696), - [aux_sym_integer_token1] = ACTIONS(2696), - [aux_sym_integer_token2] = ACTIONS(2698), - [aux_sym_float_token1] = ACTIONS(2696), - [aux_sym_float_token2] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2696), - [anon_sym_false] = ACTIONS(2696), - [aux_sym_string_token1] = ACTIONS(2698), - [aux_sym_string_token3] = ACTIONS(2698), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2698), + [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(2700), - [anon_sym_POUND] = ACTIONS(2702), - [anon_sym_package] = ACTIONS(2700), - [anon_sym_import] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_using] = ACTIONS(2700), - [anon_sym_throw] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2700), - [anon_sym_default] = ACTIONS(2700), - [anon_sym_cast] = ACTIONS(2700), - [anon_sym_DOLLARtype] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_untyped] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_this] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_AT_COLON] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2700), - [anon_sym_catch] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_while] = ACTIONS(2700), - [anon_sym_do] = ACTIONS(2700), - [anon_sym_new] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_PERCENT] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2702), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_EQ_GT] = ACTIONS(2702), - [anon_sym_QMARK_QMARK] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2702), - [anon_sym_null] = ACTIONS(2700), - [anon_sym_macro] = ACTIONS(2700), - [anon_sym_abstract] = ACTIONS(2700), - [anon_sym_static] = ACTIONS(2700), - [anon_sym_public] = ACTIONS(2700), - [anon_sym_private] = ACTIONS(2700), - [anon_sym_extern] = ACTIONS(2700), - [anon_sym_inline] = ACTIONS(2700), - [anon_sym_overload] = ACTIONS(2700), - [anon_sym_override] = ACTIONS(2700), - [anon_sym_final] = ACTIONS(2700), - [anon_sym_class] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_typedef] = ACTIONS(2700), - [anon_sym_function] = ACTIONS(2700), - [anon_sym_var] = ACTIONS(2700), - [aux_sym_integer_token1] = ACTIONS(2700), - [aux_sym_integer_token2] = ACTIONS(2702), - [aux_sym_float_token1] = ACTIONS(2700), - [aux_sym_float_token2] = ACTIONS(2702), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym_string_token1] = ACTIONS(2702), - [aux_sym_string_token3] = ACTIONS(2702), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2702), + [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(2704), - [anon_sym_POUND] = ACTIONS(2706), - [anon_sym_package] = ACTIONS(2704), - [anon_sym_import] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2704), - [anon_sym_throw] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2704), - [anon_sym_default] = ACTIONS(2704), - [anon_sym_cast] = ACTIONS(2704), - [anon_sym_DOLLARtype] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_untyped] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_this] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_AT_COLON] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2704), - [anon_sym_catch] = ACTIONS(2704), - [anon_sym_else] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_while] = ACTIONS(2704), - [anon_sym_do] = ACTIONS(2704), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2706), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_AMP_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2706), - [anon_sym_BANG_EQ] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2706), - [anon_sym_EQ_GT] = ACTIONS(2706), - [anon_sym_QMARK_QMARK] = ACTIONS(2706), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2706), - [anon_sym_null] = ACTIONS(2704), - [anon_sym_macro] = ACTIONS(2704), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_static] = ACTIONS(2704), - [anon_sym_public] = ACTIONS(2704), - [anon_sym_private] = ACTIONS(2704), - [anon_sym_extern] = ACTIONS(2704), - [anon_sym_inline] = ACTIONS(2704), - [anon_sym_overload] = ACTIONS(2704), - [anon_sym_override] = ACTIONS(2704), - [anon_sym_final] = ACTIONS(2704), - [anon_sym_class] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_typedef] = ACTIONS(2704), - [anon_sym_function] = ACTIONS(2704), - [anon_sym_var] = ACTIONS(2704), - [aux_sym_integer_token1] = ACTIONS(2704), - [aux_sym_integer_token2] = ACTIONS(2706), - [aux_sym_float_token1] = ACTIONS(2704), - [aux_sym_float_token2] = ACTIONS(2706), - [anon_sym_true] = ACTIONS(2704), - [anon_sym_false] = ACTIONS(2704), - [aux_sym_string_token1] = ACTIONS(2706), - [aux_sym_string_token3] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2706), + [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(2708), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_package] = ACTIONS(2708), - [anon_sym_import] = ACTIONS(2708), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2708), - [anon_sym_throw] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2708), - [anon_sym_default] = ACTIONS(2708), - [anon_sym_cast] = ACTIONS(2708), - [anon_sym_DOLLARtype] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2708), - [anon_sym_return] = ACTIONS(2708), - [anon_sym_untyped] = ACTIONS(2708), - [anon_sym_break] = ACTIONS(2708), - [anon_sym_continue] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_this] = ACTIONS(2708), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_AT_COLON] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2708), - [anon_sym_catch] = ACTIONS(2708), - [anon_sym_else] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2708), - [anon_sym_while] = ACTIONS(2708), - [anon_sym_do] = ACTIONS(2708), - [anon_sym_new] = ACTIONS(2708), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [anon_sym_PERCENT] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2708), - [anon_sym_LT_LT] = ACTIONS(2710), - [anon_sym_GT_GT] = ACTIONS(2708), - [anon_sym_GT_GT_GT] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2708), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_CARET] = ACTIONS(2710), - [anon_sym_AMP_AMP] = ACTIONS(2710), - [anon_sym_PIPE_PIPE] = ACTIONS(2710), - [anon_sym_EQ_EQ] = ACTIONS(2710), - [anon_sym_BANG_EQ] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_LT_EQ] = ACTIONS(2710), - [anon_sym_GT] = ACTIONS(2708), - [anon_sym_GT_EQ] = ACTIONS(2710), - [anon_sym_EQ_GT] = ACTIONS(2710), - [anon_sym_QMARK_QMARK] = ACTIONS(2710), - [anon_sym_EQ] = ACTIONS(2708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), - [anon_sym_null] = ACTIONS(2708), - [anon_sym_macro] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2708), - [anon_sym_public] = ACTIONS(2708), - [anon_sym_private] = ACTIONS(2708), - [anon_sym_extern] = ACTIONS(2708), - [anon_sym_inline] = ACTIONS(2708), - [anon_sym_overload] = ACTIONS(2708), - [anon_sym_override] = ACTIONS(2708), - [anon_sym_final] = ACTIONS(2708), - [anon_sym_class] = ACTIONS(2708), - [anon_sym_interface] = ACTIONS(2708), - [anon_sym_enum] = ACTIONS(2708), - [anon_sym_typedef] = ACTIONS(2708), - [anon_sym_function] = ACTIONS(2708), - [anon_sym_var] = ACTIONS(2708), - [aux_sym_integer_token1] = ACTIONS(2708), - [aux_sym_integer_token2] = ACTIONS(2710), - [aux_sym_float_token1] = ACTIONS(2708), - [aux_sym_float_token2] = ACTIONS(2710), - [anon_sym_true] = ACTIONS(2708), - [anon_sym_false] = ACTIONS(2708), - [aux_sym_string_token1] = ACTIONS(2710), - [aux_sym_string_token3] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2710), + [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(2712), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_package] = ACTIONS(2712), - [anon_sym_import] = ACTIONS(2712), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_using] = ACTIONS(2712), - [anon_sym_throw] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_switch] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_case] = ACTIONS(2712), - [anon_sym_default] = ACTIONS(2712), - [anon_sym_cast] = ACTIONS(2712), - [anon_sym_DOLLARtype] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_untyped] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_this] = ACTIONS(2712), - [anon_sym_AT] = ACTIONS(2712), - [anon_sym_AT_COLON] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2712), - [anon_sym_catch] = ACTIONS(2712), - [anon_sym_else] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_do] = ACTIONS(2712), - [anon_sym_new] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2714), - [anon_sym_DASH_DASH] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2712), - [anon_sym_PLUS] = ACTIONS(2712), - [anon_sym_LT_LT] = ACTIONS(2714), - [anon_sym_GT_GT] = ACTIONS(2712), - [anon_sym_GT_GT_GT] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_CARET] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_EQ_EQ] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2712), - [anon_sym_LT_EQ] = ACTIONS(2714), - [anon_sym_GT] = ACTIONS(2712), - [anon_sym_GT_EQ] = ACTIONS(2714), - [anon_sym_EQ_GT] = ACTIONS(2714), - [anon_sym_QMARK_QMARK] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2712), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2714), - [anon_sym_null] = ACTIONS(2712), - [anon_sym_macro] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2712), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2712), - [anon_sym_private] = ACTIONS(2712), - [anon_sym_extern] = ACTIONS(2712), - [anon_sym_inline] = ACTIONS(2712), - [anon_sym_overload] = ACTIONS(2712), - [anon_sym_override] = ACTIONS(2712), - [anon_sym_final] = ACTIONS(2712), - [anon_sym_class] = ACTIONS(2712), - [anon_sym_interface] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), - [anon_sym_typedef] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(2712), - [anon_sym_var] = ACTIONS(2712), - [aux_sym_integer_token1] = ACTIONS(2712), - [aux_sym_integer_token2] = ACTIONS(2714), - [aux_sym_float_token1] = ACTIONS(2712), - [aux_sym_float_token2] = ACTIONS(2714), - [anon_sym_true] = ACTIONS(2712), - [anon_sym_false] = ACTIONS(2712), - [aux_sym_string_token1] = ACTIONS(2714), - [aux_sym_string_token3] = ACTIONS(2714), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2714), + [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(2716), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_package] = ACTIONS(2716), - [anon_sym_import] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_using] = ACTIONS(2716), - [anon_sym_throw] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_switch] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_case] = ACTIONS(2716), - [anon_sym_default] = ACTIONS(2716), - [anon_sym_cast] = ACTIONS(2716), - [anon_sym_DOLLARtype] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2716), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_untyped] = ACTIONS(2716), - [anon_sym_break] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_this] = ACTIONS(2716), - [anon_sym_AT] = ACTIONS(2716), - [anon_sym_AT_COLON] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2716), - [anon_sym_catch] = ACTIONS(2716), - [anon_sym_else] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2716), - [anon_sym_while] = ACTIONS(2716), - [anon_sym_do] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_LT_LT] = ACTIONS(2718), - [anon_sym_GT_GT] = ACTIONS(2716), - [anon_sym_GT_GT_GT] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_EQ_EQ] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_LT_EQ] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2716), - [anon_sym_GT_EQ] = ACTIONS(2718), - [anon_sym_EQ_GT] = ACTIONS(2718), - [anon_sym_QMARK_QMARK] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2718), - [anon_sym_null] = ACTIONS(2716), - [anon_sym_macro] = ACTIONS(2716), - [anon_sym_abstract] = ACTIONS(2716), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_public] = ACTIONS(2716), - [anon_sym_private] = ACTIONS(2716), - [anon_sym_extern] = ACTIONS(2716), - [anon_sym_inline] = ACTIONS(2716), - [anon_sym_overload] = ACTIONS(2716), - [anon_sym_override] = ACTIONS(2716), - [anon_sym_final] = ACTIONS(2716), - [anon_sym_class] = ACTIONS(2716), - [anon_sym_interface] = ACTIONS(2716), - [anon_sym_enum] = ACTIONS(2716), - [anon_sym_typedef] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2716), - [anon_sym_var] = ACTIONS(2716), - [aux_sym_integer_token1] = ACTIONS(2716), - [aux_sym_integer_token2] = ACTIONS(2718), - [aux_sym_float_token1] = ACTIONS(2716), - [aux_sym_float_token2] = ACTIONS(2718), - [anon_sym_true] = ACTIONS(2716), - [anon_sym_false] = ACTIONS(2716), - [aux_sym_string_token1] = ACTIONS(2718), - [aux_sym_string_token3] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2718), + [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(2720), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2720), - [anon_sym_import] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2720), - [anon_sym_throw] = ACTIONS(2720), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_case] = ACTIONS(2720), - [anon_sym_default] = ACTIONS(2720), - [anon_sym_cast] = ACTIONS(2720), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2720), - [anon_sym_return] = ACTIONS(2720), - [anon_sym_untyped] = ACTIONS(2720), - [anon_sym_break] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_AT] = ACTIONS(2720), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2720), - [anon_sym_catch] = ACTIONS(2720), - [anon_sym_else] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_while] = ACTIONS(2720), - [anon_sym_do] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2720), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2720), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2720), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2720), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2720), - [anon_sym_macro] = ACTIONS(2720), - [anon_sym_abstract] = ACTIONS(2720), - [anon_sym_static] = ACTIONS(2720), - [anon_sym_public] = ACTIONS(2720), - [anon_sym_private] = ACTIONS(2720), - [anon_sym_extern] = ACTIONS(2720), - [anon_sym_inline] = ACTIONS(2720), - [anon_sym_overload] = ACTIONS(2720), - [anon_sym_override] = ACTIONS(2720), - [anon_sym_final] = ACTIONS(2720), - [anon_sym_class] = ACTIONS(2720), - [anon_sym_interface] = ACTIONS(2720), - [anon_sym_enum] = ACTIONS(2720), - [anon_sym_typedef] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2720), - [anon_sym_var] = ACTIONS(2720), - [aux_sym_integer_token1] = ACTIONS(2720), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2720), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2720), - [anon_sym_false] = ACTIONS(2720), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2722), + [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(2724), - [anon_sym_POUND] = ACTIONS(2726), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_case] = ACTIONS(2724), - [anon_sym_default] = ACTIONS(2724), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2724), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2726), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_PERCENT] = ACTIONS(2726), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2726), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2726), - [anon_sym_AMP_AMP] = ACTIONS(2726), - [anon_sym_PIPE_PIPE] = ACTIONS(2726), - [anon_sym_EQ_EQ] = ACTIONS(2726), - [anon_sym_BANG_EQ] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2726), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2726), - [anon_sym_EQ_GT] = ACTIONS(2726), - [anon_sym_QMARK_QMARK] = ACTIONS(2726), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2726), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2726), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2726), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2726), - [aux_sym_string_token3] = ACTIONS(2726), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2726), + [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] = { - [sym_identifier] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_package] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_using] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_case] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_cast] = ACTIONS(2728), - [anon_sym_DOLLARtype] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_untyped] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_this] = ACTIONS(2728), - [anon_sym_AT] = ACTIONS(2728), - [anon_sym_AT_COLON] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_catch] = ACTIONS(2728), - [anon_sym_else] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_EQ_GT] = ACTIONS(2730), - [anon_sym_QMARK_QMARK] = ACTIONS(2730), - [anon_sym_EQ] = ACTIONS(2728), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2730), - [anon_sym_null] = ACTIONS(2728), - [anon_sym_macro] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_extern] = ACTIONS(2728), - [anon_sym_inline] = ACTIONS(2728), - [anon_sym_overload] = ACTIONS(2728), - [anon_sym_override] = ACTIONS(2728), - [anon_sym_final] = ACTIONS(2728), - [anon_sym_class] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [anon_sym_typedef] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [aux_sym_integer_token1] = ACTIONS(2728), - [aux_sym_integer_token2] = ACTIONS(2730), - [aux_sym_float_token1] = ACTIONS(2728), - [aux_sym_float_token2] = ACTIONS(2730), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [aux_sym_string_token1] = ACTIONS(2730), - [aux_sym_string_token3] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2730), + [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(2732), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_package] = ACTIONS(2732), - [anon_sym_import] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(2732), - [anon_sym_throw] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_switch] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_case] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_cast] = ACTIONS(2732), - [anon_sym_DOLLARtype] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_untyped] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_this] = ACTIONS(2732), - [anon_sym_AT] = ACTIONS(2732), - [anon_sym_AT_COLON] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2732), - [anon_sym_catch] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_EQ_GT] = ACTIONS(2734), - [anon_sym_QMARK_QMARK] = ACTIONS(2734), - [anon_sym_EQ] = ACTIONS(2732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2734), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_macro] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_extern] = ACTIONS(2732), - [anon_sym_inline] = ACTIONS(2732), - [anon_sym_overload] = ACTIONS(2732), - [anon_sym_override] = ACTIONS(2732), - [anon_sym_final] = ACTIONS(2732), - [anon_sym_class] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_typedef] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_var] = ACTIONS(2732), - [aux_sym_integer_token1] = ACTIONS(2732), - [aux_sym_integer_token2] = ACTIONS(2734), - [aux_sym_float_token1] = ACTIONS(2732), - [aux_sym_float_token2] = ACTIONS(2734), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [aux_sym_string_token1] = ACTIONS(2734), - [aux_sym_string_token3] = ACTIONS(2734), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2734), + [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] = { - [sym_identifier] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_package] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(2736), - [anon_sym_throw] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_switch] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_cast] = ACTIONS(2736), - [anon_sym_DOLLARtype] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_untyped] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_this] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_AT_COLON] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2736), - [anon_sym_catch] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_do] = ACTIONS(2736), - [anon_sym_new] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_PERCENT] = ACTIONS(2738), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2738), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_EQ_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2738), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2738), - [anon_sym_EQ_GT] = ACTIONS(2738), - [anon_sym_QMARK_QMARK] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(2736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2738), - [anon_sym_null] = ACTIONS(2736), - [anon_sym_macro] = ACTIONS(2736), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_extern] = ACTIONS(2736), - [anon_sym_inline] = ACTIONS(2736), - [anon_sym_overload] = ACTIONS(2736), - [anon_sym_override] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_typedef] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [aux_sym_integer_token1] = ACTIONS(2736), - [aux_sym_integer_token2] = ACTIONS(2738), - [aux_sym_float_token1] = ACTIONS(2736), - [aux_sym_float_token2] = ACTIONS(2738), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [aux_sym_string_token1] = ACTIONS(2738), - [aux_sym_string_token3] = ACTIONS(2738), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2738), + [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(2740), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_package] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_using] = ACTIONS(2740), - [anon_sym_throw] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_cast] = ACTIONS(2740), - [anon_sym_DOLLARtype] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_untyped] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_this] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_AT_COLON] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2740), - [anon_sym_catch] = ACTIONS(2740), - [anon_sym_else] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_do] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [anon_sym_PERCENT] = ACTIONS(2742), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2742), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2742), - [anon_sym_AMP_AMP] = ACTIONS(2742), - [anon_sym_PIPE_PIPE] = ACTIONS(2742), - [anon_sym_EQ_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2742), - [anon_sym_EQ_GT] = ACTIONS(2742), - [anon_sym_QMARK_QMARK] = ACTIONS(2742), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2742), - [anon_sym_null] = ACTIONS(2740), - [anon_sym_macro] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_extern] = ACTIONS(2740), - [anon_sym_inline] = ACTIONS(2740), - [anon_sym_overload] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_final] = ACTIONS(2740), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_typedef] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [aux_sym_integer_token1] = ACTIONS(2740), - [aux_sym_integer_token2] = ACTIONS(2742), - [aux_sym_float_token1] = ACTIONS(2740), - [aux_sym_float_token2] = ACTIONS(2742), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [aux_sym_string_token1] = ACTIONS(2742), - [aux_sym_string_token3] = ACTIONS(2742), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2742), + [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(2744), - [anon_sym_POUND] = ACTIONS(2746), - [anon_sym_package] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2746), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_cast] = ACTIONS(2744), - [anon_sym_DOLLARtype] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_untyped] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_this] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2744), - [anon_sym_AT_COLON] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_catch] = ACTIONS(2744), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2746), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2746), - [anon_sym_DASH_DASH] = ACTIONS(2746), - [anon_sym_PERCENT] = ACTIONS(2746), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_LT_LT] = ACTIONS(2746), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_GT_GT_GT] = ACTIONS(2746), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2746), - [anon_sym_AMP_AMP] = ACTIONS(2746), - [anon_sym_PIPE_PIPE] = ACTIONS(2746), - [anon_sym_EQ_EQ] = ACTIONS(2746), - [anon_sym_BANG_EQ] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_LT_EQ] = ACTIONS(2746), - [anon_sym_GT] = ACTIONS(2744), - [anon_sym_GT_EQ] = ACTIONS(2746), - [anon_sym_EQ_GT] = ACTIONS(2746), - [anon_sym_QMARK_QMARK] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2746), - [anon_sym_null] = ACTIONS(2744), - [anon_sym_macro] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_extern] = ACTIONS(2744), - [anon_sym_inline] = ACTIONS(2744), - [anon_sym_overload] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_final] = ACTIONS(2744), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_typedef] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [aux_sym_integer_token1] = ACTIONS(2744), - [aux_sym_integer_token2] = ACTIONS(2746), - [aux_sym_float_token1] = ACTIONS(2744), - [aux_sym_float_token2] = ACTIONS(2746), - [anon_sym_true] = ACTIONS(2744), - [anon_sym_false] = ACTIONS(2744), - [aux_sym_string_token1] = ACTIONS(2746), - [aux_sym_string_token3] = ACTIONS(2746), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2746), + [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(2748), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_package] = ACTIONS(2748), - [anon_sym_import] = ACTIONS(2748), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2748), - [anon_sym_throw] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_switch] = ACTIONS(2748), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_case] = ACTIONS(2748), - [anon_sym_default] = ACTIONS(2748), - [anon_sym_cast] = ACTIONS(2748), - [anon_sym_DOLLARtype] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2748), - [anon_sym_return] = ACTIONS(2748), - [anon_sym_untyped] = ACTIONS(2748), - [anon_sym_break] = ACTIONS(2748), - [anon_sym_continue] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_this] = ACTIONS(2748), - [anon_sym_AT] = ACTIONS(2748), - [anon_sym_AT_COLON] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2748), - [anon_sym_catch] = ACTIONS(2748), - [anon_sym_else] = ACTIONS(2748), - [anon_sym_if] = ACTIONS(2748), - [anon_sym_while] = ACTIONS(2748), - [anon_sym_do] = ACTIONS(2748), - [anon_sym_new] = ACTIONS(2748), - [anon_sym_TILDE] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2748), - [anon_sym_PLUS] = ACTIONS(2748), - [anon_sym_LT_LT] = ACTIONS(2750), - [anon_sym_GT_GT] = ACTIONS(2748), - [anon_sym_GT_GT_GT] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_EQ_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2748), - [anon_sym_LT_EQ] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2748), - [anon_sym_GT_EQ] = ACTIONS(2750), - [anon_sym_EQ_GT] = ACTIONS(2750), - [anon_sym_QMARK_QMARK] = ACTIONS(2750), - [anon_sym_EQ] = ACTIONS(2748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2750), - [anon_sym_null] = ACTIONS(2748), - [anon_sym_macro] = ACTIONS(2748), - [anon_sym_abstract] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_public] = ACTIONS(2748), - [anon_sym_private] = ACTIONS(2748), - [anon_sym_extern] = ACTIONS(2748), - [anon_sym_inline] = ACTIONS(2748), - [anon_sym_overload] = ACTIONS(2748), - [anon_sym_override] = ACTIONS(2748), - [anon_sym_final] = ACTIONS(2748), - [anon_sym_class] = ACTIONS(2748), - [anon_sym_interface] = ACTIONS(2748), - [anon_sym_enum] = ACTIONS(2748), - [anon_sym_typedef] = ACTIONS(2748), - [anon_sym_function] = ACTIONS(2748), - [anon_sym_var] = ACTIONS(2748), - [aux_sym_integer_token1] = ACTIONS(2748), - [aux_sym_integer_token2] = ACTIONS(2750), - [aux_sym_float_token1] = ACTIONS(2748), - [aux_sym_float_token2] = ACTIONS(2750), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [aux_sym_string_token1] = ACTIONS(2750), - [aux_sym_string_token3] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2750), + [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(2752), - [anon_sym_POUND] = ACTIONS(2754), - [anon_sym_package] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2752), - [anon_sym_throw] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2752), - [anon_sym_default] = ACTIONS(2752), - [anon_sym_cast] = ACTIONS(2752), - [anon_sym_DOLLARtype] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_untyped] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_this] = ACTIONS(2752), - [anon_sym_AT] = ACTIONS(2752), - [anon_sym_AT_COLON] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2752), - [anon_sym_catch] = ACTIONS(2752), - [anon_sym_else] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_do] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2752), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_GT_GT_GT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_EQ_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LT_EQ] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2754), - [anon_sym_EQ_GT] = ACTIONS(2754), - [anon_sym_QMARK_QMARK] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(2752), - [anon_sym_macro] = ACTIONS(2752), - [anon_sym_abstract] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_extern] = ACTIONS(2752), - [anon_sym_inline] = ACTIONS(2752), - [anon_sym_overload] = ACTIONS(2752), - [anon_sym_override] = ACTIONS(2752), - [anon_sym_final] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2752), - [anon_sym_interface] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), - [anon_sym_typedef] = ACTIONS(2752), - [anon_sym_function] = ACTIONS(2752), - [anon_sym_var] = ACTIONS(2752), - [aux_sym_integer_token1] = ACTIONS(2752), - [aux_sym_integer_token2] = ACTIONS(2754), - [aux_sym_float_token1] = ACTIONS(2752), - [aux_sym_float_token2] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2752), - [anon_sym_false] = ACTIONS(2752), - [aux_sym_string_token1] = ACTIONS(2754), - [aux_sym_string_token3] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2754), + [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(2756), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_package] = ACTIONS(2756), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_using] = ACTIONS(2756), - [anon_sym_throw] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_case] = ACTIONS(2756), - [anon_sym_default] = ACTIONS(2756), - [anon_sym_cast] = ACTIONS(2756), - [anon_sym_DOLLARtype] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_untyped] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_this] = ACTIONS(2756), - [anon_sym_AT] = ACTIONS(2756), - [anon_sym_AT_COLON] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2756), - [anon_sym_catch] = ACTIONS(2756), - [anon_sym_else] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_do] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_GT_GT_GT] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_EQ_GT] = ACTIONS(2758), - [anon_sym_QMARK_QMARK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_null] = ACTIONS(2756), - [anon_sym_macro] = ACTIONS(2756), - [anon_sym_abstract] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_public] = ACTIONS(2756), - [anon_sym_private] = ACTIONS(2756), - [anon_sym_extern] = ACTIONS(2756), - [anon_sym_inline] = ACTIONS(2756), - [anon_sym_overload] = ACTIONS(2756), - [anon_sym_override] = ACTIONS(2756), - [anon_sym_final] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(2756), - [anon_sym_interface] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_typedef] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2756), - [aux_sym_integer_token1] = ACTIONS(2756), - [aux_sym_integer_token2] = ACTIONS(2758), - [aux_sym_float_token1] = ACTIONS(2756), - [aux_sym_float_token2] = ACTIONS(2758), - [anon_sym_true] = ACTIONS(2756), - [anon_sym_false] = ACTIONS(2756), - [aux_sym_string_token1] = ACTIONS(2758), - [aux_sym_string_token3] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2758), + [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(2760), - [anon_sym_POUND] = ACTIONS(2762), - [anon_sym_package] = ACTIONS(2760), - [anon_sym_import] = ACTIONS(2760), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2760), - [anon_sym_throw] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_switch] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2760), - [anon_sym_default] = ACTIONS(2760), - [anon_sym_cast] = ACTIONS(2760), - [anon_sym_DOLLARtype] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2760), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_untyped] = ACTIONS(2760), - [anon_sym_break] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_this] = ACTIONS(2760), - [anon_sym_AT] = ACTIONS(2760), - [anon_sym_AT_COLON] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2760), - [anon_sym_catch] = ACTIONS(2760), - [anon_sym_else] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2760), - [anon_sym_while] = ACTIONS(2760), - [anon_sym_do] = ACTIONS(2760), - [anon_sym_new] = ACTIONS(2760), - [anon_sym_TILDE] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2762), - [anon_sym_PERCENT] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2760), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_LT_LT] = ACTIONS(2762), - [anon_sym_GT_GT] = ACTIONS(2760), - [anon_sym_GT_GT_GT] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_CARET] = ACTIONS(2762), - [anon_sym_AMP_AMP] = ACTIONS(2762), - [anon_sym_PIPE_PIPE] = ACTIONS(2762), - [anon_sym_EQ_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2760), - [anon_sym_LT_EQ] = ACTIONS(2762), - [anon_sym_GT] = ACTIONS(2760), - [anon_sym_GT_EQ] = ACTIONS(2762), - [anon_sym_EQ_GT] = ACTIONS(2762), - [anon_sym_QMARK_QMARK] = ACTIONS(2762), - [anon_sym_EQ] = ACTIONS(2760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2762), - [anon_sym_null] = ACTIONS(2760), - [anon_sym_macro] = ACTIONS(2760), - [anon_sym_abstract] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_public] = ACTIONS(2760), - [anon_sym_private] = ACTIONS(2760), - [anon_sym_extern] = ACTIONS(2760), - [anon_sym_inline] = ACTIONS(2760), - [anon_sym_overload] = ACTIONS(2760), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_final] = ACTIONS(2760), - [anon_sym_class] = ACTIONS(2760), - [anon_sym_interface] = ACTIONS(2760), - [anon_sym_enum] = ACTIONS(2760), - [anon_sym_typedef] = ACTIONS(2760), - [anon_sym_function] = ACTIONS(2760), - [anon_sym_var] = ACTIONS(2760), - [aux_sym_integer_token1] = ACTIONS(2760), - [aux_sym_integer_token2] = ACTIONS(2762), - [aux_sym_float_token1] = ACTIONS(2760), - [aux_sym_float_token2] = ACTIONS(2762), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(2762), - [aux_sym_string_token3] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2762), + [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(2764), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_package] = ACTIONS(2764), - [anon_sym_import] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_using] = ACTIONS(2764), - [anon_sym_throw] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_switch] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_case] = ACTIONS(2764), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_cast] = ACTIONS(2764), - [anon_sym_DOLLARtype] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_untyped] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_this] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_AT_COLON] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2764), - [anon_sym_catch] = ACTIONS(2764), - [anon_sym_else] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_do] = ACTIONS(2764), - [anon_sym_new] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_EQ_GT] = ACTIONS(2766), - [anon_sym_QMARK_QMARK] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(2764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2766), - [anon_sym_null] = ACTIONS(2764), - [anon_sym_macro] = ACTIONS(2764), - [anon_sym_abstract] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_public] = ACTIONS(2764), - [anon_sym_private] = ACTIONS(2764), - [anon_sym_extern] = ACTIONS(2764), - [anon_sym_inline] = ACTIONS(2764), - [anon_sym_overload] = ACTIONS(2764), - [anon_sym_override] = ACTIONS(2764), - [anon_sym_final] = ACTIONS(2764), - [anon_sym_class] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_typedef] = ACTIONS(2764), - [anon_sym_function] = ACTIONS(2764), - [anon_sym_var] = ACTIONS(2764), - [aux_sym_integer_token1] = ACTIONS(2764), - [aux_sym_integer_token2] = ACTIONS(2766), - [aux_sym_float_token1] = ACTIONS(2764), - [aux_sym_float_token2] = ACTIONS(2766), - [anon_sym_true] = ACTIONS(2764), - [anon_sym_false] = ACTIONS(2764), - [aux_sym_string_token1] = ACTIONS(2766), - [aux_sym_string_token3] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2766), + [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(2768), - [anon_sym_POUND] = ACTIONS(2770), - [anon_sym_package] = ACTIONS(2768), - [anon_sym_import] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_cast] = ACTIONS(2768), - [anon_sym_DOLLARtype] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_untyped] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_this] = ACTIONS(2768), - [anon_sym_AT] = ACTIONS(2768), - [anon_sym_AT_COLON] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2770), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_GT_GT_GT] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2770), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2770), - [anon_sym_EQ_GT] = ACTIONS(2770), - [anon_sym_QMARK_QMARK] = ACTIONS(2770), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2770), - [anon_sym_null] = ACTIONS(2768), - [anon_sym_macro] = ACTIONS(2768), - [anon_sym_abstract] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym_overload] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_interface] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_function] = ACTIONS(2768), - [anon_sym_var] = ACTIONS(2768), - [aux_sym_integer_token1] = ACTIONS(2768), - [aux_sym_integer_token2] = ACTIONS(2770), - [aux_sym_float_token1] = ACTIONS(2768), - [aux_sym_float_token2] = ACTIONS(2770), - [anon_sym_true] = ACTIONS(2768), - [anon_sym_false] = ACTIONS(2768), - [aux_sym_string_token1] = ACTIONS(2770), - [aux_sym_string_token3] = ACTIONS(2770), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2770), + [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(2772), - [anon_sym_POUND] = ACTIONS(2774), - [anon_sym_package] = ACTIONS(2772), - [anon_sym_import] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2772), - [anon_sym_throw] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2772), - [anon_sym_default] = ACTIONS(2772), - [anon_sym_cast] = ACTIONS(2772), - [anon_sym_DOLLARtype] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_untyped] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_this] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_AT_COLON] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2772), - [anon_sym_catch] = ACTIONS(2772), - [anon_sym_else] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_while] = ACTIONS(2772), - [anon_sym_do] = ACTIONS(2772), - [anon_sym_new] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2774), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2774), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2774), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2774), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2774), - [anon_sym_AMP_AMP] = ACTIONS(2774), - [anon_sym_PIPE_PIPE] = ACTIONS(2774), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2774), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2774), - [anon_sym_EQ_GT] = ACTIONS(2774), - [anon_sym_QMARK_QMARK] = ACTIONS(2774), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2774), - [anon_sym_null] = ACTIONS(2772), - [anon_sym_macro] = ACTIONS(2772), - [anon_sym_abstract] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_public] = ACTIONS(2772), - [anon_sym_private] = ACTIONS(2772), - [anon_sym_extern] = ACTIONS(2772), - [anon_sym_inline] = ACTIONS(2772), - [anon_sym_overload] = ACTIONS(2772), - [anon_sym_override] = ACTIONS(2772), - [anon_sym_final] = ACTIONS(2772), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_typedef] = ACTIONS(2772), - [anon_sym_function] = ACTIONS(2772), - [anon_sym_var] = ACTIONS(2772), - [aux_sym_integer_token1] = ACTIONS(2772), - [aux_sym_integer_token2] = ACTIONS(2774), - [aux_sym_float_token1] = ACTIONS(2772), - [aux_sym_float_token2] = ACTIONS(2774), - [anon_sym_true] = ACTIONS(2772), - [anon_sym_false] = ACTIONS(2772), - [aux_sym_string_token1] = ACTIONS(2774), - [aux_sym_string_token3] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2774), + [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(2776), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_package] = ACTIONS(2776), - [anon_sym_import] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2776), - [anon_sym_throw] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2776), - [anon_sym_default] = ACTIONS(2776), - [anon_sym_cast] = ACTIONS(2776), - [anon_sym_DOLLARtype] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_untyped] = ACTIONS(2776), - [anon_sym_break] = ACTIONS(2776), - [anon_sym_continue] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_this] = ACTIONS(2776), - [anon_sym_AT] = ACTIONS(2776), - [anon_sym_AT_COLON] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_catch] = ACTIONS(2776), - [anon_sym_else] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_LT_LT] = ACTIONS(2778), - [anon_sym_GT_GT] = ACTIONS(2776), - [anon_sym_GT_GT_GT] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_AMP_AMP] = ACTIONS(2778), - [anon_sym_PIPE_PIPE] = ACTIONS(2778), - [anon_sym_EQ_EQ] = ACTIONS(2778), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_QMARK] = ACTIONS(2778), - [anon_sym_EQ] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_macro] = ACTIONS(2776), - [anon_sym_abstract] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2776), - [anon_sym_public] = ACTIONS(2776), - [anon_sym_private] = ACTIONS(2776), - [anon_sym_extern] = ACTIONS(2776), - [anon_sym_inline] = ACTIONS(2776), - [anon_sym_overload] = ACTIONS(2776), - [anon_sym_override] = ACTIONS(2776), - [anon_sym_final] = ACTIONS(2776), - [anon_sym_class] = ACTIONS(2776), - [anon_sym_interface] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2776), - [anon_sym_typedef] = ACTIONS(2776), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_var] = ACTIONS(2776), - [aux_sym_integer_token1] = ACTIONS(2776), - [aux_sym_integer_token2] = ACTIONS(2778), - [aux_sym_float_token1] = ACTIONS(2776), - [aux_sym_float_token2] = ACTIONS(2778), - [anon_sym_true] = ACTIONS(2776), - [anon_sym_false] = ACTIONS(2776), - [aux_sym_string_token1] = ACTIONS(2778), - [aux_sym_string_token3] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2778), + [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(2780), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_package] = ACTIONS(2780), - [anon_sym_import] = ACTIONS(2780), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2780), - [anon_sym_throw] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2780), - [anon_sym_default] = ACTIONS(2780), - [anon_sym_cast] = ACTIONS(2780), - [anon_sym_DOLLARtype] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_untyped] = ACTIONS(2780), - [anon_sym_break] = ACTIONS(2780), - [anon_sym_continue] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_this] = ACTIONS(2780), - [anon_sym_AT] = ACTIONS(2780), - [anon_sym_AT_COLON] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_catch] = ACTIONS(2780), - [anon_sym_else] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_PERCENT] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_LT_LT] = ACTIONS(2782), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_GT_GT_GT] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_EQ_EQ] = ACTIONS(2782), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2780), - [anon_sym_LT_EQ] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2780), - [anon_sym_GT_EQ] = ACTIONS(2782), - [anon_sym_EQ_GT] = ACTIONS(2782), - [anon_sym_QMARK_QMARK] = ACTIONS(2782), - [anon_sym_EQ] = ACTIONS(2780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_macro] = ACTIONS(2780), - [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2780), - [anon_sym_public] = ACTIONS(2780), - [anon_sym_private] = ACTIONS(2780), - [anon_sym_extern] = ACTIONS(2780), - [anon_sym_inline] = ACTIONS(2780), - [anon_sym_overload] = ACTIONS(2780), - [anon_sym_override] = ACTIONS(2780), - [anon_sym_final] = ACTIONS(2780), - [anon_sym_class] = ACTIONS(2780), - [anon_sym_interface] = ACTIONS(2780), - [anon_sym_enum] = ACTIONS(2780), - [anon_sym_typedef] = ACTIONS(2780), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_var] = ACTIONS(2780), - [aux_sym_integer_token1] = ACTIONS(2780), - [aux_sym_integer_token2] = ACTIONS(2782), - [aux_sym_float_token1] = ACTIONS(2780), - [aux_sym_float_token2] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2780), - [anon_sym_false] = ACTIONS(2780), - [aux_sym_string_token1] = ACTIONS(2782), - [aux_sym_string_token3] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2782), + [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(2784), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_package] = ACTIONS(2784), - [anon_sym_import] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2784), - [anon_sym_throw] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2784), - [anon_sym_default] = ACTIONS(2784), - [anon_sym_cast] = ACTIONS(2784), - [anon_sym_DOLLARtype] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_untyped] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_this] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_AT_COLON] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_catch] = ACTIONS(2784), - [anon_sym_else] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_EQ_GT] = ACTIONS(2786), - [anon_sym_QMARK_QMARK] = ACTIONS(2786), - [anon_sym_EQ] = ACTIONS(2784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_macro] = ACTIONS(2784), - [anon_sym_abstract] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_public] = ACTIONS(2784), - [anon_sym_private] = ACTIONS(2784), - [anon_sym_extern] = ACTIONS(2784), - [anon_sym_inline] = ACTIONS(2784), - [anon_sym_overload] = ACTIONS(2784), - [anon_sym_override] = ACTIONS(2784), - [anon_sym_final] = ACTIONS(2784), - [anon_sym_class] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_typedef] = ACTIONS(2784), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_var] = ACTIONS(2784), - [aux_sym_integer_token1] = ACTIONS(2784), - [aux_sym_integer_token2] = ACTIONS(2786), - [aux_sym_float_token1] = ACTIONS(2784), - [aux_sym_float_token2] = ACTIONS(2786), - [anon_sym_true] = ACTIONS(2784), - [anon_sym_false] = ACTIONS(2784), - [aux_sym_string_token1] = ACTIONS(2786), - [aux_sym_string_token3] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2786), + [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(2788), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_package] = ACTIONS(2788), - [anon_sym_import] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2788), - [anon_sym_throw] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2788), - [anon_sym_default] = ACTIONS(2788), - [anon_sym_cast] = ACTIONS(2788), - [anon_sym_DOLLARtype] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_untyped] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_this] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_AT_COLON] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2788), - [anon_sym_catch] = ACTIONS(2788), - [anon_sym_else] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_while] = ACTIONS(2788), - [anon_sym_do] = ACTIONS(2788), - [anon_sym_new] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_EQ_GT] = ACTIONS(2790), - [anon_sym_QMARK_QMARK] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2790), - [anon_sym_null] = ACTIONS(2788), - [anon_sym_macro] = ACTIONS(2788), - [anon_sym_abstract] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2788), - [anon_sym_public] = ACTIONS(2788), - [anon_sym_private] = ACTIONS(2788), - [anon_sym_extern] = ACTIONS(2788), - [anon_sym_inline] = ACTIONS(2788), - [anon_sym_overload] = ACTIONS(2788), - [anon_sym_override] = ACTIONS(2788), - [anon_sym_final] = ACTIONS(2788), - [anon_sym_class] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_typedef] = ACTIONS(2788), - [anon_sym_function] = ACTIONS(2788), - [anon_sym_var] = ACTIONS(2788), - [aux_sym_integer_token1] = ACTIONS(2788), - [aux_sym_integer_token2] = ACTIONS(2790), - [aux_sym_float_token1] = ACTIONS(2788), - [aux_sym_float_token2] = ACTIONS(2790), - [anon_sym_true] = ACTIONS(2788), - [anon_sym_false] = ACTIONS(2788), - [aux_sym_string_token1] = ACTIONS(2790), - [aux_sym_string_token3] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2790), + [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(2792), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_package] = ACTIONS(2792), - [anon_sym_import] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_using] = ACTIONS(2792), - [anon_sym_throw] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_switch] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_case] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2792), - [anon_sym_cast] = ACTIONS(2792), - [anon_sym_DOLLARtype] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_untyped] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_this] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_AT_COLON] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2792), - [anon_sym_catch] = ACTIONS(2792), - [anon_sym_else] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_while] = ACTIONS(2792), - [anon_sym_do] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_EQ_GT] = ACTIONS(2794), - [anon_sym_QMARK_QMARK] = ACTIONS(2794), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2794), - [anon_sym_null] = ACTIONS(2792), - [anon_sym_macro] = ACTIONS(2792), - [anon_sym_abstract] = ACTIONS(2792), - [anon_sym_static] = ACTIONS(2792), - [anon_sym_public] = ACTIONS(2792), - [anon_sym_private] = ACTIONS(2792), - [anon_sym_extern] = ACTIONS(2792), - [anon_sym_inline] = ACTIONS(2792), - [anon_sym_overload] = ACTIONS(2792), - [anon_sym_override] = ACTIONS(2792), - [anon_sym_final] = ACTIONS(2792), - [anon_sym_class] = ACTIONS(2792), - [anon_sym_interface] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_typedef] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2792), - [anon_sym_var] = ACTIONS(2792), - [aux_sym_integer_token1] = ACTIONS(2792), - [aux_sym_integer_token2] = ACTIONS(2794), - [aux_sym_float_token1] = ACTIONS(2792), - [aux_sym_float_token2] = ACTIONS(2794), - [anon_sym_true] = ACTIONS(2792), - [anon_sym_false] = ACTIONS(2792), - [aux_sym_string_token1] = ACTIONS(2794), - [aux_sym_string_token3] = ACTIONS(2794), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2794), + [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(2796), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_package] = ACTIONS(2796), - [anon_sym_import] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_using] = ACTIONS(2796), - [anon_sym_throw] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_switch] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_case] = ACTIONS(2796), - [anon_sym_default] = ACTIONS(2796), - [anon_sym_cast] = ACTIONS(2796), - [anon_sym_DOLLARtype] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_untyped] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_this] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_AT_COLON] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2796), - [anon_sym_catch] = ACTIONS(2796), - [anon_sym_else] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2796), - [anon_sym_new] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_EQ_GT] = ACTIONS(2798), - [anon_sym_QMARK_QMARK] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2796), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2798), - [anon_sym_null] = ACTIONS(2796), - [anon_sym_macro] = ACTIONS(2796), - [anon_sym_abstract] = ACTIONS(2796), - [anon_sym_static] = ACTIONS(2796), - [anon_sym_public] = ACTIONS(2796), - [anon_sym_private] = ACTIONS(2796), - [anon_sym_extern] = ACTIONS(2796), - [anon_sym_inline] = ACTIONS(2796), - [anon_sym_overload] = ACTIONS(2796), - [anon_sym_override] = ACTIONS(2796), - [anon_sym_final] = ACTIONS(2796), - [anon_sym_class] = ACTIONS(2796), - [anon_sym_interface] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_typedef] = ACTIONS(2796), - [anon_sym_function] = ACTIONS(2796), - [anon_sym_var] = ACTIONS(2796), - [aux_sym_integer_token1] = ACTIONS(2796), - [aux_sym_integer_token2] = ACTIONS(2798), - [aux_sym_float_token1] = ACTIONS(2796), - [aux_sym_float_token2] = ACTIONS(2798), - [anon_sym_true] = ACTIONS(2796), - [anon_sym_false] = ACTIONS(2796), - [aux_sym_string_token1] = ACTIONS(2798), - [aux_sym_string_token3] = ACTIONS(2798), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2798), + [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(2800), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_package] = ACTIONS(2800), - [anon_sym_import] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_using] = ACTIONS(2800), - [anon_sym_throw] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_switch] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_case] = ACTIONS(2800), - [anon_sym_default] = ACTIONS(2800), - [anon_sym_cast] = ACTIONS(2800), - [anon_sym_DOLLARtype] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_untyped] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_this] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_AT_COLON] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2800), - [anon_sym_catch] = ACTIONS(2800), - [anon_sym_else] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_while] = ACTIONS(2800), - [anon_sym_do] = ACTIONS(2800), - [anon_sym_new] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_EQ_GT] = ACTIONS(2802), - [anon_sym_QMARK_QMARK] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2802), - [anon_sym_null] = ACTIONS(2800), - [anon_sym_macro] = ACTIONS(2800), - [anon_sym_abstract] = ACTIONS(2800), - [anon_sym_static] = ACTIONS(2800), - [anon_sym_public] = ACTIONS(2800), - [anon_sym_private] = ACTIONS(2800), - [anon_sym_extern] = ACTIONS(2800), - [anon_sym_inline] = ACTIONS(2800), - [anon_sym_overload] = ACTIONS(2800), - [anon_sym_override] = ACTIONS(2800), - [anon_sym_final] = ACTIONS(2800), - [anon_sym_class] = ACTIONS(2800), - [anon_sym_interface] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_typedef] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2800), - [anon_sym_var] = ACTIONS(2800), - [aux_sym_integer_token1] = ACTIONS(2800), - [aux_sym_integer_token2] = ACTIONS(2802), - [aux_sym_float_token1] = ACTIONS(2800), - [aux_sym_float_token2] = ACTIONS(2802), - [anon_sym_true] = ACTIONS(2800), - [anon_sym_false] = ACTIONS(2800), - [aux_sym_string_token1] = ACTIONS(2802), - [aux_sym_string_token3] = ACTIONS(2802), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2802), + [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(2804), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_package] = ACTIONS(2804), - [anon_sym_import] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2804), - [anon_sym_throw] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2804), - [anon_sym_default] = ACTIONS(2804), - [anon_sym_cast] = ACTIONS(2804), - [anon_sym_DOLLARtype] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_untyped] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_this] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_AT_COLON] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2804), - [anon_sym_catch] = ACTIONS(2804), - [anon_sym_else] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_do] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_EQ_GT] = ACTIONS(2806), - [anon_sym_QMARK_QMARK] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2804), - [anon_sym_macro] = ACTIONS(2804), - [anon_sym_abstract] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_public] = ACTIONS(2804), - [anon_sym_private] = ACTIONS(2804), - [anon_sym_extern] = ACTIONS(2804), - [anon_sym_inline] = ACTIONS(2804), - [anon_sym_overload] = ACTIONS(2804), - [anon_sym_override] = ACTIONS(2804), - [anon_sym_final] = ACTIONS(2804), - [anon_sym_class] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_typedef] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2804), - [anon_sym_var] = ACTIONS(2804), - [aux_sym_integer_token1] = ACTIONS(2804), - [aux_sym_integer_token2] = ACTIONS(2806), - [aux_sym_float_token1] = ACTIONS(2804), - [aux_sym_float_token2] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [aux_sym_string_token1] = ACTIONS(2806), - [aux_sym_string_token3] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2806), + [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(2808), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_package] = ACTIONS(2808), - [anon_sym_import] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_using] = ACTIONS(2808), - [anon_sym_throw] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_case] = ACTIONS(2808), - [anon_sym_default] = ACTIONS(2808), - [anon_sym_cast] = ACTIONS(2808), - [anon_sym_DOLLARtype] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_untyped] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_this] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_AT_COLON] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2808), - [anon_sym_catch] = ACTIONS(2808), - [anon_sym_else] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_while] = ACTIONS(2808), - [anon_sym_do] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_EQ_GT] = ACTIONS(2810), - [anon_sym_QMARK_QMARK] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2808), - [anon_sym_macro] = ACTIONS(2808), - [anon_sym_abstract] = ACTIONS(2808), - [anon_sym_static] = ACTIONS(2808), - [anon_sym_public] = ACTIONS(2808), - [anon_sym_private] = ACTIONS(2808), - [anon_sym_extern] = ACTIONS(2808), - [anon_sym_inline] = ACTIONS(2808), - [anon_sym_overload] = ACTIONS(2808), - [anon_sym_override] = ACTIONS(2808), - [anon_sym_final] = ACTIONS(2808), - [anon_sym_class] = ACTIONS(2808), - [anon_sym_interface] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2808), - [anon_sym_var] = ACTIONS(2808), - [aux_sym_integer_token1] = ACTIONS(2808), - [aux_sym_integer_token2] = ACTIONS(2810), - [aux_sym_float_token1] = ACTIONS(2808), - [aux_sym_float_token2] = ACTIONS(2810), - [anon_sym_true] = ACTIONS(2808), - [anon_sym_false] = ACTIONS(2808), - [aux_sym_string_token1] = ACTIONS(2810), - [aux_sym_string_token3] = ACTIONS(2810), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2810), + [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(2812), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_package] = ACTIONS(2812), - [anon_sym_import] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_using] = ACTIONS(2812), - [anon_sym_throw] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_switch] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_case] = ACTIONS(2812), - [anon_sym_default] = ACTIONS(2812), - [anon_sym_cast] = ACTIONS(2812), - [anon_sym_DOLLARtype] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_untyped] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_this] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_AT_COLON] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2812), - [anon_sym_catch] = ACTIONS(2812), - [anon_sym_else] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_while] = ACTIONS(2812), - [anon_sym_do] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_EQ_GT] = ACTIONS(2814), - [anon_sym_QMARK_QMARK] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2814), - [anon_sym_null] = ACTIONS(2812), - [anon_sym_macro] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_extern] = ACTIONS(2812), - [anon_sym_inline] = ACTIONS(2812), - [anon_sym_overload] = ACTIONS(2812), - [anon_sym_override] = ACTIONS(2812), - [anon_sym_final] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2812), - [anon_sym_var] = ACTIONS(2812), - [aux_sym_integer_token1] = ACTIONS(2812), - [aux_sym_integer_token2] = ACTIONS(2814), - [aux_sym_float_token1] = ACTIONS(2812), - [aux_sym_float_token2] = ACTIONS(2814), - [anon_sym_true] = ACTIONS(2812), - [anon_sym_false] = ACTIONS(2812), - [aux_sym_string_token1] = ACTIONS(2814), - [aux_sym_string_token3] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2814), + [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(2816), - [anon_sym_POUND] = ACTIONS(2818), - [anon_sym_package] = ACTIONS(2816), - [anon_sym_import] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2816), - [anon_sym_throw] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2816), - [anon_sym_default] = ACTIONS(2816), - [anon_sym_cast] = ACTIONS(2816), - [anon_sym_DOLLARtype] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_untyped] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_this] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_AT_COLON] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2816), - [anon_sym_catch] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2816), - [anon_sym_do] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_EQ_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_EQ_GT] = ACTIONS(2818), - [anon_sym_QMARK_QMARK] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2818), - [anon_sym_null] = ACTIONS(2816), - [anon_sym_macro] = ACTIONS(2816), - [anon_sym_abstract] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_public] = ACTIONS(2816), - [anon_sym_private] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2816), - [anon_sym_inline] = ACTIONS(2816), - [anon_sym_overload] = ACTIONS(2816), - [anon_sym_override] = ACTIONS(2816), - [anon_sym_final] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_typedef] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2816), - [anon_sym_var] = ACTIONS(2816), - [aux_sym_integer_token1] = ACTIONS(2816), - [aux_sym_integer_token2] = ACTIONS(2818), - [aux_sym_float_token1] = ACTIONS(2816), - [aux_sym_float_token2] = ACTIONS(2818), - [anon_sym_true] = ACTIONS(2816), - [anon_sym_false] = ACTIONS(2816), - [aux_sym_string_token1] = ACTIONS(2818), - [aux_sym_string_token3] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2818), + [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(2820), - [anon_sym_POUND] = ACTIONS(2822), - [anon_sym_package] = ACTIONS(2820), - [anon_sym_import] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_cast] = ACTIONS(2820), - [anon_sym_DOLLARtype] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_untyped] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_this] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_AT_COLON] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_EQ_EQ] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2822), - [anon_sym_EQ_GT] = ACTIONS(2822), - [anon_sym_QMARK_QMARK] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2822), - [anon_sym_null] = ACTIONS(2820), - [anon_sym_macro] = ACTIONS(2820), - [anon_sym_abstract] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym_overload] = ACTIONS(2820), - [anon_sym_override] = ACTIONS(2820), - [anon_sym_final] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2820), - [anon_sym_var] = ACTIONS(2820), - [aux_sym_integer_token1] = ACTIONS(2820), - [aux_sym_integer_token2] = ACTIONS(2822), - [aux_sym_float_token1] = ACTIONS(2820), - [aux_sym_float_token2] = ACTIONS(2822), - [anon_sym_true] = ACTIONS(2820), - [anon_sym_false] = ACTIONS(2820), - [aux_sym_string_token1] = ACTIONS(2822), - [aux_sym_string_token3] = ACTIONS(2822), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2822), + [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(2824), - [anon_sym_POUND] = ACTIONS(2826), - [anon_sym_package] = ACTIONS(2824), - [anon_sym_import] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2824), - [anon_sym_throw] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2824), - [anon_sym_default] = ACTIONS(2824), - [anon_sym_cast] = ACTIONS(2824), - [anon_sym_DOLLARtype] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_untyped] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_this] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_AT_COLON] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2824), - [anon_sym_catch] = ACTIONS(2824), - [anon_sym_else] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_while] = ACTIONS(2824), - [anon_sym_do] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_EQ_GT] = ACTIONS(2826), - [anon_sym_QMARK_QMARK] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2826), - [anon_sym_null] = ACTIONS(2824), - [anon_sym_macro] = ACTIONS(2824), - [anon_sym_abstract] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_public] = ACTIONS(2824), - [anon_sym_private] = ACTIONS(2824), - [anon_sym_extern] = ACTIONS(2824), - [anon_sym_inline] = ACTIONS(2824), - [anon_sym_overload] = ACTIONS(2824), - [anon_sym_override] = ACTIONS(2824), - [anon_sym_final] = ACTIONS(2824), - [anon_sym_class] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_typedef] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2824), - [anon_sym_var] = ACTIONS(2824), - [aux_sym_integer_token1] = ACTIONS(2824), - [aux_sym_integer_token2] = ACTIONS(2826), - [aux_sym_float_token1] = ACTIONS(2824), - [aux_sym_float_token2] = ACTIONS(2826), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [aux_sym_string_token1] = ACTIONS(2826), - [aux_sym_string_token3] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2826), + [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(2828), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_package] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2828), - [anon_sym_throw] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_cast] = ACTIONS(2828), - [anon_sym_DOLLARtype] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_untyped] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_this] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_AT_COLON] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_catch] = ACTIONS(2828), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_do] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_EQ_GT] = ACTIONS(2830), - [anon_sym_QMARK_QMARK] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_null] = ACTIONS(2828), - [anon_sym_macro] = ACTIONS(2828), - [anon_sym_abstract] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_private] = ACTIONS(2828), - [anon_sym_extern] = ACTIONS(2828), - [anon_sym_inline] = ACTIONS(2828), - [anon_sym_overload] = ACTIONS(2828), - [anon_sym_override] = ACTIONS(2828), - [anon_sym_final] = ACTIONS(2828), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_typedef] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2828), - [anon_sym_var] = ACTIONS(2828), - [aux_sym_integer_token1] = ACTIONS(2828), - [aux_sym_integer_token2] = ACTIONS(2830), - [aux_sym_float_token1] = ACTIONS(2828), - [aux_sym_float_token2] = ACTIONS(2830), - [anon_sym_true] = ACTIONS(2828), - [anon_sym_false] = ACTIONS(2828), - [aux_sym_string_token1] = ACTIONS(2830), - [aux_sym_string_token3] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2830), + [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(2832), - [anon_sym_POUND] = ACTIONS(2834), - [anon_sym_package] = ACTIONS(2832), - [anon_sym_import] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2832), - [anon_sym_throw] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_case] = ACTIONS(2832), - [anon_sym_default] = ACTIONS(2832), - [anon_sym_cast] = ACTIONS(2832), - [anon_sym_DOLLARtype] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_untyped] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_this] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_AT_COLON] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2832), - [anon_sym_catch] = ACTIONS(2832), - [anon_sym_else] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_while] = ACTIONS(2832), - [anon_sym_do] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2834), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_EQ_EQ] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2834), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2834), - [anon_sym_EQ_GT] = ACTIONS(2834), - [anon_sym_QMARK_QMARK] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2834), - [anon_sym_null] = ACTIONS(2832), - [anon_sym_macro] = ACTIONS(2832), - [anon_sym_abstract] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_extern] = ACTIONS(2832), - [anon_sym_inline] = ACTIONS(2832), - [anon_sym_overload] = ACTIONS(2832), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_final] = ACTIONS(2832), - [anon_sym_class] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_typedef] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2832), - [anon_sym_var] = ACTIONS(2832), - [aux_sym_integer_token1] = ACTIONS(2832), - [aux_sym_integer_token2] = ACTIONS(2834), - [aux_sym_float_token1] = ACTIONS(2832), - [aux_sym_float_token2] = ACTIONS(2834), - [anon_sym_true] = ACTIONS(2832), - [anon_sym_false] = ACTIONS(2832), - [aux_sym_string_token1] = ACTIONS(2834), - [aux_sym_string_token3] = ACTIONS(2834), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2834), + [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(2836), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_package] = ACTIONS(2836), - [anon_sym_import] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_throw] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_cast] = ACTIONS(2836), - [anon_sym_DOLLARtype] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_untyped] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_this] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_AT_COLON] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(2836), - [anon_sym_else] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_do] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_EQ_GT] = ACTIONS(2838), - [anon_sym_QMARK_QMARK] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2838), - [anon_sym_null] = ACTIONS(2836), - [anon_sym_macro] = ACTIONS(2836), - [anon_sym_abstract] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym_overload] = ACTIONS(2836), - [anon_sym_override] = ACTIONS(2836), - [anon_sym_final] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2836), - [anon_sym_var] = ACTIONS(2836), - [aux_sym_integer_token1] = ACTIONS(2836), - [aux_sym_integer_token2] = ACTIONS(2838), - [aux_sym_float_token1] = ACTIONS(2836), - [aux_sym_float_token2] = ACTIONS(2838), - [anon_sym_true] = ACTIONS(2836), - [anon_sym_false] = ACTIONS(2836), - [aux_sym_string_token1] = ACTIONS(2838), - [aux_sym_string_token3] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2838), + [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(2840), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_package] = ACTIONS(2840), - [anon_sym_import] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_cast] = ACTIONS(2840), - [anon_sym_DOLLARtype] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_untyped] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_this] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_AT_COLON] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_catch] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2842), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_EQ_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2842), - [anon_sym_EQ_GT] = ACTIONS(2842), - [anon_sym_QMARK_QMARK] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2842), - [anon_sym_null] = ACTIONS(2840), - [anon_sym_macro] = ACTIONS(2840), - [anon_sym_abstract] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_public] = ACTIONS(2840), - [anon_sym_private] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym_inline] = ACTIONS(2840), - [anon_sym_overload] = ACTIONS(2840), - [anon_sym_override] = ACTIONS(2840), - [anon_sym_final] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2840), - [anon_sym_var] = ACTIONS(2840), - [aux_sym_integer_token1] = ACTIONS(2840), - [aux_sym_integer_token2] = ACTIONS(2842), - [aux_sym_float_token1] = ACTIONS(2840), - [aux_sym_float_token2] = ACTIONS(2842), - [anon_sym_true] = ACTIONS(2840), - [anon_sym_false] = ACTIONS(2840), - [aux_sym_string_token1] = ACTIONS(2842), - [aux_sym_string_token3] = ACTIONS(2842), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2842), + [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(2844), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_package] = ACTIONS(2844), - [anon_sym_import] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_throw] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_switch] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_case] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), - [anon_sym_cast] = ACTIONS(2844), - [anon_sym_DOLLARtype] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_untyped] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_this] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_AT_COLON] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_catch] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_do] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_EQ_GT] = ACTIONS(2846), - [anon_sym_QMARK_QMARK] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2846), - [anon_sym_null] = ACTIONS(2844), - [anon_sym_macro] = ACTIONS(2844), - [anon_sym_abstract] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_public] = ACTIONS(2844), - [anon_sym_private] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym_overload] = ACTIONS(2844), - [anon_sym_override] = ACTIONS(2844), - [anon_sym_final] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_interface] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2844), - [anon_sym_var] = ACTIONS(2844), - [aux_sym_integer_token1] = ACTIONS(2844), - [aux_sym_integer_token2] = ACTIONS(2846), - [aux_sym_float_token1] = ACTIONS(2844), - [aux_sym_float_token2] = ACTIONS(2846), - [anon_sym_true] = ACTIONS(2844), - [anon_sym_false] = ACTIONS(2844), - [aux_sym_string_token1] = ACTIONS(2846), - [aux_sym_string_token3] = ACTIONS(2846), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2846), + [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(2848), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_package] = ACTIONS(2848), - [anon_sym_import] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_using] = ACTIONS(2848), - [anon_sym_throw] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_switch] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_case] = ACTIONS(2848), - [anon_sym_default] = ACTIONS(2848), - [anon_sym_cast] = ACTIONS(2848), - [anon_sym_DOLLARtype] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_untyped] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_this] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_AT_COLON] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2848), - [anon_sym_catch] = ACTIONS(2848), - [anon_sym_else] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_while] = ACTIONS(2848), - [anon_sym_do] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_EQ_GT] = ACTIONS(2850), - [anon_sym_QMARK_QMARK] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2848), - [anon_sym_macro] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2848), - [anon_sym_static] = ACTIONS(2848), - [anon_sym_public] = ACTIONS(2848), - [anon_sym_private] = ACTIONS(2848), - [anon_sym_extern] = ACTIONS(2848), - [anon_sym_inline] = ACTIONS(2848), - [anon_sym_overload] = ACTIONS(2848), - [anon_sym_override] = ACTIONS(2848), - [anon_sym_final] = ACTIONS(2848), - [anon_sym_class] = ACTIONS(2848), - [anon_sym_interface] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_typedef] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2848), - [anon_sym_var] = ACTIONS(2848), - [aux_sym_integer_token1] = ACTIONS(2848), - [aux_sym_integer_token2] = ACTIONS(2850), - [aux_sym_float_token1] = ACTIONS(2848), - [aux_sym_float_token2] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2848), - [anon_sym_false] = ACTIONS(2848), - [aux_sym_string_token1] = ACTIONS(2850), - [aux_sym_string_token3] = ACTIONS(2850), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2850), + [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(2852), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_package] = ACTIONS(2852), - [anon_sym_import] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_using] = ACTIONS(2852), - [anon_sym_throw] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_switch] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_case] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_cast] = ACTIONS(2852), - [anon_sym_DOLLARtype] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_untyped] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_this] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_AT_COLON] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2852), - [anon_sym_catch] = ACTIONS(2852), - [anon_sym_else] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_do] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_EQ_GT] = ACTIONS(2854), - [anon_sym_QMARK_QMARK] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2854), - [anon_sym_null] = ACTIONS(2852), - [anon_sym_macro] = ACTIONS(2852), - [anon_sym_abstract] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_public] = ACTIONS(2852), - [anon_sym_private] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_overload] = ACTIONS(2852), - [anon_sym_override] = ACTIONS(2852), - [anon_sym_final] = ACTIONS(2852), - [anon_sym_class] = ACTIONS(2852), - [anon_sym_interface] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2852), - [anon_sym_var] = ACTIONS(2852), - [aux_sym_integer_token1] = ACTIONS(2852), - [aux_sym_integer_token2] = ACTIONS(2854), - [aux_sym_float_token1] = ACTIONS(2852), - [aux_sym_float_token2] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2852), - [anon_sym_false] = ACTIONS(2852), - [aux_sym_string_token1] = ACTIONS(2854), - [aux_sym_string_token3] = ACTIONS(2854), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2854), + [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(2856), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_package] = ACTIONS(2856), - [anon_sym_import] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_using] = ACTIONS(2856), - [anon_sym_throw] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2856), - [anon_sym_default] = ACTIONS(2856), - [anon_sym_cast] = ACTIONS(2856), - [anon_sym_DOLLARtype] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_untyped] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_this] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_AT_COLON] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2856), - [anon_sym_catch] = ACTIONS(2856), - [anon_sym_else] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_do] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_EQ_GT] = ACTIONS(2858), - [anon_sym_QMARK_QMARK] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2858), - [anon_sym_null] = ACTIONS(2856), - [anon_sym_macro] = ACTIONS(2856), - [anon_sym_abstract] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_public] = ACTIONS(2856), - [anon_sym_private] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_overload] = ACTIONS(2856), - [anon_sym_override] = ACTIONS(2856), - [anon_sym_final] = ACTIONS(2856), - [anon_sym_class] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2856), - [anon_sym_var] = ACTIONS(2856), - [aux_sym_integer_token1] = ACTIONS(2856), - [aux_sym_integer_token2] = ACTIONS(2858), - [aux_sym_float_token1] = ACTIONS(2856), - [aux_sym_float_token2] = ACTIONS(2858), - [anon_sym_true] = ACTIONS(2856), - [anon_sym_false] = ACTIONS(2856), - [aux_sym_string_token1] = ACTIONS(2858), - [aux_sym_string_token3] = ACTIONS(2858), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2858), + [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(2860), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_package] = ACTIONS(2860), - [anon_sym_import] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_case] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_cast] = ACTIONS(2860), - [anon_sym_DOLLARtype] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_untyped] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_this] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_AT_COLON] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_catch] = ACTIONS(2860), - [anon_sym_else] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_EQ_GT] = ACTIONS(2862), - [anon_sym_QMARK_QMARK] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2862), - [anon_sym_null] = ACTIONS(2860), - [anon_sym_macro] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_overload] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2860), - [anon_sym_final] = ACTIONS(2860), - [anon_sym_class] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2860), - [anon_sym_var] = ACTIONS(2860), - [aux_sym_integer_token1] = ACTIONS(2860), - [aux_sym_integer_token2] = ACTIONS(2862), - [aux_sym_float_token1] = ACTIONS(2860), - [aux_sym_float_token2] = ACTIONS(2862), - [anon_sym_true] = ACTIONS(2860), - [anon_sym_false] = ACTIONS(2860), - [aux_sym_string_token1] = ACTIONS(2862), - [aux_sym_string_token3] = ACTIONS(2862), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2862), + [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(2864), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_package] = ACTIONS(2864), - [anon_sym_import] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_using] = ACTIONS(2864), - [anon_sym_throw] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_switch] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_case] = ACTIONS(2864), - [anon_sym_default] = ACTIONS(2864), - [anon_sym_cast] = ACTIONS(2864), - [anon_sym_DOLLARtype] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_untyped] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_this] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_AT_COLON] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2864), - [anon_sym_catch] = ACTIONS(2864), - [anon_sym_else] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_while] = ACTIONS(2864), - [anon_sym_do] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2866), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_EQ_EQ] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2866), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2866), - [anon_sym_EQ_GT] = ACTIONS(2866), - [anon_sym_QMARK_QMARK] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2866), - [anon_sym_null] = ACTIONS(2864), - [anon_sym_macro] = ACTIONS(2864), - [anon_sym_abstract] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_public] = ACTIONS(2864), - [anon_sym_private] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym_inline] = ACTIONS(2864), - [anon_sym_overload] = ACTIONS(2864), - [anon_sym_override] = ACTIONS(2864), - [anon_sym_final] = ACTIONS(2864), - [anon_sym_class] = ACTIONS(2864), - [anon_sym_interface] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_typedef] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2864), - [anon_sym_var] = ACTIONS(2864), - [aux_sym_integer_token1] = ACTIONS(2864), - [aux_sym_integer_token2] = ACTIONS(2866), - [aux_sym_float_token1] = ACTIONS(2864), - [aux_sym_float_token2] = ACTIONS(2866), - [anon_sym_true] = ACTIONS(2864), - [anon_sym_false] = ACTIONS(2864), - [aux_sym_string_token1] = ACTIONS(2866), - [aux_sym_string_token3] = ACTIONS(2866), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2866), + [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(2868), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_package] = ACTIONS(2868), - [anon_sym_import] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2868), - [anon_sym_throw] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_switch] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_case] = ACTIONS(2868), - [anon_sym_default] = ACTIONS(2868), - [anon_sym_cast] = ACTIONS(2868), - [anon_sym_DOLLARtype] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_untyped] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_this] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_AT_COLON] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2868), - [anon_sym_catch] = ACTIONS(2868), - [anon_sym_else] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [anon_sym_do] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_EQ_GT] = ACTIONS(2870), - [anon_sym_QMARK_QMARK] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2870), - [anon_sym_null] = ACTIONS(2868), - [anon_sym_macro] = ACTIONS(2868), - [anon_sym_abstract] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_public] = ACTIONS(2868), - [anon_sym_private] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_overload] = ACTIONS(2868), - [anon_sym_override] = ACTIONS(2868), - [anon_sym_final] = ACTIONS(2868), - [anon_sym_class] = ACTIONS(2868), - [anon_sym_interface] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2868), - [anon_sym_var] = ACTIONS(2868), - [aux_sym_integer_token1] = ACTIONS(2868), - [aux_sym_integer_token2] = ACTIONS(2870), - [aux_sym_float_token1] = ACTIONS(2868), - [aux_sym_float_token2] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [aux_sym_string_token1] = ACTIONS(2870), - [aux_sym_string_token3] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2870), + [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(2872), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_package] = ACTIONS(2872), - [anon_sym_import] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(2872), - [anon_sym_throw] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_switch] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_case] = ACTIONS(2872), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_cast] = ACTIONS(2872), - [anon_sym_DOLLARtype] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_untyped] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_this] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_AT_COLON] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2872), - [anon_sym_catch] = ACTIONS(2872), - [anon_sym_else] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [anon_sym_do] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_EQ_GT] = ACTIONS(2874), - [anon_sym_QMARK_QMARK] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2872), - [anon_sym_macro] = ACTIONS(2872), - [anon_sym_abstract] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_private] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_overload] = ACTIONS(2872), - [anon_sym_override] = ACTIONS(2872), - [anon_sym_final] = ACTIONS(2872), - [anon_sym_class] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2872), - [anon_sym_var] = ACTIONS(2872), - [aux_sym_integer_token1] = ACTIONS(2872), - [aux_sym_integer_token2] = ACTIONS(2874), - [aux_sym_float_token1] = ACTIONS(2872), - [aux_sym_float_token2] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [aux_sym_string_token1] = ACTIONS(2874), - [aux_sym_string_token3] = ACTIONS(2874), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2874), + [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(2876), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_package] = ACTIONS(2876), - [anon_sym_import] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2876), - [anon_sym_throw] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_cast] = ACTIONS(2876), - [anon_sym_DOLLARtype] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_untyped] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_this] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_AT_COLON] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2876), - [anon_sym_catch] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_EQ_GT] = ACTIONS(2878), - [anon_sym_QMARK_QMARK] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2878), - [anon_sym_null] = ACTIONS(2876), - [anon_sym_macro] = ACTIONS(2876), - [anon_sym_abstract] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_public] = ACTIONS(2876), - [anon_sym_private] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_overload] = ACTIONS(2876), - [anon_sym_override] = ACTIONS(2876), - [anon_sym_final] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2876), - [anon_sym_interface] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2876), - [anon_sym_var] = ACTIONS(2876), - [aux_sym_integer_token1] = ACTIONS(2876), - [aux_sym_integer_token2] = ACTIONS(2878), - [aux_sym_float_token1] = ACTIONS(2876), - [aux_sym_float_token2] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2876), - [anon_sym_false] = ACTIONS(2876), - [aux_sym_string_token1] = ACTIONS(2878), - [aux_sym_string_token3] = ACTIONS(2878), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2878), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [471] = { - [sym_identifier] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_package] = ACTIONS(2880), - [anon_sym_import] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2880), - [anon_sym_throw] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_cast] = ACTIONS(2880), - [anon_sym_DOLLARtype] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_untyped] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_this] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_AT_COLON] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2880), - [anon_sym_catch] = ACTIONS(2880), - [anon_sym_else] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_EQ_GT] = ACTIONS(2882), - [anon_sym_QMARK_QMARK] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2882), - [anon_sym_null] = ACTIONS(2880), - [anon_sym_macro] = ACTIONS(2880), - [anon_sym_abstract] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_public] = ACTIONS(2880), - [anon_sym_private] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_overload] = ACTIONS(2880), - [anon_sym_override] = ACTIONS(2880), - [anon_sym_final] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2880), - [anon_sym_var] = ACTIONS(2880), - [aux_sym_integer_token1] = ACTIONS(2880), - [aux_sym_integer_token2] = ACTIONS(2882), - [aux_sym_float_token1] = ACTIONS(2880), - [aux_sym_float_token2] = ACTIONS(2882), - [anon_sym_true] = ACTIONS(2880), - [anon_sym_false] = ACTIONS(2880), - [aux_sym_string_token1] = ACTIONS(2882), - [aux_sym_string_token3] = ACTIONS(2882), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2882), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [472] = { - [sym_identifier] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_package] = ACTIONS(2612), - [anon_sym_import] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2612), - [anon_sym_throw] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2612), - [anon_sym_default] = ACTIONS(2612), - [anon_sym_cast] = ACTIONS(2612), - [anon_sym_DOLLARtype] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_untyped] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_this] = ACTIONS(2612), - [anon_sym_AT] = ACTIONS(2612), - [anon_sym_AT_COLON] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2612), - [anon_sym_catch] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_do] = ACTIONS(2612), - [anon_sym_new] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2614), - [anon_sym_PERCENT] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2612), - [anon_sym_PLUS] = ACTIONS(2612), - [anon_sym_LT_LT] = ACTIONS(2614), - [anon_sym_GT_GT] = ACTIONS(2612), - [anon_sym_GT_GT_GT] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT] = ACTIONS(2612), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_EQ_GT] = ACTIONS(2614), - [anon_sym_QMARK_QMARK] = ACTIONS(2614), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2612), - [anon_sym_macro] = ACTIONS(2612), - [anon_sym_abstract] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_inline] = ACTIONS(2612), - [anon_sym_overload] = ACTIONS(2612), - [anon_sym_override] = ACTIONS(2612), - [anon_sym_final] = ACTIONS(2612), - [anon_sym_class] = ACTIONS(2612), - [anon_sym_interface] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2612), - [anon_sym_function] = ACTIONS(2612), - [anon_sym_var] = ACTIONS(2612), - [aux_sym_integer_token1] = ACTIONS(2612), - [aux_sym_integer_token2] = ACTIONS(2614), - [aux_sym_float_token1] = ACTIONS(2612), - [aux_sym_float_token2] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [aux_sym_string_token1] = ACTIONS(2614), - [aux_sym_string_token3] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2614), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [473] = { - [sym_identifier] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2628), - [anon_sym_package] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_cast] = ACTIONS(2626), - [anon_sym_DOLLARtype] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_untyped] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_this] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2626), - [anon_sym_AT_COLON] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_catch] = ACTIONS(2626), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_GT_GT_GT] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2628), - [anon_sym_EQ_GT] = ACTIONS(2628), - [anon_sym_QMARK_QMARK] = ACTIONS(2628), - [anon_sym_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_macro] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_extern] = ACTIONS(2626), - [anon_sym_inline] = ACTIONS(2626), - [anon_sym_overload] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_typedef] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [aux_sym_integer_token1] = ACTIONS(2626), - [aux_sym_integer_token2] = ACTIONS(2628), - [aux_sym_float_token1] = ACTIONS(2626), - [aux_sym_float_token2] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [aux_sym_string_token1] = ACTIONS(2628), - [aux_sym_string_token3] = ACTIONS(2628), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2628), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [474] = { - [sym_identifier] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2885), [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_package] = ACTIONS(2884), - [anon_sym_import] = ACTIONS(2884), + [anon_sym_package] = ACTIONS(2885), + [anon_sym_import] = ACTIONS(2885), [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_using] = ACTIONS(2884), - [anon_sym_throw] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2885), + [anon_sym_throw] = ACTIONS(2885), [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_switch] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2885), [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_case] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_cast] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2885), + [anon_sym_default] = ACTIONS(2885), + [anon_sym_cast] = ACTIONS(2885), [anon_sym_DOLLARtype] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_untyped] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), + [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(2884), - [anon_sym_AT] = ACTIONS(2884), + [anon_sym_this] = ACTIONS(2885), + [anon_sym_AT] = ACTIONS(2885), [anon_sym_AT_COLON] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2884), - [anon_sym_catch] = ACTIONS(2884), - [anon_sym_else] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2884), + [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(2884), - [anon_sym_DASH] = ACTIONS(2884), + [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(2884), - [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2884), + [anon_sym_GT_GT] = ACTIONS(2885), [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), + [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(2884), + [anon_sym_LT] = ACTIONS(2885), [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2884), + [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(2884), + [anon_sym_EQ] = ACTIONS(2885), [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2884), - [anon_sym_macro] = ACTIONS(2884), - [anon_sym_abstract] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_overload] = ACTIONS(2884), - [anon_sym_override] = ACTIONS(2884), - [anon_sym_final] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_interface] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2884), - [anon_sym_var] = ACTIONS(2884), - [aux_sym_integer_token1] = ACTIONS(2884), + [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(2884), + [aux_sym_float_token1] = ACTIONS(2885), [aux_sym_float_token2] = ACTIONS(2887), - [anon_sym_true] = ACTIONS(2884), - [anon_sym_false] = ACTIONS(2884), + [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(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(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(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(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(2890), - [anon_sym_POUND] = ACTIONS(2892), - [anon_sym_package] = ACTIONS(2890), - [anon_sym_import] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_using] = ACTIONS(2890), - [anon_sym_throw] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2890), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_cast] = ACTIONS(2890), - [anon_sym_DOLLARtype] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_untyped] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_this] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2890), - [anon_sym_AT_COLON] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_catch] = ACTIONS(2890), - [anon_sym_else] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_GT_GT_GT] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_GT_EQ] = ACTIONS(2892), - [anon_sym_EQ_GT] = ACTIONS(2892), - [anon_sym_QMARK_QMARK] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_macro] = ACTIONS(2890), - [anon_sym_abstract] = ACTIONS(2890), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym_inline] = ACTIONS(2890), - [anon_sym_overload] = ACTIONS(2890), - [anon_sym_override] = ACTIONS(2890), - [anon_sym_final] = ACTIONS(2890), - [anon_sym_class] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_var] = ACTIONS(2890), - [aux_sym_integer_token1] = ACTIONS(2890), - [aux_sym_integer_token2] = ACTIONS(2892), - [aux_sym_float_token1] = ACTIONS(2890), - [aux_sym_float_token2] = ACTIONS(2892), - [anon_sym_true] = ACTIONS(2890), - [anon_sym_false] = ACTIONS(2890), - [aux_sym_string_token1] = ACTIONS(2892), - [aux_sym_string_token3] = ACTIONS(2892), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2892), + [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(2894), - [anon_sym_POUND] = ACTIONS(2896), - [anon_sym_package] = ACTIONS(2894), - [anon_sym_import] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_using] = ACTIONS(2894), - [anon_sym_throw] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2894), - [anon_sym_default] = ACTIONS(2894), - [anon_sym_cast] = ACTIONS(2894), - [anon_sym_DOLLARtype] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_untyped] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_this] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2894), - [anon_sym_AT_COLON] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_catch] = ACTIONS(2894), - [anon_sym_else] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_PERCENT] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2896), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_PIPE_PIPE] = ACTIONS(2896), - [anon_sym_EQ_EQ] = ACTIONS(2896), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2896), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2896), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_QMARK_QMARK] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_macro] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_extern] = ACTIONS(2894), - [anon_sym_inline] = ACTIONS(2894), - [anon_sym_overload] = ACTIONS(2894), - [anon_sym_override] = ACTIONS(2894), - [anon_sym_final] = ACTIONS(2894), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_var] = ACTIONS(2894), - [aux_sym_integer_token1] = ACTIONS(2894), - [aux_sym_integer_token2] = ACTIONS(2896), - [aux_sym_float_token1] = ACTIONS(2894), - [aux_sym_float_token2] = ACTIONS(2896), - [anon_sym_true] = ACTIONS(2894), - [anon_sym_false] = ACTIONS(2894), - [aux_sym_string_token1] = ACTIONS(2896), - [aux_sym_string_token3] = ACTIONS(2896), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2896), + [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(2898), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_package] = ACTIONS(2898), - [anon_sym_import] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_throw] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_case] = ACTIONS(2898), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_cast] = ACTIONS(2898), - [anon_sym_DOLLARtype] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_untyped] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_this] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2898), - [anon_sym_AT_COLON] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_catch] = ACTIONS(2898), - [anon_sym_else] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2900), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_EQ_EQ] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2900), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(2900), - [anon_sym_QMARK_QMARK] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_macro] = ACTIONS(2898), - [anon_sym_abstract] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym_inline] = ACTIONS(2898), - [anon_sym_overload] = ACTIONS(2898), - [anon_sym_override] = ACTIONS(2898), - [anon_sym_final] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2898), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_var] = ACTIONS(2898), - [aux_sym_integer_token1] = ACTIONS(2898), - [aux_sym_integer_token2] = ACTIONS(2900), - [aux_sym_float_token1] = ACTIONS(2898), - [aux_sym_float_token2] = ACTIONS(2900), - [anon_sym_true] = ACTIONS(2898), - [anon_sym_false] = ACTIONS(2898), - [aux_sym_string_token1] = ACTIONS(2900), - [aux_sym_string_token3] = ACTIONS(2900), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2900), + [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(2902), - [anon_sym_POUND] = ACTIONS(2904), - [anon_sym_package] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_case] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_cast] = ACTIONS(2902), - [anon_sym_DOLLARtype] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_untyped] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_this] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2902), - [anon_sym_AT_COLON] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_catch] = ACTIONS(2902), - [anon_sym_else] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2904), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2904), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2904), - [anon_sym_EQ_GT] = ACTIONS(2904), - [anon_sym_QMARK_QMARK] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2904), - [anon_sym_null] = ACTIONS(2902), - [anon_sym_macro] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_extern] = ACTIONS(2902), - [anon_sym_inline] = ACTIONS(2902), - [anon_sym_overload] = ACTIONS(2902), - [anon_sym_override] = ACTIONS(2902), - [anon_sym_final] = ACTIONS(2902), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [aux_sym_integer_token1] = ACTIONS(2902), - [aux_sym_integer_token2] = ACTIONS(2904), - [aux_sym_float_token1] = ACTIONS(2902), - [aux_sym_float_token2] = ACTIONS(2904), - [anon_sym_true] = ACTIONS(2902), - [anon_sym_false] = ACTIONS(2902), - [aux_sym_string_token1] = ACTIONS(2904), - [aux_sym_string_token3] = ACTIONS(2904), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2904), + [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(2906), - [anon_sym_POUND] = ACTIONS(2908), - [anon_sym_package] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_case] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_cast] = ACTIONS(2906), - [anon_sym_DOLLARtype] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_untyped] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_this] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2906), - [anon_sym_AT_COLON] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_catch] = ACTIONS(2906), - [anon_sym_else] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2908), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_EQ_EQ] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2908), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2908), - [anon_sym_EQ_GT] = ACTIONS(2908), - [anon_sym_QMARK_QMARK] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2908), - [anon_sym_null] = ACTIONS(2906), - [anon_sym_macro] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_extern] = ACTIONS(2906), - [anon_sym_inline] = ACTIONS(2906), - [anon_sym_overload] = ACTIONS(2906), - [anon_sym_override] = ACTIONS(2906), - [anon_sym_final] = ACTIONS(2906), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_typedef] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [aux_sym_integer_token1] = ACTIONS(2906), - [aux_sym_integer_token2] = ACTIONS(2908), - [aux_sym_float_token1] = ACTIONS(2906), - [aux_sym_float_token2] = ACTIONS(2908), - [anon_sym_true] = ACTIONS(2906), - [anon_sym_false] = ACTIONS(2906), - [aux_sym_string_token1] = ACTIONS(2908), - [aux_sym_string_token3] = ACTIONS(2908), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2908), + [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(2910), - [anon_sym_POUND] = ACTIONS(2912), - [anon_sym_package] = ACTIONS(2910), - [anon_sym_import] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_using] = ACTIONS(2910), - [anon_sym_throw] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_case] = ACTIONS(2910), - [anon_sym_default] = ACTIONS(2910), - [anon_sym_cast] = ACTIONS(2910), - [anon_sym_DOLLARtype] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_untyped] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_this] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2910), - [anon_sym_AT_COLON] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2910), - [anon_sym_catch] = ACTIONS(2910), - [anon_sym_else] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_do] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_EQ_GT] = ACTIONS(2912), - [anon_sym_QMARK_QMARK] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2912), - [anon_sym_null] = ACTIONS(2910), - [anon_sym_macro] = ACTIONS(2910), - [anon_sym_abstract] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [anon_sym_inline] = ACTIONS(2910), - [anon_sym_overload] = ACTIONS(2910), - [anon_sym_override] = ACTIONS(2910), - [anon_sym_final] = ACTIONS(2910), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2910), - [anon_sym_var] = ACTIONS(2910), - [aux_sym_integer_token1] = ACTIONS(2910), - [aux_sym_integer_token2] = ACTIONS(2912), - [aux_sym_float_token1] = ACTIONS(2910), - [aux_sym_float_token2] = ACTIONS(2912), - [anon_sym_true] = ACTIONS(2910), - [anon_sym_false] = ACTIONS(2910), - [aux_sym_string_token1] = ACTIONS(2912), - [aux_sym_string_token3] = ACTIONS(2912), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2912), + [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(2914), - [anon_sym_POUND] = ACTIONS(2916), - [anon_sym_package] = ACTIONS(2914), - [anon_sym_import] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_using] = ACTIONS(2914), - [anon_sym_throw] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_cast] = ACTIONS(2914), - [anon_sym_DOLLARtype] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_untyped] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_this] = ACTIONS(2914), - [anon_sym_AT] = ACTIONS(2914), - [anon_sym_AT_COLON] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2914), - [anon_sym_catch] = ACTIONS(2914), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2916), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_EQ_GT] = ACTIONS(2916), - [anon_sym_QMARK_QMARK] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2914), - [anon_sym_macro] = ACTIONS(2914), - [anon_sym_abstract] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_overload] = ACTIONS(2914), - [anon_sym_override] = ACTIONS(2914), - [anon_sym_final] = ACTIONS(2914), - [anon_sym_class] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2914), - [anon_sym_var] = ACTIONS(2914), - [aux_sym_integer_token1] = ACTIONS(2914), - [aux_sym_integer_token2] = ACTIONS(2916), - [aux_sym_float_token1] = ACTIONS(2914), - [aux_sym_float_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2914), - [anon_sym_false] = ACTIONS(2914), - [aux_sym_string_token1] = ACTIONS(2916), - [aux_sym_string_token3] = ACTIONS(2916), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2916), + [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(2918), - [anon_sym_POUND] = ACTIONS(2920), - [anon_sym_package] = ACTIONS(2918), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_using] = ACTIONS(2918), - [anon_sym_throw] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_cast] = ACTIONS(2918), - [anon_sym_DOLLARtype] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_untyped] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_this] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2918), - [anon_sym_AT_COLON] = ACTIONS(2920), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_catch] = ACTIONS(2918), - [anon_sym_else] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2920), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2920), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2920), - [anon_sym_EQ_GT] = ACTIONS(2920), - [anon_sym_QMARK_QMARK] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_macro] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_extern] = ACTIONS(2918), - [anon_sym_inline] = ACTIONS(2918), - [anon_sym_overload] = ACTIONS(2918), - [anon_sym_override] = ACTIONS(2918), - [anon_sym_final] = ACTIONS(2918), - [anon_sym_class] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_typedef] = ACTIONS(2918), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2918), - [aux_sym_integer_token1] = ACTIONS(2918), - [aux_sym_integer_token2] = ACTIONS(2920), - [aux_sym_float_token1] = ACTIONS(2918), - [aux_sym_float_token2] = ACTIONS(2920), - [anon_sym_true] = ACTIONS(2918), - [anon_sym_false] = ACTIONS(2918), - [aux_sym_string_token1] = ACTIONS(2920), - [aux_sym_string_token3] = ACTIONS(2920), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2920), + [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(2922), - [anon_sym_POUND] = ACTIONS(2924), - [anon_sym_package] = ACTIONS(2922), - [anon_sym_import] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_using] = ACTIONS(2922), - [anon_sym_throw] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_switch] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_case] = ACTIONS(2922), - [anon_sym_default] = ACTIONS(2922), - [anon_sym_cast] = ACTIONS(2922), - [anon_sym_DOLLARtype] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_untyped] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_this] = ACTIONS(2922), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_AT_COLON] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_catch] = ACTIONS(2922), - [anon_sym_else] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_GT_GT_GT] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_CARET] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_EQ_EQ] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(2924), - [anon_sym_QMARK_QMARK] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2922), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_macro] = ACTIONS(2922), - [anon_sym_abstract] = ACTIONS(2922), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_public] = ACTIONS(2922), - [anon_sym_private] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(2922), - [anon_sym_inline] = ACTIONS(2922), - [anon_sym_overload] = ACTIONS(2922), - [anon_sym_override] = ACTIONS(2922), - [anon_sym_final] = ACTIONS(2922), - [anon_sym_class] = ACTIONS(2922), - [anon_sym_interface] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_typedef] = ACTIONS(2922), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_var] = ACTIONS(2922), - [aux_sym_integer_token1] = ACTIONS(2922), - [aux_sym_integer_token2] = ACTIONS(2924), - [aux_sym_float_token1] = ACTIONS(2922), - [aux_sym_float_token2] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2922), - [anon_sym_false] = ACTIONS(2922), - [aux_sym_string_token1] = ACTIONS(2924), - [aux_sym_string_token3] = ACTIONS(2924), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2924), + [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(2926), - [anon_sym_POUND] = ACTIONS(2928), - [anon_sym_package] = ACTIONS(2926), - [anon_sym_import] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_using] = ACTIONS(2926), - [anon_sym_throw] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_switch] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_case] = ACTIONS(2926), - [anon_sym_default] = ACTIONS(2926), - [anon_sym_cast] = ACTIONS(2926), - [anon_sym_DOLLARtype] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_untyped] = ACTIONS(2926), - [anon_sym_break] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_this] = ACTIONS(2926), - [anon_sym_AT] = ACTIONS(2926), - [anon_sym_AT_COLON] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_catch] = ACTIONS(2926), - [anon_sym_else] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_PLUS] = ACTIONS(2928), - [anon_sym_DASH_DASH] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_GT_GT_GT] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_EQ_EQ] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_LT_EQ] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_GT_EQ] = ACTIONS(2928), - [anon_sym_EQ_GT] = ACTIONS(2928), - [anon_sym_QMARK_QMARK] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_macro] = ACTIONS(2926), - [anon_sym_abstract] = ACTIONS(2926), - [anon_sym_static] = ACTIONS(2926), - [anon_sym_public] = ACTIONS(2926), - [anon_sym_private] = ACTIONS(2926), - [anon_sym_extern] = ACTIONS(2926), - [anon_sym_inline] = ACTIONS(2926), - [anon_sym_overload] = ACTIONS(2926), - [anon_sym_override] = ACTIONS(2926), - [anon_sym_final] = ACTIONS(2926), - [anon_sym_class] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2926), - [anon_sym_enum] = ACTIONS(2926), - [anon_sym_typedef] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_var] = ACTIONS(2926), - [aux_sym_integer_token1] = ACTIONS(2926), - [aux_sym_integer_token2] = ACTIONS(2928), - [aux_sym_float_token1] = ACTIONS(2926), - [aux_sym_float_token2] = ACTIONS(2928), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [aux_sym_string_token1] = ACTIONS(2928), - [aux_sym_string_token3] = ACTIONS(2928), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2928), + [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(2930), - [anon_sym_POUND] = ACTIONS(2932), - [anon_sym_package] = ACTIONS(2930), - [anon_sym_import] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_using] = ACTIONS(2930), - [anon_sym_throw] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_cast] = ACTIONS(2930), - [anon_sym_DOLLARtype] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_untyped] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_this] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2930), - [anon_sym_AT_COLON] = ACTIONS(2932), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_catch] = ACTIONS(2930), - [anon_sym_else] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_PERCENT] = ACTIONS(2932), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_LT_LT] = ACTIONS(2932), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_GT_GT_GT] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_AMP_AMP] = ACTIONS(2932), - [anon_sym_PIPE_PIPE] = ACTIONS(2932), - [anon_sym_EQ_EQ] = ACTIONS(2932), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_LT_EQ] = ACTIONS(2932), - [anon_sym_GT] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2932), - [anon_sym_EQ_GT] = ACTIONS(2932), - [anon_sym_QMARK_QMARK] = ACTIONS(2932), - [anon_sym_EQ] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2932), - [anon_sym_null] = ACTIONS(2930), - [anon_sym_macro] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_overload] = ACTIONS(2930), - [anon_sym_override] = ACTIONS(2930), - [anon_sym_final] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_interface] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_typedef] = ACTIONS(2930), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_var] = ACTIONS(2930), - [aux_sym_integer_token1] = ACTIONS(2930), - [aux_sym_integer_token2] = ACTIONS(2932), - [aux_sym_float_token1] = ACTIONS(2930), - [aux_sym_float_token2] = ACTIONS(2932), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [aux_sym_string_token1] = ACTIONS(2932), - [aux_sym_string_token3] = ACTIONS(2932), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2932), + [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(2934), - [anon_sym_POUND] = ACTIONS(2936), - [anon_sym_package] = ACTIONS(2934), - [anon_sym_import] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2936), - [anon_sym_using] = ACTIONS(2934), - [anon_sym_throw] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_cast] = ACTIONS(2934), - [anon_sym_DOLLARtype] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_untyped] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_this] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2934), - [anon_sym_AT_COLON] = ACTIONS(2936), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_catch] = ACTIONS(2934), - [anon_sym_else] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_GT_GT_GT] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [anon_sym_EQ_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2936), - [anon_sym_EQ_GT] = ACTIONS(2936), - [anon_sym_QMARK_QMARK] = ACTIONS(2936), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_macro] = ACTIONS(2934), - [anon_sym_abstract] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_extern] = ACTIONS(2934), - [anon_sym_inline] = ACTIONS(2934), - [anon_sym_overload] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_interface] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_typedef] = ACTIONS(2934), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_var] = ACTIONS(2934), - [aux_sym_integer_token1] = ACTIONS(2934), - [aux_sym_integer_token2] = ACTIONS(2936), - [aux_sym_float_token1] = ACTIONS(2934), - [aux_sym_float_token2] = ACTIONS(2936), - [anon_sym_true] = ACTIONS(2934), - [anon_sym_false] = ACTIONS(2934), - [aux_sym_string_token1] = ACTIONS(2936), - [aux_sym_string_token3] = ACTIONS(2936), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2936), + [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(2938), - [anon_sym_POUND] = ACTIONS(2940), - [anon_sym_package] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2940), - [anon_sym_using] = ACTIONS(2938), - [anon_sym_throw] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_cast] = ACTIONS(2938), - [anon_sym_DOLLARtype] = ACTIONS(2940), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_untyped] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_this] = ACTIONS(2938), - [anon_sym_AT] = ACTIONS(2938), - [anon_sym_AT_COLON] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2938), - [anon_sym_catch] = ACTIONS(2938), - [anon_sym_else] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2940), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_PERCENT] = ACTIONS(2940), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_LT_LT] = ACTIONS(2940), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_GT_GT_GT] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2940), - [anon_sym_AMP_AMP] = ACTIONS(2940), - [anon_sym_PIPE_PIPE] = ACTIONS(2940), - [anon_sym_EQ_EQ] = ACTIONS(2940), - [anon_sym_BANG_EQ] = ACTIONS(2940), - [anon_sym_LT] = ACTIONS(2938), - [anon_sym_LT_EQ] = ACTIONS(2940), - [anon_sym_GT] = ACTIONS(2938), - [anon_sym_GT_EQ] = ACTIONS(2940), - [anon_sym_EQ_GT] = ACTIONS(2940), - [anon_sym_QMARK_QMARK] = ACTIONS(2940), - [anon_sym_EQ] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2940), - [anon_sym_null] = ACTIONS(2938), - [anon_sym_macro] = ACTIONS(2938), - [anon_sym_abstract] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_extern] = ACTIONS(2938), - [anon_sym_inline] = ACTIONS(2938), - [anon_sym_overload] = ACTIONS(2938), - [anon_sym_override] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_class] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_typedef] = ACTIONS(2938), - [anon_sym_function] = ACTIONS(2938), - [anon_sym_var] = ACTIONS(2938), - [aux_sym_integer_token1] = ACTIONS(2938), - [aux_sym_integer_token2] = ACTIONS(2940), - [aux_sym_float_token1] = ACTIONS(2938), - [aux_sym_float_token2] = ACTIONS(2940), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [aux_sym_string_token1] = ACTIONS(2940), - [aux_sym_string_token3] = ACTIONS(2940), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2940), + [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] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2944), - [anon_sym_package] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_STAR] = ACTIONS(2944), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_default] = ACTIONS(2942), - [anon_sym_cast] = ACTIONS(2942), - [anon_sym_DOLLARtype] = ACTIONS(2944), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_untyped] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_this] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2942), - [anon_sym_AT_COLON] = ACTIONS(2944), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_catch] = ACTIONS(2942), - [anon_sym_else] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [anon_sym_PERCENT] = ACTIONS(2944), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_LT_LT] = ACTIONS(2944), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_GT_GT_GT] = ACTIONS(2944), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2944), - [anon_sym_AMP_AMP] = ACTIONS(2944), - [anon_sym_PIPE_PIPE] = ACTIONS(2944), - [anon_sym_EQ_EQ] = ACTIONS(2944), - [anon_sym_BANG_EQ] = ACTIONS(2944), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2944), - [anon_sym_GT] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(2944), - [anon_sym_QMARK_QMARK] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2944), - [anon_sym_null] = ACTIONS(2942), - [anon_sym_macro] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_extern] = ACTIONS(2942), - [anon_sym_inline] = ACTIONS(2942), - [anon_sym_overload] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [anon_sym_typedef] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [aux_sym_integer_token1] = ACTIONS(2942), - [aux_sym_integer_token2] = ACTIONS(2944), - [aux_sym_float_token1] = ACTIONS(2942), - [aux_sym_float_token2] = ACTIONS(2944), - [anon_sym_true] = ACTIONS(2942), - [anon_sym_false] = ACTIONS(2942), - [aux_sym_string_token1] = ACTIONS(2944), - [aux_sym_string_token3] = ACTIONS(2944), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2944), + [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(2946), - [anon_sym_POUND] = ACTIONS(2948), - [anon_sym_package] = ACTIONS(2946), - [anon_sym_import] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2948), - [anon_sym_using] = ACTIONS(2946), - [anon_sym_throw] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_case] = ACTIONS(2946), - [anon_sym_default] = ACTIONS(2946), - [anon_sym_cast] = ACTIONS(2946), - [anon_sym_DOLLARtype] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_untyped] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_this] = ACTIONS(2946), - [anon_sym_AT] = ACTIONS(2946), - [anon_sym_AT_COLON] = ACTIONS(2948), - [anon_sym_try] = ACTIONS(2946), - [anon_sym_catch] = ACTIONS(2946), - [anon_sym_else] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_while] = ACTIONS(2946), - [anon_sym_do] = ACTIONS(2946), - [anon_sym_new] = ACTIONS(2946), - [anon_sym_TILDE] = ACTIONS(2948), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [anon_sym_PERCENT] = ACTIONS(2948), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_LT_LT] = ACTIONS(2948), - [anon_sym_GT_GT] = ACTIONS(2946), - [anon_sym_GT_GT_GT] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_CARET] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_LT_EQ] = ACTIONS(2948), - [anon_sym_GT] = ACTIONS(2946), - [anon_sym_GT_EQ] = ACTIONS(2948), - [anon_sym_EQ_GT] = ACTIONS(2948), - [anon_sym_QMARK_QMARK] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2946), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2946), - [anon_sym_macro] = ACTIONS(2946), - [anon_sym_abstract] = ACTIONS(2946), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_extern] = ACTIONS(2946), - [anon_sym_inline] = ACTIONS(2946), - [anon_sym_overload] = ACTIONS(2946), - [anon_sym_override] = ACTIONS(2946), - [anon_sym_final] = ACTIONS(2946), - [anon_sym_class] = ACTIONS(2946), - [anon_sym_interface] = ACTIONS(2946), - [anon_sym_enum] = ACTIONS(2946), - [anon_sym_typedef] = ACTIONS(2946), - [anon_sym_function] = ACTIONS(2946), - [anon_sym_var] = ACTIONS(2946), - [aux_sym_integer_token1] = ACTIONS(2946), - [aux_sym_integer_token2] = ACTIONS(2948), - [aux_sym_float_token1] = ACTIONS(2946), - [aux_sym_float_token2] = ACTIONS(2948), - [anon_sym_true] = ACTIONS(2946), - [anon_sym_false] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [aux_sym_string_token3] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2948), + [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(2950), - [anon_sym_POUND] = ACTIONS(2952), - [anon_sym_package] = ACTIONS(2950), - [anon_sym_import] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2952), - [anon_sym_using] = ACTIONS(2950), - [anon_sym_throw] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_case] = ACTIONS(2950), - [anon_sym_default] = ACTIONS(2950), - [anon_sym_cast] = ACTIONS(2950), - [anon_sym_DOLLARtype] = ACTIONS(2952), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_untyped] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_this] = ACTIONS(2950), - [anon_sym_AT] = ACTIONS(2950), - [anon_sym_AT_COLON] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_catch] = ACTIONS(2950), - [anon_sym_else] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2952), - [anon_sym_DASH_DASH] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_LT_LT] = ACTIONS(2952), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_GT_GT_GT] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_CARET] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_EQ_GT] = ACTIONS(2952), - [anon_sym_QMARK_QMARK] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2952), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_macro] = ACTIONS(2950), - [anon_sym_abstract] = ACTIONS(2950), - [anon_sym_static] = ACTIONS(2950), - [anon_sym_public] = ACTIONS(2950), - [anon_sym_private] = ACTIONS(2950), - [anon_sym_extern] = ACTIONS(2950), - [anon_sym_inline] = ACTIONS(2950), - [anon_sym_overload] = ACTIONS(2950), - [anon_sym_override] = ACTIONS(2950), - [anon_sym_final] = ACTIONS(2950), - [anon_sym_class] = ACTIONS(2950), - [anon_sym_interface] = ACTIONS(2950), - [anon_sym_enum] = ACTIONS(2950), - [anon_sym_typedef] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_var] = ACTIONS(2950), - [aux_sym_integer_token1] = ACTIONS(2950), - [aux_sym_integer_token2] = ACTIONS(2952), - [aux_sym_float_token1] = ACTIONS(2950), - [aux_sym_float_token2] = ACTIONS(2952), - [anon_sym_true] = ACTIONS(2950), - [anon_sym_false] = ACTIONS(2950), - [aux_sym_string_token1] = ACTIONS(2952), - [aux_sym_string_token3] = ACTIONS(2952), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2952), + [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(2954), - [anon_sym_POUND] = ACTIONS(2956), - [anon_sym_package] = ACTIONS(2954), - [anon_sym_import] = ACTIONS(2954), - [anon_sym_STAR] = ACTIONS(2956), - [anon_sym_using] = ACTIONS(2954), - [anon_sym_throw] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_switch] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_case] = ACTIONS(2954), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_cast] = ACTIONS(2954), - [anon_sym_DOLLARtype] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_untyped] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_this] = ACTIONS(2954), - [anon_sym_AT] = ACTIONS(2954), - [anon_sym_AT_COLON] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2954), - [anon_sym_catch] = ACTIONS(2954), - [anon_sym_else] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2954), - [anon_sym_do] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2954), - [anon_sym_GT_GT_GT] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2954), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_EQ_EQ] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_LT_EQ] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2954), - [anon_sym_GT_EQ] = ACTIONS(2956), - [anon_sym_EQ_GT] = ACTIONS(2956), - [anon_sym_QMARK_QMARK] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2954), - [anon_sym_macro] = ACTIONS(2954), - [anon_sym_abstract] = ACTIONS(2954), - [anon_sym_static] = ACTIONS(2954), - [anon_sym_public] = ACTIONS(2954), - [anon_sym_private] = ACTIONS(2954), - [anon_sym_extern] = ACTIONS(2954), - [anon_sym_inline] = ACTIONS(2954), - [anon_sym_overload] = ACTIONS(2954), - [anon_sym_override] = ACTIONS(2954), - [anon_sym_final] = ACTIONS(2954), - [anon_sym_class] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_enum] = ACTIONS(2954), - [anon_sym_typedef] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2954), - [anon_sym_var] = ACTIONS(2954), - [aux_sym_integer_token1] = ACTIONS(2954), - [aux_sym_integer_token2] = ACTIONS(2956), - [aux_sym_float_token1] = ACTIONS(2954), - [aux_sym_float_token2] = ACTIONS(2956), - [anon_sym_true] = ACTIONS(2954), - [anon_sym_false] = ACTIONS(2954), - [aux_sym_string_token1] = ACTIONS(2956), - [aux_sym_string_token3] = ACTIONS(2956), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2956), + [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(2958), - [anon_sym_POUND] = ACTIONS(2960), - [anon_sym_package] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2960), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_case] = ACTIONS(2958), - [anon_sym_default] = ACTIONS(2958), - [anon_sym_cast] = ACTIONS(2958), - [anon_sym_DOLLARtype] = ACTIONS(2960), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_untyped] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_this] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2958), - [anon_sym_AT_COLON] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_catch] = ACTIONS(2958), - [anon_sym_else] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_LT_LT] = ACTIONS(2960), - [anon_sym_GT_GT] = ACTIONS(2958), - [anon_sym_GT_GT_GT] = ACTIONS(2960), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_EQ_EQ] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_LT_EQ] = ACTIONS(2960), - [anon_sym_GT] = ACTIONS(2958), - [anon_sym_GT_EQ] = ACTIONS(2960), - [anon_sym_EQ_GT] = ACTIONS(2960), - [anon_sym_QMARK_QMARK] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2960), - [anon_sym_null] = ACTIONS(2958), - [anon_sym_macro] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_extern] = ACTIONS(2958), - [anon_sym_inline] = ACTIONS(2958), - [anon_sym_overload] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_final] = ACTIONS(2958), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [anon_sym_typedef] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [aux_sym_integer_token1] = ACTIONS(2958), - [aux_sym_integer_token2] = ACTIONS(2960), - [aux_sym_float_token1] = ACTIONS(2958), - [aux_sym_float_token2] = ACTIONS(2960), - [anon_sym_true] = ACTIONS(2958), - [anon_sym_false] = ACTIONS(2958), - [aux_sym_string_token1] = ACTIONS(2960), - [aux_sym_string_token3] = ACTIONS(2960), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2960), + [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(2962), - [anon_sym_POUND] = ACTIONS(2964), - [anon_sym_package] = ACTIONS(2962), - [anon_sym_import] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2964), - [anon_sym_using] = ACTIONS(2962), - [anon_sym_throw] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_switch] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_case] = ACTIONS(2962), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_cast] = ACTIONS(2962), - [anon_sym_DOLLARtype] = ACTIONS(2964), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_untyped] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_this] = ACTIONS(2962), - [anon_sym_AT] = ACTIONS(2962), - [anon_sym_AT_COLON] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2962), - [anon_sym_catch] = ACTIONS(2962), - [anon_sym_else] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_while] = ACTIONS(2962), - [anon_sym_do] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2964), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_LT_LT] = ACTIONS(2964), - [anon_sym_GT_GT] = ACTIONS(2962), - [anon_sym_GT_GT_GT] = ACTIONS(2964), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_CARET] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_EQ_EQ] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_LT_EQ] = ACTIONS(2964), - [anon_sym_GT] = ACTIONS(2962), - [anon_sym_GT_EQ] = ACTIONS(2964), - [anon_sym_EQ_GT] = ACTIONS(2964), - [anon_sym_QMARK_QMARK] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2964), - [anon_sym_null] = ACTIONS(2962), - [anon_sym_macro] = ACTIONS(2962), - [anon_sym_abstract] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(2962), - [anon_sym_public] = ACTIONS(2962), - [anon_sym_private] = ACTIONS(2962), - [anon_sym_extern] = ACTIONS(2962), - [anon_sym_inline] = ACTIONS(2962), - [anon_sym_overload] = ACTIONS(2962), - [anon_sym_override] = ACTIONS(2962), - [anon_sym_final] = ACTIONS(2962), - [anon_sym_class] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2962), - [anon_sym_typedef] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2962), - [anon_sym_var] = ACTIONS(2962), - [aux_sym_integer_token1] = ACTIONS(2962), - [aux_sym_integer_token2] = ACTIONS(2964), - [aux_sym_float_token1] = ACTIONS(2962), - [aux_sym_float_token2] = ACTIONS(2964), - [anon_sym_true] = ACTIONS(2962), - [anon_sym_false] = ACTIONS(2962), - [aux_sym_string_token1] = ACTIONS(2964), - [aux_sym_string_token3] = ACTIONS(2964), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2964), + [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(2966), - [anon_sym_POUND] = ACTIONS(2968), - [anon_sym_package] = ACTIONS(2966), - [anon_sym_import] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_using] = ACTIONS(2966), - [anon_sym_throw] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_switch] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_case] = ACTIONS(2966), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_cast] = ACTIONS(2966), - [anon_sym_DOLLARtype] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_untyped] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_this] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_AT_COLON] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_catch] = ACTIONS(2966), - [anon_sym_else] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2968), - [anon_sym_DASH_DASH] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_LT_LT] = ACTIONS(2968), - [anon_sym_GT_GT] = ACTIONS(2966), - [anon_sym_GT_GT_GT] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_CARET] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_EQ_EQ] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_LT_EQ] = ACTIONS(2968), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_GT_EQ] = ACTIONS(2968), - [anon_sym_EQ_GT] = ACTIONS(2968), - [anon_sym_QMARK_QMARK] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_macro] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_extern] = ACTIONS(2966), - [anon_sym_inline] = ACTIONS(2966), - [anon_sym_overload] = ACTIONS(2966), - [anon_sym_override] = ACTIONS(2966), - [anon_sym_final] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), - [anon_sym_typedef] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_var] = ACTIONS(2966), - [aux_sym_integer_token1] = ACTIONS(2966), - [aux_sym_integer_token2] = ACTIONS(2968), - [aux_sym_float_token1] = ACTIONS(2966), - [aux_sym_float_token2] = ACTIONS(2968), - [anon_sym_true] = ACTIONS(2966), - [anon_sym_false] = ACTIONS(2966), - [aux_sym_string_token1] = ACTIONS(2968), - [aux_sym_string_token3] = ACTIONS(2968), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2968), + [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(2970), - [anon_sym_POUND] = ACTIONS(2972), - [anon_sym_package] = ACTIONS(2970), - [anon_sym_import] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_throw] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_switch] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_case] = ACTIONS(2970), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_cast] = ACTIONS(2970), - [anon_sym_DOLLARtype] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_untyped] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_this] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2970), - [anon_sym_AT_COLON] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_catch] = ACTIONS(2970), - [anon_sym_else] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2972), - [anon_sym_DASH_DASH] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2972), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_EQ_EQ] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2972), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2972), - [anon_sym_QMARK_QMARK] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_macro] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym_inline] = ACTIONS(2970), - [anon_sym_overload] = ACTIONS(2970), - [anon_sym_override] = ACTIONS(2970), - [anon_sym_final] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_typedef] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_var] = ACTIONS(2970), - [aux_sym_integer_token1] = ACTIONS(2970), - [aux_sym_integer_token2] = ACTIONS(2972), - [aux_sym_float_token1] = ACTIONS(2970), - [aux_sym_float_token2] = ACTIONS(2972), - [anon_sym_true] = ACTIONS(2970), - [anon_sym_false] = ACTIONS(2970), - [aux_sym_string_token1] = ACTIONS(2972), - [aux_sym_string_token3] = ACTIONS(2972), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2972), + [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(2974), - [anon_sym_POUND] = ACTIONS(2976), - [anon_sym_package] = ACTIONS(2974), - [anon_sym_import] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_using] = ACTIONS(2974), - [anon_sym_throw] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_switch] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_case] = ACTIONS(2974), - [anon_sym_default] = ACTIONS(2974), - [anon_sym_cast] = ACTIONS(2974), - [anon_sym_DOLLARtype] = ACTIONS(2976), - [anon_sym_for] = ACTIONS(2974), - [anon_sym_return] = ACTIONS(2974), - [anon_sym_untyped] = ACTIONS(2974), - [anon_sym_break] = ACTIONS(2974), - [anon_sym_continue] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_this] = ACTIONS(2974), - [anon_sym_AT] = ACTIONS(2974), - [anon_sym_AT_COLON] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2974), - [anon_sym_catch] = ACTIONS(2974), - [anon_sym_else] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_while] = ACTIONS(2974), - [anon_sym_do] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2974), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2974), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_EQ_GT] = ACTIONS(2976), - [anon_sym_QMARK_QMARK] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2976), - [anon_sym_null] = ACTIONS(2974), - [anon_sym_macro] = ACTIONS(2974), - [anon_sym_abstract] = ACTIONS(2974), - [anon_sym_static] = ACTIONS(2974), - [anon_sym_public] = ACTIONS(2974), - [anon_sym_private] = ACTIONS(2974), - [anon_sym_extern] = ACTIONS(2974), - [anon_sym_inline] = ACTIONS(2974), - [anon_sym_overload] = ACTIONS(2974), - [anon_sym_override] = ACTIONS(2974), - [anon_sym_final] = ACTIONS(2974), - [anon_sym_class] = ACTIONS(2974), - [anon_sym_interface] = ACTIONS(2974), - [anon_sym_enum] = ACTIONS(2974), - [anon_sym_typedef] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2974), - [anon_sym_var] = ACTIONS(2974), - [aux_sym_integer_token1] = ACTIONS(2974), - [aux_sym_integer_token2] = ACTIONS(2976), - [aux_sym_float_token1] = ACTIONS(2974), - [aux_sym_float_token2] = ACTIONS(2976), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [aux_sym_string_token1] = ACTIONS(2976), - [aux_sym_string_token3] = ACTIONS(2976), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2976), + [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(2978), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_package] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_using] = ACTIONS(2978), - [anon_sym_throw] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_switch] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_case] = ACTIONS(2978), - [anon_sym_default] = ACTIONS(2978), - [anon_sym_cast] = ACTIONS(2978), - [anon_sym_DOLLARtype] = ACTIONS(2980), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_untyped] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_this] = ACTIONS(2978), - [anon_sym_AT] = ACTIONS(2978), - [anon_sym_AT_COLON] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2978), - [anon_sym_catch] = ACTIONS(2978), - [anon_sym_else] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_while] = ACTIONS(2978), - [anon_sym_do] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_PLUS_PLUS] = ACTIONS(2980), - [anon_sym_DASH_DASH] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_SLASH] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_LT_LT] = ACTIONS(2980), - [anon_sym_GT_GT] = ACTIONS(2978), - [anon_sym_GT_GT_GT] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_CARET] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_EQ_EQ] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_LT_EQ] = ACTIONS(2980), - [anon_sym_GT] = ACTIONS(2978), - [anon_sym_GT_EQ] = ACTIONS(2980), - [anon_sym_EQ_GT] = ACTIONS(2980), - [anon_sym_QMARK_QMARK] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2980), - [anon_sym_null] = ACTIONS(2978), - [anon_sym_macro] = ACTIONS(2978), - [anon_sym_abstract] = ACTIONS(2978), - [anon_sym_static] = ACTIONS(2978), - [anon_sym_public] = ACTIONS(2978), - [anon_sym_private] = ACTIONS(2978), - [anon_sym_extern] = ACTIONS(2978), - [anon_sym_inline] = ACTIONS(2978), - [anon_sym_overload] = ACTIONS(2978), - [anon_sym_override] = ACTIONS(2978), - [anon_sym_final] = ACTIONS(2978), - [anon_sym_class] = ACTIONS(2978), - [anon_sym_interface] = ACTIONS(2978), - [anon_sym_enum] = ACTIONS(2978), - [anon_sym_typedef] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_var] = ACTIONS(2978), - [aux_sym_integer_token1] = ACTIONS(2978), - [aux_sym_integer_token2] = ACTIONS(2980), - [aux_sym_float_token1] = ACTIONS(2978), - [aux_sym_float_token2] = ACTIONS(2980), - [anon_sym_true] = ACTIONS(2978), - [anon_sym_false] = ACTIONS(2978), - [aux_sym_string_token1] = ACTIONS(2980), - [aux_sym_string_token3] = ACTIONS(2980), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2980), + [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] = { - [sym_identifier] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2984), - [anon_sym_package] = ACTIONS(2982), - [anon_sym_import] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_using] = ACTIONS(2982), - [anon_sym_throw] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_switch] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_case] = ACTIONS(2982), - [anon_sym_default] = ACTIONS(2982), - [anon_sym_cast] = ACTIONS(2982), - [anon_sym_DOLLARtype] = ACTIONS(2984), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_untyped] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_this] = ACTIONS(2982), - [anon_sym_AT] = ACTIONS(2982), - [anon_sym_AT_COLON] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2982), - [anon_sym_catch] = ACTIONS(2982), - [anon_sym_else] = ACTIONS(2982), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_while] = ACTIONS(2982), - [anon_sym_do] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2982), - [anon_sym_TILDE] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(2982), - [anon_sym_DASH] = ACTIONS(2982), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_SLASH] = ACTIONS(2982), - [anon_sym_PLUS] = ACTIONS(2982), - [anon_sym_LT_LT] = ACTIONS(2984), - [anon_sym_GT_GT] = ACTIONS(2982), - [anon_sym_GT_GT_GT] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2982), - [anon_sym_CARET] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2982), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(2984), - [anon_sym_QMARK_QMARK] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2982), - [anon_sym_macro] = ACTIONS(2982), - [anon_sym_abstract] = ACTIONS(2982), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_public] = ACTIONS(2982), - [anon_sym_private] = ACTIONS(2982), - [anon_sym_extern] = ACTIONS(2982), - [anon_sym_inline] = ACTIONS(2982), - [anon_sym_overload] = ACTIONS(2982), - [anon_sym_override] = ACTIONS(2982), - [anon_sym_final] = ACTIONS(2982), - [anon_sym_class] = ACTIONS(2982), - [anon_sym_interface] = ACTIONS(2982), - [anon_sym_enum] = ACTIONS(2982), - [anon_sym_typedef] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2982), - [anon_sym_var] = ACTIONS(2982), - [aux_sym_integer_token1] = ACTIONS(2982), - [aux_sym_integer_token2] = ACTIONS(2984), - [aux_sym_float_token1] = ACTIONS(2982), - [aux_sym_float_token2] = ACTIONS(2984), - [anon_sym_true] = ACTIONS(2982), - [anon_sym_false] = ACTIONS(2982), - [aux_sym_string_token1] = ACTIONS(2984), - [aux_sym_string_token3] = ACTIONS(2984), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2984), + [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(2986), - [anon_sym_POUND] = ACTIONS(2988), - [anon_sym_package] = ACTIONS(2986), - [anon_sym_import] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_using] = ACTIONS(2986), - [anon_sym_throw] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_switch] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_case] = ACTIONS(2986), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_cast] = ACTIONS(2986), - [anon_sym_DOLLARtype] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_untyped] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_this] = ACTIONS(2986), - [anon_sym_AT] = ACTIONS(2986), - [anon_sym_AT_COLON] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_catch] = ACTIONS(2986), - [anon_sym_else] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [anon_sym_BANG] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_PLUS] = ACTIONS(2988), - [anon_sym_DASH_DASH] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_SLASH] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_LT_LT] = ACTIONS(2988), - [anon_sym_GT_GT] = ACTIONS(2986), - [anon_sym_GT_GT_GT] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_EQ_EQ] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_LT_EQ] = ACTIONS(2988), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_EQ] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(2988), - [anon_sym_QMARK_QMARK] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_macro] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_public] = ACTIONS(2986), - [anon_sym_private] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_inline] = ACTIONS(2986), - [anon_sym_overload] = ACTIONS(2986), - [anon_sym_override] = ACTIONS(2986), - [anon_sym_final] = ACTIONS(2986), - [anon_sym_class] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_enum] = ACTIONS(2986), - [anon_sym_typedef] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_var] = ACTIONS(2986), - [aux_sym_integer_token1] = ACTIONS(2986), - [aux_sym_integer_token2] = ACTIONS(2988), - [aux_sym_float_token1] = ACTIONS(2986), - [aux_sym_float_token2] = ACTIONS(2988), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym_string_token1] = ACTIONS(2988), - [aux_sym_string_token3] = ACTIONS(2988), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2988), + [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] = { - [sym_identifier] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2992), - [anon_sym_package] = ACTIONS(2990), - [anon_sym_import] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2990), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_case] = ACTIONS(2990), - [anon_sym_default] = ACTIONS(2990), - [anon_sym_cast] = ACTIONS(2990), - [anon_sym_DOLLARtype] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_untyped] = ACTIONS(2990), - [anon_sym_break] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2990), - [anon_sym_AT] = ACTIONS(2990), - [anon_sym_AT_COLON] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_catch] = ACTIONS(2990), - [anon_sym_else] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_PLUS] = ACTIONS(2992), - [anon_sym_DASH_DASH] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_LT_LT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_GT_GT_GT] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_CARET] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_LT_EQ] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2990), - [anon_sym_GT_EQ] = ACTIONS(2992), - [anon_sym_EQ_GT] = ACTIONS(2992), - [anon_sym_QMARK_QMARK] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_macro] = ACTIONS(2990), - [anon_sym_abstract] = ACTIONS(2990), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_extern] = ACTIONS(2990), - [anon_sym_inline] = ACTIONS(2990), - [anon_sym_overload] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_final] = ACTIONS(2990), - [anon_sym_class] = ACTIONS(2990), - [anon_sym_interface] = ACTIONS(2990), - [anon_sym_enum] = ACTIONS(2990), - [anon_sym_typedef] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_var] = ACTIONS(2990), - [aux_sym_integer_token1] = ACTIONS(2990), - [aux_sym_integer_token2] = ACTIONS(2992), - [aux_sym_float_token1] = ACTIONS(2990), - [aux_sym_float_token2] = ACTIONS(2992), - [anon_sym_true] = ACTIONS(2990), - [anon_sym_false] = ACTIONS(2990), - [aux_sym_string_token1] = ACTIONS(2992), - [aux_sym_string_token3] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2992), + [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] = { - [sym_identifier] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2996), - [anon_sym_package] = ACTIONS(2994), - [anon_sym_import] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2994), - [anon_sym_default] = ACTIONS(2994), - [anon_sym_cast] = ACTIONS(2994), - [anon_sym_DOLLARtype] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_untyped] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_AT_COLON] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_catch] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_do] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2996), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_PLUS_PLUS] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_LT_LT] = ACTIONS(2996), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2996), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_EQ_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2996), - [anon_sym_EQ_GT] = ACTIONS(2996), - [anon_sym_QMARK_QMARK] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_macro] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_extern] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_overload] = ACTIONS(2994), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2994), - [anon_sym_interface] = ACTIONS(2994), - [anon_sym_enum] = ACTIONS(2994), - [anon_sym_typedef] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_var] = ACTIONS(2994), - [aux_sym_integer_token1] = ACTIONS(2994), - [aux_sym_integer_token2] = ACTIONS(2996), - [aux_sym_float_token1] = ACTIONS(2994), - [aux_sym_float_token2] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [aux_sym_string_token1] = ACTIONS(2996), - [aux_sym_string_token3] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2996), + [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] = { - [sym_identifier] = ACTIONS(2998), - [anon_sym_POUND] = ACTIONS(3000), - [anon_sym_package] = ACTIONS(2998), - [anon_sym_import] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(3000), - [anon_sym_using] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(3000), - [anon_sym_switch] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_cast] = ACTIONS(2998), - [anon_sym_DOLLARtype] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_untyped] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(2998), - [anon_sym_AT_COLON] = ACTIONS(3000), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_catch] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(3000), - [anon_sym_DASH_DASH] = ACTIONS(3000), - [anon_sym_PERCENT] = ACTIONS(3000), - [anon_sym_SLASH] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_LT_LT] = ACTIONS(3000), - [anon_sym_GT_GT] = ACTIONS(2998), - [anon_sym_GT_GT_GT] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_CARET] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_EQ_GT] = ACTIONS(3000), - [anon_sym_QMARK_QMARK] = ACTIONS(3000), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_macro] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_extern] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_overload] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_class] = ACTIONS(2998), - [anon_sym_interface] = ACTIONS(2998), - [anon_sym_enum] = ACTIONS(2998), - [anon_sym_typedef] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_var] = ACTIONS(2998), - [aux_sym_integer_token1] = ACTIONS(2998), - [aux_sym_integer_token2] = ACTIONS(3000), - [aux_sym_float_token1] = ACTIONS(2998), - [aux_sym_float_token2] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [aux_sym_string_token1] = ACTIONS(3000), - [aux_sym_string_token3] = ACTIONS(3000), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3000), + [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] = { - [sym_identifier] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3004), - [anon_sym_using] = ACTIONS(3002), - [anon_sym_throw] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_switch] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_case] = ACTIONS(3002), - [anon_sym_default] = ACTIONS(3002), - [anon_sym_cast] = ACTIONS(3002), - [anon_sym_DOLLARtype] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_untyped] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_this] = ACTIONS(3002), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_AT_COLON] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_catch] = ACTIONS(3002), - [anon_sym_else] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3004), - [anon_sym_GT_GT] = ACTIONS(3002), - [anon_sym_GT_GT_GT] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_EQ_EQ] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_LT_EQ] = ACTIONS(3004), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_GT_EQ] = ACTIONS(3004), - [anon_sym_EQ_GT] = ACTIONS(3004), - [anon_sym_QMARK_QMARK] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3002), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_macro] = ACTIONS(3002), - [anon_sym_abstract] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_extern] = ACTIONS(3002), - [anon_sym_inline] = ACTIONS(3002), - [anon_sym_overload] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_final] = ACTIONS(3002), - [anon_sym_class] = ACTIONS(3002), - [anon_sym_interface] = ACTIONS(3002), - [anon_sym_enum] = ACTIONS(3002), - [anon_sym_typedef] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_var] = ACTIONS(3002), - [aux_sym_integer_token1] = ACTIONS(3002), - [aux_sym_integer_token2] = ACTIONS(3004), - [aux_sym_float_token1] = ACTIONS(3002), - [aux_sym_float_token2] = ACTIONS(3004), - [anon_sym_true] = ACTIONS(3002), - [anon_sym_false] = ACTIONS(3002), - [aux_sym_string_token1] = ACTIONS(3004), - [aux_sym_string_token3] = ACTIONS(3004), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3004), + [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] = { - [sym_identifier] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3008), - [anon_sym_package] = ACTIONS(3006), - [anon_sym_import] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3008), - [anon_sym_using] = ACTIONS(3006), - [anon_sym_throw] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_case] = ACTIONS(3006), - [anon_sym_default] = ACTIONS(3006), - [anon_sym_cast] = ACTIONS(3006), - [anon_sym_DOLLARtype] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_untyped] = ACTIONS(3006), - [anon_sym_break] = ACTIONS(3006), - [anon_sym_continue] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_this] = ACTIONS(3006), - [anon_sym_AT] = ACTIONS(3006), - [anon_sym_AT_COLON] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_catch] = ACTIONS(3006), - [anon_sym_else] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [anon_sym_PERCENT] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_LT_LT] = ACTIONS(3008), - [anon_sym_GT_GT] = ACTIONS(3006), - [anon_sym_GT_GT_GT] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_CARET] = ACTIONS(3008), - [anon_sym_AMP_AMP] = ACTIONS(3008), - [anon_sym_PIPE_PIPE] = ACTIONS(3008), - [anon_sym_EQ_EQ] = ACTIONS(3008), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_LT_EQ] = ACTIONS(3008), - [anon_sym_GT] = ACTIONS(3006), - [anon_sym_GT_EQ] = ACTIONS(3008), - [anon_sym_EQ_GT] = ACTIONS(3008), - [anon_sym_QMARK_QMARK] = ACTIONS(3008), - [anon_sym_EQ] = ACTIONS(3006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_macro] = ACTIONS(3006), - [anon_sym_abstract] = ACTIONS(3006), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_extern] = ACTIONS(3006), - [anon_sym_inline] = ACTIONS(3006), - [anon_sym_overload] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_final] = ACTIONS(3006), - [anon_sym_class] = ACTIONS(3006), - [anon_sym_interface] = ACTIONS(3006), - [anon_sym_enum] = ACTIONS(3006), - [anon_sym_typedef] = ACTIONS(3006), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_var] = ACTIONS(3006), - [aux_sym_integer_token1] = ACTIONS(3006), - [aux_sym_integer_token2] = ACTIONS(3008), - [aux_sym_float_token1] = ACTIONS(3006), - [aux_sym_float_token2] = ACTIONS(3008), - [anon_sym_true] = ACTIONS(3006), - [anon_sym_false] = ACTIONS(3006), - [aux_sym_string_token1] = ACTIONS(3008), - [aux_sym_string_token3] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3008), + [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] = { - [sym_identifier] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3010), - [anon_sym_import] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3010), - [anon_sym_throw] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_switch] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_case] = ACTIONS(3010), - [anon_sym_default] = ACTIONS(3010), - [anon_sym_cast] = ACTIONS(3010), - [anon_sym_DOLLARtype] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_untyped] = ACTIONS(3010), - [anon_sym_break] = ACTIONS(3010), - [anon_sym_continue] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_this] = ACTIONS(3010), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_AT_COLON] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_catch] = ACTIONS(3010), - [anon_sym_else] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_PERCENT] = ACTIONS(3012), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3012), - [anon_sym_GT_GT] = ACTIONS(3010), - [anon_sym_GT_GT_GT] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_CARET] = ACTIONS(3012), - [anon_sym_AMP_AMP] = ACTIONS(3012), - [anon_sym_PIPE_PIPE] = ACTIONS(3012), - [anon_sym_EQ_EQ] = ACTIONS(3012), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_LT_EQ] = ACTIONS(3012), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_GT_EQ] = ACTIONS(3012), - [anon_sym_EQ_GT] = ACTIONS(3012), - [anon_sym_QMARK_QMARK] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_macro] = ACTIONS(3010), - [anon_sym_abstract] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_extern] = ACTIONS(3010), - [anon_sym_inline] = ACTIONS(3010), - [anon_sym_overload] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_final] = ACTIONS(3010), - [anon_sym_class] = ACTIONS(3010), - [anon_sym_interface] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(3010), - [anon_sym_typedef] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_var] = ACTIONS(3010), - [aux_sym_integer_token1] = ACTIONS(3010), - [aux_sym_integer_token2] = ACTIONS(3012), - [aux_sym_float_token1] = ACTIONS(3010), - [aux_sym_float_token2] = ACTIONS(3012), - [anon_sym_true] = ACTIONS(3010), - [anon_sym_false] = ACTIONS(3010), - [aux_sym_string_token1] = ACTIONS(3012), - [aux_sym_string_token3] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3012), + [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] = { - [sym_identifier] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3016), - [anon_sym_package] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3016), - [anon_sym_using] = ACTIONS(3014), - [anon_sym_throw] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_switch] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_case] = ACTIONS(3014), - [anon_sym_default] = ACTIONS(3014), - [anon_sym_cast] = ACTIONS(3014), - [anon_sym_DOLLARtype] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_untyped] = ACTIONS(3014), - [anon_sym_break] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_this] = ACTIONS(3014), - [anon_sym_AT] = ACTIONS(3014), - [anon_sym_AT_COLON] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_catch] = ACTIONS(3014), - [anon_sym_else] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3016), - [anon_sym_DASH_DASH] = ACTIONS(3016), - [anon_sym_PERCENT] = ACTIONS(3016), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_LT_LT] = ACTIONS(3016), - [anon_sym_GT_GT] = ACTIONS(3014), - [anon_sym_GT_GT_GT] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_CARET] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_LT_EQ] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3014), - [anon_sym_GT_EQ] = ACTIONS(3016), - [anon_sym_EQ_GT] = ACTIONS(3016), - [anon_sym_QMARK_QMARK] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_macro] = ACTIONS(3014), - [anon_sym_abstract] = ACTIONS(3014), - [anon_sym_static] = ACTIONS(3014), - [anon_sym_public] = ACTIONS(3014), - [anon_sym_private] = ACTIONS(3014), - [anon_sym_extern] = ACTIONS(3014), - [anon_sym_inline] = ACTIONS(3014), - [anon_sym_overload] = ACTIONS(3014), - [anon_sym_override] = ACTIONS(3014), - [anon_sym_final] = ACTIONS(3014), - [anon_sym_class] = ACTIONS(3014), - [anon_sym_interface] = ACTIONS(3014), - [anon_sym_enum] = ACTIONS(3014), - [anon_sym_typedef] = ACTIONS(3014), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_var] = ACTIONS(3014), - [aux_sym_integer_token1] = ACTIONS(3014), - [aux_sym_integer_token2] = ACTIONS(3016), - [aux_sym_float_token1] = ACTIONS(3014), - [aux_sym_float_token2] = ACTIONS(3016), - [anon_sym_true] = ACTIONS(3014), - [anon_sym_false] = ACTIONS(3014), - [aux_sym_string_token1] = ACTIONS(3016), - [aux_sym_string_token3] = ACTIONS(3016), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3016), + [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] = { - [sym_identifier] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_package] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_using] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3020), - [anon_sym_switch] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3020), - [anon_sym_case] = ACTIONS(3018), - [anon_sym_default] = ACTIONS(3018), - [anon_sym_cast] = ACTIONS(3018), - [anon_sym_DOLLARtype] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_untyped] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_AT_COLON] = ACTIONS(3020), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_catch] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3020), - [anon_sym_DASH_DASH] = ACTIONS(3020), - [anon_sym_PERCENT] = ACTIONS(3020), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3020), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_GT_GT_GT] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_CARET] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(3020), - [anon_sym_PIPE_PIPE] = ACTIONS(3020), - [anon_sym_EQ_EQ] = ACTIONS(3020), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(3020), - [anon_sym_QMARK_QMARK] = ACTIONS(3020), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_macro] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_extern] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_overload] = ACTIONS(3018), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_class] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_enum] = ACTIONS(3018), - [anon_sym_typedef] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_var] = ACTIONS(3018), - [aux_sym_integer_token1] = ACTIONS(3018), - [aux_sym_integer_token2] = ACTIONS(3020), - [aux_sym_float_token1] = ACTIONS(3018), - [aux_sym_float_token2] = ACTIONS(3020), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [aux_sym_string_token1] = ACTIONS(3020), - [aux_sym_string_token3] = ACTIONS(3020), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3020), + [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] = { - [sym_identifier] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3024), - [anon_sym_package] = ACTIONS(3022), - [anon_sym_import] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_using] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_switch] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3024), - [anon_sym_case] = ACTIONS(3022), - [anon_sym_default] = ACTIONS(3022), - [anon_sym_cast] = ACTIONS(3022), - [anon_sym_DOLLARtype] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_untyped] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(3022), - [anon_sym_AT_COLON] = ACTIONS(3024), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_catch] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3024), - [anon_sym_DASH_DASH] = ACTIONS(3024), - [anon_sym_PERCENT] = ACTIONS(3024), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_LT_LT] = ACTIONS(3024), - [anon_sym_GT_GT] = ACTIONS(3022), - [anon_sym_GT_GT_GT] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_EQ_GT] = ACTIONS(3024), - [anon_sym_QMARK_QMARK] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_macro] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_static] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_extern] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_overload] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_class] = ACTIONS(3022), - [anon_sym_interface] = ACTIONS(3022), - [anon_sym_enum] = ACTIONS(3022), - [anon_sym_typedef] = ACTIONS(3022), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_var] = ACTIONS(3022), - [aux_sym_integer_token1] = ACTIONS(3022), - [aux_sym_integer_token2] = ACTIONS(3024), - [aux_sym_float_token1] = ACTIONS(3022), - [aux_sym_float_token2] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [aux_sym_string_token1] = ACTIONS(3024), - [aux_sym_string_token3] = ACTIONS(3024), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3024), + [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] = { - [sym_identifier] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3028), - [anon_sym_package] = ACTIONS(3026), - [anon_sym_import] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_using] = ACTIONS(3026), - [anon_sym_throw] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3028), - [anon_sym_switch] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3028), - [anon_sym_case] = ACTIONS(3026), - [anon_sym_default] = ACTIONS(3026), - [anon_sym_cast] = ACTIONS(3026), - [anon_sym_DOLLARtype] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_untyped] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_this] = ACTIONS(3026), - [anon_sym_AT] = ACTIONS(3026), - [anon_sym_AT_COLON] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_catch] = ACTIONS(3026), - [anon_sym_else] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3028), - [anon_sym_DASH_DASH] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_LT_LT] = ACTIONS(3028), - [anon_sym_GT_GT] = ACTIONS(3026), - [anon_sym_GT_GT_GT] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_CARET] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_PIPE_PIPE] = ACTIONS(3028), - [anon_sym_EQ_EQ] = ACTIONS(3028), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_LT_EQ] = ACTIONS(3028), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_GT_EQ] = ACTIONS(3028), - [anon_sym_EQ_GT] = ACTIONS(3028), - [anon_sym_QMARK_QMARK] = ACTIONS(3028), - [anon_sym_EQ] = ACTIONS(3026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_macro] = ACTIONS(3026), - [anon_sym_abstract] = ACTIONS(3026), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(3026), - [anon_sym_inline] = ACTIONS(3026), - [anon_sym_overload] = ACTIONS(3026), - [anon_sym_override] = ACTIONS(3026), - [anon_sym_final] = ACTIONS(3026), - [anon_sym_class] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_enum] = ACTIONS(3026), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_var] = ACTIONS(3026), - [aux_sym_integer_token1] = ACTIONS(3026), - [aux_sym_integer_token2] = ACTIONS(3028), - [aux_sym_float_token1] = ACTIONS(3026), - [aux_sym_float_token2] = ACTIONS(3028), - [anon_sym_true] = ACTIONS(3026), - [anon_sym_false] = ACTIONS(3026), - [aux_sym_string_token1] = ACTIONS(3028), - [aux_sym_string_token3] = ACTIONS(3028), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3028), + [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] = { - [sym_identifier] = ACTIONS(3030), - [anon_sym_POUND] = ACTIONS(3032), - [anon_sym_package] = ACTIONS(3030), - [anon_sym_import] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_using] = ACTIONS(3030), - [anon_sym_throw] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_switch] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_case] = ACTIONS(3030), - [anon_sym_default] = ACTIONS(3030), - [anon_sym_cast] = ACTIONS(3030), - [anon_sym_DOLLARtype] = ACTIONS(3032), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_untyped] = ACTIONS(3030), - [anon_sym_break] = ACTIONS(3030), - [anon_sym_continue] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_this] = ACTIONS(3030), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_AT_COLON] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_catch] = ACTIONS(3030), - [anon_sym_else] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3032), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_PLUS] = ACTIONS(3032), - [anon_sym_DASH_DASH] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_SLASH] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_LT_LT] = ACTIONS(3032), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_GT_GT_GT] = ACTIONS(3032), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_EQ_EQ] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3032), - [anon_sym_GT] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3032), - [anon_sym_EQ_GT] = ACTIONS(3032), - [anon_sym_QMARK_QMARK] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_macro] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(3030), - [anon_sym_public] = ACTIONS(3030), - [anon_sym_private] = ACTIONS(3030), - [anon_sym_extern] = ACTIONS(3030), - [anon_sym_inline] = ACTIONS(3030), - [anon_sym_overload] = ACTIONS(3030), - [anon_sym_override] = ACTIONS(3030), - [anon_sym_final] = ACTIONS(3030), - [anon_sym_class] = ACTIONS(3030), - [anon_sym_interface] = ACTIONS(3030), - [anon_sym_enum] = ACTIONS(3030), - [anon_sym_typedef] = ACTIONS(3030), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_var] = ACTIONS(3030), - [aux_sym_integer_token1] = ACTIONS(3030), - [aux_sym_integer_token2] = ACTIONS(3032), - [aux_sym_float_token1] = ACTIONS(3030), - [aux_sym_float_token2] = ACTIONS(3032), - [anon_sym_true] = ACTIONS(3030), - [anon_sym_false] = ACTIONS(3030), - [aux_sym_string_token1] = ACTIONS(3032), - [aux_sym_string_token3] = ACTIONS(3032), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3032), + [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] = { - [sym_identifier] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3036), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3036), - [anon_sym_using] = ACTIONS(3034), - [anon_sym_throw] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_switch] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_default] = ACTIONS(3034), - [anon_sym_cast] = ACTIONS(3034), - [anon_sym_DOLLARtype] = ACTIONS(3036), - [anon_sym_for] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3034), - [anon_sym_untyped] = ACTIONS(3034), - [anon_sym_break] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_this] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3034), - [anon_sym_AT_COLON] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3034), - [anon_sym_catch] = ACTIONS(3034), - [anon_sym_else] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_while] = ACTIONS(3034), - [anon_sym_do] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3036), - [anon_sym_BANG] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3036), - [anon_sym_DASH_DASH] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_LT_LT] = ACTIONS(3036), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_GT_GT_GT] = ACTIONS(3036), - [anon_sym_AMP] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3036), - [anon_sym_GT] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3036), - [anon_sym_EQ_GT] = ACTIONS(3036), - [anon_sym_QMARK_QMARK] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3036), - [anon_sym_null] = ACTIONS(3034), - [anon_sym_macro] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_extern] = ACTIONS(3034), - [anon_sym_inline] = ACTIONS(3034), - [anon_sym_overload] = ACTIONS(3034), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_interface] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_typedef] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [aux_sym_integer_token1] = ACTIONS(3034), - [aux_sym_integer_token2] = ACTIONS(3036), - [aux_sym_float_token1] = ACTIONS(3034), - [aux_sym_float_token2] = ACTIONS(3036), - [anon_sym_true] = ACTIONS(3034), - [anon_sym_false] = ACTIONS(3034), - [aux_sym_string_token1] = ACTIONS(3036), - [aux_sym_string_token3] = ACTIONS(3036), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3036), + [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] = { - [sym_identifier] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3040), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3040), - [anon_sym_using] = ACTIONS(3038), - [anon_sym_throw] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_switch] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_default] = ACTIONS(3038), - [anon_sym_cast] = ACTIONS(3038), - [anon_sym_DOLLARtype] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3038), - [anon_sym_return] = ACTIONS(3038), - [anon_sym_untyped] = ACTIONS(3038), - [anon_sym_break] = ACTIONS(3038), - [anon_sym_continue] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_this] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3038), - [anon_sym_AT_COLON] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3038), - [anon_sym_catch] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_while] = ACTIONS(3038), - [anon_sym_do] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3040), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_LT_LT] = ACTIONS(3040), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_GT_GT_GT] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3040), - [anon_sym_GT] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3040), - [anon_sym_EQ_GT] = ACTIONS(3040), - [anon_sym_QMARK_QMARK] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3038), - [anon_sym_macro] = ACTIONS(3038), - [anon_sym_abstract] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_extern] = ACTIONS(3038), - [anon_sym_inline] = ACTIONS(3038), - [anon_sym_overload] = ACTIONS(3038), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_interface] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_typedef] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [aux_sym_integer_token1] = ACTIONS(3038), - [aux_sym_integer_token2] = ACTIONS(3040), - [aux_sym_float_token1] = ACTIONS(3038), - [aux_sym_float_token2] = ACTIONS(3040), - [anon_sym_true] = ACTIONS(3038), - [anon_sym_false] = ACTIONS(3038), - [aux_sym_string_token1] = ACTIONS(3040), - [aux_sym_string_token3] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3040), + [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] = { - [sym_identifier] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_package] = ACTIONS(3042), - [anon_sym_import] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_using] = ACTIONS(3042), - [anon_sym_throw] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_switch] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_case] = ACTIONS(3042), - [anon_sym_default] = ACTIONS(3042), - [anon_sym_cast] = ACTIONS(3042), - [anon_sym_DOLLARtype] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_untyped] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_this] = ACTIONS(3042), - [anon_sym_AT] = ACTIONS(3042), - [anon_sym_AT_COLON] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_catch] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3044), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_EQ_GT] = ACTIONS(3044), - [anon_sym_QMARK_QMARK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3044), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_macro] = ACTIONS(3042), - [anon_sym_abstract] = ACTIONS(3042), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_public] = ACTIONS(3042), - [anon_sym_private] = ACTIONS(3042), - [anon_sym_extern] = ACTIONS(3042), - [anon_sym_inline] = ACTIONS(3042), - [anon_sym_overload] = ACTIONS(3042), - [anon_sym_override] = ACTIONS(3042), - [anon_sym_final] = ACTIONS(3042), - [anon_sym_class] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_enum] = ACTIONS(3042), - [anon_sym_typedef] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_var] = ACTIONS(3042), - [aux_sym_integer_token1] = ACTIONS(3042), - [aux_sym_integer_token2] = ACTIONS(3044), - [aux_sym_float_token1] = ACTIONS(3042), - [aux_sym_float_token2] = ACTIONS(3044), - [anon_sym_true] = ACTIONS(3042), - [anon_sym_false] = ACTIONS(3042), - [aux_sym_string_token1] = ACTIONS(3044), - [aux_sym_string_token3] = ACTIONS(3044), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3044), + [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] = { - [sym_identifier] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3048), - [anon_sym_package] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_case] = ACTIONS(3046), - [anon_sym_default] = ACTIONS(3046), - [anon_sym_cast] = ACTIONS(3046), - [anon_sym_DOLLARtype] = ACTIONS(3048), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_untyped] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_this] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_AT_COLON] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_catch] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3048), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_EQ_EQ] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3048), - [anon_sym_EQ_GT] = ACTIONS(3048), - [anon_sym_QMARK_QMARK] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), - [anon_sym_null] = ACTIONS(3046), - [anon_sym_macro] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_extern] = ACTIONS(3046), - [anon_sym_inline] = ACTIONS(3046), - [anon_sym_overload] = ACTIONS(3046), - [anon_sym_override] = ACTIONS(3046), - [anon_sym_final] = ACTIONS(3046), - [anon_sym_class] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), - [anon_sym_typedef] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [aux_sym_integer_token1] = ACTIONS(3046), - [aux_sym_integer_token2] = ACTIONS(3048), - [aux_sym_float_token1] = ACTIONS(3046), - [aux_sym_float_token2] = ACTIONS(3048), - [anon_sym_true] = ACTIONS(3046), - [anon_sym_false] = ACTIONS(3046), - [aux_sym_string_token1] = ACTIONS(3048), - [aux_sym_string_token3] = ACTIONS(3048), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3048), + [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] = { - [sym_identifier] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_throw] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_switch] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3050), - [anon_sym_default] = ACTIONS(3050), - [anon_sym_cast] = ACTIONS(3050), - [anon_sym_DOLLARtype] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_untyped] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_this] = ACTIONS(3050), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_AT_COLON] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3050), - [anon_sym_catch] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_while] = ACTIONS(3050), - [anon_sym_do] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_EQ_GT] = ACTIONS(3052), - [anon_sym_QMARK_QMARK] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), - [anon_sym_macro] = ACTIONS(3050), - [anon_sym_abstract] = ACTIONS(3050), - [anon_sym_static] = ACTIONS(3050), - [anon_sym_public] = ACTIONS(3050), - [anon_sym_private] = ACTIONS(3050), - [anon_sym_extern] = ACTIONS(3050), - [anon_sym_inline] = ACTIONS(3050), - [anon_sym_overload] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3050), - [anon_sym_final] = ACTIONS(3050), - [anon_sym_class] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_enum] = ACTIONS(3050), - [anon_sym_typedef] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3050), - [anon_sym_var] = ACTIONS(3050), - [aux_sym_integer_token1] = ACTIONS(3050), - [aux_sym_integer_token2] = ACTIONS(3052), - [aux_sym_float_token1] = ACTIONS(3050), - [aux_sym_float_token2] = ACTIONS(3052), - [anon_sym_true] = ACTIONS(3050), - [anon_sym_false] = ACTIONS(3050), - [aux_sym_string_token1] = ACTIONS(3052), - [aux_sym_string_token3] = ACTIONS(3052), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3052), + [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] = { - [sym_identifier] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3054), - [anon_sym_import] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_cast] = ACTIONS(3054), - [anon_sym_DOLLARtype] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_untyped] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_this] = ACTIONS(3054), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_AT_COLON] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_catch] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_EQ_GT] = ACTIONS(3056), - [anon_sym_QMARK_QMARK] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_macro] = ACTIONS(3054), - [anon_sym_abstract] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_public] = ACTIONS(3054), - [anon_sym_private] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym_overload] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3054), - [anon_sym_final] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_var] = ACTIONS(3054), - [aux_sym_integer_token1] = ACTIONS(3054), - [aux_sym_integer_token2] = ACTIONS(3056), - [aux_sym_float_token1] = ACTIONS(3054), - [aux_sym_float_token2] = ACTIONS(3056), - [anon_sym_true] = ACTIONS(3054), - [anon_sym_false] = ACTIONS(3054), - [aux_sym_string_token1] = ACTIONS(3056), - [aux_sym_string_token3] = ACTIONS(3056), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3056), + [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] = { - [sym_identifier] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3058), - [anon_sym_import] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_using] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_case] = ACTIONS(3058), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_cast] = ACTIONS(3058), - [anon_sym_DOLLARtype] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_untyped] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_this] = ACTIONS(3058), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_AT_COLON] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_catch] = ACTIONS(3058), - [anon_sym_else] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_EQ_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_EQ_GT] = ACTIONS(3060), - [anon_sym_QMARK_QMARK] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_macro] = ACTIONS(3058), - [anon_sym_abstract] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_public] = ACTIONS(3058), - [anon_sym_private] = ACTIONS(3058), - [anon_sym_extern] = ACTIONS(3058), - [anon_sym_inline] = ACTIONS(3058), - [anon_sym_overload] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3058), - [anon_sym_final] = ACTIONS(3058), - [anon_sym_class] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_typedef] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_var] = ACTIONS(3058), - [aux_sym_integer_token1] = ACTIONS(3058), - [aux_sym_integer_token2] = ACTIONS(3060), - [aux_sym_float_token1] = ACTIONS(3058), - [aux_sym_float_token2] = ACTIONS(3060), - [anon_sym_true] = ACTIONS(3058), - [anon_sym_false] = ACTIONS(3058), - [aux_sym_string_token1] = ACTIONS(3060), - [aux_sym_string_token3] = ACTIONS(3060), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3060), + [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] = { - [sym_identifier] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3064), - [anon_sym_package] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_using] = ACTIONS(3062), - [anon_sym_throw] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_switch] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_case] = ACTIONS(3062), - [anon_sym_default] = ACTIONS(3062), - [anon_sym_cast] = ACTIONS(3062), - [anon_sym_DOLLARtype] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_untyped] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_this] = ACTIONS(3062), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_AT_COLON] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3062), - [anon_sym_catch] = ACTIONS(3062), - [anon_sym_else] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_while] = ACTIONS(3062), - [anon_sym_do] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_EQ_EQ] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3064), - [anon_sym_EQ_GT] = ACTIONS(3064), - [anon_sym_QMARK_QMARK] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3062), - [anon_sym_macro] = ACTIONS(3062), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_extern] = ACTIONS(3062), - [anon_sym_inline] = ACTIONS(3062), - [anon_sym_overload] = ACTIONS(3062), - [anon_sym_override] = ACTIONS(3062), - [anon_sym_final] = ACTIONS(3062), - [anon_sym_class] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_typedef] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_var] = ACTIONS(3062), - [aux_sym_integer_token1] = ACTIONS(3062), - [aux_sym_integer_token2] = ACTIONS(3064), - [aux_sym_float_token1] = ACTIONS(3062), - [aux_sym_float_token2] = ACTIONS(3064), - [anon_sym_true] = ACTIONS(3062), - [anon_sym_false] = ACTIONS(3062), - [aux_sym_string_token1] = ACTIONS(3064), - [aux_sym_string_token3] = ACTIONS(3064), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3064), + [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] = { - [sym_identifier] = ACTIONS(3066), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_package] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_cast] = ACTIONS(3066), - [anon_sym_DOLLARtype] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_untyped] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_this] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_AT_COLON] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_catch] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_LT_LT] = ACTIONS(3068), - [anon_sym_GT_GT] = ACTIONS(3066), - [anon_sym_GT_GT_GT] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_EQ] = ACTIONS(3068), - [anon_sym_EQ_GT] = ACTIONS(3068), - [anon_sym_QMARK_QMARK] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_macro] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym_overload] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_final] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [aux_sym_integer_token1] = ACTIONS(3066), - [aux_sym_integer_token2] = ACTIONS(3068), - [aux_sym_float_token1] = ACTIONS(3066), - [aux_sym_float_token2] = ACTIONS(3068), - [anon_sym_true] = ACTIONS(3066), - [anon_sym_false] = ACTIONS(3066), - [aux_sym_string_token1] = ACTIONS(3068), - [aux_sym_string_token3] = ACTIONS(3068), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3068), + [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] = { - [sym_identifier] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3072), - [anon_sym_package] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_cast] = ACTIONS(3070), - [anon_sym_DOLLARtype] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_untyped] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_AT_COLON] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3072), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_EQ_EQ] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3072), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3072), - [anon_sym_EQ_GT] = ACTIONS(3072), - [anon_sym_QMARK_QMARK] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), - [anon_sym_null] = ACTIONS(3070), - [anon_sym_macro] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym_overload] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_final] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [aux_sym_integer_token1] = ACTIONS(3070), - [aux_sym_integer_token2] = ACTIONS(3072), - [aux_sym_float_token1] = ACTIONS(3070), - [aux_sym_float_token2] = ACTIONS(3072), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [aux_sym_string_token1] = ACTIONS(3072), - [aux_sym_string_token3] = ACTIONS(3072), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3072), + [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] = { - [sym_identifier] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3076), - [anon_sym_package] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3074), - [anon_sym_default] = ACTIONS(3074), - [anon_sym_cast] = ACTIONS(3074), - [anon_sym_DOLLARtype] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_untyped] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_this] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_AT_COLON] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(3074), - [anon_sym_else] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3076), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_EQ_EQ] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3076), - [anon_sym_EQ_GT] = ACTIONS(3076), - [anon_sym_QMARK_QMARK] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_macro] = ACTIONS(3074), - [anon_sym_abstract] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym_overload] = ACTIONS(3074), - [anon_sym_override] = ACTIONS(3074), - [anon_sym_final] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_var] = ACTIONS(3074), - [aux_sym_integer_token1] = ACTIONS(3074), - [aux_sym_integer_token2] = ACTIONS(3076), - [aux_sym_float_token1] = ACTIONS(3074), - [aux_sym_float_token2] = ACTIONS(3076), - [anon_sym_true] = ACTIONS(3074), - [anon_sym_false] = ACTIONS(3074), - [aux_sym_string_token1] = ACTIONS(3076), - [aux_sym_string_token3] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3076), + [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] = { - [sym_identifier] = ACTIONS(3078), - [anon_sym_POUND] = ACTIONS(3080), - [anon_sym_package] = ACTIONS(3078), - [anon_sym_import] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_cast] = ACTIONS(3078), - [anon_sym_DOLLARtype] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_untyped] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_AT_COLON] = ACTIONS(3080), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3078), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_EQ_GT] = ACTIONS(3080), - [anon_sym_QMARK_QMARK] = ACTIONS(3080), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_macro] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_overload] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3078), - [anon_sym_var] = ACTIONS(3078), - [aux_sym_integer_token1] = ACTIONS(3078), - [aux_sym_integer_token2] = ACTIONS(3080), - [aux_sym_float_token1] = ACTIONS(3078), - [aux_sym_float_token2] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [aux_sym_string_token1] = ACTIONS(3080), - [aux_sym_string_token3] = ACTIONS(3080), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3080), + [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] = { - [sym_identifier] = ACTIONS(3082), - [anon_sym_POUND] = ACTIONS(3084), - [anon_sym_package] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_cast] = ACTIONS(3082), - [anon_sym_DOLLARtype] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_untyped] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_this] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_AT_COLON] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_catch] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_GT_GT_GT] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_EQ_GT] = ACTIONS(3084), - [anon_sym_QMARK_QMARK] = ACTIONS(3084), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_macro] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_overload] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_var] = ACTIONS(3082), - [aux_sym_integer_token1] = ACTIONS(3082), - [aux_sym_integer_token2] = ACTIONS(3084), - [aux_sym_float_token1] = ACTIONS(3082), - [aux_sym_float_token2] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3082), - [anon_sym_false] = ACTIONS(3082), - [aux_sym_string_token1] = ACTIONS(3084), - [aux_sym_string_token3] = ACTIONS(3084), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3084), + [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] = { - [sym_identifier] = ACTIONS(3086), - [anon_sym_POUND] = ACTIONS(3088), - [anon_sym_package] = ACTIONS(3086), - [anon_sym_import] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3086), - [anon_sym_default] = ACTIONS(3086), - [anon_sym_cast] = ACTIONS(3086), - [anon_sym_DOLLARtype] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_untyped] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_this] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_AT_COLON] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_catch] = ACTIONS(3086), - [anon_sym_else] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_LT_LT] = ACTIONS(3088), - [anon_sym_GT_GT] = ACTIONS(3086), - [anon_sym_GT_GT_GT] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_LT_EQ] = ACTIONS(3088), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_GT_EQ] = ACTIONS(3088), - [anon_sym_EQ_GT] = ACTIONS(3088), - [anon_sym_QMARK_QMARK] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3088), - [anon_sym_null] = ACTIONS(3086), - [anon_sym_macro] = ACTIONS(3086), - [anon_sym_abstract] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym_overload] = ACTIONS(3086), - [anon_sym_override] = ACTIONS(3086), - [anon_sym_final] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3086), - [anon_sym_var] = ACTIONS(3086), - [aux_sym_integer_token1] = ACTIONS(3086), - [aux_sym_integer_token2] = ACTIONS(3088), - [aux_sym_float_token1] = ACTIONS(3086), - [aux_sym_float_token2] = ACTIONS(3088), - [anon_sym_true] = ACTIONS(3086), - [anon_sym_false] = ACTIONS(3086), - [aux_sym_string_token1] = ACTIONS(3088), - [aux_sym_string_token3] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3088), + [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] = { - [sym_identifier] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3092), - [anon_sym_package] = ACTIONS(3090), - [anon_sym_import] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_switch] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_case] = ACTIONS(3090), - [anon_sym_default] = ACTIONS(3090), - [anon_sym_cast] = ACTIONS(3090), - [anon_sym_DOLLARtype] = ACTIONS(3092), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_untyped] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3090), - [anon_sym_AT] = ACTIONS(3090), - [anon_sym_AT_COLON] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3090), - [anon_sym_catch] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_while] = ACTIONS(3090), - [anon_sym_do] = ACTIONS(3090), - [anon_sym_new] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3092), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3092), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_EQ_EQ] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3092), - [anon_sym_EQ_GT] = ACTIONS(3092), - [anon_sym_QMARK_QMARK] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3090), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3092), - [anon_sym_null] = ACTIONS(3090), - [anon_sym_macro] = ACTIONS(3090), - [anon_sym_abstract] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym_overload] = ACTIONS(3090), - [anon_sym_override] = ACTIONS(3090), - [anon_sym_final] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_interface] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_function] = ACTIONS(3090), - [anon_sym_var] = ACTIONS(3090), - [aux_sym_integer_token1] = ACTIONS(3090), - [aux_sym_integer_token2] = ACTIONS(3092), - [aux_sym_float_token1] = ACTIONS(3090), - [aux_sym_float_token2] = ACTIONS(3092), - [anon_sym_true] = ACTIONS(3090), - [anon_sym_false] = ACTIONS(3090), - [aux_sym_string_token1] = ACTIONS(3092), - [aux_sym_string_token3] = ACTIONS(3092), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3092), + [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] = { - [sym_identifier] = ACTIONS(3094), - [anon_sym_POUND] = ACTIONS(3096), - [anon_sym_package] = ACTIONS(3094), - [anon_sym_import] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_cast] = ACTIONS(3094), - [anon_sym_DOLLARtype] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_untyped] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_AT_COLON] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_catch] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PERCENT] = ACTIONS(3096), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_LT_LT] = ACTIONS(3096), - [anon_sym_GT_GT] = ACTIONS(3094), - [anon_sym_GT_GT_GT] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_PIPE] = ACTIONS(3094), - [anon_sym_CARET] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_PIPE_PIPE] = ACTIONS(3096), - [anon_sym_EQ_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_LT_EQ] = ACTIONS(3096), - [anon_sym_GT] = ACTIONS(3094), - [anon_sym_GT_EQ] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(3096), - [anon_sym_QMARK_QMARK] = ACTIONS(3096), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3096), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_macro] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_overload] = ACTIONS(3094), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3094), - [anon_sym_var] = ACTIONS(3094), - [aux_sym_integer_token1] = ACTIONS(3094), - [aux_sym_integer_token2] = ACTIONS(3096), - [aux_sym_float_token1] = ACTIONS(3094), - [aux_sym_float_token2] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [aux_sym_string_token1] = ACTIONS(3096), - [aux_sym_string_token3] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3096), + [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] = { - [sym_identifier] = ACTIONS(3098), - [anon_sym_POUND] = ACTIONS(3100), - [anon_sym_package] = ACTIONS(3098), - [anon_sym_import] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_cast] = ACTIONS(3098), - [anon_sym_DOLLARtype] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_untyped] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_this] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_AT_COLON] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_catch] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_PERCENT] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_LT_LT] = ACTIONS(3100), - [anon_sym_GT_GT] = ACTIONS(3098), - [anon_sym_GT_GT_GT] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_CARET] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_PIPE_PIPE] = ACTIONS(3100), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3100), - [anon_sym_GT] = ACTIONS(3098), - [anon_sym_GT_EQ] = ACTIONS(3100), - [anon_sym_EQ_GT] = ACTIONS(3100), - [anon_sym_QMARK_QMARK] = ACTIONS(3100), - [anon_sym_EQ] = ACTIONS(3098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), - [anon_sym_null] = ACTIONS(3098), - [anon_sym_macro] = ACTIONS(3098), - [anon_sym_abstract] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_overload] = ACTIONS(3098), - [anon_sym_override] = ACTIONS(3098), - [anon_sym_final] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_function] = ACTIONS(3098), - [anon_sym_var] = ACTIONS(3098), - [aux_sym_integer_token1] = ACTIONS(3098), - [aux_sym_integer_token2] = ACTIONS(3100), - [aux_sym_float_token1] = ACTIONS(3098), - [aux_sym_float_token2] = ACTIONS(3100), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), - [aux_sym_string_token1] = ACTIONS(3100), - [aux_sym_string_token3] = ACTIONS(3100), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3100), + [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] = { - [sym_identifier] = ACTIONS(3102), - [anon_sym_POUND] = ACTIONS(3104), - [anon_sym_package] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3104), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_cast] = ACTIONS(3102), - [anon_sym_DOLLARtype] = ACTIONS(3104), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_untyped] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_AT_COLON] = ACTIONS(3104), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_catch] = ACTIONS(3102), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_PERCENT] = ACTIONS(3104), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_LT_LT] = ACTIONS(3104), - [anon_sym_GT_GT] = ACTIONS(3102), - [anon_sym_GT_GT_GT] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3104), - [anon_sym_EQ_EQ] = ACTIONS(3104), - [anon_sym_BANG_EQ] = ACTIONS(3104), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_LT_EQ] = ACTIONS(3104), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_GT_EQ] = ACTIONS(3104), - [anon_sym_EQ_GT] = ACTIONS(3104), - [anon_sym_QMARK_QMARK] = ACTIONS(3104), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3104), - [anon_sym_null] = ACTIONS(3102), - [anon_sym_macro] = ACTIONS(3102), - [anon_sym_abstract] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym_overload] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_final] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [aux_sym_integer_token1] = ACTIONS(3102), - [aux_sym_integer_token2] = ACTIONS(3104), - [aux_sym_float_token1] = ACTIONS(3102), - [aux_sym_float_token2] = ACTIONS(3104), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [aux_sym_string_token1] = ACTIONS(3104), - [aux_sym_string_token3] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3104), + [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] = { - [sym_identifier] = ACTIONS(3106), - [anon_sym_POUND] = ACTIONS(3108), - [anon_sym_package] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3106), - [anon_sym_default] = ACTIONS(3106), - [anon_sym_cast] = ACTIONS(3106), - [anon_sym_DOLLARtype] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_untyped] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_AT_COLON] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_catch] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_LT_LT] = ACTIONS(3108), - [anon_sym_GT_GT] = ACTIONS(3106), - [anon_sym_GT_GT_GT] = ACTIONS(3108), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_EQ_GT] = ACTIONS(3108), - [anon_sym_QMARK_QMARK] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_macro] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_overload] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [anon_sym_typedef] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [aux_sym_integer_token1] = ACTIONS(3106), - [aux_sym_integer_token2] = ACTIONS(3108), - [aux_sym_float_token1] = ACTIONS(3106), - [aux_sym_float_token2] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [aux_sym_string_token1] = ACTIONS(3108), - [aux_sym_string_token3] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3108), + [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] = { - [sym_identifier] = ACTIONS(3110), - [anon_sym_POUND] = ACTIONS(3112), - [anon_sym_package] = ACTIONS(3110), - [anon_sym_import] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3110), - [anon_sym_default] = ACTIONS(3110), - [anon_sym_cast] = ACTIONS(3110), - [anon_sym_DOLLARtype] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_untyped] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_AT] = ACTIONS(3110), - [anon_sym_AT_COLON] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_catch] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_do] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3112), - [anon_sym_GT_GT] = ACTIONS(3110), - [anon_sym_GT_GT_GT] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_CARET] = ACTIONS(3112), - [anon_sym_AMP_AMP] = ACTIONS(3112), - [anon_sym_PIPE_PIPE] = ACTIONS(3112), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_LT_EQ] = ACTIONS(3112), - [anon_sym_GT] = ACTIONS(3110), - [anon_sym_GT_EQ] = ACTIONS(3112), - [anon_sym_EQ_GT] = ACTIONS(3112), - [anon_sym_QMARK_QMARK] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3112), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_macro] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_static] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_extern] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_overload] = ACTIONS(3110), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_class] = ACTIONS(3110), - [anon_sym_interface] = ACTIONS(3110), - [anon_sym_enum] = ACTIONS(3110), - [anon_sym_typedef] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3110), - [anon_sym_var] = ACTIONS(3110), - [aux_sym_integer_token1] = ACTIONS(3110), - [aux_sym_integer_token2] = ACTIONS(3112), - [aux_sym_float_token1] = ACTIONS(3110), - [aux_sym_float_token2] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [aux_sym_string_token1] = ACTIONS(3112), - [aux_sym_string_token3] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3112), + [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] = { - [sym_identifier] = ACTIONS(3114), - [anon_sym_POUND] = ACTIONS(3116), - [anon_sym_package] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_case] = ACTIONS(3114), - [anon_sym_default] = ACTIONS(3114), - [anon_sym_cast] = ACTIONS(3114), - [anon_sym_DOLLARtype] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_untyped] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_AT_COLON] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_catch] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_do] = ACTIONS(3114), - [anon_sym_new] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_LT_LT] = ACTIONS(3116), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_GT_GT_GT] = ACTIONS(3116), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_CARET] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_EQ_GT] = ACTIONS(3116), - [anon_sym_QMARK_QMARK] = ACTIONS(3116), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_macro] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_static] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_extern] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_overload] = ACTIONS(3114), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_class] = ACTIONS(3114), - [anon_sym_interface] = ACTIONS(3114), - [anon_sym_enum] = ACTIONS(3114), - [anon_sym_typedef] = ACTIONS(3114), - [anon_sym_function] = ACTIONS(3114), - [anon_sym_var] = ACTIONS(3114), - [aux_sym_integer_token1] = ACTIONS(3114), - [aux_sym_integer_token2] = ACTIONS(3116), - [aux_sym_float_token1] = ACTIONS(3114), - [aux_sym_float_token2] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [aux_sym_string_token1] = ACTIONS(3116), - [aux_sym_string_token3] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3116), + [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] = { - [sym_identifier] = ACTIONS(3118), - [anon_sym_POUND] = ACTIONS(3120), - [anon_sym_package] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3118), - [anon_sym_throw] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_switch] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3120), - [anon_sym_case] = ACTIONS(3118), - [anon_sym_default] = ACTIONS(3118), - [anon_sym_cast] = ACTIONS(3118), - [anon_sym_DOLLARtype] = ACTIONS(3120), - [anon_sym_for] = ACTIONS(3118), - [anon_sym_return] = ACTIONS(3118), - [anon_sym_untyped] = ACTIONS(3118), - [anon_sym_break] = ACTIONS(3118), - [anon_sym_continue] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_this] = ACTIONS(3118), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_AT_COLON] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(3118), - [anon_sym_catch] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3118), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_while] = ACTIONS(3118), - [anon_sym_do] = ACTIONS(3118), - [anon_sym_new] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3120), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3120), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_EQ_EQ] = ACTIONS(3120), - [anon_sym_BANG_EQ] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3120), - [anon_sym_EQ_GT] = ACTIONS(3120), - [anon_sym_QMARK_QMARK] = ACTIONS(3120), - [anon_sym_EQ] = ACTIONS(3118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3120), - [anon_sym_null] = ACTIONS(3118), - [anon_sym_macro] = ACTIONS(3118), - [anon_sym_abstract] = ACTIONS(3118), - [anon_sym_static] = ACTIONS(3118), - [anon_sym_public] = ACTIONS(3118), - [anon_sym_private] = ACTIONS(3118), - [anon_sym_extern] = ACTIONS(3118), - [anon_sym_inline] = ACTIONS(3118), - [anon_sym_overload] = ACTIONS(3118), - [anon_sym_override] = ACTIONS(3118), - [anon_sym_final] = ACTIONS(3118), - [anon_sym_class] = ACTIONS(3118), - [anon_sym_interface] = ACTIONS(3118), - [anon_sym_enum] = ACTIONS(3118), - [anon_sym_typedef] = ACTIONS(3118), - [anon_sym_function] = ACTIONS(3118), - [anon_sym_var] = ACTIONS(3118), - [aux_sym_integer_token1] = ACTIONS(3118), - [aux_sym_integer_token2] = ACTIONS(3120), - [aux_sym_float_token1] = ACTIONS(3118), - [aux_sym_float_token2] = ACTIONS(3120), - [anon_sym_true] = ACTIONS(3118), - [anon_sym_false] = ACTIONS(3118), - [aux_sym_string_token1] = ACTIONS(3120), - [aux_sym_string_token3] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3120), + [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] = { - [sym_identifier] = ACTIONS(3122), - [anon_sym_POUND] = ACTIONS(3124), - [anon_sym_package] = ACTIONS(3122), - [anon_sym_import] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3122), - [anon_sym_throw] = ACTIONS(3122), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3122), - [anon_sym_default] = ACTIONS(3122), - [anon_sym_cast] = ACTIONS(3122), - [anon_sym_DOLLARtype] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3122), - [anon_sym_return] = ACTIONS(3122), - [anon_sym_untyped] = ACTIONS(3122), - [anon_sym_break] = ACTIONS(3122), - [anon_sym_continue] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_this] = ACTIONS(3122), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_AT_COLON] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3122), - [anon_sym_catch] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3122), - [anon_sym_while] = ACTIONS(3122), - [anon_sym_do] = ACTIONS(3122), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [anon_sym_PERCENT] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3124), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_GT_GT_GT] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3124), - [anon_sym_AMP_AMP] = ACTIONS(3124), - [anon_sym_PIPE_PIPE] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3124), - [anon_sym_BANG_EQ] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_EQ_GT] = ACTIONS(3124), - [anon_sym_QMARK_QMARK] = ACTIONS(3124), - [anon_sym_EQ] = ACTIONS(3122), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3124), - [anon_sym_null] = ACTIONS(3122), - [anon_sym_macro] = ACTIONS(3122), - [anon_sym_abstract] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3122), - [anon_sym_public] = ACTIONS(3122), - [anon_sym_private] = ACTIONS(3122), - [anon_sym_extern] = ACTIONS(3122), - [anon_sym_inline] = ACTIONS(3122), - [anon_sym_overload] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3122), - [anon_sym_final] = ACTIONS(3122), - [anon_sym_class] = ACTIONS(3122), - [anon_sym_interface] = ACTIONS(3122), - [anon_sym_enum] = ACTIONS(3122), - [anon_sym_typedef] = ACTIONS(3122), - [anon_sym_function] = ACTIONS(3122), - [anon_sym_var] = ACTIONS(3122), - [aux_sym_integer_token1] = ACTIONS(3122), - [aux_sym_integer_token2] = ACTIONS(3124), - [aux_sym_float_token1] = ACTIONS(3122), - [aux_sym_float_token2] = ACTIONS(3124), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [aux_sym_string_token1] = ACTIONS(3124), - [aux_sym_string_token3] = ACTIONS(3124), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3124), + [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] = { - [sym_identifier] = ACTIONS(3126), - [anon_sym_POUND] = ACTIONS(3128), - [anon_sym_package] = ACTIONS(3126), - [anon_sym_import] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3126), - [anon_sym_default] = ACTIONS(3126), - [anon_sym_cast] = ACTIONS(3126), - [anon_sym_DOLLARtype] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_untyped] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_this] = ACTIONS(3126), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_AT_COLON] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_catch] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3126), - [anon_sym_GT_GT_GT] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3126), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP_AMP] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3128), - [anon_sym_BANG_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_GT] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3128), - [anon_sym_EQ_GT] = ACTIONS(3128), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3126), - [anon_sym_macro] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_extern] = ACTIONS(3126), - [anon_sym_inline] = ACTIONS(3126), - [anon_sym_overload] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_final] = ACTIONS(3126), - [anon_sym_class] = ACTIONS(3126), - [anon_sym_interface] = ACTIONS(3126), - [anon_sym_enum] = ACTIONS(3126), - [anon_sym_typedef] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [aux_sym_integer_token1] = ACTIONS(3126), - [aux_sym_integer_token2] = ACTIONS(3128), - [aux_sym_float_token1] = ACTIONS(3126), - [aux_sym_float_token2] = ACTIONS(3128), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [aux_sym_string_token1] = ACTIONS(3128), - [aux_sym_string_token3] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3128), + [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] = { - [sym_identifier] = ACTIONS(3130), - [anon_sym_POUND] = ACTIONS(3132), - [anon_sym_package] = ACTIONS(3130), - [anon_sym_import] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3130), - [anon_sym_default] = ACTIONS(3130), - [anon_sym_cast] = ACTIONS(3130), - [anon_sym_DOLLARtype] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_untyped] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3130), - [anon_sym_AT_COLON] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_catch] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_PERCENT] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_LT_LT] = ACTIONS(3132), - [anon_sym_GT_GT] = ACTIONS(3130), - [anon_sym_GT_GT_GT] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3132), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_EQ_GT] = ACTIONS(3132), - [anon_sym_QMARK_QMARK] = ACTIONS(3132), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_macro] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_extern] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_overload] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_class] = ACTIONS(3130), - [anon_sym_interface] = ACTIONS(3130), - [anon_sym_enum] = ACTIONS(3130), - [anon_sym_typedef] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [aux_sym_integer_token1] = ACTIONS(3130), - [aux_sym_integer_token2] = ACTIONS(3132), - [aux_sym_float_token1] = ACTIONS(3130), - [aux_sym_float_token2] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [aux_sym_string_token1] = ACTIONS(3132), - [aux_sym_string_token3] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3132), + [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] = { - [sym_identifier] = ACTIONS(3134), - [anon_sym_POUND] = ACTIONS(3136), - [anon_sym_package] = ACTIONS(3134), - [anon_sym_import] = ACTIONS(3134), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3134), - [anon_sym_default] = ACTIONS(3134), - [anon_sym_cast] = ACTIONS(3134), - [anon_sym_DOLLARtype] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_untyped] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_AT_COLON] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_catch] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_GT_GT] = ACTIONS(3134), - [anon_sym_GT_GT_GT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3134), - [anon_sym_PIPE] = ACTIONS(3134), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_AMP_AMP] = ACTIONS(3136), - [anon_sym_PIPE_PIPE] = ACTIONS(3136), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_LT_EQ] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3134), - [anon_sym_GT_EQ] = ACTIONS(3136), - [anon_sym_EQ_GT] = ACTIONS(3136), - [anon_sym_QMARK_QMARK] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3136), - [anon_sym_null] = ACTIONS(3134), - [anon_sym_macro] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_extern] = ACTIONS(3134), - [anon_sym_inline] = ACTIONS(3134), - [anon_sym_overload] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_final] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_typedef] = ACTIONS(3134), - [anon_sym_function] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [aux_sym_integer_token1] = ACTIONS(3134), - [aux_sym_integer_token2] = ACTIONS(3136), - [aux_sym_float_token1] = ACTIONS(3134), - [aux_sym_float_token2] = ACTIONS(3136), - [anon_sym_true] = ACTIONS(3134), - [anon_sym_false] = ACTIONS(3134), - [aux_sym_string_token1] = ACTIONS(3136), - [aux_sym_string_token3] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3136), + [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] = { - [sym_identifier] = ACTIONS(3138), - [anon_sym_POUND] = ACTIONS(3140), - [anon_sym_package] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3138), - [anon_sym_default] = ACTIONS(3138), - [anon_sym_cast] = ACTIONS(3138), - [anon_sym_DOLLARtype] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_untyped] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_this] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_AT_COLON] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_catch] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3140), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_GT_GT_GT] = ACTIONS(3140), - [anon_sym_AMP] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT] = ACTIONS(3138), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_EQ_GT] = ACTIONS(3140), - [anon_sym_QMARK_QMARK] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3140), - [anon_sym_null] = ACTIONS(3138), - [anon_sym_macro] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_extern] = ACTIONS(3138), - [anon_sym_inline] = ACTIONS(3138), - [anon_sym_overload] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_final] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), - [anon_sym_typedef] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [aux_sym_integer_token1] = ACTIONS(3138), - [aux_sym_integer_token2] = ACTIONS(3140), - [aux_sym_float_token1] = ACTIONS(3138), - [aux_sym_float_token2] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3138), - [anon_sym_false] = ACTIONS(3138), - [aux_sym_string_token1] = ACTIONS(3140), - [aux_sym_string_token3] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3140), + [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] = { - [sym_identifier] = ACTIONS(3142), - [anon_sym_POUND] = ACTIONS(3144), - [anon_sym_package] = ACTIONS(3142), - [anon_sym_import] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3142), - [anon_sym_throw] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3142), - [anon_sym_default] = ACTIONS(3142), - [anon_sym_cast] = ACTIONS(3142), - [anon_sym_DOLLARtype] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_untyped] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_this] = ACTIONS(3142), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_AT_COLON] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_catch] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_new] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), - [anon_sym_PERCENT] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_LT_LT] = ACTIONS(3144), - [anon_sym_GT_GT] = ACTIONS(3142), - [anon_sym_GT_GT_GT] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3142), - [anon_sym_PIPE] = ACTIONS(3142), - [anon_sym_CARET] = ACTIONS(3144), - [anon_sym_AMP_AMP] = ACTIONS(3144), - [anon_sym_PIPE_PIPE] = ACTIONS(3144), - [anon_sym_EQ_EQ] = ACTIONS(3144), - [anon_sym_BANG_EQ] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_LT_EQ] = ACTIONS(3144), - [anon_sym_GT] = ACTIONS(3142), - [anon_sym_GT_EQ] = ACTIONS(3144), - [anon_sym_EQ_GT] = ACTIONS(3144), - [anon_sym_QMARK_QMARK] = ACTIONS(3144), - [anon_sym_EQ] = ACTIONS(3142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3142), - [anon_sym_macro] = ACTIONS(3142), - [anon_sym_abstract] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_extern] = ACTIONS(3142), - [anon_sym_inline] = ACTIONS(3142), - [anon_sym_overload] = ACTIONS(3142), - [anon_sym_override] = ACTIONS(3142), - [anon_sym_final] = ACTIONS(3142), - [anon_sym_class] = ACTIONS(3142), - [anon_sym_interface] = ACTIONS(3142), - [anon_sym_enum] = ACTIONS(3142), - [anon_sym_typedef] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3142), - [anon_sym_var] = ACTIONS(3142), - [aux_sym_integer_token1] = ACTIONS(3142), - [aux_sym_integer_token2] = ACTIONS(3144), - [aux_sym_float_token1] = ACTIONS(3142), - [aux_sym_float_token2] = ACTIONS(3144), - [anon_sym_true] = ACTIONS(3142), - [anon_sym_false] = ACTIONS(3142), - [aux_sym_string_token1] = ACTIONS(3144), - [aux_sym_string_token3] = ACTIONS(3144), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3144), + [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] = { - [sym_identifier] = ACTIONS(3146), - [anon_sym_POUND] = ACTIONS(3148), - [anon_sym_package] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3146), - [anon_sym_default] = ACTIONS(3146), - [anon_sym_cast] = ACTIONS(3146), - [anon_sym_DOLLARtype] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_untyped] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_AT_COLON] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_catch] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [anon_sym_PERCENT] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_LT_LT] = ACTIONS(3148), - [anon_sym_GT_GT] = ACTIONS(3146), - [anon_sym_GT_GT_GT] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_PIPE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3148), - [anon_sym_AMP_AMP] = ACTIONS(3148), - [anon_sym_PIPE_PIPE] = ACTIONS(3148), - [anon_sym_EQ_EQ] = ACTIONS(3148), - [anon_sym_BANG_EQ] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_LT_EQ] = ACTIONS(3148), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_GT_EQ] = ACTIONS(3148), - [anon_sym_EQ_GT] = ACTIONS(3148), - [anon_sym_QMARK_QMARK] = ACTIONS(3148), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_macro] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_extern] = ACTIONS(3146), - [anon_sym_inline] = ACTIONS(3146), - [anon_sym_overload] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_final] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [anon_sym_typedef] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [aux_sym_integer_token1] = ACTIONS(3146), - [aux_sym_integer_token2] = ACTIONS(3148), - [aux_sym_float_token1] = ACTIONS(3146), - [aux_sym_float_token2] = ACTIONS(3148), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [aux_sym_string_token1] = ACTIONS(3148), - [aux_sym_string_token3] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3148), + [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] = { - [sym_identifier] = ACTIONS(3150), - [anon_sym_POUND] = ACTIONS(3152), - [anon_sym_package] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3150), - [anon_sym_default] = ACTIONS(3150), - [anon_sym_cast] = ACTIONS(3150), - [anon_sym_DOLLARtype] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_untyped] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_this] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_AT_COLON] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_catch] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_PERCENT] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_LT_LT] = ACTIONS(3152), - [anon_sym_GT_GT] = ACTIONS(3150), - [anon_sym_GT_GT_GT] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_PIPE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_PIPE_PIPE] = ACTIONS(3152), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3152), - [anon_sym_GT] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3152), - [anon_sym_EQ_GT] = ACTIONS(3152), - [anon_sym_QMARK_QMARK] = ACTIONS(3152), - [anon_sym_EQ] = ACTIONS(3150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3150), - [anon_sym_macro] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym_inline] = ACTIONS(3150), - [anon_sym_overload] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_final] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), - [anon_sym_typedef] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [aux_sym_integer_token1] = ACTIONS(3150), - [aux_sym_integer_token2] = ACTIONS(3152), - [aux_sym_float_token1] = ACTIONS(3150), - [aux_sym_float_token2] = ACTIONS(3152), - [anon_sym_true] = ACTIONS(3150), - [anon_sym_false] = ACTIONS(3150), - [aux_sym_string_token1] = ACTIONS(3152), - [aux_sym_string_token3] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3152), + [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] = { - [sym_identifier] = ACTIONS(3154), - [anon_sym_POUND] = ACTIONS(3156), - [anon_sym_package] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_cast] = ACTIONS(3154), - [anon_sym_DOLLARtype] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_untyped] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_this] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_AT_COLON] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_catch] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [anon_sym_PERCENT] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_LT_LT] = ACTIONS(3156), - [anon_sym_GT_GT] = ACTIONS(3154), - [anon_sym_GT_GT_GT] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_PIPE] = ACTIONS(3154), - [anon_sym_CARET] = ACTIONS(3156), - [anon_sym_AMP_AMP] = ACTIONS(3156), - [anon_sym_PIPE_PIPE] = ACTIONS(3156), - [anon_sym_EQ_EQ] = ACTIONS(3156), - [anon_sym_BANG_EQ] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3156), - [anon_sym_EQ_GT] = ACTIONS(3156), - [anon_sym_QMARK_QMARK] = ACTIONS(3156), - [anon_sym_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3156), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_macro] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3154), - [anon_sym_overload] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_final] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [anon_sym_typedef] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [aux_sym_integer_token1] = ACTIONS(3154), - [aux_sym_integer_token2] = ACTIONS(3156), - [aux_sym_float_token1] = ACTIONS(3154), - [aux_sym_float_token2] = ACTIONS(3156), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [aux_sym_string_token1] = ACTIONS(3156), - [aux_sym_string_token3] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3156), + [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] = { - [sym_identifier] = ACTIONS(3158), - [anon_sym_POUND] = ACTIONS(3160), - [anon_sym_package] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_STAR] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3158), - [anon_sym_default] = ACTIONS(3158), - [anon_sym_cast] = ACTIONS(3158), - [anon_sym_DOLLARtype] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_untyped] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_this] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_AT_COLON] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_catch] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_LT_LT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_GT_GT_GT] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_PIPE] = ACTIONS(3158), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_EQ_EQ] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3160), - [anon_sym_EQ_GT] = ACTIONS(3160), - [anon_sym_QMARK_QMARK] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3160), - [anon_sym_null] = ACTIONS(3158), - [anon_sym_macro] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_extern] = ACTIONS(3158), - [anon_sym_inline] = ACTIONS(3158), - [anon_sym_overload] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_final] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), - [anon_sym_typedef] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [aux_sym_integer_token1] = ACTIONS(3158), - [aux_sym_integer_token2] = ACTIONS(3160), - [aux_sym_float_token1] = ACTIONS(3158), - [aux_sym_float_token2] = ACTIONS(3160), - [anon_sym_true] = ACTIONS(3158), - [anon_sym_false] = ACTIONS(3158), - [aux_sym_string_token1] = ACTIONS(3160), - [aux_sym_string_token3] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3160), + [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] = { - [sym_identifier] = ACTIONS(3162), - [anon_sym_POUND] = ACTIONS(3164), - [anon_sym_package] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_STAR] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3162), - [anon_sym_default] = ACTIONS(3162), - [anon_sym_cast] = ACTIONS(3162), - [anon_sym_DOLLARtype] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_untyped] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_AT_COLON] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_catch] = ACTIONS(3162), - [anon_sym_else] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_LT_LT] = ACTIONS(3164), - [anon_sym_GT_GT] = ACTIONS(3162), - [anon_sym_GT_GT_GT] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3162), - [anon_sym_CARET] = ACTIONS(3164), - [anon_sym_AMP_AMP] = ACTIONS(3164), - [anon_sym_PIPE_PIPE] = ACTIONS(3164), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_LT_EQ] = ACTIONS(3164), - [anon_sym_GT] = ACTIONS(3162), - [anon_sym_GT_EQ] = ACTIONS(3164), - [anon_sym_EQ_GT] = ACTIONS(3164), - [anon_sym_QMARK_QMARK] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3164), - [anon_sym_null] = ACTIONS(3162), - [anon_sym_macro] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_extern] = ACTIONS(3162), - [anon_sym_inline] = ACTIONS(3162), - [anon_sym_overload] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_final] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), - [anon_sym_typedef] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [aux_sym_integer_token1] = ACTIONS(3162), - [aux_sym_integer_token2] = ACTIONS(3164), - [aux_sym_float_token1] = ACTIONS(3162), - [aux_sym_float_token2] = ACTIONS(3164), - [anon_sym_true] = ACTIONS(3162), - [anon_sym_false] = ACTIONS(3162), - [aux_sym_string_token1] = ACTIONS(3164), - [aux_sym_string_token3] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3164), + [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] = { - [sym_identifier] = ACTIONS(3166), - [anon_sym_POUND] = ACTIONS(3168), - [anon_sym_package] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3166), - [anon_sym_default] = ACTIONS(3166), - [anon_sym_cast] = ACTIONS(3166), - [anon_sym_DOLLARtype] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_untyped] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_AT_COLON] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_catch] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_LT_LT] = ACTIONS(3168), - [anon_sym_GT_GT] = ACTIONS(3166), - [anon_sym_GT_GT_GT] = ACTIONS(3168), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_PIPE] = ACTIONS(3166), - [anon_sym_CARET] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_EQ_GT] = ACTIONS(3168), - [anon_sym_QMARK_QMARK] = ACTIONS(3168), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_macro] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_extern] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_overload] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), - [anon_sym_typedef] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [aux_sym_integer_token1] = ACTIONS(3166), - [aux_sym_integer_token2] = ACTIONS(3168), - [aux_sym_float_token1] = ACTIONS(3166), - [aux_sym_float_token2] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [aux_sym_string_token1] = ACTIONS(3168), - [aux_sym_string_token3] = ACTIONS(3168), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3168), + [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] = { - [sym_identifier] = ACTIONS(3170), - [anon_sym_POUND] = ACTIONS(3172), - [anon_sym_package] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3170), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_cast] = ACTIONS(3170), - [anon_sym_DOLLARtype] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_untyped] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_this] = ACTIONS(3170), - [anon_sym_AT] = ACTIONS(3170), - [anon_sym_AT_COLON] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_catch] = ACTIONS(3170), - [anon_sym_else] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [anon_sym_PERCENT] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_LT_LT] = ACTIONS(3172), - [anon_sym_GT_GT] = ACTIONS(3170), - [anon_sym_GT_GT_GT] = ACTIONS(3172), - [anon_sym_AMP] = ACTIONS(3170), - [anon_sym_PIPE] = ACTIONS(3170), - [anon_sym_CARET] = ACTIONS(3172), - [anon_sym_AMP_AMP] = ACTIONS(3172), - [anon_sym_PIPE_PIPE] = ACTIONS(3172), - [anon_sym_EQ_EQ] = ACTIONS(3172), - [anon_sym_BANG_EQ] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_LT_EQ] = ACTIONS(3172), - [anon_sym_GT] = ACTIONS(3170), - [anon_sym_GT_EQ] = ACTIONS(3172), - [anon_sym_EQ_GT] = ACTIONS(3172), - [anon_sym_QMARK_QMARK] = ACTIONS(3172), - [anon_sym_EQ] = ACTIONS(3170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3172), - [anon_sym_null] = ACTIONS(3170), - [anon_sym_macro] = ACTIONS(3170), - [anon_sym_abstract] = ACTIONS(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_public] = ACTIONS(3170), - [anon_sym_private] = ACTIONS(3170), - [anon_sym_extern] = ACTIONS(3170), - [anon_sym_inline] = ACTIONS(3170), - [anon_sym_overload] = ACTIONS(3170), - [anon_sym_override] = ACTIONS(3170), - [anon_sym_final] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), - [anon_sym_typedef] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [aux_sym_integer_token1] = ACTIONS(3170), - [aux_sym_integer_token2] = ACTIONS(3172), - [aux_sym_float_token1] = ACTIONS(3170), - [aux_sym_float_token2] = ACTIONS(3172), - [anon_sym_true] = ACTIONS(3170), - [anon_sym_false] = ACTIONS(3170), - [aux_sym_string_token1] = ACTIONS(3172), - [aux_sym_string_token3] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3172), + [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] = { - [sym_identifier] = ACTIONS(3174), - [anon_sym_POUND] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3174), - [anon_sym_default] = ACTIONS(3174), - [anon_sym_cast] = ACTIONS(3174), - [anon_sym_DOLLARtype] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_untyped] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_this] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_AT_COLON] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_catch] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PERCENT] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_LT_LT] = ACTIONS(3176), - [anon_sym_GT_GT] = ACTIONS(3174), - [anon_sym_GT_GT_GT] = ACTIONS(3176), - [anon_sym_AMP] = ACTIONS(3174), - [anon_sym_PIPE] = ACTIONS(3174), - [anon_sym_CARET] = ACTIONS(3176), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [anon_sym_PIPE_PIPE] = ACTIONS(3176), - [anon_sym_EQ_EQ] = ACTIONS(3176), - [anon_sym_BANG_EQ] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_LT_EQ] = ACTIONS(3176), - [anon_sym_GT] = ACTIONS(3174), - [anon_sym_GT_EQ] = ACTIONS(3176), - [anon_sym_EQ_GT] = ACTIONS(3176), - [anon_sym_QMARK_QMARK] = ACTIONS(3176), - [anon_sym_EQ] = ACTIONS(3174), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3176), - [anon_sym_null] = ACTIONS(3174), - [anon_sym_macro] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_extern] = ACTIONS(3174), - [anon_sym_inline] = ACTIONS(3174), - [anon_sym_overload] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_final] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), - [anon_sym_typedef] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [aux_sym_integer_token1] = ACTIONS(3174), - [aux_sym_integer_token2] = ACTIONS(3176), - [aux_sym_float_token1] = ACTIONS(3174), - [aux_sym_float_token2] = ACTIONS(3176), - [anon_sym_true] = ACTIONS(3174), - [anon_sym_false] = ACTIONS(3174), - [aux_sym_string_token1] = ACTIONS(3176), - [aux_sym_string_token3] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3176), + [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] = { - [sym_identifier] = ACTIONS(3178), - [anon_sym_POUND] = ACTIONS(3180), - [anon_sym_package] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_cast] = ACTIONS(3178), - [anon_sym_DOLLARtype] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_untyped] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_this] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_AT_COLON] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [anon_sym_PERCENT] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_LT_LT] = ACTIONS(3180), - [anon_sym_GT_GT] = ACTIONS(3178), - [anon_sym_GT_GT_GT] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_PIPE_PIPE] = ACTIONS(3180), - [anon_sym_EQ_EQ] = ACTIONS(3180), - [anon_sym_BANG_EQ] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_LT_EQ] = ACTIONS(3180), - [anon_sym_GT] = ACTIONS(3178), - [anon_sym_GT_EQ] = ACTIONS(3180), - [anon_sym_EQ_GT] = ACTIONS(3180), - [anon_sym_QMARK_QMARK] = ACTIONS(3180), - [anon_sym_EQ] = ACTIONS(3178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3180), - [anon_sym_null] = ACTIONS(3178), - [anon_sym_macro] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_overload] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_final] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [aux_sym_integer_token1] = ACTIONS(3178), - [aux_sym_integer_token2] = ACTIONS(3180), - [aux_sym_float_token1] = ACTIONS(3178), - [aux_sym_float_token2] = ACTIONS(3180), - [anon_sym_true] = ACTIONS(3178), - [anon_sym_false] = ACTIONS(3178), - [aux_sym_string_token1] = ACTIONS(3180), - [aux_sym_string_token3] = ACTIONS(3180), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3180), + [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] = { - [sym_identifier] = ACTIONS(3182), - [anon_sym_POUND] = ACTIONS(3184), - [anon_sym_package] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_cast] = ACTIONS(3182), - [anon_sym_DOLLARtype] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_untyped] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_this] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_AT_COLON] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_LT_LT] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3182), - [anon_sym_GT_GT_GT] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_PIPE] = ACTIONS(3182), - [anon_sym_CARET] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_PIPE_PIPE] = ACTIONS(3184), - [anon_sym_EQ_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_GT] = ACTIONS(3182), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_EQ_GT] = ACTIONS(3184), - [anon_sym_QMARK_QMARK] = ACTIONS(3184), - [anon_sym_EQ] = ACTIONS(3182), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), - [anon_sym_null] = ACTIONS(3182), - [anon_sym_macro] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym_overload] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_final] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [aux_sym_integer_token1] = ACTIONS(3182), - [aux_sym_integer_token2] = ACTIONS(3184), - [aux_sym_float_token1] = ACTIONS(3182), - [aux_sym_float_token2] = ACTIONS(3184), - [anon_sym_true] = ACTIONS(3182), - [anon_sym_false] = ACTIONS(3182), - [aux_sym_string_token1] = ACTIONS(3184), - [aux_sym_string_token3] = ACTIONS(3184), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3184), + [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] = { - [sym_identifier] = ACTIONS(3186), - [anon_sym_POUND] = ACTIONS(3188), - [anon_sym_package] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_cast] = ACTIONS(3186), - [anon_sym_DOLLARtype] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_untyped] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_AT_COLON] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_catch] = ACTIONS(3186), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_LT_LT] = ACTIONS(3188), - [anon_sym_GT_GT] = ACTIONS(3186), - [anon_sym_GT_GT_GT] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_CARET] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_EQ_EQ] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_LT_EQ] = ACTIONS(3188), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_GT_EQ] = ACTIONS(3188), - [anon_sym_EQ_GT] = ACTIONS(3188), - [anon_sym_QMARK_QMARK] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3188), - [anon_sym_null] = ACTIONS(3186), - [anon_sym_macro] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym_overload] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_final] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [aux_sym_integer_token1] = ACTIONS(3186), - [aux_sym_integer_token2] = ACTIONS(3188), - [aux_sym_float_token1] = ACTIONS(3186), - [aux_sym_float_token2] = ACTIONS(3188), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [aux_sym_string_token1] = ACTIONS(3188), - [aux_sym_string_token3] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3188), + [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] = { - [sym_identifier] = ACTIONS(3190), - [anon_sym_POUND] = ACTIONS(3192), - [anon_sym_package] = ACTIONS(3190), - [anon_sym_import] = ACTIONS(3190), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_cast] = ACTIONS(3190), - [anon_sym_DOLLARtype] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_untyped] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_this] = ACTIONS(3190), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_AT_COLON] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_catch] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PERCENT] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_LT_LT] = ACTIONS(3192), - [anon_sym_GT_GT] = ACTIONS(3190), - [anon_sym_GT_GT_GT] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_PIPE] = ACTIONS(3190), - [anon_sym_CARET] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_PIPE_PIPE] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3192), - [anon_sym_EQ_GT] = ACTIONS(3192), - [anon_sym_QMARK_QMARK] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3192), - [anon_sym_null] = ACTIONS(3190), - [anon_sym_macro] = ACTIONS(3190), - [anon_sym_abstract] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_public] = ACTIONS(3190), - [anon_sym_private] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym_overload] = ACTIONS(3190), - [anon_sym_override] = ACTIONS(3190), - [anon_sym_final] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_interface] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3190), - [anon_sym_var] = ACTIONS(3190), - [aux_sym_integer_token1] = ACTIONS(3190), - [aux_sym_integer_token2] = ACTIONS(3192), - [aux_sym_float_token1] = ACTIONS(3190), - [aux_sym_float_token2] = ACTIONS(3192), - [anon_sym_true] = ACTIONS(3190), - [anon_sym_false] = ACTIONS(3190), - [aux_sym_string_token1] = ACTIONS(3192), - [aux_sym_string_token3] = ACTIONS(3192), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3192), + [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] = { - [sym_identifier] = ACTIONS(3194), - [anon_sym_POUND] = ACTIONS(3196), - [anon_sym_package] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_cast] = ACTIONS(3194), - [anon_sym_DOLLARtype] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_untyped] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_AT_COLON] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_catch] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_LT_LT] = ACTIONS(3196), - [anon_sym_GT_GT] = ACTIONS(3194), - [anon_sym_GT_GT_GT] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_PIPE] = ACTIONS(3194), - [anon_sym_CARET] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_PIPE_PIPE] = ACTIONS(3196), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3196), - [anon_sym_EQ_GT] = ACTIONS(3196), - [anon_sym_QMARK_QMARK] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3196), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_macro] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_overload] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [aux_sym_integer_token1] = ACTIONS(3194), - [aux_sym_integer_token2] = ACTIONS(3196), - [aux_sym_float_token1] = ACTIONS(3194), - [aux_sym_float_token2] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [aux_sym_string_token1] = ACTIONS(3196), - [aux_sym_string_token3] = ACTIONS(3196), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3196), + [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] = { - [sym_identifier] = ACTIONS(3198), - [anon_sym_POUND] = ACTIONS(3200), - [anon_sym_package] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_cast] = ACTIONS(3198), - [anon_sym_DOLLARtype] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_untyped] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_AT_COLON] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_catch] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_LT_LT] = ACTIONS(3200), - [anon_sym_GT_GT] = ACTIONS(3198), - [anon_sym_GT_GT_GT] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_PIPE] = ACTIONS(3198), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_EQ_GT] = ACTIONS(3200), - [anon_sym_QMARK_QMARK] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3198), - [anon_sym_macro] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_extern] = ACTIONS(3198), - [anon_sym_inline] = ACTIONS(3198), - [anon_sym_overload] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_final] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [anon_sym_typedef] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [aux_sym_integer_token1] = ACTIONS(3198), - [aux_sym_integer_token2] = ACTIONS(3200), - [aux_sym_float_token1] = ACTIONS(3198), - [aux_sym_float_token2] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym_string_token1] = ACTIONS(3200), - [aux_sym_string_token3] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3200), + [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] = { - [sym_identifier] = ACTIONS(3202), - [anon_sym_POUND] = ACTIONS(3204), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_cast] = ACTIONS(3202), - [anon_sym_DOLLARtype] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_untyped] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_AT_COLON] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_catch] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_LT_LT] = ACTIONS(3204), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_GT_GT_GT] = ACTIONS(3204), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3204), - [anon_sym_AMP_AMP] = ACTIONS(3204), - [anon_sym_PIPE_PIPE] = ACTIONS(3204), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3204), - [anon_sym_EQ_GT] = ACTIONS(3204), - [anon_sym_QMARK_QMARK] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3204), - [anon_sym_null] = ACTIONS(3202), - [anon_sym_macro] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_extern] = ACTIONS(3202), - [anon_sym_inline] = ACTIONS(3202), - [anon_sym_overload] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_typedef] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [aux_sym_integer_token1] = ACTIONS(3202), - [aux_sym_integer_token2] = ACTIONS(3204), - [aux_sym_float_token1] = ACTIONS(3202), - [aux_sym_float_token2] = ACTIONS(3204), - [anon_sym_true] = ACTIONS(3202), - [anon_sym_false] = ACTIONS(3202), - [aux_sym_string_token1] = ACTIONS(3204), - [aux_sym_string_token3] = ACTIONS(3204), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3204), + [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] = { - [sym_identifier] = ACTIONS(3206), - [anon_sym_POUND] = ACTIONS(3208), - [anon_sym_package] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_case] = ACTIONS(3206), - [anon_sym_default] = ACTIONS(3206), - [anon_sym_cast] = ACTIONS(3206), - [anon_sym_DOLLARtype] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_untyped] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_this] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_AT_COLON] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_catch] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_LT_LT] = ACTIONS(3208), - [anon_sym_GT_GT] = ACTIONS(3206), - [anon_sym_GT_GT_GT] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3206), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_EQ_GT] = ACTIONS(3208), - [anon_sym_QMARK_QMARK] = ACTIONS(3208), - [anon_sym_EQ] = ACTIONS(3206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3206), - [anon_sym_macro] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_extern] = ACTIONS(3206), - [anon_sym_inline] = ACTIONS(3206), - [anon_sym_overload] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_final] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), - [anon_sym_typedef] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [aux_sym_integer_token1] = ACTIONS(3206), - [aux_sym_integer_token2] = ACTIONS(3208), - [aux_sym_float_token1] = ACTIONS(3206), - [aux_sym_float_token2] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3206), - [anon_sym_false] = ACTIONS(3206), - [aux_sym_string_token1] = ACTIONS(3208), - [aux_sym_string_token3] = ACTIONS(3208), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3208), + [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] = { - [sym_identifier] = ACTIONS(3210), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_package] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_case] = ACTIONS(3210), - [anon_sym_default] = ACTIONS(3210), - [anon_sym_cast] = ACTIONS(3210), - [anon_sym_DOLLARtype] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_untyped] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_AT_COLON] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_catch] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_LT_LT] = ACTIONS(3212), - [anon_sym_GT_GT] = ACTIONS(3210), - [anon_sym_GT_GT_GT] = ACTIONS(3212), - [anon_sym_AMP] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3210), - [anon_sym_CARET] = ACTIONS(3212), - [anon_sym_AMP_AMP] = ACTIONS(3212), - [anon_sym_PIPE_PIPE] = ACTIONS(3212), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_LT_EQ] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3210), - [anon_sym_GT_EQ] = ACTIONS(3212), - [anon_sym_EQ_GT] = ACTIONS(3212), - [anon_sym_QMARK_QMARK] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3212), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_macro] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_extern] = ACTIONS(3210), - [anon_sym_inline] = ACTIONS(3210), - [anon_sym_overload] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_final] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), - [anon_sym_typedef] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [aux_sym_integer_token1] = ACTIONS(3210), - [aux_sym_integer_token2] = ACTIONS(3212), - [aux_sym_float_token1] = ACTIONS(3210), - [aux_sym_float_token2] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3210), - [anon_sym_false] = ACTIONS(3210), - [aux_sym_string_token1] = ACTIONS(3212), - [aux_sym_string_token3] = ACTIONS(3212), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3212), + [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(3214), - [anon_sym_POUND] = ACTIONS(3216), - [anon_sym_package] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_default] = ACTIONS(3214), - [anon_sym_cast] = ACTIONS(3214), - [anon_sym_DOLLARtype] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_untyped] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_this] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_AT_COLON] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_catch] = ACTIONS(3214), - [anon_sym_else] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_LT_LT] = ACTIONS(3216), - [anon_sym_GT_GT] = ACTIONS(3214), - [anon_sym_GT_GT_GT] = ACTIONS(3216), - [anon_sym_AMP] = ACTIONS(3214), - [anon_sym_PIPE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT] = ACTIONS(3214), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_EQ_GT] = ACTIONS(3216), - [anon_sym_QMARK_QMARK] = ACTIONS(3216), - [anon_sym_EQ] = ACTIONS(3214), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3214), - [anon_sym_macro] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_extern] = ACTIONS(3214), - [anon_sym_inline] = ACTIONS(3214), - [anon_sym_overload] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_final] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), - [anon_sym_typedef] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [aux_sym_integer_token1] = ACTIONS(3214), - [aux_sym_integer_token2] = ACTIONS(3216), - [aux_sym_float_token1] = ACTIONS(3214), - [aux_sym_float_token2] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym_string_token1] = ACTIONS(3216), - [aux_sym_string_token3] = ACTIONS(3216), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3216), + [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] = { - [sym_identifier] = ACTIONS(3218), - [anon_sym_POUND] = ACTIONS(3220), - [anon_sym_package] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_case] = ACTIONS(3218), - [anon_sym_default] = ACTIONS(3218), - [anon_sym_cast] = ACTIONS(3218), - [anon_sym_DOLLARtype] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_untyped] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_this] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_AT_COLON] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_catch] = ACTIONS(3218), - [anon_sym_else] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [anon_sym_PERCENT] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_LT_LT] = ACTIONS(3220), - [anon_sym_GT_GT] = ACTIONS(3218), - [anon_sym_GT_GT_GT] = ACTIONS(3220), - [anon_sym_AMP] = ACTIONS(3218), - [anon_sym_PIPE] = ACTIONS(3218), - [anon_sym_CARET] = ACTIONS(3220), - [anon_sym_AMP_AMP] = ACTIONS(3220), - [anon_sym_PIPE_PIPE] = ACTIONS(3220), - [anon_sym_EQ_EQ] = ACTIONS(3220), - [anon_sym_BANG_EQ] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_LT_EQ] = ACTIONS(3220), - [anon_sym_GT] = ACTIONS(3218), - [anon_sym_GT_EQ] = ACTIONS(3220), - [anon_sym_EQ_GT] = ACTIONS(3220), - [anon_sym_QMARK_QMARK] = ACTIONS(3220), - [anon_sym_EQ] = ACTIONS(3218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3220), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_macro] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_extern] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_overload] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_final] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), - [anon_sym_typedef] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [aux_sym_integer_token1] = ACTIONS(3218), - [aux_sym_integer_token2] = ACTIONS(3220), - [aux_sym_float_token1] = ACTIONS(3218), - [aux_sym_float_token2] = ACTIONS(3220), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [aux_sym_string_token1] = ACTIONS(3220), - [aux_sym_string_token3] = ACTIONS(3220), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3220), + [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] = { - [sym_identifier] = ACTIONS(3222), - [anon_sym_POUND] = ACTIONS(3224), - [anon_sym_package] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3222), - [anon_sym_default] = ACTIONS(3222), - [anon_sym_cast] = ACTIONS(3222), - [anon_sym_DOLLARtype] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_untyped] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_this] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_AT_COLON] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_catch] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), - [anon_sym_PERCENT] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_LT_LT] = ACTIONS(3224), - [anon_sym_GT_GT] = ACTIONS(3222), - [anon_sym_GT_GT_GT] = ACTIONS(3224), - [anon_sym_AMP] = ACTIONS(3222), - [anon_sym_PIPE] = ACTIONS(3222), - [anon_sym_CARET] = ACTIONS(3224), - [anon_sym_AMP_AMP] = ACTIONS(3224), - [anon_sym_PIPE_PIPE] = ACTIONS(3224), - [anon_sym_EQ_EQ] = ACTIONS(3224), - [anon_sym_BANG_EQ] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_LT_EQ] = ACTIONS(3224), - [anon_sym_GT] = ACTIONS(3222), - [anon_sym_GT_EQ] = ACTIONS(3224), - [anon_sym_EQ_GT] = ACTIONS(3224), - [anon_sym_QMARK_QMARK] = ACTIONS(3224), - [anon_sym_EQ] = ACTIONS(3222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3224), - [anon_sym_null] = ACTIONS(3222), - [anon_sym_macro] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_extern] = ACTIONS(3222), - [anon_sym_inline] = ACTIONS(3222), - [anon_sym_overload] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_final] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_typedef] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [aux_sym_integer_token1] = ACTIONS(3222), - [aux_sym_integer_token2] = ACTIONS(3224), - [aux_sym_float_token1] = ACTIONS(3222), - [aux_sym_float_token2] = ACTIONS(3224), - [anon_sym_true] = ACTIONS(3222), - [anon_sym_false] = ACTIONS(3222), - [aux_sym_string_token1] = ACTIONS(3224), - [aux_sym_string_token3] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3224), + [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] = { - [sym_identifier] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(3228), - [anon_sym_package] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3226), - [anon_sym_default] = ACTIONS(3226), - [anon_sym_cast] = ACTIONS(3226), - [anon_sym_DOLLARtype] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_untyped] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_this] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_AT_COLON] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_catch] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [anon_sym_PERCENT] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_LT_LT] = ACTIONS(3228), - [anon_sym_GT_GT] = ACTIONS(3226), - [anon_sym_GT_GT_GT] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3226), - [anon_sym_PIPE] = ACTIONS(3226), - [anon_sym_CARET] = ACTIONS(3228), - [anon_sym_AMP_AMP] = ACTIONS(3228), - [anon_sym_PIPE_PIPE] = ACTIONS(3228), - [anon_sym_EQ_EQ] = ACTIONS(3228), - [anon_sym_BANG_EQ] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_LT_EQ] = ACTIONS(3228), - [anon_sym_GT] = ACTIONS(3226), - [anon_sym_GT_EQ] = ACTIONS(3228), - [anon_sym_EQ_GT] = ACTIONS(3228), - [anon_sym_QMARK_QMARK] = ACTIONS(3228), - [anon_sym_EQ] = ACTIONS(3226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3228), - [anon_sym_null] = ACTIONS(3226), - [anon_sym_macro] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_extern] = ACTIONS(3226), - [anon_sym_inline] = ACTIONS(3226), - [anon_sym_overload] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_final] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), - [anon_sym_typedef] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [aux_sym_integer_token1] = ACTIONS(3226), - [aux_sym_integer_token2] = ACTIONS(3228), - [aux_sym_float_token1] = ACTIONS(3226), - [aux_sym_float_token2] = ACTIONS(3228), - [anon_sym_true] = ACTIONS(3226), - [anon_sym_false] = ACTIONS(3226), - [aux_sym_string_token1] = ACTIONS(3228), - [aux_sym_string_token3] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3228), + [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] = { - [sym_identifier] = ACTIONS(3230), - [anon_sym_POUND] = ACTIONS(3232), - [anon_sym_package] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_cast] = ACTIONS(3230), - [anon_sym_DOLLARtype] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_untyped] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_AT_COLON] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_catch] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [anon_sym_PERCENT] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_LT_LT] = ACTIONS(3232), - [anon_sym_GT_GT] = ACTIONS(3230), - [anon_sym_GT_GT_GT] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_PIPE] = ACTIONS(3230), - [anon_sym_CARET] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_PIPE_PIPE] = ACTIONS(3232), - [anon_sym_EQ_EQ] = ACTIONS(3232), - [anon_sym_BANG_EQ] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_LT_EQ] = ACTIONS(3232), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_GT_EQ] = ACTIONS(3232), - [anon_sym_EQ_GT] = ACTIONS(3232), - [anon_sym_QMARK_QMARK] = ACTIONS(3232), - [anon_sym_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3232), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_macro] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym_overload] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_final] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [aux_sym_integer_token1] = ACTIONS(3230), - [aux_sym_integer_token2] = ACTIONS(3232), - [aux_sym_float_token1] = ACTIONS(3230), - [aux_sym_float_token2] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [aux_sym_string_token1] = ACTIONS(3232), - [aux_sym_string_token3] = ACTIONS(3232), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3232), + [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] = { - [sym_identifier] = ACTIONS(3234), - [anon_sym_POUND] = ACTIONS(3236), - [anon_sym_package] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_cast] = ACTIONS(3234), - [anon_sym_DOLLARtype] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_untyped] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_AT_COLON] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_catch] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [anon_sym_PERCENT] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3234), - [anon_sym_GT_GT_GT] = ACTIONS(3236), - [anon_sym_AMP] = ACTIONS(3234), - [anon_sym_PIPE] = ACTIONS(3234), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_EQ_GT] = ACTIONS(3236), - [anon_sym_QMARK_QMARK] = ACTIONS(3236), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_macro] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_extern] = ACTIONS(3234), - [anon_sym_inline] = ACTIONS(3234), - [anon_sym_overload] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_final] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [anon_sym_typedef] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [aux_sym_integer_token1] = ACTIONS(3234), - [aux_sym_integer_token2] = ACTIONS(3236), - [aux_sym_float_token1] = ACTIONS(3234), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym_string_token1] = ACTIONS(3236), - [aux_sym_string_token3] = ACTIONS(3236), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3236), + [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] = { - [sym_identifier] = ACTIONS(3238), - [anon_sym_POUND] = ACTIONS(3240), - [anon_sym_package] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_cast] = ACTIONS(3238), - [anon_sym_DOLLARtype] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_untyped] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_AT_COLON] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_catch] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [anon_sym_PERCENT] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3240), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_GT_GT_GT] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_EQ_EQ] = ACTIONS(3240), - [anon_sym_BANG_EQ] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3240), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3240), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_QMARK_QMARK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_macro] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym_overload] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [anon_sym_final] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [aux_sym_integer_token1] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3240), - [aux_sym_float_token1] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [aux_sym_string_token1] = ACTIONS(3240), - [aux_sym_string_token3] = ACTIONS(3240), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3240), + [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] = { - [sym_identifier] = ACTIONS(3242), - [anon_sym_POUND] = ACTIONS(3244), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_cast] = ACTIONS(3242), - [anon_sym_DOLLARtype] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_untyped] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_AT_COLON] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_catch] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3242), - [anon_sym_GT_GT_GT] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_CARET] = ACTIONS(3244), - [anon_sym_AMP_AMP] = ACTIONS(3244), - [anon_sym_PIPE_PIPE] = ACTIONS(3244), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_QMARK_QMARK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_null] = ACTIONS(3242), - [anon_sym_macro] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_extern] = ACTIONS(3242), - [anon_sym_inline] = ACTIONS(3242), - [anon_sym_overload] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_final] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), - [anon_sym_typedef] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [aux_sym_integer_token1] = ACTIONS(3242), - [aux_sym_integer_token2] = ACTIONS(3244), - [aux_sym_float_token1] = ACTIONS(3242), - [aux_sym_float_token2] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [aux_sym_string_token1] = ACTIONS(3244), - [aux_sym_string_token3] = ACTIONS(3244), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3244), + [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] = { - [sym_identifier] = ACTIONS(3246), - [anon_sym_POUND] = ACTIONS(3248), - [anon_sym_package] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_cast] = ACTIONS(3246), - [anon_sym_DOLLARtype] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_untyped] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_AT_COLON] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_catch] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3246), - [anon_sym_GT_GT_GT] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_QMARK_QMARK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_macro] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_extern] = ACTIONS(3246), - [anon_sym_inline] = ACTIONS(3246), - [anon_sym_overload] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_final] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), - [anon_sym_typedef] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [aux_sym_integer_token1] = ACTIONS(3246), - [aux_sym_integer_token2] = ACTIONS(3248), - [aux_sym_float_token1] = ACTIONS(3246), - [aux_sym_float_token2] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [aux_sym_string_token1] = ACTIONS(3248), - [aux_sym_string_token3] = ACTIONS(3248), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3248), + [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] = { - [sym_identifier] = ACTIONS(3250), - [anon_sym_POUND] = ACTIONS(3252), - [anon_sym_package] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3250), - [anon_sym_default] = ACTIONS(3250), - [anon_sym_cast] = ACTIONS(3250), - [anon_sym_DOLLARtype] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_untyped] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_this] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_AT_COLON] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_catch] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_LT_LT] = ACTIONS(3252), - [anon_sym_GT_GT] = ACTIONS(3250), - [anon_sym_GT_GT_GT] = ACTIONS(3252), - [anon_sym_AMP] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_CARET] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_QMARK_QMARK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3252), - [anon_sym_null] = ACTIONS(3250), - [anon_sym_macro] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_extern] = ACTIONS(3250), - [anon_sym_inline] = ACTIONS(3250), - [anon_sym_overload] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_final] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), - [anon_sym_typedef] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [aux_sym_integer_token1] = ACTIONS(3250), - [aux_sym_integer_token2] = ACTIONS(3252), - [aux_sym_float_token1] = ACTIONS(3250), - [aux_sym_float_token2] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [aux_sym_string_token1] = ACTIONS(3252), - [aux_sym_string_token3] = ACTIONS(3252), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3252), + [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] = { - [sym_identifier] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3256), - [anon_sym_package] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_cast] = ACTIONS(3254), - [anon_sym_DOLLARtype] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_untyped] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_this] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_AT_COLON] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_catch] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PERCENT] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3254), - [anon_sym_GT_GT_GT] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3256), - [anon_sym_AMP_AMP] = ACTIONS(3256), - [anon_sym_PIPE_PIPE] = ACTIONS(3256), - [anon_sym_EQ_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_EQ_GT] = ACTIONS(3256), - [anon_sym_QMARK_QMARK] = ACTIONS(3256), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_null] = ACTIONS(3254), - [anon_sym_macro] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_extern] = ACTIONS(3254), - [anon_sym_inline] = ACTIONS(3254), - [anon_sym_overload] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_typedef] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [aux_sym_integer_token1] = ACTIONS(3254), - [aux_sym_integer_token2] = ACTIONS(3256), - [aux_sym_float_token1] = ACTIONS(3254), - [aux_sym_float_token2] = ACTIONS(3256), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym_string_token1] = ACTIONS(3256), - [aux_sym_string_token3] = ACTIONS(3256), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3256), + [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] = { - [sym_identifier] = ACTIONS(3258), - [anon_sym_POUND] = ACTIONS(3260), - [anon_sym_package] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3258), - [anon_sym_default] = ACTIONS(3258), - [anon_sym_cast] = ACTIONS(3258), - [anon_sym_DOLLARtype] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_untyped] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_this] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_AT_COLON] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_catch] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3260), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_GT_GT_GT] = ACTIONS(3260), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_AMP_AMP] = ACTIONS(3260), - [anon_sym_PIPE_PIPE] = ACTIONS(3260), - [anon_sym_EQ_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_LT_EQ] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3258), - [anon_sym_GT_EQ] = ACTIONS(3260), - [anon_sym_EQ_GT] = ACTIONS(3260), - [anon_sym_QMARK_QMARK] = ACTIONS(3260), - [anon_sym_EQ] = ACTIONS(3258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3260), - [anon_sym_null] = ACTIONS(3258), - [anon_sym_macro] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_extern] = ACTIONS(3258), - [anon_sym_inline] = ACTIONS(3258), - [anon_sym_overload] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_final] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), - [anon_sym_typedef] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [aux_sym_integer_token1] = ACTIONS(3258), - [aux_sym_integer_token2] = ACTIONS(3260), - [aux_sym_float_token1] = ACTIONS(3258), - [aux_sym_float_token2] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3258), - [anon_sym_false] = ACTIONS(3258), - [aux_sym_string_token1] = ACTIONS(3260), - [aux_sym_string_token3] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3260), + [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] = { - [sym_else_clause] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_catch] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3262), + [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] = { - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [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(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(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_package] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_using] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_cast] = ACTIONS(1784), - [anon_sym_DOLLARtype] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_AT_COLON] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_catch] = ACTIONS(1784), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1784), - [anon_sym_GT_GT_GT] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [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(1784), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_QMARK_QMARK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1782), - [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_enum] = 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(1782), - [aux_sym_float_token1] = ACTIONS(1784), - [aux_sym_float_token2] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [aux_sym_string_token1] = ACTIONS(1782), - [aux_sym_string_token3] = ACTIONS(1782), + [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] = { - [sym_identifier] = ACTIONS(3268), - [anon_sym_POUND] = ACTIONS(3270), - [anon_sym_package] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3268), - [anon_sym_default] = ACTIONS(3268), - [anon_sym_cast] = ACTIONS(3268), - [anon_sym_DOLLARtype] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_untyped] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_this] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_AT_COLON] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_catch] = ACTIONS(3268), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_LT_LT] = ACTIONS(3270), - [anon_sym_GT_GT] = ACTIONS(3268), - [anon_sym_GT_GT_GT] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_PIPE] = ACTIONS(3268), - [anon_sym_CARET] = ACTIONS(3270), - [anon_sym_AMP_AMP] = ACTIONS(3270), - [anon_sym_PIPE_PIPE] = ACTIONS(3270), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3268), - [anon_sym_GT_EQ] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3270), - [anon_sym_QMARK_QMARK] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3268), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_macro] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_extern] = ACTIONS(3268), - [anon_sym_inline] = ACTIONS(3268), - [anon_sym_overload] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_final] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), - [anon_sym_typedef] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [aux_sym_integer_token1] = ACTIONS(3268), - [aux_sym_integer_token2] = ACTIONS(3270), - [aux_sym_float_token1] = ACTIONS(3268), - [aux_sym_float_token2] = ACTIONS(3270), - [anon_sym_true] = ACTIONS(3268), - [anon_sym_false] = ACTIONS(3268), - [aux_sym_string_token1] = ACTIONS(3270), - [aux_sym_string_token3] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3270), + [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(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [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] = { - [sym_identifier] = ACTIONS(3276), - [anon_sym_POUND] = ACTIONS(3278), - [anon_sym_package] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_cast] = ACTIONS(3276), - [anon_sym_DOLLARtype] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_untyped] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_AT_COLON] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_catch] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_LT_LT] = ACTIONS(3278), - [anon_sym_GT_GT] = ACTIONS(3276), - [anon_sym_GT_GT_GT] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_PIPE] = ACTIONS(3276), - [anon_sym_CARET] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_PIPE_PIPE] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_LT_EQ] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_GT_EQ] = ACTIONS(3278), - [anon_sym_EQ_GT] = ACTIONS(3278), - [anon_sym_QMARK_QMARK] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_macro] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_overload] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [aux_sym_integer_token1] = ACTIONS(3276), - [aux_sym_integer_token2] = ACTIONS(3278), - [aux_sym_float_token1] = ACTIONS(3276), - [aux_sym_float_token2] = ACTIONS(3278), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [aux_sym_string_token1] = ACTIONS(3278), - [aux_sym_string_token3] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3278), + [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] = { - [sym_identifier] = ACTIONS(3280), - [anon_sym_POUND] = ACTIONS(3282), - [anon_sym_package] = ACTIONS(3280), - [anon_sym_import] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_cast] = ACTIONS(3280), - [anon_sym_DOLLARtype] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_untyped] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_this] = ACTIONS(3280), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_AT_COLON] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_catch] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_PERCENT] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_LT_LT] = ACTIONS(3282), - [anon_sym_GT_GT] = ACTIONS(3280), - [anon_sym_GT_GT_GT] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_PIPE] = ACTIONS(3280), - [anon_sym_CARET] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_PIPE_PIPE] = ACTIONS(3282), - [anon_sym_EQ_EQ] = ACTIONS(3282), - [anon_sym_BANG_EQ] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3282), - [anon_sym_GT] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3282), - [anon_sym_EQ_GT] = ACTIONS(3282), - [anon_sym_QMARK_QMARK] = ACTIONS(3282), - [anon_sym_EQ] = ACTIONS(3280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_macro] = ACTIONS(3280), - [anon_sym_abstract] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym_overload] = ACTIONS(3280), - [anon_sym_override] = ACTIONS(3280), - [anon_sym_final] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_interface] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_var] = ACTIONS(3280), - [aux_sym_integer_token1] = ACTIONS(3280), - [aux_sym_integer_token2] = ACTIONS(3282), - [aux_sym_float_token1] = ACTIONS(3280), - [aux_sym_float_token2] = ACTIONS(3282), - [anon_sym_true] = ACTIONS(3280), - [anon_sym_false] = ACTIONS(3280), - [aux_sym_string_token1] = ACTIONS(3282), - [aux_sym_string_token3] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3282), + [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(1452), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_this] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [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(1452), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_interface] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_function] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1452), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1452), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1448), + [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] = { - [sym_identifier] = ACTIONS(3284), - [anon_sym_POUND] = ACTIONS(3286), - [anon_sym_package] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_cast] = ACTIONS(3284), - [anon_sym_DOLLARtype] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_untyped] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_AT_COLON] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_catch] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_PERCENT] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_LT_LT] = ACTIONS(3286), - [anon_sym_GT_GT] = ACTIONS(3284), - [anon_sym_GT_GT_GT] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_PIPE] = ACTIONS(3284), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_EQ_EQ] = ACTIONS(3286), - [anon_sym_BANG_EQ] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_LT_EQ] = ACTIONS(3286), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_GT_EQ] = ACTIONS(3286), - [anon_sym_EQ_GT] = ACTIONS(3286), - [anon_sym_QMARK_QMARK] = ACTIONS(3286), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_macro] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_overload] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [aux_sym_integer_token1] = ACTIONS(3284), - [aux_sym_integer_token2] = ACTIONS(3286), - [aux_sym_float_token1] = ACTIONS(3284), - [aux_sym_float_token2] = ACTIONS(3286), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [aux_sym_string_token1] = ACTIONS(3286), - [aux_sym_string_token3] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3286), + [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] = { - [sym_identifier] = ACTIONS(3288), - [anon_sym_POUND] = ACTIONS(3290), - [anon_sym_package] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_cast] = ACTIONS(3288), - [anon_sym_DOLLARtype] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_untyped] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_AT_COLON] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_catch] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_PERCENT] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_LT_LT] = ACTIONS(3290), - [anon_sym_GT_GT] = ACTIONS(3288), - [anon_sym_GT_GT_GT] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_PIPE] = ACTIONS(3288), - [anon_sym_CARET] = ACTIONS(3290), - [anon_sym_AMP_AMP] = ACTIONS(3290), - [anon_sym_PIPE_PIPE] = ACTIONS(3290), - [anon_sym_EQ_EQ] = ACTIONS(3290), - [anon_sym_BANG_EQ] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3290), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3290), - [anon_sym_EQ_GT] = ACTIONS(3290), - [anon_sym_QMARK_QMARK] = ACTIONS(3290), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_macro] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_overload] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [aux_sym_integer_token1] = ACTIONS(3288), - [aux_sym_integer_token2] = ACTIONS(3290), - [aux_sym_float_token1] = ACTIONS(3288), - [aux_sym_float_token2] = ACTIONS(3290), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [aux_sym_string_token1] = ACTIONS(3290), - [aux_sym_string_token3] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3290), + [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] = { - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [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(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] = { - [sym_identifier] = ACTIONS(3296), - [anon_sym_POUND] = ACTIONS(3298), - [anon_sym_package] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_cast] = ACTIONS(3296), - [anon_sym_DOLLARtype] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_untyped] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_this] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_AT_COLON] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_catch] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_LT_LT] = ACTIONS(3298), - [anon_sym_GT_GT] = ACTIONS(3296), - [anon_sym_GT_GT_GT] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_PIPE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_EQ_GT] = ACTIONS(3298), - [anon_sym_QMARK_QMARK] = ACTIONS(3298), - [anon_sym_EQ] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), - [anon_sym_macro] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym_overload] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_final] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [aux_sym_integer_token1] = ACTIONS(3296), - [aux_sym_integer_token2] = ACTIONS(3298), - [aux_sym_float_token1] = ACTIONS(3296), - [aux_sym_float_token2] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3296), - [anon_sym_false] = ACTIONS(3296), - [aux_sym_string_token1] = ACTIONS(3298), - [aux_sym_string_token3] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3298), + [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] = { - [sym_identifier] = ACTIONS(3300), - [anon_sym_POUND] = ACTIONS(3302), - [anon_sym_package] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_cast] = ACTIONS(3300), - [anon_sym_DOLLARtype] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_untyped] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_this] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3300), - [anon_sym_AT_COLON] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_catch] = ACTIONS(3300), - [anon_sym_else] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [anon_sym_PERCENT] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_LT_LT] = ACTIONS(3302), - [anon_sym_GT_GT] = ACTIONS(3300), - [anon_sym_GT_GT_GT] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP_AMP] = ACTIONS(3302), - [anon_sym_PIPE_PIPE] = ACTIONS(3302), - [anon_sym_EQ_EQ] = ACTIONS(3302), - [anon_sym_BANG_EQ] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_LT_EQ] = ACTIONS(3302), - [anon_sym_GT] = ACTIONS(3300), - [anon_sym_GT_EQ] = ACTIONS(3302), - [anon_sym_EQ_GT] = ACTIONS(3302), - [anon_sym_QMARK_QMARK] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(3300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3302), - [anon_sym_null] = ACTIONS(3300), - [anon_sym_macro] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_extern] = ACTIONS(3300), - [anon_sym_inline] = ACTIONS(3300), - [anon_sym_overload] = ACTIONS(3300), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_final] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_typedef] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [aux_sym_integer_token1] = ACTIONS(3300), - [aux_sym_integer_token2] = ACTIONS(3302), - [aux_sym_float_token1] = ACTIONS(3300), - [aux_sym_float_token2] = ACTIONS(3302), - [anon_sym_true] = ACTIONS(3300), - [anon_sym_false] = ACTIONS(3300), - [aux_sym_string_token1] = ACTIONS(3302), - [aux_sym_string_token3] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3302), + [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] = { - [sym_identifier] = ACTIONS(3304), - [anon_sym_POUND] = ACTIONS(3306), - [anon_sym_package] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_cast] = ACTIONS(3304), - [anon_sym_DOLLARtype] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_untyped] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_this] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_AT_COLON] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_catch] = ACTIONS(3304), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_PERCENT] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_LT_LT] = ACTIONS(3306), - [anon_sym_GT_GT] = ACTIONS(3304), - [anon_sym_GT_GT_GT] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_PIPE] = ACTIONS(3304), - [anon_sym_CARET] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_PIPE_PIPE] = ACTIONS(3306), - [anon_sym_EQ_EQ] = ACTIONS(3306), - [anon_sym_BANG_EQ] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_LT_EQ] = ACTIONS(3306), - [anon_sym_GT] = ACTIONS(3304), - [anon_sym_GT_EQ] = ACTIONS(3306), - [anon_sym_EQ_GT] = ACTIONS(3306), - [anon_sym_QMARK_QMARK] = ACTIONS(3306), - [anon_sym_EQ] = ACTIONS(3304), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3306), - [anon_sym_null] = ACTIONS(3304), - [anon_sym_macro] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym_overload] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_final] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [aux_sym_integer_token1] = ACTIONS(3304), - [aux_sym_integer_token2] = ACTIONS(3306), - [aux_sym_float_token1] = ACTIONS(3304), - [aux_sym_float_token2] = ACTIONS(3306), - [anon_sym_true] = ACTIONS(3304), - [anon_sym_false] = ACTIONS(3304), - [aux_sym_string_token1] = ACTIONS(3306), - [aux_sym_string_token3] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3306), + [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(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(3310), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_catch] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_do] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [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(1780), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1778), - [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_enum] = 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(1778), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [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] = { - [sym_else_clause] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_catch] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3314), + [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] = { - [sym_identifier] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2656), - [anon_sym_package] = ACTIONS(2654), - [anon_sym_import] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2656), - [anon_sym_using] = ACTIONS(2654), - [anon_sym_throw] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_switch] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_case] = ACTIONS(2654), - [anon_sym_default] = ACTIONS(2654), - [anon_sym_cast] = ACTIONS(2654), - [anon_sym_DOLLARtype] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_untyped] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2656), - [anon_sym_this] = ACTIONS(2654), - [anon_sym_AT] = ACTIONS(2654), - [anon_sym_AT_COLON] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_catch] = ACTIONS(2654), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS_PLUS] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2656), - [anon_sym_PERCENT] = ACTIONS(2656), - [anon_sym_SLASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_LT_LT] = ACTIONS(2656), - [anon_sym_GT_GT] = ACTIONS(2654), - [anon_sym_GT_GT_GT] = ACTIONS(2656), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_CARET] = ACTIONS(2656), - [anon_sym_AMP_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2656), - [anon_sym_EQ_EQ] = ACTIONS(2656), - [anon_sym_BANG_EQ] = ACTIONS(2656), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_LT_EQ] = ACTIONS(2656), - [anon_sym_GT] = ACTIONS(2654), - [anon_sym_GT_EQ] = ACTIONS(2656), - [anon_sym_EQ_GT] = ACTIONS(2656), - [anon_sym_QMARK_QMARK] = ACTIONS(2656), - [anon_sym_EQ] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), - [anon_sym_null] = ACTIONS(2654), - [anon_sym_macro] = ACTIONS(2654), - [anon_sym_abstract] = ACTIONS(2654), - [anon_sym_static] = ACTIONS(2654), - [anon_sym_public] = ACTIONS(2654), - [anon_sym_private] = ACTIONS(2654), - [anon_sym_extern] = ACTIONS(2654), - [anon_sym_inline] = ACTIONS(2654), - [anon_sym_overload] = ACTIONS(2654), - [anon_sym_override] = ACTIONS(2654), - [anon_sym_final] = ACTIONS(2654), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_interface] = ACTIONS(2654), - [anon_sym_enum] = ACTIONS(2654), - [anon_sym_typedef] = ACTIONS(2654), - [anon_sym_function] = ACTIONS(2654), - [anon_sym_var] = ACTIONS(2654), - [aux_sym_integer_token1] = ACTIONS(2654), - [aux_sym_integer_token2] = ACTIONS(2656), - [aux_sym_float_token1] = ACTIONS(2654), - [aux_sym_float_token2] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [aux_sym_string_token1] = ACTIONS(2656), - [aux_sym_string_token3] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2656), + [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] = { - [sym_identifier] = ACTIONS(3316), - [anon_sym_POUND] = ACTIONS(3318), - [anon_sym_package] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_throw] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_cast] = ACTIONS(3316), - [anon_sym_DOLLARtype] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_untyped] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_this] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_AT_COLON] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_catch] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_PERCENT] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_LT_LT] = ACTIONS(3318), - [anon_sym_GT_GT] = ACTIONS(3316), - [anon_sym_GT_GT_GT] = ACTIONS(3318), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_PIPE] = ACTIONS(3316), - [anon_sym_CARET] = ACTIONS(3318), - [anon_sym_AMP_AMP] = ACTIONS(3318), - [anon_sym_PIPE_PIPE] = ACTIONS(3318), - [anon_sym_EQ_EQ] = ACTIONS(3318), - [anon_sym_BANG_EQ] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3318), - [anon_sym_GT] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3318), - [anon_sym_EQ_GT] = ACTIONS(3318), - [anon_sym_QMARK_QMARK] = ACTIONS(3318), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_macro] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3316), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_extern] = ACTIONS(3316), - [anon_sym_inline] = ACTIONS(3316), - [anon_sym_overload] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), - [anon_sym_final] = ACTIONS(3316), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_interface] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [anon_sym_typedef] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_var] = ACTIONS(3316), - [aux_sym_integer_token1] = ACTIONS(3316), - [aux_sym_integer_token2] = ACTIONS(3318), - [aux_sym_float_token1] = ACTIONS(3316), - [aux_sym_float_token2] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3316), - [anon_sym_false] = ACTIONS(3316), - [aux_sym_string_token1] = ACTIONS(3318), - [aux_sym_string_token3] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3318), + [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] = { - [sym_identifier] = ACTIONS(3320), - [anon_sym_POUND] = ACTIONS(3322), - [anon_sym_package] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_STAR] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3320), - [anon_sym_default] = ACTIONS(3320), - [anon_sym_cast] = ACTIONS(3320), - [anon_sym_DOLLARtype] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_untyped] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_this] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_AT_COLON] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_catch] = ACTIONS(3320), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [anon_sym_PERCENT] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_LT_LT] = ACTIONS(3322), - [anon_sym_GT_GT] = ACTIONS(3320), - [anon_sym_GT_GT_GT] = ACTIONS(3322), - [anon_sym_AMP] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(3320), - [anon_sym_CARET] = ACTIONS(3322), - [anon_sym_AMP_AMP] = ACTIONS(3322), - [anon_sym_PIPE_PIPE] = ACTIONS(3322), - [anon_sym_EQ_EQ] = ACTIONS(3322), - [anon_sym_BANG_EQ] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_LT_EQ] = ACTIONS(3322), - [anon_sym_GT] = ACTIONS(3320), - [anon_sym_GT_EQ] = ACTIONS(3322), - [anon_sym_EQ_GT] = ACTIONS(3322), - [anon_sym_QMARK_QMARK] = ACTIONS(3322), - [anon_sym_EQ] = ACTIONS(3320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), - [anon_sym_null] = ACTIONS(3320), - [anon_sym_macro] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_extern] = ACTIONS(3320), - [anon_sym_inline] = ACTIONS(3320), - [anon_sym_overload] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_final] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), - [anon_sym_typedef] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [aux_sym_integer_token1] = ACTIONS(3320), - [aux_sym_integer_token2] = ACTIONS(3322), - [aux_sym_float_token1] = ACTIONS(3320), - [aux_sym_float_token2] = ACTIONS(3322), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym_string_token1] = ACTIONS(3322), - [aux_sym_string_token3] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3322), + [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] = { - [sym_identifier] = ACTIONS(3324), - [anon_sym_POUND] = ACTIONS(3326), - [anon_sym_package] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_cast] = ACTIONS(3324), - [anon_sym_DOLLARtype] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_untyped] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_AT_COLON] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_catch] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_LT_LT] = ACTIONS(3326), - [anon_sym_GT_GT] = ACTIONS(3324), - [anon_sym_GT_GT_GT] = ACTIONS(3326), - [anon_sym_AMP] = ACTIONS(3324), - [anon_sym_PIPE] = ACTIONS(3324), - [anon_sym_CARET] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_LT_EQ] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3324), - [anon_sym_GT_EQ] = ACTIONS(3326), - [anon_sym_EQ_GT] = ACTIONS(3326), - [anon_sym_QMARK_QMARK] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), - [anon_sym_null] = ACTIONS(3324), - [anon_sym_macro] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(3324), - [anon_sym_inline] = ACTIONS(3324), - [anon_sym_overload] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_final] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [anon_sym_typedef] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [aux_sym_integer_token1] = ACTIONS(3324), - [aux_sym_integer_token2] = ACTIONS(3326), - [aux_sym_float_token1] = ACTIONS(3324), - [aux_sym_float_token2] = ACTIONS(3326), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [aux_sym_string_token1] = ACTIONS(3326), - [aux_sym_string_token3] = ACTIONS(3326), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3326), + [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] = { - [sym_identifier] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3330), - [anon_sym_package] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_cast] = ACTIONS(3328), - [anon_sym_DOLLARtype] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_untyped] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_this] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_AT_COLON] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_catch] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_LT_LT] = ACTIONS(3330), - [anon_sym_GT_GT] = ACTIONS(3328), - [anon_sym_GT_GT_GT] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT] = ACTIONS(3328), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_EQ_GT] = ACTIONS(3330), - [anon_sym_QMARK_QMARK] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3328), - [anon_sym_macro] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym_overload] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_final] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [aux_sym_integer_token1] = ACTIONS(3328), - [aux_sym_integer_token2] = ACTIONS(3330), - [aux_sym_float_token1] = ACTIONS(3328), - [aux_sym_float_token2] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3328), - [anon_sym_false] = ACTIONS(3328), - [aux_sym_string_token1] = ACTIONS(3330), - [aux_sym_string_token3] = ACTIONS(3330), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3330), + [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] = { - [sym_identifier] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_package] = ACTIONS(1550), - [anon_sym_import] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1548), - [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_DOLLARtype] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1550), - [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_AT] = ACTIONS(1550), - [anon_sym_AT_COLON] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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_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] = { - [sym_identifier] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(3334), - [anon_sym_package] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_cast] = ACTIONS(3332), - [anon_sym_DOLLARtype] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_untyped] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_this] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_AT_COLON] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_catch] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_PERCENT] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_LT_LT] = ACTIONS(3334), - [anon_sym_GT_GT] = ACTIONS(3332), - [anon_sym_GT_GT_GT] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3334), - [anon_sym_PIPE_PIPE] = ACTIONS(3334), - [anon_sym_EQ_EQ] = ACTIONS(3334), - [anon_sym_BANG_EQ] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_LT_EQ] = ACTIONS(3334), - [anon_sym_GT] = ACTIONS(3332), - [anon_sym_GT_EQ] = ACTIONS(3334), - [anon_sym_EQ_GT] = ACTIONS(3334), - [anon_sym_QMARK_QMARK] = ACTIONS(3334), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), - [anon_sym_null] = ACTIONS(3332), - [anon_sym_macro] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_extern] = ACTIONS(3332), - [anon_sym_inline] = ACTIONS(3332), - [anon_sym_overload] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_final] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [aux_sym_integer_token1] = ACTIONS(3332), - [aux_sym_integer_token2] = ACTIONS(3334), - [aux_sym_float_token1] = ACTIONS(3332), - [aux_sym_float_token2] = ACTIONS(3334), - [anon_sym_true] = ACTIONS(3332), - [anon_sym_false] = ACTIONS(3332), - [aux_sym_string_token1] = ACTIONS(3334), - [aux_sym_string_token3] = ACTIONS(3334), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3334), + [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] = { - [sym_identifier] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3338), - [anon_sym_package] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_cast] = ACTIONS(3336), - [anon_sym_DOLLARtype] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_untyped] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_this] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_AT_COLON] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_catch] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PERCENT] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3338), - [anon_sym_GT_GT] = ACTIONS(3336), - [anon_sym_GT_GT_GT] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_PIPE_PIPE] = ACTIONS(3338), - [anon_sym_EQ_EQ] = ACTIONS(3338), - [anon_sym_BANG_EQ] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_LT_EQ] = ACTIONS(3338), - [anon_sym_GT] = ACTIONS(3336), - [anon_sym_GT_EQ] = ACTIONS(3338), - [anon_sym_EQ_GT] = ACTIONS(3338), - [anon_sym_QMARK_QMARK] = ACTIONS(3338), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), - [anon_sym_null] = ACTIONS(3336), - [anon_sym_macro] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym_overload] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_final] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [aux_sym_integer_token1] = ACTIONS(3336), - [aux_sym_integer_token2] = ACTIONS(3338), - [aux_sym_float_token1] = ACTIONS(3336), - [aux_sym_float_token2] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3336), - [anon_sym_false] = ACTIONS(3336), - [aux_sym_string_token1] = ACTIONS(3338), - [aux_sym_string_token3] = ACTIONS(3338), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3338), + [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(3340), - [anon_sym_POUND] = ACTIONS(3342), - [anon_sym_package] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_cast] = ACTIONS(3340), - [anon_sym_DOLLARtype] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_untyped] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_AT_COLON] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_catch] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3342), - [anon_sym_GT_GT] = ACTIONS(3340), - [anon_sym_GT_GT_GT] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_EQ_GT] = ACTIONS(3342), - [anon_sym_QMARK_QMARK] = ACTIONS(3342), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_macro] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_extern] = ACTIONS(3340), - [anon_sym_inline] = ACTIONS(3340), - [anon_sym_overload] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_final] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_typedef] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [aux_sym_integer_token1] = ACTIONS(3340), - [aux_sym_integer_token2] = ACTIONS(3342), - [aux_sym_float_token1] = ACTIONS(3340), - [aux_sym_float_token2] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym_string_token1] = ACTIONS(3342), - [aux_sym_string_token3] = ACTIONS(3342), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3342), + [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] = { - [sym_identifier] = ACTIONS(3344), - [anon_sym_POUND] = ACTIONS(3346), - [anon_sym_package] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3344), - [anon_sym_cast] = ACTIONS(3344), - [anon_sym_DOLLARtype] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_untyped] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_AT_COLON] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_catch] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(3344), - [anon_sym_GT_GT_GT] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_CARET] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_EQ_GT] = ACTIONS(3346), - [anon_sym_QMARK_QMARK] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_macro] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_extern] = ACTIONS(3344), - [anon_sym_inline] = ACTIONS(3344), - [anon_sym_overload] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_final] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), - [anon_sym_typedef] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [aux_sym_integer_token1] = ACTIONS(3344), - [aux_sym_integer_token2] = ACTIONS(3346), - [aux_sym_float_token1] = ACTIONS(3344), - [aux_sym_float_token2] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym_string_token1] = ACTIONS(3346), - [aux_sym_string_token3] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3346), + [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] = { - [sym_else_clause] = STATE(606), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_catch] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3350), - [sym__closing_brace_marker] = ACTIONS(2608), + [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] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_cast] = ACTIONS(3354), - [anon_sym_DOLLARtype] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_untyped] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_this] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_AT_COLON] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_catch] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_EQ_GT] = ACTIONS(3352), - [anon_sym_QMARK_QMARK] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3354), - [anon_sym_macro] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym_overload] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_final] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [aux_sym_integer_token1] = ACTIONS(3354), - [aux_sym_integer_token2] = ACTIONS(3352), - [aux_sym_float_token1] = ACTIONS(3354), - [aux_sym_float_token2] = ACTIONS(3352), - [anon_sym_true] = ACTIONS(3354), - [anon_sym_false] = ACTIONS(3354), - [aux_sym_string_token1] = ACTIONS(3352), - [aux_sym_string_token3] = ACTIONS(3352), + [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] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3358), - [anon_sym_package] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_cast] = ACTIONS(3360), - [anon_sym_DOLLARtype] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_untyped] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_AT_COLON] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_catch] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_LT_LT] = ACTIONS(3358), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_GT_GT_GT] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_PIPE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_PIPE_PIPE] = ACTIONS(3358), - [anon_sym_EQ_EQ] = ACTIONS(3358), - [anon_sym_BANG_EQ] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_LT_EQ] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_GT_EQ] = ACTIONS(3358), - [anon_sym_EQ_GT] = ACTIONS(3358), - [anon_sym_QMARK_QMARK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_macro] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3360), - [anon_sym_inline] = ACTIONS(3360), - [anon_sym_overload] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_final] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_typedef] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [aux_sym_integer_token1] = ACTIONS(3360), - [aux_sym_integer_token2] = ACTIONS(3358), - [aux_sym_float_token1] = ACTIONS(3360), - [aux_sym_float_token2] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym_string_token1] = ACTIONS(3358), - [aux_sym_string_token3] = ACTIONS(3358), + [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] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3362), - [sym_identifier] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(3362), - [anon_sym_package] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_cast] = ACTIONS(3364), - [anon_sym_DOLLARtype] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_untyped] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_this] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_AT_COLON] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_catch] = ACTIONS(3366), - [anon_sym_else] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [anon_sym_PERCENT] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_LT_LT] = ACTIONS(3362), - [anon_sym_GT_GT] = ACTIONS(3364), - [anon_sym_GT_GT_GT] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_PIPE] = ACTIONS(3364), - [anon_sym_CARET] = ACTIONS(3362), - [anon_sym_AMP_AMP] = ACTIONS(3362), - [anon_sym_PIPE_PIPE] = ACTIONS(3362), - [anon_sym_EQ_EQ] = ACTIONS(3362), - [anon_sym_BANG_EQ] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_LT_EQ] = ACTIONS(3362), - [anon_sym_GT] = ACTIONS(3364), - [anon_sym_GT_EQ] = ACTIONS(3362), - [anon_sym_EQ_GT] = ACTIONS(3362), - [anon_sym_QMARK_QMARK] = ACTIONS(3362), - [anon_sym_EQ] = ACTIONS(3364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_macro] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_extern] = ACTIONS(3364), - [anon_sym_inline] = ACTIONS(3364), - [anon_sym_overload] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_final] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), - [anon_sym_typedef] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [aux_sym_integer_token1] = ACTIONS(3364), - [aux_sym_integer_token2] = ACTIONS(3362), - [aux_sym_float_token1] = ACTIONS(3364), - [aux_sym_float_token2] = ACTIONS(3362), - [anon_sym_true] = ACTIONS(3364), - [anon_sym_false] = ACTIONS(3364), - [aux_sym_string_token1] = ACTIONS(3362), - [aux_sym_string_token3] = ACTIONS(3362), + [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] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_cast] = ACTIONS(3371), - [anon_sym_DOLLARtype] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_untyped] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_AT_COLON] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3369), - [anon_sym_QMARK_QMARK] = ACTIONS(3369), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_macro] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_inline] = ACTIONS(3371), - [anon_sym_overload] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_final] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_typedef] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [aux_sym_integer_token1] = ACTIONS(3371), - [aux_sym_integer_token2] = ACTIONS(3369), - [aux_sym_float_token1] = ACTIONS(3371), - [aux_sym_float_token2] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3369), - [aux_sym_string_token3] = ACTIONS(3369), - [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] = { - [sym_catch_statement] = STATE(601), - [aux_sym_try_statement_repeat1] = STATE(601), - [sym_identifier] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_cast] = ACTIONS(3354), - [anon_sym_DOLLARtype] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_untyped] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_this] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_AT_COLON] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_catch] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_EQ_GT] = ACTIONS(3352), - [anon_sym_QMARK_QMARK] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3354), - [anon_sym_macro] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym_overload] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_final] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [aux_sym_integer_token1] = ACTIONS(3354), - [aux_sym_integer_token2] = ACTIONS(3352), - [aux_sym_float_token1] = ACTIONS(3354), - [aux_sym_float_token2] = ACTIONS(3352), - [anon_sym_true] = ACTIONS(3354), - [anon_sym_false] = ACTIONS(3354), - [aux_sym_string_token1] = ACTIONS(3352), - [aux_sym_string_token3] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3352), + [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] = { - [sym_catch_statement] = STATE(601), - [aux_sym_try_statement_repeat1] = STATE(601), - [sym_identifier] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3358), - [anon_sym_package] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_cast] = ACTIONS(3360), - [anon_sym_DOLLARtype] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_untyped] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_AT_COLON] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_catch] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_LT_LT] = ACTIONS(3358), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_GT_GT_GT] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_PIPE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_PIPE_PIPE] = ACTIONS(3358), - [anon_sym_EQ_EQ] = ACTIONS(3358), - [anon_sym_BANG_EQ] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_LT_EQ] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_GT_EQ] = ACTIONS(3358), - [anon_sym_EQ_GT] = ACTIONS(3358), - [anon_sym_QMARK_QMARK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_macro] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3360), - [anon_sym_inline] = ACTIONS(3360), - [anon_sym_overload] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_final] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_typedef] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [aux_sym_integer_token1] = ACTIONS(3360), - [aux_sym_integer_token2] = ACTIONS(3358), - [aux_sym_float_token1] = ACTIONS(3360), - [aux_sym_float_token2] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym_string_token1] = ACTIONS(3358), - [aux_sym_string_token3] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3358), + [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] = { - [sym_catch_statement] = STATE(601), - [aux_sym_try_statement_repeat1] = STATE(601), - [sym_identifier] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(3362), - [anon_sym_package] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_cast] = ACTIONS(3364), - [anon_sym_DOLLARtype] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_untyped] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_this] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_AT_COLON] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_catch] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [anon_sym_PERCENT] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_LT_LT] = ACTIONS(3362), - [anon_sym_GT_GT] = ACTIONS(3364), - [anon_sym_GT_GT_GT] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_PIPE] = ACTIONS(3364), - [anon_sym_CARET] = ACTIONS(3362), - [anon_sym_AMP_AMP] = ACTIONS(3362), - [anon_sym_PIPE_PIPE] = ACTIONS(3362), - [anon_sym_EQ_EQ] = ACTIONS(3362), - [anon_sym_BANG_EQ] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_LT_EQ] = ACTIONS(3362), - [anon_sym_GT] = ACTIONS(3364), - [anon_sym_GT_EQ] = ACTIONS(3362), - [anon_sym_EQ_GT] = ACTIONS(3362), - [anon_sym_QMARK_QMARK] = ACTIONS(3362), - [anon_sym_EQ] = ACTIONS(3364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_macro] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_extern] = ACTIONS(3364), - [anon_sym_inline] = ACTIONS(3364), - [anon_sym_overload] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_final] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), - [anon_sym_typedef] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [aux_sym_integer_token1] = ACTIONS(3364), - [aux_sym_integer_token2] = ACTIONS(3362), - [aux_sym_float_token1] = ACTIONS(3364), - [aux_sym_float_token2] = ACTIONS(3362), - [anon_sym_true] = ACTIONS(3364), - [anon_sym_false] = ACTIONS(3364), - [aux_sym_string_token1] = ACTIONS(3362), - [aux_sym_string_token3] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3362), + [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] = { - [sym_catch_statement] = STATE(601), - [aux_sym_try_statement_repeat1] = STATE(601), - [sym_identifier] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_cast] = ACTIONS(3371), - [anon_sym_DOLLARtype] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_untyped] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_AT_COLON] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3369), - [anon_sym_QMARK_QMARK] = ACTIONS(3369), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_macro] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_inline] = ACTIONS(3371), - [anon_sym_overload] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_final] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_typedef] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [aux_sym_integer_token1] = ACTIONS(3371), - [aux_sym_integer_token2] = ACTIONS(3369), - [aux_sym_float_token1] = ACTIONS(3371), - [aux_sym_float_token2] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3369), - [aux_sym_string_token3] = ACTIONS(3369), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3369), + [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] = { - [sym_catch_statement] = STATE(601), - [aux_sym_try_statement_repeat1] = STATE(601), - [sym_identifier] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_cast] = ACTIONS(3354), - [anon_sym_DOLLARtype] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_untyped] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_this] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_AT_COLON] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_catch] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_EQ_GT] = ACTIONS(3352), - [anon_sym_QMARK_QMARK] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3354), - [anon_sym_macro] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym_overload] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_final] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [aux_sym_integer_token1] = ACTIONS(3354), - [aux_sym_integer_token2] = ACTIONS(3352), - [aux_sym_float_token1] = ACTIONS(3354), - [aux_sym_float_token2] = ACTIONS(3352), - [anon_sym_true] = ACTIONS(3354), - [anon_sym_false] = ACTIONS(3354), - [aux_sym_string_token1] = ACTIONS(3352), - [aux_sym_string_token3] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3352), + [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] = { - [sym_catch_statement] = STATE(601), - [aux_sym_try_statement_repeat1] = STATE(601), - [sym_identifier] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3358), - [anon_sym_package] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_cast] = ACTIONS(3360), - [anon_sym_DOLLARtype] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_untyped] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_AT_COLON] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_catch] = ACTIONS(3360), - [anon_sym_else] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_LT_LT] = ACTIONS(3358), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_GT_GT_GT] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_PIPE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_PIPE_PIPE] = ACTIONS(3358), - [anon_sym_EQ_EQ] = ACTIONS(3358), - [anon_sym_BANG_EQ] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_LT_EQ] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_GT_EQ] = ACTIONS(3358), - [anon_sym_EQ_GT] = ACTIONS(3358), - [anon_sym_QMARK_QMARK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_macro] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3360), - [anon_sym_inline] = ACTIONS(3360), - [anon_sym_overload] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_final] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_typedef] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [aux_sym_integer_token1] = ACTIONS(3360), - [aux_sym_integer_token2] = ACTIONS(3358), - [aux_sym_float_token1] = ACTIONS(3360), - [aux_sym_float_token2] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym_string_token1] = ACTIONS(3358), - [aux_sym_string_token3] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3358), + [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] = { - [sym_catch_statement] = STATE(601), - [aux_sym_try_statement_repeat1] = STATE(601), - [sym_identifier] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_cast] = ACTIONS(3371), - [anon_sym_DOLLARtype] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_untyped] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_AT_COLON] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3369), - [anon_sym_QMARK_QMARK] = ACTIONS(3369), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_macro] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_inline] = ACTIONS(3371), - [anon_sym_overload] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_final] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_typedef] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [aux_sym_integer_token1] = ACTIONS(3371), - [aux_sym_integer_token2] = ACTIONS(3369), - [aux_sym_float_token1] = ACTIONS(3371), - [aux_sym_float_token2] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3369), - [aux_sym_string_token3] = ACTIONS(3369), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3369), + [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] = { - [sym_identifier] = ACTIONS(3378), - [anon_sym_POUND] = ACTIONS(3380), - [anon_sym_package] = ACTIONS(3378), - [anon_sym_import] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3378), - [anon_sym_throw] = ACTIONS(3378), - [anon_sym_LPAREN] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3378), - [anon_sym_LBRACE] = ACTIONS(3380), - [anon_sym_case] = ACTIONS(3378), - [anon_sym_default] = ACTIONS(3378), - [anon_sym_cast] = ACTIONS(3378), - [anon_sym_DOLLARtype] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3378), - [anon_sym_return] = ACTIONS(3378), - [anon_sym_untyped] = ACTIONS(3378), - [anon_sym_break] = ACTIONS(3378), - [anon_sym_continue] = ACTIONS(3378), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_this] = ACTIONS(3378), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_AT_COLON] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3378), - [anon_sym_catch] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3378), - [anon_sym_if] = ACTIONS(3378), - [anon_sym_while] = ACTIONS(3378), - [anon_sym_do] = ACTIONS(3378), - [anon_sym_new] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_PLUS_PLUS] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3380), - [anon_sym_PERCENT] = ACTIONS(3380), - [anon_sym_SLASH] = ACTIONS(3378), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_LT_LT] = ACTIONS(3380), - [anon_sym_GT_GT] = ACTIONS(3378), - [anon_sym_GT_GT_GT] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3378), - [anon_sym_PIPE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP_AMP] = ACTIONS(3380), - [anon_sym_PIPE_PIPE] = ACTIONS(3380), - [anon_sym_EQ_EQ] = ACTIONS(3380), - [anon_sym_BANG_EQ] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_LT_EQ] = ACTIONS(3380), - [anon_sym_GT] = ACTIONS(3378), - [anon_sym_GT_EQ] = ACTIONS(3380), - [anon_sym_EQ_GT] = ACTIONS(3380), - [anon_sym_QMARK_QMARK] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3378), - [anon_sym_macro] = ACTIONS(3378), - [anon_sym_abstract] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3378), - [anon_sym_public] = ACTIONS(3378), - [anon_sym_private] = ACTIONS(3378), - [anon_sym_extern] = ACTIONS(3378), - [anon_sym_inline] = ACTIONS(3378), - [anon_sym_overload] = ACTIONS(3378), - [anon_sym_override] = ACTIONS(3378), - [anon_sym_final] = ACTIONS(3378), - [anon_sym_class] = ACTIONS(3378), - [anon_sym_interface] = ACTIONS(3378), - [anon_sym_enum] = ACTIONS(3378), - [anon_sym_typedef] = ACTIONS(3378), - [anon_sym_function] = ACTIONS(3378), - [anon_sym_var] = ACTIONS(3378), - [aux_sym_integer_token1] = ACTIONS(3378), - [aux_sym_integer_token2] = ACTIONS(3380), - [aux_sym_float_token1] = ACTIONS(3378), - [aux_sym_float_token2] = ACTIONS(3380), - [anon_sym_true] = ACTIONS(3378), - [anon_sym_false] = ACTIONS(3378), - [aux_sym_string_token1] = ACTIONS(3380), - [aux_sym_string_token3] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3380), + [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] = { - [sym_identifier] = ACTIONS(3382), - [anon_sym_POUND] = ACTIONS(3384), - [anon_sym_package] = ACTIONS(3382), - [anon_sym_import] = ACTIONS(3382), - [anon_sym_STAR] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3382), - [anon_sym_throw] = ACTIONS(3382), - [anon_sym_LPAREN] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3382), - [anon_sym_LBRACE] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3382), - [anon_sym_default] = ACTIONS(3382), - [anon_sym_cast] = ACTIONS(3382), - [anon_sym_DOLLARtype] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3382), - [anon_sym_return] = ACTIONS(3382), - [anon_sym_untyped] = ACTIONS(3382), - [anon_sym_break] = ACTIONS(3382), - [anon_sym_continue] = ACTIONS(3382), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_this] = ACTIONS(3382), - [anon_sym_AT] = ACTIONS(3382), - [anon_sym_AT_COLON] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3382), - [anon_sym_catch] = ACTIONS(3382), - [anon_sym_else] = ACTIONS(3382), - [anon_sym_if] = ACTIONS(3382), - [anon_sym_while] = ACTIONS(3382), - [anon_sym_do] = ACTIONS(3382), - [anon_sym_new] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3384), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3384), - [anon_sym_PERCENT] = ACTIONS(3384), - [anon_sym_SLASH] = ACTIONS(3382), - [anon_sym_PLUS] = ACTIONS(3382), - [anon_sym_LT_LT] = ACTIONS(3384), - [anon_sym_GT_GT] = ACTIONS(3382), - [anon_sym_GT_GT_GT] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(3382), - [anon_sym_PIPE] = ACTIONS(3382), - [anon_sym_CARET] = ACTIONS(3384), - [anon_sym_AMP_AMP] = ACTIONS(3384), - [anon_sym_PIPE_PIPE] = ACTIONS(3384), - [anon_sym_EQ_EQ] = ACTIONS(3384), - [anon_sym_BANG_EQ] = ACTIONS(3384), - [anon_sym_LT] = ACTIONS(3382), - [anon_sym_LT_EQ] = ACTIONS(3384), - [anon_sym_GT] = ACTIONS(3382), - [anon_sym_GT_EQ] = ACTIONS(3384), - [anon_sym_EQ_GT] = ACTIONS(3384), - [anon_sym_QMARK_QMARK] = ACTIONS(3384), - [anon_sym_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3384), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_macro] = ACTIONS(3382), - [anon_sym_abstract] = ACTIONS(3382), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_public] = ACTIONS(3382), - [anon_sym_private] = ACTIONS(3382), - [anon_sym_extern] = ACTIONS(3382), - [anon_sym_inline] = ACTIONS(3382), - [anon_sym_overload] = ACTIONS(3382), - [anon_sym_override] = ACTIONS(3382), - [anon_sym_final] = ACTIONS(3382), - [anon_sym_class] = ACTIONS(3382), - [anon_sym_interface] = ACTIONS(3382), - [anon_sym_enum] = ACTIONS(3382), - [anon_sym_typedef] = ACTIONS(3382), - [anon_sym_function] = ACTIONS(3382), - [anon_sym_var] = ACTIONS(3382), - [aux_sym_integer_token1] = ACTIONS(3382), - [aux_sym_integer_token2] = ACTIONS(3384), - [aux_sym_float_token1] = ACTIONS(3382), - [aux_sym_float_token2] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3382), - [anon_sym_false] = ACTIONS(3382), - [aux_sym_string_token1] = ACTIONS(3384), - [aux_sym_string_token3] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3384), + [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] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_cast] = ACTIONS(3354), - [anon_sym_DOLLARtype] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_untyped] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_this] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_AT_COLON] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_catch] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_EQ_GT] = ACTIONS(3352), - [anon_sym_QMARK_QMARK] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3354), - [anon_sym_macro] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym_overload] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_final] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [aux_sym_integer_token1] = ACTIONS(3354), - [aux_sym_integer_token2] = ACTIONS(3352), - [aux_sym_float_token1] = ACTIONS(3354), - [aux_sym_float_token2] = ACTIONS(3352), - [anon_sym_true] = ACTIONS(3354), - [anon_sym_false] = ACTIONS(3354), - [aux_sym_string_token1] = ACTIONS(3352), - [aux_sym_string_token3] = ACTIONS(3352), - [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] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3358), - [anon_sym_package] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_cast] = ACTIONS(3360), - [anon_sym_DOLLARtype] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_untyped] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_AT_COLON] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_catch] = ACTIONS(3360), - [anon_sym_else] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_LT_LT] = ACTIONS(3358), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_GT_GT_GT] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_PIPE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_PIPE_PIPE] = ACTIONS(3358), - [anon_sym_EQ_EQ] = ACTIONS(3358), - [anon_sym_BANG_EQ] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_LT_EQ] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_GT_EQ] = ACTIONS(3358), - [anon_sym_EQ_GT] = ACTIONS(3358), - [anon_sym_QMARK_QMARK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_macro] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3360), - [anon_sym_inline] = ACTIONS(3360), - [anon_sym_overload] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_final] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_typedef] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [aux_sym_integer_token1] = ACTIONS(3360), - [aux_sym_integer_token2] = ACTIONS(3358), - [aux_sym_float_token1] = ACTIONS(3360), - [aux_sym_float_token2] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym_string_token1] = ACTIONS(3358), - [aux_sym_string_token3] = ACTIONS(3358), + [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] = { - [sym_catch_statement] = STATE(597), - [aux_sym_try_statement_repeat1] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_cast] = ACTIONS(3371), - [anon_sym_DOLLARtype] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_untyped] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_AT_COLON] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3369), - [anon_sym_QMARK_QMARK] = ACTIONS(3369), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_macro] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_inline] = ACTIONS(3371), - [anon_sym_overload] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_final] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_typedef] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [aux_sym_integer_token1] = ACTIONS(3371), - [aux_sym_integer_token2] = ACTIONS(3369), - [aux_sym_float_token1] = ACTIONS(3371), - [aux_sym_float_token2] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3369), - [aux_sym_string_token3] = ACTIONS(3369), + [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] = { - [sym_identifier] = ACTIONS(3386), - [anon_sym_POUND] = ACTIONS(3388), - [anon_sym_package] = ACTIONS(3386), - [anon_sym_import] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3386), - [anon_sym_throw] = ACTIONS(3386), - [anon_sym_LPAREN] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3386), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_case] = ACTIONS(3386), - [anon_sym_default] = ACTIONS(3386), - [anon_sym_cast] = ACTIONS(3386), - [anon_sym_DOLLARtype] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_untyped] = ACTIONS(3386), - [anon_sym_break] = ACTIONS(3386), - [anon_sym_continue] = ACTIONS(3386), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_this] = ACTIONS(3386), - [anon_sym_AT] = ACTIONS(3386), - [anon_sym_AT_COLON] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3386), - [anon_sym_catch] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_new] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3388), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3388), - [anon_sym_PERCENT] = ACTIONS(3388), - [anon_sym_SLASH] = ACTIONS(3386), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_LT_LT] = ACTIONS(3388), - [anon_sym_GT_GT] = ACTIONS(3386), - [anon_sym_GT_GT_GT] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_PIPE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym_AMP_AMP] = ACTIONS(3388), - [anon_sym_PIPE_PIPE] = ACTIONS(3388), - [anon_sym_EQ_EQ] = ACTIONS(3388), - [anon_sym_BANG_EQ] = ACTIONS(3388), - [anon_sym_LT] = ACTIONS(3386), - [anon_sym_LT_EQ] = ACTIONS(3388), - [anon_sym_GT] = ACTIONS(3386), - [anon_sym_GT_EQ] = ACTIONS(3388), - [anon_sym_EQ_GT] = ACTIONS(3388), - [anon_sym_QMARK_QMARK] = ACTIONS(3388), - [anon_sym_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3388), - [anon_sym_null] = ACTIONS(3386), - [anon_sym_macro] = ACTIONS(3386), - [anon_sym_abstract] = ACTIONS(3386), - [anon_sym_static] = ACTIONS(3386), - [anon_sym_public] = ACTIONS(3386), - [anon_sym_private] = ACTIONS(3386), - [anon_sym_extern] = ACTIONS(3386), - [anon_sym_inline] = ACTIONS(3386), - [anon_sym_overload] = ACTIONS(3386), - [anon_sym_override] = ACTIONS(3386), - [anon_sym_final] = ACTIONS(3386), - [anon_sym_class] = ACTIONS(3386), - [anon_sym_interface] = ACTIONS(3386), - [anon_sym_enum] = ACTIONS(3386), - [anon_sym_typedef] = ACTIONS(3386), - [anon_sym_function] = ACTIONS(3386), - [anon_sym_var] = ACTIONS(3386), - [aux_sym_integer_token1] = ACTIONS(3386), - [aux_sym_integer_token2] = ACTIONS(3388), - [aux_sym_float_token1] = ACTIONS(3386), - [aux_sym_float_token2] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym_string_token1] = ACTIONS(3388), - [aux_sym_string_token3] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3388), + [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] = { - [sym_identifier] = ACTIONS(2602), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_package] = ACTIONS(2602), - [anon_sym_import] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(2604), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_case] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_cast] = ACTIONS(2602), - [anon_sym_DOLLARtype] = ACTIONS(2604), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_untyped] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_this] = ACTIONS(2602), - [anon_sym_AT] = ACTIONS(2602), - [anon_sym_AT_COLON] = ACTIONS(2604), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_catch] = ACTIONS(2602), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_PERCENT] = ACTIONS(2604), - [anon_sym_SLASH] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2602), - [anon_sym_LT_LT] = ACTIONS(2604), - [anon_sym_GT_GT] = ACTIONS(2602), - [anon_sym_GT_GT_GT] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2602), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_AMP_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(2604), - [anon_sym_BANG_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_LT_EQ] = ACTIONS(2604), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_GT_EQ] = ACTIONS(2604), - [anon_sym_EQ_GT] = ACTIONS(2604), - [anon_sym_QMARK_QMARK] = ACTIONS(2604), - [anon_sym_EQ] = ACTIONS(2602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2604), - [anon_sym_null] = ACTIONS(2602), - [anon_sym_macro] = ACTIONS(2602), - [anon_sym_abstract] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_public] = ACTIONS(2602), - [anon_sym_private] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_overload] = ACTIONS(2602), - [anon_sym_override] = ACTIONS(2602), - [anon_sym_final] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_interface] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_function] = ACTIONS(2602), - [anon_sym_var] = ACTIONS(2602), - [aux_sym_integer_token1] = ACTIONS(2602), - [aux_sym_integer_token2] = ACTIONS(2604), - [aux_sym_float_token1] = ACTIONS(2602), - [aux_sym_float_token2] = ACTIONS(2604), - [anon_sym_true] = ACTIONS(2602), - [anon_sym_false] = ACTIONS(2602), - [aux_sym_string_token1] = ACTIONS(2604), - [aux_sym_string_token3] = ACTIONS(2604), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2604), + [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] = { - [sym_identifier] = ACTIONS(3390), - [anon_sym_POUND] = ACTIONS(3392), - [anon_sym_package] = ACTIONS(3390), - [anon_sym_import] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3390), - [anon_sym_throw] = ACTIONS(3390), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3390), - [anon_sym_LBRACE] = ACTIONS(3392), - [anon_sym_case] = ACTIONS(3390), - [anon_sym_default] = ACTIONS(3390), - [anon_sym_cast] = ACTIONS(3390), - [anon_sym_DOLLARtype] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3390), - [anon_sym_return] = ACTIONS(3390), - [anon_sym_untyped] = ACTIONS(3390), - [anon_sym_break] = ACTIONS(3390), - [anon_sym_continue] = ACTIONS(3390), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3390), - [anon_sym_AT] = ACTIONS(3390), - [anon_sym_AT_COLON] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3390), - [anon_sym_catch] = ACTIONS(3390), - [anon_sym_else] = ACTIONS(3390), - [anon_sym_if] = ACTIONS(3390), - [anon_sym_while] = ACTIONS(3390), - [anon_sym_do] = ACTIONS(3390), - [anon_sym_new] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3392), - [anon_sym_PERCENT] = ACTIONS(3392), - [anon_sym_SLASH] = ACTIONS(3390), - [anon_sym_PLUS] = ACTIONS(3390), - [anon_sym_LT_LT] = ACTIONS(3392), - [anon_sym_GT_GT] = ACTIONS(3390), - [anon_sym_GT_GT_GT] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_PIPE] = ACTIONS(3390), - [anon_sym_CARET] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_EQ_EQ] = ACTIONS(3392), - [anon_sym_BANG_EQ] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(3390), - [anon_sym_LT_EQ] = ACTIONS(3392), - [anon_sym_GT] = ACTIONS(3390), - [anon_sym_GT_EQ] = ACTIONS(3392), - [anon_sym_EQ_GT] = ACTIONS(3392), - [anon_sym_QMARK_QMARK] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3392), - [anon_sym_null] = ACTIONS(3390), - [anon_sym_macro] = ACTIONS(3390), - [anon_sym_abstract] = ACTIONS(3390), - [anon_sym_static] = ACTIONS(3390), - [anon_sym_public] = ACTIONS(3390), - [anon_sym_private] = ACTIONS(3390), - [anon_sym_extern] = ACTIONS(3390), - [anon_sym_inline] = ACTIONS(3390), - [anon_sym_overload] = ACTIONS(3390), - [anon_sym_override] = ACTIONS(3390), - [anon_sym_final] = ACTIONS(3390), - [anon_sym_class] = ACTIONS(3390), - [anon_sym_interface] = ACTIONS(3390), - [anon_sym_enum] = ACTIONS(3390), - [anon_sym_typedef] = ACTIONS(3390), - [anon_sym_function] = ACTIONS(3390), - [anon_sym_var] = ACTIONS(3390), - [aux_sym_integer_token1] = ACTIONS(3390), - [aux_sym_integer_token2] = ACTIONS(3392), - [aux_sym_float_token1] = ACTIONS(3390), - [aux_sym_float_token2] = ACTIONS(3392), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym_string_token1] = ACTIONS(3392), - [aux_sym_string_token3] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3392), + [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] = { - [sym_identifier] = ACTIONS(3394), - [anon_sym_POUND] = ACTIONS(3396), - [anon_sym_package] = ACTIONS(3394), - [anon_sym_import] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3394), - [anon_sym_throw] = ACTIONS(3394), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3394), - [anon_sym_LBRACE] = ACTIONS(3396), - [anon_sym_case] = ACTIONS(3394), - [anon_sym_default] = ACTIONS(3394), - [anon_sym_cast] = ACTIONS(3394), - [anon_sym_DOLLARtype] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3394), - [anon_sym_return] = ACTIONS(3394), - [anon_sym_untyped] = ACTIONS(3394), - [anon_sym_break] = ACTIONS(3394), - [anon_sym_continue] = ACTIONS(3394), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_this] = ACTIONS(3394), - [anon_sym_AT] = ACTIONS(3394), - [anon_sym_AT_COLON] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3394), - [anon_sym_catch] = ACTIONS(3394), - [anon_sym_else] = ACTIONS(3394), - [anon_sym_if] = ACTIONS(3394), - [anon_sym_while] = ACTIONS(3394), - [anon_sym_do] = ACTIONS(3394), - [anon_sym_new] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3396), - [anon_sym_PERCENT] = ACTIONS(3396), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3396), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_GT_GT_GT] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP_AMP] = ACTIONS(3396), - [anon_sym_PIPE_PIPE] = ACTIONS(3396), - [anon_sym_EQ_EQ] = ACTIONS(3396), - [anon_sym_BANG_EQ] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_LT_EQ] = ACTIONS(3396), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_EQ] = ACTIONS(3396), - [anon_sym_EQ_GT] = ACTIONS(3396), - [anon_sym_QMARK_QMARK] = ACTIONS(3396), - [anon_sym_EQ] = ACTIONS(3394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3396), - [anon_sym_null] = ACTIONS(3394), - [anon_sym_macro] = ACTIONS(3394), - [anon_sym_abstract] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3394), - [anon_sym_public] = ACTIONS(3394), - [anon_sym_private] = ACTIONS(3394), - [anon_sym_extern] = ACTIONS(3394), - [anon_sym_inline] = ACTIONS(3394), - [anon_sym_overload] = ACTIONS(3394), - [anon_sym_override] = ACTIONS(3394), - [anon_sym_final] = ACTIONS(3394), - [anon_sym_class] = ACTIONS(3394), - [anon_sym_interface] = ACTIONS(3394), - [anon_sym_enum] = ACTIONS(3394), - [anon_sym_typedef] = ACTIONS(3394), - [anon_sym_function] = ACTIONS(3394), - [anon_sym_var] = ACTIONS(3394), - [aux_sym_integer_token1] = ACTIONS(3394), - [aux_sym_integer_token2] = ACTIONS(3396), - [aux_sym_float_token1] = ACTIONS(3394), - [aux_sym_float_token2] = ACTIONS(3396), - [anon_sym_true] = ACTIONS(3394), - [anon_sym_false] = ACTIONS(3394), - [aux_sym_string_token1] = ACTIONS(3396), - [aux_sym_string_token3] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3396), + [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] = { - [sym_identifier] = ACTIONS(3398), - [anon_sym_POUND] = ACTIONS(3400), - [anon_sym_package] = ACTIONS(3398), - [anon_sym_import] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3398), - [anon_sym_throw] = ACTIONS(3398), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_case] = ACTIONS(3398), - [anon_sym_default] = ACTIONS(3398), - [anon_sym_cast] = ACTIONS(3398), - [anon_sym_DOLLARtype] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3398), - [anon_sym_return] = ACTIONS(3398), - [anon_sym_untyped] = ACTIONS(3398), - [anon_sym_break] = ACTIONS(3398), - [anon_sym_continue] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(3398), - [anon_sym_AT] = ACTIONS(3398), - [anon_sym_AT_COLON] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3398), - [anon_sym_catch] = ACTIONS(3398), - [anon_sym_else] = ACTIONS(3398), - [anon_sym_if] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3398), - [anon_sym_do] = ACTIONS(3398), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [anon_sym_PERCENT] = ACTIONS(3400), - [anon_sym_SLASH] = ACTIONS(3398), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_LT_LT] = ACTIONS(3400), - [anon_sym_GT_GT] = ACTIONS(3398), - [anon_sym_GT_GT_GT] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_EQ_EQ] = ACTIONS(3400), - [anon_sym_BANG_EQ] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(3398), - [anon_sym_LT_EQ] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3398), - [anon_sym_GT_EQ] = ACTIONS(3400), - [anon_sym_EQ_GT] = ACTIONS(3400), - [anon_sym_QMARK_QMARK] = ACTIONS(3400), - [anon_sym_EQ] = ACTIONS(3398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3400), - [anon_sym_null] = ACTIONS(3398), - [anon_sym_macro] = ACTIONS(3398), - [anon_sym_abstract] = ACTIONS(3398), - [anon_sym_static] = ACTIONS(3398), - [anon_sym_public] = ACTIONS(3398), - [anon_sym_private] = ACTIONS(3398), - [anon_sym_extern] = ACTIONS(3398), - [anon_sym_inline] = ACTIONS(3398), - [anon_sym_overload] = ACTIONS(3398), - [anon_sym_override] = ACTIONS(3398), - [anon_sym_final] = ACTIONS(3398), - [anon_sym_class] = ACTIONS(3398), - [anon_sym_interface] = ACTIONS(3398), - [anon_sym_enum] = ACTIONS(3398), - [anon_sym_typedef] = ACTIONS(3398), - [anon_sym_function] = ACTIONS(3398), - [anon_sym_var] = ACTIONS(3398), - [aux_sym_integer_token1] = ACTIONS(3398), - [aux_sym_integer_token2] = ACTIONS(3400), - [aux_sym_float_token1] = ACTIONS(3398), - [aux_sym_float_token2] = ACTIONS(3400), - [anon_sym_true] = ACTIONS(3398), - [anon_sym_false] = ACTIONS(3398), - [aux_sym_string_token1] = ACTIONS(3400), - [aux_sym_string_token3] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3400), + [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] = { - [sym_identifier] = ACTIONS(3402), - [anon_sym_POUND] = ACTIONS(3404), - [anon_sym_package] = ACTIONS(3402), - [anon_sym_import] = ACTIONS(3402), - [anon_sym_STAR] = ACTIONS(3404), - [anon_sym_using] = ACTIONS(3402), - [anon_sym_throw] = ACTIONS(3402), - [anon_sym_LPAREN] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_case] = ACTIONS(3402), - [anon_sym_default] = ACTIONS(3402), - [anon_sym_cast] = ACTIONS(3402), - [anon_sym_DOLLARtype] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3402), - [anon_sym_return] = ACTIONS(3402), - [anon_sym_untyped] = ACTIONS(3402), - [anon_sym_break] = ACTIONS(3402), - [anon_sym_continue] = ACTIONS(3402), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_this] = ACTIONS(3402), - [anon_sym_AT] = ACTIONS(3402), - [anon_sym_AT_COLON] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3402), - [anon_sym_catch] = ACTIONS(3402), - [anon_sym_else] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3402), - [anon_sym_while] = ACTIONS(3402), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_new] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3404), - [anon_sym_PERCENT] = ACTIONS(3404), - [anon_sym_SLASH] = ACTIONS(3402), - [anon_sym_PLUS] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_GT_GT_GT] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_EQ_EQ] = ACTIONS(3404), - [anon_sym_BANG_EQ] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_LT_EQ] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_EQ] = ACTIONS(3404), - [anon_sym_EQ_GT] = ACTIONS(3404), - [anon_sym_QMARK_QMARK] = ACTIONS(3404), - [anon_sym_EQ] = ACTIONS(3402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3402), - [anon_sym_macro] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(3402), - [anon_sym_static] = ACTIONS(3402), - [anon_sym_public] = ACTIONS(3402), - [anon_sym_private] = ACTIONS(3402), - [anon_sym_extern] = ACTIONS(3402), - [anon_sym_inline] = ACTIONS(3402), - [anon_sym_overload] = ACTIONS(3402), - [anon_sym_override] = ACTIONS(3402), - [anon_sym_final] = ACTIONS(3402), - [anon_sym_class] = ACTIONS(3402), - [anon_sym_interface] = ACTIONS(3402), - [anon_sym_enum] = ACTIONS(3402), - [anon_sym_typedef] = ACTIONS(3402), - [anon_sym_function] = ACTIONS(3402), - [anon_sym_var] = ACTIONS(3402), - [aux_sym_integer_token1] = ACTIONS(3402), - [aux_sym_integer_token2] = ACTIONS(3404), - [aux_sym_float_token1] = ACTIONS(3402), - [aux_sym_float_token2] = ACTIONS(3404), - [anon_sym_true] = ACTIONS(3402), - [anon_sym_false] = ACTIONS(3402), - [aux_sym_string_token1] = ACTIONS(3404), - [aux_sym_string_token3] = ACTIONS(3404), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3404), + [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] = { - [sym_identifier] = ACTIONS(3406), - [anon_sym_POUND] = ACTIONS(3408), - [anon_sym_package] = ACTIONS(3406), - [anon_sym_import] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3406), - [anon_sym_default] = ACTIONS(3406), - [anon_sym_cast] = ACTIONS(3406), - [anon_sym_DOLLARtype] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_untyped] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_this] = ACTIONS(3406), - [anon_sym_AT] = ACTIONS(3406), - [anon_sym_AT_COLON] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_catch] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_PERCENT] = ACTIONS(3408), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_LT_LT] = ACTIONS(3408), - [anon_sym_GT_GT] = ACTIONS(3406), - [anon_sym_GT_GT_GT] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym_PIPE] = ACTIONS(3406), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_PIPE_PIPE] = ACTIONS(3408), - [anon_sym_EQ_EQ] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3408), - [anon_sym_LT] = ACTIONS(3406), - [anon_sym_LT_EQ] = ACTIONS(3408), - [anon_sym_GT] = ACTIONS(3406), - [anon_sym_GT_EQ] = ACTIONS(3408), - [anon_sym_EQ_GT] = ACTIONS(3408), - [anon_sym_QMARK_QMARK] = ACTIONS(3408), - [anon_sym_EQ] = ACTIONS(3406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), - [anon_sym_null] = ACTIONS(3406), - [anon_sym_macro] = ACTIONS(3406), - [anon_sym_abstract] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym_overload] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3406), - [anon_sym_final] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_interface] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_function] = ACTIONS(3406), - [anon_sym_var] = ACTIONS(3406), - [aux_sym_integer_token1] = ACTIONS(3406), - [aux_sym_integer_token2] = ACTIONS(3408), - [aux_sym_float_token1] = ACTIONS(3406), - [aux_sym_float_token2] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3406), - [anon_sym_false] = ACTIONS(3406), - [aux_sym_string_token1] = ACTIONS(3408), - [aux_sym_string_token3] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3408), + [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(2646), - [sym_identifier] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2646), - [anon_sym_package] = ACTIONS(2644), - [anon_sym_import] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2644), - [anon_sym_throw] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_switch] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_cast] = ACTIONS(2644), - [anon_sym_DOLLARtype] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_untyped] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_this] = ACTIONS(2644), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_AT_COLON] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_catch] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), - [anon_sym_SLASH] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_LT_LT] = ACTIONS(2646), - [anon_sym_GT_GT] = ACTIONS(2644), - [anon_sym_GT_GT_GT] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP_AMP] = ACTIONS(2646), - [anon_sym_PIPE_PIPE] = ACTIONS(2646), - [anon_sym_EQ_EQ] = ACTIONS(2646), - [anon_sym_BANG_EQ] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2644), - [anon_sym_LT_EQ] = ACTIONS(2646), - [anon_sym_GT] = ACTIONS(2644), - [anon_sym_GT_EQ] = ACTIONS(2646), - [anon_sym_EQ_GT] = ACTIONS(2646), - [anon_sym_QMARK_QMARK] = ACTIONS(2646), - [anon_sym_EQ] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2646), - [anon_sym_null] = ACTIONS(2644), - [anon_sym_macro] = ACTIONS(2644), - [anon_sym_abstract] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_public] = ACTIONS(2644), - [anon_sym_private] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_inline] = ACTIONS(2644), - [anon_sym_overload] = ACTIONS(2644), - [anon_sym_override] = ACTIONS(2644), - [anon_sym_final] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2644), - [anon_sym_interface] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(2644), - [anon_sym_var] = ACTIONS(2644), - [aux_sym_integer_token1] = ACTIONS(2644), - [aux_sym_integer_token2] = ACTIONS(2646), - [aux_sym_float_token1] = ACTIONS(2644), - [aux_sym_float_token2] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [aux_sym_string_token1] = ACTIONS(2646), - [aux_sym_string_token3] = ACTIONS(2646), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3410), + [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] = { - [sym_else_clause] = STATE(824), - [ts_builtin_sym_end] = ACTIONS(2652), - [sym_identifier] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2652), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_cast] = ACTIONS(2650), - [anon_sym_DOLLARtype] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_untyped] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2650), - [anon_sym_AT_COLON] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_catch] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_PERCENT] = ACTIONS(2652), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_LT_LT] = ACTIONS(2652), - [anon_sym_GT_GT] = ACTIONS(2650), - [anon_sym_GT_GT_GT] = ACTIONS(2652), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_CARET] = ACTIONS(2652), - [anon_sym_AMP_AMP] = ACTIONS(2652), - [anon_sym_PIPE_PIPE] = ACTIONS(2652), - [anon_sym_EQ_EQ] = ACTIONS(2652), - [anon_sym_BANG_EQ] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_LT_EQ] = ACTIONS(2652), - [anon_sym_GT] = ACTIONS(2650), - [anon_sym_GT_EQ] = ACTIONS(2652), - [anon_sym_EQ_GT] = ACTIONS(2652), - [anon_sym_QMARK_QMARK] = ACTIONS(2652), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_macro] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_extern] = ACTIONS(2650), - [anon_sym_inline] = ACTIONS(2650), - [anon_sym_overload] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [anon_sym_typedef] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [aux_sym_integer_token1] = ACTIONS(2650), - [aux_sym_integer_token2] = ACTIONS(2652), - [aux_sym_float_token1] = ACTIONS(2650), - [aux_sym_float_token2] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [aux_sym_string_token3] = ACTIONS(2652), - [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] = { - [sym_else_clause] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_package] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_cast] = ACTIONS(2640), - [anon_sym_DOLLARtype] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_untyped] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_AT_COLON] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_catch] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_LT_LT] = ACTIONS(2642), - [anon_sym_GT_GT] = ACTIONS(2640), - [anon_sym_GT_GT_GT] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2642), - [anon_sym_AMP_AMP] = ACTIONS(2642), - [anon_sym_PIPE_PIPE] = ACTIONS(2642), - [anon_sym_EQ_EQ] = ACTIONS(2642), - [anon_sym_BANG_EQ] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_LT_EQ] = ACTIONS(2642), - [anon_sym_GT] = ACTIONS(2640), - [anon_sym_GT_EQ] = ACTIONS(2642), - [anon_sym_EQ_GT] = ACTIONS(2642), - [anon_sym_QMARK_QMARK] = ACTIONS(2642), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2640), - [anon_sym_macro] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_inline] = ACTIONS(2640), - [anon_sym_overload] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_final] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [aux_sym_integer_token1] = ACTIONS(2640), - [aux_sym_integer_token2] = ACTIONS(2642), - [aux_sym_float_token1] = ACTIONS(2640), - [aux_sym_float_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [aux_sym_string_token1] = ACTIONS(2642), - [aux_sym_string_token3] = ACTIONS(2642), + [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(2614), - [sym_identifier] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_package] = ACTIONS(2612), - [anon_sym_import] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2612), - [anon_sym_throw] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_cast] = ACTIONS(2612), - [anon_sym_DOLLARtype] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_untyped] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_this] = ACTIONS(2612), - [anon_sym_AT] = ACTIONS(2612), - [anon_sym_AT_COLON] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2612), - [anon_sym_catch] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_do] = ACTIONS(2612), - [anon_sym_new] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2614), - [anon_sym_PERCENT] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2612), - [anon_sym_PLUS] = ACTIONS(2612), - [anon_sym_LT_LT] = ACTIONS(2614), - [anon_sym_GT_GT] = ACTIONS(2612), - [anon_sym_GT_GT_GT] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT] = ACTIONS(2612), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_EQ_GT] = ACTIONS(2614), - [anon_sym_QMARK_QMARK] = ACTIONS(2614), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2612), - [anon_sym_macro] = ACTIONS(2612), - [anon_sym_abstract] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_inline] = ACTIONS(2612), - [anon_sym_overload] = ACTIONS(2612), - [anon_sym_override] = ACTIONS(2612), - [anon_sym_final] = ACTIONS(2612), - [anon_sym_class] = ACTIONS(2612), - [anon_sym_interface] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2612), - [anon_sym_function] = ACTIONS(2612), - [anon_sym_var] = ACTIONS(2612), - [aux_sym_integer_token1] = ACTIONS(2612), - [aux_sym_integer_token2] = ACTIONS(2614), - [aux_sym_float_token1] = ACTIONS(2612), - [aux_sym_float_token2] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [aux_sym_string_token1] = ACTIONS(2614), - [aux_sym_string_token3] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3412), + [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(2628), - [sym_identifier] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2628), - [anon_sym_package] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_cast] = ACTIONS(2626), - [anon_sym_DOLLARtype] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_untyped] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_this] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2626), - [anon_sym_AT_COLON] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_catch] = ACTIONS(2626), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_GT_GT_GT] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2628), - [anon_sym_EQ_GT] = ACTIONS(2628), - [anon_sym_QMARK_QMARK] = ACTIONS(2628), - [anon_sym_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_macro] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_extern] = ACTIONS(2626), - [anon_sym_inline] = ACTIONS(2626), - [anon_sym_overload] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_typedef] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [aux_sym_integer_token1] = ACTIONS(2626), - [aux_sym_integer_token2] = ACTIONS(2628), - [aux_sym_float_token1] = ACTIONS(2626), - [aux_sym_float_token2] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [aux_sym_string_token1] = ACTIONS(2628), - [aux_sym_string_token3] = ACTIONS(2628), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3414), + [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] = { - [sym_catch_statement] = STATE(646), - [aux_sym_try_statement_repeat1] = STATE(646), - [sym_identifier] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_cast] = ACTIONS(3354), - [anon_sym_DOLLARtype] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_untyped] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_this] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_AT_COLON] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_catch] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_EQ_GT] = ACTIONS(3352), - [anon_sym_QMARK_QMARK] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3354), - [anon_sym_macro] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym_overload] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_final] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [aux_sym_integer_token1] = ACTIONS(3354), - [aux_sym_integer_token2] = ACTIONS(3352), - [aux_sym_float_token1] = ACTIONS(3354), - [aux_sym_float_token2] = ACTIONS(3352), - [anon_sym_true] = ACTIONS(3354), - [anon_sym_false] = ACTIONS(3354), - [aux_sym_string_token1] = ACTIONS(3352), - [aux_sym_string_token3] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3352), + [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] = { - [sym_catch_statement] = STATE(646), - [aux_sym_try_statement_repeat1] = STATE(646), - [sym_identifier] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3358), - [anon_sym_package] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_cast] = ACTIONS(3360), - [anon_sym_DOLLARtype] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_untyped] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_AT_COLON] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_catch] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_LT_LT] = ACTIONS(3358), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_GT_GT_GT] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_PIPE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_PIPE_PIPE] = ACTIONS(3358), - [anon_sym_EQ_EQ] = ACTIONS(3358), - [anon_sym_BANG_EQ] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_LT_EQ] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_GT_EQ] = ACTIONS(3358), - [anon_sym_EQ_GT] = ACTIONS(3358), - [anon_sym_QMARK_QMARK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_macro] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3360), - [anon_sym_inline] = ACTIONS(3360), - [anon_sym_overload] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_final] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_typedef] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [aux_sym_integer_token1] = ACTIONS(3360), - [aux_sym_integer_token2] = ACTIONS(3358), - [aux_sym_float_token1] = ACTIONS(3360), - [aux_sym_float_token2] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym_string_token1] = ACTIONS(3358), - [aux_sym_string_token3] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3358), + [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] = { - [sym_catch_statement] = STATE(646), - [aux_sym_try_statement_repeat1] = STATE(646), - [sym_identifier] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_cast] = ACTIONS(3371), - [anon_sym_DOLLARtype] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_untyped] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_AT_COLON] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3369), - [anon_sym_QMARK_QMARK] = ACTIONS(3369), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_macro] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_inline] = ACTIONS(3371), - [anon_sym_overload] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_final] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_typedef] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [aux_sym_integer_token1] = ACTIONS(3371), - [aux_sym_integer_token2] = ACTIONS(3369), - [aux_sym_float_token1] = ACTIONS(3371), - [aux_sym_float_token2] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3369), - [aux_sym_string_token3] = ACTIONS(3369), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3369), + [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] = { - [sym_catch_statement] = STATE(632), - [aux_sym_try_statement_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_cast] = ACTIONS(3354), - [anon_sym_DOLLARtype] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_untyped] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_this] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_AT_COLON] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_catch] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_EQ_GT] = ACTIONS(3352), - [anon_sym_QMARK_QMARK] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3354), - [anon_sym_macro] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym_overload] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_final] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [aux_sym_integer_token1] = ACTIONS(3354), - [aux_sym_integer_token2] = ACTIONS(3352), - [aux_sym_float_token1] = ACTIONS(3354), - [aux_sym_float_token2] = ACTIONS(3352), - [anon_sym_true] = ACTIONS(3354), - [anon_sym_false] = ACTIONS(3354), - [aux_sym_string_token1] = ACTIONS(3352), - [aux_sym_string_token3] = ACTIONS(3352), + [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] = { - [sym_else_clause] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3420), + [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(2656), - [sym_identifier] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2656), - [anon_sym_package] = ACTIONS(2654), - [anon_sym_import] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2656), - [anon_sym_using] = ACTIONS(2654), - [anon_sym_throw] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_switch] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_cast] = ACTIONS(2654), - [anon_sym_DOLLARtype] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_untyped] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2656), - [anon_sym_this] = ACTIONS(2654), - [anon_sym_AT] = ACTIONS(2654), - [anon_sym_AT_COLON] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_catch] = ACTIONS(2654), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS_PLUS] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2656), - [anon_sym_PERCENT] = ACTIONS(2656), - [anon_sym_SLASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_LT_LT] = ACTIONS(2656), - [anon_sym_GT_GT] = ACTIONS(2654), - [anon_sym_GT_GT_GT] = ACTIONS(2656), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_CARET] = ACTIONS(2656), - [anon_sym_AMP_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2656), - [anon_sym_EQ_EQ] = ACTIONS(2656), - [anon_sym_BANG_EQ] = ACTIONS(2656), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_LT_EQ] = ACTIONS(2656), - [anon_sym_GT] = ACTIONS(2654), - [anon_sym_GT_EQ] = ACTIONS(2656), - [anon_sym_EQ_GT] = ACTIONS(2656), - [anon_sym_QMARK_QMARK] = ACTIONS(2656), - [anon_sym_EQ] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), - [anon_sym_null] = ACTIONS(2654), - [anon_sym_macro] = ACTIONS(2654), - [anon_sym_abstract] = ACTIONS(2654), - [anon_sym_static] = ACTIONS(2654), - [anon_sym_public] = ACTIONS(2654), - [anon_sym_private] = ACTIONS(2654), - [anon_sym_extern] = ACTIONS(2654), - [anon_sym_inline] = ACTIONS(2654), - [anon_sym_overload] = ACTIONS(2654), - [anon_sym_override] = ACTIONS(2654), - [anon_sym_final] = ACTIONS(2654), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_interface] = ACTIONS(2654), - [anon_sym_enum] = ACTIONS(2654), - [anon_sym_typedef] = ACTIONS(2654), - [anon_sym_function] = ACTIONS(2654), - [anon_sym_var] = ACTIONS(2654), - [aux_sym_integer_token1] = ACTIONS(2654), - [aux_sym_integer_token2] = ACTIONS(2656), - [aux_sym_float_token1] = ACTIONS(2654), - [aux_sym_float_token2] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [aux_sym_string_token1] = ACTIONS(2656), - [aux_sym_string_token3] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3422), + [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] = { - [sym_else_clause] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_package] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_cast] = ACTIONS(2640), - [anon_sym_DOLLARtype] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_untyped] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_AT_COLON] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_catch] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_LT_LT] = ACTIONS(2642), - [anon_sym_GT_GT] = ACTIONS(2640), - [anon_sym_GT_GT_GT] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2642), - [anon_sym_AMP_AMP] = ACTIONS(2642), - [anon_sym_PIPE_PIPE] = ACTIONS(2642), - [anon_sym_EQ_EQ] = ACTIONS(2642), - [anon_sym_BANG_EQ] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_LT_EQ] = ACTIONS(2642), - [anon_sym_GT] = ACTIONS(2640), - [anon_sym_GT_EQ] = ACTIONS(2642), - [anon_sym_EQ_GT] = ACTIONS(2642), - [anon_sym_QMARK_QMARK] = ACTIONS(2642), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2640), - [anon_sym_macro] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_inline] = ACTIONS(2640), - [anon_sym_overload] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_final] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [aux_sym_integer_token1] = ACTIONS(2640), - [aux_sym_integer_token2] = ACTIONS(2642), - [aux_sym_float_token1] = ACTIONS(2640), - [aux_sym_float_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [aux_sym_string_token1] = ACTIONS(2642), - [aux_sym_string_token3] = ACTIONS(2642), + [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] = { - [sym_catch_statement] = STATE(646), - [aux_sym_try_statement_repeat1] = STATE(646), - [sym_identifier] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_cast] = ACTIONS(3371), - [anon_sym_DOLLARtype] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_untyped] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_AT_COLON] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3369), - [anon_sym_QMARK_QMARK] = ACTIONS(3369), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_macro] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_inline] = ACTIONS(3371), - [anon_sym_overload] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_final] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_typedef] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [aux_sym_integer_token1] = ACTIONS(3371), - [aux_sym_integer_token2] = ACTIONS(3369), - [aux_sym_float_token1] = ACTIONS(3371), - [aux_sym_float_token2] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3369), - [aux_sym_string_token3] = ACTIONS(3369), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3369), + [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] = { - [sym_catch_statement] = STATE(632), - [aux_sym_try_statement_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3358), - [anon_sym_package] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_cast] = ACTIONS(3360), - [anon_sym_DOLLARtype] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_untyped] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_AT_COLON] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_catch] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_LT_LT] = ACTIONS(3358), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_GT_GT_GT] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_PIPE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_PIPE_PIPE] = ACTIONS(3358), - [anon_sym_EQ_EQ] = ACTIONS(3358), - [anon_sym_BANG_EQ] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_LT_EQ] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_GT_EQ] = ACTIONS(3358), - [anon_sym_EQ_GT] = ACTIONS(3358), - [anon_sym_QMARK_QMARK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_macro] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3360), - [anon_sym_inline] = ACTIONS(3360), - [anon_sym_overload] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_final] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_typedef] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [aux_sym_integer_token1] = ACTIONS(3360), - [aux_sym_integer_token2] = ACTIONS(3358), - [aux_sym_float_token1] = ACTIONS(3360), - [aux_sym_float_token2] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym_string_token1] = ACTIONS(3358), - [aux_sym_string_token3] = ACTIONS(3358), - [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] = { - [sym_catch_statement] = STATE(632), - [aux_sym_try_statement_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(3362), - [sym_identifier] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(3362), - [anon_sym_package] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_cast] = ACTIONS(3364), - [anon_sym_DOLLARtype] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_untyped] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_this] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_AT_COLON] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_catch] = ACTIONS(3426), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [anon_sym_PERCENT] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_LT_LT] = ACTIONS(3362), - [anon_sym_GT_GT] = ACTIONS(3364), - [anon_sym_GT_GT_GT] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_PIPE] = ACTIONS(3364), - [anon_sym_CARET] = ACTIONS(3362), - [anon_sym_AMP_AMP] = ACTIONS(3362), - [anon_sym_PIPE_PIPE] = ACTIONS(3362), - [anon_sym_EQ_EQ] = ACTIONS(3362), - [anon_sym_BANG_EQ] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_LT_EQ] = ACTIONS(3362), - [anon_sym_GT] = ACTIONS(3364), - [anon_sym_GT_EQ] = ACTIONS(3362), - [anon_sym_EQ_GT] = ACTIONS(3362), - [anon_sym_QMARK_QMARK] = ACTIONS(3362), - [anon_sym_EQ] = ACTIONS(3364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_macro] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_extern] = ACTIONS(3364), - [anon_sym_inline] = ACTIONS(3364), - [anon_sym_overload] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_final] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), - [anon_sym_typedef] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [aux_sym_integer_token1] = ACTIONS(3364), - [aux_sym_integer_token2] = ACTIONS(3362), - [aux_sym_float_token1] = ACTIONS(3364), - [aux_sym_float_token2] = ACTIONS(3362), - [anon_sym_true] = ACTIONS(3364), - [anon_sym_false] = ACTIONS(3364), - [aux_sym_string_token1] = ACTIONS(3362), - [aux_sym_string_token3] = ACTIONS(3362), + [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] = { - [sym_catch_statement] = STATE(646), - [aux_sym_try_statement_repeat1] = STATE(646), - [sym_identifier] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_cast] = ACTIONS(3354), - [anon_sym_DOLLARtype] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_untyped] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_this] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_AT_COLON] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_catch] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_EQ_GT] = ACTIONS(3352), - [anon_sym_QMARK_QMARK] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3354), - [anon_sym_macro] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym_overload] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_final] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [aux_sym_integer_token1] = ACTIONS(3354), - [aux_sym_integer_token2] = ACTIONS(3352), - [aux_sym_float_token1] = ACTIONS(3354), - [aux_sym_float_token2] = ACTIONS(3352), - [anon_sym_true] = ACTIONS(3354), - [anon_sym_false] = ACTIONS(3354), - [aux_sym_string_token1] = ACTIONS(3352), - [aux_sym_string_token3] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3352), + [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] = { - [sym_else_clause] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_catch] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [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] = { - [sym_else_clause] = STATE(824), - [ts_builtin_sym_end] = ACTIONS(2652), - [sym_identifier] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2652), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_cast] = ACTIONS(2650), - [anon_sym_DOLLARtype] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_untyped] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2650), - [anon_sym_AT_COLON] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_catch] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_PERCENT] = ACTIONS(2652), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_LT_LT] = ACTIONS(2652), - [anon_sym_GT_GT] = ACTIONS(2650), - [anon_sym_GT_GT_GT] = ACTIONS(2652), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_CARET] = ACTIONS(2652), - [anon_sym_AMP_AMP] = ACTIONS(2652), - [anon_sym_PIPE_PIPE] = ACTIONS(2652), - [anon_sym_EQ_EQ] = ACTIONS(2652), - [anon_sym_BANG_EQ] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_LT_EQ] = ACTIONS(2652), - [anon_sym_GT] = ACTIONS(2650), - [anon_sym_GT_EQ] = ACTIONS(2652), - [anon_sym_EQ_GT] = ACTIONS(2652), - [anon_sym_QMARK_QMARK] = ACTIONS(2652), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_macro] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_extern] = ACTIONS(2650), - [anon_sym_inline] = ACTIONS(2650), - [anon_sym_overload] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [anon_sym_typedef] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [aux_sym_integer_token1] = ACTIONS(2650), - [aux_sym_integer_token2] = ACTIONS(2652), - [aux_sym_float_token1] = ACTIONS(2650), - [aux_sym_float_token2] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [aux_sym_string_token3] = ACTIONS(2652), - [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] = { - [sym_else_clause] = STATE(606), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), + [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__lookback_semicolon] = ACTIONS(3431), - [sym__closing_brace_marker] = ACTIONS(2608), [sym__closing_brace_unmarker] = ACTIONS(3), }, [637] = { - [sym__rangeOperator] = STATE(2469), - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_this] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [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(1452), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_interface] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_function] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1452), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1452), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), + [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] = { - [sym_catch_statement] = STATE(632), - [aux_sym_try_statement_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_cast] = ACTIONS(3371), - [anon_sym_DOLLARtype] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_untyped] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_AT_COLON] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3369), - [anon_sym_QMARK_QMARK] = ACTIONS(3369), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_macro] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_inline] = ACTIONS(3371), - [anon_sym_overload] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_final] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_typedef] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [aux_sym_integer_token1] = ACTIONS(3371), - [aux_sym_integer_token2] = ACTIONS(3369), - [aux_sym_float_token1] = ACTIONS(3371), - [aux_sym_float_token2] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3369), - [aux_sym_string_token3] = ACTIONS(3369), - [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] = { - [sym_else_clause] = STATE(606), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_catch] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2608), + [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] = { - [sym_catch_statement] = STATE(646), - [aux_sym_try_statement_repeat1] = STATE(646), - [sym_identifier] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3358), - [anon_sym_package] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_cast] = ACTIONS(3360), - [anon_sym_DOLLARtype] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_untyped] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_AT_COLON] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_catch] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_LT_LT] = ACTIONS(3358), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_GT_GT_GT] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_PIPE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_PIPE_PIPE] = ACTIONS(3358), - [anon_sym_EQ_EQ] = ACTIONS(3358), - [anon_sym_BANG_EQ] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_LT_EQ] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_GT_EQ] = ACTIONS(3358), - [anon_sym_EQ_GT] = ACTIONS(3358), - [anon_sym_QMARK_QMARK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_macro] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3360), - [anon_sym_inline] = ACTIONS(3360), - [anon_sym_overload] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_final] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_typedef] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [aux_sym_integer_token1] = ACTIONS(3360), - [aux_sym_integer_token2] = ACTIONS(3358), - [aux_sym_float_token1] = ACTIONS(3360), - [aux_sym_float_token2] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym_string_token1] = ACTIONS(3358), - [aux_sym_string_token3] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3358), + [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] = { - [sym_else_clause] = STATE(422), - [sym_identifier] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2652), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_cast] = ACTIONS(2650), - [anon_sym_DOLLARtype] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_untyped] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2650), - [anon_sym_AT_COLON] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_catch] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_PERCENT] = ACTIONS(2652), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_LT_LT] = ACTIONS(2652), - [anon_sym_GT_GT] = ACTIONS(2650), - [anon_sym_GT_GT_GT] = ACTIONS(2652), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_CARET] = ACTIONS(2652), - [anon_sym_AMP_AMP] = ACTIONS(2652), - [anon_sym_PIPE_PIPE] = ACTIONS(2652), - [anon_sym_EQ_EQ] = ACTIONS(2652), - [anon_sym_BANG_EQ] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_LT_EQ] = ACTIONS(2652), - [anon_sym_GT] = ACTIONS(2650), - [anon_sym_GT_EQ] = ACTIONS(2652), - [anon_sym_EQ_GT] = ACTIONS(2652), - [anon_sym_QMARK_QMARK] = ACTIONS(2652), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_macro] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_extern] = ACTIONS(2650), - [anon_sym_inline] = ACTIONS(2650), - [anon_sym_overload] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [anon_sym_typedef] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [aux_sym_integer_token1] = ACTIONS(2650), - [aux_sym_integer_token2] = ACTIONS(2652), - [aux_sym_float_token1] = ACTIONS(2650), - [aux_sym_float_token2] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [aux_sym_string_token3] = ACTIONS(2652), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2652), + [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] = { - [sym_else_clause] = STATE(444), - [sym_identifier] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_package] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_cast] = ACTIONS(2640), - [anon_sym_DOLLARtype] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_untyped] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_AT_COLON] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_catch] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_LT_LT] = ACTIONS(2642), - [anon_sym_GT_GT] = ACTIONS(2640), - [anon_sym_GT_GT_GT] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2642), - [anon_sym_AMP_AMP] = ACTIONS(2642), - [anon_sym_PIPE_PIPE] = ACTIONS(2642), - [anon_sym_EQ_EQ] = ACTIONS(2642), - [anon_sym_BANG_EQ] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_LT_EQ] = ACTIONS(2642), - [anon_sym_GT] = ACTIONS(2640), - [anon_sym_GT_EQ] = ACTIONS(2642), - [anon_sym_EQ_GT] = ACTIONS(2642), - [anon_sym_QMARK_QMARK] = ACTIONS(2642), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2640), - [anon_sym_macro] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_inline] = ACTIONS(2640), - [anon_sym_overload] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_final] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [aux_sym_integer_token1] = ACTIONS(2640), - [aux_sym_integer_token2] = ACTIONS(2642), - [aux_sym_float_token1] = ACTIONS(2640), - [aux_sym_float_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [aux_sym_string_token1] = ACTIONS(2642), - [aux_sym_string_token3] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2642), + [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] = { - [sym_catch_statement] = STATE(632), - [aux_sym_try_statement_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3354), - [anon_sym_POUND] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(3352), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3352), - [anon_sym_cast] = ACTIONS(3354), - [anon_sym_DOLLARtype] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_untyped] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_this] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_AT_COLON] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_catch] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3352), - [anon_sym_DASH_DASH] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_LT_LT] = ACTIONS(3352), - [anon_sym_GT_GT] = ACTIONS(3354), - [anon_sym_GT_GT_GT] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_CARET] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_PIPE_PIPE] = ACTIONS(3352), - [anon_sym_EQ_EQ] = ACTIONS(3352), - [anon_sym_BANG_EQ] = ACTIONS(3352), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_LT_EQ] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3354), - [anon_sym_GT_EQ] = ACTIONS(3352), - [anon_sym_EQ_GT] = ACTIONS(3352), - [anon_sym_QMARK_QMARK] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3354), - [anon_sym_macro] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_extern] = ACTIONS(3354), - [anon_sym_inline] = ACTIONS(3354), - [anon_sym_overload] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_final] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [anon_sym_typedef] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [aux_sym_integer_token1] = ACTIONS(3354), - [aux_sym_integer_token2] = ACTIONS(3352), - [aux_sym_float_token1] = ACTIONS(3354), - [aux_sym_float_token2] = ACTIONS(3352), - [anon_sym_true] = ACTIONS(3354), - [anon_sym_false] = ACTIONS(3354), - [aux_sym_string_token1] = ACTIONS(3352), - [aux_sym_string_token3] = ACTIONS(3352), + [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] = { - [sym_catch_statement] = STATE(632), - [aux_sym_try_statement_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3360), - [anon_sym_POUND] = ACTIONS(3358), - [anon_sym_package] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_cast] = ACTIONS(3360), - [anon_sym_DOLLARtype] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_untyped] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_this] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_AT_COLON] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_catch] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_LT_LT] = ACTIONS(3358), - [anon_sym_GT_GT] = ACTIONS(3360), - [anon_sym_GT_GT_GT] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_PIPE] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_PIPE_PIPE] = ACTIONS(3358), - [anon_sym_EQ_EQ] = ACTIONS(3358), - [anon_sym_BANG_EQ] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3360), - [anon_sym_LT_EQ] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_GT_EQ] = ACTIONS(3358), - [anon_sym_EQ_GT] = ACTIONS(3358), - [anon_sym_QMARK_QMARK] = ACTIONS(3358), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_macro] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(3360), - [anon_sym_inline] = ACTIONS(3360), - [anon_sym_overload] = ACTIONS(3360), - [anon_sym_override] = ACTIONS(3360), - [anon_sym_final] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - [anon_sym_typedef] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [aux_sym_integer_token1] = ACTIONS(3360), - [aux_sym_integer_token2] = ACTIONS(3358), - [aux_sym_float_token1] = ACTIONS(3360), - [aux_sym_float_token2] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym_string_token1] = ACTIONS(3358), - [aux_sym_string_token3] = ACTIONS(3358), + [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] = { - [sym_catch_statement] = STATE(632), - [aux_sym_try_statement_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_package] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_cast] = ACTIONS(3371), - [anon_sym_DOLLARtype] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_untyped] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_this] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_AT_COLON] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_catch] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3369), - [anon_sym_QMARK_QMARK] = ACTIONS(3369), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_macro] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_extern] = ACTIONS(3371), - [anon_sym_inline] = ACTIONS(3371), - [anon_sym_overload] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_final] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_typedef] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [aux_sym_integer_token1] = ACTIONS(3371), - [aux_sym_integer_token2] = ACTIONS(3369), - [aux_sym_float_token1] = ACTIONS(3371), - [aux_sym_float_token2] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3371), - [anon_sym_false] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3369), - [aux_sym_string_token3] = ACTIONS(3369), - [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] = { - [sym_catch_statement] = STATE(646), - [aux_sym_try_statement_repeat1] = STATE(646), - [sym_identifier] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(3362), - [anon_sym_package] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_cast] = ACTIONS(3364), - [anon_sym_DOLLARtype] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_untyped] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_this] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_AT_COLON] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_catch] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [anon_sym_PERCENT] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_LT_LT] = ACTIONS(3362), - [anon_sym_GT_GT] = ACTIONS(3364), - [anon_sym_GT_GT_GT] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_PIPE] = ACTIONS(3364), - [anon_sym_CARET] = ACTIONS(3362), - [anon_sym_AMP_AMP] = ACTIONS(3362), - [anon_sym_PIPE_PIPE] = ACTIONS(3362), - [anon_sym_EQ_EQ] = ACTIONS(3362), - [anon_sym_BANG_EQ] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_LT_EQ] = ACTIONS(3362), - [anon_sym_GT] = ACTIONS(3364), - [anon_sym_GT_EQ] = ACTIONS(3362), - [anon_sym_EQ_GT] = ACTIONS(3362), - [anon_sym_QMARK_QMARK] = ACTIONS(3362), - [anon_sym_EQ] = ACTIONS(3364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3364), - [anon_sym_macro] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_extern] = ACTIONS(3364), - [anon_sym_inline] = ACTIONS(3364), - [anon_sym_overload] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_final] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), - [anon_sym_typedef] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [aux_sym_integer_token1] = ACTIONS(3364), - [aux_sym_integer_token2] = ACTIONS(3362), - [aux_sym_float_token1] = ACTIONS(3364), - [aux_sym_float_token2] = ACTIONS(3362), - [anon_sym_true] = ACTIONS(3364), - [anon_sym_false] = ACTIONS(3364), - [aux_sym_string_token1] = ACTIONS(3362), - [aux_sym_string_token3] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3362), + [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] = { - [sym_else_clause] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_catch] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), + [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(3112), - [sym_identifier] = ACTIONS(3110), - [anon_sym_POUND] = ACTIONS(3112), - [anon_sym_package] = ACTIONS(3110), - [anon_sym_import] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_cast] = ACTIONS(3110), - [anon_sym_DOLLARtype] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_untyped] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_AT] = ACTIONS(3110), - [anon_sym_AT_COLON] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_catch] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_do] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3112), - [anon_sym_GT_GT] = ACTIONS(3110), - [anon_sym_GT_GT_GT] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_CARET] = ACTIONS(3112), - [anon_sym_AMP_AMP] = ACTIONS(3112), - [anon_sym_PIPE_PIPE] = ACTIONS(3112), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_LT_EQ] = ACTIONS(3112), - [anon_sym_GT] = ACTIONS(3110), - [anon_sym_GT_EQ] = ACTIONS(3112), - [anon_sym_EQ_GT] = ACTIONS(3112), - [anon_sym_QMARK_QMARK] = ACTIONS(3112), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3112), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_macro] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_static] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_extern] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_overload] = ACTIONS(3110), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_class] = ACTIONS(3110), - [anon_sym_interface] = ACTIONS(3110), - [anon_sym_enum] = ACTIONS(3110), - [anon_sym_typedef] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3110), - [anon_sym_var] = ACTIONS(3110), - [aux_sym_integer_token1] = ACTIONS(3110), - [aux_sym_integer_token2] = ACTIONS(3112), - [aux_sym_float_token1] = ACTIONS(3110), - [aux_sym_float_token2] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [aux_sym_string_token1] = ACTIONS(3112), - [aux_sym_string_token3] = ACTIONS(3112), - [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(2878), - [sym_identifier] = ACTIONS(2876), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_package] = ACTIONS(2876), - [anon_sym_import] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2876), - [anon_sym_throw] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_cast] = ACTIONS(2876), - [anon_sym_DOLLARtype] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_untyped] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_this] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_AT_COLON] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2876), - [anon_sym_catch] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_EQ_GT] = ACTIONS(2878), - [anon_sym_QMARK_QMARK] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2878), - [anon_sym_null] = ACTIONS(2876), - [anon_sym_macro] = ACTIONS(2876), - [anon_sym_abstract] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_public] = ACTIONS(2876), - [anon_sym_private] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_overload] = ACTIONS(2876), - [anon_sym_override] = ACTIONS(2876), - [anon_sym_final] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2876), - [anon_sym_interface] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2876), - [anon_sym_var] = ACTIONS(2876), - [aux_sym_integer_token1] = ACTIONS(2876), - [aux_sym_integer_token2] = ACTIONS(2878), - [aux_sym_float_token1] = ACTIONS(2876), - [aux_sym_float_token2] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2876), - [anon_sym_false] = ACTIONS(2876), - [aux_sym_string_token1] = ACTIONS(2878), - [aux_sym_string_token3] = ACTIONS(2878), + [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(2882), - [sym_identifier] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_package] = ACTIONS(2880), - [anon_sym_import] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2880), - [anon_sym_throw] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_cast] = ACTIONS(2880), - [anon_sym_DOLLARtype] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_untyped] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_this] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_AT_COLON] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2880), - [anon_sym_catch] = ACTIONS(2880), - [anon_sym_else] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_EQ_GT] = ACTIONS(2882), - [anon_sym_QMARK_QMARK] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2882), - [anon_sym_null] = ACTIONS(2880), - [anon_sym_macro] = ACTIONS(2880), - [anon_sym_abstract] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_public] = ACTIONS(2880), - [anon_sym_private] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_overload] = ACTIONS(2880), - [anon_sym_override] = ACTIONS(2880), - [anon_sym_final] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2880), - [anon_sym_var] = ACTIONS(2880), - [aux_sym_integer_token1] = ACTIONS(2880), - [aux_sym_integer_token2] = ACTIONS(2882), - [aux_sym_float_token1] = ACTIONS(2880), - [aux_sym_float_token2] = ACTIONS(2882), - [anon_sym_true] = ACTIONS(2880), - [anon_sym_false] = ACTIONS(2880), - [aux_sym_string_token1] = ACTIONS(2882), - [aux_sym_string_token3] = ACTIONS(2882), + [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(2614), - [sym_identifier] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_package] = ACTIONS(2612), - [anon_sym_import] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2612), - [anon_sym_throw] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_cast] = ACTIONS(2612), - [anon_sym_DOLLARtype] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_untyped] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_this] = ACTIONS(2612), - [anon_sym_AT] = ACTIONS(2612), - [anon_sym_AT_COLON] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2612), - [anon_sym_catch] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_do] = ACTIONS(2612), - [anon_sym_new] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2614), - [anon_sym_PERCENT] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2612), - [anon_sym_PLUS] = ACTIONS(2612), - [anon_sym_LT_LT] = ACTIONS(2614), - [anon_sym_GT_GT] = ACTIONS(2612), - [anon_sym_GT_GT_GT] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT] = ACTIONS(2612), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_EQ_GT] = ACTIONS(2614), - [anon_sym_QMARK_QMARK] = ACTIONS(2614), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2612), - [anon_sym_macro] = ACTIONS(2612), - [anon_sym_abstract] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_inline] = ACTIONS(2612), - [anon_sym_overload] = ACTIONS(2612), - [anon_sym_override] = ACTIONS(2612), - [anon_sym_final] = ACTIONS(2612), - [anon_sym_class] = ACTIONS(2612), - [anon_sym_interface] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2612), - [anon_sym_function] = ACTIONS(2612), - [anon_sym_var] = ACTIONS(2612), - [aux_sym_integer_token1] = ACTIONS(2612), - [aux_sym_integer_token2] = ACTIONS(2614), - [aux_sym_float_token1] = ACTIONS(2612), - [aux_sym_float_token2] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [aux_sym_string_token1] = ACTIONS(2614), - [aux_sym_string_token3] = ACTIONS(2614), + [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(2722), - [sym_identifier] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_package] = ACTIONS(2720), - [anon_sym_import] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2720), - [anon_sym_throw] = ACTIONS(2720), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_cast] = ACTIONS(2720), - [anon_sym_DOLLARtype] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2720), - [anon_sym_return] = ACTIONS(2720), - [anon_sym_untyped] = ACTIONS(2720), - [anon_sym_break] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_this] = ACTIONS(2720), - [anon_sym_AT] = ACTIONS(2720), - [anon_sym_AT_COLON] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2720), - [anon_sym_catch] = ACTIONS(2720), - [anon_sym_else] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_while] = ACTIONS(2720), - [anon_sym_do] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2720), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2720), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2720), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT] = ACTIONS(2720), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_EQ_GT] = ACTIONS(2722), - [anon_sym_QMARK_QMARK] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2722), - [anon_sym_null] = ACTIONS(2720), - [anon_sym_macro] = ACTIONS(2720), - [anon_sym_abstract] = ACTIONS(2720), - [anon_sym_static] = ACTIONS(2720), - [anon_sym_public] = ACTIONS(2720), - [anon_sym_private] = ACTIONS(2720), - [anon_sym_extern] = ACTIONS(2720), - [anon_sym_inline] = ACTIONS(2720), - [anon_sym_overload] = ACTIONS(2720), - [anon_sym_override] = ACTIONS(2720), - [anon_sym_final] = ACTIONS(2720), - [anon_sym_class] = ACTIONS(2720), - [anon_sym_interface] = ACTIONS(2720), - [anon_sym_enum] = ACTIONS(2720), - [anon_sym_typedef] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2720), - [anon_sym_var] = ACTIONS(2720), - [aux_sym_integer_token1] = ACTIONS(2720), - [aux_sym_integer_token2] = ACTIONS(2722), - [aux_sym_float_token1] = ACTIONS(2720), - [aux_sym_float_token2] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2720), - [anon_sym_false] = ACTIONS(2720), - [aux_sym_string_token1] = ACTIONS(2722), - [aux_sym_string_token3] = ACTIONS(2722), + [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(2628), - [sym_identifier] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2628), - [anon_sym_package] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_cast] = ACTIONS(2626), - [anon_sym_DOLLARtype] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_untyped] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_this] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2626), - [anon_sym_AT_COLON] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_catch] = ACTIONS(2626), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_GT_GT_GT] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2628), - [anon_sym_EQ_GT] = ACTIONS(2628), - [anon_sym_QMARK_QMARK] = ACTIONS(2628), - [anon_sym_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_macro] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_extern] = ACTIONS(2626), - [anon_sym_inline] = ACTIONS(2626), - [anon_sym_overload] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_typedef] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [aux_sym_integer_token1] = ACTIONS(2626), - [aux_sym_integer_token2] = ACTIONS(2628), - [aux_sym_float_token1] = ACTIONS(2626), - [aux_sym_float_token2] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [aux_sym_string_token1] = ACTIONS(2628), - [aux_sym_string_token3] = ACTIONS(2628), + [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(2806), - [sym_identifier] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_package] = ACTIONS(2804), - [anon_sym_import] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2804), - [anon_sym_throw] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_cast] = ACTIONS(2804), - [anon_sym_DOLLARtype] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_untyped] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_this] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_AT_COLON] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2804), - [anon_sym_catch] = ACTIONS(2804), - [anon_sym_else] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_do] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_EQ_GT] = ACTIONS(2806), - [anon_sym_QMARK_QMARK] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2804), - [anon_sym_macro] = ACTIONS(2804), - [anon_sym_abstract] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_public] = ACTIONS(2804), - [anon_sym_private] = ACTIONS(2804), - [anon_sym_extern] = ACTIONS(2804), - [anon_sym_inline] = ACTIONS(2804), - [anon_sym_overload] = ACTIONS(2804), - [anon_sym_override] = ACTIONS(2804), - [anon_sym_final] = ACTIONS(2804), - [anon_sym_class] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_typedef] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2804), - [anon_sym_var] = ACTIONS(2804), - [aux_sym_integer_token1] = ACTIONS(2804), - [aux_sym_integer_token2] = ACTIONS(2806), - [aux_sym_float_token1] = ACTIONS(2804), - [aux_sym_float_token2] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [aux_sym_string_token1] = ACTIONS(2806), - [aux_sym_string_token3] = ACTIONS(2806), + [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(2887), - [sym_identifier] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_package] = ACTIONS(2884), - [anon_sym_import] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_using] = ACTIONS(2884), - [anon_sym_throw] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_switch] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_cast] = ACTIONS(2884), - [anon_sym_DOLLARtype] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_untyped] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_this] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_AT_COLON] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2884), - [anon_sym_catch] = ACTIONS(2884), - [anon_sym_else] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [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(2884), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_EQ_GT] = ACTIONS(2887), - [anon_sym_QMARK_QMARK] = ACTIONS(2887), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2884), - [anon_sym_macro] = ACTIONS(2884), - [anon_sym_abstract] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_overload] = ACTIONS(2884), - [anon_sym_override] = ACTIONS(2884), - [anon_sym_final] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_interface] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2884), - [anon_sym_var] = ACTIONS(2884), - [aux_sym_integer_token1] = ACTIONS(2884), - [aux_sym_integer_token2] = ACTIONS(2887), - [aux_sym_float_token1] = ACTIONS(2884), - [aux_sym_float_token2] = ACTIONS(2887), - [anon_sym_true] = ACTIONS(2884), - [anon_sym_false] = ACTIONS(2884), - [aux_sym_string_token1] = ACTIONS(2887), - [aux_sym_string_token3] = ACTIONS(2887), + [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(2892), - [sym_identifier] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2892), - [anon_sym_package] = ACTIONS(2890), - [anon_sym_import] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_using] = ACTIONS(2890), - [anon_sym_throw] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_cast] = ACTIONS(2890), - [anon_sym_DOLLARtype] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_untyped] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_this] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2890), - [anon_sym_AT_COLON] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_catch] = ACTIONS(2890), - [anon_sym_else] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_GT_GT_GT] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_GT_EQ] = ACTIONS(2892), - [anon_sym_EQ_GT] = ACTIONS(2892), - [anon_sym_QMARK_QMARK] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_macro] = ACTIONS(2890), - [anon_sym_abstract] = ACTIONS(2890), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym_inline] = ACTIONS(2890), - [anon_sym_overload] = ACTIONS(2890), - [anon_sym_override] = ACTIONS(2890), - [anon_sym_final] = ACTIONS(2890), - [anon_sym_class] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_var] = ACTIONS(2890), - [aux_sym_integer_token1] = ACTIONS(2890), - [aux_sym_integer_token2] = ACTIONS(2892), - [aux_sym_float_token1] = ACTIONS(2890), - [aux_sym_float_token2] = ACTIONS(2892), - [anon_sym_true] = ACTIONS(2890), - [anon_sym_false] = ACTIONS(2890), - [aux_sym_string_token1] = ACTIONS(2892), - [aux_sym_string_token3] = ACTIONS(2892), + [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(2810), - [sym_identifier] = ACTIONS(2808), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_package] = ACTIONS(2808), - [anon_sym_import] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_using] = ACTIONS(2808), - [anon_sym_throw] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_cast] = ACTIONS(2808), - [anon_sym_DOLLARtype] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_untyped] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_this] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_AT_COLON] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2808), - [anon_sym_catch] = ACTIONS(2808), - [anon_sym_else] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_while] = ACTIONS(2808), - [anon_sym_do] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_EQ_GT] = ACTIONS(2810), - [anon_sym_QMARK_QMARK] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2808), - [anon_sym_macro] = ACTIONS(2808), - [anon_sym_abstract] = ACTIONS(2808), - [anon_sym_static] = ACTIONS(2808), - [anon_sym_public] = ACTIONS(2808), - [anon_sym_private] = ACTIONS(2808), - [anon_sym_extern] = ACTIONS(2808), - [anon_sym_inline] = ACTIONS(2808), - [anon_sym_overload] = ACTIONS(2808), - [anon_sym_override] = ACTIONS(2808), - [anon_sym_final] = ACTIONS(2808), - [anon_sym_class] = ACTIONS(2808), - [anon_sym_interface] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2808), - [anon_sym_var] = ACTIONS(2808), - [aux_sym_integer_token1] = ACTIONS(2808), - [aux_sym_integer_token2] = ACTIONS(2810), - [aux_sym_float_token1] = ACTIONS(2808), - [aux_sym_float_token2] = ACTIONS(2810), - [anon_sym_true] = ACTIONS(2808), - [anon_sym_false] = ACTIONS(2808), - [aux_sym_string_token1] = ACTIONS(2810), - [aux_sym_string_token3] = ACTIONS(2810), + [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(2896), - [sym_identifier] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2896), - [anon_sym_package] = ACTIONS(2894), - [anon_sym_import] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_using] = ACTIONS(2894), - [anon_sym_throw] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_cast] = ACTIONS(2894), - [anon_sym_DOLLARtype] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_untyped] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_this] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2894), - [anon_sym_AT_COLON] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_catch] = ACTIONS(2894), - [anon_sym_else] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_PERCENT] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2896), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_PIPE_PIPE] = ACTIONS(2896), - [anon_sym_EQ_EQ] = ACTIONS(2896), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2896), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2896), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_QMARK_QMARK] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_macro] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_extern] = ACTIONS(2894), - [anon_sym_inline] = ACTIONS(2894), - [anon_sym_overload] = ACTIONS(2894), - [anon_sym_override] = ACTIONS(2894), - [anon_sym_final] = ACTIONS(2894), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_var] = ACTIONS(2894), - [aux_sym_integer_token1] = ACTIONS(2894), - [aux_sym_integer_token2] = ACTIONS(2896), - [aux_sym_float_token1] = ACTIONS(2894), - [aux_sym_float_token2] = ACTIONS(2896), - [anon_sym_true] = ACTIONS(2894), - [anon_sym_false] = ACTIONS(2894), - [aux_sym_string_token1] = ACTIONS(2896), - [aux_sym_string_token3] = ACTIONS(2896), + [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(2900), - [sym_identifier] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_package] = ACTIONS(2898), - [anon_sym_import] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_throw] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_cast] = ACTIONS(2898), - [anon_sym_DOLLARtype] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_untyped] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_this] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2898), - [anon_sym_AT_COLON] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_catch] = ACTIONS(2898), - [anon_sym_else] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2900), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_EQ_EQ] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2900), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(2900), - [anon_sym_QMARK_QMARK] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_macro] = ACTIONS(2898), - [anon_sym_abstract] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym_inline] = ACTIONS(2898), - [anon_sym_overload] = ACTIONS(2898), - [anon_sym_override] = ACTIONS(2898), - [anon_sym_final] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2898), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_var] = ACTIONS(2898), - [aux_sym_integer_token1] = ACTIONS(2898), - [aux_sym_integer_token2] = ACTIONS(2900), - [aux_sym_float_token1] = ACTIONS(2898), - [aux_sym_float_token2] = ACTIONS(2900), - [anon_sym_true] = ACTIONS(2898), - [anon_sym_false] = ACTIONS(2898), - [aux_sym_string_token1] = ACTIONS(2900), - [aux_sym_string_token3] = ACTIONS(2900), + [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(2904), - [sym_identifier] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2904), - [anon_sym_package] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_cast] = ACTIONS(2902), - [anon_sym_DOLLARtype] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_untyped] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_this] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2902), - [anon_sym_AT_COLON] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_catch] = ACTIONS(2902), - [anon_sym_else] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2904), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2904), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2904), - [anon_sym_EQ_GT] = ACTIONS(2904), - [anon_sym_QMARK_QMARK] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2904), - [anon_sym_null] = ACTIONS(2902), - [anon_sym_macro] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_extern] = ACTIONS(2902), - [anon_sym_inline] = ACTIONS(2902), - [anon_sym_overload] = ACTIONS(2902), - [anon_sym_override] = ACTIONS(2902), - [anon_sym_final] = ACTIONS(2902), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [aux_sym_integer_token1] = ACTIONS(2902), - [aux_sym_integer_token2] = ACTIONS(2904), - [aux_sym_float_token1] = ACTIONS(2902), - [aux_sym_float_token2] = ACTIONS(2904), - [anon_sym_true] = ACTIONS(2902), - [anon_sym_false] = ACTIONS(2902), - [aux_sym_string_token1] = ACTIONS(2904), - [aux_sym_string_token3] = ACTIONS(2904), + [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(2814), - [sym_identifier] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_package] = ACTIONS(2812), - [anon_sym_import] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_using] = ACTIONS(2812), - [anon_sym_throw] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_switch] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_cast] = ACTIONS(2812), - [anon_sym_DOLLARtype] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_untyped] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_this] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_AT_COLON] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2812), - [anon_sym_catch] = ACTIONS(2812), - [anon_sym_else] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_while] = ACTIONS(2812), - [anon_sym_do] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_EQ_GT] = ACTIONS(2814), - [anon_sym_QMARK_QMARK] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2814), - [anon_sym_null] = ACTIONS(2812), - [anon_sym_macro] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_extern] = ACTIONS(2812), - [anon_sym_inline] = ACTIONS(2812), - [anon_sym_overload] = ACTIONS(2812), - [anon_sym_override] = ACTIONS(2812), - [anon_sym_final] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2812), - [anon_sym_var] = ACTIONS(2812), - [aux_sym_integer_token1] = ACTIONS(2812), - [aux_sym_integer_token2] = ACTIONS(2814), - [aux_sym_float_token1] = ACTIONS(2812), - [aux_sym_float_token2] = ACTIONS(2814), - [anon_sym_true] = ACTIONS(2812), - [anon_sym_false] = ACTIONS(2812), - [aux_sym_string_token1] = ACTIONS(2814), - [aux_sym_string_token3] = ACTIONS(2814), + [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(2908), - [sym_identifier] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2908), - [anon_sym_package] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_cast] = ACTIONS(2906), - [anon_sym_DOLLARtype] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_untyped] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_this] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2906), - [anon_sym_AT_COLON] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_catch] = ACTIONS(2906), - [anon_sym_else] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2908), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_EQ_EQ] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2908), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2908), - [anon_sym_EQ_GT] = ACTIONS(2908), - [anon_sym_QMARK_QMARK] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2908), - [anon_sym_null] = ACTIONS(2906), - [anon_sym_macro] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_extern] = ACTIONS(2906), - [anon_sym_inline] = ACTIONS(2906), - [anon_sym_overload] = ACTIONS(2906), - [anon_sym_override] = ACTIONS(2906), - [anon_sym_final] = ACTIONS(2906), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_typedef] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [aux_sym_integer_token1] = ACTIONS(2906), - [aux_sym_integer_token2] = ACTIONS(2908), - [aux_sym_float_token1] = ACTIONS(2906), - [aux_sym_float_token2] = ACTIONS(2908), - [anon_sym_true] = ACTIONS(2906), - [anon_sym_false] = ACTIONS(2906), - [aux_sym_string_token1] = ACTIONS(2908), - [aux_sym_string_token3] = ACTIONS(2908), + [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(2912), - [sym_identifier] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2912), - [anon_sym_package] = ACTIONS(2910), - [anon_sym_import] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_using] = ACTIONS(2910), - [anon_sym_throw] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_cast] = ACTIONS(2910), - [anon_sym_DOLLARtype] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_untyped] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_this] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2910), - [anon_sym_AT_COLON] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2910), - [anon_sym_catch] = ACTIONS(2910), - [anon_sym_else] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_do] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_EQ_GT] = ACTIONS(2912), - [anon_sym_QMARK_QMARK] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2912), - [anon_sym_null] = ACTIONS(2910), - [anon_sym_macro] = ACTIONS(2910), - [anon_sym_abstract] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [anon_sym_inline] = ACTIONS(2910), - [anon_sym_overload] = ACTIONS(2910), - [anon_sym_override] = ACTIONS(2910), - [anon_sym_final] = ACTIONS(2910), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2910), - [anon_sym_var] = ACTIONS(2910), - [aux_sym_integer_token1] = ACTIONS(2910), - [aux_sym_integer_token2] = ACTIONS(2912), - [aux_sym_float_token1] = ACTIONS(2910), - [aux_sym_float_token2] = ACTIONS(2912), - [anon_sym_true] = ACTIONS(2910), - [anon_sym_false] = ACTIONS(2910), - [aux_sym_string_token1] = ACTIONS(2912), - [aux_sym_string_token3] = ACTIONS(2912), + [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(2818), - [sym_identifier] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2818), - [anon_sym_package] = ACTIONS(2816), - [anon_sym_import] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2816), - [anon_sym_throw] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_cast] = ACTIONS(2816), - [anon_sym_DOLLARtype] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_untyped] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_this] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_AT_COLON] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2816), - [anon_sym_catch] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2816), - [anon_sym_do] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_EQ_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_EQ_GT] = ACTIONS(2818), - [anon_sym_QMARK_QMARK] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2818), - [anon_sym_null] = ACTIONS(2816), - [anon_sym_macro] = ACTIONS(2816), - [anon_sym_abstract] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_public] = ACTIONS(2816), - [anon_sym_private] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2816), - [anon_sym_inline] = ACTIONS(2816), - [anon_sym_overload] = ACTIONS(2816), - [anon_sym_override] = ACTIONS(2816), - [anon_sym_final] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_typedef] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2816), - [anon_sym_var] = ACTIONS(2816), - [aux_sym_integer_token1] = ACTIONS(2816), - [aux_sym_integer_token2] = ACTIONS(2818), - [aux_sym_float_token1] = ACTIONS(2816), - [aux_sym_float_token2] = ACTIONS(2818), - [anon_sym_true] = ACTIONS(2816), - [anon_sym_false] = ACTIONS(2816), - [aux_sym_string_token1] = ACTIONS(2818), - [aux_sym_string_token3] = ACTIONS(2818), + [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(2916), - [sym_identifier] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2916), - [anon_sym_package] = ACTIONS(2914), - [anon_sym_import] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_using] = ACTIONS(2914), - [anon_sym_throw] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_cast] = ACTIONS(2914), - [anon_sym_DOLLARtype] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_untyped] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_this] = ACTIONS(2914), - [anon_sym_AT] = ACTIONS(2914), - [anon_sym_AT_COLON] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2914), - [anon_sym_catch] = ACTIONS(2914), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2916), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_EQ_GT] = ACTIONS(2916), - [anon_sym_QMARK_QMARK] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2914), - [anon_sym_macro] = ACTIONS(2914), - [anon_sym_abstract] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_overload] = ACTIONS(2914), - [anon_sym_override] = ACTIONS(2914), - [anon_sym_final] = ACTIONS(2914), - [anon_sym_class] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2914), - [anon_sym_var] = ACTIONS(2914), - [aux_sym_integer_token1] = ACTIONS(2914), - [aux_sym_integer_token2] = ACTIONS(2916), - [aux_sym_float_token1] = ACTIONS(2914), - [aux_sym_float_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2914), - [anon_sym_false] = ACTIONS(2914), - [aux_sym_string_token1] = ACTIONS(2916), - [aux_sym_string_token3] = ACTIONS(2916), + [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(2920), - [sym_identifier] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2920), - [anon_sym_package] = ACTIONS(2918), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_using] = ACTIONS(2918), - [anon_sym_throw] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_cast] = ACTIONS(2918), - [anon_sym_DOLLARtype] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_untyped] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_this] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2918), - [anon_sym_AT_COLON] = ACTIONS(2920), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_catch] = ACTIONS(2918), - [anon_sym_else] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2920), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2920), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2920), - [anon_sym_EQ_GT] = ACTIONS(2920), - [anon_sym_QMARK_QMARK] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_macro] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_extern] = ACTIONS(2918), - [anon_sym_inline] = ACTIONS(2918), - [anon_sym_overload] = ACTIONS(2918), - [anon_sym_override] = ACTIONS(2918), - [anon_sym_final] = ACTIONS(2918), - [anon_sym_class] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_typedef] = ACTIONS(2918), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2918), - [aux_sym_integer_token1] = ACTIONS(2918), - [aux_sym_integer_token2] = ACTIONS(2920), - [aux_sym_float_token1] = ACTIONS(2918), - [aux_sym_float_token2] = ACTIONS(2920), - [anon_sym_true] = ACTIONS(2918), - [anon_sym_false] = ACTIONS(2918), - [aux_sym_string_token1] = ACTIONS(2920), - [aux_sym_string_token3] = ACTIONS(2920), + [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(2924), - [sym_identifier] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2924), - [anon_sym_package] = ACTIONS(2922), - [anon_sym_import] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_using] = ACTIONS(2922), - [anon_sym_throw] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_switch] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_cast] = ACTIONS(2922), - [anon_sym_DOLLARtype] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_untyped] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_this] = ACTIONS(2922), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_AT_COLON] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_catch] = ACTIONS(2922), - [anon_sym_else] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_GT_GT_GT] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_CARET] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_EQ_EQ] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(2924), - [anon_sym_QMARK_QMARK] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2922), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_macro] = ACTIONS(2922), - [anon_sym_abstract] = ACTIONS(2922), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_public] = ACTIONS(2922), - [anon_sym_private] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(2922), - [anon_sym_inline] = ACTIONS(2922), - [anon_sym_overload] = ACTIONS(2922), - [anon_sym_override] = ACTIONS(2922), - [anon_sym_final] = ACTIONS(2922), - [anon_sym_class] = ACTIONS(2922), - [anon_sym_interface] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_typedef] = ACTIONS(2922), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_var] = ACTIONS(2922), - [aux_sym_integer_token1] = ACTIONS(2922), - [aux_sym_integer_token2] = ACTIONS(2924), - [aux_sym_float_token1] = ACTIONS(2922), - [aux_sym_float_token2] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2922), - [anon_sym_false] = ACTIONS(2922), - [aux_sym_string_token1] = ACTIONS(2924), - [aux_sym_string_token3] = ACTIONS(2924), + [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(2928), - [sym_identifier] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2928), - [anon_sym_package] = ACTIONS(2926), - [anon_sym_import] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_using] = ACTIONS(2926), - [anon_sym_throw] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_switch] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_cast] = ACTIONS(2926), - [anon_sym_DOLLARtype] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_untyped] = ACTIONS(2926), - [anon_sym_break] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_this] = ACTIONS(2926), - [anon_sym_AT] = ACTIONS(2926), - [anon_sym_AT_COLON] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_catch] = ACTIONS(2926), - [anon_sym_else] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_PLUS] = ACTIONS(2928), - [anon_sym_DASH_DASH] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_GT_GT_GT] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_EQ_EQ] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_LT_EQ] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_GT_EQ] = ACTIONS(2928), - [anon_sym_EQ_GT] = ACTIONS(2928), - [anon_sym_QMARK_QMARK] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_macro] = ACTIONS(2926), - [anon_sym_abstract] = ACTIONS(2926), - [anon_sym_static] = ACTIONS(2926), - [anon_sym_public] = ACTIONS(2926), - [anon_sym_private] = ACTIONS(2926), - [anon_sym_extern] = ACTIONS(2926), - [anon_sym_inline] = ACTIONS(2926), - [anon_sym_overload] = ACTIONS(2926), - [anon_sym_override] = ACTIONS(2926), - [anon_sym_final] = ACTIONS(2926), - [anon_sym_class] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2926), - [anon_sym_enum] = ACTIONS(2926), - [anon_sym_typedef] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_var] = ACTIONS(2926), - [aux_sym_integer_token1] = ACTIONS(2926), - [aux_sym_integer_token2] = ACTIONS(2928), - [aux_sym_float_token1] = ACTIONS(2926), - [aux_sym_float_token2] = ACTIONS(2928), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [aux_sym_string_token1] = ACTIONS(2928), - [aux_sym_string_token3] = ACTIONS(2928), + [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(2932), - [sym_identifier] = ACTIONS(2930), - [anon_sym_POUND] = ACTIONS(2932), - [anon_sym_package] = ACTIONS(2930), - [anon_sym_import] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_using] = ACTIONS(2930), - [anon_sym_throw] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_cast] = ACTIONS(2930), - [anon_sym_DOLLARtype] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_untyped] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_this] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2930), - [anon_sym_AT_COLON] = ACTIONS(2932), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_catch] = ACTIONS(2930), - [anon_sym_else] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_PERCENT] = ACTIONS(2932), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_LT_LT] = ACTIONS(2932), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_GT_GT_GT] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_AMP_AMP] = ACTIONS(2932), - [anon_sym_PIPE_PIPE] = ACTIONS(2932), - [anon_sym_EQ_EQ] = ACTIONS(2932), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_LT_EQ] = ACTIONS(2932), - [anon_sym_GT] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2932), - [anon_sym_EQ_GT] = ACTIONS(2932), - [anon_sym_QMARK_QMARK] = ACTIONS(2932), - [anon_sym_EQ] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2932), - [anon_sym_null] = ACTIONS(2930), - [anon_sym_macro] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_overload] = ACTIONS(2930), - [anon_sym_override] = ACTIONS(2930), - [anon_sym_final] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_interface] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_typedef] = ACTIONS(2930), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_var] = ACTIONS(2930), - [aux_sym_integer_token1] = ACTIONS(2930), - [aux_sym_integer_token2] = ACTIONS(2932), - [aux_sym_float_token1] = ACTIONS(2930), - [aux_sym_float_token2] = ACTIONS(2932), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [aux_sym_string_token1] = ACTIONS(2932), - [aux_sym_string_token3] = ACTIONS(2932), + [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] = { - [sym_else_clause] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), + [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(2936), - [sym_identifier] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2936), - [anon_sym_package] = ACTIONS(2934), - [anon_sym_import] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2936), - [anon_sym_using] = ACTIONS(2934), - [anon_sym_throw] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_cast] = ACTIONS(2934), - [anon_sym_DOLLARtype] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_untyped] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_this] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2934), - [anon_sym_AT_COLON] = ACTIONS(2936), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_catch] = ACTIONS(2934), - [anon_sym_else] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_GT_GT_GT] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [anon_sym_EQ_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2936), - [anon_sym_EQ_GT] = ACTIONS(2936), - [anon_sym_QMARK_QMARK] = ACTIONS(2936), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_macro] = ACTIONS(2934), - [anon_sym_abstract] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_extern] = ACTIONS(2934), - [anon_sym_inline] = ACTIONS(2934), - [anon_sym_overload] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_interface] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_typedef] = ACTIONS(2934), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_var] = ACTIONS(2934), - [aux_sym_integer_token1] = ACTIONS(2934), - [aux_sym_integer_token2] = ACTIONS(2936), - [aux_sym_float_token1] = ACTIONS(2934), - [aux_sym_float_token2] = ACTIONS(2936), - [anon_sym_true] = ACTIONS(2934), - [anon_sym_false] = ACTIONS(2934), - [aux_sym_string_token1] = ACTIONS(2936), - [aux_sym_string_token3] = ACTIONS(2936), + [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(2822), - [sym_identifier] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2822), - [anon_sym_package] = ACTIONS(2820), - [anon_sym_import] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_cast] = ACTIONS(2820), - [anon_sym_DOLLARtype] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_untyped] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_this] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_AT_COLON] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_EQ_EQ] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2822), - [anon_sym_EQ_GT] = ACTIONS(2822), - [anon_sym_QMARK_QMARK] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2822), - [anon_sym_null] = ACTIONS(2820), - [anon_sym_macro] = ACTIONS(2820), - [anon_sym_abstract] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym_overload] = ACTIONS(2820), - [anon_sym_override] = ACTIONS(2820), - [anon_sym_final] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2820), - [anon_sym_var] = ACTIONS(2820), - [aux_sym_integer_token1] = ACTIONS(2820), - [aux_sym_integer_token2] = ACTIONS(2822), - [aux_sym_float_token1] = ACTIONS(2820), - [aux_sym_float_token2] = ACTIONS(2822), - [anon_sym_true] = ACTIONS(2820), - [anon_sym_false] = ACTIONS(2820), - [aux_sym_string_token1] = ACTIONS(2822), - [aux_sym_string_token3] = ACTIONS(2822), + [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(2940), - [sym_identifier] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2940), - [anon_sym_package] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2940), - [anon_sym_using] = ACTIONS(2938), - [anon_sym_throw] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_cast] = ACTIONS(2938), - [anon_sym_DOLLARtype] = ACTIONS(2940), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_untyped] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_this] = ACTIONS(2938), - [anon_sym_AT] = ACTIONS(2938), - [anon_sym_AT_COLON] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2938), - [anon_sym_catch] = ACTIONS(2938), - [anon_sym_else] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2940), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_PERCENT] = ACTIONS(2940), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_LT_LT] = ACTIONS(2940), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_GT_GT_GT] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2940), - [anon_sym_AMP_AMP] = ACTIONS(2940), - [anon_sym_PIPE_PIPE] = ACTIONS(2940), - [anon_sym_EQ_EQ] = ACTIONS(2940), - [anon_sym_BANG_EQ] = ACTIONS(2940), - [anon_sym_LT] = ACTIONS(2938), - [anon_sym_LT_EQ] = ACTIONS(2940), - [anon_sym_GT] = ACTIONS(2938), - [anon_sym_GT_EQ] = ACTIONS(2940), - [anon_sym_EQ_GT] = ACTIONS(2940), - [anon_sym_QMARK_QMARK] = ACTIONS(2940), - [anon_sym_EQ] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2940), - [anon_sym_null] = ACTIONS(2938), - [anon_sym_macro] = ACTIONS(2938), - [anon_sym_abstract] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_extern] = ACTIONS(2938), - [anon_sym_inline] = ACTIONS(2938), - [anon_sym_overload] = ACTIONS(2938), - [anon_sym_override] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_class] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_typedef] = ACTIONS(2938), - [anon_sym_function] = ACTIONS(2938), - [anon_sym_var] = ACTIONS(2938), - [aux_sym_integer_token1] = ACTIONS(2938), - [aux_sym_integer_token2] = ACTIONS(2940), - [aux_sym_float_token1] = ACTIONS(2938), - [aux_sym_float_token2] = ACTIONS(2940), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [aux_sym_string_token1] = ACTIONS(2940), - [aux_sym_string_token3] = ACTIONS(2940), + [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(2944), - [sym_identifier] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2944), - [anon_sym_package] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_STAR] = ACTIONS(2944), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_cast] = ACTIONS(2942), - [anon_sym_DOLLARtype] = ACTIONS(2944), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_untyped] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_this] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2942), - [anon_sym_AT_COLON] = ACTIONS(2944), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_catch] = ACTIONS(2942), - [anon_sym_else] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [anon_sym_PERCENT] = ACTIONS(2944), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_LT_LT] = ACTIONS(2944), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_GT_GT_GT] = ACTIONS(2944), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2944), - [anon_sym_AMP_AMP] = ACTIONS(2944), - [anon_sym_PIPE_PIPE] = ACTIONS(2944), - [anon_sym_EQ_EQ] = ACTIONS(2944), - [anon_sym_BANG_EQ] = ACTIONS(2944), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2944), - [anon_sym_GT] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(2944), - [anon_sym_QMARK_QMARK] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2944), - [anon_sym_null] = ACTIONS(2942), - [anon_sym_macro] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_extern] = ACTIONS(2942), - [anon_sym_inline] = ACTIONS(2942), - [anon_sym_overload] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [anon_sym_typedef] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [aux_sym_integer_token1] = ACTIONS(2942), - [aux_sym_integer_token2] = ACTIONS(2944), - [aux_sym_float_token1] = ACTIONS(2942), - [aux_sym_float_token2] = ACTIONS(2944), - [anon_sym_true] = ACTIONS(2942), - [anon_sym_false] = ACTIONS(2942), - [aux_sym_string_token1] = ACTIONS(2944), - [aux_sym_string_token3] = ACTIONS(2944), + [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(2948), - [sym_identifier] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(2948), - [anon_sym_package] = ACTIONS(2946), - [anon_sym_import] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2948), - [anon_sym_using] = ACTIONS(2946), - [anon_sym_throw] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_cast] = ACTIONS(2946), - [anon_sym_DOLLARtype] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_untyped] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_this] = ACTIONS(2946), - [anon_sym_AT] = ACTIONS(2946), - [anon_sym_AT_COLON] = ACTIONS(2948), - [anon_sym_try] = ACTIONS(2946), - [anon_sym_catch] = ACTIONS(2946), - [anon_sym_else] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_while] = ACTIONS(2946), - [anon_sym_do] = ACTIONS(2946), - [anon_sym_new] = ACTIONS(2946), - [anon_sym_TILDE] = ACTIONS(2948), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [anon_sym_PERCENT] = ACTIONS(2948), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_LT_LT] = ACTIONS(2948), - [anon_sym_GT_GT] = ACTIONS(2946), - [anon_sym_GT_GT_GT] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_CARET] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_LT_EQ] = ACTIONS(2948), - [anon_sym_GT] = ACTIONS(2946), - [anon_sym_GT_EQ] = ACTIONS(2948), - [anon_sym_EQ_GT] = ACTIONS(2948), - [anon_sym_QMARK_QMARK] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2946), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2946), - [anon_sym_macro] = ACTIONS(2946), - [anon_sym_abstract] = ACTIONS(2946), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_extern] = ACTIONS(2946), - [anon_sym_inline] = ACTIONS(2946), - [anon_sym_overload] = ACTIONS(2946), - [anon_sym_override] = ACTIONS(2946), - [anon_sym_final] = ACTIONS(2946), - [anon_sym_class] = ACTIONS(2946), - [anon_sym_interface] = ACTIONS(2946), - [anon_sym_enum] = ACTIONS(2946), - [anon_sym_typedef] = ACTIONS(2946), - [anon_sym_function] = ACTIONS(2946), - [anon_sym_var] = ACTIONS(2946), - [aux_sym_integer_token1] = ACTIONS(2946), - [aux_sym_integer_token2] = ACTIONS(2948), - [aux_sym_float_token1] = ACTIONS(2946), - [aux_sym_float_token2] = ACTIONS(2948), - [anon_sym_true] = ACTIONS(2946), - [anon_sym_false] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [aux_sym_string_token3] = ACTIONS(2948), + [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(2952), - [sym_identifier] = ACTIONS(2950), - [anon_sym_POUND] = ACTIONS(2952), - [anon_sym_package] = ACTIONS(2950), - [anon_sym_import] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2952), - [anon_sym_using] = ACTIONS(2950), - [anon_sym_throw] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_cast] = ACTIONS(2950), - [anon_sym_DOLLARtype] = ACTIONS(2952), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_untyped] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_this] = ACTIONS(2950), - [anon_sym_AT] = ACTIONS(2950), - [anon_sym_AT_COLON] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_catch] = ACTIONS(2950), - [anon_sym_else] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2952), - [anon_sym_DASH_DASH] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_LT_LT] = ACTIONS(2952), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_GT_GT_GT] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_CARET] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_EQ_GT] = ACTIONS(2952), - [anon_sym_QMARK_QMARK] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2952), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_macro] = ACTIONS(2950), - [anon_sym_abstract] = ACTIONS(2950), - [anon_sym_static] = ACTIONS(2950), - [anon_sym_public] = ACTIONS(2950), - [anon_sym_private] = ACTIONS(2950), - [anon_sym_extern] = ACTIONS(2950), - [anon_sym_inline] = ACTIONS(2950), - [anon_sym_overload] = ACTIONS(2950), - [anon_sym_override] = ACTIONS(2950), - [anon_sym_final] = ACTIONS(2950), - [anon_sym_class] = ACTIONS(2950), - [anon_sym_interface] = ACTIONS(2950), - [anon_sym_enum] = ACTIONS(2950), - [anon_sym_typedef] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_var] = ACTIONS(2950), - [aux_sym_integer_token1] = ACTIONS(2950), - [aux_sym_integer_token2] = ACTIONS(2952), - [aux_sym_float_token1] = ACTIONS(2950), - [aux_sym_float_token2] = ACTIONS(2952), - [anon_sym_true] = ACTIONS(2950), - [anon_sym_false] = ACTIONS(2950), - [aux_sym_string_token1] = ACTIONS(2952), - [aux_sym_string_token3] = ACTIONS(2952), + [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(2956), - [sym_identifier] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2956), - [anon_sym_package] = ACTIONS(2954), - [anon_sym_import] = ACTIONS(2954), - [anon_sym_STAR] = ACTIONS(2956), - [anon_sym_using] = ACTIONS(2954), - [anon_sym_throw] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_switch] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_cast] = ACTIONS(2954), - [anon_sym_DOLLARtype] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_untyped] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_this] = ACTIONS(2954), - [anon_sym_AT] = ACTIONS(2954), - [anon_sym_AT_COLON] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2954), - [anon_sym_catch] = ACTIONS(2954), - [anon_sym_else] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2954), - [anon_sym_do] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2954), - [anon_sym_GT_GT_GT] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2954), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_EQ_EQ] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_LT_EQ] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2954), - [anon_sym_GT_EQ] = ACTIONS(2956), - [anon_sym_EQ_GT] = ACTIONS(2956), - [anon_sym_QMARK_QMARK] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2954), - [anon_sym_macro] = ACTIONS(2954), - [anon_sym_abstract] = ACTIONS(2954), - [anon_sym_static] = ACTIONS(2954), - [anon_sym_public] = ACTIONS(2954), - [anon_sym_private] = ACTIONS(2954), - [anon_sym_extern] = ACTIONS(2954), - [anon_sym_inline] = ACTIONS(2954), - [anon_sym_overload] = ACTIONS(2954), - [anon_sym_override] = ACTIONS(2954), - [anon_sym_final] = ACTIONS(2954), - [anon_sym_class] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_enum] = ACTIONS(2954), - [anon_sym_typedef] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2954), - [anon_sym_var] = ACTIONS(2954), - [aux_sym_integer_token1] = ACTIONS(2954), - [aux_sym_integer_token2] = ACTIONS(2956), - [aux_sym_float_token1] = ACTIONS(2954), - [aux_sym_float_token2] = ACTIONS(2956), - [anon_sym_true] = ACTIONS(2954), - [anon_sym_false] = ACTIONS(2954), - [aux_sym_string_token1] = ACTIONS(2956), - [aux_sym_string_token3] = ACTIONS(2956), + [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(2960), - [sym_identifier] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2960), - [anon_sym_package] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2960), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_cast] = ACTIONS(2958), - [anon_sym_DOLLARtype] = ACTIONS(2960), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_untyped] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_this] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2958), - [anon_sym_AT_COLON] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_catch] = ACTIONS(2958), - [anon_sym_else] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_LT_LT] = ACTIONS(2960), - [anon_sym_GT_GT] = ACTIONS(2958), - [anon_sym_GT_GT_GT] = ACTIONS(2960), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_EQ_EQ] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_LT_EQ] = ACTIONS(2960), - [anon_sym_GT] = ACTIONS(2958), - [anon_sym_GT_EQ] = ACTIONS(2960), - [anon_sym_EQ_GT] = ACTIONS(2960), - [anon_sym_QMARK_QMARK] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2960), - [anon_sym_null] = ACTIONS(2958), - [anon_sym_macro] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_extern] = ACTIONS(2958), - [anon_sym_inline] = ACTIONS(2958), - [anon_sym_overload] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_final] = ACTIONS(2958), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [anon_sym_typedef] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [aux_sym_integer_token1] = ACTIONS(2958), - [aux_sym_integer_token2] = ACTIONS(2960), - [aux_sym_float_token1] = ACTIONS(2958), - [aux_sym_float_token2] = ACTIONS(2960), - [anon_sym_true] = ACTIONS(2958), - [anon_sym_false] = ACTIONS(2958), - [aux_sym_string_token1] = ACTIONS(2960), - [aux_sym_string_token3] = ACTIONS(2960), + [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(2964), - [sym_identifier] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2964), - [anon_sym_package] = ACTIONS(2962), - [anon_sym_import] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2964), - [anon_sym_using] = ACTIONS(2962), - [anon_sym_throw] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_switch] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_cast] = ACTIONS(2962), - [anon_sym_DOLLARtype] = ACTIONS(2964), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_untyped] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_this] = ACTIONS(2962), - [anon_sym_AT] = ACTIONS(2962), - [anon_sym_AT_COLON] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2962), - [anon_sym_catch] = ACTIONS(2962), - [anon_sym_else] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_while] = ACTIONS(2962), - [anon_sym_do] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2964), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_LT_LT] = ACTIONS(2964), - [anon_sym_GT_GT] = ACTIONS(2962), - [anon_sym_GT_GT_GT] = ACTIONS(2964), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_CARET] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_EQ_EQ] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_LT_EQ] = ACTIONS(2964), - [anon_sym_GT] = ACTIONS(2962), - [anon_sym_GT_EQ] = ACTIONS(2964), - [anon_sym_EQ_GT] = ACTIONS(2964), - [anon_sym_QMARK_QMARK] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2964), - [anon_sym_null] = ACTIONS(2962), - [anon_sym_macro] = ACTIONS(2962), - [anon_sym_abstract] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(2962), - [anon_sym_public] = ACTIONS(2962), - [anon_sym_private] = ACTIONS(2962), - [anon_sym_extern] = ACTIONS(2962), - [anon_sym_inline] = ACTIONS(2962), - [anon_sym_overload] = ACTIONS(2962), - [anon_sym_override] = ACTIONS(2962), - [anon_sym_final] = ACTIONS(2962), - [anon_sym_class] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2962), - [anon_sym_typedef] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2962), - [anon_sym_var] = ACTIONS(2962), - [aux_sym_integer_token1] = ACTIONS(2962), - [aux_sym_integer_token2] = ACTIONS(2964), - [aux_sym_float_token1] = ACTIONS(2962), - [aux_sym_float_token2] = ACTIONS(2964), - [anon_sym_true] = ACTIONS(2962), - [anon_sym_false] = ACTIONS(2962), - [aux_sym_string_token1] = ACTIONS(2964), - [aux_sym_string_token3] = ACTIONS(2964), + [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(2968), - [sym_identifier] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2968), - [anon_sym_package] = ACTIONS(2966), - [anon_sym_import] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_using] = ACTIONS(2966), - [anon_sym_throw] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_switch] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_cast] = ACTIONS(2966), - [anon_sym_DOLLARtype] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_untyped] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_this] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_AT_COLON] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_catch] = ACTIONS(2966), - [anon_sym_else] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2968), - [anon_sym_DASH_DASH] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_LT_LT] = ACTIONS(2968), - [anon_sym_GT_GT] = ACTIONS(2966), - [anon_sym_GT_GT_GT] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_CARET] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_EQ_EQ] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_LT_EQ] = ACTIONS(2968), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_GT_EQ] = ACTIONS(2968), - [anon_sym_EQ_GT] = ACTIONS(2968), - [anon_sym_QMARK_QMARK] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_macro] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_extern] = ACTIONS(2966), - [anon_sym_inline] = ACTIONS(2966), - [anon_sym_overload] = ACTIONS(2966), - [anon_sym_override] = ACTIONS(2966), - [anon_sym_final] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), - [anon_sym_typedef] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_var] = ACTIONS(2966), - [aux_sym_integer_token1] = ACTIONS(2966), - [aux_sym_integer_token2] = ACTIONS(2968), - [aux_sym_float_token1] = ACTIONS(2966), - [aux_sym_float_token2] = ACTIONS(2968), - [anon_sym_true] = ACTIONS(2966), - [anon_sym_false] = ACTIONS(2966), - [aux_sym_string_token1] = ACTIONS(2968), - [aux_sym_string_token3] = ACTIONS(2968), + [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(2656), - [sym_identifier] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2656), - [anon_sym_package] = ACTIONS(2654), - [anon_sym_import] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2656), - [anon_sym_using] = ACTIONS(2654), - [anon_sym_throw] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_switch] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_cast] = ACTIONS(2654), - [anon_sym_DOLLARtype] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_untyped] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2656), - [anon_sym_this] = ACTIONS(2654), - [anon_sym_AT] = ACTIONS(2654), - [anon_sym_AT_COLON] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_catch] = ACTIONS(2654), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_PLUS_PLUS] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2656), - [anon_sym_PERCENT] = ACTIONS(2656), - [anon_sym_SLASH] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_LT_LT] = ACTIONS(2656), - [anon_sym_GT_GT] = ACTIONS(2654), - [anon_sym_GT_GT_GT] = ACTIONS(2656), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_CARET] = ACTIONS(2656), - [anon_sym_AMP_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2656), - [anon_sym_EQ_EQ] = ACTIONS(2656), - [anon_sym_BANG_EQ] = ACTIONS(2656), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_LT_EQ] = ACTIONS(2656), - [anon_sym_GT] = ACTIONS(2654), - [anon_sym_GT_EQ] = ACTIONS(2656), - [anon_sym_EQ_GT] = ACTIONS(2656), - [anon_sym_QMARK_QMARK] = ACTIONS(2656), - [anon_sym_EQ] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), - [anon_sym_null] = ACTIONS(2654), - [anon_sym_macro] = ACTIONS(2654), - [anon_sym_abstract] = ACTIONS(2654), - [anon_sym_static] = ACTIONS(2654), - [anon_sym_public] = ACTIONS(2654), - [anon_sym_private] = ACTIONS(2654), - [anon_sym_extern] = ACTIONS(2654), - [anon_sym_inline] = ACTIONS(2654), - [anon_sym_overload] = ACTIONS(2654), - [anon_sym_override] = ACTIONS(2654), - [anon_sym_final] = ACTIONS(2654), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_interface] = ACTIONS(2654), - [anon_sym_enum] = ACTIONS(2654), - [anon_sym_typedef] = ACTIONS(2654), - [anon_sym_function] = ACTIONS(2654), - [anon_sym_var] = ACTIONS(2654), - [aux_sym_integer_token1] = ACTIONS(2654), - [aux_sym_integer_token2] = ACTIONS(2656), - [aux_sym_float_token1] = ACTIONS(2654), - [aux_sym_float_token2] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [aux_sym_string_token1] = ACTIONS(2656), - [aux_sym_string_token3] = ACTIONS(2656), + [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(2972), - [sym_identifier] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2972), - [anon_sym_package] = ACTIONS(2970), - [anon_sym_import] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_throw] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_switch] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_cast] = ACTIONS(2970), - [anon_sym_DOLLARtype] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_untyped] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_this] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2970), - [anon_sym_AT_COLON] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_catch] = ACTIONS(2970), - [anon_sym_else] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2972), - [anon_sym_DASH_DASH] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2972), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_EQ_EQ] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2972), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2972), - [anon_sym_QMARK_QMARK] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_macro] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym_inline] = ACTIONS(2970), - [anon_sym_overload] = ACTIONS(2970), - [anon_sym_override] = ACTIONS(2970), - [anon_sym_final] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_typedef] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_var] = ACTIONS(2970), - [aux_sym_integer_token1] = ACTIONS(2970), - [aux_sym_integer_token2] = ACTIONS(2972), - [aux_sym_float_token1] = ACTIONS(2970), - [aux_sym_float_token2] = ACTIONS(2972), - [anon_sym_true] = ACTIONS(2970), - [anon_sym_false] = ACTIONS(2970), - [aux_sym_string_token1] = ACTIONS(2972), - [aux_sym_string_token3] = ACTIONS(2972), + [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(2976), - [sym_identifier] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2976), - [anon_sym_package] = ACTIONS(2974), - [anon_sym_import] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_using] = ACTIONS(2974), - [anon_sym_throw] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_switch] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_cast] = ACTIONS(2974), - [anon_sym_DOLLARtype] = ACTIONS(2976), - [anon_sym_for] = ACTIONS(2974), - [anon_sym_return] = ACTIONS(2974), - [anon_sym_untyped] = ACTIONS(2974), - [anon_sym_break] = ACTIONS(2974), - [anon_sym_continue] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_this] = ACTIONS(2974), - [anon_sym_AT] = ACTIONS(2974), - [anon_sym_AT_COLON] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2974), - [anon_sym_catch] = ACTIONS(2974), - [anon_sym_else] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_while] = ACTIONS(2974), - [anon_sym_do] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2974), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2974), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_EQ_GT] = ACTIONS(2976), - [anon_sym_QMARK_QMARK] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2976), - [anon_sym_null] = ACTIONS(2974), - [anon_sym_macro] = ACTIONS(2974), - [anon_sym_abstract] = ACTIONS(2974), - [anon_sym_static] = ACTIONS(2974), - [anon_sym_public] = ACTIONS(2974), - [anon_sym_private] = ACTIONS(2974), - [anon_sym_extern] = ACTIONS(2974), - [anon_sym_inline] = ACTIONS(2974), - [anon_sym_overload] = ACTIONS(2974), - [anon_sym_override] = ACTIONS(2974), - [anon_sym_final] = ACTIONS(2974), - [anon_sym_class] = ACTIONS(2974), - [anon_sym_interface] = ACTIONS(2974), - [anon_sym_enum] = ACTIONS(2974), - [anon_sym_typedef] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2974), - [anon_sym_var] = ACTIONS(2974), - [aux_sym_integer_token1] = ACTIONS(2974), - [aux_sym_integer_token2] = ACTIONS(2976), - [aux_sym_float_token1] = ACTIONS(2974), - [aux_sym_float_token2] = ACTIONS(2976), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [aux_sym_string_token1] = ACTIONS(2976), - [aux_sym_string_token3] = ACTIONS(2976), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_package] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_using] = ACTIONS(2978), - [anon_sym_throw] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_switch] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_cast] = ACTIONS(2978), - [anon_sym_DOLLARtype] = ACTIONS(2980), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_untyped] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_this] = ACTIONS(2978), - [anon_sym_AT] = ACTIONS(2978), - [anon_sym_AT_COLON] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2978), - [anon_sym_catch] = ACTIONS(2978), - [anon_sym_else] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_while] = ACTIONS(2978), - [anon_sym_do] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2980), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_PLUS_PLUS] = ACTIONS(2980), - [anon_sym_DASH_DASH] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_SLASH] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_LT_LT] = ACTIONS(2980), - [anon_sym_GT_GT] = ACTIONS(2978), - [anon_sym_GT_GT_GT] = ACTIONS(2980), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_CARET] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_EQ_EQ] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_LT_EQ] = ACTIONS(2980), - [anon_sym_GT] = ACTIONS(2978), - [anon_sym_GT_EQ] = ACTIONS(2980), - [anon_sym_EQ_GT] = ACTIONS(2980), - [anon_sym_QMARK_QMARK] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2980), - [anon_sym_null] = ACTIONS(2978), - [anon_sym_macro] = ACTIONS(2978), - [anon_sym_abstract] = ACTIONS(2978), - [anon_sym_static] = ACTIONS(2978), - [anon_sym_public] = ACTIONS(2978), - [anon_sym_private] = ACTIONS(2978), - [anon_sym_extern] = ACTIONS(2978), - [anon_sym_inline] = ACTIONS(2978), - [anon_sym_overload] = ACTIONS(2978), - [anon_sym_override] = ACTIONS(2978), - [anon_sym_final] = ACTIONS(2978), - [anon_sym_class] = ACTIONS(2978), - [anon_sym_interface] = ACTIONS(2978), - [anon_sym_enum] = ACTIONS(2978), - [anon_sym_typedef] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_var] = ACTIONS(2978), - [aux_sym_integer_token1] = ACTIONS(2978), - [aux_sym_integer_token2] = ACTIONS(2980), - [aux_sym_float_token1] = ACTIONS(2978), - [aux_sym_float_token2] = ACTIONS(2980), - [anon_sym_true] = ACTIONS(2978), - [anon_sym_false] = ACTIONS(2978), - [aux_sym_string_token1] = ACTIONS(2980), - [aux_sym_string_token3] = ACTIONS(2980), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2984), - [sym_identifier] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2984), - [anon_sym_package] = ACTIONS(2982), - [anon_sym_import] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_using] = ACTIONS(2982), - [anon_sym_throw] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_switch] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_cast] = ACTIONS(2982), - [anon_sym_DOLLARtype] = ACTIONS(2984), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_untyped] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_this] = ACTIONS(2982), - [anon_sym_AT] = ACTIONS(2982), - [anon_sym_AT_COLON] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2982), - [anon_sym_catch] = ACTIONS(2982), - [anon_sym_else] = ACTIONS(2982), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_while] = ACTIONS(2982), - [anon_sym_do] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2982), - [anon_sym_TILDE] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(2982), - [anon_sym_DASH] = ACTIONS(2982), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_SLASH] = ACTIONS(2982), - [anon_sym_PLUS] = ACTIONS(2982), - [anon_sym_LT_LT] = ACTIONS(2984), - [anon_sym_GT_GT] = ACTIONS(2982), - [anon_sym_GT_GT_GT] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2982), - [anon_sym_CARET] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2982), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(2984), - [anon_sym_QMARK_QMARK] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2984), - [anon_sym_null] = ACTIONS(2982), - [anon_sym_macro] = ACTIONS(2982), - [anon_sym_abstract] = ACTIONS(2982), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_public] = ACTIONS(2982), - [anon_sym_private] = ACTIONS(2982), - [anon_sym_extern] = ACTIONS(2982), - [anon_sym_inline] = ACTIONS(2982), - [anon_sym_overload] = ACTIONS(2982), - [anon_sym_override] = ACTIONS(2982), - [anon_sym_final] = ACTIONS(2982), - [anon_sym_class] = ACTIONS(2982), - [anon_sym_interface] = ACTIONS(2982), - [anon_sym_enum] = ACTIONS(2982), - [anon_sym_typedef] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2982), - [anon_sym_var] = ACTIONS(2982), - [aux_sym_integer_token1] = ACTIONS(2982), - [aux_sym_integer_token2] = ACTIONS(2984), - [aux_sym_float_token1] = ACTIONS(2982), - [aux_sym_float_token2] = ACTIONS(2984), - [anon_sym_true] = ACTIONS(2982), - [anon_sym_false] = ACTIONS(2982), - [aux_sym_string_token1] = ACTIONS(2984), - [aux_sym_string_token3] = ACTIONS(2984), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(2988), - [anon_sym_package] = ACTIONS(2986), - [anon_sym_import] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_using] = ACTIONS(2986), - [anon_sym_throw] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_switch] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_cast] = ACTIONS(2986), - [anon_sym_DOLLARtype] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_untyped] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_this] = ACTIONS(2986), - [anon_sym_AT] = ACTIONS(2986), - [anon_sym_AT_COLON] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_catch] = ACTIONS(2986), - [anon_sym_else] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [anon_sym_BANG] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_PLUS] = ACTIONS(2988), - [anon_sym_DASH_DASH] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_SLASH] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_LT_LT] = ACTIONS(2988), - [anon_sym_GT_GT] = ACTIONS(2986), - [anon_sym_GT_GT_GT] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_CARET] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_EQ_EQ] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_LT_EQ] = ACTIONS(2988), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_GT_EQ] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(2988), - [anon_sym_QMARK_QMARK] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_macro] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_public] = ACTIONS(2986), - [anon_sym_private] = ACTIONS(2986), - [anon_sym_extern] = ACTIONS(2986), - [anon_sym_inline] = ACTIONS(2986), - [anon_sym_overload] = ACTIONS(2986), - [anon_sym_override] = ACTIONS(2986), - [anon_sym_final] = ACTIONS(2986), - [anon_sym_class] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_enum] = ACTIONS(2986), - [anon_sym_typedef] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_var] = ACTIONS(2986), - [aux_sym_integer_token1] = ACTIONS(2986), - [aux_sym_integer_token2] = ACTIONS(2988), - [aux_sym_float_token1] = ACTIONS(2986), - [aux_sym_float_token2] = ACTIONS(2988), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [aux_sym_string_token1] = ACTIONS(2988), - [aux_sym_string_token3] = ACTIONS(2988), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2992), - [sym_identifier] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2992), - [anon_sym_package] = ACTIONS(2990), - [anon_sym_import] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2990), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_cast] = ACTIONS(2990), - [anon_sym_DOLLARtype] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_untyped] = ACTIONS(2990), - [anon_sym_break] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_this] = ACTIONS(2990), - [anon_sym_AT] = ACTIONS(2990), - [anon_sym_AT_COLON] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_catch] = ACTIONS(2990), - [anon_sym_else] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_PLUS] = ACTIONS(2992), - [anon_sym_DASH_DASH] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_LT_LT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_GT_GT_GT] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_CARET] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_LT_EQ] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2990), - [anon_sym_GT_EQ] = ACTIONS(2992), - [anon_sym_EQ_GT] = ACTIONS(2992), - [anon_sym_QMARK_QMARK] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_macro] = ACTIONS(2990), - [anon_sym_abstract] = ACTIONS(2990), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_extern] = ACTIONS(2990), - [anon_sym_inline] = ACTIONS(2990), - [anon_sym_overload] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_final] = ACTIONS(2990), - [anon_sym_class] = ACTIONS(2990), - [anon_sym_interface] = ACTIONS(2990), - [anon_sym_enum] = ACTIONS(2990), - [anon_sym_typedef] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_var] = ACTIONS(2990), - [aux_sym_integer_token1] = ACTIONS(2990), - [aux_sym_integer_token2] = ACTIONS(2992), - [aux_sym_float_token1] = ACTIONS(2990), - [aux_sym_float_token2] = ACTIONS(2992), - [anon_sym_true] = ACTIONS(2990), - [anon_sym_false] = ACTIONS(2990), - [aux_sym_string_token1] = ACTIONS(2992), - [aux_sym_string_token3] = ACTIONS(2992), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2996), - [sym_identifier] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2996), - [anon_sym_package] = ACTIONS(2994), - [anon_sym_import] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_cast] = ACTIONS(2994), - [anon_sym_DOLLARtype] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_untyped] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_AT_COLON] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_catch] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_do] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2996), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_PLUS_PLUS] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_LT_LT] = ACTIONS(2996), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2996), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_CARET] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_EQ_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2996), - [anon_sym_EQ_GT] = ACTIONS(2996), - [anon_sym_QMARK_QMARK] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2996), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_macro] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_extern] = ACTIONS(2994), - [anon_sym_inline] = ACTIONS(2994), - [anon_sym_overload] = ACTIONS(2994), - [anon_sym_override] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2994), - [anon_sym_interface] = ACTIONS(2994), - [anon_sym_enum] = ACTIONS(2994), - [anon_sym_typedef] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_var] = ACTIONS(2994), - [aux_sym_integer_token1] = ACTIONS(2994), - [aux_sym_integer_token2] = ACTIONS(2996), - [aux_sym_float_token1] = ACTIONS(2994), - [aux_sym_float_token2] = ACTIONS(2996), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [aux_sym_string_token1] = ACTIONS(2996), - [aux_sym_string_token3] = ACTIONS(2996), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(2998), - [anon_sym_POUND] = ACTIONS(3000), - [anon_sym_package] = ACTIONS(2998), - [anon_sym_import] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(3000), - [anon_sym_using] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(3000), - [anon_sym_switch] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_cast] = ACTIONS(2998), - [anon_sym_DOLLARtype] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_untyped] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_AT] = ACTIONS(2998), - [anon_sym_AT_COLON] = ACTIONS(3000), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_catch] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(3000), - [anon_sym_DASH_DASH] = ACTIONS(3000), - [anon_sym_PERCENT] = ACTIONS(3000), - [anon_sym_SLASH] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_LT_LT] = ACTIONS(3000), - [anon_sym_GT_GT] = ACTIONS(2998), - [anon_sym_GT_GT_GT] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_CARET] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_EQ_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT] = ACTIONS(2998), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_EQ_GT] = ACTIONS(3000), - [anon_sym_QMARK_QMARK] = ACTIONS(3000), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_macro] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_extern] = ACTIONS(2998), - [anon_sym_inline] = ACTIONS(2998), - [anon_sym_overload] = ACTIONS(2998), - [anon_sym_override] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_class] = ACTIONS(2998), - [anon_sym_interface] = ACTIONS(2998), - [anon_sym_enum] = ACTIONS(2998), - [anon_sym_typedef] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_var] = ACTIONS(2998), - [aux_sym_integer_token1] = ACTIONS(2998), - [aux_sym_integer_token2] = ACTIONS(3000), - [aux_sym_float_token1] = ACTIONS(2998), - [aux_sym_float_token2] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [aux_sym_string_token1] = ACTIONS(3000), - [aux_sym_string_token3] = ACTIONS(3000), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3004), - [sym_identifier] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3004), - [anon_sym_package] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3004), - [anon_sym_using] = ACTIONS(3002), - [anon_sym_throw] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_switch] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_cast] = ACTIONS(3002), - [anon_sym_DOLLARtype] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_untyped] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_this] = ACTIONS(3002), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_AT_COLON] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_catch] = ACTIONS(3002), - [anon_sym_else] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3004), - [anon_sym_GT_GT] = ACTIONS(3002), - [anon_sym_GT_GT_GT] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_EQ_EQ] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_LT_EQ] = ACTIONS(3004), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_GT_EQ] = ACTIONS(3004), - [anon_sym_EQ_GT] = ACTIONS(3004), - [anon_sym_QMARK_QMARK] = ACTIONS(3004), - [anon_sym_EQ] = ACTIONS(3002), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_macro] = ACTIONS(3002), - [anon_sym_abstract] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_extern] = ACTIONS(3002), - [anon_sym_inline] = ACTIONS(3002), - [anon_sym_overload] = ACTIONS(3002), - [anon_sym_override] = ACTIONS(3002), - [anon_sym_final] = ACTIONS(3002), - [anon_sym_class] = ACTIONS(3002), - [anon_sym_interface] = ACTIONS(3002), - [anon_sym_enum] = ACTIONS(3002), - [anon_sym_typedef] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_var] = ACTIONS(3002), - [aux_sym_integer_token1] = ACTIONS(3002), - [aux_sym_integer_token2] = ACTIONS(3004), - [aux_sym_float_token1] = ACTIONS(3002), - [aux_sym_float_token2] = ACTIONS(3004), - [anon_sym_true] = ACTIONS(3002), - [anon_sym_false] = ACTIONS(3002), - [aux_sym_string_token1] = ACTIONS(3004), - [aux_sym_string_token3] = ACTIONS(3004), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3008), - [anon_sym_package] = ACTIONS(3006), - [anon_sym_import] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3008), - [anon_sym_using] = ACTIONS(3006), - [anon_sym_throw] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_cast] = ACTIONS(3006), - [anon_sym_DOLLARtype] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_untyped] = ACTIONS(3006), - [anon_sym_break] = ACTIONS(3006), - [anon_sym_continue] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_this] = ACTIONS(3006), - [anon_sym_AT] = ACTIONS(3006), - [anon_sym_AT_COLON] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_catch] = ACTIONS(3006), - [anon_sym_else] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [anon_sym_PERCENT] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_LT_LT] = ACTIONS(3008), - [anon_sym_GT_GT] = ACTIONS(3006), - [anon_sym_GT_GT_GT] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_CARET] = ACTIONS(3008), - [anon_sym_AMP_AMP] = ACTIONS(3008), - [anon_sym_PIPE_PIPE] = ACTIONS(3008), - [anon_sym_EQ_EQ] = ACTIONS(3008), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_LT_EQ] = ACTIONS(3008), - [anon_sym_GT] = ACTIONS(3006), - [anon_sym_GT_EQ] = ACTIONS(3008), - [anon_sym_EQ_GT] = ACTIONS(3008), - [anon_sym_QMARK_QMARK] = ACTIONS(3008), - [anon_sym_EQ] = ACTIONS(3006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_macro] = ACTIONS(3006), - [anon_sym_abstract] = ACTIONS(3006), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_extern] = ACTIONS(3006), - [anon_sym_inline] = ACTIONS(3006), - [anon_sym_overload] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_final] = ACTIONS(3006), - [anon_sym_class] = ACTIONS(3006), - [anon_sym_interface] = ACTIONS(3006), - [anon_sym_enum] = ACTIONS(3006), - [anon_sym_typedef] = ACTIONS(3006), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_var] = ACTIONS(3006), - [aux_sym_integer_token1] = ACTIONS(3006), - [aux_sym_integer_token2] = ACTIONS(3008), - [aux_sym_float_token1] = ACTIONS(3006), - [aux_sym_float_token2] = ACTIONS(3008), - [anon_sym_true] = ACTIONS(3006), - [anon_sym_false] = ACTIONS(3006), - [aux_sym_string_token1] = ACTIONS(3008), - [aux_sym_string_token3] = ACTIONS(3008), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3012), - [sym_identifier] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3012), - [anon_sym_package] = ACTIONS(3010), - [anon_sym_import] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3010), - [anon_sym_throw] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_switch] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_cast] = ACTIONS(3010), - [anon_sym_DOLLARtype] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_untyped] = ACTIONS(3010), - [anon_sym_break] = ACTIONS(3010), - [anon_sym_continue] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_this] = ACTIONS(3010), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_AT_COLON] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_catch] = ACTIONS(3010), - [anon_sym_else] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_PERCENT] = ACTIONS(3012), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3012), - [anon_sym_GT_GT] = ACTIONS(3010), - [anon_sym_GT_GT_GT] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_CARET] = ACTIONS(3012), - [anon_sym_AMP_AMP] = ACTIONS(3012), - [anon_sym_PIPE_PIPE] = ACTIONS(3012), - [anon_sym_EQ_EQ] = ACTIONS(3012), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_LT_EQ] = ACTIONS(3012), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_GT_EQ] = ACTIONS(3012), - [anon_sym_EQ_GT] = ACTIONS(3012), - [anon_sym_QMARK_QMARK] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_macro] = ACTIONS(3010), - [anon_sym_abstract] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_extern] = ACTIONS(3010), - [anon_sym_inline] = ACTIONS(3010), - [anon_sym_overload] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_final] = ACTIONS(3010), - [anon_sym_class] = ACTIONS(3010), - [anon_sym_interface] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(3010), - [anon_sym_typedef] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_var] = ACTIONS(3010), - [aux_sym_integer_token1] = ACTIONS(3010), - [aux_sym_integer_token2] = ACTIONS(3012), - [aux_sym_float_token1] = ACTIONS(3010), - [aux_sym_float_token2] = ACTIONS(3012), - [anon_sym_true] = ACTIONS(3010), - [anon_sym_false] = ACTIONS(3010), - [aux_sym_string_token1] = ACTIONS(3012), - [aux_sym_string_token3] = ACTIONS(3012), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3016), - [sym_identifier] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3016), - [anon_sym_package] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3016), - [anon_sym_using] = ACTIONS(3014), - [anon_sym_throw] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_switch] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_cast] = ACTIONS(3014), - [anon_sym_DOLLARtype] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_untyped] = ACTIONS(3014), - [anon_sym_break] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_this] = ACTIONS(3014), - [anon_sym_AT] = ACTIONS(3014), - [anon_sym_AT_COLON] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_catch] = ACTIONS(3014), - [anon_sym_else] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3016), - [anon_sym_DASH_DASH] = ACTIONS(3016), - [anon_sym_PERCENT] = ACTIONS(3016), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_LT_LT] = ACTIONS(3016), - [anon_sym_GT_GT] = ACTIONS(3014), - [anon_sym_GT_GT_GT] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_CARET] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_LT_EQ] = ACTIONS(3016), - [anon_sym_GT] = ACTIONS(3014), - [anon_sym_GT_EQ] = ACTIONS(3016), - [anon_sym_EQ_GT] = ACTIONS(3016), - [anon_sym_QMARK_QMARK] = ACTIONS(3016), - [anon_sym_EQ] = ACTIONS(3014), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_macro] = ACTIONS(3014), - [anon_sym_abstract] = ACTIONS(3014), - [anon_sym_static] = ACTIONS(3014), - [anon_sym_public] = ACTIONS(3014), - [anon_sym_private] = ACTIONS(3014), - [anon_sym_extern] = ACTIONS(3014), - [anon_sym_inline] = ACTIONS(3014), - [anon_sym_overload] = ACTIONS(3014), - [anon_sym_override] = ACTIONS(3014), - [anon_sym_final] = ACTIONS(3014), - [anon_sym_class] = ACTIONS(3014), - [anon_sym_interface] = ACTIONS(3014), - [anon_sym_enum] = ACTIONS(3014), - [anon_sym_typedef] = ACTIONS(3014), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_var] = ACTIONS(3014), - [aux_sym_integer_token1] = ACTIONS(3014), - [aux_sym_integer_token2] = ACTIONS(3016), - [aux_sym_float_token1] = ACTIONS(3014), - [aux_sym_float_token2] = ACTIONS(3016), - [anon_sym_true] = ACTIONS(3014), - [anon_sym_false] = ACTIONS(3014), - [aux_sym_string_token1] = ACTIONS(3016), - [aux_sym_string_token3] = ACTIONS(3016), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3020), - [sym_identifier] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3020), - [anon_sym_package] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_using] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3020), - [anon_sym_switch] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3020), - [anon_sym_cast] = ACTIONS(3018), - [anon_sym_DOLLARtype] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_untyped] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_AT_COLON] = ACTIONS(3020), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_catch] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3020), - [anon_sym_DASH_DASH] = ACTIONS(3020), - [anon_sym_PERCENT] = ACTIONS(3020), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3020), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_GT_GT_GT] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_CARET] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(3020), - [anon_sym_PIPE_PIPE] = ACTIONS(3020), - [anon_sym_EQ_EQ] = ACTIONS(3020), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3020), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(3020), - [anon_sym_QMARK_QMARK] = ACTIONS(3020), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_macro] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_extern] = ACTIONS(3018), - [anon_sym_inline] = ACTIONS(3018), - [anon_sym_overload] = ACTIONS(3018), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_class] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_enum] = ACTIONS(3018), - [anon_sym_typedef] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_var] = ACTIONS(3018), - [aux_sym_integer_token1] = ACTIONS(3018), - [aux_sym_integer_token2] = ACTIONS(3020), - [aux_sym_float_token1] = ACTIONS(3018), - [aux_sym_float_token2] = ACTIONS(3020), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [aux_sym_string_token1] = ACTIONS(3020), - [aux_sym_string_token3] = ACTIONS(3020), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3024), - [sym_identifier] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3024), - [anon_sym_package] = ACTIONS(3022), - [anon_sym_import] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_using] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_switch] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3024), - [anon_sym_cast] = ACTIONS(3022), - [anon_sym_DOLLARtype] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_untyped] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(3022), - [anon_sym_AT_COLON] = ACTIONS(3024), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_catch] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3024), - [anon_sym_DASH_DASH] = ACTIONS(3024), - [anon_sym_PERCENT] = ACTIONS(3024), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_LT_LT] = ACTIONS(3024), - [anon_sym_GT_GT] = ACTIONS(3022), - [anon_sym_GT_GT_GT] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_EQ_GT] = ACTIONS(3024), - [anon_sym_QMARK_QMARK] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_macro] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_static] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_extern] = ACTIONS(3022), - [anon_sym_inline] = ACTIONS(3022), - [anon_sym_overload] = ACTIONS(3022), - [anon_sym_override] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_class] = ACTIONS(3022), - [anon_sym_interface] = ACTIONS(3022), - [anon_sym_enum] = ACTIONS(3022), - [anon_sym_typedef] = ACTIONS(3022), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_var] = ACTIONS(3022), - [aux_sym_integer_token1] = ACTIONS(3022), - [aux_sym_integer_token2] = ACTIONS(3024), - [aux_sym_float_token1] = ACTIONS(3022), - [aux_sym_float_token2] = ACTIONS(3024), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [aux_sym_string_token1] = ACTIONS(3024), - [aux_sym_string_token3] = ACTIONS(3024), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3028), - [anon_sym_package] = ACTIONS(3026), - [anon_sym_import] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_using] = ACTIONS(3026), - [anon_sym_throw] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3028), - [anon_sym_switch] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3028), - [anon_sym_cast] = ACTIONS(3026), - [anon_sym_DOLLARtype] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_untyped] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_this] = ACTIONS(3026), - [anon_sym_AT] = ACTIONS(3026), - [anon_sym_AT_COLON] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_catch] = ACTIONS(3026), - [anon_sym_else] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3028), - [anon_sym_DASH_DASH] = ACTIONS(3028), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_LT_LT] = ACTIONS(3028), - [anon_sym_GT_GT] = ACTIONS(3026), - [anon_sym_GT_GT_GT] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_CARET] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_PIPE_PIPE] = ACTIONS(3028), - [anon_sym_EQ_EQ] = ACTIONS(3028), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_LT_EQ] = ACTIONS(3028), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_GT_EQ] = ACTIONS(3028), - [anon_sym_EQ_GT] = ACTIONS(3028), - [anon_sym_QMARK_QMARK] = ACTIONS(3028), - [anon_sym_EQ] = ACTIONS(3026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_macro] = ACTIONS(3026), - [anon_sym_abstract] = ACTIONS(3026), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(3026), - [anon_sym_inline] = ACTIONS(3026), - [anon_sym_overload] = ACTIONS(3026), - [anon_sym_override] = ACTIONS(3026), - [anon_sym_final] = ACTIONS(3026), - [anon_sym_class] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_enum] = ACTIONS(3026), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_var] = ACTIONS(3026), - [aux_sym_integer_token1] = ACTIONS(3026), - [aux_sym_integer_token2] = ACTIONS(3028), - [aux_sym_float_token1] = ACTIONS(3026), - [aux_sym_float_token2] = ACTIONS(3028), - [anon_sym_true] = ACTIONS(3026), - [anon_sym_false] = ACTIONS(3026), - [aux_sym_string_token1] = ACTIONS(3028), - [aux_sym_string_token3] = ACTIONS(3028), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3032), - [sym_identifier] = ACTIONS(3030), - [anon_sym_POUND] = ACTIONS(3032), - [anon_sym_package] = ACTIONS(3030), - [anon_sym_import] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_using] = ACTIONS(3030), - [anon_sym_throw] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_switch] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_cast] = ACTIONS(3030), - [anon_sym_DOLLARtype] = ACTIONS(3032), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_untyped] = ACTIONS(3030), - [anon_sym_break] = ACTIONS(3030), - [anon_sym_continue] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_this] = ACTIONS(3030), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_AT_COLON] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_catch] = ACTIONS(3030), - [anon_sym_else] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3032), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_PLUS] = ACTIONS(3032), - [anon_sym_DASH_DASH] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_SLASH] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_LT_LT] = ACTIONS(3032), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_GT_GT_GT] = ACTIONS(3032), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_EQ_EQ] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3032), - [anon_sym_GT] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3032), - [anon_sym_EQ_GT] = ACTIONS(3032), - [anon_sym_QMARK_QMARK] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_macro] = ACTIONS(3030), - [anon_sym_abstract] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(3030), - [anon_sym_public] = ACTIONS(3030), - [anon_sym_private] = ACTIONS(3030), - [anon_sym_extern] = ACTIONS(3030), - [anon_sym_inline] = ACTIONS(3030), - [anon_sym_overload] = ACTIONS(3030), - [anon_sym_override] = ACTIONS(3030), - [anon_sym_final] = ACTIONS(3030), - [anon_sym_class] = ACTIONS(3030), - [anon_sym_interface] = ACTIONS(3030), - [anon_sym_enum] = ACTIONS(3030), - [anon_sym_typedef] = ACTIONS(3030), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_var] = ACTIONS(3030), - [aux_sym_integer_token1] = ACTIONS(3030), - [aux_sym_integer_token2] = ACTIONS(3032), - [aux_sym_float_token1] = ACTIONS(3030), - [aux_sym_float_token2] = ACTIONS(3032), - [anon_sym_true] = ACTIONS(3030), - [anon_sym_false] = ACTIONS(3030), - [aux_sym_string_token1] = ACTIONS(3032), - [aux_sym_string_token3] = ACTIONS(3032), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3036), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3036), - [anon_sym_using] = ACTIONS(3034), - [anon_sym_throw] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_switch] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_cast] = ACTIONS(3034), - [anon_sym_DOLLARtype] = ACTIONS(3036), - [anon_sym_for] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3034), - [anon_sym_untyped] = ACTIONS(3034), - [anon_sym_break] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_this] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3034), - [anon_sym_AT_COLON] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3034), - [anon_sym_catch] = ACTIONS(3034), - [anon_sym_else] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_while] = ACTIONS(3034), - [anon_sym_do] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3036), - [anon_sym_BANG] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3036), - [anon_sym_DASH_DASH] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_LT_LT] = ACTIONS(3036), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_GT_GT_GT] = ACTIONS(3036), - [anon_sym_AMP] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3036), - [anon_sym_GT] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3036), - [anon_sym_EQ_GT] = ACTIONS(3036), - [anon_sym_QMARK_QMARK] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3036), - [anon_sym_null] = ACTIONS(3034), - [anon_sym_macro] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_extern] = ACTIONS(3034), - [anon_sym_inline] = ACTIONS(3034), - [anon_sym_overload] = ACTIONS(3034), - [anon_sym_override] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3034), - [anon_sym_interface] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_typedef] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [aux_sym_integer_token1] = ACTIONS(3034), - [aux_sym_integer_token2] = ACTIONS(3036), - [aux_sym_float_token1] = ACTIONS(3034), - [aux_sym_float_token2] = ACTIONS(3036), - [anon_sym_true] = ACTIONS(3034), - [anon_sym_false] = ACTIONS(3034), - [aux_sym_string_token1] = ACTIONS(3036), - [aux_sym_string_token3] = ACTIONS(3036), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3318), - [sym_identifier] = ACTIONS(3316), - [anon_sym_POUND] = ACTIONS(3318), - [anon_sym_package] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_throw] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_cast] = ACTIONS(3316), - [anon_sym_DOLLARtype] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_untyped] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_this] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_AT_COLON] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_catch] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_PERCENT] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_LT_LT] = ACTIONS(3318), - [anon_sym_GT_GT] = ACTIONS(3316), - [anon_sym_GT_GT_GT] = ACTIONS(3318), - [anon_sym_AMP] = ACTIONS(3316), - [anon_sym_PIPE] = ACTIONS(3316), - [anon_sym_CARET] = ACTIONS(3318), - [anon_sym_AMP_AMP] = ACTIONS(3318), - [anon_sym_PIPE_PIPE] = ACTIONS(3318), - [anon_sym_EQ_EQ] = ACTIONS(3318), - [anon_sym_BANG_EQ] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3318), - [anon_sym_GT] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3318), - [anon_sym_EQ_GT] = ACTIONS(3318), - [anon_sym_QMARK_QMARK] = ACTIONS(3318), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), - [anon_sym_null] = ACTIONS(3316), - [anon_sym_macro] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3316), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_extern] = ACTIONS(3316), - [anon_sym_inline] = ACTIONS(3316), - [anon_sym_overload] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), - [anon_sym_final] = ACTIONS(3316), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_interface] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [anon_sym_typedef] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_var] = ACTIONS(3316), - [aux_sym_integer_token1] = ACTIONS(3316), - [aux_sym_integer_token2] = ACTIONS(3318), - [aux_sym_float_token1] = ACTIONS(3316), - [aux_sym_float_token2] = ACTIONS(3318), - [anon_sym_true] = ACTIONS(3316), - [anon_sym_false] = ACTIONS(3316), - [aux_sym_string_token1] = ACTIONS(3318), - [aux_sym_string_token3] = ACTIONS(3318), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3040), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3040), - [anon_sym_using] = ACTIONS(3038), - [anon_sym_throw] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_switch] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_cast] = ACTIONS(3038), - [anon_sym_DOLLARtype] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3038), - [anon_sym_return] = ACTIONS(3038), - [anon_sym_untyped] = ACTIONS(3038), - [anon_sym_break] = ACTIONS(3038), - [anon_sym_continue] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_this] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3038), - [anon_sym_AT_COLON] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3038), - [anon_sym_catch] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_while] = ACTIONS(3038), - [anon_sym_do] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3040), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_LT_LT] = ACTIONS(3040), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_GT_GT_GT] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3040), - [anon_sym_GT] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3040), - [anon_sym_EQ_GT] = ACTIONS(3040), - [anon_sym_QMARK_QMARK] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3040), - [anon_sym_null] = ACTIONS(3038), - [anon_sym_macro] = ACTIONS(3038), - [anon_sym_abstract] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_extern] = ACTIONS(3038), - [anon_sym_inline] = ACTIONS(3038), - [anon_sym_overload] = ACTIONS(3038), - [anon_sym_override] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_class] = ACTIONS(3038), - [anon_sym_interface] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_typedef] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [aux_sym_integer_token1] = ACTIONS(3038), - [aux_sym_integer_token2] = ACTIONS(3040), - [aux_sym_float_token1] = ACTIONS(3038), - [aux_sym_float_token2] = ACTIONS(3040), - [anon_sym_true] = ACTIONS(3038), - [anon_sym_false] = ACTIONS(3038), - [aux_sym_string_token1] = ACTIONS(3040), - [aux_sym_string_token3] = ACTIONS(3040), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3270), - [sym_identifier] = ACTIONS(3268), - [anon_sym_POUND] = ACTIONS(3270), - [anon_sym_package] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_cast] = ACTIONS(3268), - [anon_sym_DOLLARtype] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_untyped] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_this] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3268), - [anon_sym_AT_COLON] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_catch] = ACTIONS(3268), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_LT_LT] = ACTIONS(3270), - [anon_sym_GT_GT] = ACTIONS(3268), - [anon_sym_GT_GT_GT] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_PIPE] = ACTIONS(3268), - [anon_sym_CARET] = ACTIONS(3270), - [anon_sym_AMP_AMP] = ACTIONS(3270), - [anon_sym_PIPE_PIPE] = ACTIONS(3270), - [anon_sym_EQ_EQ] = ACTIONS(3270), - [anon_sym_BANG_EQ] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3268), - [anon_sym_GT_EQ] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3270), - [anon_sym_QMARK_QMARK] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3268), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_macro] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_extern] = ACTIONS(3268), - [anon_sym_inline] = ACTIONS(3268), - [anon_sym_overload] = ACTIONS(3268), - [anon_sym_override] = ACTIONS(3268), - [anon_sym_final] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), - [anon_sym_typedef] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [aux_sym_integer_token1] = ACTIONS(3268), - [aux_sym_integer_token2] = ACTIONS(3270), - [aux_sym_float_token1] = ACTIONS(3268), - [aux_sym_float_token2] = ACTIONS(3270), - [anon_sym_true] = ACTIONS(3268), - [anon_sym_false] = ACTIONS(3268), - [aux_sym_string_token1] = ACTIONS(3270), - [aux_sym_string_token3] = ACTIONS(3270), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_package] = ACTIONS(3042), - [anon_sym_import] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_using] = ACTIONS(3042), - [anon_sym_throw] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_switch] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_cast] = ACTIONS(3042), - [anon_sym_DOLLARtype] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_untyped] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_this] = ACTIONS(3042), - [anon_sym_AT] = ACTIONS(3042), - [anon_sym_AT_COLON] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_catch] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3044), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_EQ_GT] = ACTIONS(3044), - [anon_sym_QMARK_QMARK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3044), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_macro] = ACTIONS(3042), - [anon_sym_abstract] = ACTIONS(3042), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_public] = ACTIONS(3042), - [anon_sym_private] = ACTIONS(3042), - [anon_sym_extern] = ACTIONS(3042), - [anon_sym_inline] = ACTIONS(3042), - [anon_sym_overload] = ACTIONS(3042), - [anon_sym_override] = ACTIONS(3042), - [anon_sym_final] = ACTIONS(3042), - [anon_sym_class] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_enum] = ACTIONS(3042), - [anon_sym_typedef] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_var] = ACTIONS(3042), - [aux_sym_integer_token1] = ACTIONS(3042), - [aux_sym_integer_token2] = ACTIONS(3044), - [aux_sym_float_token1] = ACTIONS(3042), - [aux_sym_float_token2] = ACTIONS(3044), - [anon_sym_true] = ACTIONS(3042), - [anon_sym_false] = ACTIONS(3042), - [aux_sym_string_token1] = ACTIONS(3044), - [aux_sym_string_token3] = ACTIONS(3044), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3048), - [anon_sym_package] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_cast] = ACTIONS(3046), - [anon_sym_DOLLARtype] = ACTIONS(3048), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_untyped] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_this] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_AT_COLON] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_catch] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3048), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_EQ_EQ] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3048), - [anon_sym_EQ_GT] = ACTIONS(3048), - [anon_sym_QMARK_QMARK] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), - [anon_sym_null] = ACTIONS(3046), - [anon_sym_macro] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_extern] = ACTIONS(3046), - [anon_sym_inline] = ACTIONS(3046), - [anon_sym_overload] = ACTIONS(3046), - [anon_sym_override] = ACTIONS(3046), - [anon_sym_final] = ACTIONS(3046), - [anon_sym_class] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), - [anon_sym_typedef] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [aux_sym_integer_token1] = ACTIONS(3046), - [aux_sym_integer_token2] = ACTIONS(3048), - [aux_sym_float_token1] = ACTIONS(3046), - [aux_sym_float_token2] = ACTIONS(3048), - [anon_sym_true] = ACTIONS(3046), - [anon_sym_false] = ACTIONS(3046), - [aux_sym_string_token1] = ACTIONS(3048), - [aux_sym_string_token3] = ACTIONS(3048), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_package] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_throw] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_switch] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_cast] = ACTIONS(3050), - [anon_sym_DOLLARtype] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_untyped] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_this] = ACTIONS(3050), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_AT_COLON] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3050), - [anon_sym_catch] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_while] = ACTIONS(3050), - [anon_sym_do] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_EQ_GT] = ACTIONS(3052), - [anon_sym_QMARK_QMARK] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), - [anon_sym_macro] = ACTIONS(3050), - [anon_sym_abstract] = ACTIONS(3050), - [anon_sym_static] = ACTIONS(3050), - [anon_sym_public] = ACTIONS(3050), - [anon_sym_private] = ACTIONS(3050), - [anon_sym_extern] = ACTIONS(3050), - [anon_sym_inline] = ACTIONS(3050), - [anon_sym_overload] = ACTIONS(3050), - [anon_sym_override] = ACTIONS(3050), - [anon_sym_final] = ACTIONS(3050), - [anon_sym_class] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_enum] = ACTIONS(3050), - [anon_sym_typedef] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3050), - [anon_sym_var] = ACTIONS(3050), - [aux_sym_integer_token1] = ACTIONS(3050), - [aux_sym_integer_token2] = ACTIONS(3052), - [aux_sym_float_token1] = ACTIONS(3050), - [aux_sym_float_token2] = ACTIONS(3052), - [anon_sym_true] = ACTIONS(3050), - [anon_sym_false] = ACTIONS(3050), - [aux_sym_string_token1] = ACTIONS(3052), - [aux_sym_string_token3] = ACTIONS(3052), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3056), - [anon_sym_package] = ACTIONS(3054), - [anon_sym_import] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_cast] = ACTIONS(3054), - [anon_sym_DOLLARtype] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_untyped] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_this] = ACTIONS(3054), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_AT_COLON] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_catch] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_EQ_GT] = ACTIONS(3056), - [anon_sym_QMARK_QMARK] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_macro] = ACTIONS(3054), - [anon_sym_abstract] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_public] = ACTIONS(3054), - [anon_sym_private] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym_overload] = ACTIONS(3054), - [anon_sym_override] = ACTIONS(3054), - [anon_sym_final] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_var] = ACTIONS(3054), - [aux_sym_integer_token1] = ACTIONS(3054), - [aux_sym_integer_token2] = ACTIONS(3056), - [aux_sym_float_token1] = ACTIONS(3054), - [aux_sym_float_token2] = ACTIONS(3056), - [anon_sym_true] = ACTIONS(3054), - [anon_sym_false] = ACTIONS(3054), - [aux_sym_string_token1] = ACTIONS(3056), - [aux_sym_string_token3] = ACTIONS(3056), + [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(3060), - [sym_identifier] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3060), - [anon_sym_package] = ACTIONS(3058), - [anon_sym_import] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_using] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_cast] = ACTIONS(3058), - [anon_sym_DOLLARtype] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_untyped] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_this] = ACTIONS(3058), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_AT_COLON] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_catch] = ACTIONS(3058), - [anon_sym_else] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_EQ_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_EQ_GT] = ACTIONS(3060), - [anon_sym_QMARK_QMARK] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3060), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_macro] = ACTIONS(3058), - [anon_sym_abstract] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_public] = ACTIONS(3058), - [anon_sym_private] = ACTIONS(3058), - [anon_sym_extern] = ACTIONS(3058), - [anon_sym_inline] = ACTIONS(3058), - [anon_sym_overload] = ACTIONS(3058), - [anon_sym_override] = ACTIONS(3058), - [anon_sym_final] = ACTIONS(3058), - [anon_sym_class] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_typedef] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_var] = ACTIONS(3058), - [aux_sym_integer_token1] = ACTIONS(3058), - [aux_sym_integer_token2] = ACTIONS(3060), - [aux_sym_float_token1] = ACTIONS(3058), - [aux_sym_float_token2] = ACTIONS(3060), - [anon_sym_true] = ACTIONS(3058), - [anon_sym_false] = ACTIONS(3058), - [aux_sym_string_token1] = ACTIONS(3060), - [aux_sym_string_token3] = ACTIONS(3060), + [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(3064), - [sym_identifier] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3064), - [anon_sym_package] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_using] = ACTIONS(3062), - [anon_sym_throw] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_switch] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_cast] = ACTIONS(3062), - [anon_sym_DOLLARtype] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_untyped] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_this] = ACTIONS(3062), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_AT_COLON] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3062), - [anon_sym_catch] = ACTIONS(3062), - [anon_sym_else] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_while] = ACTIONS(3062), - [anon_sym_do] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_EQ_EQ] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3064), - [anon_sym_EQ_GT] = ACTIONS(3064), - [anon_sym_QMARK_QMARK] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3064), - [anon_sym_null] = ACTIONS(3062), - [anon_sym_macro] = ACTIONS(3062), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_extern] = ACTIONS(3062), - [anon_sym_inline] = ACTIONS(3062), - [anon_sym_overload] = ACTIONS(3062), - [anon_sym_override] = ACTIONS(3062), - [anon_sym_final] = ACTIONS(3062), - [anon_sym_class] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_typedef] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_var] = ACTIONS(3062), - [aux_sym_integer_token1] = ACTIONS(3062), - [aux_sym_integer_token2] = ACTIONS(3064), - [aux_sym_float_token1] = ACTIONS(3062), - [aux_sym_float_token2] = ACTIONS(3064), - [anon_sym_true] = ACTIONS(3062), - [anon_sym_false] = ACTIONS(3062), - [aux_sym_string_token1] = ACTIONS(3064), - [aux_sym_string_token3] = ACTIONS(3064), + [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(3068), - [sym_identifier] = ACTIONS(3066), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_package] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_cast] = ACTIONS(3066), - [anon_sym_DOLLARtype] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_untyped] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_this] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_AT_COLON] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_catch] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_LT_LT] = ACTIONS(3068), - [anon_sym_GT_GT] = ACTIONS(3066), - [anon_sym_GT_GT_GT] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_EQ] = ACTIONS(3068), - [anon_sym_EQ_GT] = ACTIONS(3068), - [anon_sym_QMARK_QMARK] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_macro] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym_overload] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_final] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [aux_sym_integer_token1] = ACTIONS(3066), - [aux_sym_integer_token2] = ACTIONS(3068), - [aux_sym_float_token1] = ACTIONS(3066), - [aux_sym_float_token2] = ACTIONS(3068), - [anon_sym_true] = ACTIONS(3066), - [anon_sym_false] = ACTIONS(3066), - [aux_sym_string_token1] = ACTIONS(3068), - [aux_sym_string_token3] = ACTIONS(3068), + [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(3278), - [sym_identifier] = ACTIONS(3276), - [anon_sym_POUND] = ACTIONS(3278), - [anon_sym_package] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_cast] = ACTIONS(3276), - [anon_sym_DOLLARtype] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_untyped] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_AT_COLON] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_catch] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_LT_LT] = ACTIONS(3278), - [anon_sym_GT_GT] = ACTIONS(3276), - [anon_sym_GT_GT_GT] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_PIPE] = ACTIONS(3276), - [anon_sym_CARET] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_PIPE_PIPE] = ACTIONS(3278), - [anon_sym_EQ_EQ] = ACTIONS(3278), - [anon_sym_BANG_EQ] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_LT_EQ] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_GT_EQ] = ACTIONS(3278), - [anon_sym_EQ_GT] = ACTIONS(3278), - [anon_sym_QMARK_QMARK] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_macro] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_overload] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [aux_sym_integer_token1] = ACTIONS(3276), - [aux_sym_integer_token2] = ACTIONS(3278), - [aux_sym_float_token1] = ACTIONS(3276), - [aux_sym_float_token2] = ACTIONS(3278), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [aux_sym_string_token1] = ACTIONS(3278), - [aux_sym_string_token3] = ACTIONS(3278), + [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(3072), - [sym_identifier] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3072), - [anon_sym_package] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_cast] = ACTIONS(3070), - [anon_sym_DOLLARtype] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_untyped] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_AT_COLON] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3072), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_EQ_EQ] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3072), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3072), - [anon_sym_EQ_GT] = ACTIONS(3072), - [anon_sym_QMARK_QMARK] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3072), - [anon_sym_null] = ACTIONS(3070), - [anon_sym_macro] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym_inline] = ACTIONS(3070), - [anon_sym_overload] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_final] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_typedef] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [aux_sym_integer_token1] = ACTIONS(3070), - [aux_sym_integer_token2] = ACTIONS(3072), - [aux_sym_float_token1] = ACTIONS(3070), - [aux_sym_float_token2] = ACTIONS(3072), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [aux_sym_string_token1] = ACTIONS(3072), - [aux_sym_string_token3] = ACTIONS(3072), + [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(3322), - [sym_identifier] = ACTIONS(3320), - [anon_sym_POUND] = ACTIONS(3322), - [anon_sym_package] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_STAR] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_cast] = ACTIONS(3320), - [anon_sym_DOLLARtype] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_untyped] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_this] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_AT_COLON] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_catch] = ACTIONS(3320), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [anon_sym_PERCENT] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_LT_LT] = ACTIONS(3322), - [anon_sym_GT_GT] = ACTIONS(3320), - [anon_sym_GT_GT_GT] = ACTIONS(3322), - [anon_sym_AMP] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(3320), - [anon_sym_CARET] = ACTIONS(3322), - [anon_sym_AMP_AMP] = ACTIONS(3322), - [anon_sym_PIPE_PIPE] = ACTIONS(3322), - [anon_sym_EQ_EQ] = ACTIONS(3322), - [anon_sym_BANG_EQ] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_LT_EQ] = ACTIONS(3322), - [anon_sym_GT] = ACTIONS(3320), - [anon_sym_GT_EQ] = ACTIONS(3322), - [anon_sym_EQ_GT] = ACTIONS(3322), - [anon_sym_QMARK_QMARK] = ACTIONS(3322), - [anon_sym_EQ] = ACTIONS(3320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), - [anon_sym_null] = ACTIONS(3320), - [anon_sym_macro] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_extern] = ACTIONS(3320), - [anon_sym_inline] = ACTIONS(3320), - [anon_sym_overload] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_final] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), - [anon_sym_typedef] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [aux_sym_integer_token1] = ACTIONS(3320), - [aux_sym_integer_token2] = ACTIONS(3322), - [aux_sym_float_token1] = ACTIONS(3320), - [aux_sym_float_token2] = ACTIONS(3322), - [anon_sym_true] = ACTIONS(3320), - [anon_sym_false] = ACTIONS(3320), - [aux_sym_string_token1] = ACTIONS(3322), - [aux_sym_string_token3] = ACTIONS(3322), + [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(3076), - [sym_identifier] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3076), - [anon_sym_package] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_using] = ACTIONS(3074), - [anon_sym_throw] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_cast] = ACTIONS(3074), - [anon_sym_DOLLARtype] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_untyped] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_this] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_AT_COLON] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3074), - [anon_sym_catch] = ACTIONS(3074), - [anon_sym_else] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_while] = ACTIONS(3074), - [anon_sym_do] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3076), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_EQ_EQ] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3076), - [anon_sym_EQ_GT] = ACTIONS(3076), - [anon_sym_QMARK_QMARK] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3074), - [anon_sym_macro] = ACTIONS(3074), - [anon_sym_abstract] = ACTIONS(3074), - [anon_sym_static] = ACTIONS(3074), - [anon_sym_public] = ACTIONS(3074), - [anon_sym_private] = ACTIONS(3074), - [anon_sym_extern] = ACTIONS(3074), - [anon_sym_inline] = ACTIONS(3074), - [anon_sym_overload] = ACTIONS(3074), - [anon_sym_override] = ACTIONS(3074), - [anon_sym_final] = ACTIONS(3074), - [anon_sym_class] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_typedef] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3074), - [anon_sym_var] = ACTIONS(3074), - [aux_sym_integer_token1] = ACTIONS(3074), - [aux_sym_integer_token2] = ACTIONS(3076), - [aux_sym_float_token1] = ACTIONS(3074), - [aux_sym_float_token2] = ACTIONS(3076), - [anon_sym_true] = ACTIONS(3074), - [anon_sym_false] = ACTIONS(3074), - [aux_sym_string_token1] = ACTIONS(3076), - [aux_sym_string_token3] = ACTIONS(3076), + [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(3080), - [sym_identifier] = ACTIONS(3078), - [anon_sym_POUND] = ACTIONS(3080), - [anon_sym_package] = ACTIONS(3078), - [anon_sym_import] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_cast] = ACTIONS(3078), - [anon_sym_DOLLARtype] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_untyped] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_this] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_AT_COLON] = ACTIONS(3080), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3078), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_EQ_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_EQ_GT] = ACTIONS(3080), - [anon_sym_QMARK_QMARK] = ACTIONS(3080), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3078), - [anon_sym_macro] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_extern] = ACTIONS(3078), - [anon_sym_inline] = ACTIONS(3078), - [anon_sym_overload] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_final] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_typedef] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3078), - [anon_sym_var] = ACTIONS(3078), - [aux_sym_integer_token1] = ACTIONS(3078), - [aux_sym_integer_token2] = ACTIONS(3080), - [aux_sym_float_token1] = ACTIONS(3078), - [aux_sym_float_token2] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3078), - [anon_sym_false] = ACTIONS(3078), - [aux_sym_string_token1] = ACTIONS(3080), - [aux_sym_string_token3] = ACTIONS(3080), + [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(3084), - [sym_identifier] = ACTIONS(3082), - [anon_sym_POUND] = ACTIONS(3084), - [anon_sym_package] = ACTIONS(3082), - [anon_sym_import] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_cast] = ACTIONS(3082), - [anon_sym_DOLLARtype] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_untyped] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_this] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_AT_COLON] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_catch] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_GT_GT_GT] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_EQ_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_EQ_GT] = ACTIONS(3084), - [anon_sym_QMARK_QMARK] = ACTIONS(3084), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3082), - [anon_sym_macro] = ACTIONS(3082), - [anon_sym_abstract] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_public] = ACTIONS(3082), - [anon_sym_private] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_overload] = ACTIONS(3082), - [anon_sym_override] = ACTIONS(3082), - [anon_sym_final] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_function] = ACTIONS(3082), - [anon_sym_var] = ACTIONS(3082), - [aux_sym_integer_token1] = ACTIONS(3082), - [aux_sym_integer_token2] = ACTIONS(3084), - [aux_sym_float_token1] = ACTIONS(3082), - [aux_sym_float_token2] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3082), - [anon_sym_false] = ACTIONS(3082), - [aux_sym_string_token1] = ACTIONS(3084), - [aux_sym_string_token3] = ACTIONS(3084), + [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(3088), - [sym_identifier] = ACTIONS(3086), - [anon_sym_POUND] = ACTIONS(3088), - [anon_sym_package] = ACTIONS(3086), - [anon_sym_import] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_cast] = ACTIONS(3086), - [anon_sym_DOLLARtype] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_untyped] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_this] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_AT_COLON] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_catch] = ACTIONS(3086), - [anon_sym_else] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_LT_LT] = ACTIONS(3088), - [anon_sym_GT_GT] = ACTIONS(3086), - [anon_sym_GT_GT_GT] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_LT_EQ] = ACTIONS(3088), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_GT_EQ] = ACTIONS(3088), - [anon_sym_EQ_GT] = ACTIONS(3088), - [anon_sym_QMARK_QMARK] = ACTIONS(3088), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3088), - [anon_sym_null] = ACTIONS(3086), - [anon_sym_macro] = ACTIONS(3086), - [anon_sym_abstract] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym_overload] = ACTIONS(3086), - [anon_sym_override] = ACTIONS(3086), - [anon_sym_final] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(3086), - [anon_sym_var] = ACTIONS(3086), - [aux_sym_integer_token1] = ACTIONS(3086), - [aux_sym_integer_token2] = ACTIONS(3088), - [aux_sym_float_token1] = ACTIONS(3086), - [aux_sym_float_token2] = ACTIONS(3088), - [anon_sym_true] = ACTIONS(3086), - [anon_sym_false] = ACTIONS(3086), - [aux_sym_string_token1] = ACTIONS(3088), - [aux_sym_string_token3] = ACTIONS(3088), + [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(3092), - [sym_identifier] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3092), - [anon_sym_package] = ACTIONS(3090), - [anon_sym_import] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_switch] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_cast] = ACTIONS(3090), - [anon_sym_DOLLARtype] = ACTIONS(3092), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_untyped] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3090), - [anon_sym_AT] = ACTIONS(3090), - [anon_sym_AT_COLON] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3090), - [anon_sym_catch] = ACTIONS(3090), - [anon_sym_else] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_while] = ACTIONS(3090), - [anon_sym_do] = ACTIONS(3090), - [anon_sym_new] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3092), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3092), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_EQ_EQ] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3092), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3092), - [anon_sym_EQ_GT] = ACTIONS(3092), - [anon_sym_QMARK_QMARK] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3090), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3092), - [anon_sym_null] = ACTIONS(3090), - [anon_sym_macro] = ACTIONS(3090), - [anon_sym_abstract] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym_overload] = ACTIONS(3090), - [anon_sym_override] = ACTIONS(3090), - [anon_sym_final] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_interface] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_function] = ACTIONS(3090), - [anon_sym_var] = ACTIONS(3090), - [aux_sym_integer_token1] = ACTIONS(3090), - [aux_sym_integer_token2] = ACTIONS(3092), - [aux_sym_float_token1] = ACTIONS(3090), - [aux_sym_float_token2] = ACTIONS(3092), - [anon_sym_true] = ACTIONS(3090), - [anon_sym_false] = ACTIONS(3090), - [aux_sym_string_token1] = ACTIONS(3092), - [aux_sym_string_token3] = ACTIONS(3092), + [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(3096), - [sym_identifier] = ACTIONS(3094), - [anon_sym_POUND] = ACTIONS(3096), - [anon_sym_package] = ACTIONS(3094), - [anon_sym_import] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_cast] = ACTIONS(3094), - [anon_sym_DOLLARtype] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_untyped] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_AT_COLON] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_catch] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PERCENT] = ACTIONS(3096), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_LT_LT] = ACTIONS(3096), - [anon_sym_GT_GT] = ACTIONS(3094), - [anon_sym_GT_GT_GT] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_PIPE] = ACTIONS(3094), - [anon_sym_CARET] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_PIPE_PIPE] = ACTIONS(3096), - [anon_sym_EQ_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_LT_EQ] = ACTIONS(3096), - [anon_sym_GT] = ACTIONS(3094), - [anon_sym_GT_EQ] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(3096), - [anon_sym_QMARK_QMARK] = ACTIONS(3096), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3096), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_macro] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_overload] = ACTIONS(3094), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3094), - [anon_sym_var] = ACTIONS(3094), - [aux_sym_integer_token1] = ACTIONS(3094), - [aux_sym_integer_token2] = ACTIONS(3096), - [aux_sym_float_token1] = ACTIONS(3094), - [aux_sym_float_token2] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [aux_sym_string_token1] = ACTIONS(3096), - [aux_sym_string_token3] = ACTIONS(3096), + [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(3100), - [sym_identifier] = ACTIONS(3098), - [anon_sym_POUND] = ACTIONS(3100), - [anon_sym_package] = ACTIONS(3098), - [anon_sym_import] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_cast] = ACTIONS(3098), - [anon_sym_DOLLARtype] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_untyped] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_this] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_AT_COLON] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_catch] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_PERCENT] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_LT_LT] = ACTIONS(3100), - [anon_sym_GT_GT] = ACTIONS(3098), - [anon_sym_GT_GT_GT] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_CARET] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_PIPE_PIPE] = ACTIONS(3100), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3100), - [anon_sym_GT] = ACTIONS(3098), - [anon_sym_GT_EQ] = ACTIONS(3100), - [anon_sym_EQ_GT] = ACTIONS(3100), - [anon_sym_QMARK_QMARK] = ACTIONS(3100), - [anon_sym_EQ] = ACTIONS(3098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), - [anon_sym_null] = ACTIONS(3098), - [anon_sym_macro] = ACTIONS(3098), - [anon_sym_abstract] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_overload] = ACTIONS(3098), - [anon_sym_override] = ACTIONS(3098), - [anon_sym_final] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_function] = ACTIONS(3098), - [anon_sym_var] = ACTIONS(3098), - [aux_sym_integer_token1] = ACTIONS(3098), - [aux_sym_integer_token2] = ACTIONS(3100), - [aux_sym_float_token1] = ACTIONS(3098), - [aux_sym_float_token2] = ACTIONS(3100), - [anon_sym_true] = ACTIONS(3098), - [anon_sym_false] = ACTIONS(3098), - [aux_sym_string_token1] = ACTIONS(3100), - [aux_sym_string_token3] = ACTIONS(3100), + [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(3104), - [sym_identifier] = ACTIONS(3102), - [anon_sym_POUND] = ACTIONS(3104), - [anon_sym_package] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3104), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_cast] = ACTIONS(3102), - [anon_sym_DOLLARtype] = ACTIONS(3104), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_untyped] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_this] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_AT_COLON] = ACTIONS(3104), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_catch] = ACTIONS(3102), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_PERCENT] = ACTIONS(3104), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_LT_LT] = ACTIONS(3104), - [anon_sym_GT_GT] = ACTIONS(3102), - [anon_sym_GT_GT_GT] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3104), - [anon_sym_EQ_EQ] = ACTIONS(3104), - [anon_sym_BANG_EQ] = ACTIONS(3104), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_LT_EQ] = ACTIONS(3104), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_GT_EQ] = ACTIONS(3104), - [anon_sym_EQ_GT] = ACTIONS(3104), - [anon_sym_QMARK_QMARK] = ACTIONS(3104), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3104), - [anon_sym_null] = ACTIONS(3102), - [anon_sym_macro] = ACTIONS(3102), - [anon_sym_abstract] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym_overload] = ACTIONS(3102), - [anon_sym_override] = ACTIONS(3102), - [anon_sym_final] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [aux_sym_integer_token1] = ACTIONS(3102), - [aux_sym_integer_token2] = ACTIONS(3104), - [aux_sym_float_token1] = ACTIONS(3102), - [aux_sym_float_token2] = ACTIONS(3104), - [anon_sym_true] = ACTIONS(3102), - [anon_sym_false] = ACTIONS(3102), - [aux_sym_string_token1] = ACTIONS(3104), - [aux_sym_string_token3] = ACTIONS(3104), + [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(3108), - [sym_identifier] = ACTIONS(3106), - [anon_sym_POUND] = ACTIONS(3108), - [anon_sym_package] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_cast] = ACTIONS(3106), - [anon_sym_DOLLARtype] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_untyped] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_AT_COLON] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_catch] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_LT_LT] = ACTIONS(3108), - [anon_sym_GT_GT] = ACTIONS(3106), - [anon_sym_GT_GT_GT] = ACTIONS(3108), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_EQ_EQ] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_EQ_GT] = ACTIONS(3108), - [anon_sym_QMARK_QMARK] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_macro] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_extern] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_overload] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [anon_sym_typedef] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [aux_sym_integer_token1] = ACTIONS(3106), - [aux_sym_integer_token2] = ACTIONS(3108), - [aux_sym_float_token1] = ACTIONS(3106), - [aux_sym_float_token2] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [aux_sym_string_token1] = ACTIONS(3108), - [aux_sym_string_token3] = ACTIONS(3108), + [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(3116), - [sym_identifier] = ACTIONS(3114), - [anon_sym_POUND] = ACTIONS(3116), - [anon_sym_package] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_cast] = ACTIONS(3114), - [anon_sym_DOLLARtype] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_untyped] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_AT_COLON] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_catch] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_do] = ACTIONS(3114), - [anon_sym_new] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_LT_LT] = ACTIONS(3116), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_GT_GT_GT] = ACTIONS(3116), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_CARET] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_EQ_GT] = ACTIONS(3116), - [anon_sym_QMARK_QMARK] = ACTIONS(3116), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_macro] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_static] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_extern] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_overload] = ACTIONS(3114), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_class] = ACTIONS(3114), - [anon_sym_interface] = ACTIONS(3114), - [anon_sym_enum] = ACTIONS(3114), - [anon_sym_typedef] = ACTIONS(3114), - [anon_sym_function] = ACTIONS(3114), - [anon_sym_var] = ACTIONS(3114), - [aux_sym_integer_token1] = ACTIONS(3114), - [aux_sym_integer_token2] = ACTIONS(3116), - [aux_sym_float_token1] = ACTIONS(3114), - [aux_sym_float_token2] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [aux_sym_string_token1] = ACTIONS(3116), - [aux_sym_string_token3] = ACTIONS(3116), + [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(3120), - [sym_identifier] = ACTIONS(3118), - [anon_sym_POUND] = ACTIONS(3120), - [anon_sym_package] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3118), - [anon_sym_throw] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_switch] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3120), - [anon_sym_cast] = ACTIONS(3118), - [anon_sym_DOLLARtype] = ACTIONS(3120), - [anon_sym_for] = ACTIONS(3118), - [anon_sym_return] = ACTIONS(3118), - [anon_sym_untyped] = ACTIONS(3118), - [anon_sym_break] = ACTIONS(3118), - [anon_sym_continue] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_this] = ACTIONS(3118), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_AT_COLON] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(3118), - [anon_sym_catch] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3118), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_while] = ACTIONS(3118), - [anon_sym_do] = ACTIONS(3118), - [anon_sym_new] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3120), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3120), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_CARET] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_EQ_EQ] = ACTIONS(3120), - [anon_sym_BANG_EQ] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3120), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3120), - [anon_sym_EQ_GT] = ACTIONS(3120), - [anon_sym_QMARK_QMARK] = ACTIONS(3120), - [anon_sym_EQ] = ACTIONS(3118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3120), - [anon_sym_null] = ACTIONS(3118), - [anon_sym_macro] = ACTIONS(3118), - [anon_sym_abstract] = ACTIONS(3118), - [anon_sym_static] = ACTIONS(3118), - [anon_sym_public] = ACTIONS(3118), - [anon_sym_private] = ACTIONS(3118), - [anon_sym_extern] = ACTIONS(3118), - [anon_sym_inline] = ACTIONS(3118), - [anon_sym_overload] = ACTIONS(3118), - [anon_sym_override] = ACTIONS(3118), - [anon_sym_final] = ACTIONS(3118), - [anon_sym_class] = ACTIONS(3118), - [anon_sym_interface] = ACTIONS(3118), - [anon_sym_enum] = ACTIONS(3118), - [anon_sym_typedef] = ACTIONS(3118), - [anon_sym_function] = ACTIONS(3118), - [anon_sym_var] = ACTIONS(3118), - [aux_sym_integer_token1] = ACTIONS(3118), - [aux_sym_integer_token2] = ACTIONS(3120), - [aux_sym_float_token1] = ACTIONS(3118), - [aux_sym_float_token2] = ACTIONS(3120), - [anon_sym_true] = ACTIONS(3118), - [anon_sym_false] = ACTIONS(3118), - [aux_sym_string_token1] = ACTIONS(3120), - [aux_sym_string_token3] = ACTIONS(3120), + [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(3124), - [sym_identifier] = ACTIONS(3122), - [anon_sym_POUND] = ACTIONS(3124), - [anon_sym_package] = ACTIONS(3122), - [anon_sym_import] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3122), - [anon_sym_throw] = ACTIONS(3122), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_cast] = ACTIONS(3122), - [anon_sym_DOLLARtype] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3122), - [anon_sym_return] = ACTIONS(3122), - [anon_sym_untyped] = ACTIONS(3122), - [anon_sym_break] = ACTIONS(3122), - [anon_sym_continue] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_this] = ACTIONS(3122), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_AT_COLON] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3122), - [anon_sym_catch] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3122), - [anon_sym_while] = ACTIONS(3122), - [anon_sym_do] = ACTIONS(3122), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [anon_sym_PERCENT] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3124), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_GT_GT_GT] = ACTIONS(3124), - [anon_sym_AMP] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_CARET] = ACTIONS(3124), - [anon_sym_AMP_AMP] = ACTIONS(3124), - [anon_sym_PIPE_PIPE] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3124), - [anon_sym_BANG_EQ] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_EQ_GT] = ACTIONS(3124), - [anon_sym_QMARK_QMARK] = ACTIONS(3124), - [anon_sym_EQ] = ACTIONS(3122), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3124), - [anon_sym_null] = ACTIONS(3122), - [anon_sym_macro] = ACTIONS(3122), - [anon_sym_abstract] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3122), - [anon_sym_public] = ACTIONS(3122), - [anon_sym_private] = ACTIONS(3122), - [anon_sym_extern] = ACTIONS(3122), - [anon_sym_inline] = ACTIONS(3122), - [anon_sym_overload] = ACTIONS(3122), - [anon_sym_override] = ACTIONS(3122), - [anon_sym_final] = ACTIONS(3122), - [anon_sym_class] = ACTIONS(3122), - [anon_sym_interface] = ACTIONS(3122), - [anon_sym_enum] = ACTIONS(3122), - [anon_sym_typedef] = ACTIONS(3122), - [anon_sym_function] = ACTIONS(3122), - [anon_sym_var] = ACTIONS(3122), - [aux_sym_integer_token1] = ACTIONS(3122), - [aux_sym_integer_token2] = ACTIONS(3124), - [aux_sym_float_token1] = ACTIONS(3122), - [aux_sym_float_token2] = ACTIONS(3124), - [anon_sym_true] = ACTIONS(3122), - [anon_sym_false] = ACTIONS(3122), - [aux_sym_string_token1] = ACTIONS(3124), - [aux_sym_string_token3] = ACTIONS(3124), + [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(3128), - [sym_identifier] = ACTIONS(3126), - [anon_sym_POUND] = ACTIONS(3128), - [anon_sym_package] = ACTIONS(3126), - [anon_sym_import] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3126), - [anon_sym_throw] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_cast] = ACTIONS(3126), - [anon_sym_DOLLARtype] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3126), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_untyped] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_this] = ACTIONS(3126), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_AT_COLON] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_catch] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3126), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3126), - [anon_sym_GT_GT_GT] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3126), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP_AMP] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3128), - [anon_sym_BANG_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_GT] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3128), - [anon_sym_EQ_GT] = ACTIONS(3128), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3126), - [anon_sym_macro] = ACTIONS(3126), - [anon_sym_abstract] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_extern] = ACTIONS(3126), - [anon_sym_inline] = ACTIONS(3126), - [anon_sym_overload] = ACTIONS(3126), - [anon_sym_override] = ACTIONS(3126), - [anon_sym_final] = ACTIONS(3126), - [anon_sym_class] = ACTIONS(3126), - [anon_sym_interface] = ACTIONS(3126), - [anon_sym_enum] = ACTIONS(3126), - [anon_sym_typedef] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3126), - [anon_sym_var] = ACTIONS(3126), - [aux_sym_integer_token1] = ACTIONS(3126), - [aux_sym_integer_token2] = ACTIONS(3128), - [aux_sym_float_token1] = ACTIONS(3126), - [aux_sym_float_token2] = ACTIONS(3128), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [aux_sym_string_token1] = ACTIONS(3128), - [aux_sym_string_token3] = ACTIONS(3128), + [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(3132), - [sym_identifier] = ACTIONS(3130), - [anon_sym_POUND] = ACTIONS(3132), - [anon_sym_package] = ACTIONS(3130), - [anon_sym_import] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3130), - [anon_sym_throw] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3130), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_cast] = ACTIONS(3130), - [anon_sym_DOLLARtype] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3130), - [anon_sym_return] = ACTIONS(3130), - [anon_sym_untyped] = ACTIONS(3130), - [anon_sym_break] = ACTIONS(3130), - [anon_sym_continue] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_this] = ACTIONS(3130), - [anon_sym_AT] = ACTIONS(3130), - [anon_sym_AT_COLON] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3130), - [anon_sym_catch] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3130), - [anon_sym_if] = ACTIONS(3130), - [anon_sym_while] = ACTIONS(3130), - [anon_sym_do] = ACTIONS(3130), - [anon_sym_new] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), - [anon_sym_PERCENT] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_LT_LT] = ACTIONS(3132), - [anon_sym_GT_GT] = ACTIONS(3130), - [anon_sym_GT_GT_GT] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(3130), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3132), - [anon_sym_AMP_AMP] = ACTIONS(3132), - [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_EQ_EQ] = ACTIONS(3132), - [anon_sym_BANG_EQ] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_LT_EQ] = ACTIONS(3132), - [anon_sym_GT] = ACTIONS(3130), - [anon_sym_GT_EQ] = ACTIONS(3132), - [anon_sym_EQ_GT] = ACTIONS(3132), - [anon_sym_QMARK_QMARK] = ACTIONS(3132), - [anon_sym_EQ] = ACTIONS(3130), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_macro] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_extern] = ACTIONS(3130), - [anon_sym_inline] = ACTIONS(3130), - [anon_sym_overload] = ACTIONS(3130), - [anon_sym_override] = ACTIONS(3130), - [anon_sym_final] = ACTIONS(3130), - [anon_sym_class] = ACTIONS(3130), - [anon_sym_interface] = ACTIONS(3130), - [anon_sym_enum] = ACTIONS(3130), - [anon_sym_typedef] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3130), - [anon_sym_var] = ACTIONS(3130), - [aux_sym_integer_token1] = ACTIONS(3130), - [aux_sym_integer_token2] = ACTIONS(3132), - [aux_sym_float_token1] = ACTIONS(3130), - [aux_sym_float_token2] = ACTIONS(3132), - [anon_sym_true] = ACTIONS(3130), - [anon_sym_false] = ACTIONS(3130), - [aux_sym_string_token1] = ACTIONS(3132), - [aux_sym_string_token3] = ACTIONS(3132), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3136), - [sym_identifier] = ACTIONS(3134), - [anon_sym_POUND] = ACTIONS(3136), - [anon_sym_package] = ACTIONS(3134), - [anon_sym_import] = ACTIONS(3134), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_cast] = ACTIONS(3134), - [anon_sym_DOLLARtype] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_untyped] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_AT_COLON] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_catch] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_LT_LT] = ACTIONS(3136), - [anon_sym_GT_GT] = ACTIONS(3134), - [anon_sym_GT_GT_GT] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(3134), - [anon_sym_PIPE] = ACTIONS(3134), - [anon_sym_CARET] = ACTIONS(3136), - [anon_sym_AMP_AMP] = ACTIONS(3136), - [anon_sym_PIPE_PIPE] = ACTIONS(3136), - [anon_sym_EQ_EQ] = ACTIONS(3136), - [anon_sym_BANG_EQ] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_LT_EQ] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3134), - [anon_sym_GT_EQ] = ACTIONS(3136), - [anon_sym_EQ_GT] = ACTIONS(3136), - [anon_sym_QMARK_QMARK] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(3134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3136), - [anon_sym_null] = ACTIONS(3134), - [anon_sym_macro] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_extern] = ACTIONS(3134), - [anon_sym_inline] = ACTIONS(3134), - [anon_sym_overload] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_final] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), - [anon_sym_typedef] = ACTIONS(3134), - [anon_sym_function] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [aux_sym_integer_token1] = ACTIONS(3134), - [aux_sym_integer_token2] = ACTIONS(3136), - [aux_sym_float_token1] = ACTIONS(3134), - [aux_sym_float_token2] = ACTIONS(3136), - [anon_sym_true] = ACTIONS(3134), - [anon_sym_false] = ACTIONS(3134), - [aux_sym_string_token1] = ACTIONS(3136), - [aux_sym_string_token3] = ACTIONS(3136), + [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(3140), - [sym_identifier] = ACTIONS(3138), - [anon_sym_POUND] = ACTIONS(3140), - [anon_sym_package] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_cast] = ACTIONS(3138), - [anon_sym_DOLLARtype] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_untyped] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_this] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_AT_COLON] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_catch] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [anon_sym_PERCENT] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_LT_LT] = ACTIONS(3140), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_GT_GT_GT] = ACTIONS(3140), - [anon_sym_AMP] = ACTIONS(3138), - [anon_sym_PIPE] = ACTIONS(3138), - [anon_sym_CARET] = ACTIONS(3140), - [anon_sym_AMP_AMP] = ACTIONS(3140), - [anon_sym_PIPE_PIPE] = ACTIONS(3140), - [anon_sym_EQ_EQ] = ACTIONS(3140), - [anon_sym_BANG_EQ] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_LT_EQ] = ACTIONS(3140), - [anon_sym_GT] = ACTIONS(3138), - [anon_sym_GT_EQ] = ACTIONS(3140), - [anon_sym_EQ_GT] = ACTIONS(3140), - [anon_sym_QMARK_QMARK] = ACTIONS(3140), - [anon_sym_EQ] = ACTIONS(3138), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3140), - [anon_sym_null] = ACTIONS(3138), - [anon_sym_macro] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_extern] = ACTIONS(3138), - [anon_sym_inline] = ACTIONS(3138), - [anon_sym_overload] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_final] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), - [anon_sym_typedef] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [aux_sym_integer_token1] = ACTIONS(3138), - [aux_sym_integer_token2] = ACTIONS(3140), - [aux_sym_float_token1] = ACTIONS(3138), - [aux_sym_float_token2] = ACTIONS(3140), - [anon_sym_true] = ACTIONS(3138), - [anon_sym_false] = ACTIONS(3138), - [aux_sym_string_token1] = ACTIONS(3140), - [aux_sym_string_token3] = ACTIONS(3140), + [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(3326), - [sym_identifier] = ACTIONS(3324), - [anon_sym_POUND] = ACTIONS(3326), - [anon_sym_package] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_cast] = ACTIONS(3324), - [anon_sym_DOLLARtype] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_untyped] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_AT_COLON] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_catch] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_LT_LT] = ACTIONS(3326), - [anon_sym_GT_GT] = ACTIONS(3324), - [anon_sym_GT_GT_GT] = ACTIONS(3326), - [anon_sym_AMP] = ACTIONS(3324), - [anon_sym_PIPE] = ACTIONS(3324), - [anon_sym_CARET] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_EQ_EQ] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_LT_EQ] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3324), - [anon_sym_GT_EQ] = ACTIONS(3326), - [anon_sym_EQ_GT] = ACTIONS(3326), - [anon_sym_QMARK_QMARK] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), - [anon_sym_null] = ACTIONS(3324), - [anon_sym_macro] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(3324), - [anon_sym_inline] = ACTIONS(3324), - [anon_sym_overload] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_final] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [anon_sym_typedef] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [aux_sym_integer_token1] = ACTIONS(3324), - [aux_sym_integer_token2] = ACTIONS(3326), - [aux_sym_float_token1] = ACTIONS(3324), - [aux_sym_float_token2] = ACTIONS(3326), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [aux_sym_string_token1] = ACTIONS(3326), - [aux_sym_string_token3] = ACTIONS(3326), + [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(3144), - [sym_identifier] = ACTIONS(3142), - [anon_sym_POUND] = ACTIONS(3144), - [anon_sym_package] = ACTIONS(3142), - [anon_sym_import] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3142), - [anon_sym_throw] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_cast] = ACTIONS(3142), - [anon_sym_DOLLARtype] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_untyped] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_this] = ACTIONS(3142), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_AT_COLON] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_catch] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_new] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), - [anon_sym_PERCENT] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_LT_LT] = ACTIONS(3144), - [anon_sym_GT_GT] = ACTIONS(3142), - [anon_sym_GT_GT_GT] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(3142), - [anon_sym_PIPE] = ACTIONS(3142), - [anon_sym_CARET] = ACTIONS(3144), - [anon_sym_AMP_AMP] = ACTIONS(3144), - [anon_sym_PIPE_PIPE] = ACTIONS(3144), - [anon_sym_EQ_EQ] = ACTIONS(3144), - [anon_sym_BANG_EQ] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_LT_EQ] = ACTIONS(3144), - [anon_sym_GT] = ACTIONS(3142), - [anon_sym_GT_EQ] = ACTIONS(3144), - [anon_sym_EQ_GT] = ACTIONS(3144), - [anon_sym_QMARK_QMARK] = ACTIONS(3144), - [anon_sym_EQ] = ACTIONS(3142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3144), - [anon_sym_null] = ACTIONS(3142), - [anon_sym_macro] = ACTIONS(3142), - [anon_sym_abstract] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_extern] = ACTIONS(3142), - [anon_sym_inline] = ACTIONS(3142), - [anon_sym_overload] = ACTIONS(3142), - [anon_sym_override] = ACTIONS(3142), - [anon_sym_final] = ACTIONS(3142), - [anon_sym_class] = ACTIONS(3142), - [anon_sym_interface] = ACTIONS(3142), - [anon_sym_enum] = ACTIONS(3142), - [anon_sym_typedef] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3142), - [anon_sym_var] = ACTIONS(3142), - [aux_sym_integer_token1] = ACTIONS(3142), - [aux_sym_integer_token2] = ACTIONS(3144), - [aux_sym_float_token1] = ACTIONS(3142), - [aux_sym_float_token2] = ACTIONS(3144), - [anon_sym_true] = ACTIONS(3142), - [anon_sym_false] = ACTIONS(3142), - [aux_sym_string_token1] = ACTIONS(3144), - [aux_sym_string_token3] = ACTIONS(3144), + [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(3148), - [sym_identifier] = ACTIONS(3146), - [anon_sym_POUND] = ACTIONS(3148), - [anon_sym_package] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_cast] = ACTIONS(3146), - [anon_sym_DOLLARtype] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_untyped] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_this] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_AT_COLON] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_catch] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [anon_sym_PERCENT] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_LT_LT] = ACTIONS(3148), - [anon_sym_GT_GT] = ACTIONS(3146), - [anon_sym_GT_GT_GT] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3146), - [anon_sym_PIPE] = ACTIONS(3146), - [anon_sym_CARET] = ACTIONS(3148), - [anon_sym_AMP_AMP] = ACTIONS(3148), - [anon_sym_PIPE_PIPE] = ACTIONS(3148), - [anon_sym_EQ_EQ] = ACTIONS(3148), - [anon_sym_BANG_EQ] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_LT_EQ] = ACTIONS(3148), - [anon_sym_GT] = ACTIONS(3146), - [anon_sym_GT_EQ] = ACTIONS(3148), - [anon_sym_EQ_GT] = ACTIONS(3148), - [anon_sym_QMARK_QMARK] = ACTIONS(3148), - [anon_sym_EQ] = ACTIONS(3146), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3146), - [anon_sym_macro] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_extern] = ACTIONS(3146), - [anon_sym_inline] = ACTIONS(3146), - [anon_sym_overload] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_final] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [anon_sym_typedef] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [aux_sym_integer_token1] = ACTIONS(3146), - [aux_sym_integer_token2] = ACTIONS(3148), - [aux_sym_float_token1] = ACTIONS(3146), - [aux_sym_float_token2] = ACTIONS(3148), - [anon_sym_true] = ACTIONS(3146), - [anon_sym_false] = ACTIONS(3146), - [aux_sym_string_token1] = ACTIONS(3148), - [aux_sym_string_token3] = ACTIONS(3148), + [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(3152), - [sym_identifier] = ACTIONS(3150), - [anon_sym_POUND] = ACTIONS(3152), - [anon_sym_package] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_cast] = ACTIONS(3150), - [anon_sym_DOLLARtype] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_untyped] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_this] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_AT_COLON] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_catch] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [anon_sym_PERCENT] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_LT_LT] = ACTIONS(3152), - [anon_sym_GT_GT] = ACTIONS(3150), - [anon_sym_GT_GT_GT] = ACTIONS(3152), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_PIPE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_PIPE_PIPE] = ACTIONS(3152), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_LT_EQ] = ACTIONS(3152), - [anon_sym_GT] = ACTIONS(3150), - [anon_sym_GT_EQ] = ACTIONS(3152), - [anon_sym_EQ_GT] = ACTIONS(3152), - [anon_sym_QMARK_QMARK] = ACTIONS(3152), - [anon_sym_EQ] = ACTIONS(3150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3152), - [anon_sym_null] = ACTIONS(3150), - [anon_sym_macro] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_extern] = ACTIONS(3150), - [anon_sym_inline] = ACTIONS(3150), - [anon_sym_overload] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_final] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), - [anon_sym_typedef] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [aux_sym_integer_token1] = ACTIONS(3150), - [aux_sym_integer_token2] = ACTIONS(3152), - [aux_sym_float_token1] = ACTIONS(3150), - [aux_sym_float_token2] = ACTIONS(3152), - [anon_sym_true] = ACTIONS(3150), - [anon_sym_false] = ACTIONS(3150), - [aux_sym_string_token1] = ACTIONS(3152), - [aux_sym_string_token3] = ACTIONS(3152), + [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(3156), - [sym_identifier] = ACTIONS(3154), - [anon_sym_POUND] = ACTIONS(3156), - [anon_sym_package] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_cast] = ACTIONS(3154), - [anon_sym_DOLLARtype] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_untyped] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_this] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_AT_COLON] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_catch] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [anon_sym_PERCENT] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_LT_LT] = ACTIONS(3156), - [anon_sym_GT_GT] = ACTIONS(3154), - [anon_sym_GT_GT_GT] = ACTIONS(3156), - [anon_sym_AMP] = ACTIONS(3154), - [anon_sym_PIPE] = ACTIONS(3154), - [anon_sym_CARET] = ACTIONS(3156), - [anon_sym_AMP_AMP] = ACTIONS(3156), - [anon_sym_PIPE_PIPE] = ACTIONS(3156), - [anon_sym_EQ_EQ] = ACTIONS(3156), - [anon_sym_BANG_EQ] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3156), - [anon_sym_EQ_GT] = ACTIONS(3156), - [anon_sym_QMARK_QMARK] = ACTIONS(3156), - [anon_sym_EQ] = ACTIONS(3154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3156), - [anon_sym_null] = ACTIONS(3154), - [anon_sym_macro] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_extern] = ACTIONS(3154), - [anon_sym_inline] = ACTIONS(3154), - [anon_sym_overload] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_final] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [anon_sym_typedef] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [aux_sym_integer_token1] = ACTIONS(3154), - [aux_sym_integer_token2] = ACTIONS(3156), - [aux_sym_float_token1] = ACTIONS(3154), - [aux_sym_float_token2] = ACTIONS(3156), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [aux_sym_string_token1] = ACTIONS(3156), - [aux_sym_string_token3] = ACTIONS(3156), + [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(3330), - [sym_identifier] = ACTIONS(3328), - [anon_sym_POUND] = ACTIONS(3330), - [anon_sym_package] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_STAR] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_cast] = ACTIONS(3328), - [anon_sym_DOLLARtype] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_untyped] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_this] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_AT_COLON] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_catch] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_PERCENT] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_LT_LT] = ACTIONS(3330), - [anon_sym_GT_GT] = ACTIONS(3328), - [anon_sym_GT_GT_GT] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(3328), - [anon_sym_CARET] = ACTIONS(3330), - [anon_sym_AMP_AMP] = ACTIONS(3330), - [anon_sym_PIPE_PIPE] = ACTIONS(3330), - [anon_sym_EQ_EQ] = ACTIONS(3330), - [anon_sym_BANG_EQ] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_LT_EQ] = ACTIONS(3330), - [anon_sym_GT] = ACTIONS(3328), - [anon_sym_GT_EQ] = ACTIONS(3330), - [anon_sym_EQ_GT] = ACTIONS(3330), - [anon_sym_QMARK_QMARK] = ACTIONS(3330), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), - [anon_sym_null] = ACTIONS(3328), - [anon_sym_macro] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_extern] = ACTIONS(3328), - [anon_sym_inline] = ACTIONS(3328), - [anon_sym_overload] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_final] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [anon_sym_typedef] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [aux_sym_integer_token1] = ACTIONS(3328), - [aux_sym_integer_token2] = ACTIONS(3330), - [aux_sym_float_token1] = ACTIONS(3328), - [aux_sym_float_token2] = ACTIONS(3330), - [anon_sym_true] = ACTIONS(3328), - [anon_sym_false] = ACTIONS(3328), - [aux_sym_string_token1] = ACTIONS(3330), - [aux_sym_string_token3] = ACTIONS(3330), + [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(3160), - [sym_identifier] = ACTIONS(3158), - [anon_sym_POUND] = ACTIONS(3160), - [anon_sym_package] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_STAR] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_cast] = ACTIONS(3158), - [anon_sym_DOLLARtype] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_untyped] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_this] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_AT_COLON] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_catch] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_LT_LT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_GT_GT_GT] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3158), - [anon_sym_PIPE] = ACTIONS(3158), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_EQ_EQ] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3160), - [anon_sym_EQ_GT] = ACTIONS(3160), - [anon_sym_QMARK_QMARK] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3160), - [anon_sym_null] = ACTIONS(3158), - [anon_sym_macro] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_extern] = ACTIONS(3158), - [anon_sym_inline] = ACTIONS(3158), - [anon_sym_overload] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_final] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), - [anon_sym_typedef] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [aux_sym_integer_token1] = ACTIONS(3158), - [aux_sym_integer_token2] = ACTIONS(3160), - [aux_sym_float_token1] = ACTIONS(3158), - [aux_sym_float_token2] = ACTIONS(3160), - [anon_sym_true] = ACTIONS(3158), - [anon_sym_false] = ACTIONS(3158), - [aux_sym_string_token1] = ACTIONS(3160), - [aux_sym_string_token3] = ACTIONS(3160), + [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(3164), - [sym_identifier] = ACTIONS(3162), - [anon_sym_POUND] = ACTIONS(3164), - [anon_sym_package] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_STAR] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_cast] = ACTIONS(3162), - [anon_sym_DOLLARtype] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_untyped] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_this] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_AT_COLON] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_catch] = ACTIONS(3162), - [anon_sym_else] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [anon_sym_PERCENT] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_LT_LT] = ACTIONS(3164), - [anon_sym_GT_GT] = ACTIONS(3162), - [anon_sym_GT_GT_GT] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3162), - [anon_sym_CARET] = ACTIONS(3164), - [anon_sym_AMP_AMP] = ACTIONS(3164), - [anon_sym_PIPE_PIPE] = ACTIONS(3164), - [anon_sym_EQ_EQ] = ACTIONS(3164), - [anon_sym_BANG_EQ] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_LT_EQ] = ACTIONS(3164), - [anon_sym_GT] = ACTIONS(3162), - [anon_sym_GT_EQ] = ACTIONS(3164), - [anon_sym_EQ_GT] = ACTIONS(3164), - [anon_sym_QMARK_QMARK] = ACTIONS(3164), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3164), - [anon_sym_null] = ACTIONS(3162), - [anon_sym_macro] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_extern] = ACTIONS(3162), - [anon_sym_inline] = ACTIONS(3162), - [anon_sym_overload] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_final] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), - [anon_sym_typedef] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [aux_sym_integer_token1] = ACTIONS(3162), - [aux_sym_integer_token2] = ACTIONS(3164), - [aux_sym_float_token1] = ACTIONS(3162), - [aux_sym_float_token2] = ACTIONS(3164), - [anon_sym_true] = ACTIONS(3162), - [anon_sym_false] = ACTIONS(3162), - [aux_sym_string_token1] = ACTIONS(3164), - [aux_sym_string_token3] = ACTIONS(3164), + [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(3168), - [sym_identifier] = ACTIONS(3166), - [anon_sym_POUND] = ACTIONS(3168), - [anon_sym_package] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3168), - [anon_sym_cast] = ACTIONS(3166), - [anon_sym_DOLLARtype] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_untyped] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_AT_COLON] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_catch] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [anon_sym_PERCENT] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_LT_LT] = ACTIONS(3168), - [anon_sym_GT_GT] = ACTIONS(3166), - [anon_sym_GT_GT_GT] = ACTIONS(3168), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_PIPE] = ACTIONS(3166), - [anon_sym_CARET] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_EQ_GT] = ACTIONS(3168), - [anon_sym_QMARK_QMARK] = ACTIONS(3168), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_macro] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_extern] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_overload] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), - [anon_sym_typedef] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [aux_sym_integer_token1] = ACTIONS(3166), - [aux_sym_integer_token2] = ACTIONS(3168), - [aux_sym_float_token1] = ACTIONS(3166), - [aux_sym_float_token2] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [aux_sym_string_token1] = ACTIONS(3168), - [aux_sym_string_token3] = ACTIONS(3168), + [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(3172), - [sym_identifier] = ACTIONS(3170), - [anon_sym_POUND] = ACTIONS(3172), - [anon_sym_package] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_cast] = ACTIONS(3170), - [anon_sym_DOLLARtype] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_untyped] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_this] = ACTIONS(3170), - [anon_sym_AT] = ACTIONS(3170), - [anon_sym_AT_COLON] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_catch] = ACTIONS(3170), - [anon_sym_else] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [anon_sym_PERCENT] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_LT_LT] = ACTIONS(3172), - [anon_sym_GT_GT] = ACTIONS(3170), - [anon_sym_GT_GT_GT] = ACTIONS(3172), - [anon_sym_AMP] = ACTIONS(3170), - [anon_sym_PIPE] = ACTIONS(3170), - [anon_sym_CARET] = ACTIONS(3172), - [anon_sym_AMP_AMP] = ACTIONS(3172), - [anon_sym_PIPE_PIPE] = ACTIONS(3172), - [anon_sym_EQ_EQ] = ACTIONS(3172), - [anon_sym_BANG_EQ] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_LT_EQ] = ACTIONS(3172), - [anon_sym_GT] = ACTIONS(3170), - [anon_sym_GT_EQ] = ACTIONS(3172), - [anon_sym_EQ_GT] = ACTIONS(3172), - [anon_sym_QMARK_QMARK] = ACTIONS(3172), - [anon_sym_EQ] = ACTIONS(3170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3172), - [anon_sym_null] = ACTIONS(3170), - [anon_sym_macro] = ACTIONS(3170), - [anon_sym_abstract] = ACTIONS(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_public] = ACTIONS(3170), - [anon_sym_private] = ACTIONS(3170), - [anon_sym_extern] = ACTIONS(3170), - [anon_sym_inline] = ACTIONS(3170), - [anon_sym_overload] = ACTIONS(3170), - [anon_sym_override] = ACTIONS(3170), - [anon_sym_final] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), - [anon_sym_typedef] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [aux_sym_integer_token1] = ACTIONS(3170), - [aux_sym_integer_token2] = ACTIONS(3172), - [aux_sym_float_token1] = ACTIONS(3170), - [aux_sym_float_token2] = ACTIONS(3172), - [anon_sym_true] = ACTIONS(3170), - [anon_sym_false] = ACTIONS(3170), - [aux_sym_string_token1] = ACTIONS(3172), - [aux_sym_string_token3] = ACTIONS(3172), + [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(3176), - [sym_identifier] = ACTIONS(3174), - [anon_sym_POUND] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_cast] = ACTIONS(3174), - [anon_sym_DOLLARtype] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_untyped] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_this] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_AT_COLON] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_catch] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PERCENT] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_LT_LT] = ACTIONS(3176), - [anon_sym_GT_GT] = ACTIONS(3174), - [anon_sym_GT_GT_GT] = ACTIONS(3176), - [anon_sym_AMP] = ACTIONS(3174), - [anon_sym_PIPE] = ACTIONS(3174), - [anon_sym_CARET] = ACTIONS(3176), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [anon_sym_PIPE_PIPE] = ACTIONS(3176), - [anon_sym_EQ_EQ] = ACTIONS(3176), - [anon_sym_BANG_EQ] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_LT_EQ] = ACTIONS(3176), - [anon_sym_GT] = ACTIONS(3174), - [anon_sym_GT_EQ] = ACTIONS(3176), - [anon_sym_EQ_GT] = ACTIONS(3176), - [anon_sym_QMARK_QMARK] = ACTIONS(3176), - [anon_sym_EQ] = ACTIONS(3174), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3176), - [anon_sym_null] = ACTIONS(3174), - [anon_sym_macro] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_extern] = ACTIONS(3174), - [anon_sym_inline] = ACTIONS(3174), - [anon_sym_overload] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_final] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), - [anon_sym_typedef] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [aux_sym_integer_token1] = ACTIONS(3174), - [aux_sym_integer_token2] = ACTIONS(3176), - [aux_sym_float_token1] = ACTIONS(3174), - [aux_sym_float_token2] = ACTIONS(3176), - [anon_sym_true] = ACTIONS(3174), - [anon_sym_false] = ACTIONS(3174), - [aux_sym_string_token1] = ACTIONS(3176), - [aux_sym_string_token3] = ACTIONS(3176), + [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(2662), - [sym_identifier] = ACTIONS(2660), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_package] = ACTIONS(2660), - [anon_sym_import] = ACTIONS(2660), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_using] = ACTIONS(2660), - [anon_sym_throw] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_cast] = ACTIONS(2660), - [anon_sym_DOLLARtype] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_untyped] = ACTIONS(2660), - [anon_sym_break] = ACTIONS(2660), - [anon_sym_continue] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_this] = ACTIONS(2660), - [anon_sym_AT] = ACTIONS(2660), - [anon_sym_AT_COLON] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_catch] = ACTIONS(2660), - [anon_sym_else] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_PLUS] = ACTIONS(2662), - [anon_sym_DASH_DASH] = ACTIONS(2662), - [anon_sym_PERCENT] = ACTIONS(2662), - [anon_sym_SLASH] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_LT_LT] = ACTIONS(2662), - [anon_sym_GT_GT] = ACTIONS(2660), - [anon_sym_GT_GT_GT] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2660), - [anon_sym_CARET] = ACTIONS(2662), - [anon_sym_AMP_AMP] = ACTIONS(2662), - [anon_sym_PIPE_PIPE] = ACTIONS(2662), - [anon_sym_EQ_EQ] = ACTIONS(2662), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_LT_EQ] = ACTIONS(2662), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_GT_EQ] = ACTIONS(2662), - [anon_sym_EQ_GT] = ACTIONS(2662), - [anon_sym_QMARK_QMARK] = ACTIONS(2662), - [anon_sym_EQ] = ACTIONS(2660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_macro] = ACTIONS(2660), - [anon_sym_abstract] = ACTIONS(2660), - [anon_sym_static] = ACTIONS(2660), - [anon_sym_public] = ACTIONS(2660), - [anon_sym_private] = ACTIONS(2660), - [anon_sym_extern] = ACTIONS(2660), - [anon_sym_inline] = ACTIONS(2660), - [anon_sym_overload] = ACTIONS(2660), - [anon_sym_override] = ACTIONS(2660), - [anon_sym_final] = ACTIONS(2660), - [anon_sym_class] = ACTIONS(2660), - [anon_sym_interface] = ACTIONS(2660), - [anon_sym_enum] = ACTIONS(2660), - [anon_sym_typedef] = ACTIONS(2660), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_var] = ACTIONS(2660), - [aux_sym_integer_token1] = ACTIONS(2660), - [aux_sym_integer_token2] = ACTIONS(2662), - [aux_sym_float_token1] = ACTIONS(2660), - [aux_sym_float_token2] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [aux_sym_string_token1] = ACTIONS(2662), - [aux_sym_string_token3] = ACTIONS(2662), + [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(3180), - [sym_identifier] = ACTIONS(3178), - [anon_sym_POUND] = ACTIONS(3180), - [anon_sym_package] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_cast] = ACTIONS(3178), - [anon_sym_DOLLARtype] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_untyped] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_this] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_AT_COLON] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [anon_sym_PERCENT] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_LT_LT] = ACTIONS(3180), - [anon_sym_GT_GT] = ACTIONS(3178), - [anon_sym_GT_GT_GT] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_CARET] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_PIPE_PIPE] = ACTIONS(3180), - [anon_sym_EQ_EQ] = ACTIONS(3180), - [anon_sym_BANG_EQ] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_LT_EQ] = ACTIONS(3180), - [anon_sym_GT] = ACTIONS(3178), - [anon_sym_GT_EQ] = ACTIONS(3180), - [anon_sym_EQ_GT] = ACTIONS(3180), - [anon_sym_QMARK_QMARK] = ACTIONS(3180), - [anon_sym_EQ] = ACTIONS(3178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3180), - [anon_sym_null] = ACTIONS(3178), - [anon_sym_macro] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_overload] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_final] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [aux_sym_integer_token1] = ACTIONS(3178), - [aux_sym_integer_token2] = ACTIONS(3180), - [aux_sym_float_token1] = ACTIONS(3178), - [aux_sym_float_token2] = ACTIONS(3180), - [anon_sym_true] = ACTIONS(3178), - [anon_sym_false] = ACTIONS(3178), - [aux_sym_string_token1] = ACTIONS(3180), - [aux_sym_string_token3] = ACTIONS(3180), + [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(3184), - [sym_identifier] = ACTIONS(3182), - [anon_sym_POUND] = ACTIONS(3184), - [anon_sym_package] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_cast] = ACTIONS(3182), - [anon_sym_DOLLARtype] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_untyped] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_this] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_AT_COLON] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_LT_LT] = ACTIONS(3184), - [anon_sym_GT_GT] = ACTIONS(3182), - [anon_sym_GT_GT_GT] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_PIPE] = ACTIONS(3182), - [anon_sym_CARET] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_PIPE_PIPE] = ACTIONS(3184), - [anon_sym_EQ_EQ] = ACTIONS(3184), - [anon_sym_BANG_EQ] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_LT_EQ] = ACTIONS(3184), - [anon_sym_GT] = ACTIONS(3182), - [anon_sym_GT_EQ] = ACTIONS(3184), - [anon_sym_EQ_GT] = ACTIONS(3184), - [anon_sym_QMARK_QMARK] = ACTIONS(3184), - [anon_sym_EQ] = ACTIONS(3182), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), - [anon_sym_null] = ACTIONS(3182), - [anon_sym_macro] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym_overload] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_final] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [aux_sym_integer_token1] = ACTIONS(3182), - [aux_sym_integer_token2] = ACTIONS(3184), - [aux_sym_float_token1] = ACTIONS(3182), - [aux_sym_float_token2] = ACTIONS(3184), - [anon_sym_true] = ACTIONS(3182), - [anon_sym_false] = ACTIONS(3182), - [aux_sym_string_token1] = ACTIONS(3184), - [aux_sym_string_token3] = ACTIONS(3184), + [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(3188), - [sym_identifier] = ACTIONS(3186), - [anon_sym_POUND] = ACTIONS(3188), - [anon_sym_package] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_cast] = ACTIONS(3186), - [anon_sym_DOLLARtype] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_untyped] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_this] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_AT_COLON] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_catch] = ACTIONS(3186), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PERCENT] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_LT_LT] = ACTIONS(3188), - [anon_sym_GT_GT] = ACTIONS(3186), - [anon_sym_GT_GT_GT] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_PIPE] = ACTIONS(3186), - [anon_sym_CARET] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_PIPE_PIPE] = ACTIONS(3188), - [anon_sym_EQ_EQ] = ACTIONS(3188), - [anon_sym_BANG_EQ] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_LT_EQ] = ACTIONS(3188), - [anon_sym_GT] = ACTIONS(3186), - [anon_sym_GT_EQ] = ACTIONS(3188), - [anon_sym_EQ_GT] = ACTIONS(3188), - [anon_sym_QMARK_QMARK] = ACTIONS(3188), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3188), - [anon_sym_null] = ACTIONS(3186), - [anon_sym_macro] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym_overload] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_final] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [aux_sym_integer_token1] = ACTIONS(3186), - [aux_sym_integer_token2] = ACTIONS(3188), - [aux_sym_float_token1] = ACTIONS(3186), - [aux_sym_float_token2] = ACTIONS(3188), - [anon_sym_true] = ACTIONS(3186), - [anon_sym_false] = ACTIONS(3186), - [aux_sym_string_token1] = ACTIONS(3188), - [aux_sym_string_token3] = ACTIONS(3188), + [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(2798), - [sym_identifier] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_package] = ACTIONS(2796), - [anon_sym_import] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_using] = ACTIONS(2796), - [anon_sym_throw] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_switch] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_cast] = ACTIONS(2796), - [anon_sym_DOLLARtype] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_untyped] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_this] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_AT_COLON] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2796), - [anon_sym_catch] = ACTIONS(2796), - [anon_sym_else] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_do] = ACTIONS(2796), - [anon_sym_new] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_EQ_GT] = ACTIONS(2798), - [anon_sym_QMARK_QMARK] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2796), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2798), - [anon_sym_null] = ACTIONS(2796), - [anon_sym_macro] = ACTIONS(2796), - [anon_sym_abstract] = ACTIONS(2796), - [anon_sym_static] = ACTIONS(2796), - [anon_sym_public] = ACTIONS(2796), - [anon_sym_private] = ACTIONS(2796), - [anon_sym_extern] = ACTIONS(2796), - [anon_sym_inline] = ACTIONS(2796), - [anon_sym_overload] = ACTIONS(2796), - [anon_sym_override] = ACTIONS(2796), - [anon_sym_final] = ACTIONS(2796), - [anon_sym_class] = ACTIONS(2796), - [anon_sym_interface] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_typedef] = ACTIONS(2796), - [anon_sym_function] = ACTIONS(2796), - [anon_sym_var] = ACTIONS(2796), - [aux_sym_integer_token1] = ACTIONS(2796), - [aux_sym_integer_token2] = ACTIONS(2798), - [aux_sym_float_token1] = ACTIONS(2796), - [aux_sym_float_token2] = ACTIONS(2798), - [anon_sym_true] = ACTIONS(2796), - [anon_sym_false] = ACTIONS(2796), - [aux_sym_string_token1] = ACTIONS(2798), - [aux_sym_string_token3] = ACTIONS(2798), + [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(3196), - [sym_identifier] = ACTIONS(3194), - [anon_sym_POUND] = ACTIONS(3196), - [anon_sym_package] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_cast] = ACTIONS(3194), - [anon_sym_DOLLARtype] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_untyped] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_this] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_AT_COLON] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_catch] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PERCENT] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_LT_LT] = ACTIONS(3196), - [anon_sym_GT_GT] = ACTIONS(3194), - [anon_sym_GT_GT_GT] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_PIPE] = ACTIONS(3194), - [anon_sym_CARET] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_PIPE_PIPE] = ACTIONS(3196), - [anon_sym_EQ_EQ] = ACTIONS(3196), - [anon_sym_BANG_EQ] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_LT_EQ] = ACTIONS(3196), - [anon_sym_GT] = ACTIONS(3194), - [anon_sym_GT_EQ] = ACTIONS(3196), - [anon_sym_EQ_GT] = ACTIONS(3196), - [anon_sym_QMARK_QMARK] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(3194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3196), - [anon_sym_null] = ACTIONS(3194), - [anon_sym_macro] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym_overload] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_final] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [aux_sym_integer_token1] = ACTIONS(3194), - [aux_sym_integer_token2] = ACTIONS(3196), - [aux_sym_float_token1] = ACTIONS(3194), - [aux_sym_float_token2] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [aux_sym_string_token1] = ACTIONS(3196), - [aux_sym_string_token3] = ACTIONS(3196), + [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(3200), - [sym_identifier] = ACTIONS(3198), - [anon_sym_POUND] = ACTIONS(3200), - [anon_sym_package] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_cast] = ACTIONS(3198), - [anon_sym_DOLLARtype] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_untyped] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_AT_COLON] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_catch] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_LT_LT] = ACTIONS(3200), - [anon_sym_GT_GT] = ACTIONS(3198), - [anon_sym_GT_GT_GT] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_PIPE] = ACTIONS(3198), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP_AMP] = ACTIONS(3200), - [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_LT_EQ] = ACTIONS(3200), - [anon_sym_GT] = ACTIONS(3198), - [anon_sym_GT_EQ] = ACTIONS(3200), - [anon_sym_EQ_GT] = ACTIONS(3200), - [anon_sym_QMARK_QMARK] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3198), - [anon_sym_macro] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_extern] = ACTIONS(3198), - [anon_sym_inline] = ACTIONS(3198), - [anon_sym_overload] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_final] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [anon_sym_typedef] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [aux_sym_integer_token1] = ACTIONS(3198), - [aux_sym_integer_token2] = ACTIONS(3200), - [aux_sym_float_token1] = ACTIONS(3198), - [aux_sym_float_token2] = ACTIONS(3200), - [anon_sym_true] = ACTIONS(3198), - [anon_sym_false] = ACTIONS(3198), - [aux_sym_string_token1] = ACTIONS(3200), - [aux_sym_string_token3] = ACTIONS(3200), + [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(3204), - [sym_identifier] = ACTIONS(3202), - [anon_sym_POUND] = ACTIONS(3204), - [anon_sym_package] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_STAR] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_cast] = ACTIONS(3202), - [anon_sym_DOLLARtype] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_untyped] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_this] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_AT_COLON] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_catch] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), - [anon_sym_PERCENT] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_LT_LT] = ACTIONS(3204), - [anon_sym_GT_GT] = ACTIONS(3202), - [anon_sym_GT_GT_GT] = ACTIONS(3204), - [anon_sym_AMP] = ACTIONS(3202), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_CARET] = ACTIONS(3204), - [anon_sym_AMP_AMP] = ACTIONS(3204), - [anon_sym_PIPE_PIPE] = ACTIONS(3204), - [anon_sym_EQ_EQ] = ACTIONS(3204), - [anon_sym_BANG_EQ] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_LT_EQ] = ACTIONS(3204), - [anon_sym_GT] = ACTIONS(3202), - [anon_sym_GT_EQ] = ACTIONS(3204), - [anon_sym_EQ_GT] = ACTIONS(3204), - [anon_sym_QMARK_QMARK] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3202), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3204), - [anon_sym_null] = ACTIONS(3202), - [anon_sym_macro] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_extern] = ACTIONS(3202), - [anon_sym_inline] = ACTIONS(3202), - [anon_sym_overload] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_final] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [anon_sym_typedef] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [aux_sym_integer_token1] = ACTIONS(3202), - [aux_sym_integer_token2] = ACTIONS(3204), - [aux_sym_float_token1] = ACTIONS(3202), - [aux_sym_float_token2] = ACTIONS(3204), - [anon_sym_true] = ACTIONS(3202), - [anon_sym_false] = ACTIONS(3202), - [aux_sym_string_token1] = ACTIONS(3204), - [aux_sym_string_token3] = ACTIONS(3204), + [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(3208), - [sym_identifier] = ACTIONS(3206), - [anon_sym_POUND] = ACTIONS(3208), - [anon_sym_package] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_cast] = ACTIONS(3206), - [anon_sym_DOLLARtype] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_untyped] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_this] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_AT_COLON] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_catch] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [anon_sym_PERCENT] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_LT_LT] = ACTIONS(3208), - [anon_sym_GT_GT] = ACTIONS(3206), - [anon_sym_GT_GT_GT] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3206), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP_AMP] = ACTIONS(3208), - [anon_sym_PIPE_PIPE] = ACTIONS(3208), - [anon_sym_EQ_EQ] = ACTIONS(3208), - [anon_sym_BANG_EQ] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3208), - [anon_sym_GT] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3208), - [anon_sym_EQ_GT] = ACTIONS(3208), - [anon_sym_QMARK_QMARK] = ACTIONS(3208), - [anon_sym_EQ] = ACTIONS(3206), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3206), - [anon_sym_macro] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_extern] = ACTIONS(3206), - [anon_sym_inline] = ACTIONS(3206), - [anon_sym_overload] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_final] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), - [anon_sym_typedef] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [aux_sym_integer_token1] = ACTIONS(3206), - [aux_sym_integer_token2] = ACTIONS(3208), - [aux_sym_float_token1] = ACTIONS(3206), - [aux_sym_float_token2] = ACTIONS(3208), - [anon_sym_true] = ACTIONS(3206), - [anon_sym_false] = ACTIONS(3206), - [aux_sym_string_token1] = ACTIONS(3208), - [aux_sym_string_token3] = ACTIONS(3208), + [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(3212), - [sym_identifier] = ACTIONS(3210), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_package] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_cast] = ACTIONS(3210), - [anon_sym_DOLLARtype] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_untyped] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_this] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_AT_COLON] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_catch] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PERCENT] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_LT_LT] = ACTIONS(3212), - [anon_sym_GT_GT] = ACTIONS(3210), - [anon_sym_GT_GT_GT] = ACTIONS(3212), - [anon_sym_AMP] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3210), - [anon_sym_CARET] = ACTIONS(3212), - [anon_sym_AMP_AMP] = ACTIONS(3212), - [anon_sym_PIPE_PIPE] = ACTIONS(3212), - [anon_sym_EQ_EQ] = ACTIONS(3212), - [anon_sym_BANG_EQ] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_LT_EQ] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3210), - [anon_sym_GT_EQ] = ACTIONS(3212), - [anon_sym_EQ_GT] = ACTIONS(3212), - [anon_sym_QMARK_QMARK] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3210), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3212), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_macro] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_extern] = ACTIONS(3210), - [anon_sym_inline] = ACTIONS(3210), - [anon_sym_overload] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_final] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), - [anon_sym_typedef] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [aux_sym_integer_token1] = ACTIONS(3210), - [aux_sym_integer_token2] = ACTIONS(3212), - [aux_sym_float_token1] = ACTIONS(3210), - [aux_sym_float_token2] = ACTIONS(3212), - [anon_sym_true] = ACTIONS(3210), - [anon_sym_false] = ACTIONS(3210), - [aux_sym_string_token1] = ACTIONS(3212), - [aux_sym_string_token3] = ACTIONS(3212), + [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(3216), - [sym_identifier] = ACTIONS(3214), - [anon_sym_POUND] = ACTIONS(3216), - [anon_sym_package] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_STAR] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_cast] = ACTIONS(3214), - [anon_sym_DOLLARtype] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_untyped] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_this] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_AT_COLON] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_catch] = ACTIONS(3214), - [anon_sym_else] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_LT_LT] = ACTIONS(3216), - [anon_sym_GT_GT] = ACTIONS(3214), - [anon_sym_GT_GT_GT] = ACTIONS(3216), - [anon_sym_AMP] = ACTIONS(3214), - [anon_sym_PIPE] = ACTIONS(3214), - [anon_sym_CARET] = ACTIONS(3216), - [anon_sym_AMP_AMP] = ACTIONS(3216), - [anon_sym_PIPE_PIPE] = ACTIONS(3216), - [anon_sym_EQ_EQ] = ACTIONS(3216), - [anon_sym_BANG_EQ] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_LT_EQ] = ACTIONS(3216), - [anon_sym_GT] = ACTIONS(3214), - [anon_sym_GT_EQ] = ACTIONS(3216), - [anon_sym_EQ_GT] = ACTIONS(3216), - [anon_sym_QMARK_QMARK] = ACTIONS(3216), - [anon_sym_EQ] = ACTIONS(3214), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3216), - [anon_sym_null] = ACTIONS(3214), - [anon_sym_macro] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_extern] = ACTIONS(3214), - [anon_sym_inline] = ACTIONS(3214), - [anon_sym_overload] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_final] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), - [anon_sym_typedef] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [aux_sym_integer_token1] = ACTIONS(3214), - [aux_sym_integer_token2] = ACTIONS(3216), - [aux_sym_float_token1] = ACTIONS(3214), - [aux_sym_float_token2] = ACTIONS(3216), - [anon_sym_true] = ACTIONS(3214), - [anon_sym_false] = ACTIONS(3214), - [aux_sym_string_token1] = ACTIONS(3216), - [aux_sym_string_token3] = ACTIONS(3216), + [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(3220), - [sym_identifier] = ACTIONS(3218), - [anon_sym_POUND] = ACTIONS(3220), - [anon_sym_package] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_cast] = ACTIONS(3218), - [anon_sym_DOLLARtype] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_untyped] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_this] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_AT_COLON] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_catch] = ACTIONS(3218), - [anon_sym_else] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [anon_sym_PERCENT] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_LT_LT] = ACTIONS(3220), - [anon_sym_GT_GT] = ACTIONS(3218), - [anon_sym_GT_GT_GT] = ACTIONS(3220), - [anon_sym_AMP] = ACTIONS(3218), - [anon_sym_PIPE] = ACTIONS(3218), - [anon_sym_CARET] = ACTIONS(3220), - [anon_sym_AMP_AMP] = ACTIONS(3220), - [anon_sym_PIPE_PIPE] = ACTIONS(3220), - [anon_sym_EQ_EQ] = ACTIONS(3220), - [anon_sym_BANG_EQ] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_LT_EQ] = ACTIONS(3220), - [anon_sym_GT] = ACTIONS(3218), - [anon_sym_GT_EQ] = ACTIONS(3220), - [anon_sym_EQ_GT] = ACTIONS(3220), - [anon_sym_QMARK_QMARK] = ACTIONS(3220), - [anon_sym_EQ] = ACTIONS(3218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3220), - [anon_sym_null] = ACTIONS(3218), - [anon_sym_macro] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_extern] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_overload] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_final] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), - [anon_sym_typedef] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [aux_sym_integer_token1] = ACTIONS(3218), - [aux_sym_integer_token2] = ACTIONS(3220), - [aux_sym_float_token1] = ACTIONS(3218), - [aux_sym_float_token2] = ACTIONS(3220), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [aux_sym_string_token1] = ACTIONS(3220), - [aux_sym_string_token3] = ACTIONS(3220), + [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(3224), - [sym_identifier] = ACTIONS(3222), - [anon_sym_POUND] = ACTIONS(3224), - [anon_sym_package] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_STAR] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_cast] = ACTIONS(3222), - [anon_sym_DOLLARtype] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_untyped] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_this] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_AT_COLON] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_catch] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), - [anon_sym_PERCENT] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_LT_LT] = ACTIONS(3224), - [anon_sym_GT_GT] = ACTIONS(3222), - [anon_sym_GT_GT_GT] = ACTIONS(3224), - [anon_sym_AMP] = ACTIONS(3222), - [anon_sym_PIPE] = ACTIONS(3222), - [anon_sym_CARET] = ACTIONS(3224), - [anon_sym_AMP_AMP] = ACTIONS(3224), - [anon_sym_PIPE_PIPE] = ACTIONS(3224), - [anon_sym_EQ_EQ] = ACTIONS(3224), - [anon_sym_BANG_EQ] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_LT_EQ] = ACTIONS(3224), - [anon_sym_GT] = ACTIONS(3222), - [anon_sym_GT_EQ] = ACTIONS(3224), - [anon_sym_EQ_GT] = ACTIONS(3224), - [anon_sym_QMARK_QMARK] = ACTIONS(3224), - [anon_sym_EQ] = ACTIONS(3222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3224), - [anon_sym_null] = ACTIONS(3222), - [anon_sym_macro] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_extern] = ACTIONS(3222), - [anon_sym_inline] = ACTIONS(3222), - [anon_sym_overload] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_final] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_typedef] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [aux_sym_integer_token1] = ACTIONS(3222), - [aux_sym_integer_token2] = ACTIONS(3224), - [aux_sym_float_token1] = ACTIONS(3222), - [aux_sym_float_token2] = ACTIONS(3224), - [anon_sym_true] = ACTIONS(3222), - [anon_sym_false] = ACTIONS(3222), - [aux_sym_string_token1] = ACTIONS(3224), - [aux_sym_string_token3] = ACTIONS(3224), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3228), - [sym_identifier] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(3228), - [anon_sym_package] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_cast] = ACTIONS(3226), - [anon_sym_DOLLARtype] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_untyped] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_this] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_AT_COLON] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_catch] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [anon_sym_PERCENT] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_LT_LT] = ACTIONS(3228), - [anon_sym_GT_GT] = ACTIONS(3226), - [anon_sym_GT_GT_GT] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3226), - [anon_sym_PIPE] = ACTIONS(3226), - [anon_sym_CARET] = ACTIONS(3228), - [anon_sym_AMP_AMP] = ACTIONS(3228), - [anon_sym_PIPE_PIPE] = ACTIONS(3228), - [anon_sym_EQ_EQ] = ACTIONS(3228), - [anon_sym_BANG_EQ] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_LT_EQ] = ACTIONS(3228), - [anon_sym_GT] = ACTIONS(3226), - [anon_sym_GT_EQ] = ACTIONS(3228), - [anon_sym_EQ_GT] = ACTIONS(3228), - [anon_sym_QMARK_QMARK] = ACTIONS(3228), - [anon_sym_EQ] = ACTIONS(3226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3228), - [anon_sym_null] = ACTIONS(3226), - [anon_sym_macro] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_extern] = ACTIONS(3226), - [anon_sym_inline] = ACTIONS(3226), - [anon_sym_overload] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_final] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), - [anon_sym_typedef] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [aux_sym_integer_token1] = ACTIONS(3226), - [aux_sym_integer_token2] = ACTIONS(3228), - [aux_sym_float_token1] = ACTIONS(3226), - [aux_sym_float_token2] = ACTIONS(3228), - [anon_sym_true] = ACTIONS(3226), - [anon_sym_false] = ACTIONS(3226), - [aux_sym_string_token1] = ACTIONS(3228), - [aux_sym_string_token3] = ACTIONS(3228), - [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__closing_brace_marker] = ACTIONS(2629), [sym__closing_brace_unmarker] = ACTIONS(3), }, [753] = { - [ts_builtin_sym_end] = ACTIONS(3232), - [sym_identifier] = ACTIONS(3230), - [anon_sym_POUND] = ACTIONS(3232), - [anon_sym_package] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_cast] = ACTIONS(3230), - [anon_sym_DOLLARtype] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_untyped] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_this] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_AT_COLON] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_catch] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [anon_sym_PERCENT] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_LT_LT] = ACTIONS(3232), - [anon_sym_GT_GT] = ACTIONS(3230), - [anon_sym_GT_GT_GT] = ACTIONS(3232), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_PIPE] = ACTIONS(3230), - [anon_sym_CARET] = ACTIONS(3232), - [anon_sym_AMP_AMP] = ACTIONS(3232), - [anon_sym_PIPE_PIPE] = ACTIONS(3232), - [anon_sym_EQ_EQ] = ACTIONS(3232), - [anon_sym_BANG_EQ] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_LT_EQ] = ACTIONS(3232), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_GT_EQ] = ACTIONS(3232), - [anon_sym_EQ_GT] = ACTIONS(3232), - [anon_sym_QMARK_QMARK] = ACTIONS(3232), - [anon_sym_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3232), - [anon_sym_null] = ACTIONS(3230), - [anon_sym_macro] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_extern] = ACTIONS(3230), - [anon_sym_inline] = ACTIONS(3230), - [anon_sym_overload] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_final] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [anon_sym_typedef] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [aux_sym_integer_token1] = ACTIONS(3230), - [aux_sym_integer_token2] = ACTIONS(3232), - [aux_sym_float_token1] = ACTIONS(3230), - [aux_sym_float_token2] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3230), - [anon_sym_false] = ACTIONS(3230), - [aux_sym_string_token1] = ACTIONS(3232), - [aux_sym_string_token3] = ACTIONS(3232), + [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(3236), - [sym_identifier] = ACTIONS(3234), - [anon_sym_POUND] = ACTIONS(3236), - [anon_sym_package] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_cast] = ACTIONS(3234), - [anon_sym_DOLLARtype] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_untyped] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_AT_COLON] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_catch] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), - [anon_sym_PERCENT] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3234), - [anon_sym_GT_GT_GT] = ACTIONS(3236), - [anon_sym_AMP] = ACTIONS(3234), - [anon_sym_PIPE] = ACTIONS(3234), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_LT_EQ] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_EQ_GT] = ACTIONS(3236), - [anon_sym_QMARK_QMARK] = ACTIONS(3236), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_macro] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_extern] = ACTIONS(3234), - [anon_sym_inline] = ACTIONS(3234), - [anon_sym_overload] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_final] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [anon_sym_typedef] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [aux_sym_integer_token1] = ACTIONS(3234), - [aux_sym_integer_token2] = ACTIONS(3236), - [aux_sym_float_token1] = ACTIONS(3234), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym_string_token1] = ACTIONS(3236), - [aux_sym_string_token3] = ACTIONS(3236), + [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(3240), - [sym_identifier] = ACTIONS(3238), - [anon_sym_POUND] = ACTIONS(3240), - [anon_sym_package] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_cast] = ACTIONS(3238), - [anon_sym_DOLLARtype] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_untyped] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_this] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_AT_COLON] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_catch] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [anon_sym_PERCENT] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3240), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_GT_GT_GT] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_EQ_EQ] = ACTIONS(3240), - [anon_sym_BANG_EQ] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3240), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3240), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_QMARK_QMARK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3238), - [anon_sym_macro] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym_overload] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [anon_sym_final] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [aux_sym_integer_token1] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3240), - [aux_sym_float_token1] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3238), - [anon_sym_false] = ACTIONS(3238), - [aux_sym_string_token1] = ACTIONS(3240), - [aux_sym_string_token3] = ACTIONS(3240), + [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(3244), - [sym_identifier] = ACTIONS(3242), - [anon_sym_POUND] = ACTIONS(3244), - [anon_sym_package] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_cast] = ACTIONS(3242), - [anon_sym_DOLLARtype] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_untyped] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_AT_COLON] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_catch] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_LT_LT] = ACTIONS(3244), - [anon_sym_GT_GT] = ACTIONS(3242), - [anon_sym_GT_GT_GT] = ACTIONS(3244), - [anon_sym_AMP] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_CARET] = ACTIONS(3244), - [anon_sym_AMP_AMP] = ACTIONS(3244), - [anon_sym_PIPE_PIPE] = ACTIONS(3244), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_LT_EQ] = ACTIONS(3244), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_GT_EQ] = ACTIONS(3244), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_QMARK_QMARK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3244), - [anon_sym_null] = ACTIONS(3242), - [anon_sym_macro] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_extern] = ACTIONS(3242), - [anon_sym_inline] = ACTIONS(3242), - [anon_sym_overload] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_final] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), - [anon_sym_typedef] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [aux_sym_integer_token1] = ACTIONS(3242), - [aux_sym_integer_token2] = ACTIONS(3244), - [aux_sym_float_token1] = ACTIONS(3242), - [aux_sym_float_token2] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [aux_sym_string_token1] = ACTIONS(3244), - [aux_sym_string_token3] = ACTIONS(3244), + [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(3248), - [sym_identifier] = ACTIONS(3246), - [anon_sym_POUND] = ACTIONS(3248), - [anon_sym_package] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_cast] = ACTIONS(3246), - [anon_sym_DOLLARtype] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_untyped] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_this] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_AT_COLON] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_catch] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_LT_LT] = ACTIONS(3248), - [anon_sym_GT_GT] = ACTIONS(3246), - [anon_sym_GT_GT_GT] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_CARET] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_QMARK_QMARK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3246), - [anon_sym_macro] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_extern] = ACTIONS(3246), - [anon_sym_inline] = ACTIONS(3246), - [anon_sym_overload] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_final] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), - [anon_sym_typedef] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [aux_sym_integer_token1] = ACTIONS(3246), - [aux_sym_integer_token2] = ACTIONS(3248), - [aux_sym_float_token1] = ACTIONS(3246), - [aux_sym_float_token2] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [aux_sym_string_token1] = ACTIONS(3248), - [aux_sym_string_token3] = ACTIONS(3248), + [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(3252), - [sym_identifier] = ACTIONS(3250), - [anon_sym_POUND] = ACTIONS(3252), - [anon_sym_package] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_cast] = ACTIONS(3250), - [anon_sym_DOLLARtype] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_untyped] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_this] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_AT_COLON] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_catch] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_LT_LT] = ACTIONS(3252), - [anon_sym_GT_GT] = ACTIONS(3250), - [anon_sym_GT_GT_GT] = ACTIONS(3252), - [anon_sym_AMP] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_CARET] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_QMARK_QMARK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3252), - [anon_sym_null] = ACTIONS(3250), - [anon_sym_macro] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_extern] = ACTIONS(3250), - [anon_sym_inline] = ACTIONS(3250), - [anon_sym_overload] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_final] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), - [anon_sym_typedef] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [aux_sym_integer_token1] = ACTIONS(3250), - [aux_sym_integer_token2] = ACTIONS(3252), - [aux_sym_float_token1] = ACTIONS(3250), - [aux_sym_float_token2] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [aux_sym_string_token1] = ACTIONS(3252), - [aux_sym_string_token3] = ACTIONS(3252), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3256), - [sym_identifier] = ACTIONS(3254), - [anon_sym_POUND] = ACTIONS(3256), - [anon_sym_package] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_cast] = ACTIONS(3254), - [anon_sym_DOLLARtype] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_untyped] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_this] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_AT_COLON] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_catch] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PERCENT] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_LT_LT] = ACTIONS(3256), - [anon_sym_GT_GT] = ACTIONS(3254), - [anon_sym_GT_GT_GT] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_CARET] = ACTIONS(3256), - [anon_sym_AMP_AMP] = ACTIONS(3256), - [anon_sym_PIPE_PIPE] = ACTIONS(3256), - [anon_sym_EQ_EQ] = ACTIONS(3256), - [anon_sym_BANG_EQ] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_LT_EQ] = ACTIONS(3256), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3256), - [anon_sym_EQ_GT] = ACTIONS(3256), - [anon_sym_QMARK_QMARK] = ACTIONS(3256), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_null] = ACTIONS(3254), - [anon_sym_macro] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_extern] = ACTIONS(3254), - [anon_sym_inline] = ACTIONS(3254), - [anon_sym_overload] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_typedef] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [aux_sym_integer_token1] = ACTIONS(3254), - [aux_sym_integer_token2] = ACTIONS(3256), - [aux_sym_float_token1] = ACTIONS(3254), - [aux_sym_float_token2] = ACTIONS(3256), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym_string_token1] = ACTIONS(3256), - [aux_sym_string_token3] = ACTIONS(3256), + [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(3260), - [sym_identifier] = ACTIONS(3258), - [anon_sym_POUND] = ACTIONS(3260), - [anon_sym_package] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3260), - [anon_sym_cast] = ACTIONS(3258), - [anon_sym_DOLLARtype] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_untyped] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_this] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_AT_COLON] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_catch] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3260), - [anon_sym_PERCENT] = ACTIONS(3260), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_LT_LT] = ACTIONS(3260), - [anon_sym_GT_GT] = ACTIONS(3258), - [anon_sym_GT_GT_GT] = ACTIONS(3260), - [anon_sym_AMP] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3258), - [anon_sym_CARET] = ACTIONS(3260), - [anon_sym_AMP_AMP] = ACTIONS(3260), - [anon_sym_PIPE_PIPE] = ACTIONS(3260), - [anon_sym_EQ_EQ] = ACTIONS(3260), - [anon_sym_BANG_EQ] = ACTIONS(3260), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_LT_EQ] = ACTIONS(3260), - [anon_sym_GT] = ACTIONS(3258), - [anon_sym_GT_EQ] = ACTIONS(3260), - [anon_sym_EQ_GT] = ACTIONS(3260), - [anon_sym_QMARK_QMARK] = ACTIONS(3260), - [anon_sym_EQ] = ACTIONS(3258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3260), - [anon_sym_null] = ACTIONS(3258), - [anon_sym_macro] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_extern] = ACTIONS(3258), - [anon_sym_inline] = ACTIONS(3258), - [anon_sym_overload] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_final] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), - [anon_sym_typedef] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [aux_sym_integer_token1] = ACTIONS(3258), - [aux_sym_integer_token2] = ACTIONS(3260), - [aux_sym_float_token1] = ACTIONS(3258), - [aux_sym_float_token2] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3258), - [anon_sym_false] = ACTIONS(3258), - [aux_sym_string_token1] = ACTIONS(3260), - [aux_sym_string_token3] = ACTIONS(3260), + [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(1548), - [sym_identifier] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_package] = ACTIONS(1550), - [anon_sym_import] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1548), - [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_cast] = ACTIONS(1550), - [anon_sym_DOLLARtype] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1550), - [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_AT] = ACTIONS(1550), - [anon_sym_AT_COLON] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_catch] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = 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_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), - [anon_sym_DOT_DOT_DOT] = 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_enum] = 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(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(3282), - [sym_identifier] = ACTIONS(3280), - [anon_sym_POUND] = ACTIONS(3282), - [anon_sym_package] = ACTIONS(3280), - [anon_sym_import] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_cast] = ACTIONS(3280), - [anon_sym_DOLLARtype] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_untyped] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_this] = ACTIONS(3280), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_AT_COLON] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_catch] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_PERCENT] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_LT_LT] = ACTIONS(3282), - [anon_sym_GT_GT] = ACTIONS(3280), - [anon_sym_GT_GT_GT] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_PIPE] = ACTIONS(3280), - [anon_sym_CARET] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_PIPE_PIPE] = ACTIONS(3282), - [anon_sym_EQ_EQ] = ACTIONS(3282), - [anon_sym_BANG_EQ] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3282), - [anon_sym_GT] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3282), - [anon_sym_EQ_GT] = ACTIONS(3282), - [anon_sym_QMARK_QMARK] = ACTIONS(3282), - [anon_sym_EQ] = ACTIONS(3280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_macro] = ACTIONS(3280), - [anon_sym_abstract] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym_overload] = ACTIONS(3280), - [anon_sym_override] = ACTIONS(3280), - [anon_sym_final] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_interface] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_var] = ACTIONS(3280), - [aux_sym_integer_token1] = ACTIONS(3280), - [aux_sym_integer_token2] = ACTIONS(3282), - [aux_sym_float_token1] = ACTIONS(3280), - [aux_sym_float_token2] = ACTIONS(3282), - [anon_sym_true] = ACTIONS(3280), - [anon_sym_false] = ACTIONS(3280), - [aux_sym_string_token1] = ACTIONS(3282), - [aux_sym_string_token3] = ACTIONS(3282), + [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(3334), - [sym_identifier] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(3334), - [anon_sym_package] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_cast] = ACTIONS(3332), - [anon_sym_DOLLARtype] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_untyped] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_this] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_AT_COLON] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_catch] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_PERCENT] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_LT_LT] = ACTIONS(3334), - [anon_sym_GT_GT] = ACTIONS(3332), - [anon_sym_GT_GT_GT] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(3332), - [anon_sym_CARET] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3334), - [anon_sym_PIPE_PIPE] = ACTIONS(3334), - [anon_sym_EQ_EQ] = ACTIONS(3334), - [anon_sym_BANG_EQ] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_LT_EQ] = ACTIONS(3334), - [anon_sym_GT] = ACTIONS(3332), - [anon_sym_GT_EQ] = ACTIONS(3334), - [anon_sym_EQ_GT] = ACTIONS(3334), - [anon_sym_QMARK_QMARK] = ACTIONS(3334), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), - [anon_sym_null] = ACTIONS(3332), - [anon_sym_macro] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_extern] = ACTIONS(3332), - [anon_sym_inline] = ACTIONS(3332), - [anon_sym_overload] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_final] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [aux_sym_integer_token1] = ACTIONS(3332), - [aux_sym_integer_token2] = ACTIONS(3334), - [aux_sym_float_token1] = ACTIONS(3332), - [aux_sym_float_token2] = ACTIONS(3334), - [anon_sym_true] = ACTIONS(3332), - [anon_sym_false] = ACTIONS(3332), - [aux_sym_string_token1] = ACTIONS(3334), - [aux_sym_string_token3] = ACTIONS(3334), + [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(3338), - [sym_identifier] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3338), - [anon_sym_package] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_cast] = ACTIONS(3336), - [anon_sym_DOLLARtype] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_untyped] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_this] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_AT_COLON] = ACTIONS(3338), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_catch] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PERCENT] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_LT_LT] = ACTIONS(3338), - [anon_sym_GT_GT] = ACTIONS(3336), - [anon_sym_GT_GT_GT] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_PIPE] = ACTIONS(3336), - [anon_sym_CARET] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3338), - [anon_sym_PIPE_PIPE] = ACTIONS(3338), - [anon_sym_EQ_EQ] = ACTIONS(3338), - [anon_sym_BANG_EQ] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_LT_EQ] = ACTIONS(3338), - [anon_sym_GT] = ACTIONS(3336), - [anon_sym_GT_EQ] = ACTIONS(3338), - [anon_sym_EQ_GT] = ACTIONS(3338), - [anon_sym_QMARK_QMARK] = ACTIONS(3338), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), - [anon_sym_null] = ACTIONS(3336), - [anon_sym_macro] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym_overload] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_final] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [aux_sym_integer_token1] = ACTIONS(3336), - [aux_sym_integer_token2] = ACTIONS(3338), - [aux_sym_float_token1] = ACTIONS(3336), - [aux_sym_float_token2] = ACTIONS(3338), - [anon_sym_true] = ACTIONS(3336), - [anon_sym_false] = ACTIONS(3336), - [aux_sym_string_token1] = ACTIONS(3338), - [aux_sym_string_token3] = ACTIONS(3338), + [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(3302), - [sym_identifier] = ACTIONS(3300), - [anon_sym_POUND] = ACTIONS(3302), - [anon_sym_package] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_cast] = ACTIONS(3300), - [anon_sym_DOLLARtype] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_untyped] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_this] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3300), - [anon_sym_AT_COLON] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_catch] = ACTIONS(3300), - [anon_sym_else] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [anon_sym_PERCENT] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_LT_LT] = ACTIONS(3302), - [anon_sym_GT_GT] = ACTIONS(3300), - [anon_sym_GT_GT_GT] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP_AMP] = ACTIONS(3302), - [anon_sym_PIPE_PIPE] = ACTIONS(3302), - [anon_sym_EQ_EQ] = ACTIONS(3302), - [anon_sym_BANG_EQ] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_LT_EQ] = ACTIONS(3302), - [anon_sym_GT] = ACTIONS(3300), - [anon_sym_GT_EQ] = ACTIONS(3302), - [anon_sym_EQ_GT] = ACTIONS(3302), - [anon_sym_QMARK_QMARK] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(3300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3302), - [anon_sym_null] = ACTIONS(3300), - [anon_sym_macro] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_extern] = ACTIONS(3300), - [anon_sym_inline] = ACTIONS(3300), - [anon_sym_overload] = ACTIONS(3300), - [anon_sym_override] = ACTIONS(3300), - [anon_sym_final] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_typedef] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [aux_sym_integer_token1] = ACTIONS(3300), - [aux_sym_integer_token2] = ACTIONS(3302), - [aux_sym_float_token1] = ACTIONS(3300), - [aux_sym_float_token2] = ACTIONS(3302), - [anon_sym_true] = ACTIONS(3300), - [anon_sym_false] = ACTIONS(3300), - [aux_sym_string_token1] = ACTIONS(3302), - [aux_sym_string_token3] = ACTIONS(3302), + [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(2702), - [sym_identifier] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2702), - [anon_sym_package] = ACTIONS(2700), - [anon_sym_import] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_using] = ACTIONS(2700), - [anon_sym_throw] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_cast] = ACTIONS(2700), - [anon_sym_DOLLARtype] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_untyped] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_this] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_AT_COLON] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2700), - [anon_sym_catch] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_while] = ACTIONS(2700), - [anon_sym_do] = ACTIONS(2700), - [anon_sym_new] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_PERCENT] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2702), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_EQ_GT] = ACTIONS(2702), - [anon_sym_QMARK_QMARK] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2702), - [anon_sym_null] = ACTIONS(2700), - [anon_sym_macro] = ACTIONS(2700), - [anon_sym_abstract] = ACTIONS(2700), - [anon_sym_static] = ACTIONS(2700), - [anon_sym_public] = ACTIONS(2700), - [anon_sym_private] = ACTIONS(2700), - [anon_sym_extern] = ACTIONS(2700), - [anon_sym_inline] = ACTIONS(2700), - [anon_sym_overload] = ACTIONS(2700), - [anon_sym_override] = ACTIONS(2700), - [anon_sym_final] = ACTIONS(2700), - [anon_sym_class] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_typedef] = ACTIONS(2700), - [anon_sym_function] = ACTIONS(2700), - [anon_sym_var] = ACTIONS(2700), - [aux_sym_integer_token1] = ACTIONS(2700), - [aux_sym_integer_token2] = ACTIONS(2702), - [aux_sym_float_token1] = ACTIONS(2700), - [aux_sym_float_token2] = ACTIONS(2702), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym_string_token1] = ACTIONS(2702), - [aux_sym_string_token3] = ACTIONS(2702), + [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(3342), - [sym_identifier] = ACTIONS(3340), - [anon_sym_POUND] = ACTIONS(3342), - [anon_sym_package] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_cast] = ACTIONS(3340), - [anon_sym_DOLLARtype] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_untyped] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_AT_COLON] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_catch] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_PERCENT] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_LT_LT] = ACTIONS(3342), - [anon_sym_GT_GT] = ACTIONS(3340), - [anon_sym_GT_GT_GT] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3340), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_CARET] = ACTIONS(3342), - [anon_sym_AMP_AMP] = ACTIONS(3342), - [anon_sym_PIPE_PIPE] = ACTIONS(3342), - [anon_sym_EQ_EQ] = ACTIONS(3342), - [anon_sym_BANG_EQ] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_LT_EQ] = ACTIONS(3342), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_GT_EQ] = ACTIONS(3342), - [anon_sym_EQ_GT] = ACTIONS(3342), - [anon_sym_QMARK_QMARK] = ACTIONS(3342), - [anon_sym_EQ] = ACTIONS(3340), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_macro] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_extern] = ACTIONS(3340), - [anon_sym_inline] = ACTIONS(3340), - [anon_sym_overload] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_final] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_typedef] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [aux_sym_integer_token1] = ACTIONS(3340), - [aux_sym_integer_token2] = ACTIONS(3342), - [aux_sym_float_token1] = ACTIONS(3340), - [aux_sym_float_token2] = ACTIONS(3342), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [aux_sym_string_token1] = ACTIONS(3342), - [aux_sym_string_token3] = ACTIONS(3342), + [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(3346), - [sym_identifier] = ACTIONS(3344), - [anon_sym_POUND] = ACTIONS(3346), - [anon_sym_package] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_cast] = ACTIONS(3344), - [anon_sym_DOLLARtype] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_untyped] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_this] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_AT_COLON] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_catch] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(3344), - [anon_sym_GT_GT_GT] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_CARET] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_EQ_EQ] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_LT_EQ] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_GT_EQ] = ACTIONS(3346), - [anon_sym_EQ_GT] = ACTIONS(3346), - [anon_sym_QMARK_QMARK] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), - [anon_sym_null] = ACTIONS(3344), - [anon_sym_macro] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_extern] = ACTIONS(3344), - [anon_sym_inline] = ACTIONS(3344), - [anon_sym_overload] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_final] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), - [anon_sym_typedef] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [aux_sym_integer_token1] = ACTIONS(3344), - [aux_sym_integer_token2] = ACTIONS(3346), - [aux_sym_float_token1] = ACTIONS(3344), - [aux_sym_float_token2] = ACTIONS(3346), - [anon_sym_true] = ACTIONS(3344), - [anon_sym_false] = ACTIONS(3344), - [aux_sym_string_token1] = ACTIONS(3346), - [aux_sym_string_token3] = ACTIONS(3346), + [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(2826), - [sym_identifier] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2826), - [anon_sym_package] = ACTIONS(2824), - [anon_sym_import] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2824), - [anon_sym_throw] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_cast] = ACTIONS(2824), - [anon_sym_DOLLARtype] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_untyped] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_this] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_AT_COLON] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2824), - [anon_sym_catch] = ACTIONS(2824), - [anon_sym_else] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_while] = ACTIONS(2824), - [anon_sym_do] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_EQ_GT] = ACTIONS(2826), - [anon_sym_QMARK_QMARK] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2826), - [anon_sym_null] = ACTIONS(2824), - [anon_sym_macro] = ACTIONS(2824), - [anon_sym_abstract] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_public] = ACTIONS(2824), - [anon_sym_private] = ACTIONS(2824), - [anon_sym_extern] = ACTIONS(2824), - [anon_sym_inline] = ACTIONS(2824), - [anon_sym_overload] = ACTIONS(2824), - [anon_sym_override] = ACTIONS(2824), - [anon_sym_final] = ACTIONS(2824), - [anon_sym_class] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_typedef] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2824), - [anon_sym_var] = ACTIONS(2824), - [aux_sym_integer_token1] = ACTIONS(2824), - [aux_sym_integer_token2] = ACTIONS(2826), - [aux_sym_float_token1] = ACTIONS(2824), - [aux_sym_float_token2] = ACTIONS(2826), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [aux_sym_string_token1] = ACTIONS(2826), - [aux_sym_string_token3] = ACTIONS(2826), + [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(2830), - [sym_identifier] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_package] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2828), - [anon_sym_throw] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_cast] = ACTIONS(2828), - [anon_sym_DOLLARtype] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_untyped] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_this] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_AT_COLON] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_catch] = ACTIONS(2828), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_do] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_EQ_GT] = ACTIONS(2830), - [anon_sym_QMARK_QMARK] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_null] = ACTIONS(2828), - [anon_sym_macro] = ACTIONS(2828), - [anon_sym_abstract] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_private] = ACTIONS(2828), - [anon_sym_extern] = ACTIONS(2828), - [anon_sym_inline] = ACTIONS(2828), - [anon_sym_overload] = ACTIONS(2828), - [anon_sym_override] = ACTIONS(2828), - [anon_sym_final] = ACTIONS(2828), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_typedef] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2828), - [anon_sym_var] = ACTIONS(2828), - [aux_sym_integer_token1] = ACTIONS(2828), - [aux_sym_integer_token2] = ACTIONS(2830), - [aux_sym_float_token1] = ACTIONS(2828), - [aux_sym_float_token2] = ACTIONS(2830), - [anon_sym_true] = ACTIONS(2828), - [anon_sym_false] = ACTIONS(2828), - [aux_sym_string_token1] = ACTIONS(2830), - [aux_sym_string_token3] = ACTIONS(2830), + [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] = { - [sym_else_clause] = STATE(824), - [ts_builtin_sym_end] = ACTIONS(2652), - [sym_identifier] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2652), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_cast] = ACTIONS(2650), - [anon_sym_DOLLARtype] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_untyped] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2650), - [anon_sym_AT_COLON] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_PERCENT] = ACTIONS(2652), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_LT_LT] = ACTIONS(2652), - [anon_sym_GT_GT] = ACTIONS(2650), - [anon_sym_GT_GT_GT] = ACTIONS(2652), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_CARET] = ACTIONS(2652), - [anon_sym_AMP_AMP] = ACTIONS(2652), - [anon_sym_PIPE_PIPE] = ACTIONS(2652), - [anon_sym_EQ_EQ] = ACTIONS(2652), - [anon_sym_BANG_EQ] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_LT_EQ] = ACTIONS(2652), - [anon_sym_GT] = ACTIONS(2650), - [anon_sym_GT_EQ] = ACTIONS(2652), - [anon_sym_EQ_GT] = ACTIONS(2652), - [anon_sym_QMARK_QMARK] = ACTIONS(2652), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_macro] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_extern] = ACTIONS(2650), - [anon_sym_inline] = ACTIONS(2650), - [anon_sym_overload] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [anon_sym_typedef] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [aux_sym_integer_token1] = ACTIONS(2650), - [aux_sym_integer_token2] = ACTIONS(2652), - [aux_sym_float_token1] = ACTIONS(2650), - [aux_sym_float_token2] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [aux_sym_string_token3] = ACTIONS(2652), + [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(1448), - [sym_identifier] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_this] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [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(1452), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_interface] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_function] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1452), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1452), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), + [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(3380), - [sym_identifier] = ACTIONS(3378), - [anon_sym_POUND] = ACTIONS(3380), - [anon_sym_package] = ACTIONS(3378), - [anon_sym_import] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_using] = ACTIONS(3378), - [anon_sym_throw] = ACTIONS(3378), - [anon_sym_LPAREN] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3378), - [anon_sym_LBRACE] = ACTIONS(3380), - [anon_sym_cast] = ACTIONS(3378), - [anon_sym_DOLLARtype] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3378), - [anon_sym_return] = ACTIONS(3378), - [anon_sym_untyped] = ACTIONS(3378), - [anon_sym_break] = ACTIONS(3378), - [anon_sym_continue] = ACTIONS(3378), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_this] = ACTIONS(3378), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_AT_COLON] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3378), - [anon_sym_catch] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3378), - [anon_sym_if] = ACTIONS(3378), - [anon_sym_while] = ACTIONS(3378), - [anon_sym_do] = ACTIONS(3378), - [anon_sym_new] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3378), - [anon_sym_PLUS_PLUS] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3380), - [anon_sym_PERCENT] = ACTIONS(3380), - [anon_sym_SLASH] = ACTIONS(3378), - [anon_sym_PLUS] = ACTIONS(3378), - [anon_sym_LT_LT] = ACTIONS(3380), - [anon_sym_GT_GT] = ACTIONS(3378), - [anon_sym_GT_GT_GT] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3378), - [anon_sym_PIPE] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_AMP_AMP] = ACTIONS(3380), - [anon_sym_PIPE_PIPE] = ACTIONS(3380), - [anon_sym_EQ_EQ] = ACTIONS(3380), - [anon_sym_BANG_EQ] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_LT_EQ] = ACTIONS(3380), - [anon_sym_GT] = ACTIONS(3378), - [anon_sym_GT_EQ] = ACTIONS(3380), - [anon_sym_EQ_GT] = ACTIONS(3380), - [anon_sym_QMARK_QMARK] = ACTIONS(3380), - [anon_sym_EQ] = ACTIONS(3378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3380), - [anon_sym_null] = ACTIONS(3378), - [anon_sym_macro] = ACTIONS(3378), - [anon_sym_abstract] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3378), - [anon_sym_public] = ACTIONS(3378), - [anon_sym_private] = ACTIONS(3378), - [anon_sym_extern] = ACTIONS(3378), - [anon_sym_inline] = ACTIONS(3378), - [anon_sym_overload] = ACTIONS(3378), - [anon_sym_override] = ACTIONS(3378), - [anon_sym_final] = ACTIONS(3378), - [anon_sym_class] = ACTIONS(3378), - [anon_sym_interface] = ACTIONS(3378), - [anon_sym_enum] = ACTIONS(3378), - [anon_sym_typedef] = ACTIONS(3378), - [anon_sym_function] = ACTIONS(3378), - [anon_sym_var] = ACTIONS(3378), - [aux_sym_integer_token1] = ACTIONS(3378), - [aux_sym_integer_token2] = ACTIONS(3380), - [aux_sym_float_token1] = ACTIONS(3378), - [aux_sym_float_token2] = ACTIONS(3380), - [anon_sym_true] = ACTIONS(3378), - [anon_sym_false] = ACTIONS(3378), - [aux_sym_string_token1] = ACTIONS(3380), - [aux_sym_string_token3] = ACTIONS(3380), + [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(3384), - [sym_identifier] = ACTIONS(3382), - [anon_sym_POUND] = ACTIONS(3384), - [anon_sym_package] = ACTIONS(3382), - [anon_sym_import] = ACTIONS(3382), - [anon_sym_STAR] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3382), - [anon_sym_throw] = ACTIONS(3382), - [anon_sym_LPAREN] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3382), - [anon_sym_LBRACE] = ACTIONS(3384), - [anon_sym_cast] = ACTIONS(3382), - [anon_sym_DOLLARtype] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3382), - [anon_sym_return] = ACTIONS(3382), - [anon_sym_untyped] = ACTIONS(3382), - [anon_sym_break] = ACTIONS(3382), - [anon_sym_continue] = ACTIONS(3382), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_this] = ACTIONS(3382), - [anon_sym_AT] = ACTIONS(3382), - [anon_sym_AT_COLON] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3382), - [anon_sym_catch] = ACTIONS(3382), - [anon_sym_else] = ACTIONS(3382), - [anon_sym_if] = ACTIONS(3382), - [anon_sym_while] = ACTIONS(3382), - [anon_sym_do] = ACTIONS(3382), - [anon_sym_new] = ACTIONS(3382), - [anon_sym_TILDE] = ACTIONS(3384), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3382), - [anon_sym_PLUS_PLUS] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3384), - [anon_sym_PERCENT] = ACTIONS(3384), - [anon_sym_SLASH] = ACTIONS(3382), - [anon_sym_PLUS] = ACTIONS(3382), - [anon_sym_LT_LT] = ACTIONS(3384), - [anon_sym_GT_GT] = ACTIONS(3382), - [anon_sym_GT_GT_GT] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(3382), - [anon_sym_PIPE] = ACTIONS(3382), - [anon_sym_CARET] = ACTIONS(3384), - [anon_sym_AMP_AMP] = ACTIONS(3384), - [anon_sym_PIPE_PIPE] = ACTIONS(3384), - [anon_sym_EQ_EQ] = ACTIONS(3384), - [anon_sym_BANG_EQ] = ACTIONS(3384), - [anon_sym_LT] = ACTIONS(3382), - [anon_sym_LT_EQ] = ACTIONS(3384), - [anon_sym_GT] = ACTIONS(3382), - [anon_sym_GT_EQ] = ACTIONS(3384), - [anon_sym_EQ_GT] = ACTIONS(3384), - [anon_sym_QMARK_QMARK] = ACTIONS(3384), - [anon_sym_EQ] = ACTIONS(3382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3384), - [anon_sym_null] = ACTIONS(3382), - [anon_sym_macro] = ACTIONS(3382), - [anon_sym_abstract] = ACTIONS(3382), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_public] = ACTIONS(3382), - [anon_sym_private] = ACTIONS(3382), - [anon_sym_extern] = ACTIONS(3382), - [anon_sym_inline] = ACTIONS(3382), - [anon_sym_overload] = ACTIONS(3382), - [anon_sym_override] = ACTIONS(3382), - [anon_sym_final] = ACTIONS(3382), - [anon_sym_class] = ACTIONS(3382), - [anon_sym_interface] = ACTIONS(3382), - [anon_sym_enum] = ACTIONS(3382), - [anon_sym_typedef] = ACTIONS(3382), - [anon_sym_function] = ACTIONS(3382), - [anon_sym_var] = ACTIONS(3382), - [aux_sym_integer_token1] = ACTIONS(3382), - [aux_sym_integer_token2] = ACTIONS(3384), - [aux_sym_float_token1] = ACTIONS(3382), - [aux_sym_float_token2] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3382), - [anon_sym_false] = ACTIONS(3382), - [aux_sym_string_token1] = ACTIONS(3384), - [aux_sym_string_token3] = ACTIONS(3384), + [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(2706), - [sym_identifier] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2706), - [anon_sym_package] = ACTIONS(2704), - [anon_sym_import] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2704), - [anon_sym_throw] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_cast] = ACTIONS(2704), - [anon_sym_DOLLARtype] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_untyped] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_this] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_AT_COLON] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2704), - [anon_sym_catch] = ACTIONS(2704), - [anon_sym_else] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_while] = ACTIONS(2704), - [anon_sym_do] = ACTIONS(2704), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2706), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_AMP_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2706), - [anon_sym_BANG_EQ] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2706), - [anon_sym_EQ_GT] = ACTIONS(2706), - [anon_sym_QMARK_QMARK] = ACTIONS(2706), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2706), - [anon_sym_null] = ACTIONS(2704), - [anon_sym_macro] = ACTIONS(2704), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_static] = ACTIONS(2704), - [anon_sym_public] = ACTIONS(2704), - [anon_sym_private] = ACTIONS(2704), - [anon_sym_extern] = ACTIONS(2704), - [anon_sym_inline] = ACTIONS(2704), - [anon_sym_overload] = ACTIONS(2704), - [anon_sym_override] = ACTIONS(2704), - [anon_sym_final] = ACTIONS(2704), - [anon_sym_class] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_typedef] = ACTIONS(2704), - [anon_sym_function] = ACTIONS(2704), - [anon_sym_var] = ACTIONS(2704), - [aux_sym_integer_token1] = ACTIONS(2704), - [aux_sym_integer_token2] = ACTIONS(2706), - [aux_sym_float_token1] = ACTIONS(2704), - [aux_sym_float_token2] = ACTIONS(2706), - [anon_sym_true] = ACTIONS(2704), - [anon_sym_false] = ACTIONS(2704), - [aux_sym_string_token1] = ACTIONS(2706), - [aux_sym_string_token3] = ACTIONS(2706), + [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(2710), - [sym_identifier] = ACTIONS(2708), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_package] = ACTIONS(2708), - [anon_sym_import] = ACTIONS(2708), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2708), - [anon_sym_throw] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_cast] = ACTIONS(2708), - [anon_sym_DOLLARtype] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2708), - [anon_sym_return] = ACTIONS(2708), - [anon_sym_untyped] = ACTIONS(2708), - [anon_sym_break] = ACTIONS(2708), - [anon_sym_continue] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_this] = ACTIONS(2708), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_AT_COLON] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2708), - [anon_sym_catch] = ACTIONS(2708), - [anon_sym_else] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2708), - [anon_sym_while] = ACTIONS(2708), - [anon_sym_do] = ACTIONS(2708), - [anon_sym_new] = ACTIONS(2708), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [anon_sym_PERCENT] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2708), - [anon_sym_LT_LT] = ACTIONS(2710), - [anon_sym_GT_GT] = ACTIONS(2708), - [anon_sym_GT_GT_GT] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2708), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_CARET] = ACTIONS(2710), - [anon_sym_AMP_AMP] = ACTIONS(2710), - [anon_sym_PIPE_PIPE] = ACTIONS(2710), - [anon_sym_EQ_EQ] = ACTIONS(2710), - [anon_sym_BANG_EQ] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_LT_EQ] = ACTIONS(2710), - [anon_sym_GT] = ACTIONS(2708), - [anon_sym_GT_EQ] = ACTIONS(2710), - [anon_sym_EQ_GT] = ACTIONS(2710), - [anon_sym_QMARK_QMARK] = ACTIONS(2710), - [anon_sym_EQ] = ACTIONS(2708), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), - [anon_sym_null] = ACTIONS(2708), - [anon_sym_macro] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2708), - [anon_sym_public] = ACTIONS(2708), - [anon_sym_private] = ACTIONS(2708), - [anon_sym_extern] = ACTIONS(2708), - [anon_sym_inline] = ACTIONS(2708), - [anon_sym_overload] = ACTIONS(2708), - [anon_sym_override] = ACTIONS(2708), - [anon_sym_final] = ACTIONS(2708), - [anon_sym_class] = ACTIONS(2708), - [anon_sym_interface] = ACTIONS(2708), - [anon_sym_enum] = ACTIONS(2708), - [anon_sym_typedef] = ACTIONS(2708), - [anon_sym_function] = ACTIONS(2708), - [anon_sym_var] = ACTIONS(2708), - [aux_sym_integer_token1] = ACTIONS(2708), - [aux_sym_integer_token2] = ACTIONS(2710), - [aux_sym_float_token1] = ACTIONS(2708), - [aux_sym_float_token2] = ACTIONS(2710), - [anon_sym_true] = ACTIONS(2708), - [anon_sym_false] = ACTIONS(2708), - [aux_sym_string_token1] = ACTIONS(2710), - [aux_sym_string_token3] = ACTIONS(2710), + [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(2714), - [sym_identifier] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_package] = ACTIONS(2712), - [anon_sym_import] = ACTIONS(2712), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_using] = ACTIONS(2712), - [anon_sym_throw] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_switch] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_cast] = ACTIONS(2712), - [anon_sym_DOLLARtype] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_untyped] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_this] = ACTIONS(2712), - [anon_sym_AT] = ACTIONS(2712), - [anon_sym_AT_COLON] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2712), - [anon_sym_catch] = ACTIONS(2712), - [anon_sym_else] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_do] = ACTIONS(2712), - [anon_sym_new] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2714), - [anon_sym_DASH_DASH] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2712), - [anon_sym_PLUS] = ACTIONS(2712), - [anon_sym_LT_LT] = ACTIONS(2714), - [anon_sym_GT_GT] = ACTIONS(2712), - [anon_sym_GT_GT_GT] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_CARET] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_EQ_EQ] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2712), - [anon_sym_LT_EQ] = ACTIONS(2714), - [anon_sym_GT] = ACTIONS(2712), - [anon_sym_GT_EQ] = ACTIONS(2714), - [anon_sym_EQ_GT] = ACTIONS(2714), - [anon_sym_QMARK_QMARK] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2712), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2714), - [anon_sym_null] = ACTIONS(2712), - [anon_sym_macro] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2712), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2712), - [anon_sym_private] = ACTIONS(2712), - [anon_sym_extern] = ACTIONS(2712), - [anon_sym_inline] = ACTIONS(2712), - [anon_sym_overload] = ACTIONS(2712), - [anon_sym_override] = ACTIONS(2712), - [anon_sym_final] = ACTIONS(2712), - [anon_sym_class] = ACTIONS(2712), - [anon_sym_interface] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), - [anon_sym_typedef] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(2712), - [anon_sym_var] = ACTIONS(2712), - [aux_sym_integer_token1] = ACTIONS(2712), - [aux_sym_integer_token2] = ACTIONS(2714), - [aux_sym_float_token1] = ACTIONS(2712), - [aux_sym_float_token2] = ACTIONS(2714), - [anon_sym_true] = ACTIONS(2712), - [anon_sym_false] = ACTIONS(2712), - [aux_sym_string_token1] = ACTIONS(2714), - [aux_sym_string_token3] = ACTIONS(2714), + [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(2718), - [sym_identifier] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_package] = ACTIONS(2716), - [anon_sym_import] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_using] = ACTIONS(2716), - [anon_sym_throw] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_switch] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_cast] = ACTIONS(2716), - [anon_sym_DOLLARtype] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2716), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_untyped] = ACTIONS(2716), - [anon_sym_break] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_this] = ACTIONS(2716), - [anon_sym_AT] = ACTIONS(2716), - [anon_sym_AT_COLON] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2716), - [anon_sym_catch] = ACTIONS(2716), - [anon_sym_else] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2716), - [anon_sym_while] = ACTIONS(2716), - [anon_sym_do] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_LT_LT] = ACTIONS(2718), - [anon_sym_GT_GT] = ACTIONS(2716), - [anon_sym_GT_GT_GT] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_EQ_EQ] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_LT_EQ] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2716), - [anon_sym_GT_EQ] = ACTIONS(2718), - [anon_sym_EQ_GT] = ACTIONS(2718), - [anon_sym_QMARK_QMARK] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2718), - [anon_sym_null] = ACTIONS(2716), - [anon_sym_macro] = ACTIONS(2716), - [anon_sym_abstract] = ACTIONS(2716), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_public] = ACTIONS(2716), - [anon_sym_private] = ACTIONS(2716), - [anon_sym_extern] = ACTIONS(2716), - [anon_sym_inline] = ACTIONS(2716), - [anon_sym_overload] = ACTIONS(2716), - [anon_sym_override] = ACTIONS(2716), - [anon_sym_final] = ACTIONS(2716), - [anon_sym_class] = ACTIONS(2716), - [anon_sym_interface] = ACTIONS(2716), - [anon_sym_enum] = ACTIONS(2716), - [anon_sym_typedef] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2716), - [anon_sym_var] = ACTIONS(2716), - [aux_sym_integer_token1] = ACTIONS(2716), - [aux_sym_integer_token2] = ACTIONS(2718), - [aux_sym_float_token1] = ACTIONS(2716), - [aux_sym_float_token2] = ACTIONS(2718), - [anon_sym_true] = ACTIONS(2716), - [anon_sym_false] = ACTIONS(2716), - [aux_sym_string_token1] = ACTIONS(2718), - [aux_sym_string_token3] = ACTIONS(2718), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3388), - [sym_identifier] = ACTIONS(3386), - [anon_sym_POUND] = ACTIONS(3388), - [anon_sym_package] = ACTIONS(3386), - [anon_sym_import] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_using] = ACTIONS(3386), - [anon_sym_throw] = ACTIONS(3386), - [anon_sym_LPAREN] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3386), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_cast] = ACTIONS(3386), - [anon_sym_DOLLARtype] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3386), - [anon_sym_return] = ACTIONS(3386), - [anon_sym_untyped] = ACTIONS(3386), - [anon_sym_break] = ACTIONS(3386), - [anon_sym_continue] = ACTIONS(3386), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_this] = ACTIONS(3386), - [anon_sym_AT] = ACTIONS(3386), - [anon_sym_AT_COLON] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3386), - [anon_sym_catch] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3386), - [anon_sym_if] = ACTIONS(3386), - [anon_sym_while] = ACTIONS(3386), - [anon_sym_do] = ACTIONS(3386), - [anon_sym_new] = ACTIONS(3386), - [anon_sym_TILDE] = ACTIONS(3388), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_PLUS_PLUS] = ACTIONS(3388), - [anon_sym_DASH_DASH] = ACTIONS(3388), - [anon_sym_PERCENT] = ACTIONS(3388), - [anon_sym_SLASH] = ACTIONS(3386), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_LT_LT] = ACTIONS(3388), - [anon_sym_GT_GT] = ACTIONS(3386), - [anon_sym_GT_GT_GT] = ACTIONS(3388), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_PIPE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3388), - [anon_sym_AMP_AMP] = ACTIONS(3388), - [anon_sym_PIPE_PIPE] = ACTIONS(3388), - [anon_sym_EQ_EQ] = ACTIONS(3388), - [anon_sym_BANG_EQ] = ACTIONS(3388), - [anon_sym_LT] = ACTIONS(3386), - [anon_sym_LT_EQ] = ACTIONS(3388), - [anon_sym_GT] = ACTIONS(3386), - [anon_sym_GT_EQ] = ACTIONS(3388), - [anon_sym_EQ_GT] = ACTIONS(3388), - [anon_sym_QMARK_QMARK] = ACTIONS(3388), - [anon_sym_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3388), - [anon_sym_null] = ACTIONS(3386), - [anon_sym_macro] = ACTIONS(3386), - [anon_sym_abstract] = ACTIONS(3386), - [anon_sym_static] = ACTIONS(3386), - [anon_sym_public] = ACTIONS(3386), - [anon_sym_private] = ACTIONS(3386), - [anon_sym_extern] = ACTIONS(3386), - [anon_sym_inline] = ACTIONS(3386), - [anon_sym_overload] = ACTIONS(3386), - [anon_sym_override] = ACTIONS(3386), - [anon_sym_final] = ACTIONS(3386), - [anon_sym_class] = ACTIONS(3386), - [anon_sym_interface] = ACTIONS(3386), - [anon_sym_enum] = ACTIONS(3386), - [anon_sym_typedef] = ACTIONS(3386), - [anon_sym_function] = ACTIONS(3386), - [anon_sym_var] = ACTIONS(3386), - [aux_sym_integer_token1] = ACTIONS(3386), - [aux_sym_integer_token2] = ACTIONS(3388), - [aux_sym_float_token1] = ACTIONS(3386), - [aux_sym_float_token2] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3386), - [anon_sym_false] = ACTIONS(3386), - [aux_sym_string_token1] = ACTIONS(3388), - [aux_sym_string_token3] = ACTIONS(3388), - [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_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(2604), - [sym_identifier] = ACTIONS(2602), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_package] = ACTIONS(2602), - [anon_sym_import] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(2604), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_cast] = ACTIONS(2602), - [anon_sym_DOLLARtype] = ACTIONS(2604), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_untyped] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_this] = ACTIONS(2602), - [anon_sym_AT] = ACTIONS(2602), - [anon_sym_AT_COLON] = ACTIONS(2604), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_catch] = ACTIONS(2602), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_PERCENT] = ACTIONS(2604), - [anon_sym_SLASH] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2602), - [anon_sym_LT_LT] = ACTIONS(2604), - [anon_sym_GT_GT] = ACTIONS(2602), - [anon_sym_GT_GT_GT] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2602), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_AMP_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(2604), - [anon_sym_BANG_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_LT_EQ] = ACTIONS(2604), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_GT_EQ] = ACTIONS(2604), - [anon_sym_EQ_GT] = ACTIONS(2604), - [anon_sym_QMARK_QMARK] = ACTIONS(2604), - [anon_sym_EQ] = ACTIONS(2602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2604), - [anon_sym_null] = ACTIONS(2602), - [anon_sym_macro] = ACTIONS(2602), - [anon_sym_abstract] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_public] = ACTIONS(2602), - [anon_sym_private] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_overload] = ACTIONS(2602), - [anon_sym_override] = ACTIONS(2602), - [anon_sym_final] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_interface] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_function] = ACTIONS(2602), - [anon_sym_var] = ACTIONS(2602), - [aux_sym_integer_token1] = ACTIONS(2602), - [aux_sym_integer_token2] = ACTIONS(2604), - [aux_sym_float_token1] = ACTIONS(2602), - [aux_sym_float_token2] = ACTIONS(2604), - [anon_sym_true] = ACTIONS(2602), - [anon_sym_false] = ACTIONS(2602), - [aux_sym_string_token1] = ACTIONS(2604), - [aux_sym_string_token3] = ACTIONS(2604), + [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(3392), - [sym_identifier] = ACTIONS(3390), - [anon_sym_POUND] = ACTIONS(3392), - [anon_sym_package] = ACTIONS(3390), - [anon_sym_import] = ACTIONS(3390), - [anon_sym_STAR] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3390), - [anon_sym_throw] = ACTIONS(3390), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3390), - [anon_sym_LBRACE] = ACTIONS(3392), - [anon_sym_cast] = ACTIONS(3390), - [anon_sym_DOLLARtype] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3390), - [anon_sym_return] = ACTIONS(3390), - [anon_sym_untyped] = ACTIONS(3390), - [anon_sym_break] = ACTIONS(3390), - [anon_sym_continue] = ACTIONS(3390), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3390), - [anon_sym_AT] = ACTIONS(3390), - [anon_sym_AT_COLON] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3390), - [anon_sym_catch] = ACTIONS(3390), - [anon_sym_else] = ACTIONS(3390), - [anon_sym_if] = ACTIONS(3390), - [anon_sym_while] = ACTIONS(3390), - [anon_sym_do] = ACTIONS(3390), - [anon_sym_new] = ACTIONS(3390), - [anon_sym_TILDE] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_DASH] = ACTIONS(3390), - [anon_sym_PLUS_PLUS] = ACTIONS(3392), - [anon_sym_DASH_DASH] = ACTIONS(3392), - [anon_sym_PERCENT] = ACTIONS(3392), - [anon_sym_SLASH] = ACTIONS(3390), - [anon_sym_PLUS] = ACTIONS(3390), - [anon_sym_LT_LT] = ACTIONS(3392), - [anon_sym_GT_GT] = ACTIONS(3390), - [anon_sym_GT_GT_GT] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3390), - [anon_sym_PIPE] = ACTIONS(3390), - [anon_sym_CARET] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_EQ_EQ] = ACTIONS(3392), - [anon_sym_BANG_EQ] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(3390), - [anon_sym_LT_EQ] = ACTIONS(3392), - [anon_sym_GT] = ACTIONS(3390), - [anon_sym_GT_EQ] = ACTIONS(3392), - [anon_sym_EQ_GT] = ACTIONS(3392), - [anon_sym_QMARK_QMARK] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3392), - [anon_sym_null] = ACTIONS(3390), - [anon_sym_macro] = ACTIONS(3390), - [anon_sym_abstract] = ACTIONS(3390), - [anon_sym_static] = ACTIONS(3390), - [anon_sym_public] = ACTIONS(3390), - [anon_sym_private] = ACTIONS(3390), - [anon_sym_extern] = ACTIONS(3390), - [anon_sym_inline] = ACTIONS(3390), - [anon_sym_overload] = ACTIONS(3390), - [anon_sym_override] = ACTIONS(3390), - [anon_sym_final] = ACTIONS(3390), - [anon_sym_class] = ACTIONS(3390), - [anon_sym_interface] = ACTIONS(3390), - [anon_sym_enum] = ACTIONS(3390), - [anon_sym_typedef] = ACTIONS(3390), - [anon_sym_function] = ACTIONS(3390), - [anon_sym_var] = ACTIONS(3390), - [aux_sym_integer_token1] = ACTIONS(3390), - [aux_sym_integer_token2] = ACTIONS(3392), - [aux_sym_float_token1] = ACTIONS(3390), - [aux_sym_float_token2] = ACTIONS(3392), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym_string_token1] = ACTIONS(3392), - [aux_sym_string_token3] = ACTIONS(3392), + [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(3396), - [sym_identifier] = ACTIONS(3394), - [anon_sym_POUND] = ACTIONS(3396), - [anon_sym_package] = ACTIONS(3394), - [anon_sym_import] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_using] = ACTIONS(3394), - [anon_sym_throw] = ACTIONS(3394), - [anon_sym_LPAREN] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3394), - [anon_sym_LBRACE] = ACTIONS(3396), - [anon_sym_cast] = ACTIONS(3394), - [anon_sym_DOLLARtype] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3394), - [anon_sym_return] = ACTIONS(3394), - [anon_sym_untyped] = ACTIONS(3394), - [anon_sym_break] = ACTIONS(3394), - [anon_sym_continue] = ACTIONS(3394), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_this] = ACTIONS(3394), - [anon_sym_AT] = ACTIONS(3394), - [anon_sym_AT_COLON] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3394), - [anon_sym_catch] = ACTIONS(3394), - [anon_sym_else] = ACTIONS(3394), - [anon_sym_if] = ACTIONS(3394), - [anon_sym_while] = ACTIONS(3394), - [anon_sym_do] = ACTIONS(3394), - [anon_sym_new] = ACTIONS(3394), - [anon_sym_TILDE] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_PLUS_PLUS] = ACTIONS(3396), - [anon_sym_DASH_DASH] = ACTIONS(3396), - [anon_sym_PERCENT] = ACTIONS(3396), - [anon_sym_SLASH] = ACTIONS(3394), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3396), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_GT_GT_GT] = ACTIONS(3396), - [anon_sym_AMP] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3396), - [anon_sym_AMP_AMP] = ACTIONS(3396), - [anon_sym_PIPE_PIPE] = ACTIONS(3396), - [anon_sym_EQ_EQ] = ACTIONS(3396), - [anon_sym_BANG_EQ] = ACTIONS(3396), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_LT_EQ] = ACTIONS(3396), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_EQ] = ACTIONS(3396), - [anon_sym_EQ_GT] = ACTIONS(3396), - [anon_sym_QMARK_QMARK] = ACTIONS(3396), - [anon_sym_EQ] = ACTIONS(3394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3396), - [anon_sym_null] = ACTIONS(3394), - [anon_sym_macro] = ACTIONS(3394), - [anon_sym_abstract] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3394), - [anon_sym_public] = ACTIONS(3394), - [anon_sym_private] = ACTIONS(3394), - [anon_sym_extern] = ACTIONS(3394), - [anon_sym_inline] = ACTIONS(3394), - [anon_sym_overload] = ACTIONS(3394), - [anon_sym_override] = ACTIONS(3394), - [anon_sym_final] = ACTIONS(3394), - [anon_sym_class] = ACTIONS(3394), - [anon_sym_interface] = ACTIONS(3394), - [anon_sym_enum] = ACTIONS(3394), - [anon_sym_typedef] = ACTIONS(3394), - [anon_sym_function] = ACTIONS(3394), - [anon_sym_var] = ACTIONS(3394), - [aux_sym_integer_token1] = ACTIONS(3394), - [aux_sym_integer_token2] = ACTIONS(3396), - [aux_sym_float_token1] = ACTIONS(3394), - [aux_sym_float_token2] = ACTIONS(3396), - [anon_sym_true] = ACTIONS(3394), - [anon_sym_false] = ACTIONS(3394), - [aux_sym_string_token1] = ACTIONS(3396), - [aux_sym_string_token3] = ACTIONS(3396), + [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(3400), - [sym_identifier] = ACTIONS(3398), - [anon_sym_POUND] = ACTIONS(3400), - [anon_sym_package] = ACTIONS(3398), - [anon_sym_import] = ACTIONS(3398), - [anon_sym_STAR] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3398), - [anon_sym_throw] = ACTIONS(3398), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_cast] = ACTIONS(3398), - [anon_sym_DOLLARtype] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3398), - [anon_sym_return] = ACTIONS(3398), - [anon_sym_untyped] = ACTIONS(3398), - [anon_sym_break] = ACTIONS(3398), - [anon_sym_continue] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_this] = ACTIONS(3398), - [anon_sym_AT] = ACTIONS(3398), - [anon_sym_AT_COLON] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3398), - [anon_sym_catch] = ACTIONS(3398), - [anon_sym_else] = ACTIONS(3398), - [anon_sym_if] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3398), - [anon_sym_do] = ACTIONS(3398), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [anon_sym_PERCENT] = ACTIONS(3400), - [anon_sym_SLASH] = ACTIONS(3398), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_LT_LT] = ACTIONS(3400), - [anon_sym_GT_GT] = ACTIONS(3398), - [anon_sym_GT_GT_GT] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3398), - [anon_sym_CARET] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_EQ_EQ] = ACTIONS(3400), - [anon_sym_BANG_EQ] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(3398), - [anon_sym_LT_EQ] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3398), - [anon_sym_GT_EQ] = ACTIONS(3400), - [anon_sym_EQ_GT] = ACTIONS(3400), - [anon_sym_QMARK_QMARK] = ACTIONS(3400), - [anon_sym_EQ] = ACTIONS(3398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3400), - [anon_sym_null] = ACTIONS(3398), - [anon_sym_macro] = ACTIONS(3398), - [anon_sym_abstract] = ACTIONS(3398), - [anon_sym_static] = ACTIONS(3398), - [anon_sym_public] = ACTIONS(3398), - [anon_sym_private] = ACTIONS(3398), - [anon_sym_extern] = ACTIONS(3398), - [anon_sym_inline] = ACTIONS(3398), - [anon_sym_overload] = ACTIONS(3398), - [anon_sym_override] = ACTIONS(3398), - [anon_sym_final] = ACTIONS(3398), - [anon_sym_class] = ACTIONS(3398), - [anon_sym_interface] = ACTIONS(3398), - [anon_sym_enum] = ACTIONS(3398), - [anon_sym_typedef] = ACTIONS(3398), - [anon_sym_function] = ACTIONS(3398), - [anon_sym_var] = ACTIONS(3398), - [aux_sym_integer_token1] = ACTIONS(3398), - [aux_sym_integer_token2] = ACTIONS(3400), - [aux_sym_float_token1] = ACTIONS(3398), - [aux_sym_float_token2] = ACTIONS(3400), - [anon_sym_true] = ACTIONS(3398), - [anon_sym_false] = ACTIONS(3398), - [aux_sym_string_token1] = ACTIONS(3400), - [aux_sym_string_token3] = ACTIONS(3400), + [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(2726), - [sym_identifier] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2726), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_cast] = ACTIONS(2724), - [anon_sym_DOLLARtype] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_untyped] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_AT_COLON] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_catch] = ACTIONS(2724), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2726), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_PERCENT] = ACTIONS(2726), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2726), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2726), - [anon_sym_AMP_AMP] = ACTIONS(2726), - [anon_sym_PIPE_PIPE] = ACTIONS(2726), - [anon_sym_EQ_EQ] = ACTIONS(2726), - [anon_sym_BANG_EQ] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2726), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2726), - [anon_sym_EQ_GT] = ACTIONS(2726), - [anon_sym_QMARK_QMARK] = ACTIONS(2726), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2726), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_macro] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_inline] = ACTIONS(2724), - [anon_sym_overload] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_typedef] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [aux_sym_integer_token1] = ACTIONS(2724), - [aux_sym_integer_token2] = ACTIONS(2726), - [aux_sym_float_token1] = ACTIONS(2724), - [aux_sym_float_token2] = ACTIONS(2726), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [aux_sym_string_token1] = ACTIONS(2726), - [aux_sym_string_token3] = ACTIONS(2726), + [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(3404), - [sym_identifier] = ACTIONS(3402), - [anon_sym_POUND] = ACTIONS(3404), - [anon_sym_package] = ACTIONS(3402), - [anon_sym_import] = ACTIONS(3402), - [anon_sym_STAR] = ACTIONS(3404), - [anon_sym_using] = ACTIONS(3402), - [anon_sym_throw] = ACTIONS(3402), - [anon_sym_LPAREN] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_cast] = ACTIONS(3402), - [anon_sym_DOLLARtype] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3402), - [anon_sym_return] = ACTIONS(3402), - [anon_sym_untyped] = ACTIONS(3402), - [anon_sym_break] = ACTIONS(3402), - [anon_sym_continue] = ACTIONS(3402), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_this] = ACTIONS(3402), - [anon_sym_AT] = ACTIONS(3402), - [anon_sym_AT_COLON] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3402), - [anon_sym_catch] = ACTIONS(3402), - [anon_sym_else] = ACTIONS(3402), - [anon_sym_if] = ACTIONS(3402), - [anon_sym_while] = ACTIONS(3402), - [anon_sym_do] = ACTIONS(3402), - [anon_sym_new] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_DASH] = ACTIONS(3402), - [anon_sym_PLUS_PLUS] = ACTIONS(3404), - [anon_sym_DASH_DASH] = ACTIONS(3404), - [anon_sym_PERCENT] = ACTIONS(3404), - [anon_sym_SLASH] = ACTIONS(3402), - [anon_sym_PLUS] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_GT_GT_GT] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_EQ_EQ] = ACTIONS(3404), - [anon_sym_BANG_EQ] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_LT_EQ] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_EQ] = ACTIONS(3404), - [anon_sym_EQ_GT] = ACTIONS(3404), - [anon_sym_QMARK_QMARK] = ACTIONS(3404), - [anon_sym_EQ] = ACTIONS(3402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3402), - [anon_sym_macro] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(3402), - [anon_sym_static] = ACTIONS(3402), - [anon_sym_public] = ACTIONS(3402), - [anon_sym_private] = ACTIONS(3402), - [anon_sym_extern] = ACTIONS(3402), - [anon_sym_inline] = ACTIONS(3402), - [anon_sym_overload] = ACTIONS(3402), - [anon_sym_override] = ACTIONS(3402), - [anon_sym_final] = ACTIONS(3402), - [anon_sym_class] = ACTIONS(3402), - [anon_sym_interface] = ACTIONS(3402), - [anon_sym_enum] = ACTIONS(3402), - [anon_sym_typedef] = ACTIONS(3402), - [anon_sym_function] = ACTIONS(3402), - [anon_sym_var] = ACTIONS(3402), - [aux_sym_integer_token1] = ACTIONS(3402), - [aux_sym_integer_token2] = ACTIONS(3404), - [aux_sym_float_token1] = ACTIONS(3402), - [aux_sym_float_token2] = ACTIONS(3404), - [anon_sym_true] = ACTIONS(3402), - [anon_sym_false] = ACTIONS(3402), - [aux_sym_string_token1] = ACTIONS(3404), - [aux_sym_string_token3] = ACTIONS(3404), + [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(2666), - [sym_identifier] = ACTIONS(2664), - [anon_sym_POUND] = ACTIONS(2666), - [anon_sym_package] = ACTIONS(2664), - [anon_sym_import] = ACTIONS(2664), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_using] = ACTIONS(2664), - [anon_sym_throw] = ACTIONS(2664), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2664), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_cast] = ACTIONS(2664), - [anon_sym_DOLLARtype] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2664), - [anon_sym_untyped] = ACTIONS(2664), - [anon_sym_break] = ACTIONS(2664), - [anon_sym_continue] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_this] = ACTIONS(2664), - [anon_sym_AT] = ACTIONS(2664), - [anon_sym_AT_COLON] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2664), - [anon_sym_catch] = ACTIONS(2664), - [anon_sym_else] = ACTIONS(2664), - [anon_sym_if] = ACTIONS(2664), - [anon_sym_while] = ACTIONS(2664), - [anon_sym_do] = ACTIONS(2664), - [anon_sym_new] = ACTIONS(2664), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2664), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2664), - [anon_sym_PLUS] = ACTIONS(2664), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT] = ACTIONS(2664), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2664), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2664), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2664), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_EQ_GT] = ACTIONS(2666), - [anon_sym_QMARK_QMARK] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2664), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [anon_sym_null] = ACTIONS(2664), - [anon_sym_macro] = ACTIONS(2664), - [anon_sym_abstract] = ACTIONS(2664), - [anon_sym_static] = ACTIONS(2664), - [anon_sym_public] = ACTIONS(2664), - [anon_sym_private] = ACTIONS(2664), - [anon_sym_extern] = ACTIONS(2664), - [anon_sym_inline] = ACTIONS(2664), - [anon_sym_overload] = ACTIONS(2664), - [anon_sym_override] = ACTIONS(2664), - [anon_sym_final] = ACTIONS(2664), - [anon_sym_class] = ACTIONS(2664), - [anon_sym_interface] = ACTIONS(2664), - [anon_sym_enum] = ACTIONS(2664), - [anon_sym_typedef] = ACTIONS(2664), - [anon_sym_function] = ACTIONS(2664), - [anon_sym_var] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2664), - [aux_sym_integer_token2] = ACTIONS(2666), - [aux_sym_float_token1] = ACTIONS(2664), - [aux_sym_float_token2] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2664), - [anon_sym_false] = ACTIONS(2664), - [aux_sym_string_token1] = ACTIONS(2666), - [aux_sym_string_token3] = ACTIONS(2666), + [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(2694), - [sym_identifier] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_package] = ACTIONS(2692), - [anon_sym_import] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_using] = ACTIONS(2692), - [anon_sym_throw] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_cast] = ACTIONS(2692), - [anon_sym_DOLLARtype] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_untyped] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_this] = ACTIONS(2692), - [anon_sym_AT] = ACTIONS(2692), - [anon_sym_AT_COLON] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2692), - [anon_sym_catch] = ACTIONS(2692), - [anon_sym_else] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_while] = ACTIONS(2692), - [anon_sym_do] = ACTIONS(2692), - [anon_sym_new] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2692), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2692), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_EQ_GT] = ACTIONS(2694), - [anon_sym_QMARK_QMARK] = ACTIONS(2694), - [anon_sym_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2692), - [anon_sym_macro] = ACTIONS(2692), - [anon_sym_abstract] = ACTIONS(2692), - [anon_sym_static] = ACTIONS(2692), - [anon_sym_public] = ACTIONS(2692), - [anon_sym_private] = ACTIONS(2692), - [anon_sym_extern] = ACTIONS(2692), - [anon_sym_inline] = ACTIONS(2692), - [anon_sym_overload] = ACTIONS(2692), - [anon_sym_override] = ACTIONS(2692), - [anon_sym_final] = ACTIONS(2692), - [anon_sym_class] = ACTIONS(2692), - [anon_sym_interface] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_typedef] = ACTIONS(2692), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_var] = ACTIONS(2692), - [aux_sym_integer_token1] = ACTIONS(2692), - [aux_sym_integer_token2] = ACTIONS(2694), - [aux_sym_float_token1] = ACTIONS(2692), - [aux_sym_float_token2] = ACTIONS(2694), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [aux_sym_string_token1] = ACTIONS(2694), - [aux_sym_string_token3] = ACTIONS(2694), + [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(2802), - [sym_identifier] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_package] = ACTIONS(2800), - [anon_sym_import] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_using] = ACTIONS(2800), - [anon_sym_throw] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_switch] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_cast] = ACTIONS(2800), - [anon_sym_DOLLARtype] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_untyped] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_this] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_AT_COLON] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2800), - [anon_sym_catch] = ACTIONS(2800), - [anon_sym_else] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_while] = ACTIONS(2800), - [anon_sym_do] = ACTIONS(2800), - [anon_sym_new] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_EQ_GT] = ACTIONS(2802), - [anon_sym_QMARK_QMARK] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2802), - [anon_sym_null] = ACTIONS(2800), - [anon_sym_macro] = ACTIONS(2800), - [anon_sym_abstract] = ACTIONS(2800), - [anon_sym_static] = ACTIONS(2800), - [anon_sym_public] = ACTIONS(2800), - [anon_sym_private] = ACTIONS(2800), - [anon_sym_extern] = ACTIONS(2800), - [anon_sym_inline] = ACTIONS(2800), - [anon_sym_overload] = ACTIONS(2800), - [anon_sym_override] = ACTIONS(2800), - [anon_sym_final] = ACTIONS(2800), - [anon_sym_class] = ACTIONS(2800), - [anon_sym_interface] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_typedef] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2800), - [anon_sym_var] = ACTIONS(2800), - [aux_sym_integer_token1] = ACTIONS(2800), - [aux_sym_integer_token2] = ACTIONS(2802), - [aux_sym_float_token1] = ACTIONS(2800), - [aux_sym_float_token2] = ACTIONS(2802), - [anon_sym_true] = ACTIONS(2800), - [anon_sym_false] = ACTIONS(2800), - [aux_sym_string_token1] = ACTIONS(2802), - [aux_sym_string_token3] = ACTIONS(2802), + [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(2834), - [sym_identifier] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2834), - [anon_sym_package] = ACTIONS(2832), - [anon_sym_import] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2832), - [anon_sym_throw] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_cast] = ACTIONS(2832), - [anon_sym_DOLLARtype] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_untyped] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_this] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_AT_COLON] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2832), - [anon_sym_catch] = ACTIONS(2832), - [anon_sym_else] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_while] = ACTIONS(2832), - [anon_sym_do] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2834), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_EQ_EQ] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2834), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2834), - [anon_sym_EQ_GT] = ACTIONS(2834), - [anon_sym_QMARK_QMARK] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2834), - [anon_sym_null] = ACTIONS(2832), - [anon_sym_macro] = ACTIONS(2832), - [anon_sym_abstract] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_extern] = ACTIONS(2832), - [anon_sym_inline] = ACTIONS(2832), - [anon_sym_overload] = ACTIONS(2832), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_final] = ACTIONS(2832), - [anon_sym_class] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_typedef] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2832), - [anon_sym_var] = ACTIONS(2832), - [aux_sym_integer_token1] = ACTIONS(2832), - [aux_sym_integer_token2] = ACTIONS(2834), - [aux_sym_float_token1] = ACTIONS(2832), - [aux_sym_float_token2] = ACTIONS(2834), - [anon_sym_true] = ACTIONS(2832), - [anon_sym_false] = ACTIONS(2832), - [aux_sym_string_token1] = ACTIONS(2834), - [aux_sym_string_token3] = ACTIONS(2834), + [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] = { - [sym_else_clause] = STATE(444), - [sym_identifier] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_package] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_cast] = ACTIONS(2640), - [anon_sym_DOLLARtype] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_untyped] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_AT_COLON] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_LT_LT] = ACTIONS(2642), - [anon_sym_GT_GT] = ACTIONS(2640), - [anon_sym_GT_GT_GT] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2642), - [anon_sym_AMP_AMP] = ACTIONS(2642), - [anon_sym_PIPE_PIPE] = ACTIONS(2642), - [anon_sym_EQ_EQ] = ACTIONS(2642), - [anon_sym_BANG_EQ] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_LT_EQ] = ACTIONS(2642), - [anon_sym_GT] = ACTIONS(2640), - [anon_sym_GT_EQ] = ACTIONS(2642), - [anon_sym_EQ_GT] = ACTIONS(2642), - [anon_sym_QMARK_QMARK] = ACTIONS(2642), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2640), - [anon_sym_macro] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_inline] = ACTIONS(2640), - [anon_sym_overload] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_final] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [aux_sym_integer_token1] = ACTIONS(2640), - [aux_sym_integer_token2] = ACTIONS(2642), - [aux_sym_float_token1] = ACTIONS(2640), - [aux_sym_float_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [aux_sym_string_token1] = ACTIONS(2642), - [aux_sym_string_token3] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2642), + [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(2838), - [sym_identifier] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_package] = ACTIONS(2836), - [anon_sym_import] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_throw] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_cast] = ACTIONS(2836), - [anon_sym_DOLLARtype] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_untyped] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_this] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_AT_COLON] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(2836), - [anon_sym_else] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_do] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_EQ_GT] = ACTIONS(2838), - [anon_sym_QMARK_QMARK] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2838), - [anon_sym_null] = ACTIONS(2836), - [anon_sym_macro] = ACTIONS(2836), - [anon_sym_abstract] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym_overload] = ACTIONS(2836), - [anon_sym_override] = ACTIONS(2836), - [anon_sym_final] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2836), - [anon_sym_var] = ACTIONS(2836), - [aux_sym_integer_token1] = ACTIONS(2836), - [aux_sym_integer_token2] = ACTIONS(2838), - [aux_sym_float_token1] = ACTIONS(2836), - [aux_sym_float_token2] = ACTIONS(2838), - [anon_sym_true] = ACTIONS(2836), - [anon_sym_false] = ACTIONS(2836), - [aux_sym_string_token1] = ACTIONS(2838), - [aux_sym_string_token3] = ACTIONS(2838), + [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] = { - [sym_else_clause] = STATE(606), - [sym_identifier] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_cast] = ACTIONS(2606), - [anon_sym_DOLLARtype] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_untyped] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2606), - [anon_sym_AT_COLON] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PERCENT] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_LT_LT] = ACTIONS(2608), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_GT_GT_GT] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_PIPE_PIPE] = ACTIONS(2608), - [anon_sym_EQ_EQ] = ACTIONS(2608), - [anon_sym_BANG_EQ] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_LT_EQ] = ACTIONS(2608), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_EQ] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), - [anon_sym_QMARK_QMARK] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(2606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2606), - [anon_sym_macro] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_overload] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_final] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [aux_sym_integer_token1] = ACTIONS(2606), - [aux_sym_integer_token2] = ACTIONS(2608), - [aux_sym_float_token1] = ACTIONS(2606), - [aux_sym_float_token2] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [aux_sym_string_token1] = ACTIONS(2608), - [aux_sym_string_token3] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2608), + [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(2698), - [sym_identifier] = ACTIONS(2696), - [anon_sym_POUND] = ACTIONS(2698), - [anon_sym_package] = ACTIONS(2696), - [anon_sym_import] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_using] = ACTIONS(2696), - [anon_sym_throw] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_cast] = ACTIONS(2696), - [anon_sym_DOLLARtype] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_untyped] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_this] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2696), - [anon_sym_AT_COLON] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2696), - [anon_sym_catch] = ACTIONS(2696), - [anon_sym_else] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_do] = ACTIONS(2696), - [anon_sym_new] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2696), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_EQ_GT] = ACTIONS(2698), - [anon_sym_QMARK_QMARK] = ACTIONS(2698), - [anon_sym_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2698), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_macro] = ACTIONS(2696), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_public] = ACTIONS(2696), - [anon_sym_private] = ACTIONS(2696), - [anon_sym_extern] = ACTIONS(2696), - [anon_sym_inline] = ACTIONS(2696), - [anon_sym_overload] = ACTIONS(2696), - [anon_sym_override] = ACTIONS(2696), - [anon_sym_final] = ACTIONS(2696), - [anon_sym_class] = ACTIONS(2696), - [anon_sym_interface] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [anon_sym_typedef] = ACTIONS(2696), - [anon_sym_function] = ACTIONS(2696), - [anon_sym_var] = ACTIONS(2696), - [aux_sym_integer_token1] = ACTIONS(2696), - [aux_sym_integer_token2] = ACTIONS(2698), - [aux_sym_float_token1] = ACTIONS(2696), - [aux_sym_float_token2] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2696), - [anon_sym_false] = ACTIONS(2696), - [aux_sym_string_token1] = ACTIONS(2698), - [aux_sym_string_token3] = ACTIONS(2698), + [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(2842), - [sym_identifier] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_package] = ACTIONS(2840), - [anon_sym_import] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_cast] = ACTIONS(2840), - [anon_sym_DOLLARtype] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_untyped] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_this] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_AT_COLON] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_catch] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2842), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_EQ_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2842), - [anon_sym_EQ_GT] = ACTIONS(2842), - [anon_sym_QMARK_QMARK] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2842), - [anon_sym_null] = ACTIONS(2840), - [anon_sym_macro] = ACTIONS(2840), - [anon_sym_abstract] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_public] = ACTIONS(2840), - [anon_sym_private] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym_inline] = ACTIONS(2840), - [anon_sym_overload] = ACTIONS(2840), - [anon_sym_override] = ACTIONS(2840), - [anon_sym_final] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2840), - [anon_sym_var] = ACTIONS(2840), - [aux_sym_integer_token1] = ACTIONS(2840), - [aux_sym_integer_token2] = ACTIONS(2842), - [aux_sym_float_token1] = ACTIONS(2840), - [aux_sym_float_token2] = ACTIONS(2842), - [anon_sym_true] = ACTIONS(2840), - [anon_sym_false] = ACTIONS(2840), - [aux_sym_string_token1] = ACTIONS(2842), - [aux_sym_string_token3] = ACTIONS(2842), + [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(2734), - [sym_identifier] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_package] = ACTIONS(2732), - [anon_sym_import] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(2732), - [anon_sym_throw] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_switch] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_cast] = ACTIONS(2732), - [anon_sym_DOLLARtype] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_untyped] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_this] = ACTIONS(2732), - [anon_sym_AT] = ACTIONS(2732), - [anon_sym_AT_COLON] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2732), - [anon_sym_catch] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_EQ_GT] = ACTIONS(2734), - [anon_sym_QMARK_QMARK] = ACTIONS(2734), - [anon_sym_EQ] = ACTIONS(2732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2734), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_macro] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_extern] = ACTIONS(2732), - [anon_sym_inline] = ACTIONS(2732), - [anon_sym_overload] = ACTIONS(2732), - [anon_sym_override] = ACTIONS(2732), - [anon_sym_final] = ACTIONS(2732), - [anon_sym_class] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_typedef] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_var] = ACTIONS(2732), - [aux_sym_integer_token1] = ACTIONS(2732), - [aux_sym_integer_token2] = ACTIONS(2734), - [aux_sym_float_token1] = ACTIONS(2732), - [aux_sym_float_token2] = ACTIONS(2734), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [aux_sym_string_token1] = ACTIONS(2734), - [aux_sym_string_token3] = ACTIONS(2734), + [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(2738), - [sym_identifier] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_package] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(2736), - [anon_sym_throw] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_switch] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_cast] = ACTIONS(2736), - [anon_sym_DOLLARtype] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_untyped] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_this] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_AT_COLON] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2736), - [anon_sym_catch] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_do] = ACTIONS(2736), - [anon_sym_new] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_PERCENT] = ACTIONS(2738), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2738), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_EQ_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2738), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2738), - [anon_sym_EQ_GT] = ACTIONS(2738), - [anon_sym_QMARK_QMARK] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(2736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2738), - [anon_sym_null] = ACTIONS(2736), - [anon_sym_macro] = ACTIONS(2736), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_extern] = ACTIONS(2736), - [anon_sym_inline] = ACTIONS(2736), - [anon_sym_overload] = ACTIONS(2736), - [anon_sym_override] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_typedef] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [aux_sym_integer_token1] = ACTIONS(2736), - [aux_sym_integer_token2] = ACTIONS(2738), - [aux_sym_float_token1] = ACTIONS(2736), - [aux_sym_float_token2] = ACTIONS(2738), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [aux_sym_string_token1] = ACTIONS(2738), - [aux_sym_string_token3] = ACTIONS(2738), + [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(2670), - [sym_identifier] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_package] = ACTIONS(2668), - [anon_sym_import] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_using] = ACTIONS(2668), - [anon_sym_throw] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2670), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_cast] = ACTIONS(2668), - [anon_sym_DOLLARtype] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_untyped] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_this] = ACTIONS(2668), - [anon_sym_AT] = ACTIONS(2668), - [anon_sym_AT_COLON] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2668), - [anon_sym_catch] = ACTIONS(2668), - [anon_sym_else] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_new] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2670), - [anon_sym_DASH_DASH] = ACTIONS(2670), - [anon_sym_PERCENT] = ACTIONS(2670), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_LT_LT] = ACTIONS(2670), - [anon_sym_GT_GT] = ACTIONS(2668), - [anon_sym_GT_GT_GT] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_CARET] = ACTIONS(2670), - [anon_sym_AMP_AMP] = ACTIONS(2670), - [anon_sym_PIPE_PIPE] = ACTIONS(2670), - [anon_sym_EQ_EQ] = ACTIONS(2670), - [anon_sym_BANG_EQ] = ACTIONS(2670), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_EQ_GT] = ACTIONS(2670), - [anon_sym_QMARK_QMARK] = ACTIONS(2670), - [anon_sym_EQ] = ACTIONS(2668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2670), - [anon_sym_null] = ACTIONS(2668), - [anon_sym_macro] = ACTIONS(2668), - [anon_sym_abstract] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_inline] = ACTIONS(2668), - [anon_sym_overload] = ACTIONS(2668), - [anon_sym_override] = ACTIONS(2668), - [anon_sym_final] = ACTIONS(2668), - [anon_sym_class] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_typedef] = ACTIONS(2668), - [anon_sym_function] = ACTIONS(2668), - [anon_sym_var] = ACTIONS(2668), - [aux_sym_integer_token1] = ACTIONS(2668), - [aux_sym_integer_token2] = ACTIONS(2670), - [aux_sym_float_token1] = ACTIONS(2668), - [aux_sym_float_token2] = ACTIONS(2670), - [anon_sym_true] = ACTIONS(2668), - [anon_sym_false] = ACTIONS(2668), - [aux_sym_string_token1] = ACTIONS(2670), - [aux_sym_string_token3] = ACTIONS(2670), + [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(3286), - [sym_identifier] = ACTIONS(3284), - [anon_sym_POUND] = ACTIONS(3286), - [anon_sym_package] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_cast] = ACTIONS(3284), - [anon_sym_DOLLARtype] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_untyped] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_this] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_AT_COLON] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_catch] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_PERCENT] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_LT_LT] = ACTIONS(3286), - [anon_sym_GT_GT] = ACTIONS(3284), - [anon_sym_GT_GT_GT] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_PIPE] = ACTIONS(3284), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_EQ_EQ] = ACTIONS(3286), - [anon_sym_BANG_EQ] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_LT_EQ] = ACTIONS(3286), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_GT_EQ] = ACTIONS(3286), - [anon_sym_EQ_GT] = ACTIONS(3286), - [anon_sym_QMARK_QMARK] = ACTIONS(3286), - [anon_sym_EQ] = ACTIONS(3284), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_macro] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym_overload] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_final] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [aux_sym_integer_token1] = ACTIONS(3284), - [aux_sym_integer_token2] = ACTIONS(3286), - [aux_sym_float_token1] = ACTIONS(3284), - [aux_sym_float_token2] = ACTIONS(3286), - [anon_sym_true] = ACTIONS(3284), - [anon_sym_false] = ACTIONS(3284), - [aux_sym_string_token1] = ACTIONS(3286), - [aux_sym_string_token3] = ACTIONS(3286), + [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(2674), - [sym_identifier] = ACTIONS(2672), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_package] = ACTIONS(2672), - [anon_sym_import] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_using] = ACTIONS(2672), - [anon_sym_throw] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_cast] = ACTIONS(2672), - [anon_sym_DOLLARtype] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_untyped] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_this] = ACTIONS(2672), - [anon_sym_AT] = ACTIONS(2672), - [anon_sym_AT_COLON] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2672), - [anon_sym_catch] = ACTIONS(2672), - [anon_sym_else] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_while] = ACTIONS(2672), - [anon_sym_do] = ACTIONS(2672), - [anon_sym_new] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_PERCENT] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_GT_GT_GT] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2672), - [anon_sym_CARET] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [anon_sym_EQ_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_LT_EQ] = ACTIONS(2674), - [anon_sym_GT] = ACTIONS(2672), - [anon_sym_GT_EQ] = ACTIONS(2674), - [anon_sym_EQ_GT] = ACTIONS(2674), - [anon_sym_QMARK_QMARK] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2672), - [anon_sym_macro] = ACTIONS(2672), - [anon_sym_abstract] = ACTIONS(2672), - [anon_sym_static] = ACTIONS(2672), - [anon_sym_public] = ACTIONS(2672), - [anon_sym_private] = ACTIONS(2672), - [anon_sym_extern] = ACTIONS(2672), - [anon_sym_inline] = ACTIONS(2672), - [anon_sym_overload] = ACTIONS(2672), - [anon_sym_override] = ACTIONS(2672), - [anon_sym_final] = ACTIONS(2672), - [anon_sym_class] = ACTIONS(2672), - [anon_sym_interface] = ACTIONS(2672), - [anon_sym_enum] = ACTIONS(2672), - [anon_sym_typedef] = ACTIONS(2672), - [anon_sym_function] = ACTIONS(2672), - [anon_sym_var] = ACTIONS(2672), - [aux_sym_integer_token1] = ACTIONS(2672), - [aux_sym_integer_token2] = ACTIONS(2674), - [aux_sym_float_token1] = ACTIONS(2672), - [aux_sym_float_token2] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [aux_sym_string_token1] = ACTIONS(2674), - [aux_sym_string_token3] = ACTIONS(2674), + [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] = { - [ts_builtin_sym_end] = ACTIONS(3408), - [sym_identifier] = ACTIONS(3406), - [anon_sym_POUND] = ACTIONS(3408), - [anon_sym_package] = ACTIONS(3406), - [anon_sym_import] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3406), - [anon_sym_throw] = ACTIONS(3406), - [anon_sym_LPAREN] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3408), - [anon_sym_cast] = ACTIONS(3406), - [anon_sym_DOLLARtype] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3406), - [anon_sym_return] = ACTIONS(3406), - [anon_sym_untyped] = ACTIONS(3406), - [anon_sym_break] = ACTIONS(3406), - [anon_sym_continue] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_this] = ACTIONS(3406), - [anon_sym_AT] = ACTIONS(3406), - [anon_sym_AT_COLON] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3406), - [anon_sym_catch] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3406), - [anon_sym_if] = ACTIONS(3406), - [anon_sym_while] = ACTIONS(3406), - [anon_sym_do] = ACTIONS(3406), - [anon_sym_new] = ACTIONS(3406), - [anon_sym_TILDE] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_PERCENT] = ACTIONS(3408), - [anon_sym_SLASH] = ACTIONS(3406), - [anon_sym_PLUS] = ACTIONS(3406), - [anon_sym_LT_LT] = ACTIONS(3408), - [anon_sym_GT_GT] = ACTIONS(3406), - [anon_sym_GT_GT_GT] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3406), - [anon_sym_PIPE] = ACTIONS(3406), - [anon_sym_CARET] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_PIPE_PIPE] = ACTIONS(3408), - [anon_sym_EQ_EQ] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3408), - [anon_sym_LT] = ACTIONS(3406), - [anon_sym_LT_EQ] = ACTIONS(3408), - [anon_sym_GT] = ACTIONS(3406), - [anon_sym_GT_EQ] = ACTIONS(3408), - [anon_sym_EQ_GT] = ACTIONS(3408), - [anon_sym_QMARK_QMARK] = ACTIONS(3408), - [anon_sym_EQ] = ACTIONS(3406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), - [anon_sym_null] = ACTIONS(3406), - [anon_sym_macro] = ACTIONS(3406), - [anon_sym_abstract] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_extern] = ACTIONS(3406), - [anon_sym_inline] = ACTIONS(3406), - [anon_sym_overload] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3406), - [anon_sym_final] = ACTIONS(3406), - [anon_sym_class] = ACTIONS(3406), - [anon_sym_interface] = ACTIONS(3406), - [anon_sym_enum] = ACTIONS(3406), - [anon_sym_typedef] = ACTIONS(3406), - [anon_sym_function] = ACTIONS(3406), - [anon_sym_var] = ACTIONS(3406), - [aux_sym_integer_token1] = ACTIONS(3406), - [aux_sym_integer_token2] = ACTIONS(3408), - [aux_sym_float_token1] = ACTIONS(3406), - [aux_sym_float_token2] = ACTIONS(3408), - [anon_sym_true] = ACTIONS(3406), - [anon_sym_false] = ACTIONS(3406), - [aux_sym_string_token1] = ACTIONS(3408), - [aux_sym_string_token3] = ACTIONS(3408), - [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_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(2678), - [sym_identifier] = ACTIONS(2676), - [anon_sym_POUND] = ACTIONS(2678), - [anon_sym_package] = ACTIONS(2676), - [anon_sym_import] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_using] = ACTIONS(2676), - [anon_sym_throw] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_switch] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_cast] = ACTIONS(2676), - [anon_sym_DOLLARtype] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2676), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_untyped] = ACTIONS(2676), - [anon_sym_break] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_this] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [anon_sym_AT_COLON] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2676), - [anon_sym_catch] = ACTIONS(2676), - [anon_sym_else] = ACTIONS(2676), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_while] = ACTIONS(2676), - [anon_sym_do] = ACTIONS(2676), - [anon_sym_new] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PERCENT] = ACTIONS(2678), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2676), - [anon_sym_GT_GT_GT] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_CARET] = ACTIONS(2678), - [anon_sym_AMP_AMP] = ACTIONS(2678), - [anon_sym_PIPE_PIPE] = ACTIONS(2678), - [anon_sym_EQ_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_EQ_GT] = ACTIONS(2678), - [anon_sym_QMARK_QMARK] = ACTIONS(2678), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_null] = ACTIONS(2676), - [anon_sym_macro] = ACTIONS(2676), - [anon_sym_abstract] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_extern] = ACTIONS(2676), - [anon_sym_inline] = ACTIONS(2676), - [anon_sym_overload] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_final] = ACTIONS(2676), - [anon_sym_class] = ACTIONS(2676), - [anon_sym_interface] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_typedef] = ACTIONS(2676), - [anon_sym_function] = ACTIONS(2676), - [anon_sym_var] = ACTIONS(2676), - [aux_sym_integer_token1] = ACTIONS(2676), - [aux_sym_integer_token2] = ACTIONS(2678), - [aux_sym_float_token1] = ACTIONS(2676), - [aux_sym_float_token2] = ACTIONS(2678), - [anon_sym_true] = ACTIONS(2676), - [anon_sym_false] = ACTIONS(2676), - [aux_sym_string_token1] = ACTIONS(2678), - [aux_sym_string_token3] = ACTIONS(2678), + [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(2742), - [sym_identifier] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_package] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_using] = ACTIONS(2740), - [anon_sym_throw] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_cast] = ACTIONS(2740), - [anon_sym_DOLLARtype] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_untyped] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_this] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_AT_COLON] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2740), - [anon_sym_catch] = ACTIONS(2740), - [anon_sym_else] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_do] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [anon_sym_PERCENT] = ACTIONS(2742), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2742), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2742), - [anon_sym_AMP_AMP] = ACTIONS(2742), - [anon_sym_PIPE_PIPE] = ACTIONS(2742), - [anon_sym_EQ_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2742), - [anon_sym_EQ_GT] = ACTIONS(2742), - [anon_sym_QMARK_QMARK] = ACTIONS(2742), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2742), - [anon_sym_null] = ACTIONS(2740), - [anon_sym_macro] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_extern] = ACTIONS(2740), - [anon_sym_inline] = ACTIONS(2740), - [anon_sym_overload] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_final] = ACTIONS(2740), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_typedef] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [aux_sym_integer_token1] = ACTIONS(2740), - [aux_sym_integer_token2] = ACTIONS(2742), - [aux_sym_float_token1] = ACTIONS(2740), - [aux_sym_float_token2] = ACTIONS(2742), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [aux_sym_string_token1] = ACTIONS(2742), - [aux_sym_string_token3] = ACTIONS(2742), + [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(2682), - [sym_identifier] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2682), - [anon_sym_package] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2682), - [anon_sym_cast] = ACTIONS(2680), - [anon_sym_DOLLARtype] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_untyped] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_this] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2680), - [anon_sym_AT_COLON] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_catch] = ACTIONS(2680), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2682), - [anon_sym_PERCENT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_LT_LT] = ACTIONS(2682), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_GT_GT_GT] = ACTIONS(2682), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2682), - [anon_sym_AMP_AMP] = ACTIONS(2682), - [anon_sym_PIPE_PIPE] = ACTIONS(2682), - [anon_sym_EQ_EQ] = ACTIONS(2682), - [anon_sym_BANG_EQ] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2682), - [anon_sym_GT] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2682), - [anon_sym_EQ_GT] = ACTIONS(2682), - [anon_sym_QMARK_QMARK] = ACTIONS(2682), - [anon_sym_EQ] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2682), - [anon_sym_null] = ACTIONS(2680), - [anon_sym_macro] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_extern] = ACTIONS(2680), - [anon_sym_inline] = ACTIONS(2680), - [anon_sym_overload] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_typedef] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [aux_sym_integer_token1] = ACTIONS(2680), - [aux_sym_integer_token2] = ACTIONS(2682), - [aux_sym_float_token1] = ACTIONS(2680), - [aux_sym_float_token2] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [aux_sym_string_token1] = ACTIONS(2682), - [aux_sym_string_token3] = ACTIONS(2682), + [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(2746), - [sym_identifier] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(2746), - [anon_sym_package] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2746), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_cast] = ACTIONS(2744), - [anon_sym_DOLLARtype] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_untyped] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_this] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2744), - [anon_sym_AT_COLON] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_catch] = ACTIONS(2744), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2746), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2746), - [anon_sym_DASH_DASH] = ACTIONS(2746), - [anon_sym_PERCENT] = ACTIONS(2746), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_LT_LT] = ACTIONS(2746), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_GT_GT_GT] = ACTIONS(2746), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2746), - [anon_sym_AMP_AMP] = ACTIONS(2746), - [anon_sym_PIPE_PIPE] = ACTIONS(2746), - [anon_sym_EQ_EQ] = ACTIONS(2746), - [anon_sym_BANG_EQ] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_LT_EQ] = ACTIONS(2746), - [anon_sym_GT] = ACTIONS(2744), - [anon_sym_GT_EQ] = ACTIONS(2746), - [anon_sym_EQ_GT] = ACTIONS(2746), - [anon_sym_QMARK_QMARK] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2746), - [anon_sym_null] = ACTIONS(2744), - [anon_sym_macro] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_extern] = ACTIONS(2744), - [anon_sym_inline] = ACTIONS(2744), - [anon_sym_overload] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_final] = ACTIONS(2744), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_typedef] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [aux_sym_integer_token1] = ACTIONS(2744), - [aux_sym_integer_token2] = ACTIONS(2746), - [aux_sym_float_token1] = ACTIONS(2744), - [aux_sym_float_token2] = ACTIONS(2746), - [anon_sym_true] = ACTIONS(2744), - [anon_sym_false] = ACTIONS(2744), - [aux_sym_string_token1] = ACTIONS(2746), - [aux_sym_string_token3] = ACTIONS(2746), + [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(2750), - [sym_identifier] = ACTIONS(2748), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_package] = ACTIONS(2748), - [anon_sym_import] = ACTIONS(2748), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2748), - [anon_sym_throw] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_switch] = ACTIONS(2748), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_cast] = ACTIONS(2748), - [anon_sym_DOLLARtype] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2748), - [anon_sym_return] = ACTIONS(2748), - [anon_sym_untyped] = ACTIONS(2748), - [anon_sym_break] = ACTIONS(2748), - [anon_sym_continue] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_this] = ACTIONS(2748), - [anon_sym_AT] = ACTIONS(2748), - [anon_sym_AT_COLON] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2748), - [anon_sym_catch] = ACTIONS(2748), - [anon_sym_else] = ACTIONS(2748), - [anon_sym_if] = ACTIONS(2748), - [anon_sym_while] = ACTIONS(2748), - [anon_sym_do] = ACTIONS(2748), - [anon_sym_new] = ACTIONS(2748), - [anon_sym_TILDE] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2748), - [anon_sym_PLUS] = ACTIONS(2748), - [anon_sym_LT_LT] = ACTIONS(2750), - [anon_sym_GT_GT] = ACTIONS(2748), - [anon_sym_GT_GT_GT] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_EQ_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2748), - [anon_sym_LT_EQ] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2748), - [anon_sym_GT_EQ] = ACTIONS(2750), - [anon_sym_EQ_GT] = ACTIONS(2750), - [anon_sym_QMARK_QMARK] = ACTIONS(2750), - [anon_sym_EQ] = ACTIONS(2748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2750), - [anon_sym_null] = ACTIONS(2748), - [anon_sym_macro] = ACTIONS(2748), - [anon_sym_abstract] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_public] = ACTIONS(2748), - [anon_sym_private] = ACTIONS(2748), - [anon_sym_extern] = ACTIONS(2748), - [anon_sym_inline] = ACTIONS(2748), - [anon_sym_overload] = ACTIONS(2748), - [anon_sym_override] = ACTIONS(2748), - [anon_sym_final] = ACTIONS(2748), - [anon_sym_class] = ACTIONS(2748), - [anon_sym_interface] = ACTIONS(2748), - [anon_sym_enum] = ACTIONS(2748), - [anon_sym_typedef] = ACTIONS(2748), - [anon_sym_function] = ACTIONS(2748), - [anon_sym_var] = ACTIONS(2748), - [aux_sym_integer_token1] = ACTIONS(2748), - [aux_sym_integer_token2] = ACTIONS(2750), - [aux_sym_float_token1] = ACTIONS(2748), - [aux_sym_float_token2] = ACTIONS(2750), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [aux_sym_string_token1] = ACTIONS(2750), - [aux_sym_string_token3] = ACTIONS(2750), + [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(2686), - [sym_identifier] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2686), - [anon_sym_package] = ACTIONS(2684), - [anon_sym_import] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2686), - [anon_sym_using] = ACTIONS(2684), - [anon_sym_throw] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_cast] = ACTIONS(2684), - [anon_sym_DOLLARtype] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_untyped] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_this] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_AT_COLON] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2684), - [anon_sym_catch] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2684), - [anon_sym_do] = ACTIONS(2684), - [anon_sym_new] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [anon_sym_PERCENT] = ACTIONS(2686), - [anon_sym_SLASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_LT_LT] = ACTIONS(2686), - [anon_sym_GT_GT] = ACTIONS(2684), - [anon_sym_GT_GT_GT] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_CARET] = ACTIONS(2686), - [anon_sym_AMP_AMP] = ACTIONS(2686), - [anon_sym_PIPE_PIPE] = ACTIONS(2686), - [anon_sym_EQ_EQ] = ACTIONS(2686), - [anon_sym_BANG_EQ] = ACTIONS(2686), - [anon_sym_LT] = ACTIONS(2684), - [anon_sym_LT_EQ] = ACTIONS(2686), - [anon_sym_GT] = ACTIONS(2684), - [anon_sym_GT_EQ] = ACTIONS(2686), - [anon_sym_EQ_GT] = ACTIONS(2686), - [anon_sym_QMARK_QMARK] = ACTIONS(2686), - [anon_sym_EQ] = ACTIONS(2684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2686), - [anon_sym_null] = ACTIONS(2684), - [anon_sym_macro] = ACTIONS(2684), - [anon_sym_abstract] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_public] = ACTIONS(2684), - [anon_sym_private] = ACTIONS(2684), - [anon_sym_extern] = ACTIONS(2684), - [anon_sym_inline] = ACTIONS(2684), - [anon_sym_overload] = ACTIONS(2684), - [anon_sym_override] = ACTIONS(2684), - [anon_sym_final] = ACTIONS(2684), - [anon_sym_class] = ACTIONS(2684), - [anon_sym_interface] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2684), - [anon_sym_function] = ACTIONS(2684), - [anon_sym_var] = ACTIONS(2684), - [aux_sym_integer_token1] = ACTIONS(2684), - [aux_sym_integer_token2] = ACTIONS(2686), - [aux_sym_float_token1] = ACTIONS(2684), - [aux_sym_float_token2] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [aux_sym_string_token1] = ACTIONS(2686), - [aux_sym_string_token3] = ACTIONS(2686), + [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(3290), - [sym_identifier] = ACTIONS(3288), - [anon_sym_POUND] = ACTIONS(3290), - [anon_sym_package] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_cast] = ACTIONS(3288), - [anon_sym_DOLLARtype] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_untyped] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_AT_COLON] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_catch] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_PERCENT] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_LT_LT] = ACTIONS(3290), - [anon_sym_GT_GT] = ACTIONS(3288), - [anon_sym_GT_GT_GT] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_PIPE] = ACTIONS(3288), - [anon_sym_CARET] = ACTIONS(3290), - [anon_sym_AMP_AMP] = ACTIONS(3290), - [anon_sym_PIPE_PIPE] = ACTIONS(3290), - [anon_sym_EQ_EQ] = ACTIONS(3290), - [anon_sym_BANG_EQ] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_LT_EQ] = ACTIONS(3290), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_GT_EQ] = ACTIONS(3290), - [anon_sym_EQ_GT] = ACTIONS(3290), - [anon_sym_QMARK_QMARK] = ACTIONS(3290), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_macro] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_overload] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [aux_sym_integer_token1] = ACTIONS(3288), - [aux_sym_integer_token2] = ACTIONS(3290), - [aux_sym_float_token1] = ACTIONS(3288), - [aux_sym_float_token2] = ACTIONS(3290), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [aux_sym_string_token1] = ACTIONS(3290), - [aux_sym_string_token3] = ACTIONS(3290), + [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(3298), - [sym_identifier] = ACTIONS(3296), - [anon_sym_POUND] = ACTIONS(3298), - [anon_sym_package] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_cast] = ACTIONS(3296), - [anon_sym_DOLLARtype] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_untyped] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_this] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_AT_COLON] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_catch] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_LT_LT] = ACTIONS(3298), - [anon_sym_GT_GT] = ACTIONS(3296), - [anon_sym_GT_GT_GT] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_PIPE] = ACTIONS(3296), - [anon_sym_CARET] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT] = ACTIONS(3296), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_EQ_GT] = ACTIONS(3298), - [anon_sym_QMARK_QMARK] = ACTIONS(3298), - [anon_sym_EQ] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), - [anon_sym_macro] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym_overload] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_final] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [aux_sym_integer_token1] = ACTIONS(3296), - [aux_sym_integer_token2] = ACTIONS(3298), - [aux_sym_float_token1] = ACTIONS(3296), - [aux_sym_float_token2] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3296), - [anon_sym_false] = ACTIONS(3296), - [aux_sym_string_token1] = ACTIONS(3298), - [aux_sym_string_token3] = ACTIONS(3298), + [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(2846), - [sym_identifier] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_package] = ACTIONS(2844), - [anon_sym_import] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_using] = ACTIONS(2844), - [anon_sym_throw] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_switch] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_cast] = ACTIONS(2844), - [anon_sym_DOLLARtype] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_untyped] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_this] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_AT_COLON] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_catch] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_do] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_EQ_GT] = ACTIONS(2846), - [anon_sym_QMARK_QMARK] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2846), - [anon_sym_null] = ACTIONS(2844), - [anon_sym_macro] = ACTIONS(2844), - [anon_sym_abstract] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_public] = ACTIONS(2844), - [anon_sym_private] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym_overload] = ACTIONS(2844), - [anon_sym_override] = ACTIONS(2844), - [anon_sym_final] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_interface] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2844), - [anon_sym_var] = ACTIONS(2844), - [aux_sym_integer_token1] = ACTIONS(2844), - [aux_sym_integer_token2] = ACTIONS(2846), - [aux_sym_float_token1] = ACTIONS(2844), - [aux_sym_float_token2] = ACTIONS(2846), - [anon_sym_true] = ACTIONS(2844), - [anon_sym_false] = ACTIONS(2844), - [aux_sym_string_token1] = ACTIONS(2846), - [aux_sym_string_token3] = ACTIONS(2846), + [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(2850), - [sym_identifier] = ACTIONS(2848), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_package] = ACTIONS(2848), - [anon_sym_import] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_using] = ACTIONS(2848), - [anon_sym_throw] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_switch] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_cast] = ACTIONS(2848), - [anon_sym_DOLLARtype] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_untyped] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_this] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_AT_COLON] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2848), - [anon_sym_catch] = ACTIONS(2848), - [anon_sym_else] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_while] = ACTIONS(2848), - [anon_sym_do] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_EQ_GT] = ACTIONS(2850), - [anon_sym_QMARK_QMARK] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2848), - [anon_sym_macro] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2848), - [anon_sym_static] = ACTIONS(2848), - [anon_sym_public] = ACTIONS(2848), - [anon_sym_private] = ACTIONS(2848), - [anon_sym_extern] = ACTIONS(2848), - [anon_sym_inline] = ACTIONS(2848), - [anon_sym_overload] = ACTIONS(2848), - [anon_sym_override] = ACTIONS(2848), - [anon_sym_final] = ACTIONS(2848), - [anon_sym_class] = ACTIONS(2848), - [anon_sym_interface] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_typedef] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2848), - [anon_sym_var] = ACTIONS(2848), - [aux_sym_integer_token1] = ACTIONS(2848), - [aux_sym_integer_token2] = ACTIONS(2850), - [aux_sym_float_token1] = ACTIONS(2848), - [aux_sym_float_token2] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2848), - [anon_sym_false] = ACTIONS(2848), - [aux_sym_string_token1] = ACTIONS(2850), - [aux_sym_string_token3] = ACTIONS(2850), + [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(2854), - [sym_identifier] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_package] = ACTIONS(2852), - [anon_sym_import] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_using] = ACTIONS(2852), - [anon_sym_throw] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_switch] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_cast] = ACTIONS(2852), - [anon_sym_DOLLARtype] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_untyped] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_this] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_AT_COLON] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2852), - [anon_sym_catch] = ACTIONS(2852), - [anon_sym_else] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_do] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_EQ_GT] = ACTIONS(2854), - [anon_sym_QMARK_QMARK] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2854), - [anon_sym_null] = ACTIONS(2852), - [anon_sym_macro] = ACTIONS(2852), - [anon_sym_abstract] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_public] = ACTIONS(2852), - [anon_sym_private] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_overload] = ACTIONS(2852), - [anon_sym_override] = ACTIONS(2852), - [anon_sym_final] = ACTIONS(2852), - [anon_sym_class] = ACTIONS(2852), - [anon_sym_interface] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2852), - [anon_sym_var] = ACTIONS(2852), - [aux_sym_integer_token1] = ACTIONS(2852), - [aux_sym_integer_token2] = ACTIONS(2854), - [aux_sym_float_token1] = ACTIONS(2852), - [aux_sym_float_token2] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2852), - [anon_sym_false] = ACTIONS(2852), - [aux_sym_string_token1] = ACTIONS(2854), - [aux_sym_string_token3] = ACTIONS(2854), + [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(2858), - [sym_identifier] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_package] = ACTIONS(2856), - [anon_sym_import] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_using] = ACTIONS(2856), - [anon_sym_throw] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_cast] = ACTIONS(2856), - [anon_sym_DOLLARtype] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_untyped] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_this] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_AT_COLON] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2856), - [anon_sym_catch] = ACTIONS(2856), - [anon_sym_else] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_do] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_EQ_GT] = ACTIONS(2858), - [anon_sym_QMARK_QMARK] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2858), - [anon_sym_null] = ACTIONS(2856), - [anon_sym_macro] = ACTIONS(2856), - [anon_sym_abstract] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_public] = ACTIONS(2856), - [anon_sym_private] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_overload] = ACTIONS(2856), - [anon_sym_override] = ACTIONS(2856), - [anon_sym_final] = ACTIONS(2856), - [anon_sym_class] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2856), - [anon_sym_var] = ACTIONS(2856), - [aux_sym_integer_token1] = ACTIONS(2856), - [aux_sym_integer_token2] = ACTIONS(2858), - [aux_sym_float_token1] = ACTIONS(2856), - [aux_sym_float_token2] = ACTIONS(2858), - [anon_sym_true] = ACTIONS(2856), - [anon_sym_false] = ACTIONS(2856), - [aux_sym_string_token1] = ACTIONS(2858), - [aux_sym_string_token3] = ACTIONS(2858), + [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(2862), - [sym_identifier] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_package] = ACTIONS(2860), - [anon_sym_import] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_cast] = ACTIONS(2860), - [anon_sym_DOLLARtype] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_untyped] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_this] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_AT_COLON] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_catch] = ACTIONS(2860), - [anon_sym_else] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_EQ_GT] = ACTIONS(2862), - [anon_sym_QMARK_QMARK] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2862), - [anon_sym_null] = ACTIONS(2860), - [anon_sym_macro] = ACTIONS(2860), - [anon_sym_abstract] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_overload] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2860), - [anon_sym_final] = ACTIONS(2860), - [anon_sym_class] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2860), - [anon_sym_var] = ACTIONS(2860), - [aux_sym_integer_token1] = ACTIONS(2860), - [aux_sym_integer_token2] = ACTIONS(2862), - [aux_sym_float_token1] = ACTIONS(2860), - [aux_sym_float_token2] = ACTIONS(2862), - [anon_sym_true] = ACTIONS(2860), - [anon_sym_false] = ACTIONS(2860), - [aux_sym_string_token1] = ACTIONS(2862), - [aux_sym_string_token3] = ACTIONS(2862), + [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(2866), - [sym_identifier] = ACTIONS(2864), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_package] = ACTIONS(2864), - [anon_sym_import] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_using] = ACTIONS(2864), - [anon_sym_throw] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_switch] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_cast] = ACTIONS(2864), - [anon_sym_DOLLARtype] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_untyped] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_this] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_AT_COLON] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2864), - [anon_sym_catch] = ACTIONS(2864), - [anon_sym_else] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_while] = ACTIONS(2864), - [anon_sym_do] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2866), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_EQ_EQ] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2866), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2866), - [anon_sym_EQ_GT] = ACTIONS(2866), - [anon_sym_QMARK_QMARK] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2866), - [anon_sym_null] = ACTIONS(2864), - [anon_sym_macro] = ACTIONS(2864), - [anon_sym_abstract] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_public] = ACTIONS(2864), - [anon_sym_private] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym_inline] = ACTIONS(2864), - [anon_sym_overload] = ACTIONS(2864), - [anon_sym_override] = ACTIONS(2864), - [anon_sym_final] = ACTIONS(2864), - [anon_sym_class] = ACTIONS(2864), - [anon_sym_interface] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_typedef] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2864), - [anon_sym_var] = ACTIONS(2864), - [aux_sym_integer_token1] = ACTIONS(2864), - [aux_sym_integer_token2] = ACTIONS(2866), - [aux_sym_float_token1] = ACTIONS(2864), - [aux_sym_float_token2] = ACTIONS(2866), - [anon_sym_true] = ACTIONS(2864), - [anon_sym_false] = ACTIONS(2864), - [aux_sym_string_token1] = ACTIONS(2866), - [aux_sym_string_token3] = ACTIONS(2866), + [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] = { - [sym_else_clause] = STATE(422), - [sym_identifier] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2652), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_cast] = ACTIONS(2650), - [anon_sym_DOLLARtype] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_untyped] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2650), - [anon_sym_AT_COLON] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_PERCENT] = ACTIONS(2652), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_LT_LT] = ACTIONS(2652), - [anon_sym_GT_GT] = ACTIONS(2650), - [anon_sym_GT_GT_GT] = ACTIONS(2652), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_CARET] = ACTIONS(2652), - [anon_sym_AMP_AMP] = ACTIONS(2652), - [anon_sym_PIPE_PIPE] = ACTIONS(2652), - [anon_sym_EQ_EQ] = ACTIONS(2652), - [anon_sym_BANG_EQ] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_LT_EQ] = ACTIONS(2652), - [anon_sym_GT] = ACTIONS(2650), - [anon_sym_GT_EQ] = ACTIONS(2652), - [anon_sym_EQ_GT] = ACTIONS(2652), - [anon_sym_QMARK_QMARK] = ACTIONS(2652), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2652), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_macro] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_extern] = ACTIONS(2650), - [anon_sym_inline] = ACTIONS(2650), - [anon_sym_overload] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [anon_sym_typedef] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [aux_sym_integer_token1] = ACTIONS(2650), - [aux_sym_integer_token2] = ACTIONS(2652), - [aux_sym_float_token1] = ACTIONS(2650), - [aux_sym_float_token2] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [aux_sym_string_token3] = ACTIONS(2652), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2652), + [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(2754), - [sym_identifier] = ACTIONS(2752), - [anon_sym_POUND] = ACTIONS(2754), - [anon_sym_package] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2752), - [anon_sym_throw] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_cast] = ACTIONS(2752), - [anon_sym_DOLLARtype] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_untyped] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_this] = ACTIONS(2752), - [anon_sym_AT] = ACTIONS(2752), - [anon_sym_AT_COLON] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2752), - [anon_sym_catch] = ACTIONS(2752), - [anon_sym_else] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_do] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2752), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_GT_GT_GT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_EQ_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_LT_EQ] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2754), - [anon_sym_EQ_GT] = ACTIONS(2754), - [anon_sym_QMARK_QMARK] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_null] = ACTIONS(2752), - [anon_sym_macro] = ACTIONS(2752), - [anon_sym_abstract] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_extern] = ACTIONS(2752), - [anon_sym_inline] = ACTIONS(2752), - [anon_sym_overload] = ACTIONS(2752), - [anon_sym_override] = ACTIONS(2752), - [anon_sym_final] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2752), - [anon_sym_interface] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), - [anon_sym_typedef] = ACTIONS(2752), - [anon_sym_function] = ACTIONS(2752), - [anon_sym_var] = ACTIONS(2752), - [aux_sym_integer_token1] = ACTIONS(2752), - [aux_sym_integer_token2] = ACTIONS(2754), - [aux_sym_float_token1] = ACTIONS(2752), - [aux_sym_float_token2] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2752), - [anon_sym_false] = ACTIONS(2752), - [aux_sym_string_token1] = ACTIONS(2754), - [aux_sym_string_token3] = ACTIONS(2754), + [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(2758), - [sym_identifier] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_package] = ACTIONS(2756), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_using] = ACTIONS(2756), - [anon_sym_throw] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_cast] = ACTIONS(2756), - [anon_sym_DOLLARtype] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_untyped] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_this] = ACTIONS(2756), - [anon_sym_AT] = ACTIONS(2756), - [anon_sym_AT_COLON] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2756), - [anon_sym_catch] = ACTIONS(2756), - [anon_sym_else] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_do] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_GT_GT_GT] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_EQ_GT] = ACTIONS(2758), - [anon_sym_QMARK_QMARK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_null] = ACTIONS(2756), - [anon_sym_macro] = ACTIONS(2756), - [anon_sym_abstract] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_public] = ACTIONS(2756), - [anon_sym_private] = ACTIONS(2756), - [anon_sym_extern] = ACTIONS(2756), - [anon_sym_inline] = ACTIONS(2756), - [anon_sym_overload] = ACTIONS(2756), - [anon_sym_override] = ACTIONS(2756), - [anon_sym_final] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(2756), - [anon_sym_interface] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_typedef] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2756), - [aux_sym_integer_token1] = ACTIONS(2756), - [aux_sym_integer_token2] = ACTIONS(2758), - [aux_sym_float_token1] = ACTIONS(2756), - [aux_sym_float_token2] = ACTIONS(2758), - [anon_sym_true] = ACTIONS(2756), - [anon_sym_false] = ACTIONS(2756), - [aux_sym_string_token1] = ACTIONS(2758), - [aux_sym_string_token3] = ACTIONS(2758), + [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(2762), - [sym_identifier] = ACTIONS(2760), - [anon_sym_POUND] = ACTIONS(2762), - [anon_sym_package] = ACTIONS(2760), - [anon_sym_import] = ACTIONS(2760), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2760), - [anon_sym_throw] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_switch] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_cast] = ACTIONS(2760), - [anon_sym_DOLLARtype] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2760), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_untyped] = ACTIONS(2760), - [anon_sym_break] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_this] = ACTIONS(2760), - [anon_sym_AT] = ACTIONS(2760), - [anon_sym_AT_COLON] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2760), - [anon_sym_catch] = ACTIONS(2760), - [anon_sym_else] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2760), - [anon_sym_while] = ACTIONS(2760), - [anon_sym_do] = ACTIONS(2760), - [anon_sym_new] = ACTIONS(2760), - [anon_sym_TILDE] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2762), - [anon_sym_PERCENT] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2760), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_LT_LT] = ACTIONS(2762), - [anon_sym_GT_GT] = ACTIONS(2760), - [anon_sym_GT_GT_GT] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_CARET] = ACTIONS(2762), - [anon_sym_AMP_AMP] = ACTIONS(2762), - [anon_sym_PIPE_PIPE] = ACTIONS(2762), - [anon_sym_EQ_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2760), - [anon_sym_LT_EQ] = ACTIONS(2762), - [anon_sym_GT] = ACTIONS(2760), - [anon_sym_GT_EQ] = ACTIONS(2762), - [anon_sym_EQ_GT] = ACTIONS(2762), - [anon_sym_QMARK_QMARK] = ACTIONS(2762), - [anon_sym_EQ] = ACTIONS(2760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2762), - [anon_sym_null] = ACTIONS(2760), - [anon_sym_macro] = ACTIONS(2760), - [anon_sym_abstract] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_public] = ACTIONS(2760), - [anon_sym_private] = ACTIONS(2760), - [anon_sym_extern] = ACTIONS(2760), - [anon_sym_inline] = ACTIONS(2760), - [anon_sym_overload] = ACTIONS(2760), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_final] = ACTIONS(2760), - [anon_sym_class] = ACTIONS(2760), - [anon_sym_interface] = ACTIONS(2760), - [anon_sym_enum] = ACTIONS(2760), - [anon_sym_typedef] = ACTIONS(2760), - [anon_sym_function] = ACTIONS(2760), - [anon_sym_var] = ACTIONS(2760), - [aux_sym_integer_token1] = ACTIONS(2760), - [aux_sym_integer_token2] = ACTIONS(2762), - [aux_sym_float_token1] = ACTIONS(2760), - [aux_sym_float_token2] = ACTIONS(2762), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(2762), - [aux_sym_string_token3] = ACTIONS(2762), + [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(2766), - [sym_identifier] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_package] = ACTIONS(2764), - [anon_sym_import] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_using] = ACTIONS(2764), - [anon_sym_throw] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_switch] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_cast] = ACTIONS(2764), - [anon_sym_DOLLARtype] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_untyped] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_this] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_AT_COLON] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2764), - [anon_sym_catch] = ACTIONS(2764), - [anon_sym_else] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_do] = ACTIONS(2764), - [anon_sym_new] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_EQ_GT] = ACTIONS(2766), - [anon_sym_QMARK_QMARK] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(2764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2766), - [anon_sym_null] = ACTIONS(2764), - [anon_sym_macro] = ACTIONS(2764), - [anon_sym_abstract] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_public] = ACTIONS(2764), - [anon_sym_private] = ACTIONS(2764), - [anon_sym_extern] = ACTIONS(2764), - [anon_sym_inline] = ACTIONS(2764), - [anon_sym_overload] = ACTIONS(2764), - [anon_sym_override] = ACTIONS(2764), - [anon_sym_final] = ACTIONS(2764), - [anon_sym_class] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_typedef] = ACTIONS(2764), - [anon_sym_function] = ACTIONS(2764), - [anon_sym_var] = ACTIONS(2764), - [aux_sym_integer_token1] = ACTIONS(2764), - [aux_sym_integer_token2] = ACTIONS(2766), - [aux_sym_float_token1] = ACTIONS(2764), - [aux_sym_float_token2] = ACTIONS(2766), - [anon_sym_true] = ACTIONS(2764), - [anon_sym_false] = ACTIONS(2764), - [aux_sym_string_token1] = ACTIONS(2766), - [aux_sym_string_token3] = ACTIONS(2766), + [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(2770), - [sym_identifier] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(2770), - [anon_sym_package] = ACTIONS(2768), - [anon_sym_import] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_using] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_cast] = ACTIONS(2768), - [anon_sym_DOLLARtype] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_untyped] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_this] = ACTIONS(2768), - [anon_sym_AT] = ACTIONS(2768), - [anon_sym_AT_COLON] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2770), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_GT_GT_GT] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2770), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2770), - [anon_sym_EQ_GT] = ACTIONS(2770), - [anon_sym_QMARK_QMARK] = ACTIONS(2770), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2770), - [anon_sym_null] = ACTIONS(2768), - [anon_sym_macro] = ACTIONS(2768), - [anon_sym_abstract] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym_overload] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_interface] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2768), - [anon_sym_function] = ACTIONS(2768), - [anon_sym_var] = ACTIONS(2768), - [aux_sym_integer_token1] = ACTIONS(2768), - [aux_sym_integer_token2] = ACTIONS(2770), - [aux_sym_float_token1] = ACTIONS(2768), - [aux_sym_float_token2] = ACTIONS(2770), - [anon_sym_true] = ACTIONS(2768), - [anon_sym_false] = ACTIONS(2768), - [aux_sym_string_token1] = ACTIONS(2770), - [aux_sym_string_token3] = ACTIONS(2770), + [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(3306), - [sym_identifier] = ACTIONS(3304), - [anon_sym_POUND] = ACTIONS(3306), - [anon_sym_package] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_cast] = ACTIONS(3304), - [anon_sym_DOLLARtype] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_untyped] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_this] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_AT_COLON] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_catch] = ACTIONS(3304), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_PERCENT] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_LT_LT] = ACTIONS(3306), - [anon_sym_GT_GT] = ACTIONS(3304), - [anon_sym_GT_GT_GT] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_PIPE] = ACTIONS(3304), - [anon_sym_CARET] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_PIPE_PIPE] = ACTIONS(3306), - [anon_sym_EQ_EQ] = ACTIONS(3306), - [anon_sym_BANG_EQ] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_LT_EQ] = ACTIONS(3306), - [anon_sym_GT] = ACTIONS(3304), - [anon_sym_GT_EQ] = ACTIONS(3306), - [anon_sym_EQ_GT] = ACTIONS(3306), - [anon_sym_QMARK_QMARK] = ACTIONS(3306), - [anon_sym_EQ] = ACTIONS(3304), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3306), - [anon_sym_null] = ACTIONS(3304), - [anon_sym_macro] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym_overload] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_final] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [aux_sym_integer_token1] = ACTIONS(3304), - [aux_sym_integer_token2] = ACTIONS(3306), - [aux_sym_float_token1] = ACTIONS(3304), - [aux_sym_float_token2] = ACTIONS(3306), - [anon_sym_true] = ACTIONS(3304), - [anon_sym_false] = ACTIONS(3304), - [aux_sym_string_token1] = ACTIONS(3306), - [aux_sym_string_token3] = ACTIONS(3306), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2774), - [sym_identifier] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2774), - [anon_sym_package] = ACTIONS(2772), - [anon_sym_import] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2772), - [anon_sym_throw] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_cast] = ACTIONS(2772), - [anon_sym_DOLLARtype] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_untyped] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_this] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_AT_COLON] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2772), - [anon_sym_catch] = ACTIONS(2772), - [anon_sym_else] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_while] = ACTIONS(2772), - [anon_sym_do] = ACTIONS(2772), - [anon_sym_new] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2774), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2774), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2774), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2774), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2774), - [anon_sym_AMP_AMP] = ACTIONS(2774), - [anon_sym_PIPE_PIPE] = ACTIONS(2774), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2774), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2774), - [anon_sym_EQ_GT] = ACTIONS(2774), - [anon_sym_QMARK_QMARK] = ACTIONS(2774), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2774), - [anon_sym_null] = ACTIONS(2772), - [anon_sym_macro] = ACTIONS(2772), - [anon_sym_abstract] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_public] = ACTIONS(2772), - [anon_sym_private] = ACTIONS(2772), - [anon_sym_extern] = ACTIONS(2772), - [anon_sym_inline] = ACTIONS(2772), - [anon_sym_overload] = ACTIONS(2772), - [anon_sym_override] = ACTIONS(2772), - [anon_sym_final] = ACTIONS(2772), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_typedef] = ACTIONS(2772), - [anon_sym_function] = ACTIONS(2772), - [anon_sym_var] = ACTIONS(2772), - [aux_sym_integer_token1] = ACTIONS(2772), - [aux_sym_integer_token2] = ACTIONS(2774), - [aux_sym_float_token1] = ACTIONS(2772), - [aux_sym_float_token2] = ACTIONS(2774), - [anon_sym_true] = ACTIONS(2772), - [anon_sym_false] = ACTIONS(2772), - [aux_sym_string_token1] = ACTIONS(2774), - [aux_sym_string_token3] = ACTIONS(2774), + [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(2778), - [sym_identifier] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_package] = ACTIONS(2776), - [anon_sym_import] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2776), - [anon_sym_throw] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_cast] = ACTIONS(2776), - [anon_sym_DOLLARtype] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_untyped] = ACTIONS(2776), - [anon_sym_break] = ACTIONS(2776), - [anon_sym_continue] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_this] = ACTIONS(2776), - [anon_sym_AT] = ACTIONS(2776), - [anon_sym_AT_COLON] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_catch] = ACTIONS(2776), - [anon_sym_else] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_LT_LT] = ACTIONS(2778), - [anon_sym_GT_GT] = ACTIONS(2776), - [anon_sym_GT_GT_GT] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_AMP_AMP] = ACTIONS(2778), - [anon_sym_PIPE_PIPE] = ACTIONS(2778), - [anon_sym_EQ_EQ] = ACTIONS(2778), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_EQ_GT] = ACTIONS(2778), - [anon_sym_QMARK_QMARK] = ACTIONS(2778), - [anon_sym_EQ] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_macro] = ACTIONS(2776), - [anon_sym_abstract] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2776), - [anon_sym_public] = ACTIONS(2776), - [anon_sym_private] = ACTIONS(2776), - [anon_sym_extern] = ACTIONS(2776), - [anon_sym_inline] = ACTIONS(2776), - [anon_sym_overload] = ACTIONS(2776), - [anon_sym_override] = ACTIONS(2776), - [anon_sym_final] = ACTIONS(2776), - [anon_sym_class] = ACTIONS(2776), - [anon_sym_interface] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2776), - [anon_sym_typedef] = ACTIONS(2776), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_var] = ACTIONS(2776), - [aux_sym_integer_token1] = ACTIONS(2776), - [aux_sym_integer_token2] = ACTIONS(2778), - [aux_sym_float_token1] = ACTIONS(2776), - [aux_sym_float_token2] = ACTIONS(2778), - [anon_sym_true] = ACTIONS(2776), - [anon_sym_false] = ACTIONS(2776), - [aux_sym_string_token1] = ACTIONS(2778), - [aux_sym_string_token3] = ACTIONS(2778), + [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(2690), - [sym_identifier] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2690), - [anon_sym_package] = ACTIONS(2688), - [anon_sym_import] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_using] = ACTIONS(2688), - [anon_sym_throw] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_switch] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_cast] = ACTIONS(2688), - [anon_sym_DOLLARtype] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_untyped] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_this] = ACTIONS(2688), - [anon_sym_AT] = ACTIONS(2688), - [anon_sym_AT_COLON] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2688), - [anon_sym_catch] = ACTIONS(2688), - [anon_sym_else] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_while] = ACTIONS(2688), - [anon_sym_do] = ACTIONS(2688), - [anon_sym_new] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2690), - [anon_sym_PERCENT] = ACTIONS(2690), - [anon_sym_SLASH] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_LT_LT] = ACTIONS(2690), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_GT_GT_GT] = ACTIONS(2690), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2690), - [anon_sym_AMP_AMP] = ACTIONS(2690), - [anon_sym_PIPE_PIPE] = ACTIONS(2690), - [anon_sym_EQ_EQ] = ACTIONS(2690), - [anon_sym_BANG_EQ] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2690), - [anon_sym_GT] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2690), - [anon_sym_EQ_GT] = ACTIONS(2690), - [anon_sym_QMARK_QMARK] = ACTIONS(2690), - [anon_sym_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2690), - [anon_sym_null] = ACTIONS(2688), - [anon_sym_macro] = ACTIONS(2688), - [anon_sym_abstract] = ACTIONS(2688), - [anon_sym_static] = ACTIONS(2688), - [anon_sym_public] = ACTIONS(2688), - [anon_sym_private] = ACTIONS(2688), - [anon_sym_extern] = ACTIONS(2688), - [anon_sym_inline] = ACTIONS(2688), - [anon_sym_overload] = ACTIONS(2688), - [anon_sym_override] = ACTIONS(2688), - [anon_sym_final] = ACTIONS(2688), - [anon_sym_class] = ACTIONS(2688), - [anon_sym_interface] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [anon_sym_typedef] = ACTIONS(2688), - [anon_sym_function] = ACTIONS(2688), - [anon_sym_var] = ACTIONS(2688), - [aux_sym_integer_token1] = ACTIONS(2688), - [aux_sym_integer_token2] = ACTIONS(2690), - [aux_sym_float_token1] = ACTIONS(2688), - [aux_sym_float_token2] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [aux_sym_string_token1] = ACTIONS(2690), - [aux_sym_string_token3] = ACTIONS(2690), + [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(2782), - [sym_identifier] = ACTIONS(2780), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_package] = ACTIONS(2780), - [anon_sym_import] = ACTIONS(2780), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2780), - [anon_sym_throw] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_cast] = ACTIONS(2780), - [anon_sym_DOLLARtype] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_untyped] = ACTIONS(2780), - [anon_sym_break] = ACTIONS(2780), - [anon_sym_continue] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_this] = ACTIONS(2780), - [anon_sym_AT] = ACTIONS(2780), - [anon_sym_AT_COLON] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_catch] = ACTIONS(2780), - [anon_sym_else] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_PERCENT] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_LT_LT] = ACTIONS(2782), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_GT_GT_GT] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_EQ_EQ] = ACTIONS(2782), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2780), - [anon_sym_LT_EQ] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2780), - [anon_sym_GT_EQ] = ACTIONS(2782), - [anon_sym_EQ_GT] = ACTIONS(2782), - [anon_sym_QMARK_QMARK] = ACTIONS(2782), - [anon_sym_EQ] = ACTIONS(2780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_macro] = ACTIONS(2780), - [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2780), - [anon_sym_public] = ACTIONS(2780), - [anon_sym_private] = ACTIONS(2780), - [anon_sym_extern] = ACTIONS(2780), - [anon_sym_inline] = ACTIONS(2780), - [anon_sym_overload] = ACTIONS(2780), - [anon_sym_override] = ACTIONS(2780), - [anon_sym_final] = ACTIONS(2780), - [anon_sym_class] = ACTIONS(2780), - [anon_sym_interface] = ACTIONS(2780), - [anon_sym_enum] = ACTIONS(2780), - [anon_sym_typedef] = ACTIONS(2780), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_var] = ACTIONS(2780), - [aux_sym_integer_token1] = ACTIONS(2780), - [aux_sym_integer_token2] = ACTIONS(2782), - [aux_sym_float_token1] = ACTIONS(2780), - [aux_sym_float_token2] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2780), - [anon_sym_false] = ACTIONS(2780), - [aux_sym_string_token1] = ACTIONS(2782), - [aux_sym_string_token3] = ACTIONS(2782), + [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(2786), - [sym_identifier] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_package] = ACTIONS(2784), - [anon_sym_import] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2784), - [anon_sym_throw] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_cast] = ACTIONS(2784), - [anon_sym_DOLLARtype] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_untyped] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_this] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_AT_COLON] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_catch] = ACTIONS(2784), - [anon_sym_else] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_EQ_GT] = ACTIONS(2786), - [anon_sym_QMARK_QMARK] = ACTIONS(2786), - [anon_sym_EQ] = ACTIONS(2784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_macro] = ACTIONS(2784), - [anon_sym_abstract] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_public] = ACTIONS(2784), - [anon_sym_private] = ACTIONS(2784), - [anon_sym_extern] = ACTIONS(2784), - [anon_sym_inline] = ACTIONS(2784), - [anon_sym_overload] = ACTIONS(2784), - [anon_sym_override] = ACTIONS(2784), - [anon_sym_final] = ACTIONS(2784), - [anon_sym_class] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_typedef] = ACTIONS(2784), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_var] = ACTIONS(2784), - [aux_sym_integer_token1] = ACTIONS(2784), - [aux_sym_integer_token2] = ACTIONS(2786), - [aux_sym_float_token1] = ACTIONS(2784), - [aux_sym_float_token2] = ACTIONS(2786), - [anon_sym_true] = ACTIONS(2784), - [anon_sym_false] = ACTIONS(2784), - [aux_sym_string_token1] = ACTIONS(2786), - [aux_sym_string_token3] = ACTIONS(2786), + [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] = { - [sym_else_clause] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_package] = ACTIONS(2640), - [anon_sym_import] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2640), - [anon_sym_throw] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_cast] = ACTIONS(2640), - [anon_sym_DOLLARtype] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_untyped] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_AT_COLON] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(3418), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_do] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_PERCENT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2640), - [anon_sym_PLUS] = ACTIONS(2640), - [anon_sym_LT_LT] = ACTIONS(2642), - [anon_sym_GT_GT] = ACTIONS(2640), - [anon_sym_GT_GT_GT] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_CARET] = ACTIONS(2642), - [anon_sym_AMP_AMP] = ACTIONS(2642), - [anon_sym_PIPE_PIPE] = ACTIONS(2642), - [anon_sym_EQ_EQ] = ACTIONS(2642), - [anon_sym_BANG_EQ] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_LT_EQ] = ACTIONS(2642), - [anon_sym_GT] = ACTIONS(2640), - [anon_sym_GT_EQ] = ACTIONS(2642), - [anon_sym_EQ_GT] = ACTIONS(2642), - [anon_sym_QMARK_QMARK] = ACTIONS(2642), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - [anon_sym_null] = ACTIONS(2640), - [anon_sym_macro] = ACTIONS(2640), - [anon_sym_abstract] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_inline] = ACTIONS(2640), - [anon_sym_overload] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_final] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2640), - [anon_sym_interface] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2640), - [anon_sym_function] = ACTIONS(2640), - [anon_sym_var] = ACTIONS(2640), - [aux_sym_integer_token1] = ACTIONS(2640), - [aux_sym_integer_token2] = ACTIONS(2642), - [aux_sym_float_token1] = ACTIONS(2640), - [aux_sym_float_token2] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [aux_sym_string_token1] = ACTIONS(2642), - [aux_sym_string_token3] = ACTIONS(2642), + [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(2790), - [sym_identifier] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_package] = ACTIONS(2788), - [anon_sym_import] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2788), - [anon_sym_throw] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_cast] = ACTIONS(2788), - [anon_sym_DOLLARtype] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_untyped] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_this] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_AT_COLON] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2788), - [anon_sym_catch] = ACTIONS(2788), - [anon_sym_else] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_while] = ACTIONS(2788), - [anon_sym_do] = ACTIONS(2788), - [anon_sym_new] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_EQ_GT] = ACTIONS(2790), - [anon_sym_QMARK_QMARK] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2790), - [anon_sym_null] = ACTIONS(2788), - [anon_sym_macro] = ACTIONS(2788), - [anon_sym_abstract] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2788), - [anon_sym_public] = ACTIONS(2788), - [anon_sym_private] = ACTIONS(2788), - [anon_sym_extern] = ACTIONS(2788), - [anon_sym_inline] = ACTIONS(2788), - [anon_sym_overload] = ACTIONS(2788), - [anon_sym_override] = ACTIONS(2788), - [anon_sym_final] = ACTIONS(2788), - [anon_sym_class] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_typedef] = ACTIONS(2788), - [anon_sym_function] = ACTIONS(2788), - [anon_sym_var] = ACTIONS(2788), - [aux_sym_integer_token1] = ACTIONS(2788), - [aux_sym_integer_token2] = ACTIONS(2790), - [aux_sym_float_token1] = ACTIONS(2788), - [aux_sym_float_token2] = ACTIONS(2790), - [anon_sym_true] = ACTIONS(2788), - [anon_sym_false] = ACTIONS(2788), - [aux_sym_string_token1] = ACTIONS(2790), - [aux_sym_string_token3] = ACTIONS(2790), + [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(2794), - [sym_identifier] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_package] = ACTIONS(2792), - [anon_sym_import] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_using] = ACTIONS(2792), - [anon_sym_throw] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_switch] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_cast] = ACTIONS(2792), - [anon_sym_DOLLARtype] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_untyped] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_this] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_AT_COLON] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2792), - [anon_sym_catch] = ACTIONS(2792), - [anon_sym_else] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_while] = ACTIONS(2792), - [anon_sym_do] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_EQ_GT] = ACTIONS(2794), - [anon_sym_QMARK_QMARK] = ACTIONS(2794), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2794), - [anon_sym_null] = ACTIONS(2792), - [anon_sym_macro] = ACTIONS(2792), - [anon_sym_abstract] = ACTIONS(2792), - [anon_sym_static] = ACTIONS(2792), - [anon_sym_public] = ACTIONS(2792), - [anon_sym_private] = ACTIONS(2792), - [anon_sym_extern] = ACTIONS(2792), - [anon_sym_inline] = ACTIONS(2792), - [anon_sym_overload] = ACTIONS(2792), - [anon_sym_override] = ACTIONS(2792), - [anon_sym_final] = ACTIONS(2792), - [anon_sym_class] = ACTIONS(2792), - [anon_sym_interface] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_typedef] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2792), - [anon_sym_var] = ACTIONS(2792), - [aux_sym_integer_token1] = ACTIONS(2792), - [aux_sym_integer_token2] = ACTIONS(2794), - [aux_sym_float_token1] = ACTIONS(2792), - [aux_sym_float_token2] = ACTIONS(2794), - [anon_sym_true] = ACTIONS(2792), - [anon_sym_false] = ACTIONS(2792), - [aux_sym_string_token1] = ACTIONS(2794), - [aux_sym_string_token3] = ACTIONS(2794), + [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(2870), - [sym_identifier] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_package] = ACTIONS(2868), - [anon_sym_import] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2868), - [anon_sym_throw] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_switch] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_cast] = ACTIONS(2868), - [anon_sym_DOLLARtype] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_untyped] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_this] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_AT_COLON] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2868), - [anon_sym_catch] = ACTIONS(2868), - [anon_sym_else] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [anon_sym_do] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_EQ_GT] = ACTIONS(2870), - [anon_sym_QMARK_QMARK] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2870), - [anon_sym_null] = ACTIONS(2868), - [anon_sym_macro] = ACTIONS(2868), - [anon_sym_abstract] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_public] = ACTIONS(2868), - [anon_sym_private] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_overload] = ACTIONS(2868), - [anon_sym_override] = ACTIONS(2868), - [anon_sym_final] = ACTIONS(2868), - [anon_sym_class] = ACTIONS(2868), - [anon_sym_interface] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2868), - [anon_sym_var] = ACTIONS(2868), - [aux_sym_integer_token1] = ACTIONS(2868), - [aux_sym_integer_token2] = ACTIONS(2870), - [aux_sym_float_token1] = ACTIONS(2868), - [aux_sym_float_token2] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [aux_sym_string_token1] = ACTIONS(2870), - [aux_sym_string_token3] = ACTIONS(2870), + [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(2730), - [sym_identifier] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_package] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_using] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_cast] = ACTIONS(2728), - [anon_sym_DOLLARtype] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_untyped] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_this] = ACTIONS(2728), - [anon_sym_AT] = ACTIONS(2728), - [anon_sym_AT_COLON] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_catch] = ACTIONS(2728), - [anon_sym_else] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_EQ_GT] = ACTIONS(2730), - [anon_sym_QMARK_QMARK] = ACTIONS(2730), - [anon_sym_EQ] = ACTIONS(2728), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2730), - [anon_sym_null] = ACTIONS(2728), - [anon_sym_macro] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_extern] = ACTIONS(2728), - [anon_sym_inline] = ACTIONS(2728), - [anon_sym_overload] = ACTIONS(2728), - [anon_sym_override] = ACTIONS(2728), - [anon_sym_final] = ACTIONS(2728), - [anon_sym_class] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [anon_sym_typedef] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [aux_sym_integer_token1] = ACTIONS(2728), - [aux_sym_integer_token2] = ACTIONS(2730), - [aux_sym_float_token1] = ACTIONS(2728), - [aux_sym_float_token2] = ACTIONS(2730), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [aux_sym_string_token1] = ACTIONS(2730), - [aux_sym_string_token3] = ACTIONS(2730), + [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(2646), - [sym_identifier] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2646), - [anon_sym_package] = ACTIONS(2644), - [anon_sym_import] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2644), - [anon_sym_throw] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_switch] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_cast] = ACTIONS(2644), - [anon_sym_DOLLARtype] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_untyped] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_this] = ACTIONS(2644), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_AT_COLON] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_catch] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), - [anon_sym_SLASH] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_LT_LT] = ACTIONS(2646), - [anon_sym_GT_GT] = ACTIONS(2644), - [anon_sym_GT_GT_GT] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP_AMP] = ACTIONS(2646), - [anon_sym_PIPE_PIPE] = ACTIONS(2646), - [anon_sym_EQ_EQ] = ACTIONS(2646), - [anon_sym_BANG_EQ] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2644), - [anon_sym_LT_EQ] = ACTIONS(2646), - [anon_sym_GT] = ACTIONS(2644), - [anon_sym_GT_EQ] = ACTIONS(2646), - [anon_sym_EQ_GT] = ACTIONS(2646), - [anon_sym_QMARK_QMARK] = ACTIONS(2646), - [anon_sym_EQ] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2646), - [anon_sym_null] = ACTIONS(2644), - [anon_sym_macro] = ACTIONS(2644), - [anon_sym_abstract] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_public] = ACTIONS(2644), - [anon_sym_private] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_inline] = ACTIONS(2644), - [anon_sym_overload] = ACTIONS(2644), - [anon_sym_override] = ACTIONS(2644), - [anon_sym_final] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2644), - [anon_sym_interface] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(2644), - [anon_sym_var] = ACTIONS(2644), - [aux_sym_integer_token1] = ACTIONS(2644), - [aux_sym_integer_token2] = ACTIONS(2646), - [aux_sym_float_token1] = ACTIONS(2644), - [aux_sym_float_token2] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [aux_sym_string_token1] = ACTIONS(2646), - [aux_sym_string_token3] = ACTIONS(2646), + [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(2874), - [sym_identifier] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_package] = ACTIONS(2872), - [anon_sym_import] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(2872), - [anon_sym_throw] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_switch] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_cast] = ACTIONS(2872), - [anon_sym_DOLLARtype] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_untyped] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_this] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_AT_COLON] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2872), - [anon_sym_catch] = ACTIONS(2872), - [anon_sym_else] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [anon_sym_do] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_EQ_GT] = ACTIONS(2874), - [anon_sym_QMARK_QMARK] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2872), - [anon_sym_macro] = ACTIONS(2872), - [anon_sym_abstract] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_private] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_overload] = ACTIONS(2872), - [anon_sym_override] = ACTIONS(2872), - [anon_sym_final] = ACTIONS(2872), - [anon_sym_class] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2872), - [anon_sym_var] = ACTIONS(2872), - [aux_sym_integer_token1] = ACTIONS(2872), - [aux_sym_integer_token2] = ACTIONS(2874), - [aux_sym_float_token1] = ACTIONS(2872), - [aux_sym_float_token2] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [aux_sym_string_token1] = ACTIONS(2874), - [aux_sym_string_token3] = ACTIONS(2874), + [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(3192), - [sym_identifier] = ACTIONS(3190), - [anon_sym_POUND] = ACTIONS(3192), - [anon_sym_package] = ACTIONS(3190), - [anon_sym_import] = ACTIONS(3190), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_cast] = ACTIONS(3190), - [anon_sym_DOLLARtype] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_untyped] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_this] = ACTIONS(3190), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_AT_COLON] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_catch] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PERCENT] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_LT_LT] = ACTIONS(3192), - [anon_sym_GT_GT] = ACTIONS(3190), - [anon_sym_GT_GT_GT] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_PIPE] = ACTIONS(3190), - [anon_sym_CARET] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_PIPE_PIPE] = ACTIONS(3192), - [anon_sym_EQ_EQ] = ACTIONS(3192), - [anon_sym_BANG_EQ] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_LT_EQ] = ACTIONS(3192), - [anon_sym_GT] = ACTIONS(3190), - [anon_sym_GT_EQ] = ACTIONS(3192), - [anon_sym_EQ_GT] = ACTIONS(3192), - [anon_sym_QMARK_QMARK] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3192), - [anon_sym_null] = ACTIONS(3190), - [anon_sym_macro] = ACTIONS(3190), - [anon_sym_abstract] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_public] = ACTIONS(3190), - [anon_sym_private] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym_overload] = ACTIONS(3190), - [anon_sym_override] = ACTIONS(3190), - [anon_sym_final] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_interface] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3190), - [anon_sym_var] = ACTIONS(3190), - [aux_sym_integer_token1] = ACTIONS(3190), - [aux_sym_integer_token2] = ACTIONS(3192), - [aux_sym_float_token1] = ACTIONS(3190), - [aux_sym_float_token2] = ACTIONS(3192), - [anon_sym_true] = ACTIONS(3190), - [anon_sym_false] = ACTIONS(3190), - [aux_sym_string_token1] = ACTIONS(3192), - [aux_sym_string_token3] = ACTIONS(3192), + [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] = { - [sym_identifier] = ACTIONS(3436), - [anon_sym_POUND] = ACTIONS(3438), - [anon_sym_package] = ACTIONS(3436), - [anon_sym_import] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_cast] = ACTIONS(3436), - [anon_sym_DOLLARtype] = ACTIONS(3438), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_untyped] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3436), - [anon_sym_AT_COLON] = ACTIONS(3438), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_LT_LT] = ACTIONS(3438), - [anon_sym_GT_GT] = ACTIONS(3436), - [anon_sym_GT_GT_GT] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_PIPE] = ACTIONS(3436), - [anon_sym_CARET] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_EQ_GT] = ACTIONS(3438), - [anon_sym_QMARK_QMARK] = ACTIONS(3438), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_macro] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym_overload] = ACTIONS(3436), - [anon_sym_override] = ACTIONS(3436), - [anon_sym_final] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_function] = ACTIONS(3436), - [anon_sym_var] = ACTIONS(3436), - [aux_sym_integer_token1] = ACTIONS(3436), - [aux_sym_integer_token2] = ACTIONS(3438), - [aux_sym_float_token1] = ACTIONS(3436), - [aux_sym_float_token2] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [aux_sym_string_token1] = ACTIONS(3438), - [aux_sym_string_token3] = ACTIONS(3438), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(3440), - [sym__closing_brace_marker] = ACTIONS(3438), + [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(3438), - [sym_identifier] = ACTIONS(3436), - [anon_sym_POUND] = ACTIONS(3438), - [anon_sym_package] = ACTIONS(3436), - [anon_sym_import] = ACTIONS(3436), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_using] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_cast] = ACTIONS(3436), - [anon_sym_DOLLARtype] = ACTIONS(3438), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_untyped] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_this] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3436), - [anon_sym_AT_COLON] = ACTIONS(3438), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_PERCENT] = ACTIONS(3438), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_LT_LT] = ACTIONS(3438), - [anon_sym_GT_GT] = ACTIONS(3436), - [anon_sym_GT_GT_GT] = ACTIONS(3438), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_PIPE] = ACTIONS(3436), - [anon_sym_CARET] = ACTIONS(3438), - [anon_sym_AMP_AMP] = ACTIONS(3438), - [anon_sym_PIPE_PIPE] = ACTIONS(3438), - [anon_sym_EQ_EQ] = ACTIONS(3438), - [anon_sym_BANG_EQ] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3436), - [anon_sym_LT_EQ] = ACTIONS(3438), - [anon_sym_GT] = ACTIONS(3436), - [anon_sym_GT_EQ] = ACTIONS(3438), - [anon_sym_EQ_GT] = ACTIONS(3438), - [anon_sym_QMARK_QMARK] = ACTIONS(3438), - [anon_sym_EQ] = ACTIONS(3436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3438), - [anon_sym_null] = ACTIONS(3436), - [anon_sym_macro] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_extern] = ACTIONS(3436), - [anon_sym_inline] = ACTIONS(3436), - [anon_sym_overload] = ACTIONS(3436), - [anon_sym_override] = ACTIONS(3436), - [anon_sym_final] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), - [anon_sym_typedef] = ACTIONS(3436), - [anon_sym_function] = ACTIONS(3436), - [anon_sym_var] = ACTIONS(3436), - [aux_sym_integer_token1] = ACTIONS(3436), - [aux_sym_integer_token2] = ACTIONS(3438), - [aux_sym_float_token1] = ACTIONS(3436), - [aux_sym_float_token2] = ACTIONS(3438), - [anon_sym_true] = ACTIONS(3436), - [anon_sym_false] = ACTIONS(3436), - [aux_sym_string_token1] = ACTIONS(3438), - [aux_sym_string_token3] = ACTIONS(3438), + [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__lookback_semicolon] = ACTIONS(3442), [sym__closing_brace_unmarker] = ACTIONS(3), }, [837] = { - [sym_identifier] = ACTIONS(3444), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_package] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_cast] = ACTIONS(3444), - [anon_sym_DOLLARtype] = ACTIONS(685), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_untyped] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_this] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3444), - [anon_sym_AT_COLON] = ACTIONS(685), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(685), - [anon_sym_PERCENT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_LT_LT] = ACTIONS(685), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_GT_GT_GT] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_QMARK] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_null] = ACTIONS(3444), - [anon_sym_macro] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym_overload] = ACTIONS(3444), - [anon_sym_override] = ACTIONS(3444), - [anon_sym_final] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [aux_sym_integer_token1] = ACTIONS(3444), - [aux_sym_integer_token2] = ACTIONS(685), - [aux_sym_float_token1] = ACTIONS(3444), - [aux_sym_float_token2] = ACTIONS(685), - [anon_sym_true] = ACTIONS(3444), - [anon_sym_false] = ACTIONS(3444), - [aux_sym_string_token1] = ACTIONS(685), - [aux_sym_string_token3] = ACTIONS(685), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(685), + [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(685), - [sym_identifier] = ACTIONS(3444), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_package] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_cast] = ACTIONS(3444), - [anon_sym_DOLLARtype] = ACTIONS(685), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_untyped] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_this] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3444), - [anon_sym_AT_COLON] = ACTIONS(685), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(685), - [anon_sym_PERCENT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_LT_LT] = ACTIONS(685), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_GT_GT_GT] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_QMARK_QMARK] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_null] = ACTIONS(3444), - [anon_sym_macro] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_extern] = ACTIONS(3444), - [anon_sym_inline] = ACTIONS(3444), - [anon_sym_overload] = ACTIONS(3444), - [anon_sym_override] = ACTIONS(3444), - [anon_sym_final] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_typedef] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [aux_sym_integer_token1] = ACTIONS(3444), - [aux_sym_integer_token2] = ACTIONS(685), - [aux_sym_float_token1] = ACTIONS(3444), - [aux_sym_float_token2] = ACTIONS(685), - [anon_sym_true] = ACTIONS(3444), - [anon_sym_false] = ACTIONS(3444), - [aux_sym_string_token1] = ACTIONS(685), - [aux_sym_string_token3] = ACTIONS(685), - [sym_comment] = ACTIONS(3), + [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(3446), - [anon_sym_POUND] = ACTIONS(3448), - [anon_sym_package] = ACTIONS(3446), - [anon_sym_import] = ACTIONS(3446), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_throw] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym_switch] = ACTIONS(3446), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_cast] = ACTIONS(3446), - [anon_sym_DOLLARtype] = ACTIONS(3448), - [anon_sym_for] = ACTIONS(3446), - [anon_sym_return] = ACTIONS(3446), - [anon_sym_untyped] = ACTIONS(3446), - [anon_sym_break] = ACTIONS(3446), - [anon_sym_continue] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_this] = ACTIONS(3446), - [anon_sym_AT] = ACTIONS(3446), - [anon_sym_AT_COLON] = ACTIONS(3448), - [anon_sym_try] = ACTIONS(3446), - [anon_sym_if] = ACTIONS(3446), - [anon_sym_while] = ACTIONS(3446), - [anon_sym_do] = ACTIONS(3446), - [anon_sym_new] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3448), - [anon_sym_DASH_DASH] = ACTIONS(3448), - [anon_sym_PERCENT] = ACTIONS(3448), - [anon_sym_SLASH] = ACTIONS(3446), - [anon_sym_PLUS] = ACTIONS(3446), - [anon_sym_LT_LT] = ACTIONS(3448), - [anon_sym_GT_GT] = ACTIONS(3446), - [anon_sym_GT_GT_GT] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3446), - [anon_sym_PIPE] = ACTIONS(3446), - [anon_sym_CARET] = ACTIONS(3448), - [anon_sym_AMP_AMP] = ACTIONS(3448), - [anon_sym_PIPE_PIPE] = ACTIONS(3448), - [anon_sym_EQ_EQ] = ACTIONS(3448), - [anon_sym_BANG_EQ] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3446), - [anon_sym_LT_EQ] = ACTIONS(3448), - [anon_sym_GT] = ACTIONS(3446), - [anon_sym_GT_EQ] = ACTIONS(3448), - [anon_sym_EQ_GT] = ACTIONS(3448), - [anon_sym_QMARK_QMARK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(3446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3448), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_macro] = ACTIONS(3446), - [anon_sym_abstract] = ACTIONS(3446), - [anon_sym_static] = ACTIONS(3446), - [anon_sym_public] = ACTIONS(3446), - [anon_sym_private] = ACTIONS(3446), - [anon_sym_extern] = ACTIONS(3446), - [anon_sym_inline] = ACTIONS(3446), - [anon_sym_overload] = ACTIONS(3446), - [anon_sym_override] = ACTIONS(3446), - [anon_sym_final] = ACTIONS(3446), - [anon_sym_class] = ACTIONS(3446), - [anon_sym_interface] = ACTIONS(3446), - [anon_sym_enum] = ACTIONS(3446), - [anon_sym_typedef] = ACTIONS(3446), - [anon_sym_function] = ACTIONS(3446), - [anon_sym_var] = ACTIONS(3446), - [aux_sym_integer_token1] = ACTIONS(3446), - [aux_sym_integer_token2] = ACTIONS(3448), - [aux_sym_float_token1] = ACTIONS(3446), - [aux_sym_float_token2] = ACTIONS(3448), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [aux_sym_string_token1] = ACTIONS(3448), - [aux_sym_string_token3] = ACTIONS(3448), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(3448), + [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(3448), - [sym_identifier] = ACTIONS(3446), - [anon_sym_POUND] = ACTIONS(3448), - [anon_sym_package] = ACTIONS(3446), - [anon_sym_import] = ACTIONS(3446), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_throw] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym_switch] = ACTIONS(3446), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_cast] = ACTIONS(3446), - [anon_sym_DOLLARtype] = ACTIONS(3448), - [anon_sym_for] = ACTIONS(3446), - [anon_sym_return] = ACTIONS(3446), - [anon_sym_untyped] = ACTIONS(3446), - [anon_sym_break] = ACTIONS(3446), - [anon_sym_continue] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_this] = ACTIONS(3446), - [anon_sym_AT] = ACTIONS(3446), - [anon_sym_AT_COLON] = ACTIONS(3448), - [anon_sym_try] = ACTIONS(3446), - [anon_sym_if] = ACTIONS(3446), - [anon_sym_while] = ACTIONS(3446), - [anon_sym_do] = ACTIONS(3446), - [anon_sym_new] = ACTIONS(3446), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3446), - [anon_sym_PLUS_PLUS] = ACTIONS(3448), - [anon_sym_DASH_DASH] = ACTIONS(3448), - [anon_sym_PERCENT] = ACTIONS(3448), - [anon_sym_SLASH] = ACTIONS(3446), - [anon_sym_PLUS] = ACTIONS(3446), - [anon_sym_LT_LT] = ACTIONS(3448), - [anon_sym_GT_GT] = ACTIONS(3446), - [anon_sym_GT_GT_GT] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3446), - [anon_sym_PIPE] = ACTIONS(3446), - [anon_sym_CARET] = ACTIONS(3448), - [anon_sym_AMP_AMP] = ACTIONS(3448), - [anon_sym_PIPE_PIPE] = ACTIONS(3448), - [anon_sym_EQ_EQ] = ACTIONS(3448), - [anon_sym_BANG_EQ] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3446), - [anon_sym_LT_EQ] = ACTIONS(3448), - [anon_sym_GT] = ACTIONS(3446), - [anon_sym_GT_EQ] = ACTIONS(3448), - [anon_sym_EQ_GT] = ACTIONS(3448), - [anon_sym_QMARK_QMARK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(3446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3448), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_macro] = ACTIONS(3446), - [anon_sym_abstract] = ACTIONS(3446), - [anon_sym_static] = ACTIONS(3446), - [anon_sym_public] = ACTIONS(3446), - [anon_sym_private] = ACTIONS(3446), - [anon_sym_extern] = ACTIONS(3446), - [anon_sym_inline] = ACTIONS(3446), - [anon_sym_overload] = ACTIONS(3446), - [anon_sym_override] = ACTIONS(3446), - [anon_sym_final] = ACTIONS(3446), - [anon_sym_class] = ACTIONS(3446), - [anon_sym_interface] = ACTIONS(3446), - [anon_sym_enum] = ACTIONS(3446), - [anon_sym_typedef] = ACTIONS(3446), - [anon_sym_function] = ACTIONS(3446), - [anon_sym_var] = ACTIONS(3446), - [aux_sym_integer_token1] = ACTIONS(3446), - [aux_sym_integer_token2] = ACTIONS(3448), - [aux_sym_float_token1] = ACTIONS(3446), - [aux_sym_float_token2] = ACTIONS(3448), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [aux_sym_string_token1] = ACTIONS(3448), - [aux_sym_string_token3] = ACTIONS(3448), + [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_member_expression] = STATE(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3102), - [sym_integer] = STATE(3102), - [sym_float] = STATE(3102), - [sym_bool] = STATE(3102), - [sym_string] = STATE(2291), - [sym_null] = STATE(3102), - [sym_array] = STATE(3102), - [sym_map] = STATE(3102), - [sym_object] = STATE(3102), - [sym_pair] = STATE(3102), - [aux_sym_member_expression_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(1500), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1312), - [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(1324), - [anon_sym_RBRACK] = ACTIONS(1436), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_while] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_member_expression] = STATE(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3102), - [sym_integer] = STATE(3102), - [sym_float] = STATE(3102), - [sym_bool] = STATE(3102), - [sym_string] = STATE(2291), - [sym_null] = STATE(3102), - [sym_array] = STATE(3102), - [sym_map] = STATE(3102), - [sym_object] = STATE(3102), - [sym_pair] = STATE(3102), - [aux_sym_member_expression_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(1500), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_DOLLARtype] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1384), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_catch] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_EQ_GT] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3102), - [sym_integer] = STATE(3102), - [sym_float] = STATE(3102), - [sym_bool] = STATE(3102), - [sym_string] = STATE(2291), - [sym_null] = STATE(3102), - [sym_array] = STATE(3102), - [sym_map] = STATE(3102), - [sym_object] = STATE(3102), - [sym_pair] = STATE(3102), + [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(1500), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1312), - [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(1324), - [anon_sym_RBRACK] = ACTIONS(1440), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1442), - [anon_sym_else] = ACTIONS(1442), - [anon_sym_while] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3102), - [sym_integer] = STATE(3102), - [sym_float] = STATE(3102), - [sym_bool] = STATE(3102), - [sym_string] = STATE(2291), - [sym_null] = STATE(3102), - [sym_array] = STATE(3102), - [sym_map] = STATE(3102), - [sym_object] = STATE(3102), - [sym_pair] = STATE(3102), + [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(1500), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLARtype] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_catch] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_EQ_GT] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3102), - [sym_integer] = STATE(3102), - [sym_float] = STATE(3102), - [sym_bool] = STATE(3102), - [sym_string] = STATE(2291), - [sym_null] = STATE(3102), - [sym_array] = STATE(3102), - [sym_map] = STATE(3102), - [sym_object] = STATE(3102), - [sym_pair] = STATE(3102), + [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(1502), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_cast] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_DOLLARtype] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_untyped] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_RBRACK] = ACTIONS(1395), - [anon_sym_this] = ACTIONS(3450), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1408), - [aux_sym_integer_token1] = ACTIONS(1411), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1417), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1429), + [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__rhs_expression] = STATE(220), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(220), - [sym__literal] = STATE(945), - [sym_integer] = STATE(945), - [sym_float] = STATE(945), - [sym_bool] = STATE(945), - [sym_string] = STATE(928), - [sym_null] = STATE(945), - [sym_array] = STATE(945), - [sym_map] = STATE(945), - [sym_object] = STATE(945), - [sym_pair] = STATE(945), - [sym_identifier] = ACTIONS(1300), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1300), - [aux_sym_integer_token1] = ACTIONS(1300), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), + [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__rhs_expression] = STATE(235), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(235), - [sym__literal] = STATE(945), - [sym_integer] = STATE(945), - [sym_float] = STATE(945), - [sym_bool] = STATE(945), - [sym_string] = STATE(928), - [sym_null] = STATE(945), - [sym_array] = STATE(945), - [sym_map] = STATE(945), - [sym_object] = STATE(945), - [sym_pair] = STATE(945), - [sym_identifier] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3018), - [sym_integer] = STATE(3018), - [sym_float] = STATE(3018), - [sym_bool] = STATE(3018), - [sym_string] = STATE(2291), - [sym_null] = STATE(3018), - [sym_array] = STATE(3018), - [sym_map] = STATE(3018), - [sym_object] = STATE(3018), - [sym_pair] = STATE(3018), - [aux_sym_member_expression_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1312), - [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(1324), - [anon_sym_RBRACK] = ACTIONS(1440), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_catch] = ACTIONS(1442), - [anon_sym_else] = ACTIONS(1442), - [anon_sym_while] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3018), - [sym_integer] = STATE(3018), - [sym_float] = STATE(3018), - [sym_bool] = STATE(3018), - [sym_string] = STATE(2291), - [sym_null] = STATE(3018), - [sym_array] = STATE(3018), - [sym_map] = STATE(3018), - [sym_object] = STATE(3018), - [sym_pair] = STATE(3018), - [aux_sym_member_expression_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_DOLLARtype] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1384), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_catch] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_EQ_GT] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3018), - [sym_integer] = STATE(3018), - [sym_float] = STATE(3018), - [sym_bool] = STATE(3018), - [sym_string] = STATE(2291), - [sym_null] = STATE(3018), - [sym_array] = STATE(3018), - [sym_map] = STATE(3018), - [sym_object] = STATE(3018), - [sym_pair] = STATE(3018), - [aux_sym_member_expression_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_cast] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_DOLLARtype] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_untyped] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_RBRACK] = ACTIONS(1395), - [anon_sym_this] = ACTIONS(3460), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1408), - [aux_sym_integer_token1] = ACTIONS(1411), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1417), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1429), + [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(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3018), - [sym_integer] = STATE(3018), - [sym_float] = STATE(3018), - [sym_bool] = STATE(3018), - [sym_string] = STATE(2291), - [sym_null] = STATE(3018), - [sym_array] = STATE(3018), - [sym_map] = STATE(3018), - [sym_object] = STATE(3018), - [sym_pair] = STATE(3018), - [aux_sym_member_expression_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1312), - [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(1324), - [anon_sym_RBRACK] = ACTIONS(1436), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_catch] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_while] = 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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(884), - [sym__lhs_expression] = STATE(215), - [sym__literal] = STATE(3018), - [sym_integer] = STATE(3018), - [sym_float] = STATE(3018), - [sym_bool] = STATE(3018), - [sym_string] = STATE(2291), - [sym_null] = STATE(3018), - [sym_array] = STATE(3018), - [sym_map] = STATE(3018), - [sym_object] = STATE(3018), - [sym_pair] = STATE(3018), - [aux_sym_member_expression_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLARtype] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_catch] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_EQ_GT] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(220), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(220), - [sym__literal] = STATE(944), - [sym_integer] = STATE(944), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [sym_identifier] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1300), - [aux_sym_integer_token1] = ACTIONS(1300), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), + [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_operator] = STATE(1773), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(855), - [sym_identifier] = ACTIONS(1444), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_cast] = ACTIONS(1444), - [anon_sym_DOLLARtype] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_untyped] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_this] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1444), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_else] = ACTIONS(1444), - [anon_sym_new] = ACTIONS(1444), + [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(61), + [anon_sym_DASH] = ACTIONS(1504), [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_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), @@ -91926,139 +92052,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1444), - [aux_sym_integer_token1] = ACTIONS(1444), - [aux_sym_integer_token2] = ACTIONS(1446), - [aux_sym_float_token1] = ACTIONS(1444), - [aux_sym_float_token2] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [aux_sym_string_token1] = ACTIONS(1446), - [aux_sym_string_token3] = ACTIONS(1446), + [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), }, - [855] = { - [sym_operator] = STATE(1773), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(855), - [sym_identifier] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_this] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_GT_GT_GT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ_GT] = ACTIONS(1481), - [anon_sym_QMARK_QMARK] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1476), - [aux_sym_integer_token1] = ACTIONS(1476), - [aux_sym_integer_token2] = ACTIONS(1474), - [aux_sym_float_token1] = ACTIONS(1476), - [aux_sym_float_token2] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1474), - [aux_sym_string_token3] = ACTIONS(1474), + [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), }, - [856] = { - [sym_operator] = STATE(846), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(199), - [sym__bitwiseOperator] = STATE(199), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1356), + [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(1498), + [anon_sym_DASH] = ACTIONS(61), [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_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), @@ -92070,757 +92196,967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1356), - [aux_sym_integer_token1] = ACTIONS(1356), - [aux_sym_integer_token2] = ACTIONS(1354), - [aux_sym_float_token1] = ACTIONS(1356), - [aux_sym_float_token2] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1354), - [aux_sym_string_token3] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [857] = { - [sym_member_expression] = STATE(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(3100), - [sym_integer] = STATE(3100), - [sym_float] = STATE(3100), - [sym_bool] = STATE(3100), - [sym_string] = STATE(2291), - [sym_null] = STATE(3100), - [sym_array] = STATE(3100), - [sym_map] = STATE(3100), - [sym_object] = STATE(3100), - [sym_pair] = STATE(3100), - [aux_sym_member_expression_repeat1] = STATE(859), - [sym_identifier] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_DOLLARtype] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_DASH_GT] = ACTIONS(1384), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_EQ_GT] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(3100), - [sym_integer] = STATE(3100), - [sym_float] = STATE(3100), - [sym_bool] = STATE(3100), - [sym_string] = STATE(2291), - [sym_null] = STATE(3100), - [sym_array] = STATE(3100), - [sym_map] = STATE(3100), - [sym_object] = STATE(3100), - [sym_pair] = STATE(3100), - [aux_sym_member_expression_repeat1] = STATE(859), - [sym_identifier] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLARtype] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_DASH_GT] = ACTIONS(1388), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_EQ_GT] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(3100), - [sym_integer] = STATE(3100), - [sym_float] = STATE(3100), - [sym_bool] = STATE(3100), - [sym_string] = STATE(2291), - [sym_null] = STATE(3100), - [sym_array] = STATE(3100), - [sym_map] = STATE(3100), - [sym_object] = STATE(3100), - [sym_pair] = STATE(3100), - [aux_sym_member_expression_repeat1] = STATE(859), - [sym_identifier] = ACTIONS(3465), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_cast] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_DOLLARtype] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_untyped] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(3468), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_DASH_GT] = ACTIONS(1395), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1408), - [aux_sym_integer_token1] = ACTIONS(1411), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1417), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1429), + [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__rhs_expression] = STATE(761), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(761), - [sym__literal] = STATE(944), - [sym_integer] = STATE(944), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [sym_identifier] = ACTIONS(3471), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1574), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [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(1452), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_member_expression] = STATE(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(3100), - [sym_integer] = STATE(3100), - [sym_float] = STATE(3100), - [sym_bool] = STATE(3100), - [sym_string] = STATE(2291), - [sym_null] = STATE(3100), - [sym_array] = STATE(3100), - [sym_map] = STATE(3100), - [sym_object] = STATE(3100), - [sym_pair] = STATE(3100), - [aux_sym_member_expression_repeat1] = STATE(859), - [sym_identifier] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1312), - [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(1324), - [anon_sym_this] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_DASH_GT] = ACTIONS(1436), - [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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(3100), - [sym_integer] = STATE(3100), - [sym_float] = STATE(3100), - [sym_bool] = STATE(3100), - [sym_string] = STATE(2291), - [sym_null] = STATE(3100), - [sym_array] = STATE(3100), - [sym_map] = STATE(3100), - [sym_object] = STATE(3100), - [sym_pair] = STATE(3100), - [aux_sym_member_expression_repeat1] = STATE(859), - [sym_identifier] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1312), - [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(1324), - [anon_sym_this] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_DASH_GT] = ACTIONS(1440), - [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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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__rhs_expression] = STATE(975), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(975), - [sym__literal] = STATE(944), - [sym_integer] = STATE(944), - [sym_float] = STATE(944), - [sym_bool] = STATE(944), - [sym_string] = STATE(928), - [sym_null] = STATE(944), - [sym_array] = STATE(944), - [sym_map] = STATE(944), - [sym_object] = STATE(944), - [sym_pair] = STATE(944), - [sym_identifier] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(3476), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_cast] = ACTIONS(3478), - [anon_sym_DOLLARtype] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_untyped] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3483), - [anon_sym_this] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_PLUS_PLUS] = ACTIONS(3476), - [anon_sym_DASH_DASH] = ACTIONS(3476), - [anon_sym_PERCENT] = ACTIONS(3476), - [anon_sym_SLASH] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_LT_LT] = ACTIONS(3476), - [anon_sym_GT_GT] = ACTIONS(3478), - [anon_sym_GT_GT_GT] = ACTIONS(3476), - [anon_sym_AMP] = ACTIONS(3478), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_CARET] = ACTIONS(3476), - [anon_sym_AMP_AMP] = ACTIONS(3476), - [anon_sym_PIPE_PIPE] = ACTIONS(3476), - [anon_sym_EQ_EQ] = ACTIONS(3476), - [anon_sym_BANG_EQ] = ACTIONS(3476), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_LT_EQ] = ACTIONS(3476), - [anon_sym_GT] = ACTIONS(3478), - [anon_sym_GT_EQ] = ACTIONS(3476), - [anon_sym_EQ_GT] = ACTIONS(3476), - [anon_sym_QMARK_QMARK] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3476), - [anon_sym_null] = ACTIONS(3492), - [aux_sym_integer_token1] = ACTIONS(3495), - [aux_sym_integer_token2] = ACTIONS(3498), - [aux_sym_float_token1] = ACTIONS(3501), - [aux_sym_float_token2] = ACTIONS(3504), - [anon_sym_true] = ACTIONS(3507), - [anon_sym_false] = ACTIONS(3507), - [aux_sym_string_token1] = ACTIONS(3510), - [aux_sym_string_token3] = ACTIONS(3513), + [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_operator] = STATE(1747), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(864), - [sym_identifier] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_this] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_else] = ACTIONS(1476), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_GT_GT_GT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ_GT] = ACTIONS(1481), - [anon_sym_QMARK_QMARK] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1476), - [aux_sym_integer_token1] = ACTIONS(1476), - [aux_sym_integer_token2] = ACTIONS(1474), - [aux_sym_float_token1] = ACTIONS(1476), - [aux_sym_float_token2] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1474), - [aux_sym_string_token3] = ACTIONS(1474), + [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(379), - [sym_member_expression] = STATE(362), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(379), - [sym__literal] = STATE(1385), - [sym_integer] = STATE(1385), - [sym_float] = STATE(1385), - [sym_bool] = STATE(1385), - [sym_string] = STATE(1369), - [sym_null] = STATE(1385), - [sym_array] = STATE(1385), - [sym_map] = STATE(1385), - [sym_object] = STATE(1385), - [sym_pair] = STATE(1385), - [sym_identifier] = ACTIONS(3516), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1302), + [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__rhs_expression] = STATE(220), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(220), - [sym__literal] = STATE(1387), - [sym_integer] = STATE(1387), - [sym_float] = STATE(1387), - [sym_bool] = STATE(1387), - [sym_string] = STATE(1375), - [sym_null] = STATE(1387), - [sym_array] = STATE(1387), - [sym_map] = STATE(1387), - [sym_object] = STATE(1387), - [sym_pair] = STATE(1387), - [sym_identifier] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_operator] = STATE(853), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(199), - [sym__bitwiseOperator] = STATE(199), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(872), - [sym_identifier] = ACTIONS(1452), + [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(1448), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_this] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1452), + [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(1498), + [anon_sym_DASH] = ACTIONS(1504), [anon_sym_PLUS_PLUS] = ACTIONS(63), [anon_sym_DASH_DASH] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(57), @@ -92843,672 +93179,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(1452), - [aux_sym_integer_token1] = ACTIONS(1452), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1452), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [868] = { - [sym__rhs_expression] = STATE(235), - [sym_member_expression] = STATE(197), - [sym__lhs_expression] = STATE(2674), - [sym__call] = STATE(190), - [sym__constructor_call] = STATE(191), - [sym_call_expression] = STATE(235), - [sym__literal] = STATE(1387), - [sym_integer] = STATE(1387), - [sym_float] = STATE(1387), - [sym_bool] = STATE(1387), - [sym_string] = STATE(1375), - [sym_null] = STATE(1387), - [sym_array] = STATE(1387), - [sym_map] = STATE(1387), - [sym_object] = STATE(1387), - [sym_pair] = STATE(1387), - [sym_identifier] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [869] = { - [sym__rhs_expression] = STATE(358), - [sym_member_expression] = STATE(362), - [sym__lhs_expression] = STATE(2585), - [sym__call] = STATE(337), - [sym__constructor_call] = STATE(371), - [sym_call_expression] = STATE(358), - [sym__literal] = STATE(1385), - [sym_integer] = STATE(1385), - [sym_float] = STATE(1385), - [sym_bool] = STATE(1385), - [sym_string] = STATE(1369), - [sym_null] = STATE(1385), - [sym_array] = STATE(1385), - [sym_map] = STATE(1385), - [sym_object] = STATE(1385), - [sym_pair] = STATE(1385), - [sym_identifier] = ACTIONS(3516), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_this] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ_GT] = ACTIONS(1354), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1354), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [870] = { - [sym_member_expression] = STATE(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(2831), - [sym_integer] = STATE(2831), - [sym_float] = STATE(2831), - [sym_bool] = STATE(2831), - [sym_string] = STATE(2291), - [sym_null] = STATE(2831), - [sym_array] = STATE(2831), - [sym_map] = STATE(2831), - [sym_object] = STATE(2831), - [sym_pair] = STATE(2831), - [aux_sym_member_expression_repeat1] = STATE(875), - [sym_identifier] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLARtype] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_untyped] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1326), - [anon_sym_DASH_GT] = ACTIONS(1388), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_EQ_GT] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [871] = { - [sym_member_expression] = STATE(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(2831), - [sym_integer] = STATE(2831), - [sym_float] = STATE(2831), - [sym_bool] = STATE(2831), - [sym_string] = STATE(2291), - [sym_null] = STATE(2831), - [sym_array] = STATE(2831), - [sym_map] = STATE(2831), - [sym_object] = STATE(2831), - [sym_pair] = STATE(2831), - [aux_sym_member_expression_repeat1] = STATE(875), - [sym_identifier] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_DOLLARtype] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_this] = ACTIONS(1326), - [anon_sym_DASH_GT] = ACTIONS(1384), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_EQ_GT] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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_operator] = STATE(1747), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(864), - [sym_identifier] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_cast] = ACTIONS(1550), - [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_catch] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_new] = ACTIONS(1550), - [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(57), - [anon_sym_null] = 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__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(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(2831), - [sym_integer] = STATE(2831), - [sym_float] = STATE(2831), - [sym_bool] = STATE(2831), - [sym_string] = STATE(2291), - [sym_null] = STATE(2831), - [sym_array] = STATE(2831), - [sym_map] = STATE(2831), - [sym_object] = STATE(2831), - [sym_pair] = STATE(2831), + [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(3520), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1312), - [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(1324), - [anon_sym_this] = ACTIONS(1326), - [anon_sym_DASH_GT] = ACTIONS(1436), - [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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(2831), - [sym_integer] = STATE(2831), - [sym_float] = STATE(2831), - [sym_bool] = STATE(2831), - [sym_string] = STATE(2291), - [sym_null] = STATE(2831), - [sym_array] = STATE(2831), - [sym_map] = STATE(2831), - [sym_object] = STATE(2831), - [sym_pair] = STATE(2831), + [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(3520), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1312), - [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(1324), - [anon_sym_this] = ACTIONS(1326), - [anon_sym_DASH_GT] = ACTIONS(1440), - [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_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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1334), - [aux_sym_integer_token2] = ACTIONS(1336), - [aux_sym_float_token1] = ACTIONS(1338), - [aux_sym_float_token2] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1344), - [aux_sym_string_token3] = ACTIONS(1346), + [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(946), - [sym__lhs_expression] = STATE(947), - [sym__literal] = STATE(2831), - [sym_integer] = STATE(2831), - [sym_float] = STATE(2831), - [sym_bool] = STATE(2831), - [sym_string] = STATE(2291), - [sym_null] = STATE(2831), - [sym_array] = STATE(2831), - [sym_map] = STATE(2831), - [sym_object] = STATE(2831), - [sym_pair] = STATE(2831), + [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(3522), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_cast] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_DOLLARtype] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_untyped] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(3525), - [anon_sym_DASH_GT] = ACTIONS(1395), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_GT_GT_GT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1395), - [anon_sym_QMARK_QMARK] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1408), - [aux_sym_integer_token1] = ACTIONS(1411), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1417), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1429), + [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_operator] = STATE(1747), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(2228), - [sym__bitwiseOperator] = STATE(2228), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(864), - [sym_identifier] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_cast] = ACTIONS(3528), - [anon_sym_DOLLARtype] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_untyped] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_this] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PERCENT] = ACTIONS(1643), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_LT_LT] = ACTIONS(1643), - [anon_sym_GT_GT] = ACTIONS(3528), - [anon_sym_GT_GT_GT] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_PIPE_PIPE] = ACTIONS(1643), - [anon_sym_EQ_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_EQ_GT] = ACTIONS(1643), - [anon_sym_QMARK_QMARK] = ACTIONS(1643), - [anon_sym_EQ] = ACTIONS(3528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1643), - [anon_sym_null] = ACTIONS(3528), - [aux_sym_integer_token1] = ACTIONS(3528), - [aux_sym_integer_token2] = ACTIONS(1643), - [aux_sym_float_token1] = ACTIONS(3528), - [aux_sym_float_token2] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(3528), - [anon_sym_false] = ACTIONS(3528), - [aux_sym_string_token1] = ACTIONS(1643), - [aux_sym_string_token3] = ACTIONS(1643), - [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(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_operator] = STATE(853), - [sym__unaryOperator] = STATE(199), - [sym__prefixUnaryOperator] = STATE(199), - [sym__postfixUnaryOperator] = STATE(199), - [sym__binaryOperator] = STATE(199), - [sym__arithmeticOperator] = STATE(199), - [sym__bitwiseOperator] = STATE(199), - [sym__logicalOperator] = STATE(199), - [sym__comparisonOperator] = STATE(199), - [sym__miscOperator] = STATE(199), - [sym__assignmentOperator] = STATE(199), - [sym__compoundAssignmentOperator] = STATE(199), - [sym__rangeOperator] = STATE(199), - [aux_sym_expression_repeat1] = STATE(876), - [sym_identifier] = ACTIONS(3478), + [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(3476), - [anon_sym_RPAREN] = ACTIONS(3476), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_cast] = ACTIONS(3478), - [anon_sym_DOLLARtype] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_untyped] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3478), + [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(1498), + [anon_sym_DASH] = ACTIONS(1504), [anon_sym_PLUS_PLUS] = ACTIONS(63), [anon_sym_DASH_DASH] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(57), @@ -93531,16 +93729,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(57), [anon_sym_QMARK_QMARK] = ACTIONS(57), [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DOT_DOT_DOT] = ACTIONS(57), - [anon_sym_null] = ACTIONS(3478), - [aux_sym_integer_token1] = ACTIONS(3478), - [aux_sym_integer_token2] = ACTIONS(3476), - [aux_sym_float_token1] = ACTIONS(3478), - [aux_sym_float_token2] = ACTIONS(3476), - [anon_sym_true] = ACTIONS(3478), - [anon_sym_false] = ACTIONS(3478), - [aux_sym_string_token1] = ACTIONS(3476), - [aux_sym_string_token3] = ACTIONS(3476), + [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), }, @@ -93548,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(2544), 1, + ACTIONS(2571), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(2558), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(2560), 1, + ACTIONS(2587), 1, anon_sym_new, - ACTIONS(2562), 1, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(2564), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(2566), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(2568), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(2570), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(2574), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(2576), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(3530), 1, + ACTIONS(3551), 1, sym_identifier, - STATE(1477), 1, - sym_member_expression, - STATE(1483), 1, + STATE(1478), 1, sym_string, - STATE(1507), 1, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, sym__call, - STATE(1508), 1, + STATE(1535), 1, sym__constructor_call, - STATE(2670), 1, + STATE(2752), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2572), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(1530), 2, + STATE(1548), 2, sym__rhs_expression, sym_call_expression, - STATE(1560), 9, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -93601,7 +93799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1300), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -93614,7 +93812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1302), 20, + ACTIONS(1371), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -93636,50 +93834,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [111] = 23, - ACTIONS(2544), 1, + ACTIONS(2571), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(2558), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(2560), 1, + ACTIONS(2587), 1, anon_sym_new, - ACTIONS(2562), 1, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(2564), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(2566), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(2568), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(2570), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(2574), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(2576), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(3530), 1, + ACTIONS(3551), 1, sym_identifier, - STATE(1477), 1, - sym_member_expression, - STATE(1483), 1, + STATE(1478), 1, sym_string, - STATE(1507), 1, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, sym__call, - STATE(1508), 1, + STATE(1535), 1, sym__constructor_call, - STATE(2670), 1, + STATE(2752), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2572), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(1545), 2, + STATE(1511), 2, sym__rhs_expression, sym_call_expression, - STATE(1560), 9, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -93689,7 +93887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1356), 12, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -93702,7 +93900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1354), 20, + ACTIONS(1343), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -93723,51 +93921,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [222] = 23, - ACTIONS(39), 1, + [222] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, - ACTIONS(55), 1, + 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + 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, - ACTIONS(67), 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, + anon_sym_GT, + anon_sym_EQ, anon_sym_null, - ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [291] = 23, + 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(89), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(2448), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3532), 1, + ACTIONS(3553), 1, sym_identifier, - STATE(1580), 1, + STATE(1587), 1, sym_member_expression, - STATE(1639), 1, + STATE(1609), 1, sym_string, - STATE(1964), 1, + STATE(2000), 1, sym__call, - STATE(1968), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2738), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(1942), 2, + STATE(1798), 2, sym__rhs_expression, sym_call_expression, - STATE(1749), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -93777,8 +94041,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1356), 12, + ACTIONS(1375), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -93790,8 +94055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1354), 18, - sym__lookback_semicolon, + ACTIONS(1371), 17, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -93809,51 +94073,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [331] = 23, - ACTIONS(39), 1, + [400] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(2448), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3532), 1, + ACTIONS(3555), 1, sym_identifier, - STATE(1580), 1, - sym_member_expression, - STATE(1639), 1, - sym_string, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2738), 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(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1775), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(1749), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -93863,7 +94127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1300), 12, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -93876,9 +94140,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1302), 18, - sym__lookback_semicolon, + ACTIONS(1343), 18, anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -93895,51 +94159,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [440] = 23, - ACTIONS(1312), 1, + [509] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3534), 1, + ACTIONS(3555), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(189), 1, sym_member_expression, - STATE(1688), 1, + STATE(1925), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1756), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -93949,7 +94213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1300), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -93962,9 +94226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1302), 18, + ACTIONS(1371), 18, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -93981,51 +94245,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [549] = 23, - ACTIONS(2046), 1, + [618] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(2058), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(2062), 1, - anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3536), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, + anon_sym_this, + ACTIONS(3557), 1, sym_identifier, - STATE(1600), 1, - sym_string, - STATE(1715), 1, - sym_member_expression, - STATE(1919), 1, + STATE(186), 1, sym__call, - STATE(1920), 1, + STATE(187), 1, sym__constructor_call, - STATE(2788), 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(2074), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1970), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1777), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -94035,9 +94299,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1300), 13, + ACTIONS(1375), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -94049,39 +94312,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1302), 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, - [658] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1782), 30, + ACTIONS(1371), 18, 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, @@ -94098,86 +94331,51 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(1784), 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, - 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, [727] = 23, - ACTIONS(1312), 1, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3538), 1, + ACTIONS(3553), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(197), 1, + STATE(1587), 1, sym_member_expression, - STATE(2002), 1, + STATE(1609), 1, sym_string, - STATE(2674), 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(1342), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(1776), 2, sym__rhs_expression, sym_call_expression, - STATE(1833), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -94187,8 +94385,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1356), 12, + ACTIONS(1345), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -94200,9 +94399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1354), 18, + ACTIONS(1343), 17, anon_sym_STAR, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -94220,50 +94418,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [836] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3534), 1, + ACTIONS(3559), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(197), 1, + STATE(1597), 1, sym_member_expression, - STATE(1688), 1, + STATE(1716), 1, sym_string, - STATE(2674), 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(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(1845), 2, sym__rhs_expression, sym_call_expression, - STATE(1756), 9, + STATE(1934), 9, sym__literal, sym_integer, sym_float, @@ -94273,7 +94471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1356), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -94286,9 +94484,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1354), 18, + ACTIONS(1371), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -94306,50 +94504,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [945] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3538), 1, + ACTIONS(3559), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(197), 1, + STATE(1597), 1, sym_member_expression, - STATE(2002), 1, + STATE(1716), 1, sym_string, - STATE(2674), 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(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(1853), 2, sym__rhs_expression, sym_call_expression, - STATE(1833), 9, + STATE(1934), 9, sym__literal, sym_integer, sym_float, @@ -94359,7 +94557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1300), 12, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -94372,9 +94570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1302), 18, + ACTIONS(1343), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -94392,50 +94590,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [1054] = 23, - ACTIONS(2046), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(2058), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(2062), 1, - anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3536), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, + anon_sym_this, + ACTIONS(3557), 1, sym_identifier, - STATE(1600), 1, - sym_string, - STATE(1715), 1, - sym_member_expression, - STATE(1919), 1, + STATE(186), 1, sym__call, - STATE(1920), 1, + STATE(187), 1, sym__constructor_call, - STATE(2788), 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(2074), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2010), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(1777), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -94445,9 +94643,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1356), 13, + ACTIONS(1345), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -94459,72 +94656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1354), 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, - [1163] = 6, - ACTIONS(1888), 1, - anon_sym_COLON, - ACTIONS(3540), 1, - anon_sym_DOT, - ACTIONS(3542), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1784), 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(1782), 29, + ACTIONS(1343), 18, 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, @@ -94541,48 +94675,44 @@ static const uint16_t ts_small_parse_table[] = { 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, - [1237] = 20, - ACTIONS(1312), 1, + [1163] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2558), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(3544), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(891), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, + STATE(990), 1, sym_member_expression, - STATE(998), 1, + STATE(993), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -94592,7 +94722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1386), 12, + ACTIONS(1449), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -94605,7 +94735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1384), 21, + ACTIONS(1447), 21, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -94627,44 +94757,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1339] = 20, - ACTIONS(1399), 1, + [1265] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3546), 1, - sym_identifier, - ACTIONS(3549), 1, + ACTIONS(2585), 1, anon_sym_this, - STATE(891), 1, + ACTIONS(3561), 1, + sym_identifier, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, + STATE(990), 1, sym_member_expression, - STATE(998), 1, + STATE(993), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -94674,7 +94804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 12, + ACTIONS(1381), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -94687,7 +94817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1395), 21, + ACTIONS(1379), 21, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -94709,44 +94839,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1441] = 20, - ACTIONS(1312), 1, + [1367] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(2558), 1, - anon_sym_this, - ACTIONS(3544), 1, + ACTIONS(3563), 1, sym_identifier, - STATE(891), 1, + ACTIONS(3566), 1, + anon_sym_this, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, + STATE(990), 1, sym_member_expression, - STATE(998), 1, + STATE(993), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -94756,7 +94886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 12, + ACTIONS(1388), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -94769,7 +94899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 21, + ACTIONS(1386), 21, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -94791,44 +94921,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1543] = 20, - ACTIONS(1312), 1, + [1469] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2558), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(3544), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(891), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, + STATE(990), 1, sym_member_expression, - STATE(998), 1, + STATE(993), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -94838,7 +94968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 12, + ACTIONS(1341), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -94851,7 +94981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 21, + ACTIONS(1339), 21, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -94873,44 +95003,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1645] = 20, - ACTIONS(1312), 1, + [1571] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2558), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(3544), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(891), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, + STATE(990), 1, sym_member_expression, - STATE(998), 1, + STATE(993), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -94920,7 +95050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1442), 12, + ACTIONS(1315), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -94933,7 +95063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1440), 21, + ACTIONS(1313), 21, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -94955,57 +95085,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1747] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(3552), 1, - sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(911), 1, - aux_sym_member_expression_repeat1, - STATE(1040), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, + [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(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2840), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(1390), 13, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + 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, @@ -95016,89 +95117,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 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, - [1847] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, anon_sym_null, - ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(2038), 1, - anon_sym_this, - ACTIONS(3554), 1, - sym_identifier, - STATE(215), 1, - sym__lhs_expression, - STATE(884), 1, - sym_member_expression, - STATE(906), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, anon_sym_true, anon_sym_false, - STATE(2839), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - 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), 19, + sym_identifier, + ACTIONS(1753), 29, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, + 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, @@ -95115,44 +95149,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [1947] = 20, - ACTIONS(1312), 1, + 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(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(1536), 1, - anon_sym_this, - ACTIONS(3556), 1, + ACTIONS(3573), 1, sym_identifier, - STATE(899), 1, + ACTIONS(3576), 1, + anon_sym_this, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(1050), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -95162,7 +95200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 10, + ACTIONS(1388), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -95173,7 +95211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 21, + ACTIONS(1386), 21, sym__closing_brace_marker, anon_sym_STAR, anon_sym_LPAREN, @@ -95195,44 +95233,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2047] = 20, - ACTIONS(1312), 1, + [1847] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2448), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3558), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(908), 1, + STATE(882), 1, + sym_member_expression, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(1007), 1, - sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -95242,8 +95280,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 12, + ACTIONS(1341), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -95255,8 +95294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 19, - sym__lookback_semicolon, + ACTIONS(1339), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -95275,44 +95313,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [2147] = 20, - ACTIONS(1399), 1, + [1947] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(3560), 1, + ACTIONS(3581), 1, sym_identifier, - ACTIONS(3563), 1, + ACTIONS(3584), 1, anon_sym_this, + STATE(882), 1, + sym_member_expression, STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(1051), 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, + STATE(2929), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1388), 13, + anon_sym_DOT, + anon_sym_in, + 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(1386), 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, + [2047] = 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(1552), 1, + anon_sym_this, + ACTIONS(3587), 1, + sym_identifier, + STATE(897), 1, + aux_sym_member_expression_repeat1, + STATE(1049), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(1050), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -95322,7 +95440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 10, + ACTIONS(1315), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -95333,7 +95451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1395), 21, + ACTIONS(1313), 21, sym__closing_brace_marker, anon_sym_STAR, anon_sym_LPAREN, @@ -95355,44 +95473,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, + [2147] = 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(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(2929), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1381), 13, + anon_sym_DOT, + anon_sym_in, + 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(1379), 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, [2247] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3554), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(215), 1, + STATE(905), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, sym__lhs_expression, - STATE(884), 1, + STATE(1007), 1, sym_member_expression, - STATE(906), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2839), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -95402,7 +95600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1386), 12, + ACTIONS(1341), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -95415,10 +95613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1384), 19, + ACTIONS(1339), 19, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -95436,43 +95634,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [2347] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3554), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(215), 1, - sym__lhs_expression, - STATE(884), 1, + STATE(882), 1, sym_member_expression, - STATE(906), 1, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(1051), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2839), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -95482,8 +95680,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 12, + ACTIONS(1315), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -95495,10 +95694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 19, + ACTIONS(1313), 18, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -95516,43 +95714,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [2447] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1536), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3556), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(899), 1, + STATE(905), 1, aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -95562,7 +95760,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 10, + ACTIONS(1381), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -95573,12 +95773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 21, - sym__closing_brace_marker, + ACTIONS(1379), 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, @@ -95596,43 +95794,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [2547] = 20, - ACTIONS(1312), 1, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(2448), 1, - anon_sym_this, - ACTIONS(3558), 1, + ACTIONS(3591), 1, sym_identifier, - STATE(908), 1, + ACTIONS(3594), 1, + anon_sym_this, + STATE(905), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1004), 1, sym__lhs_expression, STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -95642,7 +95840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1442), 12, + ACTIONS(1388), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -95655,7 +95853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1440), 19, + ACTIONS(1386), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, @@ -95676,43 +95874,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [2647] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1536), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3556), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(899), 1, - aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(205), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(882), 1, sym_member_expression, - STATE(2291), 1, + STATE(911), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -95722,7 +95920,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1442), 10, + ACTIONS(1341), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -95733,12 +95933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1440), 21, - sym__closing_brace_marker, + ACTIONS(1339), 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, @@ -95756,43 +95954,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [2747] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2448), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3558), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(908), 1, - aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(205), 1, sym__lhs_expression, - STATE(1007), 1, + STATE(882), 1, sym_member_expression, - STATE(2291), 1, + STATE(911), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -95802,7 +96000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1386), 12, + ACTIONS(1381), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -95815,10 +96013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1384), 19, - sym__lookback_semicolon, + ACTIONS(1379), 19, anon_sym_STAR, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -95836,43 +96034,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [2847] = 20, - ACTIONS(1399), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3566), 1, - sym_identifier, - ACTIONS(3569), 1, + ACTIONS(2105), 1, anon_sym_this, - STATE(215), 1, + ACTIONS(3597), 1, + sym_identifier, + STATE(205), 1, sym__lhs_expression, - STATE(884), 1, + STATE(882), 1, sym_member_expression, - STATE(906), 1, + STATE(911), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2839), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -95882,7 +96080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 12, + ACTIONS(1315), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -95895,7 +96093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1395), 19, + ACTIONS(1313), 19, anon_sym_STAR, anon_sym_LPAREN, anon_sym_COLON, @@ -95916,43 +96114,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [2947] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3554), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(215), 1, + STATE(205), 1, sym__lhs_expression, - STATE(884), 1, + STATE(882), 1, sym_member_expression, - STATE(906), 1, + STATE(911), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2839), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -95962,7 +96160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 12, + ACTIONS(1449), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -95975,7 +96173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 19, + ACTIONS(1447), 19, anon_sym_STAR, anon_sym_LPAREN, anon_sym_COLON, @@ -95996,43 +96194,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3047] = 20, - ACTIONS(1399), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3572), 1, - sym_identifier, - ACTIONS(3575), 1, + ACTIONS(2205), 1, anon_sym_this, - STATE(908), 1, + ACTIONS(3589), 1, + sym_identifier, + STATE(905), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1004), 1, sym__lhs_expression, STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -96042,7 +96240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 12, + ACTIONS(1315), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -96055,7 +96253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1395), 19, + ACTIONS(1313), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, @@ -96076,43 +96274,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3147] = 20, - ACTIONS(1312), 1, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(3552), 1, + ACTIONS(3599), 1, sym_identifier, - STATE(884), 1, + ACTIONS(3602), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(882), 1, sym_member_expression, STATE(911), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2840), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -96122,9 +96320,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1386), 13, + ACTIONS(1388), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -96136,9 +96333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1384), 18, + ACTIONS(1386), 19, anon_sym_STAR, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -96156,43 +96354,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3247] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2448), 1, + ACTIONS(1552), 1, anon_sym_this, - ACTIONS(3558), 1, + ACTIONS(3587), 1, sym_identifier, - STATE(908), 1, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(1007), 1, + STATE(1050), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -96202,9 +96400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1381), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96215,10 +96411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 19, - sym__lookback_semicolon, + ACTIONS(1379), 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, @@ -96236,43 +96434,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3347] = 20, - ACTIONS(1399), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3581), 1, + ACTIONS(2117), 1, anon_sym_this, - STATE(884), 1, + ACTIONS(3579), 1, + sym_identifier, + STATE(882), 1, sym_member_expression, - STATE(911), 1, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2840), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -96282,7 +96480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 13, + ACTIONS(1449), 13, anon_sym_DOT, anon_sym_in, anon_sym_QMARK, @@ -96296,7 +96494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1395), 18, + ACTIONS(1447), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -96316,43 +96514,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3447] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2060), 1, + ACTIONS(1552), 1, anon_sym_this, - ACTIONS(3552), 1, + ACTIONS(3587), 1, sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(911), 1, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1050), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2840), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -96362,10 +96560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 13, - anon_sym_DOT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(1341), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96376,9 +96571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 18, + ACTIONS(1339), 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, @@ -96396,43 +96594,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3547] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2060), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3552), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(911), 1, + STATE(905), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2840), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -96442,9 +96640,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1442), 13, + ACTIONS(1449), 12, anon_sym_DOT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -96456,7 +96653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1440), 18, + ACTIONS(1447), 19, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -96476,43 +96674,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3647] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1536), 1, + ACTIONS(1552), 1, anon_sym_this, - ACTIONS(3556), 1, + ACTIONS(3587), 1, sym_identifier, - STATE(899), 1, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(1050), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -96522,7 +96720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1386), 10, + ACTIONS(1449), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96533,7 +96731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1384), 21, + ACTIONS(1447), 21, sym__closing_brace_marker, anon_sym_STAR, anon_sym_LPAREN, @@ -96556,43 +96754,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3747] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(917), 1, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(1094), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3089), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -96602,7 +96800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1386), 10, + ACTIONS(1449), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96613,11 +96811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1384), 20, + ACTIONS(1447), 20, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_DASH_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -96635,43 +96833,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3846] = 20, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(917), 1, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(1094), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3089), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -96681,7 +96879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 10, + ACTIONS(1315), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96692,11 +96890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 20, + ACTIONS(1313), 20, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_DASH_GT, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -96714,122 +96912,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, [3945] = 20, - ACTIONS(1399), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3588), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(3591), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(917), 1, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, - sym__lhs_expression, - STATE(1094), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1423), 2, - anon_sym_true, - anon_sym_false, - STATE(3089), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(1397), 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(1395), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [4044] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_this, - STATE(923), 1, - aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1004), 1, sym__lhs_expression, STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -96839,7 +96958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1386), 10, + ACTIONS(1341), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96850,7 +96969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1384), 20, + ACTIONS(1339), 20, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, @@ -96871,44 +96990,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4143] = 20, - ACTIONS(1312), 1, + [4044] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(917), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, - sym__lhs_expression, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -96918,7 +97037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 10, + ACTIONS(1341), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96929,7 +97048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 20, + ACTIONS(1339), 20, sym__lookback_semicolon, anon_sym_STAR, anon_sym_RPAREN, @@ -96950,44 +97069,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4242] = 20, - ACTIONS(1312), 1, + [4143] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(917), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, - sym__lhs_expression, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -96997,7 +97116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1442), 10, + ACTIONS(1381), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97008,7 +97127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1440), 20, + ACTIONS(1379), 20, sym__lookback_semicolon, anon_sym_STAR, anon_sym_RPAREN, @@ -97029,123 +97148,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4341] = 20, - ACTIONS(1312), 1, + [4242] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(3613), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3616), 1, anon_sym_this, - STATE(923), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, - sym__lhs_expression, - STATE(1007), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2845), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(1442), 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(1440), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [4440] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_this, - STATE(923), 1, - aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1119), 1, sym__lhs_expression, - STATE(1007), 1, - sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -97155,7 +97195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 10, + ACTIONS(1388), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97166,11 +97206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 20, + ACTIONS(1386), 20, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -97187,44 +97227,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4539] = 20, - ACTIONS(1399), 1, + [4341] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3598), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3601), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(923), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, - sym__lhs_expression, - STATE(1007), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -97234,7 +97274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 10, + ACTIONS(1315), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97245,11 +97285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1395), 20, + ACTIONS(1313), 20, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -97266,44 +97306,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [4638] = 20, - ACTIONS(1312), 1, + [4440] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(923), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, - sym__lhs_expression, - STATE(1007), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -97313,7 +97353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 10, + ACTIONS(1449), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97324,201 +97364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [4737] = 9, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3540), 1, - anon_sym_DOT, - ACTIONS(3542), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3604), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1778), 23, - anon_sym_STAR, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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(1780), 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_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_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [4813] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3604), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1778), 24, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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(1780), 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_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_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [4887] = 4, - ACTIONS(1888), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1784), 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(1782), 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, @@ -97536,110 +97385,44 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4953] = 4, - ACTIONS(3604), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1624), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - ACTIONS(1626), 28, - 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_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, - [5019] = 20, - ACTIONS(1312), 1, + [4539] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2316), 1, - anon_sym_this, - ACTIONS(3610), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(931), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2834), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -97649,8 +97432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 11, - anon_sym_in, + ACTIONS(1381), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97661,9 +97443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 18, + ACTIONS(1379), 20, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -97680,44 +97464,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5117] = 20, - ACTIONS(1312), 1, + [4638] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(2316), 1, - anon_sym_this, - ACTIONS(3610), 1, + ACTIONS(3619), 1, sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(931), 1, + ACTIONS(3622), 1, + anon_sym_this, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2834), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -97727,8 +97511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 11, - anon_sym_in, + ACTIONS(1388), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97739,9 +97522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 18, + 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, @@ -97758,44 +97543,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5215] = 20, - ACTIONS(1399), 1, + [4737] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3612), 1, - sym_identifier, - ACTIONS(3615), 1, + ACTIONS(2025), 1, anon_sym_this, - STATE(884), 1, + ACTIONS(3625), 1, + sym_identifier, + STATE(882), 1, sym_member_expression, - STATE(931), 1, + STATE(941), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2834), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -97805,7 +97590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 11, + ACTIONS(1449), 11, anon_sym_in, anon_sym_BANG, anon_sym_DASH, @@ -97817,7 +97602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1395), 18, + ACTIONS(1447), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -97836,93 +97621,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5313] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3540), 1, - anon_sym_DOT, - ACTIONS(3542), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3604), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1778), 24, - 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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(1780), 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_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_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [5387] = 9, - ACTIONS(1714), 1, + [4835] = 10, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3618), 1, + ACTIONS(3627), 1, anon_sym_DOT, - ACTIONS(3620), 1, + ACTIONS(3629), 1, + anon_sym_COLON, + ACTIONS(3631), 1, anon_sym_QMARK, + ACTIONS(3633), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3604), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1782), 4, + ACTIONS(1753), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(1778), 22, + ACTIONS(1785), 22, anon_sym_STAR, anon_sym_LBRACE, anon_sym_DOLLARtype, @@ -97945,7 +97665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1780), 23, + ACTIONS(1787), 23, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -97969,44 +97689,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [5463] = 20, - ACTIONS(1399), 1, + [4913] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(3622), 1, + ACTIONS(3635), 1, sym_identifier, - ACTIONS(3625), 1, + ACTIONS(3638), 1, anon_sym_this, - STATE(934), 1, + STATE(929), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1004), 1, sym__lhs_expression, STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2910), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -98016,7 +97736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 10, + ACTIONS(1388), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -98027,7 +97747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1395), 19, + ACTIONS(1386), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, @@ -98047,44 +97767,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5561] = 20, + [5011] = 20, ACTIONS(41), 1, anon_sym_this, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3628), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(934), 1, + STATE(929), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1004), 1, sym__lhs_expression, STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2910), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -98094,7 +97814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 10, + ACTIONS(1315), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -98105,7 +97825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1388), 19, + ACTIONS(1313), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, @@ -98125,44 +97845,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5659] = 20, + [5109] = 20, ACTIONS(41), 1, anon_sym_this, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3628), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(934), 1, + STATE(929), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1004), 1, sym__lhs_expression, STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2910), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -98172,7 +97892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 10, + ACTIONS(1341), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -98183,7 +97903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1436), 19, + ACTIONS(1339), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_LPAREN, @@ -98203,44 +97923,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5757] = 20, - ACTIONS(1312), 1, + [5207] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2316), 1, + ACTIONS(2025), 1, anon_sym_this, - ACTIONS(3610), 1, + ACTIONS(3625), 1, sym_identifier, - STATE(884), 1, + STATE(882), 1, sym_member_expression, - STATE(931), 1, + STATE(941), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2834), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -98250,7 +97970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1442), 11, + ACTIONS(1341), 11, anon_sym_in, anon_sym_BANG, anon_sym_DASH, @@ -98262,7 +97982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1440), 18, + ACTIONS(1339), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -98281,17 +98001,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [5855] = 6, - ACTIONS(1888), 1, + [5305] = 4, + ACTIONS(3633), 1, anon_sym_COLON, - ACTIONS(3630), 1, - anon_sym_DOT, - ACTIONS(3632), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 24, + ACTIONS(1636), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + ACTIONS(1638), 28, + anon_sym_DOT, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -98299,6 +98043,9 @@ 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, @@ -98316,15 +98063,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 28, - anon_sym_STAR, + [5371] = 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(3633), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1785), 23, + anon_sym_STAR, 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, @@ -98338,61 +98098,23 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [5925] = 20, - ACTIONS(41), 1, + ACTIONS(1787), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3628), 1, - sym_identifier, - STATE(934), 1, - aux_sym_member_expression_repeat1, - STATE(1005), 1, - sym__lhs_expression, - STATE(1007), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2910), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(1386), 10, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -98400,13 +98122,35 @@ 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(1384), 19, - sym__lookback_semicolon, - anon_sym_STAR, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [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, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -98420,47 +98164,287 @@ 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, anon_sym_DOT_DOT_DOT, - [6023] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1787), 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_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_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [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_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), 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_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_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [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, + 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), 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_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_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [5671] = 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(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(1381), 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(1379), 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [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(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2316), 1, + ACTIONS(2025), 1, anon_sym_this, - ACTIONS(3610), 1, + ACTIONS(3625), 1, sym_identifier, - STATE(884), 1, + STATE(882), 1, sym_member_expression, - STATE(931), 1, + STATE(941), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2834), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -98470,7 +98454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1386), 11, + ACTIONS(1315), 11, anon_sym_in, anon_sym_BANG, anon_sym_DASH, @@ -98482,7 +98466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1384), 18, + ACTIONS(1313), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -98501,44 +98485,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [6121] = 20, - ACTIONS(41), 1, + [5867] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, - ACTIONS(1312), 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(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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [5933] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(3628), 1, + ACTIONS(3647), 1, sym_identifier, - STATE(934), 1, + ACTIONS(3650), 1, + anon_sym_this, + STATE(882), 1, + sym_member_expression, + STATE(941), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(1007), 1, - sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2910), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -98548,7 +98594,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1442), 10, + ACTIONS(1388), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -98559,8 +98606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1440), 19, - sym__lookback_semicolon, + ACTIONS(1386), 18, anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, @@ -98579,26 +98625,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [6219] = 9, - ACTIONS(1714), 1, + [6031] = 9, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3606), 1, + ACTIONS(3653), 1, anon_sym_DOT, - ACTIONS(3608), 1, + ACTIONS(3655), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3604), 2, + ACTIONS(3633), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1778), 23, - anon_sym_STAR, + ACTIONS(1753), 4, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1785), 22, + anon_sym_STAR, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_TILDE, @@ -98620,7 +98668,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1780), 25, + ACTIONS(1787), 23, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -98628,8 +98676,6 @@ 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, @@ -98646,31 +98692,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6295] = 10, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3604), 1, - anon_sym_EQ_GT, - ACTIONS(3630), 1, + [6107] = 6, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3627), 1, anon_sym_DOT, - ACTIONS(3632), 1, + ACTIONS(3631), 1, anon_sym_QMARK, - ACTIONS(3634), 1, - anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 4, + 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, + 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), 28, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1778), 22, - anon_sym_STAR, 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, @@ -98684,21 +98749,62 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1780), 23, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, + [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, - 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(1381), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -98706,25 +98812,117 @@ 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(1379), 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, + [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, + 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, - sym_identifier, + 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, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, [6373] = 6, - ACTIONS(3604), 1, + ACTIONS(3633), 1, anon_sym_EQ_GT, - ACTIONS(3636), 1, + ACTIONS(3657), 1, anon_sym_DOT, - ACTIONS(3638), 1, + ACTIONS(3659), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 25, + ACTIONS(1785), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98750,7 +98948,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1780), 26, + ACTIONS(1787), 26, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -98778,16 +98976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_identifier, [6442] = 6, - ACTIONS(3604), 1, + ACTIONS(3633), 1, anon_sym_EQ_GT, - ACTIONS(3640), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3642), 1, + ACTIONS(3663), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 25, + ACTIONS(1785), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98813,7 +99011,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1780), 26, + ACTIONS(1787), 26, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -98844,7 +99042,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 26, + ACTIONS(1875), 26, anon_sym_DOT, anon_sym_switch, anon_sym_cast, @@ -98871,7 +99069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 28, + ACTIONS(1873), 28, anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98904,7 +99102,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1892), 26, + ACTIONS(1755), 26, anon_sym_DOT, anon_sym_switch, anon_sym_cast, @@ -98931,7 +99129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1890), 28, + ACTIONS(1753), 28, anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98961,19 +99159,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, aux_sym_string_token3, [6637] = 6, - ACTIONS(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 4, + ACTIONS(1753), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(1778), 23, + ACTIONS(1785), 23, anon_sym_STAR, anon_sym_LBRACE, anon_sym_DOLLARtype, @@ -98997,7 +99195,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1780), 25, + ACTIONS(1787), 25, anon_sym_DOT, anon_sym_switch, anon_sym_cast, @@ -99024,7 +99222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_identifier, [6706] = 5, - ACTIONS(3644), 1, + ACTIONS(3665), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -99032,7 +99230,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(957), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3358), 25, + ACTIONS(3368), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99058,7 +99256,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3360), 25, + ACTIONS(3370), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99091,7 +99289,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(957), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3369), 25, + ACTIONS(3368), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99117,7 +99315,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3371), 26, + ACTIONS(3370), 26, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99144,17 +99342,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6836] = 6, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3648), 1, - sym__lookback_semicolon, - STATE(773), 1, - sym_else_clause, + [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(2606), 25, + 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, + 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), 23, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99162,7 +99392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, - anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -99171,7 +99400,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, @@ -99180,68 +99408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(2608), 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, - 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, - [6904] = 5, - ACTIONS(3644), 1, - anon_sym_catch, + [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, - STATE(957), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(3352), 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, - 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, - ACTIONS(3354), 25, + ACTIONS(2627), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99249,7 +99426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, - anon_sym_else, + anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -99267,29 +99444,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [6970] = 10, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1782), 1, + ACTIONS(2629), 25, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3540), 1, - anon_sym_DOT, - ACTIONS(3542), 1, - anon_sym_QMARK, - ACTIONS(3604), 1, + 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_EQ_GT, - ACTIONS(3650), 1, - anon_sym_COLON, + 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, + [6980] = 5, + ACTIONS(3665), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 23, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2681), 25, anon_sym_STAR, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -99303,13 +99498,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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1780), 23, + ACTIONS(2683), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99317,6 +99513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_else, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -99325,6 +99522,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, @@ -99333,14 +99531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [7046] = 4, + [7046] = 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(3358), 25, + ACTIONS(3357), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99366,7 +99566,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3360), 26, + ACTIONS(3359), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99374,7 +99574,6 @@ 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, @@ -99393,8 +99592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [7110] = 5, - ACTIONS(3644), 1, + [7112] = 5, + ACTIONS(3673), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -99402,7 +99601,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(957), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3369), 25, + ACTIONS(3361), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99428,7 +99627,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3371), 25, + ACTIONS(3363), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99454,14 +99653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [7176] = 4, + [7178] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, STATE(957), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3352), 25, + ACTIONS(2681), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99487,7 +99686,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3354), 26, + ACTIONS(2683), 26, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99514,16 +99713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [7240] = 5, - ACTIONS(3652), 1, - anon_sym_catch, + [7242] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, STATE(957), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3362), 25, + ACTIONS(3357), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99549,7 +99746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3364), 25, + ACTIONS(3359), 26, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99557,6 +99754,7 @@ 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, @@ -99575,17 +99773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [7306] = 6, - ACTIONS(3655), 1, + [7306] = 5, + ACTIONS(3669), 1, anon_sym_else, - ACTIONS(3657), 1, - sym__lookback_semicolon, - STATE(773), 1, + STATE(729), 1, sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2606), 24, + ACTIONS(2627), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99593,6 +99789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -99610,7 +99807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(2608), 25, + ACTIONS(2629), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99636,15 +99833,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7373] = 5, - ACTIONS(3646), 1, - anon_sym_else, - STATE(824), 1, - sym_else_clause, + [7371] = 5, + ACTIONS(3676), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2650), 25, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3370), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99652,7 +99850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, - anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -99670,7 +99867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(2652), 25, + ACTIONS(3368), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99696,16 +99893,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7438] = 5, - ACTIONS(3659), 1, - anon_sym_catch, + [7436] = 5, + ACTIONS(3669), 1, + anon_sym_else, + STATE(758), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(967), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(3354), 24, + ACTIONS(2667), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99713,6 +99909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -99730,7 +99927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(3352), 25, + ACTIONS(2669), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99756,16 +99953,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7503] = 5, - ACTIONS(3659), 1, - anon_sym_catch, + [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, - STATE(967), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(3371), 24, + ACTIONS(1787), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99790,9 +99988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(3369), 25, + ACTIONS(1785), 25, anon_sym_STAR, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_LBRACK, @@ -99809,23 +100008,23 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7568] = 5, - ACTIONS(3659), 1, - anon_sym_catch, + [7568] = 6, + ACTIONS(3633), 1, + anon_sym_EQ_GT, + ACTIONS(3682), 1, + anon_sym_DOT, + ACTIONS(3684), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(967), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(3360), 24, + ACTIONS(1787), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99850,9 +100049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(3358), 25, + ACTIONS(1785), 25, anon_sym_STAR, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_LBRACK, @@ -99869,22 +100069,22 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7633] = 5, - ACTIONS(3646), 1, - anon_sym_else, - STATE(773), 1, - sym_else_clause, + [7635] = 5, + ACTIONS(3676), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2606), 25, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2683), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99892,7 +100092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, - anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -99910,7 +100109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(2608), 25, + ACTIONS(2681), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -99936,17 +100135,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7698] = 6, - ACTIONS(3604), 1, - anon_sym_EQ_GT, - ACTIONS(3661), 1, - anon_sym_DOT, - ACTIONS(3663), 1, - anon_sym_QMARK, + [7700] = 5, + ACTIONS(3686), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1780), 24, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3363), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -99971,10 +100169,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1778), 25, + ACTIONS(3361), 25, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_LBRACK, @@ -99991,21 +100188,24 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7765] = 5, - ACTIONS(3646), 1, + [7765] = 6, + ACTIONS(3689), 1, anon_sym_else, - STATE(822), 1, + ACTIONS(3691), 1, + sym__lookback_semicolon, + STATE(729), 1, sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2640), 25, + ACTIONS(2627), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100013,7 +100213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, - anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -100031,7 +100230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(2642), 25, + ACTIONS(2629), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -100057,40 +100256,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7830] = 4, + [7832] = 5, + ACTIONS(3669), 1, + anon_sym_else, + STATE(740), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(967), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(3358), 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, - 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, - ACTIONS(3360), 25, + ACTIONS(2677), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100116,41 +100290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [7893] = 5, - ACTIONS(3665), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(967), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(3364), 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(3362), 25, + ACTIONS(2679), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -100176,17 +100316,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7958] = 6, - ACTIONS(3604), 1, - anon_sym_EQ_GT, - ACTIONS(3668), 1, - anon_sym_DOT, - ACTIONS(3670), 1, - anon_sym_QMARK, + [7897] = 5, + ACTIONS(3676), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1780), 24, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3359), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100211,10 +100350,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1778), 25, + ACTIONS(3357), 25, anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_LBRACK, @@ -100231,20 +100369,21 @@ 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, anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8025] = 4, + [7962] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(967), 2, + STATE(966), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3352), 25, + ACTIONS(2681), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -100270,7 +100409,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3354), 25, + ACTIONS(2683), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100296,14 +100435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [8088] = 4, + [8025] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(967), 2, + STATE(966), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3369), 25, + ACTIONS(3357), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -100329,7 +100468,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3371), 25, + ACTIONS(3359), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100355,40 +100494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [8151] = 5, - ACTIONS(3655), 1, - anon_sym_else, - STATE(773), 1, - sym_else_clause, + [8088] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2606), 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(2608), 25, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3368), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -100414,15 +100527,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8215] = 5, - ACTIONS(3655), 1, + 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_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, + [8151] = 5, + ACTIONS(3689), 1, anon_sym_else, - STATE(824), 1, + STATE(729), 1, sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2650), 24, + ACTIONS(2627), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100447,7 +100586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(2652), 25, + ACTIONS(2629), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -100473,15 +100612,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8279] = 5, - ACTIONS(3655), 1, + [8215] = 5, + ACTIONS(3689), 1, anon_sym_else, - STATE(822), 1, + STATE(740), 1, sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2640), 24, + ACTIONS(2677), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100506,7 +100645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(2642), 25, + ACTIONS(2679), 25, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, @@ -100532,17 +100671,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8343] = 6, - ACTIONS(1628), 1, + [8279] = 6, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3476), 24, + ACTIONS(3497), 24, anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100567,7 +100706,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(3478), 24, + ACTIONS(3499), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100592,11 +100731,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, + [8345] = 5, + ACTIONS(3689), 1, + anon_sym_else, + STATE(758), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, [8409] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3528), 24, + ACTIONS(3549), 24, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -100621,7 +100819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1643), 26, + ACTIONS(1653), 26, anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100648,50 +100846,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8468] = 13, - ACTIONS(3674), 1, + [8468] = 14, + ACTIONS(1482), 1, anon_sym_DASH, - STATE(866), 1, - sym_operator, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, STATE(978), 1, aux_sym_expression_repeat1, + STATE(1960), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1356), 2, + ACTIONS(1469), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(2056), 2, + ACTIONS(1485), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3672), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3676), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1354), 6, + ACTIONS(1471), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(57), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100701,8 +100901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100713,30 +100912,32 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [8546] = 10, - ACTIONS(1470), 1, + [8548] = 11, + ACTIONS(1463), 1, anon_sym_DASH, - STATE(865), 1, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + STATE(869), 1, sym_operator, - STATE(982), 1, + STATE(984), 1, aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1375), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(1472), 2, + ACTIONS(1465), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1354), 6, + ACTIONS(1371), 6, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_COMMA, anon_sym_catch, anon_sym_else, - ACTIONS(1468), 9, + ACTIONS(1461), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -100746,7 +100947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(372), 12, + STATE(365), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100759,7 +100960,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(1466), 15, + ACTIONS(1459), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -100774,13 +100975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [8618] = 13, + [8622] = 14, ACTIONS(61), 1, anon_sym_DASH, - STATE(979), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(978), 1, aux_sym_expression_repeat1, - STATE(1807), 1, + STATE(1960), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -100788,10 +100990,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1444), 2, + ACTIONS(1457), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -100811,14 +101013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1446), 6, + ACTIONS(1455), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100828,8 +101030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100840,50 +101041,115 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [8696] = 13, - ACTIONS(1487), 1, + [8702] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(979), 1, - aux_sym_expression_repeat1, - STATE(1807), 1, + STATE(868), 1, sym_operator, + STATE(980), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 2, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1375), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(1490), 2, + 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_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, + [8776] = 14, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3695), 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(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2066), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(3693), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1474), 6, + ACTIONS(1371), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(1481), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100893,8 +101159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100905,50 +101170,52 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [8774] = 13, - ACTIONS(3680), 1, + [8856] = 14, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3701), 1, anon_sym_DASH, - STATE(865), 1, + STATE(869), 1, sym_operator, - STATE(982), 1, + STATE(984), 1, aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1375), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(1472), 2, + ACTIONS(1465), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2213), 2, + STATE(2209), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1468), 4, + ACTIONS(1461), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3678), 5, + ACTIONS(3699), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3682), 5, + ACTIONS(3703), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1354), 6, + ACTIONS(1371), 6, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_COMMA, anon_sym_catch, anon_sym_else, - ACTIONS(1466), 10, + ACTIONS(1459), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100958,8 +101225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(372), 10, + STATE(365), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -100970,50 +101236,52 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [8852] = 13, - ACTIONS(1487), 1, + [8936] = 14, + ACTIONS(61), 1, anon_sym_DASH, - STATE(981), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1930), 1, + STATE(2016), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(1490), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1474), 6, + ACTIONS(1455), 6, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_COMMA, anon_sym_catch, anon_sym_else, - ACTIONS(1481), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101023,8 +101291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101035,50 +101302,52 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [8930] = 13, - ACTIONS(61), 1, + [9016] = 14, + ACTIONS(1482), 1, anon_sym_DASH, - STATE(981), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1930), 1, + STATE(2016), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1444), 2, + ACTIONS(1469), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(2228), 2, + ACTIONS(1485), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1446), 6, + ACTIONS(1471), 6, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_COMMA, anon_sym_catch, anon_sym_else, - ACTIONS(57), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101088,8 +101357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101100,59 +101368,50 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [9008] = 10, - ACTIONS(1498), 1, + [9096] = 13, + ACTIONS(1482), 1, anon_sym_DASH, - STATE(866), 1, - sym_operator, - STATE(978), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(986), 1, aux_sym_expression_repeat1, + STATE(1990), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1356), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(1354), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(59), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1479), 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(199), 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), 15, + ACTIONS(1473), 5, anon_sym_STAR, - anon_sym_TILDE, 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(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, anon_sym_EQ_EQ, @@ -101161,17 +101420,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [9080] = 4, - ACTIONS(1888), 1, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [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(1784), 19, - anon_sym_DOT, + ACTIONS(1755), 17, anon_sym_this, - anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -101188,14 +101459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 27, - sym__lookback_semicolon, + 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, @@ -101216,47 +101487,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9138] = 12, - ACTIONS(1487), 1, + [9234] = 13, + ACTIONS(1482), 1, anon_sym_DASH, - STATE(985), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1490), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1474), 6, + ACTIONS(1471), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(1481), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101266,8 +101539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101278,18 +101550,68 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [9212] = 6, - ACTIONS(1888), 1, + [9310] = 4, + ACTIONS(1757), 1, anon_sym_COLON, - ACTIONS(3684), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 19, anon_sym_DOT, - ACTIONS(3686), 1, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9368] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 17, + ACTIONS(1755), 19, + anon_sym_DOT, anon_sym_this, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -101306,13 +101628,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 27, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [9423] = 6, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3709), 1, + anon_sym_DOT, + ACTIONS(3711), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + 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, @@ -101334,47 +101711,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9274] = 12, - ACTIONS(1487), 1, + [9484] = 14, + ACTIONS(61), 1, anon_sym_DASH, - STATE(987), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(995), 1, aux_sym_expression_repeat1, - STATE(1866), 1, + STATE(1826), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1490), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 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(1478), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1474), 6, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_catch, - anon_sym_else, - ACTIONS(1481), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101384,8 +101763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101396,15 +101774,14 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [9348] = 3, + [9561] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1725), 20, + ACTIONS(1875), 19, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, - anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -101421,10 +101798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1722), 26, + 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, @@ -101448,14 +101826,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9403] = 3, + [9616] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 19, + ACTIONS(1823), 20, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -101472,11 +101851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 27, + ACTIONS(1821), 26, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, @@ -101500,47 +101878,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9458] = 13, - ACTIONS(61), 1, + [9671] = 14, + ACTIONS(1482), 1, anon_sym_DASH, - STATE(994), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(995), 1, aux_sym_expression_repeat1, - STATE(1829), 1, + STATE(1826), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1444), 2, + ACTIONS(1469), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(2228), 2, + ACTIONS(1485), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1446), 3, + ACTIONS(1471), 3, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_COMMA, - ACTIONS(59), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101550,8 +101930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101562,11 +101941,11 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [9533] = 3, + [9748] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1850), 20, + ACTIONS(1995), 20, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -101587,7 +101966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1848), 26, + ACTIONS(1993), 26, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -101614,47 +101993,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9588] = 12, - ACTIONS(3690), 1, + [9803] = 11, + ACTIONS(3717), 1, anon_sym_DASH, - STATE(996), 1, - aux_sym_expression_repeat1, - STATE(1360), 1, + ACTIONS(3721), 1, + anon_sym_DOT_DOT_DOT, + STATE(881), 1, sym_operator, + STATE(992), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1472), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3719), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2258), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(1468), 4, + 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, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1448), 5, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(3688), 5, + STATE(996), 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(3713), 14, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3692), 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, + [9874] = 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, - ACTIONS(1466), 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(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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -101664,22 +102101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(372), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [9661] = 3, + 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(1830), 20, + ACTIONS(1766), 20, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -101700,7 +102130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1828), 26, + ACTIONS(1763), 26, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -101727,47 +102157,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9716] = 13, - ACTIONS(1487), 1, + [9984] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(994), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(986), 1, aux_sym_expression_repeat1, - STATE(1829), 1, + STATE(1990), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(1490), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1474), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(1484), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1481), 10, + 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, @@ -101777,8 +102208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101789,11 +102219,11 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [9791] = 3, + [10059] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1775), 20, + ACTIONS(1761), 20, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -101814,7 +102244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1772), 26, + ACTIONS(1759), 26, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -101841,46 +102271,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9846] = 12, - ACTIONS(61), 1, + [10114] = 13, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3725), 1, anon_sym_DASH, - STATE(987), 1, + STATE(1000), 1, aux_sym_expression_repeat1, - STATE(1866), 1, + STATE(1372), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1465), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2261), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1461), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + 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(65), 5, + ACTIONS(3727), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1548), 5, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(57), 10, + ACTIONS(1459), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101890,8 +102322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(365), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -101902,17 +102333,18 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [9919] = 6, - ACTIONS(1888), 1, + [10189] = 6, + ACTIONS(1757), 1, anon_sym_COLON, - ACTIONS(3694), 1, + ACTIONS(3729), 1, anon_sym_DOT, - ACTIONS(3696), 1, + ACTIONS(3731), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 17, + ACTIONS(1755), 18, + anon_sym_in, anon_sym_this, anon_sym_BANG, anon_sym_DASH, @@ -101930,13 +102362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 26, - sym__lookback_semicolon, + ACTIONS(1753), 24, anon_sym_STAR, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -101957,11 +102387,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [9980] = 3, + [10249] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1892), 19, + ACTIONS(1875), 19, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -101981,13 +102411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1890), 27, + ACTIONS(1873), 26, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -102009,28 +102438,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [10035] = 10, - ACTIONS(3702), 1, - anon_sym_DASH, - STATE(878), 1, - sym_operator, - STATE(990), 1, - aux_sym_expression_repeat1, + [10303] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1755), 19, anon_sym_DOT, + anon_sym_this, anon_sym_QMARK, - ACTIONS(3704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1354), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(3700), 9, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -102039,22 +102458,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(993), 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(3698), 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_LT_LT, anon_sym_GT_GT_GT, @@ -102068,18 +102486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [10104] = 6, - ACTIONS(1888), 1, - anon_sym_COLON, - ACTIONS(3706), 1, + 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(3708), 1, + ACTIONS(3735), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 18, - anon_sym_in, + ACTIONS(1755), 17, anon_sym_this, anon_sym_BANG, anon_sym_DASH, @@ -102097,10 +102516,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 24, + 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, @@ -102122,13 +102543,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [10164] = 4, - ACTIONS(1888), 1, - anon_sym_COLON, + [10417] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 19, + ACTIONS(1755), 19, anon_sym_DOT, anon_sym_this, anon_sym_QMARK, @@ -102148,11 +102567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 25, + 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, @@ -102174,13 +102594,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [10220] = 4, - ACTIONS(1888), 1, + [10471] = 4, + ACTIONS(1757), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 20, + ACTIONS(1755), 20, anon_sym_DOT, anon_sym_in, anon_sym_this, @@ -102201,7 +102621,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 24, + 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, + 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, + [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(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, + 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, @@ -102226,11 +102700,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [10276] = 3, + [10587] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 18, + ACTIONS(1753), 18, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102249,7 +102723,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1784), 27, + ACTIONS(1755), 27, anon_sym_this, anon_sym_AT, anon_sym_catch, @@ -102277,46 +102751,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [10330] = 5, - ACTIONS(3710), 1, - anon_sym_DOT, - ACTIONS(3712), 1, - anon_sym_QMARK, + [10641] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3743), 1, + anon_sym_RBRACK, + STATE(1062), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + STATE(2886), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 17, - anon_sym_this, + 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_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(1782), 26, - sym__lookback_semicolon, + ACTIONS(15), 5, 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(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, @@ -102325,21 +102802,40 @@ 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, + [10718] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [10388] = 3, + ACTIONS(1504), 1, + anon_sym_DASH, + 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(1892), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -102348,22 +102844,22 @@ 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(1890), 26, - sym__lookback_semicolon, + 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_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, @@ -102376,23 +102872,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [10442] = 6, - ACTIONS(1888), 1, - anon_sym_COLON, - ACTIONS(3714), 1, - anon_sym_DOT, - ACTIONS(3716), 1, - anon_sym_QMARK, + [10789] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 17, + ACTIONS(1761), 20, + anon_sym_DOT, anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -102409,10 +102897,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 25, + ACTIONS(1759), 24, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_TILDE, @@ -102435,16 +102922,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [10502] = 3, + [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(1784), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -102453,22 +102953,22 @@ 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(1782), 26, - sym__lookback_semicolon, + 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_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, @@ -102481,23 +102981,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [10556] = 14, + [10913] = 15, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3718), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(3720), 1, + ACTIONS(3757), 1, anon_sym_RBRACK, - STATE(1043), 1, + STATE(1016), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1369), 1, sym_operator, - STATE(2989), 1, + STATE(2901), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102505,7 +103002,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -102525,7 +103022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102535,8 +103032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102547,45 +103043,48 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [10631] = 13, - ACTIONS(1474), 1, - anon_sym_RBRACE, - ACTIONS(1487), 1, + [10990] = 15, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1009), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1766), 1, + STATE(1986), 1, sym_operator, + STATE(2936), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(1490), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1481), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102595,8 +103094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102607,55 +103105,49 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [10704] = 11, - ACTIONS(1498), 1, + [11067] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3722), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3761), 1, anon_sym_RPAREN, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3726), 1, - sym__lookback_semicolon, - STATE(289), 1, + ACTIONS(3763), 1, + anon_sym_COMMA, + STATE(1019), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, sym_operator, - STATE(1111), 1, - aux_sym_variable_declaration_repeat2, + STATE(2949), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 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(199), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -102664,28 +103156,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [10773] = 11, - ACTIONS(1498), 1, - anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3728), 1, - anon_sym_RPAREN, - ACTIONS(3730), 1, - sym__lookback_semicolon, - STATE(300), 1, - sym_operator, - STATE(1112), 1, - aux_sym_variable_declaration_repeat2, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [11144] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(59), 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, @@ -102694,22 +103186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 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), 15, + 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, @@ -102723,55 +103213,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [10842] = 11, - ACTIONS(1498), 1, + 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(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3732), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3765), 1, anon_sym_RPAREN, - ACTIONS(3734), 1, - sym__lookback_semicolon, - STATE(336), 1, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(1086), 1, - aux_sym_variable_declaration_repeat2, + STATE(2954), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 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(199), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -102780,20 +103268,32 @@ 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, + [11274] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [10911] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3738), 1, - anon_sym_COLON, - ACTIONS(3740), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3767), 1, + anon_sym_RPAREN, + ACTIONS(3769), 1, sym__lookback_semicolon, - STATE(275), 1, + STATE(325), 1, sym_operator, - STATE(1162), 1, - sym_access_identifiers, + STATE(1105), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, @@ -102810,7 +103310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102823,7 +103323,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -102838,27 +103338,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [10980] = 14, + [11345] = 15, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3742), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, anon_sym_COMMA, - STATE(985), 1, + ACTIONS(3771), 1, + anon_sym_RBRACK, + STATE(1031), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1369), 1, sym_operator, - STATE(2924), 1, - aux_sym__arg_list_repeat1, + STATE(3011), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -102878,7 +103379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102888,8 +103389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102900,45 +103400,47 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11055] = 13, - ACTIONS(1474), 1, - sym__lookback_semicolon, - ACTIONS(1487), 1, + [11422] = 14, + ACTIONS(1471), 1, + anon_sym_RBRACE, + ACTIONS(1482), 1, anon_sym_DASH, - STATE(1015), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1022), 1, aux_sym_expression_repeat1, - STATE(1821), 1, + STATE(1840), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 2, + ACTIONS(1469), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(1490), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1481), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102948,8 +103450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -102960,18 +103461,20 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11128] = 11, - ACTIONS(1498), 1, + [11497] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(3746), 1, + ACTIONS(3773), 1, anon_sym_RPAREN, - ACTIONS(3748), 1, + ACTIONS(3775), 1, sym__lookback_semicolon, - STATE(279), 1, + STATE(247), 1, sym_operator, - STATE(1084), 1, + STATE(1114), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -102989,7 +103492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103002,7 +103505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -103017,27 +103520,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [11197] = 14, + [11568] = 15, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3744), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(3750), 1, - anon_sym_RPAREN, - STATE(985), 1, + ACTIONS(3777), 1, + anon_sym_RBRACK, + STATE(1025), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1369), 1, sym_operator, - STATE(2873), 1, - aux_sym__arg_list_repeat1, + STATE(3019), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -103057,7 +103561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103067,8 +103571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103079,55 +103582,173 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11272] = 11, - ACTIONS(1498), 1, + [11645] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3752), 1, - anon_sym_RPAREN, - ACTIONS(3754), 1, - sym__lookback_semicolon, - STATE(260), 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(1106), 1, - aux_sym_variable_declaration_repeat2, + STATE(3051), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 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, + 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, + [11722] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3781), 1, + anon_sym_RPAREN, + STATE(1027), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + STATE(3063), 1, + aux_sym__arg_list_repeat1, + 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, - STATE(199), 12, + 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__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + [11799] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + 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(1986), 1, + sym_operator, + STATE(3075), 1, + aux_sym__arg_list_repeat1, + 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_TILDE, 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, @@ -103136,19 +103757,31 @@ 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, + [11876] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [11341] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(3756), 1, + ACTIONS(3785), 1, anon_sym_RPAREN, - ACTIONS(3758), 1, + ACTIONS(3787), 1, sym__lookback_semicolon, - STATE(280), 1, + STATE(326), 1, sym_operator, - STATE(1105), 1, + STATE(1116), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -103166,7 +103799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103179,7 +103812,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -103194,26 +103827,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [11947] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [11410] = 11, - ACTIONS(1498), 1, + ACTIONS(1371), 1, + anon_sym_RBRACE, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3760), 1, - anon_sym_RPAREN, - ACTIONS(3762), 1, - sym__lookback_semicolon, - STATE(294), 1, + STATE(890), 1, sym_operator, - STATE(1093), 1, - aux_sym_variable_declaration_repeat2, + STATE(1085), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, @@ -103224,7 +103857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103237,7 +103870,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -103252,44 +103885,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [12016] = 14, + ACTIONS(1471), 1, + anon_sym_COLON, + ACTIONS(1482), 1, + anon_sym_DASH, + ACTIONS(1491), 1, anon_sym_DOT_DOT_DOT, - [11479] = 3, + STATE(1030), 1, + aux_sym_expression_repeat1, + STATE(1857), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1892), 17, - anon_sym_this, + 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_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(1890), 27, - sym__closing_brace_marker, + ACTIONS(1473), 5, 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, + 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, @@ -103298,50 +103935,59 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11532] = 13, - ACTIONS(1354), 1, - anon_sym_in, - ACTIONS(3674), 1, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12091] = 15, + ACTIONS(61), 1, anon_sym_DASH, - STATE(883), 1, - sym_operator, - STATE(1024), 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(2875), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(3770), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2264), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3768), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3764), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3772), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3766), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103351,8 +103997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1026), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103363,45 +104008,48 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11605] = 13, - ACTIONS(1474), 1, - anon_sym_in, - ACTIONS(1487), 1, + [12168] = 15, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1023), 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(1879), 1, + STATE(1369), 1, sym_operator, + STATE(2871), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(1490), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1481), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103411,8 +104059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103423,25 +104070,28 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11678] = 13, + [12245] = 15, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(1446), 1, - anon_sym_in, - STATE(1023), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3793), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1879), 1, + STATE(1986), 1, sym_operator, + STATE(2935), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1444), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -103461,7 +104111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103471,8 +104121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103483,43 +104132,111 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11751] = 3, + [12322] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + 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(3040), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1725), 21, - anon_sym_DOT, - anon_sym_in, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + 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_DASH, + 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, + [12399] = 15, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3797), 1, + anon_sym_RPAREN, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, + sym_operator, + STATE(3103), 1, + aux_sym__arg_list_repeat1, + 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1722), 23, + ACTIONS(15), 5, 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(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, @@ -103528,16 +104245,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11804] = 3, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [12476] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1830), 21, + ACTIONS(1766), 21, anon_sym_DOT, anon_sym_in, anon_sym_this, @@ -103559,7 +104282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1828), 23, + ACTIONS(1763), 23, anon_sym_STAR, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103583,26 +104306,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [11857] = 14, - ACTIONS(61), 1, + [12529] = 14, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1371), 1, + anon_sym_RBRACE, + ACTIONS(3695), 1, anon_sym_DASH, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3774), 1, - anon_sym_RBRACK, - STATE(1042), 1, - aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(890), 1, sym_operator, - STATE(2875), 1, - aux_sym_array_repeat1, + STATE(1085), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2066), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -103610,19 +104334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3693), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103632,8 +104356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103644,45 +104367,97 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [11932] = 13, - ACTIONS(1474), 1, + [12604] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + 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), 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, + 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, + [12657] = 14, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1371), 1, anon_sym_COLON, - ACTIONS(1487), 1, + ACTIONS(3695), 1, anon_sym_DASH, - STATE(1028), 1, - aux_sym_expression_repeat1, - STATE(1890), 1, + STATE(884), 1, sym_operator, + STATE(1054), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(1490), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2066), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(3693), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1481), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103692,8 +104467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103704,25 +104478,28 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12005] = 10, - ACTIONS(1354), 1, - sym__lookback_semicolon, - ACTIONS(3780), 1, + [12732] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(881), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3799), 1, + anon_sym_RPAREN, + ACTIONS(3801), 1, + sym__lookback_semicolon, + STATE(310), 1, sym_operator, - STATE(1058), 1, - aux_sym_expression_repeat1, + STATE(1089), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3778), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -103732,7 +104509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(1041), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103745,55 +104522,9 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(3776), 15, - 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, - anon_sym_DOT_DOT_DOT, - [12072] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1775), 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(1772), 24, - sym__lookback_semicolon, + ACTIONS(57), 14, 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, @@ -103806,30 +104537,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [12803] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [12125] = 11, - ACTIONS(1498), 1, - anon_sym_DASH, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3784), 1, + ACTIONS(1371), 1, anon_sym_COLON, - ACTIONS(3786), 1, - sym__lookback_semicolon, - STATE(254), 1, + ACTIONS(1504), 1, + anon_sym_DASH, + STATE(884), 1, sym_operator, - STATE(1227), 1, - sym_access_identifiers, + STATE(1054), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, @@ -103840,7 +104567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -103853,7 +104580,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -103868,13 +104595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [12194] = 3, + [12872] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1725), 20, + ACTIONS(1761), 21, anon_sym_DOT, + anon_sym_in, anon_sym_this, anon_sym_QMARK, anon_sym_new, @@ -103894,8 +104621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1722), 24, - sym__lookback_semicolon, + ACTIONS(1759), 23, anon_sym_STAR, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103919,11 +104645,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [12247] = 3, + [12925] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1850), 21, + ACTIONS(1823), 21, anon_sym_DOT, anon_sym_in, anon_sym_this, @@ -103945,7 +104671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1848), 23, + ACTIONS(1821), 23, anon_sym_STAR, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103969,107 +104695,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [12300] = 14, - ACTIONS(61), 1, + [12978] = 14, + ACTIONS(1471), 1, + sym__lookback_semicolon, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RPAREN, - STATE(1017), 1, - aux_sym_expression_repeat1, - STATE(1367), 1, - sym_operator, - STATE(2947), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2228), 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), 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, + ACTIONS(1491), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [12375] = 14, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_RBRACK, - STATE(985), 1, + STATE(1044), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1881), 1, sym_operator, - STATE(3061), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1469), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104079,8 +104745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104091,19 +104756,21 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12450] = 11, - ACTIONS(1498), 1, + [13053] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3792), 1, - anon_sym_COLON, - ACTIONS(3794), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3803), 1, + anon_sym_RPAREN, + ACTIONS(3805), 1, sym__lookback_semicolon, - STATE(247), 1, + STATE(293), 1, sym_operator, - STATE(1117), 1, - sym_access_identifiers, + STATE(1088), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, @@ -104120,7 +104787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104133,7 +104800,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -104148,20 +104815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [13124] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [12519] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3796), 1, - anon_sym_COLON, - ACTIONS(3798), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3807), 1, + anon_sym_RPAREN, + ACTIONS(3809), 1, sym__lookback_semicolon, - STATE(269), 1, + STATE(312), 1, sym_operator, - STATE(1144), 1, - sym_access_identifiers, + STATE(1091), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, @@ -104178,7 +104846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104191,7 +104859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -104206,13 +104874,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [12588] = 3, + [13195] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 17, + 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, @@ -104229,14 +104900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 27, - sym__closing_brace_marker, + ACTIONS(1987), 23, 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, @@ -104257,14 +104924,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [12641] = 13, + [13248] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(1446), 1, - anon_sym_RBRACE, - STATE(1009), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1766), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -104272,12 +104939,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1444), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, + ACTIONS(1455), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, @@ -104295,7 +104963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104305,8 +104973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104317,15 +104984,62 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12714] = 3, + [13321] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1892), 20, - anon_sym_DOT, - anon_sym_in, + 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, + 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, + [13374] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 17, anon_sym_this, - anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -104342,11 +105056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1890), 24, + 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, @@ -104367,15 +105084,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [12767] = 3, + [13427] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1830), 20, + ACTIONS(1875), 20, anon_sym_DOT, + anon_sym_in, anon_sym_this, anon_sym_QMARK, - anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -104392,9 +105109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1828), 24, - sym__lookback_semicolon, + ACTIONS(1873), 24, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_TILDE, @@ -104417,47 +105134,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [12820] = 14, - ACTIONS(61), 1, + [13480] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACK, - STATE(985), 1, - aux_sym_expression_repeat1, - STATE(1859), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, + anon_sym_COLON, + ACTIONS(3813), 1, + sym__lookback_semicolon, + STATE(294), 1, sym_operator, - STATE(2918), 1, - aux_sym_array_repeat1, + STATE(1194), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + 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, - ACTIONS(65), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104466,38 +105193,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [13551] = 11, + ACTIONS(1371), 1, + sym__lookback_semicolon, + ACTIONS(3819), 1, + anon_sym_DASH, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(889), 1, + sym_operator, + STATE(1063), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3817), 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(1067), 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, - [12895] = 14, + ACTIONS(3815), 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, + [13620] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3802), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + anon_sym_COLON, + STATE(1030), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1857), 1, sym_operator, - STATE(2830), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104517,7 +105291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104527,8 +105301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104539,46 +105312,46 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [12970] = 14, - ACTIONS(61), 1, + [13695] = 13, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3695), 1, anon_sym_DASH, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3804), 1, - anon_sym_RPAREN, - STATE(1053), 1, + STATE(1048), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1369), 1, sym_operator, - STATE(3040), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2066), 2, sym__arithmeticOperator, sym__bitwiseOperator, + 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(15), 5, + ACTIONS(3693), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104588,8 +105361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104600,18 +105372,70 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13045] = 14, + [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, + 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, + [13821] = 15, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3744), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3806), 1, + ACTIONS(3825), 1, anon_sym_RPAREN, - STATE(985), 1, + STATE(1070), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1369), 1, sym_operator, - STATE(3014), 1, + STATE(3022), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -104619,7 +105443,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -104639,7 +105463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104649,8 +105473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104661,27 +105484,17 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13120] = 11, - ACTIONS(1498), 1, - anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3808), 1, - anon_sym_RPAREN, - ACTIONS(3810), 1, - sym__lookback_semicolon, - STATE(267), 1, - sym_operator, - STATE(1085), 1, - aux_sym_variable_declaration_repeat2, + [13898] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(59), 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, @@ -104690,22 +105503,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 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), 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_LT_LT, anon_sym_GT_GT_GT, @@ -104719,27 +105530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13189] = 11, - ACTIONS(1498), 1, - anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3812), 1, - anon_sym_RPAREN, - ACTIONS(3814), 1, - sym__lookback_semicolon, - STATE(270), 1, - sym_operator, - STATE(1098), 1, - aux_sym_variable_declaration_repeat2, + 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(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(59), 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, @@ -104748,22 +105553,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 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), 15, + 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, @@ -104777,25 +105580,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [13258] = 10, - ACTIONS(1354), 1, - anon_sym_in, - ACTIONS(3816), 1, + 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, - STATE(883), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3827), 1, + anon_sym_RPAREN, + ACTIONS(3829), 1, + sym__lookback_semicolon, + STATE(292), 1, sym_operator, - STATE(1024), 1, - aux_sym_expression_repeat1, + STATE(1092), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(3770), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3768), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -104805,7 +105615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(1026), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104818,7 +105628,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(3766), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -104833,20 +105643,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [14075] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [13325] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3818), 1, - anon_sym_RPAREN, - ACTIONS(3820), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3831), 1, + anon_sym_COLON, + ACTIONS(3833), 1, sym__lookback_semicolon, - STATE(283), 1, + STATE(267), 1, sym_operator, - STATE(1101), 1, - aux_sym_variable_declaration_repeat2, + STATE(1204), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, @@ -104863,7 +105674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104876,7 +105687,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -104891,27 +105702,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [13394] = 12, + [14146] = 15, ACTIONS(61), 1, anon_sym_DASH, - STATE(985), 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(1859), 1, + STATE(1986), 1, sym_operator, + STATE(2981), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1446), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, @@ -104929,7 +105743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104939,8 +105753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -104951,43 +105764,48 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13465] = 3, + [14223] = 14, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + sym__lookback_semicolon, + STATE(1044), 1, + aux_sym_expression_repeat1, + STATE(1881), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 19, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1457), 2, anon_sym_DOT, - anon_sym_this, anon_sym_QMARK, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 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, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1782), 25, + ACTIONS(15), 5, 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(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, @@ -104996,50 +105814,58 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13518] = 13, - ACTIONS(1354), 1, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [14298] = 14, + ACTIONS(1371), 1, sym__lookback_semicolon, - ACTIONS(3824), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3839), 1, anon_sym_DASH, - STATE(881), 1, + STATE(889), 1, sym_operator, - STATE(1058), 1, + STATE(1063), 1, aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 2, + ACTIONS(1375), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2259), 2, + STATE(2264), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3822), 5, + ACTIONS(3837), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3826), 5, + ACTIONS(3841), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105049,8 +105875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105061,18 +105886,20 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13591] = 14, + [14373] = 15, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3744), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3828), 1, + ACTIONS(3843), 1, anon_sym_RPAREN, - STATE(985), 1, + STATE(1069), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1369), 1, sym_operator, - STATE(2848), 1, + STATE(3079), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105080,7 +105907,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105100,7 +105927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105110,8 +105937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105122,108 +105948,57 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [13666] = 14, - ACTIONS(61), 1, + [14450] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACK, - STATE(985), 1, - aux_sym_expression_repeat1, - STATE(1859), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3845), 1, + anon_sym_COLON, + ACTIONS(3847), 1, + sym__lookback_semicolon, + STATE(270), 1, sym_operator, - STATE(2878), 1, - aux_sym_array_repeat1, + STATE(1340), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(59), 9, 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + 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, - [13741] = 14, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3832), 1, - anon_sym_RBRACK, - STATE(1035), 1, - aux_sym_expression_repeat1, - STATE(1367), 1, - sym_operator, - STATE(2893), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(57), 14, anon_sym_STAR, + anon_sym_TILDE, 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), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -105232,58 +106007,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [13816] = 13, - ACTIONS(1354), 1, - anon_sym_RBRACE, - ACTIONS(3674), 1, - anon_sym_DASH, - STATE(882), 1, - sym_operator, - STATE(1039), 1, - aux_sym_expression_repeat1, + [14521] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1356), 2, + ACTIONS(1995), 20, anon_sym_DOT, + anon_sym_this, anon_sym_QMARK, - STATE(2056), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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(3672), 5, + 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_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3676), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -105293,29 +106053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [13889] = 11, - ACTIONS(1498), 1, + 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(3724), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(3834), 1, + ACTIONS(3849), 1, anon_sym_RPAREN, - ACTIONS(3836), 1, + ACTIONS(3851), 1, sym__lookback_semicolon, - STATE(285), 1, + STATE(271), 1, sym_operator, - STATE(1092), 1, + STATE(1096), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105333,7 +106088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105346,7 +106101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -105361,26 +106116,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [13958] = 13, + [14645] = 15, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(1446), 1, - sym__lookback_semicolon, - STATE(1015), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3853), 1, + anon_sym_RPAREN, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1821), 1, + STATE(1986), 1, sym_operator, + STATE(2987), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1444), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105400,7 +106157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105410,96 +106167,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [14031] = 11, - ACTIONS(1498), 1, - anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3838), 1, - anon_sym_RPAREN, - ACTIONS(3840), 1, - sym__lookback_semicolon, - STATE(286), 1, - sym_operator, - STATE(1090), 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(199), 12, + 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, sym__rangeOperator, - ACTIONS(57), 15, - 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, - anon_sym_DOT_DOT_DOT, - [14100] = 14, + [14722] = 15, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3718), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3842), 1, - anon_sym_RBRACK, - STATE(1065), 1, + ACTIONS(3855), 1, + anon_sym_RPAREN, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1986), 1, sym_operator, - STATE(2850), 1, - aux_sym_array_repeat1, + STATE(2879), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105519,7 +106219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105529,8 +106229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105541,18 +106240,20 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [14175] = 11, - ACTIONS(1498), 1, + [14799] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3736), 1, + ACTIONS(3745), 1, anon_sym_LPAREN, - ACTIONS(3844), 1, + ACTIONS(3857), 1, anon_sym_COLON, - ACTIONS(3846), 1, + ACTIONS(3859), 1, sym__lookback_semicolon, - STATE(334), 1, + STATE(273), 1, sym_operator, - STATE(1160), 1, + STATE(1234), 1, sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -105570,7 +106271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105583,7 +106284,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -105598,25 +106299,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [14870] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [14244] = 10, - ACTIONS(1354), 1, - anon_sym_RBRACE, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(882), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3861), 1, + anon_sym_RPAREN, + ACTIONS(3863), 1, + sym__lookback_semicolon, + STATE(276), 1, sym_operator, - STATE(1039), 1, - aux_sym_expression_repeat1, + STATE(1099), 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(1356), 2, - anon_sym_DOT, - anon_sym_QMARK, ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, @@ -105627,7 +106330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105640,7 +106343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -105655,19 +106358,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [14941] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [14311] = 3, + ACTIONS(1504), 1, + anon_sym_DASH, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3865), 1, + anon_sym_RPAREN, + ACTIONS(3867), 1, + sym__lookback_semicolon, + STATE(277), 1, + sym_operator, + STATE(1104), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1775), 21, - anon_sym_DOT, - anon_sym_in, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -105676,19 +106389,22 @@ 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(1772), 23, + 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_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, @@ -105701,50 +106417,47 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14364] = 13, - ACTIONS(61), 1, + [15012] = 14, + ACTIONS(1371), 1, + anon_sym_in, + ACTIONS(3695), 1, anon_sym_DASH, - ACTIONS(1446), 1, - anon_sym_COLON, - STATE(1028), 1, - aux_sym_expression_repeat1, - STATE(1890), 1, + ACTIONS(3879), 1, + anon_sym_DOT_DOT_DOT, + STATE(887), 1, sym_operator, + STATE(1076), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1444), 2, + ACTIONS(1375), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(2228), 2, + ACTIONS(3875), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2272), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3873), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3869), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3877), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3871), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105754,8 +106467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1038), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105766,46 +106478,47 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [14437] = 14, - ACTIONS(61), 1, + [15087] = 14, + ACTIONS(1471), 1, + anon_sym_in, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3848), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1075), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1995), 1, sym_operator, - STATE(2915), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1469), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105815,8 +106528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105827,26 +106539,27 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [14512] = 14, + [15162] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RPAREN, - STATE(1077), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + anon_sym_in, + STATE(1075), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1995), 1, sym_operator, - STATE(2950), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -105866,7 +106579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105876,8 +106589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -105888,166 +106600,57 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [14587] = 12, - ACTIONS(3674), 1, + [15237] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(1050), 1, - aux_sym_expression_repeat1, - STATE(1367), 1, + 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, - STATE(2056), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(1354), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(59), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3672), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3676), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 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, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [14658] = 14, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3852), 1, - anon_sym_RPAREN, - STATE(1045), 1, - aux_sym_expression_repeat1, - STATE(1367), 1, - sym_operator, - STATE(2955), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2228), 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + 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, - [14733] = 13, - ACTIONS(1354), 1, - anon_sym_COLON, - ACTIONS(3674), 1, - anon_sym_DASH, - STATE(887), 1, - sym_operator, - STATE(1064), 1, - aux_sym_expression_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1356), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(2056), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3672), 5, + ACTIONS(57), 14, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3676), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106056,31 +106659,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [15308] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [14806] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3854), 1, - anon_sym_COLON, - ACTIONS(3856), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3885), 1, + anon_sym_RPAREN, + ACTIONS(3887), 1, sym__lookback_semicolon, - STATE(272), 1, + STATE(282), 1, sym_operator, - STATE(1154), 1, - sym_access_identifiers, + STATE(1108), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, @@ -106097,7 +106690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106110,7 +106703,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106125,19 +106718,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [15379] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [14875] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(3858), 1, + ACTIONS(3889), 1, anon_sym_RPAREN, - ACTIONS(3860), 1, + ACTIONS(3891), 1, sym__lookback_semicolon, - STATE(297), 1, + STATE(283), 1, sym_operator, - STATE(1109), 1, + STATE(1110), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106155,7 +106749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106168,7 +106762,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106183,18 +106777,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [15450] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [14944] = 3, + ACTIONS(1504), 1, + anon_sym_DASH, + 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(1850), 20, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -106203,20 +106808,22 @@ 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(1848), 24, - sym__lookback_semicolon, + 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_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, @@ -106229,23 +106836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [15521] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [14997] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(3862), 1, + ACTIONS(3897), 1, anon_sym_RPAREN, - ACTIONS(3864), 1, + ACTIONS(3899), 1, sym__lookback_semicolon, - STATE(263), 1, + STATE(287), 1, sym_operator, - STATE(1103), 1, + STATE(1113), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106263,7 +106867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106276,7 +106880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106291,25 +106895,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [15592] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [15066] = 10, - ACTIONS(1354), 1, - anon_sym_COLON, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(887), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3901), 1, + anon_sym_RPAREN, + ACTIONS(3903), 1, + sym__lookback_semicolon, + STATE(290), 1, sym_operator, - STATE(1064), 1, - aux_sym_expression_repeat1, + STATE(1115), 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(1356), 2, - anon_sym_DOT, - anon_sym_QMARK, ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, @@ -106320,7 +106926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106333,7 +106939,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106348,48 +106954,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [15663] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [15133] = 14, - ACTIONS(61), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACK, - STATE(1054), 1, - aux_sym_expression_repeat1, - STATE(1367), 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(3011), 1, - aux_sym_array_repeat1, + STATE(1087), 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, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + 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, - ACTIONS(65), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106398,31 +107013,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [15734] = 12, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [15208] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3868), 1, - anon_sym_RPAREN, - ACTIONS(3870), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3909), 1, + anon_sym_COLON, + ACTIONS(3911), 1, sym__lookback_semicolon, - STATE(259), 1, + STATE(262), 1, sym_operator, - STATE(1100), 1, - aux_sym_variable_declaration_repeat2, + STATE(1334), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, @@ -106439,7 +107044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106452,7 +107057,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106467,27 +107072,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [15277] = 14, + [15805] = 14, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3872), 1, - anon_sym_RPAREN, - STATE(985), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + anon_sym_RBRACE, + STATE(1022), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1840), 1, sym_operator, - STATE(2975), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106507,7 +107112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106517,8 +107122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106529,26 +107133,27 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [15352] = 11, - ACTIONS(1498), 1, + [15880] = 11, + ACTIONS(1371), 1, + anon_sym_in, + ACTIONS(3879), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3913), 1, anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3874), 1, - anon_sym_RPAREN, - ACTIONS(3876), 1, - sym__lookback_semicolon, - STATE(249), 1, + STATE(887), 1, sym_operator, - STATE(1089), 1, - aux_sym_variable_declaration_repeat2, + STATE(1076), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3875), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + ACTIONS(3873), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -106558,7 +107163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(1038), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106571,7 +107176,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(3871), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106586,48 +107191,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [15949] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [15421] = 14, - ACTIONS(61), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - STATE(1014), 1, - aux_sym_expression_repeat1, - STATE(1367), 1, + ACTIONS(3917), 1, + sym__lookback_semicolon, + STATE(246), 1, sym_operator, - STATE(2898), 1, - aux_sym__arg_list_repeat1, + STATE(2019), 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, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + 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, - ACTIONS(65), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106636,30 +107248,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [16017] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [15496] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3880), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3882), 1, + ACTIONS(3919), 1, sym__lookback_semicolon, - STATE(306), 1, + STATE(309), 1, sym_operator, - STATE(1095), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106677,7 +107277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106690,7 +107290,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106705,19 +107305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [16085] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [15565] = 11, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3724), 1, - anon_sym_DASH_GT, - ACTIONS(3884), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3886), 1, + ACTIONS(3921), 1, sym__lookback_semicolon, - STATE(273), 1, + STATE(318), 1, sym_operator, - STATE(1091), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106735,7 +107334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106748,7 +107347,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106763,13 +107362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [15634] = 12, + [16153] = 13, ACTIONS(61), 1, anon_sym_DASH, - STATE(1096), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(1093), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106777,10 +107377,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3888), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2228), 2, + ACTIONS(1506), 2, + anon_sym_catch, + anon_sym_else, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -106800,7 +107400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106810,8 +107410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106822,65 +107421,18 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [15704] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1892), 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(1890), 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, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, + [16225] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [15756] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3892), 1, + ACTIONS(3923), 1, sym__lookback_semicolon, - STATE(282), 1, + STATE(322), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106898,7 +107450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106911,7 +107463,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106926,17 +107478,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [16293] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [15822] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3894), 1, + ACTIONS(3925), 1, sym__lookback_semicolon, - STATE(277), 1, + STATE(245), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -106954,7 +107507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -106967,7 +107520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -106982,54 +107535,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [15888] = 10, - ACTIONS(1498), 1, + [16361] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3890), 1, - anon_sym_RPAREN, - ACTIONS(3896), 1, - sym__lookback_semicolon, - STATE(293), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(1976), 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, + ACTIONS(1566), 2, + anon_sym_catch, + anon_sym_else, + 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(199), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -107038,48 +107583,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [15954] = 20, - ACTIONS(1399), 1, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [16433] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3898), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3901), 1, + ACTIONS(3929), 1, anon_sym_this, - STATE(215), 1, + STATE(205), 1, sym__lhs_expression, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(1087), 1, + STATE(1101), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1395), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3007), 9, + ACTIONS(1379), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -107089,7 +107644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1397), 15, + ACTIONS(1381), 15, anon_sym_AT, anon_sym_macro, anon_sym_abstract, @@ -107105,74 +107660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [16040] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - STATE(1110), 1, - aux_sym_expression_repeat1, - STATE(1367), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1448), 2, - anon_sym_catch, - anon_sym_else, - STATE(2228), 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), 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, + [16519] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [16110] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3904), 1, + ACTIONS(3931), 1, sym__lookback_semicolon, - STATE(258), 1, + STATE(328), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107190,7 +107689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107203,7 +107702,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -107218,17 +107717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [16587] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [16176] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3906), 1, + ACTIONS(3933), 1, sym__lookback_semicolon, - STATE(290), 1, + STATE(275), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107246,7 +107746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107259,7 +107759,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -107274,54 +107774,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [16242] = 10, - ACTIONS(1498), 1, + [16655] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3890), 1, - anon_sym_RPAREN, - ACTIONS(3908), 1, - sym__lookback_semicolon, - STATE(278), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(1976), 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, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + 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(199), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -107330,54 +107822,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [16308] = 10, - ACTIONS(1498), 1, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [16727] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3890), 1, - anon_sym_RPAREN, - ACTIONS(3910), 1, - sym__lookback_semicolon, - STATE(288), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(1097), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, sym_operator, - STATE(1976), 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, + ACTIONS(3937), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + 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(199), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -107386,17 +107881,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, + [16799] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [16374] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3912), 1, + ACTIONS(3939), 1, sym__lookback_semicolon, - STATE(295), 1, + STATE(279), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107414,7 +107921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107427,7 +107934,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -107442,12 +107949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [16440] = 3, + [16867] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 17, + ACTIONS(1755), 17, anon_sym_this, anon_sym_BANG, anon_sym_DASH, @@ -107465,7 +107971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 26, + ACTIONS(1753), 26, sym__lookback_semicolon, anon_sym_STAR, anon_sym_RPAREN, @@ -107492,16 +107998,209 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [16492] = 10, - ACTIONS(1498), 1, + [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, + STATE(1111), 1, + aux_sym_expression_repeat1, + STATE(1372), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1371), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + 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_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, + 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, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [17163] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3914), 1, + ACTIONS(3947), 1, sym__lookback_semicolon, - STATE(307), 1, + STATE(281), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107519,7 +108218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107532,7 +108231,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -107547,45 +108246,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [17231] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [16558] = 12, - ACTIONS(61), 1, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(985), 1, - aux_sym_expression_repeat1, - STATE(1859), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3949), 1, + sym__lookback_semicolon, + STATE(334), 1, sym_operator, + STATE(2019), 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(3916), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + 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, - ACTIONS(65), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107594,59 +108303,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [16628] = 20, - ACTIONS(1312), 1, + [17299] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3918), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3920), 1, + ACTIONS(3929), 1, anon_sym_this, - STATE(215), 1, + STATE(205), 1, sym__lhs_expression, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(1087), 1, + STATE(1101), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1436), 2, + ACTIONS(1339), 2, anon_sym_LPAREN, anon_sym_AT_COLON, - STATE(3007), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -107656,7 +108353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1438), 15, + ACTIONS(1341), 15, anon_sym_AT, anon_sym_macro, anon_sym_abstract, @@ -107672,16 +108369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [16714] = 10, - ACTIONS(1498), 1, + [17385] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3922), 1, + ACTIONS(3951), 1, sym__lookback_semicolon, - STATE(298), 1, + STATE(284), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107699,7 +108398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107712,7 +108411,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -107727,45 +108426,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [17453] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [16780] = 12, - ACTIONS(3680), 1, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(1114), 1, - aux_sym_expression_repeat1, - STATE(1360), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3953), 1, + sym__lookback_semicolon, + STATE(240), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1354), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(1472), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2213), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(1468), 4, + 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, - ACTIONS(3678), 5, + 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, - ACTIONS(3682), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1466), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107774,65 +108483,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(372), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [16850] = 10, - ACTIONS(1498), 1, + [17521] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3890), 1, - anon_sym_RPAREN, - ACTIONS(3924), 1, - sym__lookback_semicolon, - STATE(262), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(1976), 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, + ACTIONS(3955), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(199), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -107841,17 +108531,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, + [17593] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [16916] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3926), 1, + ACTIONS(3957), 1, sym__lookback_semicolon, - STATE(287), 1, + STATE(286), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107869,7 +108571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107882,7 +108584,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -107897,13 +108599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [16982] = 12, + [17661] = 13, ACTIONS(61), 1, anon_sym_DASH, - STATE(985), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(986), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1990), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107911,10 +108614,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3928), 2, + ACTIONS(1455), 2, + sym__closing_brace_marker, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -107934,7 +108637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107944,8 +108647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107956,16 +108658,18 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17052] = 10, - ACTIONS(1498), 1, + [17733] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3930), 1, + ACTIONS(3959), 1, sym__lookback_semicolon, - STATE(276), 1, + STATE(288), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -107983,7 +108687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -107996,7 +108700,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -108011,139 +108715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [17801] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [17118] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3918), 1, - sym_identifier, - ACTIONS(3920), 1, - anon_sym_this, - STATE(215), 1, - sym__lhs_expression, - STATE(1003), 1, - sym_member_expression, - STATE(1087), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1384), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - STATE(3007), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(1386), 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, - [17204] = 10, - ACTIONS(1498), 1, - anon_sym_DASH, - ACTIONS(3890), 1, - anon_sym_RPAREN, - ACTIONS(3932), 1, - sym__lookback_semicolon, - STATE(284), 1, - sym_operator, - STATE(1976), 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(199), 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), 15, - 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, - anon_sym_DOT_DOT_DOT, - [17270] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3934), 1, + ACTIONS(3961), 1, sym__lookback_semicolon, - STATE(239), 1, + STATE(289), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108161,7 +108744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108174,7 +108757,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -108189,141 +108772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [17869] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [17336] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3918), 1, - sym_identifier, - ACTIONS(3920), 1, - anon_sym_this, - STATE(215), 1, - sym__lhs_expression, - STATE(1003), 1, - sym_member_expression, - STATE(1087), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1440), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - STATE(3007), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(1442), 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, - [17422] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - STATE(1102), 1, - aux_sym_expression_repeat1, - STATE(1367), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2228), 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [17492] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3938), 1, + ACTIONS(3963), 1, sym__lookback_semicolon, - STATE(304), 1, + STATE(248), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108341,7 +108801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108354,7 +108814,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -108369,75 +108829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [17937] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [17558] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - STATE(985), 1, - aux_sym_expression_repeat1, - STATE(1859), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1548), 2, - anon_sym_catch, - anon_sym_else, - STATE(2228), 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [17628] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3940), 1, + ACTIONS(3965), 1, sym__lookback_semicolon, - STATE(292), 1, + STATE(291), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108455,7 +108858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108468,7 +108871,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -108483,17 +108886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + [18005] = 11, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - [17694] = 10, - ACTIONS(1498), 1, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3890), 1, + ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(3942), 1, + ACTIONS(3967), 1, sym__lookback_semicolon, - STATE(305), 1, + STATE(243), 1, sym_operator, - STATE(1976), 1, + STATE(2019), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108511,7 +108915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(199), 12, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108524,7 +108928,7 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + ACTIONS(57), 14, anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, @@ -108539,48 +108943,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [17760] = 20, - ACTIONS(1312), 1, + [18073] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3918), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3920), 1, + ACTIONS(3929), 1, anon_sym_this, - STATE(215), 1, + STATE(205), 1, sym__lhs_expression, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(1087), 1, + STATE(1101), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 2, + ACTIONS(1447), 2, anon_sym_LPAREN, anon_sym_AT_COLON, - STATE(3007), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -108590,7 +108993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(1390), 15, + ACTIONS(1449), 15, anon_sym_AT, anon_sym_macro, anon_sym_abstract, @@ -108606,12 +109009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [17846] = 12, + [18159] = 13, ACTIONS(61), 1, anon_sym_DASH, - STATE(987), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(1109), 1, aux_sym_expression_repeat1, - STATE(1866), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108619,10 +109024,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1446), 2, - sym__closing_brace_marker, + ACTIONS(3969), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108642,7 +109047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108652,8 +109057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108664,43 +109068,42 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [17916] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3944), 1, - sym__lookback_semicolon, - STATE(1242), 1, - aux_sym_expression_repeat1, - STATE(1778), 1, - sym_operator, + [18231] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + 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, - ACTIONS(65), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108710,53 +109113,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [17985] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(3946), 1, + 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(1242), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1216), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108766,8 +109164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108778,51 +109175,45 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18054] = 9, - ACTIONS(1498), 1, + [18354] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(3948), 1, - anon_sym_COLON, - ACTIONS(3950), 1, + ACTIONS(3977), 1, sym__lookback_semicolon, - STATE(252), 1, + STATE(1336), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 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(199), 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), 15, + ACTIONS(3971), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -108831,15 +109222,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [18117] = 12, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [18425] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3952), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3979), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108847,7 +109250,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108867,7 +109270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108877,8 +109280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108889,42 +109291,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18186] = 12, - ACTIONS(3952), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [18496] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, + ACTIONS(3979), 1, + sym__lookback_semicolon, STATE(1155), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108934,8 +109338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -108946,14 +109349,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18255] = 12, + [18567] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3790), 1, - anon_sym_RBRACK, - STATE(1271), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3981), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -108961,7 +109366,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -108981,7 +109386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108991,8 +109396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109003,14 +109407,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18324] = 12, + [18638] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3960), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3983), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109018,7 +109424,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109038,7 +109444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109048,8 +109454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109060,14 +109465,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18393] = 12, + [18709] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3962), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3985), 1, + anon_sym_RPAREN, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109075,7 +109482,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109095,7 +109502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109105,8 +109512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109117,14 +109523,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18462] = 12, + [18780] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3964), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3987), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109132,7 +109540,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109152,7 +109560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109162,8 +109570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109174,14 +109581,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18531] = 12, + [18851] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3966), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3989), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109189,7 +109598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109209,7 +109618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109219,8 +109628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109231,14 +109639,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18600] = 12, + [18922] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3968), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3991), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109246,7 +109656,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109266,7 +109676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109276,8 +109686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109288,99 +109697,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18669] = 12, - ACTIONS(61), 1, + [18993] = 13, + ACTIONS(1371), 1, + anon_sym_in, + ACTIONS(3695), 1, anon_sym_DASH, - ACTIONS(3970), 1, - sym__lookback_semicolon, - STATE(1242), 1, - aux_sym_expression_repeat1, - STATE(1778), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2228), 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), 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, + ACTIONS(3879), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [18738] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(3970), 1, - sym__lookback_semicolon, - STATE(1177), 1, + STATE(1132), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1565), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3875), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2272), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3873), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3869), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3877), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3871), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109390,8 +109744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1038), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109402,42 +109755,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18807] = 12, - ACTIONS(3956), 1, + [19064] = 13, + ACTIONS(1471), 1, + anon_sym_in, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(3972), 1, - sym__lookback_semicolon, - STATE(1190), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1131), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1777), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109447,8 +109802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109459,14 +109813,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18876] = 12, + [19135] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3974), 1, - anon_sym_RPAREN, - STATE(985), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + anon_sym_in, + STATE(1131), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1777), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109474,7 +109830,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109494,7 +109850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109504,8 +109860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109516,128 +109871,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [18945] = 12, - ACTIONS(3420), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, - anon_sym_DASH, - STATE(1275), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3782), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3958), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3776), 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, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [19014] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(3976), 1, - sym__lookback_semicolon, - STATE(1122), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3782), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3958), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3776), 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, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [19083] = 12, + [19206] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3978), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3993), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -109645,7 +109888,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -109665,7 +109908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109675,8 +109918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109687,42 +109929,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19152] = 12, - ACTIONS(3956), 1, + [19277] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(3978), 1, + ACTIONS(3995), 1, sym__lookback_semicolon, - STATE(1216), 1, + STATE(1138), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109732,8 +109976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109744,42 +109987,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19221] = 12, - ACTIONS(3956), 1, + [19348] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(3980), 1, + ACTIONS(3993), 1, sym__lookback_semicolon, - STATE(1217), 1, + STATE(1158), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109789,8 +110034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109801,42 +110045,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19290] = 12, - ACTIONS(3440), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [19419] = 13, + ACTIONS(61), 1, anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3997), 1, + anon_sym_while, STATE(1139), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109846,8 +110092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109858,42 +110103,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19359] = 12, - ACTIONS(3956), 1, + [19490] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(3982), 1, + ACTIONS(3999), 1, sym__lookback_semicolon, - STATE(1140), 1, + STATE(1159), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109903,8 +110150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -109915,99 +110161,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19428] = 12, - ACTIONS(3410), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [19561] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1255), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3782), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3958), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3776), 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, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(1041), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [19497] = 12, - ACTIONS(3422), 1, + ACTIONS(4001), 1, sym__lookback_semicolon, - ACTIONS(3956), 1, - anon_sym_DASH, - STATE(1282), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110017,8 +110208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110029,14 +110219,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19566] = 12, + [19632] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3984), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4003), 1, + anon_sym_while, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110044,7 +110236,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110064,7 +110256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110074,8 +110266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110086,14 +110277,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19635] = 12, + [19703] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3986), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4005), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110101,7 +110294,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110121,7 +110314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110131,8 +110324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110143,14 +110335,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19704] = 12, + [19774] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3800), 1, - anon_sym_RBRACK, - STATE(1148), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4007), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110158,7 +110352,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110178,7 +110372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110188,8 +110382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110200,42 +110393,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19773] = 12, - ACTIONS(3431), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [19845] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1150), 1, + ACTIONS(4005), 1, + sym__lookback_semicolon, + STATE(1191), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110245,8 +110440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110257,42 +110451,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19842] = 12, - ACTIONS(2658), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [19916] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1151), 1, + ACTIONS(4009), 1, + sym__lookback_semicolon, + STATE(1339), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110302,8 +110498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110314,14 +110509,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [19911] = 9, - ACTIONS(1498), 1, + [19987] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3988), 1, - anon_sym_COLON, - ACTIONS(3990), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4011), 1, sym__lookback_semicolon, - STATE(271), 1, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110329,36 +110526,144 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 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, + 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, + [20058] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4011), 1, + sym__lookback_semicolon, + STATE(1161), 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, - STATE(199), 12, + 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__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + [20129] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4013), 1, + sym__lookback_semicolon, + STATE(1165), 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_TILDE, 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, @@ -110367,15 +110672,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [19974] = 12, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [20200] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3992), 1, - anon_sym_while, - STATE(985), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4009), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110383,7 +110700,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110403,7 +110720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110413,8 +110730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110425,14 +110741,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20043] = 12, + [20271] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3994), 1, - anon_sym_RBRACK, - STATE(1153), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4015), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110440,7 +110758,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110460,7 +110778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110470,8 +110788,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, + [20342] = 13, + ACTIONS(3449), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1225), 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, @@ -110482,42 +110857,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20112] = 12, - ACTIONS(3956), 1, + [20413] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(3996), 1, + ACTIONS(4017), 1, sym__lookback_semicolon, - STATE(1221), 1, + STATE(1144), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110527,8 +110904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110539,42 +110915,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20181] = 12, - ACTIONS(61), 1, + [20484] = 13, + ACTIONS(3451), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(3998), 1, - anon_sym_RBRACK, - STATE(985), 1, + STATE(1232), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110584,8 +110962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110596,42 +110973,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20250] = 12, - ACTIONS(61), 1, + [20555] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4000), 1, + ACTIONS(4019), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1140), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110641,8 +111020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110653,14 +111031,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20319] = 12, + [20626] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4002), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4021), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110668,7 +111048,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110688,7 +111068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110698,8 +111078,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, + [20697] = 13, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4021), 1, + sym__lookback_semicolon, + STATE(1226), 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, @@ -110710,14 +111147,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20388] = 12, + [20768] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4004), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4023), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110725,7 +111164,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110745,7 +111184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110755,8 +111194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110767,42 +111205,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20457] = 12, - ACTIONS(3956), 1, + [20839] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4006), 1, + ACTIONS(4025), 1, sym__lookback_semicolon, - STATE(1158), 1, + STATE(1245), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110812,8 +111252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110824,14 +111263,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20526] = 12, + [20910] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4008), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4027), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110839,7 +111280,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110859,7 +111300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110869,8 +111310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110881,14 +111321,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20595] = 9, - ACTIONS(1498), 1, + [20981] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4010), 1, - anon_sym_COLON, - ACTIONS(4012), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4029), 1, sym__lookback_semicolon, - STATE(274), 1, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110896,36 +111338,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 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(199), 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), 15, + ACTIONS(15), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -110934,15 +111368,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [20658] = 12, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [21052] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4014), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4031), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -110950,7 +111396,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -110970,7 +111416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110980,8 +111426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -110992,42 +111437,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20727] = 12, - ACTIONS(2648), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [21123] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1164), 1, + ACTIONS(4031), 1, + sym__lookback_semicolon, + STATE(1173), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111037,8 +111484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111049,42 +111495,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20796] = 12, - ACTIONS(3956), 1, + [21194] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4000), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4033), 1, sym__lookback_semicolon, - STATE(1262), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111094,8 +111542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111106,42 +111553,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20865] = 12, - ACTIONS(61), 1, + [21265] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4016), 1, + ACTIONS(4027), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1193), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111151,8 +111600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111163,42 +111611,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [20934] = 12, - ACTIONS(3956), 1, + [21336] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4016), 1, + ACTIONS(4035), 1, sym__lookback_semicolon, - STATE(1166), 1, + STATE(1157), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111208,8 +111658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111220,51 +111669,103 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21003] = 9, - ACTIONS(1498), 1, + [21407] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4018), 1, - anon_sym_COLON, - ACTIONS(4020), 1, + ACTIONS(4037), 1, sym__lookback_semicolon, - STATE(244), 1, + STATE(1276), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 9, + 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(199), 12, + 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__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - ACTIONS(57), 15, + [21478] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4039), 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_TILDE, 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, @@ -111273,43 +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, + [21549] = 13, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - [21066] = 12, - ACTIONS(3956), 1, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4022), 1, + ACTIONS(4041), 1, sym__lookback_semicolon, - STATE(1167), 1, + STATE(1122), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111319,8 +111832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111331,51 +111843,45 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21135] = 9, - ACTIONS(1498), 1, + [21620] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4024), 1, - anon_sym_COLON, - ACTIONS(4026), 1, + ACTIONS(4043), 1, sym__lookback_semicolon, - STATE(281), 1, + STATE(1328), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 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(199), 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), 15, + ACTIONS(3971), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -111384,43 +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, + [21691] = 13, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - [21198] = 12, - ACTIONS(61), 1, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4028), 1, - anon_sym_while, - STATE(1145), 1, + ACTIONS(4039), 1, + sym__lookback_semicolon, + STATE(1176), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111430,8 +111948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111442,42 +111959,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21267] = 12, - ACTIONS(61), 1, + [21762] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4030), 1, + ACTIONS(4045), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1178), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111487,8 +112006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111499,42 +112017,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21336] = 12, - ACTIONS(3956), 1, + [21833] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4032), 1, - sym__lookback_semicolon, - STATE(1172), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4047), 1, + anon_sym_RBRACE, + STATE(1197), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1594), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111544,8 +112064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111556,42 +112075,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21405] = 12, - ACTIONS(61), 1, + [21904] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4034), 1, + ACTIONS(4049), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1172), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111601,8 +112122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111613,14 +112133,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21474] = 12, + [21975] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4036), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4051), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -111628,7 +112150,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -111648,7 +112170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111658,8 +112180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111670,42 +112191,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21543] = 12, - ACTIONS(3956), 1, + [22046] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4036), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4053), 1, sym__lookback_semicolon, - STATE(1176), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111715,8 +112238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111727,42 +112249,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21612] = 12, - ACTIONS(3956), 1, + [22117] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4038), 1, - sym__lookback_semicolon, - STATE(1178), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4055), 1, + anon_sym_RBRACK, + STATE(1209), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111772,8 +112296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111784,42 +112307,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21681] = 12, - ACTIONS(2616), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [22188] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1180), 1, + ACTIONS(4057), 1, + sym__lookback_semicolon, + STATE(1213), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111829,8 +112354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111841,42 +112365,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21750] = 12, - ACTIONS(2630), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [22259] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1181), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4059), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111886,8 +112412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111898,42 +112423,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21819] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(4040), 1, + [22330] = 13, + ACTIONS(1471), 1, sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(1482), 1, + anon_sym_DASH, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111943,8 +112470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -111955,42 +112481,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21888] = 12, - ACTIONS(3956), 1, + [22401] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4040), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4061), 1, sym__lookback_semicolon, - STATE(1182), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112000,8 +112528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112012,42 +112539,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [21957] = 12, - ACTIONS(3956), 1, + [22472] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4042), 1, + ACTIONS(4061), 1, sym__lookback_semicolon, - STATE(1183), 1, + STATE(1185), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112057,8 +112586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112069,42 +112597,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22026] = 12, - ACTIONS(3956), 1, + [22543] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4044), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4063), 1, sym__lookback_semicolon, - STATE(1186), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112114,8 +112644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112126,42 +112655,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22095] = 12, - ACTIONS(61), 1, + [22614] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4046), 1, + ACTIONS(4065), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1184), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112171,8 +112702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112183,14 +112713,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22164] = 12, + [22685] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4048), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_RPAREN, + STATE(1126), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112198,7 +112730,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112218,7 +112750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112228,8 +112760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112240,14 +112771,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22233] = 12, - ACTIONS(61), 1, + [22756] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(4050), 1, + ACTIONS(4069), 1, + anon_sym_COLON, + ACTIONS(4071), 1, sym__lookback_semicolon, - STATE(1242), 1, - aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(317), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112255,85 +112788,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(59), 9, 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), 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, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + 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, - [22302] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4050), 1, - sym__lookback_semicolon, - STATE(1191), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3782), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(57), 14, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3776), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -112342,26 +112826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [22371] = 12, + [22821] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4052), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4073), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112369,7 +112843,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112389,7 +112863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112399,8 +112873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112411,14 +112884,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22440] = 12, + [22892] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4054), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4075), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112426,7 +112901,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -112446,7 +112921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112456,8 +112931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112468,42 +112942,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22509] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(4056), 1, + [22963] = 13, + ACTIONS(3444), 1, sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1331), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112513,8 +112989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112525,42 +113000,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22578] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(4058), 1, + [23034] = 13, + ACTIONS(3461), 1, sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1195), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112570,8 +113047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112582,42 +113058,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22647] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4058), 1, + [23105] = 13, + ACTIONS(3455), 1, sym__lookback_semicolon, - STATE(1192), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1128), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112627,8 +113105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112639,42 +113116,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22716] = 12, - ACTIONS(3956), 1, + [23176] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4060), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4077), 1, sym__lookback_semicolon, - STATE(1193), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112684,8 +113163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112696,42 +113174,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22785] = 12, - ACTIONS(61), 1, + [23247] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4062), 1, + ACTIONS(4079), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1196), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112741,8 +113221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112753,42 +113232,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22854] = 12, - ACTIONS(3956), 1, + [23318] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4062), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4081), 1, sym__lookback_semicolon, - STATE(1195), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112798,8 +113279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112810,42 +113290,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22923] = 12, - ACTIONS(3956), 1, + [23389] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4064), 1, - sym__lookback_semicolon, - STATE(1196), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4083), 1, + anon_sym_while, + STATE(1229), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112855,8 +113337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112867,42 +113348,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [22992] = 12, - ACTIONS(3956), 1, + [23460] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4066), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4085), 1, sym__lookback_semicolon, - STATE(1199), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112912,8 +113395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -112924,14 +113406,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23061] = 12, - ACTIONS(61), 1, + [23531] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(4068), 1, + ACTIONS(4087), 1, + anon_sym_COLON, + ACTIONS(4089), 1, sym__lookback_semicolon, - STATE(1242), 1, - aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(255), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112939,28 +113423,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(59), 4, + 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, - ACTIONS(15), 5, + 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, - ACTIONS(65), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(57), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -112969,26 +113461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [23130] = 12, + [23596] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4070), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4091), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -112996,7 +113478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113016,7 +113498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113026,8 +113508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113038,14 +113519,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23199] = 12, + [23667] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4072), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4093), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113053,7 +113536,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113073,7 +113556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113083,8 +113566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113095,14 +113577,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23268] = 12, + [23738] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4074), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4095), 1, + anon_sym_RBRACE, + STATE(1315), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1801), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113110,7 +113594,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113130,7 +113614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113140,8 +113624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113152,42 +113635,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23337] = 12, - ACTIONS(3956), 1, + [23809] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4074), 1, + ACTIONS(4097), 1, sym__lookback_semicolon, - STATE(1202), 1, + STATE(1201), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113197,8 +113682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113209,14 +113693,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23406] = 12, + [23880] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4076), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4099), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113224,7 +113710,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113244,7 +113730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113254,8 +113740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113266,14 +113751,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23475] = 12, + [23951] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4078), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113281,7 +113768,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113301,7 +113788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113311,8 +113798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113323,42 +113809,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23544] = 12, - ACTIONS(3956), 1, + [24022] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4078), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4101), 1, sym__lookback_semicolon, - STATE(1203), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113368,8 +113856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113380,42 +113867,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23613] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4080), 1, + [24093] = 13, + ACTIONS(3442), 1, sym__lookback_semicolon, - STATE(1204), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1215), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113425,8 +113914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113437,14 +113925,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23682] = 12, + [24164] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4082), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4103), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113452,7 +113942,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113472,7 +113962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113482,8 +113972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113494,100 +113983,53 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23751] = 12, - ACTIONS(3956), 1, + [24235] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(4082), 1, + ACTIONS(4105), 1, + anon_sym_COLON, + ACTIONS(4107), 1, sym__lookback_semicolon, - STATE(1206), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(269), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3958), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 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, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + 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, - [23820] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4084), 1, - sym__lookback_semicolon, - STATE(1207), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3782), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(57), 14, anon_sym_STAR, + anon_sym_TILDE, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3776), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -113596,26 +114038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [23889] = 12, + [24300] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4086), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(1212), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113623,7 +114055,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113643,7 +114075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113653,8 +114085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113665,42 +114096,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [23958] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(4088), 1, + [24371] = 13, + ACTIONS(2631), 1, sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1217), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113710,8 +114143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113722,14 +114154,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24027] = 12, + [24442] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4090), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4109), 1, + anon_sym_RBRACK, + STATE(1219), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113737,7 +114171,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113757,64 +114191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 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, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [24096] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4090), 1, - sym__lookback_semicolon, - STATE(1210), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3782), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3958), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113824,8 +114201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113836,14 +114212,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24165] = 12, + [24513] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4092), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_RBRACK, + STATE(1221), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113851,7 +114229,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113871,7 +114249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113881,8 +114259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113893,14 +114270,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24234] = 12, + [24584] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4094), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4113), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -113908,7 +114287,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -113928,7 +114307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113938,8 +114317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -113950,99 +114328,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24303] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4094), 1, + [24655] = 13, + ACTIONS(3431), 1, sym__lookback_semicolon, - STATE(1211), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3782), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3958), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3776), 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, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(1041), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [24372] = 12, - ACTIONS(3956), 1, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4096), 1, - sym__lookback_semicolon, - STATE(1212), 1, + STATE(1148), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114052,8 +114375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114064,14 +114386,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24441] = 12, + [24726] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4098), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4115), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114079,7 +114403,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114099,7 +114423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114109,8 +114433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114121,14 +114444,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24510] = 12, + [24797] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4100), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4117), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114136,7 +114461,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114156,7 +114481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114166,8 +114491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114178,14 +114502,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24579] = 12, + [24868] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4102), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4119), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114193,7 +114519,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114213,7 +114539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114223,8 +114549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114235,42 +114560,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24648] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4102), 1, + [24939] = 13, + ACTIONS(3463), 1, sym__lookback_semicolon, - STATE(1214), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1199), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114280,8 +114607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114292,14 +114618,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24717] = 12, + [25010] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4104), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4121), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114307,7 +114635,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114327,7 +114655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114337,8 +114665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114349,42 +114676,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24786] = 12, - ACTIONS(3956), 1, + [25081] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4068), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4123), 1, sym__lookback_semicolon, - STATE(1226), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114394,8 +114723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114406,14 +114734,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24855] = 12, + [25152] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4106), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4125), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114421,7 +114751,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114441,7 +114771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114451,8 +114781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114463,42 +114792,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24924] = 12, - ACTIONS(61), 1, + [25223] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4108), 1, + ACTIONS(4127), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1230), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114508,8 +114839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114520,42 +114850,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [24993] = 12, - ACTIONS(1474), 1, - anon_sym_RBRACE, - ACTIONS(1487), 1, + [25294] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1218), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4129), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1979), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1490), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(1484), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1478), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(1493), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1481), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114565,8 +114897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114577,42 +114908,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25062] = 12, - ACTIONS(3956), 1, + [25365] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4108), 1, + ACTIONS(4131), 1, sym__lookback_semicolon, - STATE(1229), 1, + STATE(1141), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114622,8 +114955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114634,42 +114966,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25131] = 12, - ACTIONS(3956), 1, + [25436] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4110), 1, - sym__lookback_semicolon, - STATE(1232), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4133), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114679,8 +115013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114691,42 +115024,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25200] = 12, - ACTIONS(61), 1, + [25507] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4112), 1, + ACTIONS(4119), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1127), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114736,8 +115071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114748,42 +115082,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25269] = 12, - ACTIONS(3956), 1, + [25578] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4112), 1, + ACTIONS(4135), 1, sym__lookback_semicolon, - STATE(1237), 1, + STATE(1133), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114793,8 +115129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114805,42 +115140,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25338] = 12, - ACTIONS(3956), 1, + [25649] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4114), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4137), 1, sym__lookback_semicolon, - STATE(1238), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114850,8 +115187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114862,42 +115198,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25407] = 12, - ACTIONS(3956), 1, + [25720] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4116), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4139), 1, sym__lookback_semicolon, - STATE(1264), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114907,8 +115245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114919,14 +115256,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25476] = 12, + [25791] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4118), 1, - anon_sym_RBRACE, - STATE(1302), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4141), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1637), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -114934,7 +115273,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -114954,7 +115293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114964,8 +115303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -114976,42 +115314,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25545] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(4120), 1, + [25862] = 13, + ACTIONS(2675), 1, sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1236), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115021,8 +115361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115033,51 +115372,45 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25614] = 9, - ACTIONS(1498), 1, + [25933] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4122), 1, - anon_sym_COLON, - ACTIONS(4124), 1, + ACTIONS(4143), 1, sym__lookback_semicolon, - STATE(261), 1, + STATE(1254), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(59), 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(199), 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), 15, + ACTIONS(3971), 5, anon_sym_STAR, - anon_sym_TILDE, 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, @@ -115086,15 +115419,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [25677] = 12, + 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(3830), 1, - anon_sym_RBRACK, - STATE(1233), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4145), 1, + anon_sym_while, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -115102,7 +115447,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -115122,7 +115467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115132,8 +115477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115144,14 +115488,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25746] = 12, + [26075] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4126), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4147), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -115159,7 +115505,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -115179,7 +115525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115189,8 +115535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115201,42 +115546,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25815] = 12, - ACTIONS(3262), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [26146] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1235), 1, + ACTIONS(4147), 1, + sym__lookback_semicolon, + STATE(1241), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115246,8 +115593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115258,14 +115604,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25884] = 12, + [26217] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4128), 1, - anon_sym_RBRACK, - STATE(1236), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4149), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -115273,7 +115621,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -115293,7 +115641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115303,8 +115651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115315,42 +115662,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [25953] = 12, - ACTIONS(61), 1, + [26288] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4130), 1, + ACTIONS(4151), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1243), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115360,54 +115709,110 @@ 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, + [26359] = 10, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, + 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, - [26022] = 12, - ACTIONS(61), 1, + 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(4132), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(4157), 1, + sym__lookback_semicolon, + STATE(1147), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115417,8 +115822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115429,42 +115833,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26091] = 12, - ACTIONS(3956), 1, + [26495] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4130), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4159), 1, sym__lookback_semicolon, - STATE(1244), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115474,8 +115880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115486,42 +115891,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26160] = 12, - ACTIONS(61), 1, + [26566] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4134), 1, + ACTIONS(4161), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1249), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115531,8 +115938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115543,42 +115949,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26229] = 12, - ACTIONS(61), 1, + [26637] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4136), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(4163), 1, + sym__lookback_semicolon, + STATE(1314), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115588,8 +115996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115600,14 +116007,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26298] = 12, + [26708] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4138), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(1313), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -115615,7 +116024,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -115635,7 +116044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115645,8 +116054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115657,99 +116065,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26367] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(4140), 1, + [26779] = 13, + ACTIONS(3189), 1, sym__lookback_semicolon, - STATE(1242), 1, - aux_sym_expression_repeat1, - STATE(1778), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(63), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2228), 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), 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, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [26436] = 12, - ACTIONS(3956), 1, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4140), 1, - sym__lookback_semicolon, - STATE(1245), 1, + STATE(1124), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115759,8 +116112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115771,42 +116123,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26505] = 12, - ACTIONS(3956), 1, + [26850] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4142), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4165), 1, sym__lookback_semicolon, - STATE(1246), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115816,8 +116170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115828,14 +116181,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26574] = 12, + [26921] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4144), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3789), 1, anon_sym_RBRACK, - STATE(1250), 1, + STATE(1129), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -115843,7 +116198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -115863,7 +116218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115873,8 +116228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115885,99 +116239,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26643] = 12, - ACTIONS(1474), 1, - sym__lookback_semicolon, - ACTIONS(1487), 1, + [26992] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1242), 1, - aux_sym_expression_repeat1, - STATE(1778), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1490), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(1484), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1478), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(1493), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1481), 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, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [26712] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4146), 1, + ACTIONS(4167), 1, sym__lookback_semicolon, - STATE(1277), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115987,8 +116286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -115999,42 +116297,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26781] = 12, - ACTIONS(61), 1, + [27063] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4148), 1, + ACTIONS(4167), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1258), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116044,8 +116344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116056,14 +116355,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26850] = 12, + [27134] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4150), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4037), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -116071,7 +116372,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -116091,7 +116392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116101,8 +116402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116113,42 +116413,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26919] = 12, - ACTIONS(61), 1, + [27205] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4152), 1, + ACTIONS(4169), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1261), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116158,8 +116460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116170,42 +116471,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [26988] = 12, - ACTIONS(61), 1, + [27276] = 13, + ACTIONS(2637), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(3848), 1, - anon_sym_RBRACK, - STATE(1251), 1, + STATE(1263), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116215,8 +116518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116227,42 +116529,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27057] = 12, - ACTIONS(2610), 1, + [27347] = 13, + ACTIONS(2643), 1, sym__lookback_semicolon, - ACTIONS(3956), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1253), 1, + STATE(1264), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116272,8 +116576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116284,14 +116587,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27126] = 12, + [27418] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4154), 1, - anon_sym_RBRACK, - STATE(1254), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4171), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -116299,7 +116604,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -116319,7 +116624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116329,8 +116634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116341,42 +116645,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27195] = 12, - ACTIONS(61), 1, + [27489] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4156), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(4171), 1, + sym__lookback_semicolon, + STATE(1266), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116386,8 +116692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116398,42 +116703,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27264] = 12, - ACTIONS(61), 1, + [27560] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4158), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(4173), 1, + sym__lookback_semicolon, + STATE(1267), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116443,8 +116750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116455,42 +116761,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27333] = 12, - ACTIONS(3956), 1, + [27631] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4152), 1, + ACTIONS(4175), 1, sym__lookback_semicolon, - STATE(1256), 1, + STATE(1253), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116500,8 +116808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116512,14 +116819,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27402] = 12, + [27702] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4160), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4177), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -116527,7 +116836,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -116547,7 +116856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116557,8 +116866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116569,14 +116877,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27471] = 12, + [27773] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4162), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4179), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -116584,7 +116894,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -116604,7 +116914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116614,8 +116924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116626,42 +116935,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27540] = 12, - ACTIONS(61), 1, - anon_sym_DASH, - ACTIONS(4164), 1, + [27844] = 13, + ACTIONS(3691), 1, sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1189), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116671,8 +116982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116683,42 +116993,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27609] = 12, - ACTIONS(61), 1, + [27915] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4166), 1, + ACTIONS(4181), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1270), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116728,8 +117040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116740,42 +117051,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27678] = 12, - ACTIONS(3956), 1, + [27986] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4168), 1, - sym__lookback_semicolon, - STATE(1290), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4183), 1, + anon_sym_RBRACK, + STATE(1125), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116785,8 +117098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116797,14 +117109,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27747] = 12, + [28057] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3802), 1, - anon_sym_RBRACK, - STATE(1260), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4185), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -116812,7 +117126,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -116832,7 +117146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116842,8 +117156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116854,14 +117167,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27816] = 12, + [28128] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4170), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3793), 1, anon_sym_RBRACK, - STATE(1261), 1, + STATE(1275), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -116869,7 +117184,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -116889,7 +117204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116899,8 +117214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116911,14 +117225,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27885] = 12, + [28199] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4172), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4187), 1, anon_sym_RBRACK, - STATE(985), 1, + STATE(1293), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -116926,7 +117242,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -116946,7 +117262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116956,8 +117272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -116968,14 +117283,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [27954] = 12, + [28270] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4174), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4189), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -116983,7 +117300,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -117003,7 +117320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117013,8 +117330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117025,42 +117341,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28023] = 12, - ACTIONS(61), 1, + [28341] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4176), 1, + ACTIONS(4189), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1277), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117070,8 +117388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117082,42 +117399,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28092] = 12, - ACTIONS(3956), 1, + [28412] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4178), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4191), 1, sym__lookback_semicolon, - STATE(1278), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117127,8 +117446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117139,14 +117457,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28161] = 12, + [28483] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4180), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4193), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -117154,7 +117474,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -117174,7 +117494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117184,8 +117504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117196,42 +117515,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28230] = 12, - ACTIONS(3956), 1, - anon_sym_DASH, - ACTIONS(4182), 1, + [28554] = 13, + ACTIONS(3671), 1, sym__lookback_semicolon, - STATE(1267), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1203), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117241,8 +117562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117253,14 +117573,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28299] = 12, + [28625] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4184), 1, - anon_sym_while, - STATE(1268), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4195), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -117268,7 +117590,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -117288,7 +117610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117298,8 +117620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117310,14 +117631,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28368] = 12, + [28696] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4186), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4197), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -117325,7 +117648,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -117345,7 +117668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117355,8 +117678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117367,42 +117689,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28437] = 12, - ACTIONS(61), 1, + [28767] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4188), 1, - anon_sym_while, - STATE(985), 1, + ACTIONS(4197), 1, + sym__lookback_semicolon, + STATE(1278), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117412,8 +117736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117424,42 +117747,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28506] = 12, - ACTIONS(3956), 1, + [28838] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4180), 1, + ACTIONS(4199), 1, sym__lookback_semicolon, - STATE(1116), 1, + STATE(1279), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117469,8 +117794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117481,14 +117805,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28575] = 12, + [28909] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4190), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4201), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -117496,7 +117822,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -117516,7 +117842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117526,8 +117852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117538,42 +117863,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28644] = 12, - ACTIONS(61), 1, + [28980] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4192), 1, - anon_sym_RBRACK, - STATE(985), 1, + ACTIONS(4201), 1, + sym__lookback_semicolon, + STATE(1281), 1, aux_sym_expression_repeat1, - STATE(1859), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117583,8 +117910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117595,42 +117921,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28713] = 12, - ACTIONS(3442), 1, + [29051] = 13, + ACTIONS(3273), 1, sym__lookback_semicolon, - ACTIONS(3956), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1335), 1, + STATE(1224), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117640,8 +117968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117652,42 +117979,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28782] = 12, - ACTIONS(3956), 1, + [29122] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4194), 1, + ACTIONS(4203), 1, sym__lookback_semicolon, - STATE(1118), 1, + STATE(1282), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117697,8 +118026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117709,42 +118037,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28851] = 12, - ACTIONS(61), 1, + [29193] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4196), 1, - anon_sym_RPAREN, - STATE(1129), 1, + ACTIONS(4205), 1, + sym__lookback_semicolon, + STATE(1287), 1, aux_sym_expression_repeat1, - STATE(1367), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117754,8 +118084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117766,14 +118095,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28920] = 12, + [29264] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4198), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4207), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -117781,7 +118112,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -117801,7 +118132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117811,8 +118142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117823,42 +118153,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [28989] = 12, - ACTIONS(3956), 1, + [29335] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4200), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4209), 1, sym__lookback_semicolon, - STATE(1121), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117868,8 +118200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117880,14 +118211,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29058] = 12, + [29406] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4200), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4211), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -117895,7 +118228,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -117915,7 +118248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117925,8 +118258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117937,14 +118269,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29127] = 12, + [29477] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4202), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4213), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -117952,7 +118286,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -117972,7 +118306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -117982,8 +118316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -117994,42 +118327,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29196] = 12, - ACTIONS(3412), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [29548] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1123), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4215), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118039,8 +118374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118051,42 +118385,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29265] = 12, - ACTIONS(3956), 1, + [29619] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4204), 1, + ACTIONS(4215), 1, sym__lookback_semicolon, - STATE(1281), 1, + STATE(1294), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118096,8 +118432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118108,14 +118443,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29334] = 12, + [29690] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4206), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4217), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -118123,7 +118460,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -118143,7 +118480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118153,8 +118490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118165,14 +118501,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29403] = 12, + [29761] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4208), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4219), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -118180,7 +118518,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -118200,7 +118538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118210,8 +118548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118222,42 +118559,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29472] = 12, - ACTIONS(3956), 1, + [29832] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4210), 1, + ACTIONS(4219), 1, sym__lookback_semicolon, - STATE(1284), 1, + STATE(1295), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118267,8 +118606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118279,42 +118617,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29541] = 12, - ACTIONS(61), 1, + [29903] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4212), 1, + ACTIONS(4221), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1296), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118324,8 +118664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118336,42 +118675,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29610] = 12, - ACTIONS(3414), 1, + [29974] = 13, + ACTIONS(3345), 1, sym__lookback_semicolon, - ACTIONS(3956), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1124), 1, + STATE(1286), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118381,8 +118722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118393,14 +118733,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29679] = 12, + [30045] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4214), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4223), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -118408,7 +118750,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -118428,7 +118770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118438,8 +118780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118450,42 +118791,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29748] = 12, - ACTIONS(3956), 1, + [30116] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4216), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4225), 1, sym__lookback_semicolon, - STATE(1288), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118495,8 +118838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118507,42 +118849,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29817] = 12, - ACTIONS(61), 1, + [30187] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4218), 1, + ACTIONS(4227), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1289), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118552,8 +118896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118564,14 +118907,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29886] = 12, + [30258] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4220), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4229), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -118579,7 +118924,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -118599,7 +118944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118609,8 +118954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118621,42 +118965,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [29955] = 12, - ACTIONS(61), 1, + [30329] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4222), 1, + ACTIONS(4225), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1298), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118666,8 +119012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118678,42 +119023,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30024] = 12, - ACTIONS(3956), 1, + [30400] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4222), 1, + ACTIONS(4231), 1, sym__lookback_semicolon, - STATE(1125), 1, + STATE(1299), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118723,8 +119070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118735,42 +119081,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30093] = 12, - ACTIONS(3956), 1, + [30471] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4224), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4233), 1, sym__lookback_semicolon, - STATE(1270), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118780,8 +119128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118792,14 +119139,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30162] = 12, + [30542] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4226), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4235), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -118807,7 +119156,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -118827,7 +119176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118837,8 +119186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118849,42 +119197,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30231] = 12, - ACTIONS(3956), 1, + [30613] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4228), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4237), 1, sym__lookback_semicolon, - STATE(1126), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118894,8 +119244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118906,42 +119255,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30300] = 12, - ACTIONS(3956), 1, + [30684] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4230), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4239), 1, sym__lookback_semicolon, - STATE(1149), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118951,8 +119302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -118963,42 +119313,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30369] = 12, - ACTIONS(3956), 1, + [30755] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4232), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4241), 1, sym__lookback_semicolon, - STATE(1297), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119008,8 +119360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119020,42 +119371,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30438] = 12, - ACTIONS(61), 1, + [30826] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4234), 1, + ACTIONS(4241), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1302), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119065,8 +119418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119077,42 +119429,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30507] = 12, - ACTIONS(3657), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [30897] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1286), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4243), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119122,8 +119476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119134,42 +119487,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30576] = 12, - ACTIONS(3648), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [30968] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1289), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4245), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119179,8 +119534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119191,42 +119545,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30645] = 12, - ACTIONS(3956), 1, + [31039] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4236), 1, + ACTIONS(4245), 1, sym__lookback_semicolon, - STATE(1132), 1, + STATE(1303), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119236,8 +119592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119248,42 +119603,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30714] = 12, - ACTIONS(3314), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, + [31110] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1293), 1, + ACTIONS(4247), 1, + sym__lookback_semicolon, + STATE(1306), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119293,8 +119650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119305,14 +119661,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30783] = 12, + [31181] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4238), 1, - anon_sym_RBRACE, - STATE(1218), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4249), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1979), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -119320,7 +119678,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -119340,7 +119698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119350,8 +119708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119362,71 +119719,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30852] = 12, - ACTIONS(3350), 1, - sym__lookback_semicolon, - ACTIONS(3956), 1, - anon_sym_DASH, - STATE(1304), 1, - aux_sym_expression_repeat1, - STATE(1694), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3782), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2275), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3778), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3954), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3958), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3776), 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, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [30921] = 12, + [31252] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4240), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4251), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -119434,7 +119736,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -119454,7 +119756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119464,8 +119766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119476,42 +119777,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [30990] = 12, - ACTIONS(3956), 1, + [31323] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4242), 1, + ACTIONS(4253), 1, sym__lookback_semicolon, - STATE(1306), 1, + STATE(1305), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119521,8 +119824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119533,14 +119835,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31059] = 12, + [31394] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4244), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4255), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -119548,7 +119852,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -119568,7 +119872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119578,8 +119882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119590,14 +119893,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31128] = 12, + [31465] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4246), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4257), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -119605,7 +119910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -119625,64 +119930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 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, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [31197] = 12, - ACTIONS(1354), 1, - anon_sym_in, - ACTIONS(3674), 1, - anon_sym_DASH, - STATE(1324), 1, - aux_sym_expression_repeat1, - STATE(1532), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3770), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2264), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(3768), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3764), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(3772), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3766), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119692,8 +119940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1026), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119704,99 +119951,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31266] = 12, - ACTIONS(1474), 1, - anon_sym_in, - ACTIONS(1487), 1, - anon_sym_DASH, - STATE(1309), 1, - aux_sym_expression_repeat1, - STATE(1971), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1490), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2228), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(1484), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1478), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(1493), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1481), 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, + [31536] = 13, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - sym__rangeOperator, - [31335] = 12, - ACTIONS(3956), 1, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4248), 1, + ACTIONS(4259), 1, sym__lookback_semicolon, - STATE(1311), 1, + STATE(1308), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119806,8 +119998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119818,14 +120009,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31404] = 12, + [31607] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4250), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4261), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -119833,7 +120026,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -119853,7 +120046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119863,8 +120056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119875,42 +120067,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31473] = 12, - ACTIONS(3956), 1, + [31678] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4252), 1, + ACTIONS(4257), 1, sym__lookback_semicolon, - STATE(1313), 1, + STATE(1312), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119920,8 +120114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119932,42 +120125,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31542] = 12, - ACTIONS(61), 1, + [31749] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4254), 1, + ACTIONS(4263), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1311), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119977,8 +120172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -119989,42 +120183,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31611] = 12, - ACTIONS(3956), 1, + [31820] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4256), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4265), 1, sym__lookback_semicolon, - STATE(1315), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120034,8 +120230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120046,14 +120241,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31680] = 12, + [31891] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4258), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4267), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -120061,7 +120258,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -120081,7 +120278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120091,8 +120288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120103,42 +120299,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31749] = 12, - ACTIONS(3956), 1, + [31962] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4260), 1, - sym__lookback_semicolon, - STATE(1317), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4269), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120148,8 +120346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120160,14 +120357,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31818] = 12, + [32033] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4262), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4271), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -120175,7 +120374,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -120195,7 +120394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120205,8 +120404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120217,42 +120415,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31887] = 12, - ACTIONS(61), 1, + [32104] = 13, + ACTIONS(1471), 1, + anon_sym_RBRACE, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(4264), 1, - sym__lookback_semicolon, - STATE(1242), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1315), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1801), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120262,8 +120462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120274,42 +120473,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [31956] = 12, - ACTIONS(3956), 1, + [32175] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4266), 1, + ACTIONS(4273), 1, sym__lookback_semicolon, - STATE(1320), 1, + STATE(1317), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120319,8 +120520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120331,14 +120531,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32025] = 12, + [32246] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4268), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4275), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -120346,7 +120548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -120366,7 +120568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120376,8 +120578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120388,42 +120589,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32094] = 12, - ACTIONS(3956), 1, + [32317] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4270), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4277), 1, sym__lookback_semicolon, - STATE(1322), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120433,8 +120636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120445,42 +120647,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32163] = 12, - ACTIONS(61), 1, + [32388] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4272), 1, + ACTIONS(4271), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1180), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(63), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(59), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(15), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(65), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120490,8 +120694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120502,42 +120705,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32232] = 12, - ACTIONS(3956), 1, + [32459] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4274), 1, + ACTIONS(4279), 1, sym__lookback_semicolon, - STATE(1115), 1, + STATE(1321), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120547,8 +120752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120559,14 +120763,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32301] = 12, + [32530] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(1446), 1, - anon_sym_in, - STATE(1309), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4281), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1971), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -120574,7 +120780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -120594,7 +120800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120604,8 +120810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120616,42 +120821,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32370] = 12, - ACTIONS(3956), 1, + [32601] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4276), 1, + ACTIONS(4283), 1, sym__lookback_semicolon, - STATE(1326), 1, + STATE(1323), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120661,8 +120868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120673,14 +120879,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32439] = 12, + [32672] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4278), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4285), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -120688,7 +120896,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -120708,7 +120916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120718,8 +120926,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, + [32743] = 13, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, + 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, @@ -120730,42 +120995,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32508] = 12, - ACTIONS(3956), 1, + [32814] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4280), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4289), 1, sym__lookback_semicolon, - STATE(1328), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120775,8 +121042,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, + [32885] = 13, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + 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, @@ -120787,14 +121111,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32577] = 12, + [32956] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4282), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4293), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -120802,7 +121128,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -120822,7 +121148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120832,8 +121158,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, + [33027] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, + 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, @@ -120844,42 +121227,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32646] = 12, - ACTIONS(3956), 1, + [33098] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4284), 1, + ACTIONS(4297), 1, sym__lookback_semicolon, STATE(1330), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120889,8 +121274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120901,14 +121285,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32715] = 12, + [33169] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4286), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4299), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -120916,7 +121302,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -120936,7 +121322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120946,8 +121332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - STATE(199), 10, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -120958,42 +121343,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32784] = 12, - ACTIONS(3956), 1, + [33240] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4288), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4301), 1, sym__lookback_semicolon, - STATE(1307), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(15), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -121003,8 +121390,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, + [33311] = 13, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + 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, @@ -121015,14 +121459,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32853] = 12, + [33382] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4290), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4305), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -121030,7 +121476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -121050,7 +121496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -121060,54 +121506,110 @@ 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, + [33453] = 10, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, + 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, - [32922] = 12, - ACTIONS(3956), 1, + 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(4292), 1, + ACTIONS(4311), 1, sym__lookback_semicolon, - STATE(1318), 1, + STATE(1292), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -121117,8 +121619,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, + [33589] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + 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, @@ -121129,42 +121688,44 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [32991] = 12, - ACTIONS(3956), 1, + [33660] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(4294), 1, + ACTIONS(4315), 1, sym__lookback_semicolon, - STATE(1332), 1, + STATE(1153), 1, aux_sym_expression_repeat1, - STATE(1694), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3782), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2275), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(3778), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3954), 5, + ACTIONS(3971), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(3958), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3776), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -121174,8 +121735,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, + [33731] = 13, + ACTIONS(3823), 1, anon_sym_DOT_DOT_DOT, - STATE(1041), 10, + 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, @@ -121186,14 +121804,16 @@ static const uint16_t ts_small_parse_table[] = { sym__assignmentOperator, sym__compoundAssignmentOperator, sym__rangeOperator, - [33060] = 12, + [33802] = 13, ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(4296), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4319), 1, sym__lookback_semicolon, - STATE(1242), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1778), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -121201,7 +121821,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2228), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, ACTIONS(59), 4, @@ -121221,7 +121841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(57), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -121231,54 +121851,108 @@ 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, + [33873] = 10, + ACTIONS(67), 1, anon_sym_DOT_DOT_DOT, - STATE(199), 10, + 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, - [33129] = 18, - ACTIONS(1312), 1, + 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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3607), 1, anon_sym_this, STATE(1007), 1, sym_member_expression, - STATE(1070), 1, + STATE(1052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -121288,7 +121962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(4298), 15, + ACTIONS(4325), 15, anon_sym_macro, anon_sym_abstract, anon_sym_static, @@ -121304,60 +121978,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [33208] = 20, - ACTIONS(1399), 1, + [34017] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4300), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(4303), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(1003), 1, + STATE(1007), 1, sym_member_expression, - STATE(1337), 1, - aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(1061), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1397), 5, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_extends, - anon_sym_implements, - ACTIONS(1395), 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(2860), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -121367,60 +122023,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33291] = 20, - ACTIONS(1312), 1, + 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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(1003), 1, + STATE(1007), 1, sym_member_expression, - STATE(1337), 1, - aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(1084), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1386), 5, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_extends, - anon_sym_implements, - ACTIONS(1384), 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(2860), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -121430,60 +122084,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33374] = 20, - ACTIONS(1312), 1, + 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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(1003), 1, + STATE(1007), 1, sym_member_expression, - STATE(1337), 1, - aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(1066), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1390), 5, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - anon_sym_extends, - anon_sym_implements, - ACTIONS(1388), 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(2860), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -121493,50 +122145,66 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33457] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, + 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(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(1337), 1, + STATE(1348), 1, aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1438), 5, + ACTIONS(1381), 5, anon_sym_catch, anon_sym_else, anon_sym_while, anon_sym_extends, anon_sym_implements, - ACTIONS(1436), 9, + ACTIONS(1379), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121546,7 +122214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -121556,50 +122224,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33540] = 20, - ACTIONS(1312), 1, + [34337] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(1337), 1, + STATE(1348), 1, aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1442), 5, + ACTIONS(1341), 5, anon_sym_catch, anon_sym_else, anon_sym_while, anon_sym_extends, anon_sym_implements, - ACTIONS(1440), 9, + ACTIONS(1339), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121609,7 +122277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -121619,42 +122287,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33623] = 18, - ACTIONS(1312), 1, + [34420] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1007), 1, + STATE(1010), 1, sym_member_expression, - STATE(1061), 1, + STATE(1348), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + 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, @@ -121664,58 +122350,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(4298), 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, - [33702] = 18, - ACTIONS(1312), 1, + [34503] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(4331), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4334), 1, anon_sym_this, - STATE(1007), 1, + STATE(1010), 1, sym_member_expression, - STATE(1036), 1, + STATE(1348), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + 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, @@ -121725,58 +122413,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(4298), 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, - [33781] = 18, - ACTIONS(1312), 1, + [34586] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1007), 1, + STATE(1010), 1, sym_member_expression, - STATE(1037), 1, + STATE(1348), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + 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, @@ -121786,58 +122476,104 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(4298), 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, - [33860] = 18, - ACTIONS(1312), 1, + [34669] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(4337), 1, sym_identifier, - ACTIONS(3596), 1, + 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(1013), 1, + STATE(1071), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -121847,7 +122583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(4298), 14, + ACTIONS(4325), 14, anon_sym_macro, anon_sym_abstract, anon_sym_static, @@ -121862,62 +122598,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [33938] = 23, - ACTIONS(1358), 1, + [34829] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - STATE(337), 1, + ACTIONS(4341), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(371), 1, + STATE(187), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2290), 1, sym_member_expression, - STATE(2292), 1, + STATE(2296), 1, sym_string, - STATE(2585), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(358), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(1356), 4, - anon_sym_case, - anon_sym_default, + ACTIONS(1375), 3, anon_sym_catch, anon_sym_else, - ACTIONS(1354), 5, - sym__closing_brace_marker, + 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(2300), 9, + STATE(2309), 9, sym__literal, sym_integer, sym_float, @@ -121927,49 +122663,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34026] = 20, - ACTIONS(1312), 1, + [34917] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(4314), 1, + ACTIONS(4343), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4346), 1, anon_sym_this, - STATE(1349), 1, + STATE(1353), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(1390), 4, + ACTIONS(1388), 4, anon_sym_in, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(1388), 9, + ACTIONS(1386), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121979,7 +122715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2835), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -121989,62 +122725,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34108] = 23, - ACTIONS(1312), 1, + [34999] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4316), 1, - anon_sym_this, - ACTIONS(4318), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, + STATE(1012), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1356), 3, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(1354), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2302), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -122054,49 +122770,64 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34196] = 20, - ACTIONS(1399), 1, + 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(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4320), 1, + ACTIONS(4337), 1, sym_identifier, - ACTIONS(4323), 1, + ACTIONS(4339), 1, anon_sym_this, - STATE(1349), 1, + STATE(1353), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1397), 4, + ACTIONS(1315), 4, anon_sym_in, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(1395), 9, + ACTIONS(1313), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122106,7 +122837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2835), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -122116,104 +122847,62 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34278] = 20, - ACTIONS(1312), 1, + [35159] = 23, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(4314), 1, + ACTIONS(4349), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(1349), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, sym_member_expression, - STATE(2291), 1, + STATE(2297), 1, sym_string, + STATE(2687), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(1438), 4, - anon_sym_in, + STATE(344), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1375), 4, + anon_sym_case, + anon_sym_default, anon_sym_catch, anon_sym_else, - anon_sym_while, - ACTIONS(1436), 9, + ACTIONS(1371), 5, + sym__closing_brace_marker, 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(2835), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34360] = 18, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_this, - STATE(1007), 1, - sym_member_expression, - STATE(1031), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2845), 9, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -122223,64 +122912,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(4298), 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, - [34438] = 20, - ACTIONS(1312), 1, + [35247] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4314), 1, + ACTIONS(4337), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4339), 1, anon_sym_this, - STATE(1349), 1, + STATE(1353), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1386), 4, + ACTIONS(1341), 4, anon_sym_in, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(1384), 9, + ACTIONS(1339), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122290,7 +122964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2835), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -122300,49 +122974,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34520] = 20, - ACTIONS(1312), 1, + [35329] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4314), 1, + ACTIONS(4337), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4339), 1, anon_sym_this, - STATE(1349), 1, + STATE(1353), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1442), 4, + ACTIONS(1449), 4, anon_sym_in, anon_sym_catch, anon_sym_else, anon_sym_while, - ACTIONS(1440), 9, + ACTIONS(1447), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122352,7 +123026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2835), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -122362,24 +123036,24 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34602] = 9, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1782), 1, + [35411] = 9, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3606), 1, + ACTIONS(2161), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, anon_sym_DOT, - ACTIONS(3608), 1, + ACTIONS(2659), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4353), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -122389,14 +123063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 22, + ACTIONS(1785), 22, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_RPAREN, + anon_sym_case, + anon_sym_default, 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, @@ -122412,24 +123086,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [34661] = 9, - ACTIONS(1782), 1, + [35470] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(2478), 1, - anon_sym_LBRACK, - ACTIONS(2516), 1, + ACTIONS(3569), 1, anon_sym_DOT, - ACTIONS(2518), 1, + ACTIONS(3571), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4328), 2, + ACTIONS(4355), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -122439,14 +123113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 22, - sym__closing_brace_marker, + ACTIONS(1785), 22, anon_sym_STAR, - anon_sym_case, - anon_sym_default, + 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, @@ -122462,24 +123136,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [34720] = 9, - ACTIONS(1782), 1, + [35529] = 9, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(2478), 1, + ACTIONS(2161), 1, anon_sym_LBRACK, - ACTIONS(2632), 1, + ACTIONS(2425), 1, anon_sym_DOT, - ACTIONS(2634), 1, + ACTIONS(2427), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4328), 2, + ACTIONS(4353), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -122489,7 +123163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 22, + ACTIONS(1785), 22, sym__closing_brace_marker, anon_sym_STAR, anon_sym_case, @@ -122512,24 +123186,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [34779] = 9, - ACTIONS(1714), 1, + [35588] = 9, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(1782), 1, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3540), 1, + ACTIONS(3643), 1, anon_sym_DOT, - ACTIONS(3542), 1, + ACTIONS(3645), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4355), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -122539,7 +123213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 22, + ACTIONS(1785), 22, anon_sym_STAR, anon_sym_RPAREN, anon_sym_COMMA, @@ -122562,22 +123236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [34838] = 8, - ACTIONS(1782), 1, + [35647] = 8, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(2632), 1, + ACTIONS(3643), 1, anon_sym_DOT, - ACTIONS(2634), 1, + ACTIONS(3645), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4328), 2, + ACTIONS(4355), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -122587,62 +123261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 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, - [34894] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(2516), 1, - anon_sym_DOT, - ACTIONS(2518), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4328), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 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(1778), 22, - sym__closing_brace_marker, + ACTIONS(1785), 22, anon_sym_STAR, - anon_sym_case, - anon_sym_default, + 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, @@ -122658,60 +123284,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [34950] = 23, - ACTIONS(1358), 1, + [35703] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1458), 1, + ACTIONS(4351), 1, anon_sym_this, - ACTIONS(4330), 1, + ACTIONS(4357), 1, sym_identifier, - STATE(337), 1, - sym__call, - STATE(362), 1, + STATE(1371), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(371), 1, - sym__constructor_call, - STATE(1369), 1, + STATE(2296), 1, sym_string, - STATE(2585), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(379), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1302), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(1300), 4, + ACTIONS(1341), 4, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - STATE(1376), 9, + 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, @@ -122721,22 +123344,22 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35036] = 8, - ACTIONS(1782), 1, + [35783] = 8, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3540), 1, + ACTIONS(2655), 1, anon_sym_DOT, - ACTIONS(3542), 1, + ACTIONS(2659), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4353), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -122746,14 +123369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 22, + ACTIONS(1785), 22, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_RPAREN, + anon_sym_case, + anon_sym_default, 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, @@ -122769,22 +123392,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [35092] = 8, - ACTIONS(1782), 1, + [35839] = 8, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3606), 1, + ACTIONS(3569), 1, anon_sym_DOT, - ACTIONS(3608), 1, + ACTIONS(3571), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4355), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -122794,7 +123417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 22, + ACTIONS(1785), 22, anon_sym_STAR, anon_sym_RPAREN, anon_sym_COMMA, @@ -122817,49 +123440,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [35148] = 20, - ACTIONS(1312), 1, + [35895] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4312), 1, + ACTIONS(4351), 1, anon_sym_this, - ACTIONS(4332), 1, + ACTIONS(4357), 1, sym_identifier, - STATE(1364), 1, + STATE(1371), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1390), 4, + ACTIONS(1315), 4, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - ACTIONS(1388), 7, + ACTIONS(1313), 7, sym__closing_brace_marker, anon_sym_DOT, anon_sym_LPAREN, @@ -122867,7 +123490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2842), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -122877,49 +123500,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35228] = 20, - ACTIONS(1399), 1, + [35975] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4334), 1, - sym_identifier, - ACTIONS(4337), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(1364), 1, + ACTIONS(4357), 1, + sym_identifier, + STATE(1371), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1397), 4, + ACTIONS(1381), 4, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - ACTIONS(1395), 7, + ACTIONS(1379), 7, sym__closing_brace_marker, anon_sym_DOT, anon_sym_LPAREN, @@ -122927,7 +123550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2842), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -122937,57 +123560,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35308] = 20, - ACTIONS(1312), 1, + [36055] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4312), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(4332), 1, + ACTIONS(4359), 1, sym_identifier, - STATE(1364), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(1375), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1386), 4, - anon_sym_case, - anon_sym_default, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1345), 3, anon_sym_catch, anon_sym_else, - ACTIONS(1384), 7, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_while, + ACTIONS(1343), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_EQ_GT, - STATE(2842), 9, + STATE(1407), 9, sym__literal, sym_integer, sym_float, @@ -122997,49 +123623,97 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35388] = 20, - ACTIONS(1312), 1, + [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(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(4312), 1, - anon_sym_this, - ACTIONS(4332), 1, + ACTIONS(4361), 1, sym_identifier, - STATE(1364), 1, + ACTIONS(4364), 1, + anon_sym_this, + STATE(1371), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(1438), 4, + ACTIONS(1388), 4, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - ACTIONS(1436), 7, + ACTIONS(1386), 7, sym__closing_brace_marker, anon_sym_DOT, anon_sym_LPAREN, @@ -123047,7 +123721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2842), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -123057,60 +123731,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35468] = 23, - ACTIONS(1312), 1, + [36277] = 23, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(4340), 1, + ACTIONS(4367), 1, sym_identifier, - STATE(190), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(191), 1, + STATE(364), 1, sym__constructor_call, - STATE(197), 1, - sym_member_expression, - STATE(1375), 1, + STATE(1378), 1, sym_string, - STATE(2674), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(380), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(1300), 3, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - ACTIONS(1302), 4, - anon_sym_RPAREN, + ACTIONS(1343), 3, + sym__closing_brace_marker, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_EQ_GT, - STATE(1391), 9, + ACTIONS(1345), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + STATE(1428), 9, sym__literal, sym_integer, sym_float, @@ -123120,49 +123794,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35554] = 20, - ACTIONS(1312), 1, + [36363] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4312), 1, + ACTIONS(4351), 1, anon_sym_this, - ACTIONS(4332), 1, + ACTIONS(4357), 1, sym_identifier, - STATE(1364), 1, + STATE(1371), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1442), 4, + ACTIONS(1449), 4, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - ACTIONS(1440), 7, + ACTIONS(1447), 7, sym__closing_brace_marker, anon_sym_DOT, anon_sym_LPAREN, @@ -123170,7 +123844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2842), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -123180,103 +123854,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35634] = 4, - ACTIONS(4328), 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(1624), 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, - [35681] = 24, - ACTIONS(1312), 1, + [36443] = 24, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1348), 1, + ACTIONS(1351), 1, anon_sym_RPAREN, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4342), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(4344), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2499), 1, + STATE(2471), 1, sym_function_type, - STATE(2559), 1, + STATE(2804), 1, sym_type, - STATE(3480), 1, + STATE(3596), 1, sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -123286,60 +123917,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35768] = 24, - ACTIONS(1312), 1, + [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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4342), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(4344), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - ACTIONS(4346), 1, + ACTIONS(4373), 1, anon_sym_RPAREN, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2499), 1, + STATE(2471), 1, sym_function_type, - STATE(2737), 1, + STATE(2806), 1, sym_type, - STATE(3447), 1, + STATE(3324), 1, sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -123349,60 +124023,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35855] = 24, - ACTIONS(1312), 1, + [36664] = 24, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4342), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(4344), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - ACTIONS(4348), 1, + ACTIONS(4375), 1, anon_sym_RPAREN, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2499), 1, + STATE(2471), 1, sym_function_type, - STATE(2737), 1, + STATE(2806), 1, sym_type, - STATE(3518), 1, + STATE(3553), 1, sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -123412,60 +124086,103 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35942] = 24, - ACTIONS(4348), 1, - anon_sym_RPAREN, - ACTIONS(4350), 1, - sym_identifier, + [36751] = 4, ACTIONS(4353), 1, - anon_sym_LPAREN, - ACTIONS(4356), 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(4359), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(4362), 1, - anon_sym_this, - ACTIONS(4368), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(4371), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(4374), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(4377), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(4380), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(4386), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(4389), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - STATE(1003), 1, + 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(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2499), 1, + STATE(2471), 1, sym_function_type, - STATE(2737), 1, + STATE(2727), 1, sym_type, - STATE(3518), 1, + STATE(3495), 1, sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4383), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4365), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -123475,60 +124192,60 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36029] = 24, - ACTIONS(1308), 1, + [36885] = 24, + ACTIONS(4375), 1, anon_sym_RPAREN, - ACTIONS(1312), 1, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4383), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(4389), 1, + anon_sym_this, + ACTIONS(4395), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(4398), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(4401), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(4404), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(4407), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(4413), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(4416), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4342), 1, - sym_identifier, - ACTIONS(4344), 1, - anon_sym_LPAREN, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2499), 1, + STATE(2471), 1, sym_function_type, - STATE(2640), 1, + STATE(2806), 1, sym_type, STATE(3553), 1, sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(4410), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4392), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -123538,60 +124255,27 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36116] = 4, - ACTIONS(4326), 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, + [36972] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1755), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1624), 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, - [36163] = 6, - ACTIONS(3264), 1, + ACTIONS(3653), 1, anon_sym_DOT, - ACTIONS(3266), 1, + ACTIONS(3655), 1, anon_sym_QMARK, - ACTIONS(4328), 1, - anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1780), 10, + 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, @@ -123599,17 +124283,10 @@ 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(1778), 22, - sym__closing_brace_marker, + ACTIONS(1785), 16, 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, @@ -123625,119 +124302,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [36213] = 23, - ACTIONS(1312), 1, + [37028] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(4421), 1, anon_sym_this, - ACTIONS(4392), 1, - anon_sym_LPAREN, - STATE(1078), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1382), 1, - aux_sym_variable_declaration_repeat1, - STATE(1589), 1, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, - sym_function_type, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4394), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3089), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [36297] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3584), 1, - sym_identifier, - ACTIONS(3586), 1, - anon_sym_this, - ACTIONS(4392), 1, - anon_sym_LPAREN, - STATE(1080), 1, - sym_type, - STATE(1094), 1, + STATE(2223), 1, sym_member_expression, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, - sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3089), 9, + 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, @@ -123747,58 +124360,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36381] = 23, - ACTIONS(1312), 1, + [37106] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1018), 1, + STATE(1083), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1404), 1, - aux_sym_variable_declaration_repeat1, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -123808,27 +124421,27 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36465] = 9, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1784), 1, + [37190] = 9, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3618), 1, + ACTIONS(2161), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(3620), 1, + ACTIONS(3707), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4353), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1782), 4, + ACTIONS(1753), 4, + sym__closing_brace_marker, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -123838,7 +124451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 16, + ACTIONS(1785), 16, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -123855,55 +124468,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [36521] = 20, - ACTIONS(1312), 1, + [37246] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4398), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(1388), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1072), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2215), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1386), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(1384), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2843), 9, + 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, @@ -123913,58 +124529,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36599] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [37330] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - STATE(1076), 1, - sym_type, - STATE(1094), 1, + ACTIONS(4427), 1, + anon_sym_LBRACE, + STATE(1010), 1, sym_member_expression, - STATE(1589), 1, + STATE(2296), 1, + sym_string, + STATE(2326), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(2370), 1, sym_builtin_type, - STATE(1599), 1, + STATE(2471), 1, sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, - sym_string, + STATE(2515), 1, + sym_type, + STATE(2746), 1, + sym_structure_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -123974,58 +124590,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36683] = 23, - ACTIONS(1312), 1, + [37414] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1016), 1, + STATE(1072), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1589), 1, + STATE(1414), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -124035,58 +124651,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36767] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [37498] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3586), 1, - anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1016), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1399), 1, - aux_sym_variable_declaration_repeat1, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -124096,99 +124712,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36851] = 6, - ACTIONS(3292), 1, - anon_sym_DOT, - ACTIONS(3294), 1, - anon_sym_QMARK, - ACTIONS(4328), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [36901] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [37582] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4398), 1, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1388), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1390), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(1388), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2843), 9, + 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, @@ -124198,99 +124773,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36979] = 6, - ACTIONS(3640), 1, - anon_sym_DOT, - ACTIONS(3642), 1, - anon_sym_QMARK, - ACTIONS(4326), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [37029] = 20, - ACTIONS(1399), 1, + [37666] = 23, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(4400), 1, - sym_identifier, - ACTIONS(4403), 1, + ACTIONS(1506), 1, + sym__closing_brace_marker, + ACTIONS(4421), 1, anon_sym_this, - STATE(1388), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, + ACTIONS(4439), 1, + sym_identifier, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2297), 1, sym_string, + STATE(2687), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(1397), 4, + STATE(565), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1510), 4, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - ACTIONS(1395), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2843), 9, + STATE(2319), 9, sym__literal, sym_integer, sym_float, @@ -124300,55 +124834,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37107] = 20, - ACTIONS(1312), 1, + [37750] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(4398), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(1388), 1, + STATE(1405), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1438), 4, + ACTIONS(1449), 4, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - ACTIONS(1436), 5, + ACTIONS(1447), 5, sym__closing_brace_marker, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LT, - STATE(2843), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -124358,55 +124892,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37185] = 20, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [37828] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4398), 1, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1388), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1442), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - ACTIONS(1440), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2843), 9, + 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, @@ -124416,163 +124953,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37263] = 6, - ACTIONS(3636), 1, - anon_sym_DOT, - ACTIONS(3638), 1, - anon_sym_QMARK, - ACTIONS(4326), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [37313] = 23, - ACTIONS(1358), 1, + [37912] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1448), 1, - sym__closing_brace_marker, - ACTIONS(4398), 1, - anon_sym_this, - ACTIONS(4406), 1, + ACTIONS(3609), 1, sym_identifier, - STATE(337), 1, - sym__call, - STATE(371), 1, - sym__constructor_call, - STATE(2289), 1, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1014), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2292), 1, - sym_string, - STATE(2585), 1, + 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(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1452), 4, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - anon_sym_else, - STATE(2314), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [37397] = 23, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2766), 1, - sym__lhs_expression, - STATE(3263), 1, - sym_type, - STATE(3525), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -124582,58 +125014,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37481] = 23, - ACTIONS(1312), 1, + [37996] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1047), 1, + STATE(1023), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1412), 1, - aux_sym_variable_declaration_repeat1, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -124643,58 +125075,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37565] = 23, - ACTIONS(1312), 1, + [38080] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1076), 1, + STATE(1083), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1424), 1, + STATE(1394), 1, aux_sym_variable_declaration_repeat1, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -124704,119 +125136,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37649] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [38164] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3586), 1, - anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1019), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1401), 1, - aux_sym_variable_declaration_repeat1, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, - sym_function_type, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4394), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3089), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [37733] = 23, - ACTIONS(1312), 1, + ACTIONS(4433), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3584), 1, - sym_identifier, - ACTIONS(3586), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4392), 1, - anon_sym_LPAREN, - STATE(1081), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1383), 1, - aux_sym_variable_declaration_repeat1, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -124826,119 +125197,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37817] = 23, - ACTIONS(1324), 1, + [38248] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4410), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - ACTIONS(4412), 1, + ACTIONS(4433), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2773), 1, + STATE(2724), 1, sym__lhs_expression, - STATE(3266), 1, + STATE(3162), 1, sym_type, - STATE(3547), 1, + STATE(3439), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4416), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3072), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [37901] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3584), 1, - sym_identifier, - ACTIONS(3586), 1, - anon_sym_this, - ACTIONS(4392), 1, - anon_sym_LPAREN, - STATE(1049), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, - sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -124948,58 +125258,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37985] = 23, - ACTIONS(1324), 1, + [38332] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4410), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - ACTIONS(4412), 1, + ACTIONS(4433), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2551), 1, + STATE(2544), 1, sym__lhs_expression, - STATE(3111), 1, + STATE(3121), 1, sym_type, - STATE(3384), 1, + STATE(3327), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -125009,58 +125319,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38069] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [38416] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3586), 1, - anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1057), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -125070,24 +125380,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38153] = 9, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4418), 1, + [38500] = 6, + ACTIONS(3247), 1, anon_sym_DOT, - ACTIONS(4422), 1, - anon_sym_LBRACK, - ACTIONS(4424), 1, + ACTIONS(3249), 1, anon_sym_QMARK, + ACTIONS(4353), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4420), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -125095,13 +125398,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(1778), 19, - sym__lookback_semicolon, + 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, @@ -125117,58 +125424,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [38209] = 23, - ACTIONS(1312), 1, + [38550] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1057), 1, + STATE(1073), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1413), 1, + STATE(1417), 1, aux_sym_variable_declaration_repeat1, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -125178,58 +125485,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38293] = 23, - ACTIONS(1312), 1, + [38634] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(4421), 1, anon_sym_this, - ACTIONS(4392), 1, - anon_sym_LPAREN, - STATE(1046), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1589), 1, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, - sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3089), 9, + 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, @@ -125239,119 +125543,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38377] = 23, - ACTIONS(1324), 1, + [38712] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - ACTIONS(4426), 1, - anon_sym_LBRACE, - STATE(1003), 1, + STATE(1080), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2322), 1, - sym_builtin_type, - STATE(2326), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(2499), 1, - sym_function_type, - STATE(2510), 1, - sym_type, - STATE(2643), 1, - sym_structure_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1328), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2860), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [38461] = 23, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - STATE(1599), 1, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, sym_function_type, - STATE(2260), 1, - sym_member_expression, - STATE(2291), 1, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2812), 1, - sym__lhs_expression, - STATE(3305), 1, - sym_type, - STATE(3665), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -125361,58 +125604,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38545] = 23, - ACTIONS(1312), 1, + [38796] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1059), 1, + STATE(1081), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1414), 1, - aux_sym_variable_declaration_repeat1, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -125422,58 +125665,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38629] = 23, - ACTIONS(1324), 1, + [38880] = 20, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4441), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4444), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2691), 1, - sym__lhs_expression, - STATE(3108), 1, - sym_type, - STATE(3373), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3072), 9, + 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, @@ -125483,58 +125723,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38713] = 23, - ACTIONS(1324), 1, + [38958] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1060), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2826), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(3310), 1, - sym_type, - STATE(3691), 1, - sym_block, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -125544,27 +125784,61 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38797] = 9, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(2478), 1, - anon_sym_LBRACK, - ACTIONS(3684), 1, + [39042] = 6, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3686), 1, + ACTIONS(3663), 1, anon_sym_QMARK, + ACTIONS(4355), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4328), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1782), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, + 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_DASH_GT, - ACTIONS(1780), 9, + 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, @@ -125572,10 +125846,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(1778), 16, + 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, @@ -125591,58 +125872,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [38853] = 23, - ACTIONS(1324), 1, + [39142] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4410), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - ACTIONS(4412), 1, + ACTIONS(4433), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2601), 1, + STATE(2573), 1, sym__lhs_expression, - STATE(3239), 1, + STATE(3305), 1, sym_type, - STATE(3462), 1, + STATE(3643), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -125652,58 +125933,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38937] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [39226] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3586), 1, - anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1011), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -125713,58 +125994,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39021] = 23, - ACTIONS(1312), 1, + [39310] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1010), 1, + STATE(1020), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2263), 1, + STATE(2273), 1, aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -125774,58 +126055,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39105] = 23, - ACTIONS(1312), 1, + [39394] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1012), 1, + STATE(1081), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1589), 1, + STATE(1429), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -125835,58 +126116,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39189] = 23, - ACTIONS(1312), 1, + [39478] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1012), 1, + STATE(1040), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1421), 1, + STATE(1393), 1, aux_sym_variable_declaration_repeat1, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -125896,58 +126177,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39273] = 23, - ACTIONS(1324), 1, + [39562] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1077), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2581), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(3121), 1, - sym_type, - STATE(3331), 1, - sym_block, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -125957,58 +126238,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39357] = 23, - ACTIONS(1324), 1, + [39646] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4410), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - ACTIONS(4412), 1, + ACTIONS(4433), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2733), 1, + STATE(2600), 1, sym__lhs_expression, - STATE(3230), 1, + STATE(3261), 1, sym_type, - STATE(3416), 1, + STATE(3510), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -126018,58 +126299,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39441] = 23, - ACTIONS(1324), 1, + [39730] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - ACTIONS(4426), 1, - anon_sym_LBRACE, - STATE(1003), 1, + STATE(1028), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2322), 1, - sym_builtin_type, - STATE(2329), 1, + STATE(1383), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, sym__lhs_expression, - STATE(2499), 1, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, sym_function_type, - STATE(2508), 1, - sym_type, - STATE(2560), 1, - sym_structure_type, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -126079,58 +126360,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39525] = 23, - ACTIONS(1324), 1, + [39814] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1078), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2647), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(3257), 1, - sym_type, - STATE(3578), 1, - sym_block, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -126140,58 +126421,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39609] = 23, - ACTIONS(1312), 1, + [39898] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1011), 1, + STATE(1020), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1378), 1, + STATE(1406), 1, aux_sym_variable_declaration_repeat1, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -126201,58 +126482,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39693] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [39982] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3586), 1, - anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1020), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -126262,58 +126543,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39777] = 23, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [40066] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3586), 1, - anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1046), 1, - sym_type, - STATE(1094), 1, - sym_member_expression, - STATE(1423), 1, - aux_sym_variable_declaration_repeat1, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, sym_function_type, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -126323,58 +126604,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39861] = 23, - ACTIONS(1312), 1, + [40150] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1071), 1, + STATE(1068), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1589), 1, + STATE(1385), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -126384,58 +126665,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39945] = 23, - ACTIONS(1312), 1, + [40234] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4392), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1073), 1, + STATE(1045), 1, sym_type, - STATE(1094), 1, + STATE(1100), 1, sym_member_expression, - STATE(1589), 1, + STATE(1424), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -126445,119 +126726,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40029] = 23, - ACTIONS(1324), 1, + [40318] = 23, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2663), 1, - sym__lhs_expression, - STATE(3244), 1, - sym_type, - STATE(3483), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4416), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3072), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [40113] = 23, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4410), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - ACTIONS(4412), 1, + ACTIONS(4427), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2796), 1, + STATE(2361), 1, sym__lhs_expression, - STATE(3291), 1, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2492), 1, sym_type, - STATE(3676), 1, - sym_block, + STATE(2767), 1, + sym_structure_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -126567,56 +126787,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40197] = 22, - ACTIONS(1312), 1, + [40402] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1040), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(2586), 1, - sym_type, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -126626,56 +126848,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40278] = 22, - ACTIONS(1312), 1, + [40486] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1003), 1, + STATE(1079), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2321), 1, + STATE(1404), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(1665), 1, sym_builtin_type, - STATE(2499), 1, + STATE(1667), 1, sym_function_type, - STATE(2500), 1, - sym_type, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -126685,56 +126909,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40359] = 22, - ACTIONS(1312), 1, + [40570] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, - sym__lhs_expression, - STATE(2802), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3072), 9, + 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, @@ -126744,21 +126967,24 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40440] = 7, - ACTIONS(343), 1, - sym__closing_brace_marker, - ACTIONS(4428), 1, - anon_sym_COMMA, - STATE(1938), 1, - sym__closing_brace, - STATE(2815), 1, - aux_sym_map_repeat1, + [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(1626), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4449), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -126766,12 +126992,13 @@ 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(1624), 18, + 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, @@ -126785,140 +127012,19 @@ 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, anon_sym_DOT_DOT_DOT, - [40491] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, - sym__lhs_expression, - STATE(2642), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4416), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3072), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [40572] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, - sym__lhs_expression, - STATE(2556), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4416), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3072), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [40653] = 6, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4422), 1, - anon_sym_LBRACK, + [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(1780), 11, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -126926,13 +127032,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(1778), 20, - sym__lookback_semicolon, + 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, @@ -126946,59 +127056,60 @@ 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, anon_sym_DOT_DOT_DOT, - [40702] = 22, - ACTIONS(1312), 1, + [40754] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4430), 1, + ACTIONS(4423), 1, anon_sym_LPAREN, - STATE(1094), 1, + STATE(1082), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(1589), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(1665), 1, sym_builtin_type, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(1865), 1, - sym_type, - STATE(2291), 1, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -127008,56 +127119,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40783] = 22, - ACTIONS(1312), 1, + [40838] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4432), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4434), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1078), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2596), 1, - sym_string, - STATE(2674), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1354), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2689), 9, + 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, @@ -127067,56 +127180,58 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40864] = 22, - ACTIONS(39), 1, + [40922] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4436), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4438), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1046), 1, + sym_type, + STATE(1100), 1, sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, + 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(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1942), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1354), 4, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2666), 9, + 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, @@ -127126,56 +127241,57 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40945] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [41006] = 23, + ACTIONS(1375), 1, + anon_sym_in, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4339), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + 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(2291), 1, + STATE(2522), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(2822), 1, sym__lhs_expression, - STATE(2538), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3072), 9, + 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, @@ -127185,17 +127301,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41026] = 6, - ACTIONS(4422), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, + [41089] = 6, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2520), 1, + ACTIONS(4451), 1, + anon_sym_LBRACK, + STATE(2482), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -127208,7 +127324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1354), 19, + ACTIONS(1371), 19, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -127228,115 +127344,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - [41075] = 22, - ACTIONS(1312), 1, + [41138] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1003), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2321), 1, - sym__lhs_expression, - STATE(2322), 1, - sym_builtin_type, - STATE(2499), 1, - sym_function_type, - STATE(2630), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1328), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2860), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [41156] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3584), 1, - sym_identifier, - ACTIONS(3586), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4430), 1, - anon_sym_LPAREN, - STATE(1094), 1, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(1589), 1, + STATE(2296), 1, + sym_string, + STATE(2498), 1, sym__lhs_expression, - STATE(1598), 1, + STATE(2509), 1, sym_builtin_type, - STATE(1599), 1, - sym_function_type, - STATE(1851), 1, + STATE(2847), 1, sym_type, - STATE(2291), 1, - sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -127346,56 +127403,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41237] = 22, - ACTIONS(1312), 1, + [41219] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4410), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2650), 1, + STATE(2509), 1, + sym_builtin_type, + STATE(3048), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -127405,56 +127462,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41318] = 22, - ACTIONS(1312), 1, + [41300] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1003), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2499), 1, - sym_function_type, - STATE(3302), 1, + STATE(2838), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -127464,56 +127521,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41399] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [41381] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4461), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2814), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3072), 9, + 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, @@ -127523,56 +127580,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41480] = 22, - ACTIONS(1312), 1, + [41462] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4421), 1, anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4463), 1, anon_sym_LPAREN, - STATE(1003), 1, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, - sym__lhs_expression, - STATE(2322), 1, + STATE(2472), 1, sym_builtin_type, - STATE(2499), 1, + STATE(2484), 1, + sym__lhs_expression, + STATE(2957), 1, sym_function_type, - STATE(2521), 1, + STATE(3021), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(1554), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -127582,56 +127639,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41561] = 22, - ACTIONS(1312), 1, + [41543] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4463), 1, + anon_sym_LPAREN, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, + STATE(2472), 1, sym_builtin_type, - STATE(2491), 1, + STATE(2484), 1, sym__lhs_expression, - STATE(2750), 1, + STATE(2957), 1, + sym_function_type, + STATE(2959), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(1554), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -127641,56 +127698,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41642] = 22, - ACTIONS(1312), 1, + [41624] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4463), 1, + anon_sym_LPAREN, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, + STATE(2472), 1, sym_builtin_type, - STATE(2491), 1, + STATE(2484), 1, sym__lhs_expression, - STATE(3012), 1, + STATE(2896), 1, sym_type, + STATE(2957), 1, + sym_function_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(1554), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -127700,115 +127757,188 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41723] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4344), 1, + [41705] = 6, + ACTIONS(1753), 1, anon_sym_LPAREN, - STATE(1003), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2321), 1, - sym__lhs_expression, - STATE(2322), 1, - sym_builtin_type, - STATE(2499), 1, - sym_function_type, - STATE(3088), 1, - sym_type, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1328), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2860), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [41804] = 22, - ACTIONS(1312), 1, + 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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, - sym_identifier, - ACTIONS(3586), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4430), 1, - anon_sym_LPAREN, - STATE(1094), 1, + ACTIONS(4467), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1589), 1, - sym__lhs_expression, - STATE(1598), 1, - sym_builtin_type, - STATE(1599), 1, - sym_function_type, - STATE(1783), 1, - sym_type, - STATE(2291), 1, + STATE(2495), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4394), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(3089), 9, + 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, @@ -127818,99 +127948,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41885] = 6, - ACTIONS(4442), 1, - anon_sym_DOT, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1888), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1782), 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(1784), 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, - [41934] = 22, - ACTIONS(1312), 1, + [41939] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1003), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2499), 1, - sym_function_type, - STATE(3241), 1, + STATE(2584), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -127920,22 +128007,21 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42015] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4418), 1, - anon_sym_DOT, - ACTIONS(4424), 1, - anon_sym_QMARK, + [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(4420), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -127943,13 +128029,12 @@ 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(1778), 19, + ACTIONS(1636), 18, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -127963,58 +128048,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, anon_sym_DOT_DOT_DOT, - [42068] = 22, - ACTIONS(1312), 1, + [42071] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2566), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -128024,56 +128110,99 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42149] = 22, - ACTIONS(1312), 1, + [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, - ACTIONS(1324), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + 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(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4473), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4475), 1, anon_sym_this, - ACTIONS(4344), 1, - anon_sym_LPAREN, - STATE(1003), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2607), 1, sym_string, - STATE(2321), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2322), 1, - sym_builtin_type, - STATE(2499), 1, - sym_function_type, - STATE(2625), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2860), 9, + 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, @@ -128083,56 +128212,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42230] = 22, - ACTIONS(1312), 1, + [42282] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4463), 1, + anon_sym_LPAREN, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, + STATE(2472), 1, sym_builtin_type, - STATE(2491), 1, + STATE(2484), 1, sym__lhs_expression, - STATE(2768), 1, + STATE(2957), 1, + sym_function_type, + STATE(3099), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(1554), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -128142,56 +128271,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42311] = 22, - ACTIONS(1312), 1, + [42363] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4344), 1, - anon_sym_LPAREN, - ACTIONS(4446), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(1003), 1, + 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(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2499), 1, - sym_function_type, - STATE(2991), 1, + STATE(2680), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -128201,56 +128330,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42392] = 22, - ACTIONS(1312), 1, + [42444] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(3024), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -128260,100 +128389,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42473] = 7, - ACTIONS(341), 1, - sym__closing_brace_marker, - ACTIONS(4428), 1, - anon_sym_COMMA, - STATE(210), 1, - sym__closing_brace, - STATE(2702), 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(1624), 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, - [42524] = 22, - ACTIONS(1312), 1, + [42525] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4316), 1, - anon_sym_this, - ACTIONS(4448), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, sym_member_expression, - STATE(2513), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1354), 4, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2747), 9, + 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, @@ -128363,56 +128448,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42605] = 22, - ACTIONS(1312), 1, + [42606] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(3027), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -128422,56 +128507,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42686] = 22, - ACTIONS(1312), 1, + [42687] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2497), 1, - sym_type, - STATE(2499), 1, + STATE(2471), 1, sym_function_type, + STATE(2745), 1, + sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -128481,56 +128566,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42767] = 22, - ACTIONS(1312), 1, + [42768] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2499), 1, + STATE(2471), 1, sym_function_type, - STATE(3255), 1, + STATE(3316), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -128540,56 +128625,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42848] = 22, - ACTIONS(1312), 1, + [42849] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4398), 1, - anon_sym_this, - ACTIONS(4450), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(2214), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2484), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2486), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2849), 1, - sym_function_type, - STATE(3077), 1, + STATE(2545), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1538), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2843), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -128599,56 +128684,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42929] = 22, - ACTIONS(1312), 1, + [42930] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4452), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4454), 1, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, anon_sym_this, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1354), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - STATE(2403), 9, + 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, @@ -128658,56 +128743,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43010] = 22, - ACTIONS(1312), 1, + [43011] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1003), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2499), 1, - sym_function_type, - STATE(3240), 1, + STATE(2574), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -128717,56 +128802,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43091] = 22, - ACTIONS(1312), 1, + [43092] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4398), 1, - anon_sym_this, - ACTIONS(4450), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(2214), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2484), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2486), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2849), 1, - sym_function_type, - STATE(2971), 1, + STATE(2594), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1538), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2843), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -128776,57 +128861,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43172] = 23, - ACTIONS(1356), 1, - anon_sym_in, - ACTIONS(2058), 1, + [43173] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4316), 1, - anon_sym_this, - ACTIONS(4456), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4458), 1, - anon_sym_LBRACE, - STATE(1919), 1, - sym__call, - STATE(1920), 1, - sym__constructor_call, - STATE(2285), 1, + 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(2488), 1, + STATE(2296), 1, sym_string, - STATE(2788), 1, + 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(2074), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2010), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1354), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2675), 9, + 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, @@ -128836,56 +128920,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43255] = 22, - ACTIONS(1312), 1, + [43254] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - STATE(1003), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2321), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(2509), 1, sym_builtin_type, - STATE(2499), 1, - sym_function_type, - STATE(2719), 1, + STATE(2624), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -128895,56 +128979,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43336] = 22, - ACTIONS(1312), 1, + [43335] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(1599), 1, - sym_function_type, - STATE(2260), 1, + ACTIONS(4477), 1, + anon_sym_LPAREN, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(2730), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -128954,56 +129038,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43417] = 22, - ACTIONS(1312), 1, + [43416] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4398), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4450), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - STATE(2214), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2484), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2486), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2849), 1, + STATE(2471), 1, sym_function_type, - STATE(2981), 1, + STATE(2718), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1538), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2843), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -129013,56 +129097,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43498] = 22, - ACTIONS(1312), 1, + [43497] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4410), 1, + ACTIONS(4431), 1, anon_sym_LPAREN, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(1599), 1, + STATE(1667), 1, sym_function_type, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2456), 1, - sym_builtin_type, - STATE(2491), 1, + STATE(2498), 1, sym__lhs_expression, - STATE(2668), 1, + STATE(2509), 1, + sym_builtin_type, + STATE(2774), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(4416), 5, + ACTIONS(4437), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(3072), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -129072,56 +129156,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43579] = 22, - ACTIONS(1312), 1, + [43578] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4398), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4450), 1, + ACTIONS(4371), 1, anon_sym_LPAREN, - STATE(2214), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2484), 1, + STATE(2362), 1, sym__lhs_expression, - STATE(2486), 1, + STATE(2370), 1, sym_builtin_type, - STATE(2849), 1, + STATE(2471), 1, sym_function_type, - STATE(2857), 1, + STATE(3165), 1, sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1538), 5, + ACTIONS(1367), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2843), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -129131,56 +129215,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43660] = 22, - ACTIONS(1312), 1, + [43659] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3611), 1, anon_sym_this, - ACTIONS(4344), 1, + ACTIONS(4477), 1, anon_sym_LPAREN, - STATE(1003), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2321), 1, + STATE(1664), 1, sym__lhs_expression, - STATE(2322), 1, + STATE(1665), 1, sym_builtin_type, - STATE(2499), 1, + STATE(1667), 1, sym_function_type, - STATE(3162), 1, + STATE(1975), 1, sym_type, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1328), 5, + ACTIONS(4425), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(2860), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -129190,57 +129274,469 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43741] = 24, - ACTIONS(1312), 1, + [43740] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RPAREN, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + 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, - STATE(2950), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2949), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + 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, @@ -129250,24 +129746,133 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43825] = 9, - ACTIONS(1782), 1, + [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, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4462), 1, - anon_sym_DOT, - ACTIONS(4466), 1, + 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(4468), 1, - anon_sym_QMARK, + 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(4464), 2, + 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, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + 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, @@ -129275,11 +129880,14 @@ 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(1778), 17, + 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, @@ -129293,26 +129901,147 @@ 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, anon_sym_DOT_DOT_DOT, - [43879] = 9, - ACTIONS(1782), 1, + [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(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3706), 1, + ACTIONS(4487), 1, anon_sym_DOT, - ACTIONS(3708), 1, - anon_sym_QMARK, - ACTIONS(4472), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, + ACTIONS(4493), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4470), 2, + ACTIONS(4489), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -129322,9 +130051,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1785), 17, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129340,24 +130069,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [43933] = 9, - ACTIONS(1782), 1, + [44816] = 9, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3714), 1, + ACTIONS(3737), 1, anon_sym_DOT, - ACTIONS(3716), 1, + ACTIONS(3739), 1, anon_sym_QMARK, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4464), 2, + ACTIONS(4489), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -129367,7 +130096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1785), 17, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -129385,15 +130114,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [43987] = 5, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, + [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(1780), 11, + ACTIONS(1851), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -129403,13 +130167,15 @@ 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(1778), 20, + 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, @@ -129426,24 +130192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44033] = 9, - ACTIONS(1782), 1, + [44954] = 9, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3714), 1, + ACTIONS(3737), 1, anon_sym_DOT, - ACTIONS(3716), 1, + ACTIONS(3739), 1, anon_sym_QMARK, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4420), 2, + ACTIONS(4449), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -129453,7 +130219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1785), 17, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -129471,57 +130237,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [44087] = 24, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3774), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + [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(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2875), 1, + STATE(2886), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2874), 2, + STATE(2885), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -129531,57 +130336,117 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44171] = 24, - ACTIONS(1312), 1, + [45134] = 24, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 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(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(1332), 1, + 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(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3718), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3771), 1, anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, STATE(3011), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, STATE(3010), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -129591,24 +130456,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44255] = 9, - ACTIONS(1782), 1, + [45302] = 5, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_LBRACK, - ACTIONS(4474), 1, - anon_sym_DOT, - ACTIONS(4476), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4470), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -129618,9 +130476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1785), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_in, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129634,19 +130494,86 @@ 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, anon_sym_DOT_DOT_DOT, - [44309] = 5, - ACTIONS(4440), 1, - anon_sym_DOT_DOT_DOT, - STATE(2520), 1, - sym__rangeOperator, + [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(1626), 12, + 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, @@ -129654,14 +130581,10 @@ 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(1624), 19, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1785), 16, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129675,17 +130598,26 @@ 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, - [44355] = 4, - ACTIONS(4420), 1, - anon_sym_COLON, + 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(1626), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4503), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -129693,14 +130625,11 @@ 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(1624), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1785), 17, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129714,76 +130643,26 @@ 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, anon_sym_DOT_DOT_DOT, - [44399] = 24, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [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(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, - anon_sym_RPAREN, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, - STATE(2898), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2896), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [44483] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1834), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4503), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -129791,15 +130670,11 @@ 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(1832), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1785), 17, anon_sym_STAR, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129813,14 +130688,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, anon_sym_DOT_DOT_DOT, - [44525] = 3, + [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(1862), 12, + ACTIONS(1638), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -129833,12 +130711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1860), 21, + ACTIONS(1636), 19, 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, @@ -129854,14 +130731,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [44567] = 3, + [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(1900), 12, + 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, @@ -129869,15 +130876,11 @@ 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(1898), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1785), 17, anon_sym_STAR, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -129891,56 +130894,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, anon_sym_DOT_DOT_DOT, - [44609] = 20, - ACTIONS(1312), 1, + [45858] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1386), 1, + ACTIONS(1341), 1, anon_sym_in, - ACTIONS(4454), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(4478), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(1490), 1, + STATE(1501), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1384), 6, + ACTIONS(1339), 6, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2838), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -129950,53 +130952,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44685] = 20, - ACTIONS(1312), 1, + [45934] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1390), 1, + ACTIONS(1381), 1, anon_sym_in, - ACTIONS(4454), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(4478), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(1490), 1, + STATE(1501), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 6, + ACTIONS(1379), 6, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2838), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -130006,53 +131008,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44761] = 20, - ACTIONS(1397), 1, + [46010] = 20, + ACTIONS(1388), 1, anon_sym_in, - ACTIONS(1399), 1, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(4480), 1, + ACTIONS(4511), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4514), 1, anon_sym_this, - STATE(1490), 1, + STATE(1501), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(1395), 6, + ACTIONS(1386), 6, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2838), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -130062,53 +131064,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44837] = 20, - ACTIONS(1312), 1, + [46086] = 20, + ACTIONS(1315), 1, + anon_sym_in, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1438), 1, - anon_sym_in, - ACTIONS(4454), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(4478), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(1490), 1, + STATE(1501), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1436), 6, + ACTIONS(1313), 6, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2838), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -130118,53 +131120,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44913] = 20, - ACTIONS(1312), 1, + [46162] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1442), 1, + ACTIONS(1449), 1, anon_sym_in, - ACTIONS(4454), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(4478), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(1490), 1, + STATE(1501), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1440), 6, + ACTIONS(1447), 6, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2838), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -130174,117 +131176,57 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44989] = 24, - ACTIONS(1312), 1, + [46238] = 24, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3852), 1, - anon_sym_RPAREN, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, - STATE(2955), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2954), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [45073] = 24, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3718), 1, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(3842), 1, + ACTIONS(3777), 1, anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2850), 1, + STATE(3019), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2847), 2, + STATE(3018), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -130294,57 +131236,57 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45157] = 24, - ACTIONS(1312), 1, + [46322] = 24, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3718), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3832), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(3781), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2893), 1, - aux_sym_array_repeat1, + STATE(3063), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2864), 2, + STATE(3062), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -130354,57 +131296,57 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45241] = 24, - ACTIONS(1312), 1, + [46406] = 24, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3744), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(3825), 1, anon_sym_RPAREN, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2947), 1, + STATE(3022), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3104), 2, + STATE(3006), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -130414,24 +131356,24 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45325] = 9, - ACTIONS(1714), 1, + [46490] = 9, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(1782), 1, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3606), 1, + ACTIONS(4517), 1, anon_sym_DOT, - ACTIONS(3608), 1, + ACTIONS(4521), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4486), 2, + ACTIONS(4519), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -130441,9 +131383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1785), 16, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -130459,117 +131400,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45379] = 24, - ACTIONS(1312), 1, + [46543] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3720), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, - STATE(2989), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2962), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [45463] = 24, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3804), 1, - anon_sym_RPAREN, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(3040), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3017), 2, + ACTIONS(1510), 2, + anon_sym_catch, + anon_sym_else, + STATE(690), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -130579,83 +131457,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45547] = 22, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, - anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, - anon_sym_null, - ACTIONS(1368), 1, - aux_sym_integer_token1, - ACTIONS(1370), 1, - aux_sym_integer_token2, - ACTIONS(1372), 1, - aux_sym_float_token1, - ACTIONS(1374), 1, - aux_sym_float_token2, - ACTIONS(1378), 1, - aux_sym_string_token1, - ACTIONS(1380), 1, - aux_sym_string_token3, - ACTIONS(4488), 1, - sym_identifier, - ACTIONS(4490), 1, - anon_sym_this, - STATE(337), 1, - sym__call, - STATE(371), 1, - sym__constructor_call, - STATE(2289), 1, - sym_member_expression, - STATE(2292), 1, - sym_string, - STATE(2585), 1, - sym__lhs_expression, + [46622] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, - anon_sym_true, - anon_sym_false, - STATE(358), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(1354), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(2482), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [45627] = 9, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3540), 1, + ACTIONS(1783), 12, anon_sym_DOT, - ACTIONS(3542), 1, anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1782), 2, - anon_sym_LPAREN, - anon_sym_RBRACE, - ACTIONS(4486), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -130663,10 +131471,14 @@ 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(1778), 16, + 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, @@ -130680,13 +131492,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, anon_sym_DOT_DOT_DOT, - [45681] = 3, + [46663] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1896), 12, + ACTIONS(1799), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -130699,7 +131512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1894), 20, + ACTIONS(1797), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -130720,11 +131533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45722] = 3, + [46704] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1758), 12, + ACTIONS(1469), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -130737,7 +131550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1756), 20, + ACTIONS(1471), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -130758,11 +131571,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45763] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, + [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(1762), 12, + ACTIONS(1638), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -130775,11 +131651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1760), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1636), 17, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -130796,11 +131669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45804] = 3, + [46871] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1766), 12, + ACTIONS(1895), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -130813,7 +131686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1764), 20, + ACTIONS(1893), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -130834,11 +131707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45845] = 3, + [46912] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1770), 12, + ACTIONS(1899), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -130851,7 +131724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1768), 20, + ACTIONS(1897), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -130872,13 +131745,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [45886] = 3, + [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(1788), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4499), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -130886,14 +131768,11 @@ 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(1786), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1785), 17, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -130907,92 +131786,107 @@ 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, anon_sym_DOT_DOT_DOT, - [45927] = 3, + [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(1792), 12, + 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_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(1790), 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, - [45968] = 19, - ACTIONS(1312), 1, + 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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4438), 1, + ACTIONS(4461), 1, anon_sym_this, - ACTIONS(4492), 1, + ACTIONS(4527), 1, sym_identifier, - STATE(1559), 1, + STATE(1519), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2267), 1, + STATE(2268), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1440), 6, + ACTIONS(1379), 6, sym__lookback_semicolon, anon_sym_DOT, anon_sym_LPAREN, anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2833), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -131002,54 +131896,159 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46041] = 22, - ACTIONS(1312), 1, + [47150] = 19, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(4529), 1, + sym_identifier, + ACTIONS(4532), 1, anon_sym_this, - ACTIONS(4460), 1, + 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(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + STATE(1519), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, - STATE(2674), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3285), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, + 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, @@ -131059,22 +132058,22 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46120] = 8, - ACTIONS(1782), 1, + [47369] = 8, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3714), 1, + ACTIONS(4487), 1, anon_sym_DOT, - ACTIONS(3716), 1, + ACTIONS(4493), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4464), 2, + ACTIONS(4489), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -131084,7 +132083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1785), 17, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -131102,11 +132101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46171] = 3, + [47420] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1822), 12, + ACTIONS(1903), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131119,7 +132118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1820), 20, + ACTIONS(1901), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131140,22 +132139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46212] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4462), 1, - anon_sym_DOT, - ACTIONS(4468), 1, - anon_sym_QMARK, + [47461] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4464), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1911), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -131163,11 +132153,14 @@ 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(1778), 17, + 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, @@ -131181,13 +132174,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, anon_sym_DOT_DOT_DOT, - [46263] = 3, + [47502] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1826), 12, + ACTIONS(1915), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131200,7 +132194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1824), 20, + ACTIONS(1913), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131221,17 +132215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46304] = 6, - ACTIONS(4494), 1, + [47543] = 6, + ACTIONS(4523), 1, anon_sym_COMMA, - ACTIONS(4496), 1, + ACTIONS(4535), 1, anon_sym_RBRACK, - STATE(3064), 1, + STATE(2904), 1, aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1638), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131244,7 +132238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1624), 17, + ACTIONS(1636), 17, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -131262,11 +132256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46351] = 3, + [47590] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1838), 12, + ACTIONS(1919), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131279,7 +132273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1836), 20, + ACTIONS(1917), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131300,11 +132294,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46392] = 3, + [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(1300), 12, + 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, @@ -131317,7 +132354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1302), 20, + ACTIONS(1921), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131338,11 +132375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46433] = 3, + [47723] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1854), 12, + ACTIONS(1927), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131355,7 +132392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1852), 20, + ACTIONS(1925), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131376,11 +132413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46474] = 3, + [47764] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1858), 12, + ACTIONS(1931), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131393,7 +132430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1856), 20, + ACTIONS(1929), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131414,17 +132451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46515] = 6, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4472), 1, - anon_sym_LBRACK, + [47805] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1780), 11, + ACTIONS(1935), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131434,11 +132465,14 @@ 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(1778), 18, + ACTIONS(1933), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_in, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -131455,11 +132489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46562] = 3, + [47846] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1874), 12, + ACTIONS(1939), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131472,7 +132506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1872), 20, + ACTIONS(1937), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131493,11 +132527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46603] = 3, + [47887] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1878), 12, + ACTIONS(1943), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131510,7 +132544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1876), 20, + ACTIONS(1941), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131531,11 +132565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46644] = 3, + [47928] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1886), 12, + ACTIONS(1803), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131548,7 +132582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1884), 20, + ACTIONS(1801), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131569,22 +132603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46685] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3606), 1, - anon_sym_DOT, - ACTIONS(3608), 1, - anon_sym_QMARK, + [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(4486), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -131592,11 +132623,11 @@ 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(1778), 17, + ACTIONS(1636), 17, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -131610,24 +132641,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, anon_sym_DOT_DOT_DOT, - [46736] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3540), 1, + [48016] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1951), 12, anon_sym_DOT, - ACTIONS(3542), 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(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(4486), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1955), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -131635,11 +132696,14 @@ 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(1778), 17, + ACTIONS(1953), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -131653,13 +132717,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, anon_sym_DOT_DOT_DOT, - [46787] = 3, + [48098] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1959), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131672,7 +132737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1354), 20, + ACTIONS(1957), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131693,51 +132758,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [46828] = 19, - ACTIONS(1312), 1, + [48139] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4438), 1, + ACTIONS(4475), 1, anon_sym_this, - ACTIONS(4492), 1, + ACTIONS(4539), 1, sym_identifier, - STATE(1559), 1, + STATE(1542), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(2061), 1, sym_member_expression, - STATE(2267), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1384), 6, - sym__lookback_semicolon, + ACTIONS(1339), 6, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT, anon_sym_EQ_GT, - STATE(2833), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -131747,54 +132812,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46901] = 22, - ACTIONS(1312), 1, + [48212] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(4475), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4539), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + STATE(1542), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, - STATE(2674), 1, + 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(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(3888), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3221), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, + 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, @@ -131804,51 +132920,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46980] = 19, - ACTIONS(1312), 1, + [48358] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4438), 1, + ACTIONS(4475), 1, anon_sym_this, - ACTIONS(4492), 1, + ACTIONS(4539), 1, sym_identifier, - STATE(1559), 1, + STATE(1542), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(2061), 1, sym_member_expression, - STATE(2267), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 6, - sym__lookback_semicolon, + 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(2833), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -131858,11 +133028,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47053] = 3, + [48504] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1969), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -131875,7 +133045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1474), 20, + ACTIONS(1967), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -131896,24 +133066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47094] = 9, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4498), 1, - anon_sym_DOT, - ACTIONS(4502), 1, - anon_sym_QMARK, + [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(4500), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -131921,9 +133086,10 @@ 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(1778), 16, + ACTIONS(1636), 17, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -131938,71 +133104,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, anon_sym_DOT_DOT_DOT, - [47147] = 23, - ACTIONS(1300), 1, - anon_sym_in, - ACTIONS(1302), 1, - anon_sym_EQ_GT, - ACTIONS(2046), 1, - anon_sym_LBRACE, - ACTIONS(2058), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_new, - ACTIONS(2064), 1, - anon_sym_null, - ACTIONS(2066), 1, - aux_sym_integer_token1, - ACTIONS(2068), 1, - aux_sym_integer_token2, - ACTIONS(2070), 1, - aux_sym_float_token1, - ACTIONS(2072), 1, - aux_sym_float_token2, - ACTIONS(2076), 1, - aux_sym_string_token1, - ACTIONS(2078), 1, - aux_sym_string_token3, - ACTIONS(2316), 1, - anon_sym_this, - ACTIONS(4504), 1, - sym_identifier, - STATE(1600), 1, - sym_string, - STATE(1715), 1, - sym_member_expression, - STATE(1919), 1, - sym__call, - STATE(1920), 1, - sym__constructor_call, - STATE(2788), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2074), 2, - anon_sym_true, - anon_sym_false, - STATE(1970), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1872), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [47228] = 3, + [48592] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1720), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132015,7 +133124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1718), 20, + ACTIONS(1371), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132036,11 +133145,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47269] = 3, + [48633] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1916), 12, + ACTIONS(1457), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132053,7 +133162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1914), 20, + ACTIONS(1455), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132074,11 +133183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47310] = 3, + [48674] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1920), 12, + ACTIONS(1977), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132091,7 +133200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1918), 20, + ACTIONS(1975), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132112,17 +133221,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47351] = 6, - ACTIONS(4494), 1, - anon_sym_COMMA, - ACTIONS(4506), 1, - anon_sym_RBRACK, - STATE(2879), 1, - aux_sym_map_repeat1, + [48715] = 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, @@ -132135,8 +133238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1624), 17, + 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, @@ -132153,11 +133259,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47398] = 3, + [48756] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1936), 12, + ACTIONS(1985), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132170,7 +133276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1934), 20, + ACTIONS(1983), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132191,11 +133297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47439] = 3, + [48797] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1940), 12, + ACTIONS(1771), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132208,7 +133314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1938), 20, + ACTIONS(1769), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132229,13 +133335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47480] = 3, + [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(1944), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -132243,14 +133358,11 @@ 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(1942), 20, + ACTIONS(1785), 17, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132264,16 +133376,19 @@ 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, anon_sym_DOT_DOT_DOT, - [47521] = 3, + [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(1948), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -132284,7 +133399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1946), 20, + ACTIONS(1785), 19, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132302,20 +133417,19 @@ 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, anon_sym_DOT_DOT_DOT, - [47562] = 6, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4466), 1, + [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(1780), 11, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132325,11 +133439,12 @@ 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(1778), 18, - sym__lookback_semicolon, + ACTIONS(1371), 17, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132345,23 +133460,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [47609] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, + [48983] = 6, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(4474), 1, - anon_sym_DOT, - ACTIONS(4476), 1, - anon_sym_QMARK, + ACTIONS(2161), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4470), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 9, + 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, @@ -132371,9 +133483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1785), 17, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132387,13 +133498,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, anon_sym_DOT_DOT_DOT, - [47660] = 3, + [49030] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1956), 12, + ACTIONS(1807), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132406,7 +133518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1954), 20, + ACTIONS(1805), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132427,11 +133539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47701] = 3, + [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(1960), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132444,11 +133562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1958), 20, + ACTIONS(1371), 17, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132464,12 +133580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - anon_sym_DOT_DOT_DOT, - [47742] = 3, + [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(1444), 12, + ACTIONS(1787), 11, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132479,14 +133600,11 @@ 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(1446), 20, + ACTIONS(1785), 18, sym__lookback_semicolon, - sym__closing_brace_marker, anon_sym_STAR, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132503,11 +133621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47783] = 3, + [49165] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1964), 12, + ACTIONS(1811), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132520,7 +133638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1962), 20, + ACTIONS(1809), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132541,11 +133659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47824] = 3, + [49206] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1968), 12, + ACTIONS(1775), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132558,7 +133676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1966), 20, + ACTIONS(1773), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132579,17 +133697,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47865] = 6, - ACTIONS(4494), 1, - anon_sym_COMMA, - ACTIONS(4508), 1, - anon_sym_RBRACK, - STATE(2862), 1, - aux_sym_map_repeat1, + [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(1626), 12, + ACTIONS(1787), 11, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132599,11 +133760,11 @@ 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(1624), 17, + ACTIONS(1785), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132620,11 +133781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47912] = 3, + [49345] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1734), 12, + ACTIONS(1831), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132637,7 +133798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1732), 20, + ACTIONS(1829), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132658,17 +133819,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [47953] = 6, - ACTIONS(1714), 1, + [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(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, + 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(1780), 11, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132678,11 +134006,14 @@ 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(1778), 18, + ACTIONS(1343), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132699,11 +134030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48000] = 3, + [49668] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1870), 12, + ACTIONS(1835), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132716,7 +134047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1868), 20, + ACTIONS(1833), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132737,11 +134068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48041] = 3, + [49709] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1804), 12, + ACTIONS(1847), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132754,7 +134085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1802), 20, + ACTIONS(1845), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132775,11 +134106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48082] = 3, + [49750] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1882), 12, + ACTIONS(1779), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132792,7 +134123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1880), 20, + ACTIONS(1777), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132813,13 +134144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48123] = 3, + [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(1904), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4503), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -132827,14 +134167,11 @@ 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(1902), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1785), 17, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -132848,14 +134185,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, anon_sym_DOT_DOT_DOT, - [48164] = 3, + [49842] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1912), 12, + ACTIONS(1863), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132868,7 +134204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1910), 20, + ACTIONS(1861), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132889,11 +134225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48205] = 3, + [49883] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1730), 12, + ACTIONS(1867), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132906,7 +134242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1728), 20, + ACTIONS(1865), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132927,11 +134263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48246] = 3, + [49924] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1754), 12, + ACTIONS(1871), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -132944,7 +134280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1752), 20, + ACTIONS(1869), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -132965,20 +134301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48287] = 6, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(2478), 1, + [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(1782), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1780), 9, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -132988,8 +134323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1785), 18, anon_sym_STAR, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -133006,71 +134342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48334] = 19, - ACTIONS(1399), 1, - anon_sym_LBRACE, - ACTIONS(1402), 1, - anon_sym_LBRACK, - ACTIONS(1408), 1, - anon_sym_null, - ACTIONS(1411), 1, - aux_sym_integer_token1, - ACTIONS(1414), 1, - aux_sym_integer_token2, - ACTIONS(1417), 1, - aux_sym_float_token1, - ACTIONS(1420), 1, - aux_sym_float_token2, - ACTIONS(1426), 1, - aux_sym_string_token1, - ACTIONS(1429), 1, - aux_sym_string_token3, - ACTIONS(4510), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_this, - STATE(1559), 1, - aux_sym_member_expression_repeat1, - STATE(2260), 1, - sym_member_expression, - STATE(2267), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, + [50012] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1395), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2833), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [48407] = 6, - ACTIONS(4420), 1, - anon_sym_EQ_GT, - ACTIONS(4516), 1, + ACTIONS(1879), 12, anon_sym_DOT, - ACTIONS(4518), 1, anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -133081,7 +134359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 19, + ACTIONS(1877), 20, sym__lookback_semicolon, sym__closing_brace_marker, anon_sym_STAR, @@ -133099,19 +134377,20 @@ 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, anon_sym_DOT_DOT_DOT, - [48454] = 6, - ACTIONS(4494), 1, + [50053] = 6, + ACTIONS(4523), 1, anon_sym_COMMA, - ACTIONS(4520), 1, + ACTIONS(4557), 1, anon_sym_RBRACK, - STATE(3044), 1, + STATE(2899), 1, aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1638), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -133124,7 +134403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1624), 17, + ACTIONS(1636), 17, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -133142,55 +134421,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [48501] = 23, - ACTIONS(1354), 1, + [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, - ACTIONS(1356), 1, - anon_sym_in, - ACTIONS(2058), 1, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [50141] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4454), 1, - anon_sym_this, - ACTIONS(4458), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4522), 1, + ACTIONS(4175), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - STATE(1919), 1, + STATE(1928), 1, sym__call, - STATE(1920), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2488), 1, + STATE(2530), 1, sym_string, - STATE(2788), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2074), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2010), 2, + STATE(3633), 2, sym__rhs_expression, sym_call_expression, - STATE(2644), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133200,51 +134515,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48582] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [50219] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4434), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4524), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1566), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1384), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2841), 9, + STATE(3386), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133254,51 +134571,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48655] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [50297] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4434), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4231), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4524), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1566), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2841), 9, + STATE(3470), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133308,17 +134627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48728] = 6, - ACTIONS(4472), 1, - anon_sym_LBRACK, - ACTIONS(4526), 1, - anon_sym_DOT_DOT_DOT, - STATE(2490), 1, - sym__rangeOperator, + [50375] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1851), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -133331,9 +134644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1354), 17, + ACTIONS(1849), 19, anon_sym_STAR, anon_sym_in, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -133349,51 +134663,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - [48775] = 19, - ACTIONS(1399), 1, - anon_sym_LBRACE, - ACTIONS(1402), 1, + anon_sym_DOT_DOT_DOT, + [50415] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4528), 1, - sym_identifier, - ACTIONS(4531), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4241), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1566), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1395), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2841), 9, + STATE(3539), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133403,51 +134720,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48848] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [50493] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4434), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4245), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4524), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1566), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1436), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2841), 9, + STATE(3578), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133457,51 +134776,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48921] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [50571] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4434), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4247), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4524), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1566), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1440), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2841), 9, + STATE(3354), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133511,60 +134832,15 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48994] = 8, - ACTIONS(1782), 1, + [50649] = 5, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(3706), 1, - anon_sym_DOT, - ACTIONS(3708), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4470), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 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(1778), 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, - [49045] = 6, - ACTIONS(4494), 1, - anon_sym_COMMA, - ACTIONS(4534), 1, - anon_sym_RBRACK, - STATE(2965), 1, - aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1787), 11, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -133574,11 +134850,11 @@ 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(1624), 17, + ACTIONS(1785), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -133595,54 +134871,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [49092] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [50693] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4011), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1452), 2, - anon_sym_catch, - anon_sym_else, - STATE(761), 2, + STATE(3531), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133652,92 +134927,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49171] = 6, - ACTIONS(4466), 1, + [50771] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + 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(1356), 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(1354), 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, - [49218] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4438), 1, - anon_sym_this, - ACTIONS(4492), 1, - sym_identifier, - STATE(1559), 1, - aux_sym_member_expression_repeat1, - STATE(2260), 1, - sym_member_expression, - STATE(2267), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1436), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2833), 9, + STATE(3353), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133747,11 +134983,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49291] = 3, + [50849] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1952), 12, + ACTIONS(1883), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -133764,11 +135000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1950), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1881), 19, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_in, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -133785,53 +135020,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [49332] = 22, + [50889] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4224), 1, + ACTIONS(4271), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3493), 2, + STATE(3653), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133841,53 +135076,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49410] = 22, + [50967] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4180), 1, + ACTIONS(4013), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3619), 2, + STATE(3615), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133897,53 +135132,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49488] = 22, + [51045] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4116), 1, + ACTIONS(4043), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3442), 2, + STATE(3544), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -133953,50 +135188,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49566] = 19, - ACTIONS(1312), 1, + [51123] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4540), 1, - sym_identifier, - ACTIONS(4542), 1, + ACTIONS(1343), 1, + anon_sym_RBRACE, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - STATE(1003), 1, + ACTIONS(4561), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1605), 1, - aux_sym_member_expression_repeat1, - STATE(2052), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(1630), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1384), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(3095), 9, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1796), 9, sym__literal, sym_integer, sym_float, @@ -134006,53 +135244,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49638] = 22, + [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(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(3451), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3573), 2, + STATE(3461), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -134062,15 +135337,15 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49716] = 5, - ACTIONS(1782), 1, + [51319] = 5, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1784), 1, + ACTIONS(1755), 1, anon_sym_LT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1780), 11, + ACTIONS(1787), 11, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -134082,7 +135357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 18, + ACTIONS(1785), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -134101,53 +135376,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [49760] = 22, - ACTIONS(39), 1, + [51363] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4112), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, + 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(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3514), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, + 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, @@ -134157,53 +135429,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49838] = 22, - ACTIONS(39), 1, + [51435] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3431), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, + 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(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3339), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, + 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, @@ -134213,53 +135482,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49916] = 22, - ACTIONS(39), 1, + [51507] = 19, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4130), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4567), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + ACTIONS(4570), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, + 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(93), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(3503), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, + 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, @@ -134269,53 +135535,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49994] = 22, - ACTIONS(39), 1, + [51579] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4062), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, + 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(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3536), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, + 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, @@ -134325,87 +135588,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50072] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4546), 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(4544), 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, - [50112] = 19, - ACTIONS(1312), 1, + [51651] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4540), 1, + ACTIONS(4563), 1, sym_identifier, - ACTIONS(4542), 1, + ACTIONS(4565), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(1605), 1, + STATE(1600), 1, aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 5, + ACTIONS(1447), 5, anon_sym_RPAREN, anon_sym_COLON, anon_sym_COMMA, anon_sym_QMARK, anon_sym_EQ, - STATE(3095), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -134415,53 +135641,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50184] = 22, + [51723] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4114), 1, + ACTIONS(4019), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3647), 2, + STATE(3634), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -134471,53 +135697,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50262] = 22, + [51801] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(4031), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3544), 2, + STATE(3569), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -134527,130 +135753,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50340] = 5, - ACTIONS(4552), 1, - anon_sym_LT, - STATE(1585), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4550), 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(4548), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [50384] = 4, - ACTIONS(4420), 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(1624), 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, - [50426] = 22, - ACTIONS(1312), 1, + [51879] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4144), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4573), 1, + anon_sym_while, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3344), 2, + STATE(3460), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -134660,53 +135809,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50504] = 22, + [51957] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(4039), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3445), 2, + STATE(3536), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -134716,53 +135865,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50582] = 22, + [52035] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4064), 1, + ACTIONS(4045), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3565), 2, + STATE(3358), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -134772,53 +135921,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50660] = 22, - ACTIONS(1312), 1, + [52113] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3453), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(4554), 1, + ACTIONS(4575), 1, anon_sym_LPAREN, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(928), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(945), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -134828,109 +135977,88 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50738] = 22, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3982), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, - sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, - sym__lhs_expression, + [52191] = 4, + ACTIONS(4503), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3434), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [50816] = 22, - ACTIONS(1358), 1, + 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(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1362), 1, - anon_sym_this, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3516), 1, + ACTIONS(4497), 1, + anon_sym_this, + ACTIONS(4577), 1, sym_identifier, - ACTIONS(4556), 1, - anon_sym_LPAREN, - STATE(337), 1, - sym__call, - STATE(362), 1, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(371), 1, - sym__constructor_call, - STATE(1369), 1, + STATE(2296), 1, sym_string, - STATE(2585), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(376), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1385), 9, + 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, @@ -134940,53 +136068,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50894] = 22, - ACTIONS(1358), 1, + [52305] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4398), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3759), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4406), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(4556), 1, - anon_sym_LPAREN, - STATE(337), 1, + STATE(186), 1, sym__call, - STATE(371), 1, + STATE(187), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2290), 1, sym_member_expression, - STATE(2292), 1, + STATE(2296), 1, sym_string, - STATE(2585), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(376), 2, + STATE(3357), 2, sym__rhs_expression, sym_call_expression, - STATE(2314), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -134996,167 +136124,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50972] = 5, - ACTIONS(4552), 1, - anon_sym_LT, - STATE(1663), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4560), 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(4558), 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_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [51016] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4564), 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(4562), 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, - [51056] = 4, - ACTIONS(4470), 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(1624), 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, - [51098] = 22, + [52383] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4040), 1, + ACTIONS(3189), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3476), 2, + STATE(3366), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -135166,53 +136180,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51176] = 22, - ACTIONS(39), 1, + [52461] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4216), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4183), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3528), 2, + STATE(3410), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -135222,53 +136236,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51254] = 22, - ACTIONS(39), 1, + [52539] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(2658), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4497), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4577), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3352), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, + 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, @@ -135278,53 +136289,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51332] = 22, + [52611] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4194), 1, + ACTIONS(4061), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3519), 2, + STATE(3554), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -135334,50 +136345,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51410] = 19, - ACTIONS(1399), 1, + [52689] = 19, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(4566), 1, + ACTIONS(4579), 1, sym_identifier, - ACTIONS(4569), 1, + ACTIONS(4582), 1, anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(1605), 1, + STATE(1616), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(1395), 5, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1386), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(3095), 9, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -135387,53 +136398,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51482] = 22, - ACTIONS(39), 1, + [52761] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4066), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4497), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4577), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3666), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, + 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, @@ -135443,53 +136451,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51560] = 22, - ACTIONS(39), 1, + [52833] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3422), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4497), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4577), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3426), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, + 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, @@ -135499,53 +136504,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51638] = 22, + [52905] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4140), 1, + ACTIONS(4037), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3559), 2, + STATE(3409), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -135555,50 +136560,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51716] = 19, - ACTIONS(1312), 1, + [52983] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4540), 1, - sym_identifier, - ACTIONS(4542), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - STATE(1003), 1, + 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(1605), 1, - aux_sym_member_expression_repeat1, - STATE(2052), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(933), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1436), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(3095), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(947), 9, sym__literal, sym_integer, sym_float, @@ -135608,53 +136616,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51788] = 22, + [53061] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4142), 1, + ACTIONS(3461), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3640), 2, + STATE(3405), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -135664,50 +136672,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51866] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [53139] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4540), 1, - sym_identifier, - ACTIONS(4542), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4041), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1003), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1605), 1, - aux_sym_member_expression_repeat1, - STATE(2052), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1440), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(3095), 9, + STATE(3579), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -135717,53 +136728,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51938] = 22, - ACTIONS(39), 1, + [53217] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4042), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2495), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3509), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2583), 9, sym__literal, sym_integer, sym_float, @@ -135773,53 +136784,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52016] = 22, + [53295] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4068), 1, + ACTIONS(3449), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3570), 2, + STATE(3387), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -135829,15 +136840,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52094] = 5, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [53373] = 4, + ACTIONS(4449), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1638), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -135850,7 +136859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1624), 17, + ACTIONS(1636), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -135868,53 +136877,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - [52138] = 22, - ACTIONS(39), 1, + anon_sym_DOT_DOT_DOT, + [53415] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3779), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3475), 2, + STATE(3538), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -135924,53 +136934,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52216] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [53493] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2631), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3518), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(197), 1, + STATE(2432), 1, sym_member_expression, - STATE(1375), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(3547), 2, sym__rhs_expression, sym_call_expression, - STATE(1387), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -135980,53 +136990,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52294] = 22, - ACTIONS(39), 1, + [53571] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4146), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4111), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3618), 2, + STATE(3560), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -136036,53 +137046,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52372] = 22, + [53649] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4044), 1, + ACTIONS(4079), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3414), 2, + STATE(3341), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -136092,53 +137102,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52450] = 22, - ACTIONS(39), 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(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3976), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4047), 1, + anon_sym_RBRACE, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4585), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2495), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3474), 2, + STATE(3658), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2583), 9, sym__literal, sym_integer, sym_float, @@ -136148,53 +137196,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52528] = 22, - ACTIONS(39), 1, + [53847] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4222), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4055), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3405), 2, + STATE(3347), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -136204,53 +137252,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52606] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [53925] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4021), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4572), 1, - anon_sym_while, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3418), 2, + STATE(3585), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -136260,53 +137308,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52684] = 22, + [54003] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4108), 1, + ACTIONS(4009), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3540), 2, + STATE(3628), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -136316,53 +137364,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52762] = 22, - ACTIONS(1312), 1, + [54081] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3835), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(398), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(3362), 2, sym__rhs_expression, sym_call_expression, - STATE(582), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -136372,53 +137420,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52840] = 22, + [54159] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, ACTIONS(3442), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3644), 2, + STATE(3415), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -136428,95 +137476,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52918] = 8, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(4498), 1, - anon_sym_DOT, - ACTIONS(4502), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4500), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1780), 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(1778), 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, - [52968] = 22, + [54237] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, + ACTIONS(4119), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3568), 2, + STATE(3445), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -136526,149 +137532,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53046] = 6, - ACTIONS(4328), 1, - anon_sym_EQ_GT, - ACTIONS(4574), 1, - anon_sym_DOT, - ACTIONS(4576), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [53092] = 22, + [54315] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4436), 1, - sym_identifier, - ACTIONS(4438), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(4578), 1, + ACTIONS(3559), 1, + sym_identifier, + ACTIONS(4587), 1, anon_sym_LPAREN, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + STATE(1597), 1, sym_member_expression, - STATE(2518), 1, + STATE(1716), 1, sym_string, - STATE(2738), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(1875), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2666), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [53170] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4196), 1, - anon_sym_RPAREN, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3380), 2, + STATE(1949), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(1934), 9, sym__literal, sym_integer, sym_float, @@ -136678,11 +137588,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53248] = 3, + [54393] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1900), 12, + ACTIONS(1827), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -136695,7 +137605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1898), 19, + ACTIONS(1825), 19, sym__lookback_semicolon, anon_sym_STAR, anon_sym_COLON, @@ -136715,53 +137625,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [53288] = 22, + [54433] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(2665), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3633), 2, + STATE(3425), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -136771,53 +137681,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53366] = 22, + [54511] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4135), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3427), 2, + STATE(3514), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -136827,53 +137737,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53444] = 22, - ACTIONS(39), 1, + [54589] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3952), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3793), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3600), 2, + STATE(3346), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -136883,53 +137793,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53522] = 22, - ACTIONS(1312), 1, + [54667] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4187), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(3431), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -136939,53 +137849,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53600] = 22, - ACTIONS(39), 1, + [54745] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4050), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4109), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3611), 2, + STATE(3571), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -136995,53 +137905,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53678] = 22, - ACTIONS(39), 1, + [54823] = 22, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, + STATE(408), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3577), 2, + STATE(367), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(547), 9, sym__literal, sym_integer, sym_float, @@ -137051,53 +137961,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53756] = 22, - ACTIONS(1302), 1, - anon_sym_RBRACE, - ACTIONS(1312), 1, + [54901] = 22, + ACTIONS(2571), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(4580), 1, + ACTIONS(3551), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4591), 1, + anon_sym_LPAREN, + STATE(1478), 1, + sym_string, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, sym__call, - STATE(191), 1, + STATE(1535), 1, sym__constructor_call, - STATE(197), 1, - sym_member_expression, - STATE(1688), 1, - sym_string, - STATE(2674), 1, + STATE(2752), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(1557), 2, sym__rhs_expression, sym_call_expression, - STATE(1898), 9, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -137107,53 +138017,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53834] = 22, - ACTIONS(1312), 1, + [54979] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3994), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4341), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3425), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2309), 9, sym__literal, sym_integer, sym_float, @@ -137163,91 +138073,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53912] = 4, - ACTIONS(4464), 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(1624), 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, - [53954] = 22, - ACTIONS(39), 1, + [55057] = 22, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4495), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4497), 1, + anon_sym_this, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2294), 1, sym_member_expression, - STATE(2518), 1, + STATE(2297), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3341), 2, + STATE(367), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2502), 9, sym__literal, sym_integer, sym_float, @@ -137257,53 +138129,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54032] = 22, + [55135] = 22, ACTIONS(39), 1, anon_sym_LBRACK, + ACTIONS(41), 1, + anon_sym_this, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4074), 1, + ACTIONS(1343), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4593), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + STATE(1597), 1, sym_member_expression, - STATE(2518), 1, + STATE(1716), 1, sym_string, - STATE(2738), 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(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3325), 2, + STATE(1853), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1989), 9, sym__literal, sym_integer, sym_float, @@ -137313,53 +138185,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54110] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [55213] = 22, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(3538), 1, + ACTIONS(4555), 1, sym_identifier, - ACTIONS(4554), 1, + ACTIONS(4595), 1, anon_sym_LPAREN, - STATE(190), 1, + STATE(2000), 1, sym__call, - STATE(191), 1, + STATE(2023), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(2002), 1, + STATE(2522), 1, sym_string, - STATE(2674), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(2046), 2, sym__rhs_expression, sym_call_expression, - STATE(1833), 9, + STATE(2664), 9, sym__literal, sym_integer, sym_float, @@ -137369,53 +138241,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54188] = 22, - ACTIONS(39), 1, + [55291] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4178), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3557), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(1630), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3365), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -137425,53 +138297,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54266] = 22, - ACTIONS(1312), 1, + [55369] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3790), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4467), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2495), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3597), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2802), 9, sym__literal, sym_integer, sym_float, @@ -137481,53 +138353,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54344] = 22, - ACTIONS(39), 1, + [55447] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4230), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4473), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, + ACTIONS(4475), 1, + anon_sym_this, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2607), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3369), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2714), 9, sym__literal, sym_integer, sym_float, @@ -137537,90 +138409,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54422] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4584), 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(4582), 21, - sym__lookback_semicolon, - anon_sym_STAR, - anon_sym_RPAREN, + [55525] = 22, + ACTIONS(2011), 1, 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, - [54462] = 22, - ACTIONS(39), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3553), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + ACTIONS(4595), 1, + anon_sym_LPAREN, + STATE(1587), 1, sym_member_expression, - STATE(2518), 1, + STATE(1609), 1, sym_string, - STATE(2738), 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(93), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(3639), 2, + STATE(2046), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -137630,53 +138465,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54540] = 22, - ACTIONS(1312), 1, + [55603] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(4554), 1, - anon_sym_LPAREN, - ACTIONS(4586), 1, + ACTIONS(3555), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(189), 1, sym_member_expression, - STATE(2513), 1, + STATE(1925), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2624), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -137686,53 +138521,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54618] = 22, + [55681] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4200), 1, + ACTIONS(4025), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3330), 2, + STATE(3479), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -137742,53 +138577,93 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54696] = 22, + [55759] = 6, + ACTIONS(4597), 1, + anon_sym_DOT, + ACTIONS(4599), 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), 13, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + 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(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, + anon_sym_LT, + anon_sym_GT, + 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(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4078), 1, + ACTIONS(3995), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3333), 2, + STATE(3370), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -137798,53 +138673,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54774] = 22, + [55883] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4578), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1875), 2, + STATE(1949), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -137854,53 +138729,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54852] = 22, - ACTIONS(1312), 1, + [55961] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(4588), 1, + ACTIONS(4601), 1, anon_sym_while, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3379), 2, + STATE(3437), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -137910,53 +138785,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54930] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [56039] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3534), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(197), 1, + STATE(2432), 1, sym_member_expression, - STATE(1688), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(3682), 2, sym__rhs_expression, sym_call_expression, - STATE(1756), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -137966,53 +138841,92 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55008] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [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, + 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_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, + [56161] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4316), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2675), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4448), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2513), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(3360), 2, sym__rhs_expression, sym_call_expression, - STATE(2747), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138022,53 +138936,131 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55086] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [56239] = 5, + ACTIONS(4607), 1, + anon_sym_LT, + STATE(1676), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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_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, + [56283] = 5, + ACTIONS(4607), 1, + anon_sym_LT, + STATE(1677), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4611), 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(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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [56327] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4432), 1, - sym_identifier, - ACTIONS(4434), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4017), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2596), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(3509), 2, sym__rhs_expression, sym_call_expression, - STATE(2689), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138078,53 +139070,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55164] = 22, + [56405] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4615), 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(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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [56445] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4147), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3413), 2, + STATE(3329), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138134,53 +139163,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55242] = 22, + [56523] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(4151), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3338), 2, + STATE(3521), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138190,90 +139219,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55320] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1862), 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(1860), 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, - [55360] = 22, + [56601] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4152), 1, + ACTIONS(3444), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3417), 2, + STATE(3343), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138283,53 +139275,109 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55438] = 22, - ACTIONS(1312), 1, + [56679] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + 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(4617), 1, + sym_identifier, + ACTIONS(4619), 1, + anon_sym__, + ACTIONS(4621), 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(3623), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2711), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56757] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3848), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4225), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3332), 2, + STATE(3649), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138339,53 +139387,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55516] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [56835] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3830), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4167), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3375), 2, + STATE(3564), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138395,22 +139443,134 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55594] = 3, + [56913] = 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(4057), 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(4592), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3505), 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, + [56991] = 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(4005), 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(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, + [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(4590), 21, + ACTIONS(4623), 21, sym__lookback_semicolon, anon_sym_STAR, anon_sym_RPAREN, @@ -138432,11 +139592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [55634] = 3, + [57109] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4596), 10, + ACTIONS(4629), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -138447,7 +139607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(4594), 21, + ACTIONS(4627), 21, sym__lookback_semicolon, anon_sym_STAR, anon_sym_RPAREN, @@ -138469,93 +139629,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [55674] = 6, - ACTIONS(4598), 1, - anon_sym_DOT, - ACTIONS(4600), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1888), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1784), 13, - anon_sym_this, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - 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(1782), 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, - anon_sym_LT, - anon_sym_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [55720] = 22, + [57149] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4058), 1, + ACTIONS(4169), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3410), 2, + STATE(3383), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138565,53 +139685,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55798] = 22, + [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(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4182), 1, + ACTIONS(2637), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3389), 2, + STATE(3530), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138621,53 +139778,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55876] = 22, - ACTIONS(2058), 1, + [57345] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4454), 1, - anon_sym_this, - ACTIONS(4458), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4522), 1, + ACTIONS(2643), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4602), 1, - anon_sym_LPAREN, - STATE(1919), 1, + STATE(1928), 1, sym__call, - STATE(1920), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2488), 1, + STATE(2530), 1, sym_string, - STATE(2788), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2074), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1931), 2, + STATE(3570), 2, sym__rhs_expression, sym_call_expression, - STATE(2644), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138677,53 +139834,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55954] = 22, - ACTIONS(1312), 1, + [57423] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1450), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1508), 1, sym_identifier, - ACTIONS(1454), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(4554), 1, + ACTIONS(4575), 1, anon_sym_LPAREN, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(189), 1, sym_member_expression, - STATE(398), 1, + STATE(400), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(572), 9, + STATE(557), 9, sym__literal, sym_integer, sym_float, @@ -138733,53 +139890,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56032] = 22, + [57501] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4204), 1, + ACTIONS(4049), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3650), 2, + STATE(3587), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -138789,53 +139946,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56110] = 22, - ACTIONS(39), 1, + [57579] = 22, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1423), 1, + sym_identifier, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, - sym_identifier, - STATE(1964), 1, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, + STATE(408), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3390), 2, + STATE(367), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(564), 9, sym__literal, sym_integer, sym_float, @@ -138845,53 +140002,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56188] = 22, - ACTIONS(1312), 1, + [57657] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3800), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4481), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4483), 1, + anon_sym_this, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3334), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2395), 9, sym__literal, sym_integer, sym_float, @@ -138901,53 +140058,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56266] = 22, - ACTIONS(39), 1, + [57735] = 22, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4060), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4349), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4351), 1, + anon_sym_this, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2294), 1, sym_member_expression, - STATE(2518), 1, + STATE(2297), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3466), 2, + STATE(367), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -138957,53 +140114,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56344] = 22, - ACTIONS(39), 1, + [57813] = 22, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4455), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4595), 1, + anon_sym_LPAREN, + STATE(2000), 1, sym__call, - STATE(1968), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2522), 1, sym_string, - STATE(2738), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(3632), 2, + STATE(2046), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2699), 9, sym__literal, sym_integer, sym_float, @@ -139013,53 +140170,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56422] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [57891] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4154), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3409), 2, + STATE(3534), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139069,53 +140226,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56500] = 22, + [57969] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4082), 1, + ACTIONS(4171), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3501), 2, + STATE(3620), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139125,50 +140282,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56578] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 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(1332), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4490), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4173), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4604), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1680), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(1384), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2836), 9, + STATE(3336), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139178,53 +140375,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56650] = 22, + [58165] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3657), 1, + ACTIONS(4181), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3443), 2, + STATE(3403), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139234,53 +140431,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56728] = 22, + [58243] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4084), 1, + ACTIONS(4189), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3571), 2, + STATE(3435), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139290,50 +140487,127 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56806] = 19, - ACTIONS(1312), 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, + 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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4490), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4604), 1, + ACTIONS(3474), 1, sym_identifier, - STATE(1680), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 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(2215), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(933), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2836), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(946), 9, sym__literal, sym_integer, sym_float, @@ -139343,50 +140617,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56878] = 19, - ACTIONS(1399), 1, + [58479] = 22, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(4606), 1, + ACTIONS(3541), 1, sym_identifier, - ACTIONS(4609), 1, - anon_sym_this, - STATE(1680), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(351), 1, sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 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(1423), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(1395), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2836), 9, + STATE(367), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1400), 9, sym__literal, sym_integer, sym_float, @@ -139396,53 +140673,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56950] = 22, - ACTIONS(39), 1, + [58557] = 22, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4236), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4421), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4439), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2294), 1, sym_member_expression, - STATE(2518), 1, + STATE(2297), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3620), 2, + STATE(367), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2319), 9, sym__literal, sym_integer, sym_float, @@ -139452,53 +140729,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57028] = 22, + [58635] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3648), 1, + ACTIONS(3979), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3548), 2, + STATE(3520), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139508,53 +140785,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57106] = 22, + [58713] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4006), 1, + ACTIONS(3463), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3497), 2, + STATE(3616), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139564,53 +140841,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57184] = 22, + [58791] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3980), 1, + ACTIONS(4097), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3629), 2, + STATE(3459), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139620,92 +140897,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57262] = 5, - ACTIONS(4526), 1, - anon_sym_DOT_DOT_DOT, - STATE(2490), 1, - sym__rangeOperator, - 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(1624), 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, - [57306] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [58869] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4197), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3471), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(197), 1, + STATE(2432), 1, sym_member_expression, - STATE(928), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(3499), 2, sym__rhs_expression, sym_call_expression, - STATE(944), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139715,53 +140953,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57384] = 22, + [58947] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3314), 1, + ACTIONS(4199), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3388), 2, + STATE(3504), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -139771,181 +141009,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57462] = 4, - ACTIONS(4486), 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(1624), 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, - [57504] = 19, - ACTIONS(1312), 1, + [59025] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4490), 1, - anon_sym_this, - ACTIONS(4604), 1, - sym_identifier, - STATE(1680), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1436), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2836), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [57576] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1834), 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(1832), 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, - [57616] = 22, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4090), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3539), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(1375), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3652), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1408), 9, sym__literal, sym_integer, sym_float, @@ -139955,90 +141065,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57694] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1862), 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(1860), 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, - [57734] = 22, + [59103] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3350), 1, + ACTIONS(4035), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3440), 2, + STATE(3545), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140048,109 +141121,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57812] = 22, + [59181] = 22, ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_this, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1302), 1, - sym__lookback_semicolon, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4612), 1, - sym_identifier, - STATE(1580), 1, - sym_member_expression, - STATE(1639), 1, - sym_string, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2738), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(1775), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1801), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [57890] = 22, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4168), 1, + ACTIONS(4201), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3534), 2, + STATE(3524), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140160,106 +141177,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57968] = 22, - ACTIONS(39), 1, + [59259] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4242), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1373), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(1377), 1, + anon_sym_this, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(400), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3452), 2, + STATE(188), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [58046] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4490), 1, - anon_sym_this, - ACTIONS(4604), 1, - sym_identifier, - STATE(1680), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1440), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2836), 9, + STATE(570), 9, sym__literal, sym_integer, sym_float, @@ -140269,53 +141233,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58118] = 22, + [59337] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4000), 1, + ACTIONS(4203), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3406), 2, + STATE(3528), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140325,13 +141289,22 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58196] = 3, + [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(1834), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4519), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -140339,13 +141312,10 @@ 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(1832), 19, - sym__lookback_semicolon, + ACTIONS(1785), 16, anon_sym_STAR, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -140359,16 +141329,19 @@ 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, anon_sym_DOT_DOT_DOT, - [58236] = 3, + [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(1900), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -140379,10 +141352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1898), 19, + ACTIONS(1785), 18, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_in, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -140396,56 +141369,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, anon_sym_DOT_DOT_DOT, - [58276] = 22, + [59511] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4459), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4461), 1, + anon_sym_this, + ACTIONS(4587), 1, + anon_sym_LPAREN, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3628), 2, + STATE(1949), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2690), 9, sym__literal, sym_integer, sym_float, @@ -140455,53 +141427,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58354] = 22, + [59589] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3414), 1, + ACTIONS(4205), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3353), 2, + STATE(3603), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140511,53 +141483,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58432] = 22, + [59667] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3410), 1, + ACTIONS(4131), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3321), 2, + STATE(3518), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140567,53 +141539,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58510] = 22, - ACTIONS(1352), 1, - sym_identifier, - ACTIONS(1358), 1, + [59745] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1362), 1, - anon_sym_this, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4556), 1, - anon_sym_LPAREN, - STATE(337), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4067), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(187), 1, sym__constructor_call, - STATE(393), 1, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, sym_string, - STATE(2585), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(376), 2, + STATE(3523), 2, sym__rhs_expression, sym_call_expression, - STATE(578), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -140623,53 +141595,130 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58588] = 22, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, + [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(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4248), 1, + ACTIONS(4215), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3516), 2, + STATE(3677), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140679,53 +141728,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58666] = 22, + [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(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4036), 1, + ACTIONS(3993), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3392), 2, + STATE(3364), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140735,53 +141821,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58744] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [60105] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4452), 1, - sym_identifier, - ACTIONS(4454), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4157), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(3498), 2, sym__rhs_expression, sym_call_expression, - STATE(2403), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140791,53 +141877,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58822] = 22, + [60183] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, + ACTIONS(4143), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3523), 2, + STATE(3426), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140847,53 +141933,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58900] = 22, + [60261] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2448), 1, + ACTIONS(3691), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3532), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4578), 1, - anon_sym_LPAREN, - STATE(1580), 1, - sym_member_expression, - STATE(1639), 1, - sym_string, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2738), 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(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1875), 2, + STATE(3680), 2, sym__rhs_expression, sym_call_expression, - STATE(1749), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140903,53 +141989,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58978] = 22, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [60339] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4556), 1, - anon_sym_LPAREN, - STATE(337), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2432), 1, sym_member_expression, - STATE(2292), 1, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(376), 2, + STATE(3492), 2, sym__rhs_expression, sym_call_expression, - STATE(2300), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -140959,53 +142045,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59056] = 22, + [60417] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4256), 1, + ACTIONS(4315), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3703), 2, + STATE(3565), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141015,53 +142101,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59134] = 22, + [60495] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(3273), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3496), 2, + STATE(3393), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141071,53 +142157,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59212] = 22, - ACTIONS(2058), 1, + [60573] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4316), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3789), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4456), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(4458), 1, - anon_sym_LBRACE, - ACTIONS(4602), 1, - anon_sym_LPAREN, - STATE(1919), 1, + STATE(186), 1, sym__call, - STATE(1920), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2488), 1, + STATE(2296), 1, sym_string, - STATE(2788), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2074), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1931), 2, + STATE(3562), 2, sym__rhs_expression, sym_call_expression, - STATE(2675), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -141127,53 +142213,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59290] = 22, + [60651] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(3345), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3552), 2, + STATE(3446), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141183,92 +142269,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59368] = 5, - ACTIONS(1782), 1, - anon_sym_LPAREN, - ACTIONS(1784), 1, - anon_sym_LT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [59412] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [60729] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3802), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4227), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3355), 2, + STATE(3458), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141278,53 +142325,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59490] = 22, + [60807] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4096), 1, + ACTIONS(4253), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3636), 2, + STATE(3522), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141334,53 +142381,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59568] = 22, + [60885] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4266), 1, + ACTIONS(4219), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3587), 2, + STATE(3683), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141390,53 +142437,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59646] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [60963] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4170), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4259), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3472), 2, + STATE(3529), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141446,53 +142493,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59724] = 22, + [61041] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(4263), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3589), 2, + STATE(3709), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141502,53 +142549,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59802] = 22, + [61119] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4270), 1, + ACTIONS(4027), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3594), 2, + STATE(3557), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141558,53 +142605,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59880] = 22, - ACTIONS(2046), 1, - anon_sym_LBRACE, - ACTIONS(2058), 1, + [61197] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(2062), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3536), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4273), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4602), 1, - anon_sym_LPAREN, - STATE(1600), 1, - sym_string, - STATE(1715), 1, - sym_member_expression, - STATE(1919), 1, + STATE(1928), 1, sym__call, - STATE(1920), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2788), 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(2074), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1931), 2, + STATE(3558), 2, sym__rhs_expression, sym_call_expression, - STATE(1777), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141614,53 +142661,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59958] = 22, + [61275] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3970), 1, + ACTIONS(3455), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3412), 2, + STATE(3583), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141670,53 +142717,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60036] = 22, + [61353] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4274), 1, + ACTIONS(4279), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3601), 2, + STATE(3593), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141726,53 +142773,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60114] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [61431] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4118), 1, - anon_sym_RBRACE, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4283), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4586), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2513), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3690), 2, + STATE(3600), 2, sym__rhs_expression, sym_call_expression, - STATE(2624), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141782,53 +142829,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60192] = 22, + [61509] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(4287), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3421), 2, + STATE(3607), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141838,53 +142885,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60270] = 22, + [61587] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4276), 1, + ACTIONS(4291), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3634), 2, + STATE(3640), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141894,53 +142941,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60348] = 22, + [61665] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, + ACTIONS(4221), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3395), 2, + STATE(3698), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -141950,53 +142997,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60426] = 22, + [61743] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4016), 1, + ACTIONS(4297), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3603), 2, + STATE(3647), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142006,53 +143053,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60504] = 22, + [61821] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4280), 1, + ACTIONS(4303), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3641), 2, + STATE(3654), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142062,90 +143109,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60582] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4616), 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(4614), 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, - [60622] = 22, + [61899] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4210), 1, + ACTIONS(4311), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3423), 2, + STATE(3490), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142155,53 +143165,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60700] = 22, + [61977] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4284), 1, + ACTIONS(4163), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3648), 2, + STATE(3424), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142211,53 +143221,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60778] = 22, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [62055] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1458), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4317), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(1496), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4556), 1, - anon_sym_LPAREN, - STATE(337), 1, + STATE(1928), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(393), 1, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(376), 2, + STATE(3567), 2, sym__rhs_expression, sym_call_expression, - STATE(569), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142267,53 +143277,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60856] = 22, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [62133] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4128), 1, - anon_sym_RBRACK, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3431), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3453), 2, + STATE(3414), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142323,53 +143333,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60934] = 22, + [62211] = 22, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4288), 1, + ACTIONS(3977), 1, sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3484), 2, + STATE(3681), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142379,109 +143389,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61012] = 22, - ACTIONS(2544), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, + [62289] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2558), 1, - anon_sym_this, - ACTIONS(2560), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2562), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2564), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2566), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2568), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2570), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2574), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2576), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3530), 1, - sym_identifier, - ACTIONS(4618), 1, - anon_sym_LPAREN, - STATE(1477), 1, - sym_member_expression, - STATE(1483), 1, - sym_string, - STATE(1507), 1, - sym__call, - STATE(1508), 1, - sym__constructor_call, - STATE(2670), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2572), 2, - anon_sym_true, - anon_sym_false, - STATE(1512), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1560), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [61090] = 22, - ACTIONS(1312), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4620), 1, - sym_identifier, - ACTIONS(4622), 1, - anon_sym__, - ACTIONS(4624), 1, + ACTIONS(4161), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(190), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2596), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3692), 2, + STATE(3419), 2, sym__rhs_expression, sym_call_expression, - STATE(2686), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142491,53 +143445,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61168] = 22, + [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(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4292), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3561), 2, + STATE(3681), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142547,53 +143535,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61246] = 22, - ACTIONS(1312), 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(1324), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(4316), 1, - anon_sym_this, - ACTIONS(4318), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(4554), 1, - anon_sym_LPAREN, - STATE(190), 1, + STATE(1478), 1, + sym_string, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, sym__call, - STATE(191), 1, + STATE(1535), 1, sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, + STATE(2752), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(196), 2, + STATE(1548), 2, sym__rhs_expression, sym_call_expression, - STATE(2302), 9, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -142603,53 +143625,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61324] = 22, + [62595] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4294), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3675), 2, + STATE(3505), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142659,53 +143679,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61402] = 22, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [62670] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4488), 1, - sym_identifier, - ACTIONS(4490), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4556), 1, - anon_sym_LPAREN, - STATE(337), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2432), 1, sym_member_expression, - STATE(2292), 1, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(376), 2, + STATE(3509), 2, sym__rhs_expression, sym_call_expression, - STATE(2482), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -142715,53 +143733,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61480] = 22, - ACTIONS(39), 1, + [62745] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(2610), 1, - sym__lookback_semicolon, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3363), 2, + STATE(3010), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -142771,11 +143787,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61558] = 3, + [62820] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1940), 12, + ACTIONS(1831), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -142788,7 +143804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1938), 18, + ACTIONS(1829), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -142807,173 +143823,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [61597] = 21, - ACTIONS(2544), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, - anon_sym_LBRACK, - ACTIONS(2558), 1, - anon_sym_this, - ACTIONS(2560), 1, - anon_sym_new, - ACTIONS(2562), 1, - anon_sym_null, - ACTIONS(2564), 1, - aux_sym_integer_token1, - ACTIONS(2566), 1, - aux_sym_integer_token2, - ACTIONS(2568), 1, - aux_sym_float_token1, - ACTIONS(2570), 1, - aux_sym_float_token2, - ACTIONS(2574), 1, - aux_sym_string_token1, - ACTIONS(2576), 1, - aux_sym_string_token3, - ACTIONS(3530), 1, - sym_identifier, - STATE(1477), 1, - sym_member_expression, - STATE(1483), 1, - sym_string, - STATE(1507), 1, - sym__call, - STATE(1508), 1, - sym__constructor_call, - STATE(2670), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2572), 2, - anon_sym_true, - anon_sym_false, - STATE(1517), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1560), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [61672] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3344), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [61747] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(197), 1, - sym_member_expression, - STATE(928), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, + [62859] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(220), 2, - sym__rhs_expression, - sym_call_expression, - STATE(944), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [61822] = 3, + 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(1956), 12, + ACTIONS(1911), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -142986,7 +143876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1954), 18, + ACTIONS(1909), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -143005,17 +143895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [61861] = 6, - ACTIONS(4464), 1, - anon_sym_EQ_GT, - ACTIONS(4626), 1, - anon_sym_DOT, - ACTIONS(4628), 1, - anon_sym_QMARK, + [62937] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1780), 10, + ACTIONS(1915), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -143026,7 +143912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1913), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -143042,215 +143928,270 @@ 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, anon_sym_DOT_DOT_DOT, - [61906] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, + [62976] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3261), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [61981] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, + 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(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3522), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [62056] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, + 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(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3010), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [62131] = 21, - ACTIONS(1312), 1, + 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(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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4586), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2513), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3258), 2, sym__rhs_expression, sym_call_expression, - STATE(2624), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -143260,105 +144201,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62206] = 21, - ACTIONS(1312), 1, + [63285] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1339), 1, + sym_escape_sequence, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(4651), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(4653), 1, + anon_sym_this, + ACTIONS(4655), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(4657), 1, aux_sym_string_token3, - ACTIONS(2038), 1, - anon_sym_this, - ACTIONS(3538), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(197), 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(2002), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(202), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1833), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [62281] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 2, aux_sym_integer_token1, - ACTIONS(1336), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 2, aux_sym_float_token1, - ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(1450), 1, - sym_identifier, - ACTIONS(1454), 1, - anon_sym_this, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(197), 1, - sym_member_expression, - STATE(398), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(761), 2, - sym__rhs_expression, - sym_call_expression, - STATE(572), 9, + ACTIONS(1341), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -143368,17 +144253,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62356] = 6, - ACTIONS(3640), 1, + [63356] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1811), 12, anon_sym_DOT, - ACTIONS(3642), 1, anon_sym_QMARK, - ACTIONS(4486), 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, + 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(1780), 10, + ACTIONS(1923), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -143389,9 +144306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1921), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -143405,13 +144322,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, anon_sym_DOT_DOT_DOT, - [62401] = 3, + [63434] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1754), 12, + ACTIONS(1879), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -143424,9 +144342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1752), 18, - sym__lookback_semicolon, + ACTIONS(1877), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -143443,51 +144361,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [62440] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [63473] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4461), 1, + anon_sym_this, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3375), 2, + STATE(1845), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2690), 9, sym__literal, sym_integer, sym_float, @@ -143497,51 +144415,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62515] = 21, + [63548] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3390), 2, + STATE(3520), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -143551,51 +144469,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62590] = 21, - ACTIONS(39), 1, + [63623] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4341), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3559), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2309), 9, sym__literal, sym_integer, sym_float, @@ -143605,11 +144523,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62665] = 3, + [63698] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1936), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -143622,9 +144540,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1934), 18, - sym__lookback_semicolon, + ACTIONS(1371), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -143641,51 +144559,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [62704] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [63737] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3453), 2, + STATE(3628), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -143695,51 +144613,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62779] = 21, - ACTIONS(1312), 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(1324), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(2025), 1, + anon_sym_this, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4553), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + STATE(1587), 1, sym_member_expression, - STATE(2291), 1, + STATE(1609), 1, sym_string, - STATE(2674), 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(1342), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(2896), 2, + STATE(1776), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(1843), 9, sym__literal, sym_integer, sym_float, @@ -143749,51 +144703,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62854] = 21, - ACTIONS(1312), 1, + [63926] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(2002), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(3523), 2, sym__rhs_expression, sym_call_expression, - STATE(1833), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -143803,51 +144757,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62929] = 21, + [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(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3577), 2, + STATE(3364), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -143857,51 +144847,121 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63004] = 21, - ACTIONS(1312), 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(1324), 1, + ACTIONS(4651), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(4653), 1, + anon_sym_this, + ACTIONS(4655), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(4657), 1, aux_sym_string_token3, - ACTIONS(2350), 1, - anon_sym_this, - ACTIONS(3534), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(197), 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(1688), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 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(220), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1756), 9, + ACTIONS(1381), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -143911,51 +144971,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63079] = 21, + [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(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3640), 2, + STATE(3386), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -143965,11 +145061,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63154] = 3, + [64378] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 12, + ACTIONS(1911), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -143982,9 +145078,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1958), 18, - sym__lookback_semicolon, + ACTIONS(1909), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144001,11 +145097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [63193] = 3, + [64417] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4632), 10, + ACTIONS(1915), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -144016,11 +145114,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(4630), 20, - sym__lookback_semicolon, + ACTIONS(1913), 18, anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_DASH_GT, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144037,11 +145133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [63232] = 3, + [64456] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1940), 12, + ACTIONS(1919), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -144054,9 +145150,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1938), 18, - sym__lookback_semicolon, + ACTIONS(1917), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144073,11 +145169,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [63271] = 3, + [64495] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1762), 12, + ACTIONS(1923), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -144090,9 +145186,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1760), 18, - sym__lookback_semicolon, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [64534] = 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), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144109,51 +145241,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [63310] = 21, + [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, + ACTIONS(4664), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_LBRACK, + ACTIONS(4670), 1, + anon_sym_this, + ACTIONS(4673), 1, + aux_sym_string_token1, + ACTIONS(4676), 1, + aux_sym_string_token3, + STATE(1791), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(1402), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(1408), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64644] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3628), 2, + STATE(3531), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [64719] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1313), 1, + sym_escape_sequence, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + anon_sym_LBRACE, + ACTIONS(4651), 1, + anon_sym_LBRACK, + ACTIONS(4653), 1, + anon_sym_this, + ACTIONS(4655), 1, + aux_sym_string_token1, + ACTIONS(4657), 1, + aux_sym_string_token3, + 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(2296), 1, + sym_string, + 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(1315), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -144163,51 +145399,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63385] = 21, - ACTIONS(1312), 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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3453), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(928), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(945), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -144217,13 +145489,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63460] = 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(1944), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -144234,9 +145510,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1942), 18, - sym__lookback_semicolon, + ACTIONS(1785), 17, anon_sym_STAR, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144250,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, anon_sym_DOT_DOT_DOT, - [63499] = 3, + [64949] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1935), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -144270,9 +145545,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1474), 18, - sym__lookback_semicolon, + ACTIONS(1933), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144289,71 +145564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [63538] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, - sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, - sym__lhs_expression, + [64988] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3434), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [63613] = 6, - ACTIONS(4470), 1, - anon_sym_EQ_GT, - ACTIONS(4634), 1, + ACTIONS(1457), 12, anon_sym_DOT, - ACTIONS(4636), 1, anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -144364,7 +145581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1455), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -144380,53 +145597,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, anon_sym_DOT_DOT_DOT, - [63658] = 21, + [65027] = 21, ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_this, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4612), 1, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - STATE(1580), 1, - sym_member_expression, - STATE(1639), 1, - sym_string, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2738), 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(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1775), 2, + STATE(3615), 2, sym__rhs_expression, sym_call_expression, - STATE(1801), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -144436,51 +145654,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63733] = 21, - ACTIONS(1312), 1, + [65102] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(3557), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(189), 1, sym_member_expression, - STATE(2291), 1, + STATE(1630), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3154), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -144490,51 +145708,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63808] = 21, - ACTIONS(1358), 1, + [65177] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4398), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(4406), 1, + ACTIONS(4561), 1, sym_identifier, - STATE(337), 1, + STATE(186), 1, sym__call, - STATE(371), 1, + STATE(187), 1, sym__constructor_call, - STATE(2289), 1, + STATE(189), 1, sym_member_expression, - STATE(2292), 1, + STATE(1630), 1, sym_string, - STATE(2585), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(385), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(2314), 9, + STATE(1796), 9, sym__literal, sym_integer, sym_float, @@ -144544,51 +145762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63883] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [65252] = 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), 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, + [65291] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3455), 2, + STATE(3544), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -144598,51 +145852,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63958] = 21, - ACTIONS(1312), 1, + [65366] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4495), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4497), 1, + anon_sym_this, + STATE(363), 1, sym__call, - STATE(191), 1, + STATE(364), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2294), 1, sym_member_expression, - STATE(2291), 1, + STATE(2297), 1, sym_string, - STATE(2674), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(2874), 2, + STATE(370), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2502), 9, sym__literal, sym_integer, sym_float, @@ -144652,13 +145906,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64033] = 4, - ACTIONS(3724), 1, - anon_sym_DASH_GT, + [65441] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4640), 10, + ACTIONS(1931), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -144669,10 +145923,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(4638), 19, + ACTIONS(1929), 18, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -144689,105 +145942,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [64074] = 21, - ACTIONS(2046), 1, + [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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [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, + ACTIONS(4649), 1, anon_sym_LBRACE, - ACTIONS(2058), 1, + ACTIONS(4651), 1, anon_sym_LBRACK, - ACTIONS(2060), 1, + ACTIONS(4653), 1, anon_sym_this, - ACTIONS(2062), 1, - anon_sym_new, - ACTIONS(2064), 1, - anon_sym_null, - ACTIONS(2066), 1, - aux_sym_integer_token1, - ACTIONS(2068), 1, - aux_sym_integer_token2, - ACTIONS(2070), 1, - aux_sym_float_token1, - ACTIONS(2072), 1, - aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(4655), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(4657), 1, aux_sym_string_token3, - ACTIONS(3536), 1, - sym_identifier, - STATE(1600), 1, - sym_string, - STATE(1715), 1, - sym_member_expression, - STATE(1919), 1, - sym__call, - STATE(1920), 1, - sym__constructor_call, - STATE(2788), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, + ACTIONS(4659), 1, sym_comment, - ACTIONS(2074), 2, - anon_sym_true, - anon_sym_false, - STATE(1944), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1777), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [64149] = 21, - ACTIONS(2046), 1, - anon_sym_LBRACE, - ACTIONS(2058), 1, - anon_sym_LBRACK, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(2062), 1, - anon_sym_new, - ACTIONS(2064), 1, - anon_sym_null, - ACTIONS(2066), 1, + STATE(1791), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(1325), 2, aux_sym_integer_token1, - ACTIONS(2068), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(1329), 2, aux_sym_float_token1, - ACTIONS(2072), 1, aux_sym_float_token2, - ACTIONS(2076), 1, - aux_sym_string_token1, - ACTIONS(2078), 1, - aux_sym_string_token3, - ACTIONS(3536), 1, - sym_identifier, - STATE(1600), 1, - sym_string, - STATE(1715), 1, - sym_member_expression, - STATE(1919), 1, - sym__call, - STATE(1920), 1, - sym__constructor_call, - STATE(2788), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2074), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2010), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1777), 9, + ACTIONS(1449), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -144797,51 +146030,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64224] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [65590] = 21, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4555), 1, sym_identifier, - STATE(190), 1, + STATE(2000), 1, sym__call, - STATE(191), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2522), 1, sym_string, - STATE(2674), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(3138), 2, + STATE(1798), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2664), 9, sym__literal, sym_integer, sym_float, @@ -144851,51 +146084,267 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64299] = 21, - ACTIONS(1312), 1, + [65665] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1947), 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(1945), 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, + [65704] = 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), 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, + [65743] = 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), 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, + [65782] = 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), 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, + [65821] = 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), 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, + [65860] = 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), 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, + [65899] = 21, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(3553), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + STATE(1587), 1, sym_member_expression, - STATE(2291), 1, + STATE(1609), 1, sym_string, - STATE(2674), 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(1342), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(3326), 2, + STATE(1757), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -144905,51 +146354,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64374] = 21, - ACTIONS(1312), 1, + [65974] = 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), 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, + [66013] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4473), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4475), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2607), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2847), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2714), 9, sym__literal, sym_integer, sym_float, @@ -144959,51 +146444,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64449] = 21, + [66088] = 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), 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, + [66127] = 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), 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, + [66166] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3618), 2, + STATE(3634), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -145013,51 +146570,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64524] = 21, + [66241] = 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, + 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, + [66280] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3629), 2, + STATE(3569), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -145067,51 +146660,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64599] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [66355] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4432), 1, - sym_identifier, - ACTIONS(4434), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2205), 1, anon_sym_this, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + ACTIONS(3559), 1, + sym_identifier, + STATE(1597), 1, sym_member_expression, - STATE(2596), 1, + STATE(1716), 1, sym_string, - STATE(2674), 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(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(1845), 2, sym__rhs_expression, sym_call_expression, - STATE(2689), 9, + STATE(1934), 9, sym__literal, sym_integer, sym_float, @@ -145121,11 +146714,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64674] = 3, + [66430] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1878), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -145138,7 +146731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1876), 18, + ACTIONS(1371), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -145157,51 +146750,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [64713] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [66469] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3332), 2, + STATE(3536), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -145211,51 +146804,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64788] = 21, - ACTIONS(39), 1, + [66544] = 21, + ACTIONS(2571), 1, + anon_sym_LBRACE, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3551), 1, sym_identifier, - STATE(1964), 1, + STATE(1478), 1, + sym_string, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, sym__call, - STATE(1968), 1, + STATE(1535), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, + STATE(2752), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(3475), 2, + STATE(1511), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -145265,51 +146858,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64863] = 21, + [66619] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3363), 2, + STATE(3358), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -145319,49 +146912,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [64938] = 19, - ACTIONS(1312), 1, + [66694] = 19, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4679), 1, sym_identifier, - ACTIONS(4414), 1, + ACTIONS(4682), 1, anon_sym_this, - STATE(1928), 1, + STATE(1828), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2267), 1, + STATE(2268), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(1384), 4, + ACTIONS(1386), 4, sym__lookback_semicolon, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_LT, - STATE(3072), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -145371,51 +146964,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65009] = 21, - ACTIONS(39), 1, + [66765] = 21, + ACTIONS(2571), 1, + anon_sym_LBRACE, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3551), 1, sym_identifier, - STATE(1964), 1, + STATE(1478), 1, + sym_string, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, sym__call, - STATE(1968), 1, + STATE(1535), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, + STATE(2752), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(2023), 2, + STATE(1568), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -145425,51 +147018,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65084] = 21, - ACTIONS(1312), 1, + [66840] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3409), 2, + STATE(3460), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -145479,105 +147072,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65159] = 21, - ACTIONS(1312), 1, + [66915] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2949), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65234] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3619), 2, + STATE(690), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -145587,50 +147126,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65309] = 6, - ACTIONS(4464), 1, - anon_sym_EQ_GT, - ACTIONS(4642), 1, - anon_sym_DOT, - ACTIONS(4644), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [65354] = 3, + [66990] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1896), 12, + ACTIONS(1775), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -145643,7 +147143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1894), 18, + ACTIONS(1773), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -145662,51 +147162,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [65393] = 21, - ACTIONS(1312), 1, + [67029] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1828), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3334), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, + 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, @@ -145716,51 +147214,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65468] = 21, - ACTIONS(1358), 1, + [67100] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(4488), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4490), 1, + ACTIONS(4497), 1, anon_sym_this, - STATE(337), 1, + STATE(363), 1, sym__call, - STATE(371), 1, + STATE(364), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2294), 1, sym_member_expression, - STATE(2292), 1, + STATE(2297), 1, sym_string, - STATE(2585), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(358), 2, + STATE(344), 2, sym__rhs_expression, sym_call_expression, - STATE(2482), 9, + STATE(2502), 9, sym__literal, sym_integer, sym_float, @@ -145770,51 +147268,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65543] = 21, + [67175] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3339), 2, + STATE(3554), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -145824,51 +147322,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65618] = 21, - ACTIONS(39), 1, + [67250] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4585), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2495), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3352), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2583), 9, sym__literal, sym_integer, sym_float, @@ -145878,51 +147376,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65693] = 21, - ACTIONS(1312), 1, + [67325] = 6, + ACTIONS(3657), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(4499), 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), 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, + [67370] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3518), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(1375), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(3347), 2, sym__rhs_expression, sym_call_expression, - STATE(1387), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -145932,51 +147469,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65768] = 21, - ACTIONS(39), 1, + [67445] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3555), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(1925), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3514), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -145986,51 +147523,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65843] = 21, - ACTIONS(39), 1, + [67520] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3557), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(1630), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3570), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -146040,51 +147577,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65918] = 21, - ACTIONS(1352), 1, - sym_identifier, - ACTIONS(1358), 1, + [67595] = 21, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1362), 1, - anon_sym_this, - ACTIONS(1364), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - STATE(337), 1, - sym__call, - STATE(362), 1, + ACTIONS(2117), 1, + anon_sym_this, + ACTIONS(3553), 1, + sym_identifier, + STATE(1587), 1, sym_member_expression, - STATE(371), 1, - sym__constructor_call, - STATE(393), 1, + STATE(1609), 1, sym_string, - STATE(2585), 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(1376), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(358), 2, + STATE(1798), 2, sym__rhs_expression, sym_call_expression, - STATE(578), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -146094,51 +147631,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [65993] = 21, - ACTIONS(39), 1, + [67670] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1828), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3647), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, + ACTIONS(1339), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -146148,51 +147683,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66068] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [67741] = 6, + ACTIONS(4503), 1, + anon_sym_EQ_GT, + ACTIONS(4685), 1, + anon_sym_DOT, + ACTIONS(4687), 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_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, + [67786] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3197), 2, + STATE(3426), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -146202,51 +147776,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66143] = 21, - ACTIONS(1312), 1, + [67861] = 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), 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, + [67900] = 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, + 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, + [67939] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(3486), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(189), 1, sym_member_expression, - STATE(2291), 1, + STATE(933), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3593), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(947), 9, sym__literal, sym_integer, sym_float, @@ -146256,51 +147902,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66218] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [68014] = 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), 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, + [68053] = 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, + 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, + [68092] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2962), 2, + STATE(3387), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -146310,51 +148028,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66293] = 21, - ACTIONS(39), 1, + [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, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + 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_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + 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, + [68206] = 21, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4436), 1, - sym_identifier, - ACTIONS(4438), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(1964), 1, + ACTIONS(4439), 1, + sym_identifier, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2294), 1, sym_member_expression, - STATE(2518), 1, + STATE(2297), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(1942), 2, + STATE(565), 2, sym__rhs_expression, sym_call_expression, - STATE(2666), 9, + STATE(2319), 9, sym__literal, sym_integer, sym_float, @@ -146364,105 +148118,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66368] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, + [68281] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3425), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66443] = 21, - ACTIONS(1312), 1, + 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, + 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, + [68320] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1423), 1, + sym_identifier, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(191), 1, + STATE(364), 1, sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, + STATE(408), 1, sym_string, - STATE(2674), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3355), 2, + STATE(344), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(564), 9, sym__literal, sym_integer, sym_float, @@ -146472,51 +148208,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66518] = 21, + [68395] = 21, ACTIONS(39), 1, anon_sym_LBRACK, + ACTIONS(41), 1, + anon_sym_this, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4593), 1, sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, + STATE(1597), 1, sym_member_expression, - STATE(2518), 1, + STATE(1716), 1, sym_string, - STATE(2738), 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(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3650), 2, + STATE(1853), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1989), 9, sym__literal, sym_integer, sym_float, @@ -146526,51 +148262,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66593] = 21, - ACTIONS(1312), 1, + [68470] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4341), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3472), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2309), 9, sym__literal, sym_integer, sym_float, @@ -146580,51 +148316,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66668] = 21, - ACTIONS(1312), 1, + [68545] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(3555), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(189), 1, sym_member_expression, - STATE(2291), 1, + STATE(1925), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3017), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -146634,51 +148370,85 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66743] = 21, - ACTIONS(39), 1, + [68620] = 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, + 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, + [68659] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(2448), 1, - anon_sym_this, - ACTIONS(3532), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(1580), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1828), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(1639), 1, - sym_string, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2738), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1775), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1749), 9, + 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, @@ -146688,51 +148458,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66818] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [68730] = 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, + 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, + [68769] = 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), 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, + [68808] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3285), 2, + STATE(3653), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -146742,51 +148584,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66893] = 21, - ACTIONS(1312), 1, + [68883] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4467), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2495), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2954), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2802), 9, sym__literal, sym_integer, sym_float, @@ -146796,51 +148638,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [66968] = 21, - ACTIONS(39), 1, + [68958] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3405), 2, + STATE(3006), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -146850,51 +148692,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67043] = 21, - ACTIONS(1312), 1, + [69033] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - STATE(190), 1, + ACTIONS(4467), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(398), 1, + STATE(2495), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(582), 9, + STATE(2802), 9, sym__literal, sym_integer, sym_float, @@ -146904,51 +148746,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67118] = 21, - ACTIONS(39), 1, + [69108] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4473), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4475), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2607), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3600), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2714), 9, sym__literal, sym_integer, sym_float, @@ -146958,51 +148800,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67193] = 21, - ACTIONS(39), 1, + [69183] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3555), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(1925), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3442), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -147012,11 +148854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67268] = 3, + [69258] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1912), 12, + ACTIONS(1879), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -147029,7 +148871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1910), 18, + ACTIONS(1877), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -147048,51 +148890,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [67307] = 21, - ACTIONS(2544), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, + [69297] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2558), 1, - anon_sym_this, - ACTIONS(2560), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2562), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2564), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2566), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2568), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2570), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2574), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2576), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3530), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - STATE(1477), 1, - sym_member_expression, - STATE(1483), 1, - sym_string, - STATE(1507), 1, + STATE(1928), 1, sym__call, - STATE(1508), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2670), 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(2572), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1530), 2, + STATE(3585), 2, sym__rhs_expression, sym_call_expression, - STATE(1560), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -147102,11 +148944,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67382] = 3, + [69372] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1720), 12, + ACTIONS(1771), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -147119,7 +148961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1718), 18, + ACTIONS(1769), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -147138,51 +148980,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [67421] = 21, + [69411] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2448), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3532), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1580), 1, - sym_member_expression, - STATE(1639), 1, - sym_string, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2738), 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(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2023), 2, + STATE(3405), 2, sym__rhs_expression, sym_call_expression, - STATE(1749), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -147192,126 +149034,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67496] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1882), 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(1880), 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, - [67535] = 6, - ACTIONS(4500), 1, - anon_sym_EQ_GT, - ACTIONS(4646), 1, - anon_sym_DOT, - ACTIONS(4648), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [67580] = 21, + [69486] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3497), 2, + STATE(3341), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -147321,90 +149088,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67655] = 6, - ACTIONS(4420), 1, - anon_sym_EQ_GT, - ACTIONS(4642), 1, - anon_sym_DOT, - ACTIONS(4644), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [67700] = 21, - ACTIONS(39), 1, + [69561] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4436), 1, - sym_identifier, - ACTIONS(4438), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(1964), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2023), 2, + STATE(3241), 2, sym__rhs_expression, sym_call_expression, - STATE(2666), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -147414,87 +149142,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67775] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1948), 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(1946), 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, - [67814] = 21, - ACTIONS(39), 1, + [69636] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3389), 2, + STATE(3423), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -147504,51 +149196,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67889] = 21, - ACTIONS(1312), 1, + [69711] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3418), 2, + STATE(2885), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -147558,87 +149250,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [67964] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1916), 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(1914), 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, - [68003] = 21, - ACTIONS(1312), 1, + [69786] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3471), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(928), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(761), 2, + STATE(3362), 2, sym__rhs_expression, sym_call_expression, - STATE(944), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -147648,51 +149304,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68078] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [69861] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4316), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4448), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2513), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(3415), 2, sym__rhs_expression, sym_call_expression, - STATE(2747), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -147702,51 +149358,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68153] = 21, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [69936] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4398), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4406), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(337), 1, + STATE(1928), 1, sym__call, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2432), 1, sym_member_expression, - STATE(2292), 1, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, + STATE(3425), 2, sym__rhs_expression, sym_call_expression, - STATE(2314), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -147756,51 +149412,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68228] = 21, - ACTIONS(39), 1, + [70011] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3474), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(933), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3493), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(946), 9, sym__literal, sym_integer, sym_float, @@ -147810,51 +149466,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68303] = 21, - ACTIONS(39), 1, + [70086] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3427), 2, + STATE(3571), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -147864,51 +149520,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68378] = 21, - ACTIONS(2544), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, + [70161] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2558), 1, - anon_sym_this, - ACTIONS(2560), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2562), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2564), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2566), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2568), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2570), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2574), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2576), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3530), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2205), 1, + anon_sym_this, + ACTIONS(3559), 1, sym_identifier, - STATE(1477), 1, + STATE(1597), 1, sym_member_expression, - STATE(1483), 1, + STATE(1716), 1, sym_string, - STATE(1507), 1, + STATE(1928), 1, sym__call, - STATE(1508), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2670), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2572), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1545), 2, + STATE(1853), 2, sym__rhs_expression, sym_call_expression, - STATE(1560), 9, + STATE(1934), 9, sym__literal, sym_integer, sym_float, @@ -147918,51 +149574,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68453] = 21, - ACTIONS(39), 1, + [70236] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3321), 2, + STATE(3078), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -147972,51 +149628,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68528] = 21, - ACTIONS(1312), 1, + [70311] = 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, + 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, + [70350] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(3486), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(189), 1, sym_member_expression, - STATE(2291), 1, + STATE(933), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3221), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(947), 9, sym__literal, sym_integer, sym_float, @@ -148026,51 +149718,141 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68603] = 21, + [70425] = 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), 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, + [70464] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, + 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(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(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(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3589), 2, + STATE(3682), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148080,13 +149862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68678] = 3, + [70614] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1968), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4691), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -148097,9 +149877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1966), 18, + 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, @@ -148116,13 +149898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [68717] = 4, - ACTIONS(3724), 1, - anon_sym_DASH_GT, + [70653] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4652), 10, + ACTIONS(1345), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -148133,10 +149915,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(4650), 19, + ACTIONS(1343), 18, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -148153,51 +149934,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [68758] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [70692] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1450), 1, - sym_identifier, - ACTIONS(1454), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(190), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(197), 1, + STATE(2432), 1, sym_member_expression, - STATE(398), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3360), 2, sym__rhs_expression, sym_call_expression, - STATE(572), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148207,51 +149988,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68833] = 21, + [70767] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3603), 2, + STATE(3329), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148261,51 +150042,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68908] = 21, + [70842] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3341), 2, + STATE(3521), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148315,87 +150096,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [68983] = 3, + [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(1826), 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(1824), 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, - [69022] = 21, + 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(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3639), 2, + STATE(3419), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148405,51 +150204,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69097] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [71067] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4586), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2513), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3690), 2, + STATE(3564), 2, sym__rhs_expression, sym_call_expression, - STATE(2624), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148459,51 +150258,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69172] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [71142] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3518), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(197), 1, + STATE(2432), 1, sym_member_expression, - STATE(1375), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(3383), 2, sym__rhs_expression, sym_call_expression, - STATE(1387), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148513,51 +150312,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69247] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [71217] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4340), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(197), 1, + STATE(2432), 1, sym_member_expression, - STATE(1375), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(3530), 2, sym__rhs_expression, sym_call_expression, - STATE(1391), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148567,51 +150366,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69322] = 21, + [71292] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3369), 2, + STATE(3570), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148621,51 +150420,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69397] = 21, + [71367] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3417), 2, + STATE(3620), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148675,51 +150474,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69472] = 21, + [71442] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3406), 2, + STATE(3336), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148729,51 +150528,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69547] = 21, - ACTIONS(1352), 1, - sym_identifier, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [71517] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1362), 1, - anon_sym_this, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - STATE(337), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(393), 1, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(385), 2, + STATE(3403), 2, sym__rhs_expression, sym_call_expression, - STATE(578), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148783,11 +150582,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69622] = 3, + [71592] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1734), 12, + ACTIONS(1955), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -148800,7 +150599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1732), 18, + ACTIONS(1953), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -148819,13 +150618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [69661] = 4, - ACTIONS(3724), 1, - anon_sym_DASH_GT, + [71631] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4656), 10, + ACTIONS(1959), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -148836,10 +150635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(4654), 19, + ACTIONS(1957), 18, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -148856,51 +150654,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [69702] = 21, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [71670] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1458), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4330), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(337), 1, + STATE(1928), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1369), 1, - sym_string, - STATE(2585), 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(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(379), 2, + STATE(3435), 2, sym__rhs_expression, sym_call_expression, - STATE(1376), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148910,51 +150708,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69777] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [71745] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3247), 2, + STATE(3499), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -148964,87 +150762,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69852] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1766), 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(1764), 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, - [69891] = 21, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [71820] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1458), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(1496), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(337), 1, + STATE(1928), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(393), 1, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(379), 2, + STATE(3504), 2, sym__rhs_expression, sym_call_expression, - STATE(569), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149054,87 +150816,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [69966] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1952), 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(1950), 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, - [70005] = 21, + [71895] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3568), 2, + STATE(3524), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149144,90 +150870,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70080] = 6, - ACTIONS(4470), 1, - anon_sym_EQ_GT, - ACTIONS(4658), 1, - anon_sym_DOT, - ACTIONS(4660), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1780), 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(1778), 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, - [70125] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [71970] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3104), 2, + STATE(3528), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149237,51 +150924,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70200] = 21, - ACTIONS(2058), 1, + [72045] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4316), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4456), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4458), 1, - anon_sym_LBRACE, - STATE(1919), 1, + STATE(1928), 1, sym__call, - STATE(1920), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2488), 1, + STATE(2530), 1, sym_string, - STATE(2788), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2074), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1944), 2, + STATE(3603), 2, sym__rhs_expression, sym_call_expression, - STATE(2675), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149291,87 +150978,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70275] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1822), 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(1820), 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, - [70314] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [72120] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4316), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4318), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3677), 2, sym__rhs_expression, sym_call_expression, - STATE(2302), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149381,51 +151032,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70389] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [72195] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4452), 1, - sym_identifier, - ACTIONS(4454), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(190), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(3683), 2, sym__rhs_expression, sym_call_expression, - STATE(2403), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149435,87 +151086,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70464] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1858), 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(1856), 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, - [70503] = 21, - ACTIONS(2046), 1, - anon_sym_LBRACE, - ACTIONS(2058), 1, + [72270] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(2062), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3536), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - STATE(1600), 1, - sym_string, - STATE(1715), 1, - sym_member_expression, - STATE(1919), 1, + STATE(1928), 1, sym__call, - STATE(1920), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2788), 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(2074), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1970), 2, + STATE(3698), 2, sym__rhs_expression, sym_call_expression, - STATE(1777), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149525,87 +151140,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70578] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1886), 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(1884), 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, - [70617] = 21, + [72345] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3392), 2, + STATE(3649), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149615,51 +151194,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70692] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [72420] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3630), 2, + STATE(3470), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149669,51 +151248,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70767] = 21, + [72495] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2448), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3532), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1580), 1, - sym_member_expression, - STATE(1639), 1, - sym_string, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2738), 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(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1942), 2, + STATE(3539), 2, sym__rhs_expression, sym_call_expression, - STATE(1749), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149723,51 +151302,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70842] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [72570] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3578), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149777,51 +151356,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70917] = 21, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [72645] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(337), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2432), 1, sym_member_expression, - STATE(2292), 1, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(358), 2, + STATE(3354), 2, sym__rhs_expression, sym_call_expression, - STATE(2300), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149831,51 +151410,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [70992] = 21, + [72720] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3573), 2, + STATE(3353), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -149885,87 +151464,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71067] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1356), 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(1354), 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, - [71106] = 21, - ACTIONS(1358), 1, + [72795] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1362), 1, - anon_sym_this, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3516), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, + anon_sym_this, + ACTIONS(3557), 1, sym_identifier, - STATE(337), 1, + STATE(186), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(187), 1, sym__constructor_call, - STATE(1369), 1, + STATE(189), 1, + sym_member_expression, + STATE(1630), 1, sym_string, - STATE(2585), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(358), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(1385), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -149975,49 +151518,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71181] = 19, - ACTIONS(1312), 1, + [72870] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4414), 1, + ACTIONS(1502), 1, anon_sym_this, - STATE(1928), 1, - aux_sym_member_expression_repeat1, - STATE(2260), 1, + ACTIONS(1514), 1, + sym_identifier, + STATE(351), 1, sym_member_expression, - STATE(2267), 1, - sym__lhs_expression, - STATE(2291), 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(1342), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(3072), 9, + STATE(380), 2, + sym__rhs_expression, + sym_call_expression, + STATE(547), 9, sym__literal, sym_integer, sym_float, @@ -150027,51 +151572,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71252] = 21, - ACTIONS(1312), 1, + [72945] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3538), 1, + ACTIONS(3486), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(189), 1, sym_member_expression, - STATE(2002), 1, + STATE(933), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(977), 2, sym__rhs_expression, sym_call_expression, - STATE(1833), 9, + STATE(947), 9, sym__literal, sym_integer, sym_float, @@ -150081,87 +151626,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71327] = 3, + [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, + 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(1730), 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(1728), 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, - [71366] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, - sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3544), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(557), 9, sym__literal, sym_integer, sym_float, @@ -150171,51 +151680,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71441] = 21, + [73095] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3445), 2, + STATE(3434), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -150225,51 +151734,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71516] = 21, - ACTIONS(39), 1, + [73170] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1508), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(1512), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(400), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3476), 2, + STATE(690), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(557), 9, sym__literal, sym_integer, sym_float, @@ -150279,51 +151788,124 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71591] = 21, - ACTIONS(39), 1, + [73245] = 4, + ACTIONS(4693), 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), 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, + [73286] = 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, + 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, + [73325] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3644), 2, + STATE(3196), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -150333,51 +151915,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71666] = 21, - ACTIONS(39), 1, + [73400] = 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, + 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, + [73439] = 21, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4349), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4351), 1, + anon_sym_this, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2294), 1, sym_member_expression, - STATE(2518), 1, + STATE(2297), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3509), 2, + STATE(370), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -150387,51 +152005,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71741] = 21, - ACTIONS(39), 1, + [73514] = 21, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4455), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + STATE(2000), 1, sym__call, - STATE(1968), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2522), 1, sym_string, - STATE(2738), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(3519), 2, + STATE(1798), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2699), 9, sym__literal, sym_integer, sym_float, @@ -150441,17 +152059,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71816] = 6, - ACTIONS(3636), 1, - anon_sym_DOT, - ACTIONS(3638), 1, - anon_sym_QMARK, - ACTIONS(4486), 1, - anon_sym_EQ_GT, + [73589] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1780), 10, + ACTIONS(1803), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -150462,9 +152076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 17, + ACTIONS(1801), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -150478,53 +152092,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, anon_sym_DOT_DOT_DOT, - [71861] = 21, - ACTIONS(39), 1, + [73628] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4481), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4483), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3414), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2395), 9, sym__literal, sym_integer, sym_float, @@ -150534,51 +152149,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [71936] = 21, + [73703] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3534), 2, + STATE(1889), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -150588,51 +152203,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72011] = 21, - ACTIONS(39), 1, + [73778] = 6, + ACTIONS(4489), 1, + anon_sym_EQ_GT, + ACTIONS(4696), 1, + anon_sym_DOT, + ACTIONS(4698), 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, + [73823] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3412), 2, + STATE(3273), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -150642,51 +152296,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72086] = 21, - ACTIONS(1312), 1, + [73898] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3379), 2, + STATE(3537), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -150696,51 +152350,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72161] = 21, - ACTIONS(39), 1, + [73973] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3426), 2, + STATE(2900), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -150750,51 +152404,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72236] = 21, - ACTIONS(39), 1, + [74048] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3632), 2, + STATE(3357), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -150804,51 +152458,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72311] = 21, + [74123] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3423), 2, + STATE(3366), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -150858,51 +152512,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72386] = 21, - ACTIONS(39), 1, + [74198] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3611), 2, + STATE(3410), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -150912,51 +152566,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72461] = 21, - ACTIONS(1312), 1, + [74273] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4432), 1, - sym_identifier, - ACTIONS(4434), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(190), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2596), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(2948), 2, sym__rhs_expression, sym_call_expression, - STATE(2689), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -150966,11 +152620,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72536] = 3, + [74348] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1904), 12, + ACTIONS(1969), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -150983,7 +152637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1902), 18, + ACTIONS(1967), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -151002,87 +152656,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [72575] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1758), 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(1756), 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, - [72614] = 21, - ACTIONS(1312), 1, + [74387] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3453), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(928), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3265), 2, sym__rhs_expression, sym_call_expression, - STATE(945), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -151092,49 +152710,67 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72689] = 3, + [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, + 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(1762), 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(1760), 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, - [72728] = 3, + 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(1766), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4702), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -151145,9 +152781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1764), 18, + ACTIONS(4700), 19, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, + anon_sym_RPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -151164,51 +152801,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [72767] = 21, - ACTIONS(1312), 1, + [74578] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - STATE(190), 1, + ACTIONS(3474), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(189), 1, sym_member_expression, - STATE(398), 1, + STATE(933), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(582), 9, + STATE(946), 9, sym__literal, sym_integer, sym_float, @@ -151218,195 +152855,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [72842] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1770), 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(1768), 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, - [72881] = 21, + [74653] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, - sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3410), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72956] = 21, - ACTIONS(1358), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, - anon_sym_LBRACK, - ACTIONS(1362), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, - anon_sym_null, - ACTIONS(1368), 1, - aux_sym_integer_token1, - ACTIONS(1370), 1, - aux_sym_integer_token2, - ACTIONS(1372), 1, - aux_sym_float_token1, - ACTIONS(1374), 1, - aux_sym_float_token2, - ACTIONS(1378), 1, - aux_sym_string_token1, - ACTIONS(1380), 1, - aux_sym_string_token3, - ACTIONS(3516), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(337), 1, + STATE(1928), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1369), 1, - sym_string, - STATE(2585), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1376), 2, - anon_sym_true, - anon_sym_false, - STATE(385), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1385), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73031] = 21, - ACTIONS(1352), 1, - sym_identifier, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, - anon_sym_LBRACK, - ACTIONS(1362), 1, - anon_sym_this, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, - anon_sym_null, - ACTIONS(1368), 1, - aux_sym_integer_token1, - ACTIONS(1370), 1, - aux_sym_integer_token2, - ACTIONS(1372), 1, - aux_sym_float_token1, - ACTIONS(1374), 1, - aux_sym_float_token2, - ACTIONS(1378), 1, - aux_sym_string_token1, - ACTIONS(1380), 1, - aux_sym_string_token3, - STATE(337), 1, - sym__call, - STATE(362), 1, + STATE(2432), 1, sym_member_expression, - STATE(371), 1, - sym__constructor_call, - STATE(393), 1, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(379), 2, + STATE(3409), 2, sym__rhs_expression, sym_call_expression, - STATE(578), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -151416,65 +152909,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73106] = 21, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, - anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(89), 1, - aux_sym_float_token1, - ACTIONS(91), 1, - aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, - ACTIONS(97), 1, - aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, - sym_identifier, - STATE(1964), 1, - sym__call, - STATE(1968), 1, - sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, - sym_string, - STATE(2738), 1, - sym__lhs_expression, + [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(93), 2, - anon_sym_true, - anon_sym_false, - STATE(3466), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2587), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73181] = 3, + 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_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, + [74773] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1788), 12, + ACTIONS(1807), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -151487,9 +152965,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1786), 18, + ACTIONS(1805), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -151506,11 +152984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [73220] = 3, + [74812] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1792), 12, + ACTIONS(1973), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -151523,9 +153001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1790), 18, + ACTIONS(1971), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -151542,51 +153020,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [73259] = 21, - ACTIONS(2058), 1, + [74851] = 21, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(4454), 1, + ACTIONS(4421), 1, anon_sym_this, - ACTIONS(4458), 1, - anon_sym_LBRACE, - ACTIONS(4522), 1, + ACTIONS(4439), 1, sym_identifier, - STATE(1919), 1, + STATE(363), 1, sym__call, - STATE(1920), 1, + STATE(364), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2294), 1, sym_member_expression, - STATE(2488), 1, + STATE(2297), 1, sym_string, - STATE(2788), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2074), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(1944), 2, + STATE(370), 2, sym__rhs_expression, sym_call_expression, - STATE(2644), 9, + STATE(2319), 9, sym__literal, sym_integer, sym_float, @@ -151596,51 +153074,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73334] = 21, - ACTIONS(1312), 1, + [74926] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3380), 2, + STATE(3251), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -151650,51 +153128,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73409] = 21, - ACTIONS(39), 1, + [75001] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3528), 2, + STATE(3456), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -151704,51 +153182,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73484] = 21, - ACTIONS(39), 1, + [75076] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3536), 2, + STATE(3018), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -151758,51 +153236,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73559] = 21, - ACTIONS(39), 1, + [75151] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3548), 2, + STATE(3538), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -151812,51 +153290,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73634] = 21, + [75226] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3565), 2, + STATE(3547), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -151866,51 +153344,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73709] = 21, - ACTIONS(1312), 1, + [75301] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3518), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(1375), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3560), 2, sym__rhs_expression, sym_call_expression, - STATE(1387), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -151920,49 +153398,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73784] = 19, - ACTIONS(1399), 1, + [75376] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4662), 1, - sym_identifier, - ACTIONS(4665), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(1928), 1, - aux_sym_member_expression_repeat1, - STATE(2260), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(2267), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1395), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(3072), 9, + STATE(3062), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -151972,49 +153452,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73855] = 19, - ACTIONS(1312), 1, + [75451] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(1928), 1, - aux_sym_member_expression_repeat1, - STATE(2260), 1, + ACTIONS(4585), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(2267), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2495), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1436), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(3072), 9, + STATE(3658), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2583), 9, sym__literal, sym_integer, sym_float, @@ -152024,51 +153506,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [73926] = 21, - ACTIONS(1358), 1, + [75526] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1362), 1, - anon_sym_this, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3516), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, + anon_sym_this, + ACTIONS(3539), 1, sym_identifier, - STATE(337), 1, + STATE(186), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(187), 1, sym__constructor_call, - STATE(1369), 1, + STATE(189), 1, + sym_member_expression, + STATE(1375), 1, sym_string, - STATE(2585), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(379), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(1385), 9, + STATE(1408), 9, sym__literal, sym_integer, sym_float, @@ -152078,11 +153560,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74001] = 3, + [75601] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1822), 12, + ACTIONS(1771), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -152095,7 +153577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1820), 18, + ACTIONS(1769), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -152114,51 +153596,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [74040] = 21, + [75640] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3620), 2, + STATE(3579), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -152168,87 +153650,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74115] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1826), 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(1824), 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, - [74154] = 21, - ACTIONS(1312), 1, + [75715] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(190), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(398), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3204), 2, sym__rhs_expression, sym_call_expression, - STATE(582), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -152258,51 +153704,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74229] = 21, - ACTIONS(39), 1, + [75790] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3666), 2, + STATE(3368), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -152312,51 +153758,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74304] = 21, - ACTIONS(1312), 1, + [75865] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4308), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3597), 2, + STATE(2857), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -152366,51 +153812,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74379] = 21, + [75940] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3388), 2, + STATE(3545), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -152420,87 +153866,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74454] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1874), 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(1872), 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, - [74493] = 21, - ACTIONS(39), 1, + [76015] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3325), 2, + STATE(3346), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -152510,51 +153920,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74568] = 21, + [76090] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3333), 2, + STATE(3587), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -152564,51 +153974,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74643] = 21, - ACTIONS(39), 1, + [76165] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3413), 2, + STATE(3431), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -152618,14 +154028,180 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [74718] = 3, + [76240] = 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(1444), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, + 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, + [76315] = 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(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, + ACTIONS(1377), 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(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + STATE(570), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [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, @@ -152635,7 +154211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1446), 18, + ACTIONS(1785), 17, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -152651,14 +154227,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, anon_sym_DOT_DOT_DOT, - [74757] = 3, + [76510] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1838), 12, + ACTIONS(1775), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -152671,7 +154246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1836), 18, + ACTIONS(1773), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -152690,13 +154265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [74796] = 3, + [76549] = 4, + ACTIONS(3753), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1300), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4714), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -152707,9 +154282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1302), 18, + ACTIONS(4712), 19, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, + anon_sym_RPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -152726,67 +154302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [74835] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2864), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74910] = 3, + [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(1854), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -152797,9 +154323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1852), 18, + ACTIONS(1785), 17, anon_sym_STAR, - anon_sym_in, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -152813,14 +154339,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, anon_sym_DOT_DOT_DOT, - [74949] = 3, + [76635] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1858), 12, + ACTIONS(1779), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -152833,7 +154358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1856), 18, + ACTIONS(1777), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -152852,51 +154377,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [74988] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [76674] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4308), 1, - anon_sym_this, - ACTIONS(4460), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4461), 1, + anon_sym_this, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(761), 2, + STATE(1889), 2, sym__rhs_expression, sym_call_expression, - STATE(2307), 9, + STATE(2690), 9, sym__literal, sym_integer, sym_float, @@ -152906,123 +154431,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75063] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1866), 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(1864), 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, - [75102] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1874), 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(1872), 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, - [75141] = 21, + [76749] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3501), 2, + STATE(3370), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -153032,51 +154485,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75216] = 21, - ACTIONS(39), 1, + [76824] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3571), 2, + STATE(3437), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -153086,51 +154539,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75291] = 21, - ACTIONS(1312), 1, + [76899] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2350), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3534), 1, + ACTIONS(3486), 1, sym_identifier, - STATE(190), 1, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(189), 1, sym_member_expression, - STATE(1688), 1, + STATE(933), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, + STATE(690), 2, sym__rhs_expression, sym_call_expression, - STATE(1756), 9, + STATE(947), 9, sym__literal, sym_integer, sym_float, @@ -153140,51 +154593,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75366] = 21, + [76974] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + 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(3518), 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, + [77049] = 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, + 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(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3440), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(557), 9, sym__literal, sym_integer, sym_float, @@ -153194,11 +154701,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75441] = 3, + [77124] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1878), 12, + ACTIONS(1835), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -153211,9 +154718,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1876), 18, + ACTIONS(1833), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -153230,51 +154737,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [75480] = 21, - ACTIONS(39), 1, + [77163] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3539), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(1375), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3421), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1408), 9, sym__literal, sym_integer, sym_float, @@ -153284,51 +154791,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75555] = 21, - ACTIONS(39), 1, + [77238] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4359), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(1375), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3652), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1407), 9, sym__literal, sym_integer, sym_float, @@ -153338,51 +154845,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75630] = 21, + [77313] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3496), 2, + STATE(3616), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -153392,51 +154899,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75705] = 21, - ACTIONS(39), 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(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, - sym_identifier, - STATE(1964), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, + STATE(408), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3452), 2, + STATE(370), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(564), 9, sym__literal, sym_integer, sym_float, @@ -153446,13 +154953,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75780] = 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(1886), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -153463,9 +154974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1884), 18, + ACTIONS(1785), 17, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -153479,106 +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, anon_sym_DOT_DOT_DOT, - [75819] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1384), 1, - sym_escape_sequence, - ACTIONS(4668), 1, - sym_identifier, - ACTIONS(4670), 1, + [77508] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(4672), 1, - anon_sym_LBRACK, - ACTIONS(4674), 1, - anon_sym_this, - ACTIONS(4676), 1, - aux_sym_string_token1, - ACTIONS(4678), 1, - aux_sym_string_token3, - ACTIONS(4680), 1, - sym_comment, - STATE(1995), 1, - aux_sym_member_expression_repeat1, - STATE(2276), 1, - sym__lhs_expression, - STATE(2277), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - ACTIONS(1334), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(1338), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1386), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2927), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75890] = 21, - ACTIONS(39), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4367), 1, sym_identifier, - STATE(1964), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, + STATE(1378), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3636), 2, + STATE(380), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1428), 9, sym__literal, sym_integer, sym_float, @@ -153588,11 +155046,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [75965] = 3, + [77583] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1896), 12, + ACTIONS(1783), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -153605,7 +155063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1894), 18, + ACTIONS(1781), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -153624,87 +155082,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [76004] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1788), 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(1786), 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, - [76043] = 21, - ACTIONS(39), 1, + [77622] = 21, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4455), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + STATE(2000), 1, sym__call, - STATE(1968), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2522), 1, sym_string, - STATE(2738), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(3395), 2, + STATE(1757), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2699), 9, sym__literal, sym_integer, sym_float, @@ -153714,51 +155136,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76118] = 21, - ACTIONS(1312), 1, + [77697] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4316), 1, - anon_sym_this, - ACTIONS(4318), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(2285), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1828), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2674), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(235), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2302), 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, @@ -153768,123 +155188,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76193] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1356), 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(1354), 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, - [76232] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1792), 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(1790), 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, - [76271] = 21, - ACTIONS(1312), 1, + [77768] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2350), 1, - anon_sym_this, - ACTIONS(3534), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4481), 1, sym_identifier, - STATE(190), 1, + ACTIONS(4483), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(191), 1, + STATE(187), 1, sym__constructor_call, - STATE(197), 1, + STATE(2290), 1, sym_member_expression, - STATE(1688), 1, + STATE(2296), 1, sym_string, - STATE(2674), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1756), 9, + STATE(2395), 9, sym__literal, sym_integer, sym_float, @@ -153894,87 +155242,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76346] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1476), 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(1474), 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, - [76385] = 21, - ACTIONS(2046), 1, + [77843] = 21, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(2058), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(2316), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(4504), 1, + ACTIONS(3553), 1, sym_identifier, - STATE(1600), 1, - sym_string, - STATE(1715), 1, + STATE(1587), 1, sym_member_expression, - STATE(1919), 1, + STATE(1609), 1, + sym_string, + STATE(2000), 1, sym__call, - STATE(1920), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2788), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2074), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(1970), 2, + STATE(1776), 2, sym__rhs_expression, sym_call_expression, - STATE(1872), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -153984,11 +155296,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76460] = 3, + [77918] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1920), 12, + ACTIONS(1847), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -154001,7 +155313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1918), 18, + ACTIONS(1845), 18, sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, @@ -154020,101 +155332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [76499] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1720), 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(1718), 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, - [76538] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4414), 1, - anon_sym_this, - STATE(1928), 1, - aux_sym_member_expression_repeat1, - STATE(2260), 1, - sym_member_expression, - STATE(2267), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1440), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, + [77957] = 4, + ACTIONS(3753), 1, anon_sym_DASH_GT, - anon_sym_LT, - STATE(3072), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76609] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1854), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4722), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -154125,83 +155349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1852), 18, + ACTIONS(4720), 19, 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, - [76648] = 5, - ACTIONS(4684), 1, anon_sym_RPAREN, - STATE(1976), 1, - aux_sym_variable_declaration_repeat2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4687), 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(4682), 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, - [76691] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1916), 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(1914), 18, - anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -154218,51 +155369,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [76730] = 21, - ACTIONS(1312), 1, + [77998] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1450), 1, + ACTIONS(4349), 1, sym_identifier, - ACTIONS(1454), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(190), 1, + STATE(363), 1, sym__call, - STATE(191), 1, + STATE(364), 1, sym__constructor_call, - STATE(197), 1, + STATE(2294), 1, sym_member_expression, - STATE(398), 1, + STATE(2297), 1, sym_string, - STATE(2674), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(344), 2, sym__rhs_expression, sym_call_expression, - STATE(572), 9, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -154272,51 +155423,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76805] = 21, - ACTIONS(1312), 1, + [78073] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(4580), 1, + ACTIONS(3541), 1, sym_identifier, - STATE(190), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(191), 1, + STATE(364), 1, sym__constructor_call, - STATE(197), 1, - sym_member_expression, - STATE(1688), 1, + STATE(1378), 1, sym_string, - STATE(2674), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(220), 2, + STATE(344), 2, sym__rhs_expression, sym_call_expression, - STATE(1898), 9, + STATE(1400), 9, sym__literal, sym_integer, sym_float, @@ -154326,11 +155477,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [76880] = 3, + [78148] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1870), 12, + ACTIONS(1799), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -154343,9 +155494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1868), 18, - sym__lookback_semicolon, + ACTIONS(1797), 18, anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -154362,47 +155513,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [76919] = 3, + [78187] = 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(1920), 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(1918), 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, - [76958] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3498), 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, + [78262] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1972), 12, + ACTIONS(1977), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -154415,9 +155584,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1970), 18, + ACTIONS(1975), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -154434,51 +155603,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [76997] = 21, + [78301] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3330), 2, + STATE(3633), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -154488,51 +155657,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77072] = 21, + [78376] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3365), 2, + STATE(3534), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -154542,51 +155711,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77147] = 21, + [78451] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3516), 2, + STATE(3680), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -154596,51 +155765,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77222] = 21, - ACTIONS(39), 1, + [78526] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3474), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(933), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3523), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(946), 9, sym__literal, sym_integer, sym_float, @@ -154650,103 +155819,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77297] = 21, - ACTIONS(39), 1, + [78601] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1373), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(1377), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(400), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3703), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [77372] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1388), 1, - sym_escape_sequence, - ACTIONS(4668), 1, - sym_identifier, - ACTIONS(4670), 1, - anon_sym_LBRACE, - ACTIONS(4672), 1, - anon_sym_LBRACK, - ACTIONS(4674), 1, - anon_sym_this, - ACTIONS(4676), 1, - aux_sym_string_token1, - ACTIONS(4678), 1, - aux_sym_string_token3, - ACTIONS(4680), 1, - sym_comment, - STATE(1995), 1, - aux_sym_member_expression_repeat1, - STATE(2276), 1, - sym__lhs_expression, - STATE(2277), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - ACTIONS(1334), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(1338), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1390), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2927), 9, + STATE(570), 9, sym__literal, sym_integer, sym_float, @@ -154756,11 +155873,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77443] = 3, + [78676] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1932), 12, + ACTIONS(1863), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -154773,9 +155890,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1930), 18, + ACTIONS(1861), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -154792,11 +155909,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [77482] = 3, + [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(1936), 12, + ACTIONS(1981), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -154809,9 +156034,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1934), 18, + ACTIONS(1979), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -154828,193 +156053,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [77521] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1754), 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(1752), 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, - [77560] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1944), 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(1942), 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, - [77599] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1948), 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(1946), 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, - [77638] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1952), 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(1950), 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, - [77677] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(1395), 1, - sym_escape_sequence, - ACTIONS(1408), 1, - anon_sym_null, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4689), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_LBRACE, - ACTIONS(4695), 1, + [78904] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(4698), 1, - anon_sym_this, - ACTIONS(4701), 1, - aux_sym_string_token1, - ACTIONS(4704), 1, - aux_sym_string_token3, - STATE(1995), 1, - aux_sym_member_expression_repeat1, - STATE(2276), 1, - sym__lhs_expression, - STATE(2277), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - ACTIONS(1411), 2, + 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(1417), 2, + ACTIONS(91), 1, aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1423), 2, + 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, - ACTIONS(1397), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2927), 9, + STATE(3459), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155024,51 +156107,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77748] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [78979] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3471), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(197), 1, + STATE(2432), 1, sym_member_expression, - STATE(928), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3492), 2, sym__rhs_expression, sym_call_expression, - STATE(944), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155078,51 +156161,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77823] = 21, - ACTIONS(39), 1, + [79054] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3539), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(1375), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3540), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1408), 9, sym__literal, sym_integer, sym_float, @@ -155132,51 +156215,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77898] = 21, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [79129] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1458), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(1496), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(337), 1, + STATE(1928), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(393), 1, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(589), 2, + STATE(3565), 2, sym__rhs_expression, sym_call_expression, - STATE(569), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155186,51 +156269,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [77973] = 21, - ACTIONS(39), 1, + [79204] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(3541), 1, sym_identifier, - STATE(1964), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, + STATE(1378), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3552), 2, + STATE(380), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(1400), 9, sym__literal, sym_integer, sym_float, @@ -155240,51 +156323,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78048] = 21, - ACTIONS(39), 1, + [79279] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1373), 1, sym_identifier, - STATE(1964), 1, + ACTIONS(1377), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(189), 1, sym_member_expression, - STATE(2518), 1, + STATE(400), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3338), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(570), 9, sym__literal, sym_integer, sym_float, @@ -155294,49 +156377,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78123] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1436), 1, - sym_escape_sequence, - ACTIONS(4668), 1, - sym_identifier, - ACTIONS(4670), 1, - anon_sym_LBRACE, - ACTIONS(4672), 1, + [79354] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(4674), 1, - anon_sym_this, - ACTIONS(4676), 1, - aux_sym_string_token1, - ACTIONS(4678), 1, - aux_sym_string_token3, - ACTIONS(4680), 1, - sym_comment, - STATE(1995), 1, - aux_sym_member_expression_repeat1, - STATE(2276), 1, - sym__lhs_expression, - STATE(2277), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - ACTIONS(1334), 2, + 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(1338), 2, + ACTIONS(91), 1, aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1342), 2, + 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, - ACTIONS(1438), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2927), 9, + STATE(3393), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155346,15 +156431,15 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78194] = 4, - ACTIONS(4707), 1, - anon_sym_COLON, + [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(1626), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4729), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -155365,7 +156450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1624), 17, + ACTIONS(4724), 18, + sym__lookback_semicolon, anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -155383,65 +156469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [78235] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1330), 1, - anon_sym_new, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(2350), 1, - anon_sym_this, - ACTIONS(3453), 1, - sym_identifier, - STATE(190), 1, - sym__call, - STATE(191), 1, - sym__constructor_call, - STATE(197), 1, - sym_member_expression, - STATE(928), 1, - sym_string, - STATE(2674), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(235), 2, - sym__rhs_expression, - sym_call_expression, - STATE(945), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [78310] = 3, + [79472] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1956), 12, + ACTIONS(1867), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -155454,9 +156486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1954), 18, + ACTIONS(1865), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -155473,51 +156505,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [78349] = 21, - ACTIONS(39), 1, + [79511] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1964), 1, + STATE(186), 1, sym__call, - STATE(1968), 1, + STATE(187), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2290), 1, sym_member_expression, - STATE(2518), 1, + STATE(2296), 1, sym_string, - STATE(2738), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3633), 2, + STATE(3562), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -155527,51 +156559,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78424] = 21, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [79586] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4488), 1, - sym_identifier, - ACTIONS(4490), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(337), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2432), 1, sym_member_expression, - STATE(2292), 1, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(385), 2, + STATE(3446), 2, sym__rhs_expression, sym_call_expression, - STATE(2482), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155581,47 +156613,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78499] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1804), 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(1802), 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, - [78538] = 3, + [79661] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1960), 12, + ACTIONS(1803), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -155634,7 +156630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1958), 18, + ACTIONS(1801), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -155653,51 +156649,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [78577] = 21, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, + [79700] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1458), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(1496), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(337), 1, + STATE(1928), 1, sym__call, - STATE(362), 1, - sym_member_expression, - STATE(371), 1, + STATE(1931), 1, sym__constructor_call, - STATE(393), 1, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2585), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(385), 2, + STATE(3458), 2, sym__rhs_expression, sym_call_expression, - STATE(569), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155707,11 +156703,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78652] = 3, + [79775] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1444), 12, + ACTIONS(1871), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -155724,9 +156720,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1446), 18, + ACTIONS(1869), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -155743,51 +156739,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [78691] = 21, - ACTIONS(39), 1, + [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(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(1964), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, + STATE(408), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3587), 2, + STATE(565), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(547), 9, sym__literal, sym_integer, sym_float, @@ -155797,51 +156829,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78766] = 21, + [79928] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3594), 2, + STATE(3522), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155851,51 +156883,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78841] = 21, + [80003] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3601), 2, + STATE(3529), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155905,51 +156937,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78916] = 21, + [80078] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3474), 2, + STATE(3709), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -155959,51 +156991,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [78991] = 21, + [80153] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3503), 2, + STATE(3557), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156013,87 +157045,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79066] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1838), 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(1836), 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, - [79105] = 21, - ACTIONS(2058), 1, + [80228] = 21, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(4454), 1, - anon_sym_this, - ACTIONS(4458), 1, + ACTIONS(4457), 1, anon_sym_LBRACE, - ACTIONS(4522), 1, + ACTIONS(4483), 1, + anon_sym_this, + ACTIONS(4555), 1, sym_identifier, - STATE(1919), 1, + STATE(2000), 1, sym__call, - STATE(1920), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2290), 1, sym_member_expression, - STATE(2488), 1, + STATE(2522), 1, sym_string, - STATE(2788), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2074), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(2010), 2, + STATE(1757), 2, sym__rhs_expression, sym_call_expression, - STATE(2644), 9, + STATE(2664), 9, sym__literal, sym_integer, sym_float, @@ -156103,87 +157099,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79180] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1964), 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(1962), 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, - [79219] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [80303] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4316), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4448), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2513), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3558), 2, sym__rhs_expression, sym_call_expression, - STATE(2747), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156193,87 +157153,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79294] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1854), 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(1852), 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, - [79333] = 21, - ACTIONS(1358), 1, + [80378] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1360), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1364), 1, - anon_sym_new, - ACTIONS(1366), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1368), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1372), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1374), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1378), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1380), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(337), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(371), 1, + STATE(187), 1, sym__constructor_call, - STATE(2289), 1, + STATE(2290), 1, sym_member_expression, - STATE(2292), 1, + STATE(2296), 1, sym_string, - STATE(2585), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(385), 2, + STATE(3373), 2, sym__rhs_expression, sym_call_expression, - STATE(2300), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -156283,123 +157207,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79408] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1968), 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(1966), 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, - [79447] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1300), 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(1302), 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, - [79486] = 21, - ACTIONS(2058), 1, + [80453] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(2064), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(2066), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(2068), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(2070), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(2072), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(2076), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(2078), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4316), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4456), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(4458), 1, - anon_sym_LBRACE, - STATE(1919), 1, + STATE(1928), 1, sym__call, - STATE(1920), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2488), 1, + STATE(2530), 1, sym_string, - STATE(2788), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2074), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2010), 2, + STATE(3583), 2, sym__rhs_expression, sym_call_expression, - STATE(2675), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156409,51 +157261,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79561] = 21, + [80528] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3634), 2, + STATE(3593), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156463,51 +157315,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79636] = 21, + [80603] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3641), 2, + STATE(3600), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156517,103 +157369,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79711] = 21, + [80678] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3648), 2, + STATE(3607), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [79786] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1440), 1, - sym_escape_sequence, - ACTIONS(4668), 1, - sym_identifier, - ACTIONS(4670), 1, - anon_sym_LBRACE, - ACTIONS(4672), 1, - anon_sym_LBRACK, - ACTIONS(4674), 1, - anon_sym_this, - ACTIONS(4676), 1, - aux_sym_string_token1, - ACTIONS(4678), 1, - aux_sym_string_token3, - ACTIONS(4680), 1, - sym_comment, - STATE(1995), 1, - aux_sym_member_expression_repeat1, - STATE(2276), 1, - sym__lhs_expression, - STATE(2277), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - ACTIONS(1334), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(1338), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1442), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2927), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156623,123 +157423,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [79857] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1908), 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(1906), 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, - [79896] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1770), 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(1768), 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, - [79935] = 21, + [80753] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3484), 2, + STATE(3445), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156749,51 +157477,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80010] = 21, - ACTIONS(39), 1, + [80828] = 21, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(55), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(85), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(87), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(89), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(91), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(95), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(97), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(1964), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1968), 1, + STATE(364), 1, sym__constructor_call, - STATE(2434), 1, - sym_member_expression, - STATE(2518), 1, + STATE(408), 1, sym_string, - STATE(2738), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(3353), 2, + STATE(370), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(547), 9, sym__literal, sym_integer, sym_float, @@ -156803,47 +157531,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80085] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1758), 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(1756), 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, - [80124] = 3, + [80903] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1734), 12, + ACTIONS(1835), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -156856,9 +157548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1732), 18, + ACTIONS(1833), 18, anon_sym_STAR, - anon_sym_in, + anon_sym_while, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -156875,51 +157567,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [80163] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [80942] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(4452), 1, - sym_identifier, - ACTIONS(4454), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(190), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2285), 1, + STATE(2432), 1, sym_member_expression, - STATE(2291), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3640), 2, sym__rhs_expression, sym_call_expression, - STATE(2403), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156929,51 +157621,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80238] = 21, + [81017] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3561), 2, + STATE(3647), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -156983,155 +157675,119 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80313] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1870), 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(1868), 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, - [80352] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1804), 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(1802), 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, - [80391] = 3, + [81092] = 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(1882), 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(1880), 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, - [80430] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3654), 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, + [81167] = 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(1904), 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(1902), 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, - [80469] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3490), 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, + [81242] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1912), 12, + ACTIONS(1807), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -157144,7 +157800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1910), 18, + ACTIONS(1805), 18, anon_sym_STAR, anon_sym_in, anon_sym_TILDE, @@ -157163,123 +157819,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [80508] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1964), 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(1962), 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, - [80547] = 3, + [81281] = 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(1730), 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(1728), 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, - [80586] = 21, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3567), 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, + [81356] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3675), 2, + STATE(3424), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -157289,51 +157927,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80661] = 21, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, + [81431] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1330), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(1332), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3471), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(190), 1, + STATE(1928), 1, sym__call, - STATE(191), 1, + STATE(1931), 1, sym__constructor_call, - STATE(197), 1, + STATE(2432), 1, sym_member_expression, - STATE(928), 1, + STATE(2530), 1, sym_string, - STATE(2674), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(975), 2, + STATE(3514), 2, sym__rhs_expression, sym_call_expression, - STATE(944), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -157343,51 +157981,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80736] = 21, + [81506] = 21, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(55), 1, anon_sym_new, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(85), 1, - aux_sym_integer_token1, ACTIONS(87), 1, - aux_sym_integer_token2, + aux_sym_integer_token1, ACTIONS(89), 1, - aux_sym_float_token1, + aux_sym_integer_token2, ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(95), 1, - aux_sym_string_token1, ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(1974), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(4538), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1964), 1, + STATE(1928), 1, sym__call, - STATE(1968), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2434), 1, + STATE(2432), 1, sym_member_expression, - STATE(2518), 1, + STATE(2530), 1, sym_string, - STATE(2738), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(93), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(3443), 2, + STATE(3414), 2, sym__rhs_expression, sym_call_expression, - STATE(2587), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -157397,11 +158035,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80811] = 3, + [81581] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4712), 10, + ACTIONS(1927), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -157412,10 +158052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(4710), 19, + ACTIONS(1925), 18, sym__lookback_semicolon, anon_sym_STAR, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -157432,48 +158071,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK_QMARK, anon_sym_DOT_DOT_DOT, - [80849] = 19, - ACTIONS(1312), 1, + [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, + 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(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4624), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(4714), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2050), 1, - aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1436), 3, + ACTIONS(1447), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, - STATE(2832), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -157483,83 +158157,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [80919] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4718), 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(4716), 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, - [80957] = 19, - ACTIONS(1399), 1, + [81728] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1408), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1411), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1414), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1417), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1420), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1426), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1429), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4720), 1, - sym_identifier, - ACTIONS(4723), 1, + ACTIONS(4621), 1, anon_sym_this, - STATE(1003), 1, + ACTIONS(4731), 1, + sym_identifier, + STATE(1010), 1, sym_member_expression, - STATE(2050), 1, - aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1423), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1395), 3, + ACTIONS(1339), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, - STATE(2832), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -157569,48 +158208,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81027] = 19, - ACTIONS(1312), 1, + [81798] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4624), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(4714), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2050), 1, - aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1384), 3, + ACTIONS(1379), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, - STATE(2832), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -157620,83 +158259,99 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81097] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1892), 12, - anon_sym_this, - anon_sym_catch, - anon_sym_else, - anon_sym_while, + [81868] = 19, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_null, - anon_sym_extends, - anon_sym_implements, + 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(4733), 1, + sym_identifier, + ACTIONS(4736), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + 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(1414), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(1890), 17, + ACTIONS(1386), 3, 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_LT, - anon_sym_GT, - anon_sym_EQ, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [81135] = 19, - ACTIONS(1312), 1, + STATE(2921), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [81938] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4624), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(4714), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2050), 1, - aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(1388), 3, + ACTIONS(1313), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, - STATE(2832), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -157706,17 +158361,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81205] = 6, - ACTIONS(3668), 1, - anon_sym_DOT, - ACTIONS(3670), 1, - anon_sym_QMARK, - ACTIONS(4326), 1, - anon_sym_EQ_GT, + [82008] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1780), 10, + ACTIONS(4741), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -157727,8 +158376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1778), 16, + ACTIONS(4739), 19, + sym__lookback_semicolon, anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -157742,81 +158393,101 @@ 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, anon_sym_DOT_DOT_DOT, - [81249] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4624), 1, - anon_sym_this, - ACTIONS(4714), 1, - sym_identifier, - STATE(1003), 1, - sym_member_expression, - STATE(2050), 1, - aux_sym_member_expression_repeat1, - STATE(2052), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, + [82046] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1440), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2832), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [81319] = 5, - ACTIONS(4730), 1, + ACTIONS(4745), 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, - STATE(204), 1, - sym__assignmentOperator, + ACTIONS(4743), 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, + [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(4726), 11, + 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), 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, + [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_new, anon_sym_null, aux_sym_integer_token1, aux_sym_float_token1, anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(4728), 14, + ACTIONS(1753), 16, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACE, @@ -157825,65 +158496,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [81359] = 19, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4540), 1, - sym_identifier, - ACTIONS(4542), 1, - anon_sym_this, - ACTIONS(4732), 1, - anon_sym_RPAREN, - STATE(1003), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2395), 1, - sym__lhs_expression, - STATE(2897), 1, - sym_function_arg, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3095), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [81427] = 3, + [82164] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1892), 11, + ACTIONS(1875), 11, anon_sym_in, anon_sym_this, anon_sym_catch, @@ -157895,7 +158518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1890), 16, + ACTIONS(1873), 16, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -157912,11 +158535,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [81463] = 3, + [82200] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 11, + ACTIONS(1755), 11, anon_sym_in, anon_sym_this, anon_sym_catch, @@ -157928,13 +158553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 16, + ACTIONS(1753), 15, 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, @@ -157945,13 +158569,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [81499] = 4, - ACTIONS(4734), 1, + [82238] = 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, + ACTIONS(4747), 1, + anon_sym_RPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2453), 1, + sym__lhs_expression, + STATE(2965), 1, + sym_function_arg, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2911), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [82306] = 4, + ACTIONS(4749), 1, anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1775), 12, + ACTIONS(1990), 12, anon_sym_in, anon_sym_this, anon_sym_catch, @@ -157964,7 +158637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1772), 14, + ACTIONS(1987), 14, anon_sym_DOT, anon_sym_RPAREN, anon_sym_RBRACE, @@ -157979,78 +158652,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [81537] = 4, - ACTIONS(1888), 1, - anon_sym_COLON, + [82344] = 5, + ACTIONS(4755), 1, + anon_sym_EQ, + STATE(176), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 11, - anon_sym_in, + 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, sym_identifier, - ACTIONS(1782), 15, + ACTIONS(4753), 14, 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, aux_sym_string_token1, aux_sym_string_token3, - [81575] = 18, - ACTIONS(1312), 1, + [82384] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, - sym_identifier, - ACTIONS(4414), 1, + ACTIONS(4461), 1, anon_sym_this, - STATE(1796), 1, + ACTIONS(4527), 1, + sym_identifier, + STATE(1521), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(2265), 1, sym_member_expression, - STATE(2267), 1, + STATE(2268), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3072), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -158060,44 +158734,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81640] = 18, - ACTIONS(1312), 1, + [82449] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4621), 1, anon_sym_this, - STATE(1003), 1, + ACTIONS(4731), 1, + sym_identifier, + STATE(1010), 1, sym_member_expression, - STATE(1339), 1, - aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2054), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -158107,44 +158781,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81705] = 18, - ACTIONS(1312), 1, + [82514] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(2025), 1, anon_sym_this, - STATE(1003), 1, + ACTIONS(3625), 1, + sym_identifier, + STATE(882), 1, sym_member_expression, - STATE(1340), 1, + STATE(944), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -158154,44 +158828,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81770] = 18, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(1312), 1, + [82579] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3628), 1, + ACTIONS(2025), 1, + anon_sym_this, + ACTIONS(3625), 1, sym_identifier, + STATE(882), 1, + sym_member_expression, STATE(939), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(1007), 1, - sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2910), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -158201,44 +158875,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81835] = 18, - ACTIONS(1312), 1, + [82644] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(2025), 1, anon_sym_this, - STATE(1003), 1, + ACTIONS(3625), 1, + sym_identifier, + STATE(882), 1, sym_member_expression, - STATE(1341), 1, + STATE(927), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -158248,44 +158922,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81900] = 18, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(1312), 1, + [82709] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3628), 1, + ACTIONS(4461), 1, + anon_sym_this, + ACTIONS(4527), 1, sym_identifier, - STATE(936), 1, + STATE(1517), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, - sym__lhs_expression, - STATE(1007), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2910), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -158295,44 +158969,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [81965] = 18, - ACTIONS(1312), 1, + [82774] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4337), 1, sym_identifier, - ACTIONS(4414), 1, + ACTIONS(4339), 1, anon_sym_this, - STATE(1889), 1, + STATE(1350), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(2061), 1, sym_member_expression, - STATE(2267), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3072), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -158342,44 +159016,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82030] = 18, - ACTIONS(1312), 1, + [82839] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4337), 1, sym_identifier, - ACTIONS(4414), 1, + ACTIONS(4339), 1, anon_sym_this, - STATE(1929), 1, + STATE(1355), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(2061), 1, sym_member_expression, - STATE(2267), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3072), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -158389,44 +159063,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82095] = 18, - ACTIONS(1312), 1, + [82904] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4408), 1, + ACTIONS(4337), 1, sym_identifier, - ACTIONS(4414), 1, + ACTIONS(4339), 1, anon_sym_this, - STATE(1974), 1, + STATE(1358), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(2061), 1, sym_member_expression, - STATE(2267), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3072), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -158436,138 +159110,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82160] = 18, - ACTIONS(1312), 1, + [82969] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(2025), 1, anon_sym_this, - ACTIONS(4736), 1, - anon_sym_new, - STATE(1003), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2546), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2860), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [82225] = 18, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3918), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3920), 1, - anon_sym_this, - STATE(215), 1, - sym__lhs_expression, - STATE(1003), 1, + STATE(882), 1, sym_member_expression, - STATE(1104), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3007), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [82290] = 18, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_this, - STATE(924), 1, + STATE(932), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(1007), 1, - sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -158577,44 +159157,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82355] = 18, - ACTIONS(1312), 1, + [83034] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4497), 1, anon_sym_this, - STATE(922), 1, + ACTIONS(4577), 1, + sym_identifier, + STATE(1614), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(1007), 1, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -158624,44 +159204,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82420] = 18, - ACTIONS(1312), 1, + [83099] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4497), 1, anon_sym_this, - STATE(921), 1, + ACTIONS(4577), 1, + sym_identifier, + STATE(1617), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(1007), 1, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -158671,44 +159251,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82485] = 18, - ACTIONS(1312), 1, + [83164] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(918), 1, + STATE(920), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, - sym__lhs_expression, - STATE(1007), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -158718,44 +159298,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82550] = 18, - ACTIONS(1312), 1, + [83229] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1454), 1, - anon_sym_this, - ACTIONS(1552), 1, + ACTIONS(4337), 1, sym_identifier, - STATE(150), 1, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1357), 1, aux_sym_member_expression_repeat1, - STATE(215), 1, - sym__lhs_expression, - STATE(570), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3097), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -158765,44 +159345,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82615] = 18, - ACTIONS(1312), 1, + [83294] = 18, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1454), 1, - anon_sym_this, - ACTIONS(1552), 1, - sym_identifier, - STATE(153), 1, + STATE(113), 1, aux_sym_member_expression_repeat1, - STATE(215), 1, - sym__lhs_expression, - STATE(570), 1, + STATE(340), 1, sym_member_expression, - STATE(2291), 1, + STATE(357), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3097), 9, + STATE(2926), 9, sym__literal, sym_integer, sym_float, @@ -158812,91 +159392,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82680] = 18, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4540), 1, + [83359] = 18, + ACTIONS(1311), 1, sym_identifier, - ACTIONS(4542), 1, - anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2395), 1, - sym__lhs_expression, - STATE(3184), 1, - sym_function_arg, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3095), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [82745] = 18, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1454), 1, - anon_sym_this, - ACTIONS(1552), 1, - sym_identifier, - STATE(152), 1, + STATE(108), 1, aux_sym_member_expression_repeat1, - STATE(215), 1, - sym__lhs_expression, - STATE(570), 1, + STATE(340), 1, sym_member_expression, - STATE(2291), 1, + STATE(357), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3097), 9, + STATE(2926), 9, sym__literal, sym_integer, sym_float, @@ -158906,44 +159439,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82810] = 18, - ACTIONS(1312), 1, + [83424] = 18, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, - anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(1338), 1, + STATE(117), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(340), 1, + sym_member_expression, + STATE(357), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2926), 9, sym__literal, sym_integer, sym_float, @@ -158953,44 +159486,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82875] = 18, - ACTIONS(1312), 1, + [83489] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4668), 1, - sym_identifier, - ACTIONS(4674), 1, + ACTIONS(4497), 1, anon_sym_this, - STATE(1988), 1, + ACTIONS(4577), 1, + sym_identifier, + STATE(1610), 1, aux_sym_member_expression_repeat1, - STATE(2276), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2277), 1, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2927), 9, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -159000,41 +159533,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [82940] = 18, - ACTIONS(1312), 1, + [83554] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4668), 1, - sym_identifier, - ACTIONS(4674), 1, + ACTIONS(4483), 1, anon_sym_this, - STATE(2001), 1, + ACTIONS(4509), 1, + sym_identifier, + STATE(1500), 1, aux_sym_member_expression_repeat1, - STATE(2276), 1, - sym__lhs_expression, - STATE(2277), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, STATE(2927), 9, @@ -159047,41 +159580,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83005] = 18, - ACTIONS(1312), 1, + [83619] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4668), 1, - sym_identifier, - ACTIONS(4674), 1, + ACTIONS(4483), 1, anon_sym_this, - STATE(2028), 1, + ACTIONS(4509), 1, + sym_identifier, + STATE(1502), 1, aux_sym_member_expression_repeat1, - STATE(2276), 1, - sym__lhs_expression, - STATE(2277), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, STATE(2927), 9, @@ -159094,44 +159627,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83070] = 18, - ACTIONS(1312), 1, + [83684] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1454), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(1552), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(151), 1, + STATE(1503), 1, aux_sym_member_expression_repeat1, - STATE(215), 1, - sym__lhs_expression, - STATE(570), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3097), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -159141,44 +159674,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83135] = 18, - ACTIONS(1312), 1, + [83749] = 18, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2448), 1, - anon_sym_this, - ACTIONS(3558), 1, - sym_identifier, - STATE(910), 1, + STATE(109), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, - sym__lhs_expression, - STATE(1007), 1, + STATE(340), 1, sym_member_expression, - STATE(2291), 1, + STATE(357), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2926), 9, sym__literal, sym_integer, sym_float, @@ -159188,44 +159721,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83200] = 18, - ACTIONS(1312), 1, + [83814] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2448), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3558), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(898), 1, - aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(205), 1, sym__lhs_expression, - STATE(1007), 1, + STATE(882), 1, sym_member_expression, - STATE(2291), 1, + STATE(907), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -159235,44 +159768,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83265] = 18, - ACTIONS(1312), 1, + [83879] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2448), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3558), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(903), 1, - aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(205), 1, sym__lhs_expression, - STATE(1007), 1, + STATE(882), 1, sym_member_expression, - STATE(2291), 1, + STATE(908), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -159282,44 +159815,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83330] = 18, - ACTIONS(1312), 1, + [83944] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4668), 1, - sym_identifier, - ACTIONS(4674), 1, + ACTIONS(2105), 1, anon_sym_this, - STATE(1961), 1, - aux_sym_member_expression_repeat1, - STATE(2276), 1, + ACTIONS(3597), 1, + sym_identifier, + STATE(205), 1, sym__lhs_expression, - STATE(2277), 1, + STATE(882), 1, sym_member_expression, - STATE(2291), 1, + STATE(909), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2927), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -159329,44 +159862,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83395] = 18, - ACTIONS(1312), 1, + [84009] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1518), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(3463), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(858), 1, + STATE(1499), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(2061), 1, sym_member_expression, - STATE(947), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3100), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -159376,44 +159909,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83460] = 18, - ACTIONS(1312), 1, + [84074] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1518), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3463), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(861), 1, - aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(882), 1, sym_member_expression, - STATE(947), 1, + STATE(901), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3100), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -159423,44 +159956,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83525] = 18, - ACTIONS(1312), 1, + [84139] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1518), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3463), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(862), 1, - aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(882), 1, sym_member_expression, - STATE(947), 1, + STATE(903), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3100), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -159470,44 +160003,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83590] = 18, - ACTIONS(1312), 1, + [84204] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2448), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3558), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(905), 1, + STATE(882), 1, + sym_member_expression, + STATE(913), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(1007), 1, - sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3099), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -159517,44 +160050,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83655] = 18, - ACTIONS(1312), 1, + [84269] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1500), 1, - sym_identifier, - ACTIONS(2350), 1, + ACTIONS(2105), 1, anon_sym_this, - STATE(215), 1, + ACTIONS(3597), 1, + sym_identifier, + STATE(205), 1, sym__lhs_expression, - STATE(844), 1, - aux_sym_member_expression_repeat1, - STATE(884), 1, + STATE(882), 1, sym_member_expression, - STATE(2291), 1, + STATE(906), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3102), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -159564,44 +160097,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83720] = 18, - ACTIONS(1312), 1, + [84334] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1500), 1, - sym_identifier, - ACTIONS(2350), 1, + ACTIONS(4475), 1, anon_sym_this, - STATE(215), 1, - sym__lhs_expression, - STATE(841), 1, + ACTIONS(4539), 1, + sym_identifier, + STATE(1541), 1, aux_sym_member_expression_repeat1, - STATE(884), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3102), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -159611,44 +160144,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83785] = 18, - ACTIONS(1312), 1, + [84399] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1500), 1, - sym_identifier, - ACTIONS(2350), 1, + ACTIONS(4475), 1, anon_sym_this, - STATE(215), 1, - sym__lhs_expression, - STATE(843), 1, + ACTIONS(4539), 1, + sym_identifier, + STATE(1543), 1, aux_sym_member_expression_repeat1, - STATE(884), 1, + STATE(2061), 1, sym_member_expression, - STATE(2291), 1, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3102), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -159658,44 +160191,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83850] = 18, - ACTIONS(1312), 1, + [84464] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1518), 1, + ACTIONS(4475), 1, anon_sym_this, - ACTIONS(3463), 1, + ACTIONS(4539), 1, sym_identifier, - STATE(857), 1, + STATE(1544), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(2061), 1, sym_member_expression, - STATE(947), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3100), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -159705,44 +160238,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83915] = 18, - ACTIONS(1312), 1, + [84529] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1456), 1, - sym_identifier, - ACTIONS(1458), 1, + ACTIONS(2117), 1, anon_sym_this, - STATE(123), 1, - aux_sym_member_expression_repeat1, - STATE(367), 1, + ACTIONS(3579), 1, + sym_identifier, + STATE(882), 1, sym_member_expression, - STATE(368), 1, + STATE(898), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3103), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -159752,44 +160285,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [83980] = 18, - ACTIONS(1312), 1, + [84594] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1456), 1, - sym_identifier, - ACTIONS(1458), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(125), 1, + ACTIONS(4357), 1, + sym_identifier, + STATE(1368), 1, aux_sym_member_expression_repeat1, - STATE(367), 1, - sym_member_expression, - STATE(368), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3103), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -159799,44 +160332,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84045] = 18, - ACTIONS(1312), 1, + [84659] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1456), 1, - sym_identifier, - ACTIONS(1458), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(126), 1, + ACTIONS(4357), 1, + sym_identifier, + STATE(1367), 1, aux_sym_member_expression_repeat1, - STATE(367), 1, - sym_member_expression, - STATE(368), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3103), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -159846,44 +160379,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84110] = 18, - ACTIONS(1312), 1, + [84724] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1500), 1, - sym_identifier, - ACTIONS(2350), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(215), 1, - sym__lhs_expression, - STATE(842), 1, + ACTIONS(4357), 1, + sym_identifier, + STATE(1373), 1, aux_sym_member_expression_repeat1, - STATE(884), 1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3102), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -159893,44 +160426,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84175] = 18, - ACTIONS(1312), 1, + [84789] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2558), 1, + ACTIONS(4475), 1, anon_sym_this, - ACTIONS(3544), 1, + ACTIONS(4539), 1, sym_identifier, - STATE(893), 1, + STATE(1540), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, + STATE(2061), 1, sym_member_expression, - STATE(998), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -159940,44 +160473,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84240] = 18, - ACTIONS(1312), 1, + [84854] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2558), 1, - anon_sym_this, - ACTIONS(3544), 1, + ACTIONS(4419), 1, sym_identifier, - STATE(892), 1, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1426), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, - sym_member_expression, - STATE(998), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -159987,44 +160520,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84305] = 18, - ACTIONS(1312), 1, + [84919] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2558), 1, - anon_sym_this, - ACTIONS(3544), 1, + ACTIONS(4419), 1, sym_identifier, - STATE(894), 1, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1382), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, - sym_member_expression, - STATE(998), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -160034,44 +160567,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84370] = 18, - ACTIONS(1312), 1, + [84984] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1456), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(1458), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(122), 1, + STATE(1391), 1, aux_sym_member_expression_repeat1, - STATE(367), 1, - sym_member_expression, - STATE(368), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3103), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -160081,44 +160614,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84435] = 18, - ACTIONS(1312), 1, + [85049] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, - sym_identifier, - ACTIONS(3586), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(916), 1, + ACTIONS(4357), 1, + sym_identifier, + STATE(1364), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(1094), 1, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3089), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -160128,44 +160661,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84500] = 18, - ACTIONS(1312), 1, + [85114] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, - sym_identifier, - ACTIONS(3586), 1, + ACTIONS(1552), 1, anon_sym_this, - STATE(919), 1, + ACTIONS(3587), 1, + sym_identifier, + STATE(912), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(1094), 1, + STATE(1050), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3089), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -160175,44 +160708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84565] = 18, - ACTIONS(1312), 1, + [85179] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, - sym_identifier, - ACTIONS(3586), 1, + ACTIONS(1552), 1, anon_sym_this, - STATE(920), 1, + ACTIONS(3587), 1, + sym_identifier, + STATE(900), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(1094), 1, + STATE(1050), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3089), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -160222,44 +160755,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84630] = 18, - ACTIONS(1312), 1, + [85244] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2558), 1, + ACTIONS(1552), 1, anon_sym_this, - ACTIONS(3544), 1, + ACTIONS(3587), 1, sym_identifier, - STATE(890), 1, + STATE(916), 1, aux_sym_member_expression_repeat1, - STATE(989), 1, - sym_member_expression, - STATE(998), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1050), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3106), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -160269,44 +160802,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84695] = 18, - ACTIONS(1312), 1, + [85309] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4540), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(4542), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(1586), 1, + STATE(1402), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3095), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -160316,44 +160849,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84760] = 18, - ACTIONS(1312), 1, + [85374] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4540), 1, - sym_identifier, - ACTIONS(4542), 1, + ACTIONS(1552), 1, anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(1609), 1, + ACTIONS(3587), 1, + sym_identifier, + STATE(914), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1050), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3095), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -160363,44 +160896,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84825] = 18, - ACTIONS(1312), 1, + [85439] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4540), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(4542), 1, + ACTIONS(3929), 1, anon_sym_this, - STATE(1003), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, sym_member_expression, - STATE(1611), 1, + STATE(1102), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3095), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -160410,44 +160943,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84890] = 18, - ACTIONS(1312), 1, + [85504] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3584), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(915), 1, + STATE(1842), 1, aux_sym_member_expression_repeat1, - STATE(1083), 1, - sym__lhs_expression, - STATE(1094), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3089), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -160457,44 +160990,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [84955] = 18, - ACTIONS(1312), 1, + [85569] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1434), 1, - anon_sym_this, - ACTIONS(1500), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(135), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1993), 1, aux_sym_member_expression_repeat1, - STATE(215), 1, - sym__lhs_expression, - STATE(570), 1, + STATE(2265), 1, sym_member_expression, - STATE(2291), 1, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2982), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -160504,44 +161037,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85020] = 18, - ACTIONS(1312), 1, + [85634] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1434), 1, + ACTIONS(1377), 1, anon_sym_this, - ACTIONS(1500), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(136), 1, + STATE(137), 1, aux_sym_member_expression_repeat1, - STATE(215), 1, + STATE(205), 1, sym__lhs_expression, - STATE(570), 1, + STATE(548), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2982), 9, + STATE(2919), 9, sym__literal, sym_integer, sym_float, @@ -160551,44 +161084,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85085] = 18, - ACTIONS(1312), 1, + [85699] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1434), 1, + ACTIONS(1377), 1, anon_sym_this, - ACTIONS(1500), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(138), 1, + STATE(134), 1, aux_sym_member_expression_repeat1, - STATE(215), 1, + STATE(205), 1, sym__lhs_expression, - STATE(570), 1, + STATE(548), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2982), 9, + STATE(2919), 9, sym__literal, sym_integer, sym_float, @@ -160598,44 +161131,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85150] = 18, - ACTIONS(1312), 1, + [85764] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4540), 1, - sym_identifier, - ACTIONS(4542), 1, + ACTIONS(1377), 1, anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(1578), 1, + ACTIONS(1516), 1, + sym_identifier, + STATE(135), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(205), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(548), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3095), 9, + STATE(2919), 9, sym__literal, sym_integer, sym_float, @@ -160645,44 +161178,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85215] = 18, - ACTIONS(1312), 1, + [85829] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1326), 1, - anon_sym_this, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3520), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(870), 1, - aux_sym_member_expression_repeat1, - STATE(946), 1, - sym_member_expression, - STATE(947), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1010), 1, + sym_member_expression, + STATE(1117), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2831), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -160692,44 +161225,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85280] = 18, - ACTIONS(1312), 1, + [85894] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1326), 1, - anon_sym_this, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3520), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(873), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1833), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(2265), 1, sym_member_expression, - STATE(947), 1, + STATE(2268), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2831), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -160739,44 +161272,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85345] = 18, - ACTIONS(1312), 1, + [85959] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1326), 1, - anon_sym_this, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3520), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(874), 1, - aux_sym_member_expression_repeat1, - STATE(946), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(947), 1, + STATE(1598), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2831), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -160786,44 +161319,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85410] = 18, - ACTIONS(1312), 1, + [86024] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1434), 1, - anon_sym_this, - ACTIONS(1500), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(134), 1, + STATE(938), 1, aux_sym_member_expression_repeat1, - STATE(215), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(570), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2982), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -160833,44 +161366,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85475] = 18, - ACTIONS(1312), 1, + [86089] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4624), 1, + ACTIONS(1365), 1, anon_sym_this, - ACTIONS(4714), 1, + ACTIONS(3537), 1, sym_identifier, - STATE(1003), 1, - sym_member_expression, - STATE(2052), 1, - sym__lhs_expression, - STATE(2053), 1, + STATE(874), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2832), 9, + STATE(2920), 9, sym__literal, sym_integer, sym_float, @@ -160880,44 +161413,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85540] = 18, - ACTIONS(1312), 1, + [86154] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4624), 1, + ACTIONS(1365), 1, anon_sym_this, - ACTIONS(4714), 1, + ACTIONS(3537), 1, sym_identifier, - STATE(1003), 1, - sym_member_expression, - STATE(2048), 1, + STATE(877), 1, aux_sym_member_expression_repeat1, - STATE(2052), 1, + STATE(948), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(949), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2832), 9, + STATE(2920), 9, sym__literal, sym_integer, sym_float, @@ -160927,44 +161460,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85605] = 18, - ACTIONS(1312), 1, + [86219] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4624), 1, - anon_sym_this, - ACTIONS(4714), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1003), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, + STATE(1345), 1, + aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2055), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2832), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -160974,44 +161507,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85670] = 18, - ACTIONS(1312), 1, + [86284] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1326), 1, - anon_sym_this, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3520), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(871), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1859), 1, aux_sym_member_expression_repeat1, - STATE(946), 1, + STATE(2265), 1, sym_member_expression, - STATE(947), 1, + STATE(2268), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2831), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -161021,44 +161554,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85735] = 18, - ACTIONS(1312), 1, + [86349] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(3455), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(215), 1, - sym__lhs_expression, - STATE(848), 1, - aux_sym_member_expression_repeat1, - STATE(884), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2291), 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3018), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -161068,44 +161601,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85800] = 18, - ACTIONS(1312), 1, + [86414] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4438), 1, + ACTIONS(1365), 1, anon_sym_this, - ACTIONS(4492), 1, + ACTIONS(3537), 1, sym_identifier, - STATE(1573), 1, + STATE(867), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, - sym_member_expression, - STATE(2267), 1, + STATE(948), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(949), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2833), 9, + STATE(2920), 9, sym__literal, sym_integer, sym_float, @@ -161115,44 +161648,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85865] = 18, - ACTIONS(1312), 1, + [86479] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4438), 1, - anon_sym_this, - ACTIONS(4492), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1509), 1, - aux_sym_member_expression_repeat1, - STATE(2260), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4757), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(2267), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2603), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2833), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -161162,44 +161695,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85930] = 18, - ACTIONS(1312), 1, + [86544] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4624), 1, - anon_sym_this, - ACTIONS(4714), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1003), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2051), 1, + STATE(1347), 1, aux_sym_member_expression_repeat1, STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2832), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -161209,44 +161742,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [85995] = 18, - ACTIONS(1312), 1, + [86609] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2316), 1, + ACTIONS(1377), 1, anon_sym_this, - ACTIONS(3610), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(930), 1, + STATE(136), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(205), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(548), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2834), 9, + STATE(2919), 9, sym__literal, sym_integer, sym_float, @@ -161256,44 +161789,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86060] = 18, - ACTIONS(1312), 1, + [86674] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2316), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(3610), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(884), 1, + STATE(1010), 1, sym_member_expression, - STATE(929), 1, - aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2055), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2834), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -161303,44 +161836,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86125] = 18, - ACTIONS(1312), 1, + [86739] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2316), 1, - anon_sym_this, - ACTIONS(3610), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(937), 1, + STATE(945), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2834), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -161350,44 +161883,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86190] = 18, - ACTIONS(1312), 1, + [86804] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4438), 1, - anon_sym_this, - ACTIONS(4492), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(1527), 1, - aux_sym_member_expression_repeat1, - STATE(2260), 1, - sym_member_expression, - STATE(2267), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1010), 1, + sym_member_expression, + STATE(1106), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2833), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -161397,44 +161930,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86255] = 18, - ACTIONS(1312), 1, + [86869] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4621), 1, anon_sym_this, - STATE(1347), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + ACTIONS(4731), 1, + sym_identifier, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2057), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2835), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -161444,44 +161977,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86320] = 18, - ACTIONS(1312), 1, + [86934] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4314), 1, + ACTIONS(4563), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4565), 1, anon_sym_this, - STATE(1350), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2453), 1, + sym__lhs_expression, + STATE(3263), 1, + sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2835), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -161491,44 +162024,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86385] = 18, - ACTIONS(1312), 1, + [86999] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4314), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(1353), 1, + STATE(925), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2059), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2835), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -161538,91 +162071,79 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86450] = 18, - ACTIONS(1312), 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, - ACTIONS(1324), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, + anon_sym_DASH_GT, + anon_sym_LT, aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(2316), 1, + ACTIONS(1755), 11, + anon_sym_case, + anon_sym_default, anon_sym_this, - ACTIONS(3610), 1, - sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(940), 1, - aux_sym_member_expression_repeat1, - STATE(1040), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, + anon_sym_catch, + anon_sym_else, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2834), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [86515] = 18, - ACTIONS(1312), 1, + sym_identifier, + [87105] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4490), 1, - anon_sym_this, - ACTIONS(4604), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(1679), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(918), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2836), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -161632,44 +162153,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86580] = 18, - ACTIONS(1312), 1, + [87170] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4490), 1, - anon_sym_this, - ACTIONS(4604), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(1689), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(917), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2836), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -161679,44 +162200,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86645] = 18, - ACTIONS(1312), 1, + [87235] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4490), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(4604), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1697), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, + STATE(1010), 1, sym_member_expression, - STATE(2215), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2053), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2836), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -161726,44 +162247,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86710] = 18, - ACTIONS(1312), 1, + [87300] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, + ACTIONS(1365), 1, anon_sym_this, - STATE(1352), 1, + ACTIONS(3537), 1, + sym_identifier, + STATE(873), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, + STATE(948), 1, sym__lhs_expression, - STATE(2059), 1, + STATE(949), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2835), 9, + STATE(2920), 9, sym__literal, sym_integer, sym_float, @@ -161773,44 +162294,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86775] = 18, - ACTIONS(1312), 1, + [87365] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1362), 1, + ACTIONS(4461), 1, anon_sym_this, - ACTIONS(1382), 1, + ACTIONS(4527), 1, sym_identifier, - STATE(113), 1, + STATE(1518), 1, aux_sym_member_expression_repeat1, - STATE(367), 1, + STATE(2265), 1, sym_member_expression, - STATE(368), 1, + STATE(2268), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2837), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -161820,44 +162341,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86840] = 18, - ACTIONS(1312), 1, + [87430] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1362), 1, + ACTIONS(4461), 1, anon_sym_this, - ACTIONS(1382), 1, + ACTIONS(4527), 1, sym_identifier, - STATE(117), 1, + STATE(1520), 1, aux_sym_member_expression_repeat1, - STATE(367), 1, + STATE(2265), 1, sym_member_expression, - STATE(368), 1, + STATE(2268), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2837), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -161867,44 +162388,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86905] = 18, - ACTIONS(1312), 1, + [87495] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1362), 1, - anon_sym_this, - ACTIONS(1382), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(118), 1, - aux_sym_member_expression_repeat1, - STATE(367), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4763), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(368), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2616), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2837), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -161914,44 +162435,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [86970] = 18, - ACTIONS(1312), 1, + [87560] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4490), 1, - anon_sym_this, - ACTIONS(4604), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(1676), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(919), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2836), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -161961,44 +162482,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87035] = 18, - ACTIONS(1312), 1, + [87625] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4454), 1, - anon_sym_this, - ACTIONS(4478), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1489), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4765), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2625), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2838), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -162008,44 +162529,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87100] = 18, - ACTIONS(1312), 1, + [87690] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4454), 1, - anon_sym_this, - ACTIONS(4478), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(1491), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, sym__lhs_expression, - STATE(2059), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(1094), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2838), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -162055,44 +162576,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87165] = 18, - ACTIONS(1312), 1, + [87755] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4454), 1, - anon_sym_this, - ACTIONS(4478), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1492), 1, - aux_sym_member_expression_repeat1, - STATE(2058), 1, - sym__lhs_expression, - STATE(2059), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4767), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2630), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2838), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -162102,44 +162623,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87230] = 18, - ACTIONS(1312), 1, + [87820] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1362), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(1382), 1, + ACTIONS(1568), 1, sym_identifier, - STATE(112), 1, + STATE(151), 1, aux_sym_member_expression_repeat1, - STATE(367), 1, - sym_member_expression, - STATE(368), 1, + STATE(205), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(548), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2837), 9, + STATE(2912), 9, sym__literal, sym_integer, sym_float, @@ -162149,44 +162670,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87295] = 18, - ACTIONS(1312), 1, + [87885] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, - anon_sym_this, - ACTIONS(3554), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(215), 1, + STATE(931), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, sym__lhs_expression, - STATE(884), 1, + STATE(1007), 1, sym_member_expression, - STATE(901), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2839), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -162196,44 +162717,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87360] = 18, - ACTIONS(1312), 1, + [87950] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(3554), 1, + ACTIONS(1568), 1, sym_identifier, - STATE(215), 1, + STATE(154), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, sym__lhs_expression, - STATE(884), 1, + STATE(548), 1, sym_member_expression, - STATE(907), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2839), 9, + STATE(2912), 9, sym__literal, sym_integer, sym_float, @@ -162243,44 +162764,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87425] = 18, - ACTIONS(1312), 1, + [88015] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, - anon_sym_this, - ACTIONS(3554), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(215), 1, - sym__lhs_expression, - STATE(884), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4769), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(896), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2550), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2839), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -162290,44 +162811,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87490] = 18, - ACTIONS(1312), 1, + [88080] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4454), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(4478), 1, + ACTIONS(1568), 1, sym_identifier, - STATE(1488), 1, + STATE(150), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, + STATE(205), 1, sym__lhs_expression, - STATE(2059), 1, + STATE(548), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2838), 9, + STATE(2912), 9, sym__literal, sym_integer, sym_float, @@ -162337,91 +162858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87555] = 18, - ACTIONS(1312), 1, + [88145] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2060), 1, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3552), 1, + ACTIONS(3476), 1, sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(895), 1, - aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(205), 1, sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2840), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [87620] = 18, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(3552), 1, - sym_identifier, - STATE(884), 1, - sym_member_expression, - STATE(912), 1, + STATE(851), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(882), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2840), 9, + STATE(2877), 9, sym__literal, sym_integer, sym_float, @@ -162431,44 +162905,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87685] = 18, - ACTIONS(1312), 1, + [88210] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(3552), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(884), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(913), 1, + STATE(1346), 1, aux_sym_member_expression_repeat1, - STATE(1040), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2840), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -162478,91 +162952,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87750] = 18, - ACTIONS(1312), 1, + [88275] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2038), 1, - anon_sym_this, - ACTIONS(3554), 1, + ACTIONS(4647), 1, sym_identifier, - STATE(215), 1, - sym__lhs_expression, - STATE(884), 1, - sym_member_expression, - STATE(900), 1, - aux_sym_member_expression_repeat1, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2839), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [87815] = 18, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4434), 1, + ACTIONS(4653), 1, anon_sym_this, - ACTIONS(4524), 1, - sym_identifier, - STATE(1564), 1, + STATE(1783), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, + STATE(2281), 1, sym__lhs_expression, - STATE(2059), 1, + STATE(2283), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2841), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -162572,44 +162999,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87880] = 18, - ACTIONS(1312), 1, + [88340] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4434), 1, - anon_sym_this, - ACTIONS(4524), 1, + ACTIONS(4647), 1, sym_identifier, - STATE(1567), 1, + ACTIONS(4653), 1, + anon_sym_this, + STATE(1793), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, + STATE(2281), 1, sym__lhs_expression, - STATE(2059), 1, + STATE(2283), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2841), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -162619,44 +163046,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [87945] = 18, - ACTIONS(1312), 1, + [88405] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4434), 1, - anon_sym_this, - ACTIONS(4524), 1, + ACTIONS(4647), 1, sym_identifier, - STATE(1568), 1, + ACTIONS(4653), 1, + anon_sym_this, + STATE(1807), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, + STATE(2281), 1, sym__lhs_expression, - STATE(2059), 1, + STATE(2283), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2841), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -162666,44 +163093,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88010] = 18, - ACTIONS(1312), 1, + [88470] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2060), 1, - anon_sym_this, - ACTIONS(3552), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(884), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4771), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(909), 1, - aux_sym_member_expression_repeat1, - STATE(1040), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2820), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2840), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -162713,44 +163140,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88075] = 18, - ACTIONS(1312), 1, + [88535] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4312), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(4332), 1, + ACTIONS(1568), 1, sym_identifier, - STATE(1363), 1, + STATE(152), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(205), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(548), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2842), 9, + STATE(2912), 9, sym__literal, sym_integer, sym_float, @@ -162760,44 +163187,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88140] = 18, - ACTIONS(1312), 1, + [88600] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4312), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(4332), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(1366), 1, + STATE(904), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2842), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -162807,44 +163234,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88205] = 18, - ACTIONS(1312), 1, + [88665] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4312), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(4332), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(1368), 1, + STATE(910), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2842), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -162854,44 +163281,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88270] = 18, - ACTIONS(1312), 1, + [88730] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4434), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(4524), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(1563), 1, + STATE(915), 1, aux_sym_member_expression_repeat1, - STATE(2058), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(2059), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2841), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -162901,91 +163328,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88335] = 18, - ACTIONS(1312), 1, + [88795] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, - sym_identifier, - ACTIONS(4398), 1, + ACTIONS(1590), 1, anon_sym_this, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2843), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [88400] = 18, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(4398), 1, - anon_sym_this, - STATE(1389), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(850), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, + STATE(882), 1, sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2843), 9, + STATE(2877), 9, sym__literal, sym_integer, sym_float, @@ -162995,44 +163375,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88465] = 18, - ACTIONS(1312), 1, + [88860] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4396), 1, + ACTIONS(4647), 1, sym_identifier, - ACTIONS(4398), 1, + ACTIONS(4653), 1, anon_sym_this, - STATE(1390), 1, + STATE(1767), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(2281), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2283), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2843), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -163042,44 +163422,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88530] = 18, - ACTIONS(1312), 1, + [88925] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4312), 1, + ACTIONS(1534), 1, anon_sym_this, - ACTIONS(4332), 1, + ACTIONS(3484), 1, sym_identifier, - STATE(1365), 1, + STATE(859), 1, aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, + STATE(948), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(949), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2842), 9, + STATE(2915), 9, sym__literal, sym_integer, sym_float, @@ -163089,44 +163469,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88595] = 18, - ACTIONS(1312), 1, + [88990] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1536), 1, + ACTIONS(1534), 1, anon_sym_this, - ACTIONS(3556), 1, + ACTIONS(3484), 1, sym_identifier, - STATE(897), 1, + STATE(860), 1, aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(948), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(949), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2915), 9, sym__literal, sym_integer, sym_float, @@ -163136,44 +163516,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88660] = 18, - ACTIONS(1312), 1, + [89055] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1536), 1, + ACTIONS(1534), 1, anon_sym_this, - ACTIONS(3556), 1, + ACTIONS(3484), 1, sym_identifier, - STATE(902), 1, + STATE(863), 1, aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(948), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(949), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2915), 9, sym__literal, sym_integer, sym_float, @@ -163183,44 +163563,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88725] = 18, - ACTIONS(1312), 1, + [89120] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1536), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3556), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(904), 1, + STATE(902), 1, aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -163230,91 +163610,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88790] = 18, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4396), 1, - sym_identifier, - ACTIONS(4398), 1, + [89185] = 18, + ACTIONS(41), 1, anon_sym_this, - STATE(1381), 1, - aux_sym_member_expression_repeat1, - STATE(2214), 1, - sym_member_expression, - STATE(2215), 1, - sym__lhs_expression, - STATE(2291), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2843), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [88855] = 18, - ACTIONS(1312), 1, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1536), 1, - anon_sym_this, - ACTIONS(3556), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(914), 1, + STATE(930), 1, aux_sym_member_expression_repeat1, - STATE(1021), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(1038), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2844), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -163324,44 +163657,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88920] = 18, - ACTIONS(41), 1, - anon_sym_this, - ACTIONS(1312), 1, + [89250] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3628), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(935), 1, - aux_sym_member_expression_repeat1, - STATE(1005), 1, + ACTIONS(2153), 1, + anon_sym_this, + STATE(205), 1, sym__lhs_expression, - STATE(1007), 1, + STATE(844), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2910), 9, + STATE(2916), 9, sym__literal, sym_integer, sym_float, @@ -163371,44 +163704,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [88985] = 18, - ACTIONS(1312), 1, + [89315] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3918), 1, + ACTIONS(1516), 1, sym_identifier, - ACTIONS(3920), 1, + ACTIONS(2153), 1, anon_sym_this, - STATE(215), 1, + STATE(205), 1, sym__lhs_expression, - STATE(1003), 1, - sym_member_expression, - STATE(1113), 1, + STATE(846), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(882), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3007), 9, + STATE(2916), 9, sym__literal, sym_integer, sym_float, @@ -163418,44 +163751,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89050] = 18, - ACTIONS(41), 1, + [89380] = 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(1516), 1, + sym_identifier, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(1312), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(847), 1, + aux_sym_member_expression_repeat1, + STATE(882), 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(2916), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [89445] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3628), 1, + ACTIONS(1534), 1, + anon_sym_this, + ACTIONS(3484), 1, sym_identifier, - STATE(941), 1, + STATE(864), 1, aux_sym_member_expression_repeat1, - STATE(1005), 1, + STATE(948), 1, sym__lhs_expression, - STATE(1007), 1, + STATE(949), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2910), 9, + STATE(2915), 9, sym__literal, sym_integer, sym_float, @@ -163465,44 +163845,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89115] = 18, - ACTIONS(1312), 1, + [89510] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(1500), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(4738), 1, - anon_sym_new, - STATE(1003), 1, + STATE(133), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2629), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2917), 9, sym__literal, sym_integer, sym_float, @@ -163512,44 +163892,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89180] = 18, - ACTIONS(1312), 1, + [89575] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3918), 1, - sym_identifier, - ACTIONS(3920), 1, + ACTIONS(1590), 1, anon_sym_this, - STATE(215), 1, + ACTIONS(3476), 1, + sym_identifier, + STATE(205), 1, sym__lhs_expression, - STATE(1003), 1, - sym_member_expression, - STATE(1097), 1, + STATE(854), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(882), 1, + sym_member_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3007), 9, + STATE(2877), 9, sym__literal, sym_integer, sym_float, @@ -163559,44 +163939,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89245] = 18, - ACTIONS(1312), 1, + [89640] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(1500), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(4740), 1, - anon_sym_new, - STATE(1003), 1, + STATE(124), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2576), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2917), 9, sym__literal, sym_integer, sym_float, @@ -163606,44 +163986,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89310] = 18, - ACTIONS(1312), 1, + [89705] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3918), 1, + ACTIONS(4563), 1, sym_identifier, - ACTIONS(3920), 1, + ACTIONS(4565), 1, anon_sym_this, - STATE(215), 1, - sym__lhs_expression, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(1107), 1, + STATE(1602), 1, aux_sym_member_expression_repeat1, - STATE(2291), 1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3007), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -163653,79 +164033,185 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89375] = 6, - ACTIONS(4742), 1, - anon_sym_DOT, - ACTIONS(4744), 1, - anon_sym_QMARK, + [89770] = 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(1500), 1, + sym_identifier, + ACTIONS(1502), 1, + anon_sym_this, + STATE(126), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, + sym_member_expression, + STATE(357), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1888), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1782), 11, - sym__closing_brace_marker, - anon_sym_LPAREN, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2917), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [89835] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1319), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - 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(1784), 11, - anon_sym_case, - anon_sym_default, + ACTIONS(1516), 1, + sym_identifier, + ACTIONS(2153), 1, anon_sym_this, - anon_sym_catch, - anon_sym_else, + STATE(205), 1, + sym__lhs_expression, + STATE(843), 1, + aux_sym_member_expression_repeat1, + STATE(882), 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(2916), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [89900] = 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(1590), 1, + anon_sym_this, + ACTIONS(3476), 1, + sym_identifier, + STATE(205), 1, + sym__lhs_expression, + STATE(852), 1, + aux_sym_member_expression_repeat1, + STATE(882), 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, - sym_identifier, - [89416] = 18, - ACTIONS(1312), 1, + STATE(2877), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [89965] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1574), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(3455), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(215), 1, - sym__lhs_expression, - STATE(849), 1, + STATE(892), 1, aux_sym_member_expression_repeat1, - STATE(884), 1, + STATE(990), 1, sym_member_expression, - STATE(2291), 1, + STATE(993), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3018), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -163735,44 +164221,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89481] = 18, - ACTIONS(1312), 1, + [90030] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(4746), 1, - anon_sym_new, - STATE(1003), 1, + ACTIONS(3561), 1, + sym_identifier, + STATE(895), 1, + aux_sym_member_expression_repeat1, + STATE(990), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2592), 1, + STATE(993), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -163782,44 +164268,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89546] = 18, - ACTIONS(1312), 1, + [90095] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(4748), 1, - anon_sym_new, - STATE(1003), 1, + ACTIONS(3561), 1, + sym_identifier, + STATE(891), 1, + aux_sym_member_expression_repeat1, + STATE(990), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2602), 1, + STATE(993), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -163829,44 +164315,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89611] = 18, - ACTIONS(1312), 1, + [90160] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(1500), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(4750), 1, - anon_sym_new, - STATE(1003), 1, + STATE(127), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2608), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2917), 9, sym__literal, sym_integer, sym_float, @@ -163876,44 +164362,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89676] = 18, - ACTIONS(1312), 1, + [90225] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(3455), 1, + ACTIONS(3609), 1, sym_identifier, - STATE(215), 1, - sym__lhs_expression, - STATE(852), 1, + ACTIONS(3611), 1, + anon_sym_this, + STATE(921), 1, aux_sym_member_expression_repeat1, - STATE(884), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3018), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -163923,44 +164409,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89741] = 18, - ACTIONS(1312), 1, + [90290] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1574), 1, - anon_sym_this, - ACTIONS(3455), 1, + ACTIONS(3609), 1, sym_identifier, - STATE(215), 1, - sym__lhs_expression, - STATE(851), 1, + ACTIONS(3611), 1, + anon_sym_this, + STATE(923), 1, aux_sym_member_expression_repeat1, - STATE(884), 1, + STATE(1100), 1, sym_member_expression, - STATE(2291), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3018), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -163970,44 +164456,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89806] = 18, - ACTIONS(1312), 1, + [90355] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4438), 1, - anon_sym_this, - ACTIONS(4492), 1, + ACTIONS(3609), 1, sym_identifier, - STATE(1529), 1, + ACTIONS(3611), 1, + anon_sym_this, + STATE(924), 1, aux_sym_member_expression_repeat1, - STATE(2260), 1, + STATE(1100), 1, sym_member_expression, - STATE(2267), 1, + STATE(1119), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2833), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -164017,42 +164503,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89871] = 17, - ACTIONS(1312), 1, + [90420] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(2585), 1, anon_sym_this, - STATE(1003), 1, + ACTIONS(3561), 1, + sym_identifier, + STATE(894), 1, + aux_sym_member_expression_repeat1, + STATE(990), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2851), 1, + STATE(993), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -164062,42 +164550,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89933] = 17, - ACTIONS(1312), 1, + [90485] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3918), 1, + ACTIONS(4563), 1, sym_identifier, - ACTIONS(3920), 1, + ACTIONS(4565), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(3293), 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3007), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -164107,42 +164597,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [89995] = 17, - ACTIONS(1312), 1, + [90550] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4563), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4565), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2883), 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -164152,42 +164644,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90057] = 17, - ACTIONS(1312), 1, + [90615] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4497), 1, anon_sym_this, - STATE(1003), 1, + ACTIONS(4577), 1, + sym_identifier, + STATE(1618), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2346), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -164197,42 +164691,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90119] = 17, - ACTIONS(1312), 1, + [90680] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(1003), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2407), 1, + STATE(1012), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -164242,42 +164736,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90181] = 17, - ACTIONS(1312), 1, + [90742] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3918), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(3920), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(1003), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(3142), 1, + STATE(1066), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3007), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -164287,42 +164781,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90243] = 17, - ACTIONS(1312), 1, + [90804] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1007), 1, + STATE(1010), 1, sym_member_expression, - STATE(1037), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2419), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164332,42 +164826,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90305] = 17, - ACTIONS(1312), 1, + [90866] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4674), 1, - anon_sym_this, - ACTIONS(4752), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(2291), 1, - sym_string, - STATE(2474), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2522), 1, + STATE(2296), 1, + sym_string, + STATE(3094), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2927), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164377,42 +164871,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90367] = 17, - ACTIONS(1312), 1, + [90928] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2355), 1, + STATE(2352), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164422,42 +164916,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90429] = 17, - ACTIONS(1312), 1, + [90990] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1007), 1, + STATE(1010), 1, sym_member_expression, - STATE(1070), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2356), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164467,42 +164961,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90491] = 17, - ACTIONS(1312), 1, + [91052] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3929), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2418), 1, + STATE(3277), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -164512,42 +165006,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90553] = 17, - ACTIONS(1312), 1, + [91114] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2361), 1, + STATE(2343), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164557,42 +165051,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90615] = 17, - ACTIONS(1312), 1, + [91176] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1007), 1, + STATE(1010), 1, sym_member_expression, - STATE(1013), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2862), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164602,42 +165096,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90677] = 17, - ACTIONS(1312), 1, + [91238] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1007), 1, + STATE(1010), 1, sym_member_expression, - STATE(1061), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2845), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164647,42 +165141,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90739] = 17, - ACTIONS(1312), 1, + [91300] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4653), 1, anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(2291), 1, + ACTIONS(4773), 1, + sym_identifier, + STATE(2296), 1, sym_string, - STATE(2325), 1, + STATE(2463), 1, sym__lhs_expression, + STATE(2521), 1, + sym_member_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -164692,42 +165186,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90801] = 17, - ACTIONS(1312), 1, + [91362] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2863), 1, + STATE(2325), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164737,42 +165231,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90863] = 17, - ACTIONS(1312), 1, + [91424] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2347), 1, + STATE(2366), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -164782,132 +165276,106 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [90925] = 17, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 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, - ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + 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, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, - anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2980), 1, - sym__lhs_expression, + [91520] = 5, + ACTIONS(4775), 1, + anon_sym_EQ, + STATE(371), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(2860), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [90987] = 17, - ACTIONS(1312), 1, + ACTIONS(4753), 11, + sym__closing_brace_marker, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(1324), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, + anon_sym_QMARK, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, aux_sym_float_token2, - ACTIONS(1344), 1, aux_sym_string_token1, - ACTIONS(1346), 1, aux_sym_string_token3, - ACTIONS(4306), 1, - sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4751), 12, + anon_sym_case, + anon_sym_default, anon_sym_this, - STATE(1003), 1, - sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2406), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, + 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, - STATE(2860), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [91049] = 17, - ACTIONS(1312), 1, + sym_identifier, + [91558] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3607), 1, anon_sym_this, STATE(1007), 1, sym_member_expression, - STATE(1031), 1, + STATE(1084), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -164917,42 +165385,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [91111] = 17, - ACTIONS(1312), 1, + [91620] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3594), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3607), 1, anon_sym_this, STATE(1007), 1, sym_member_expression, - STATE(1036), 1, + STATE(1071), 1, sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2845), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -164962,42 +165430,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [91173] = 17, - ACTIONS(1312), 1, + [91682] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2412), 1, + STATE(2937), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -165007,44 +165475,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [91235] = 18, - ACTIONS(1312), 1, + [91744] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4754), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4756), 1, - sym__closing_brace_marker, - STATE(2431), 1, - sym__closing_brace, - STATE(2483), 1, - sym_pair, - STATE(2821), 1, - sym_structure_type_pair, - STATE(3158), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, sym_string, + STATE(2943), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3345), 8, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -165053,137 +165519,43 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [91299] = 5, - ACTIONS(4758), 1, - anon_sym_EQ, - STATE(386), 1, - sym__assignmentOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4728), 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(4726), 12, - anon_sym_case, - anon_sym_default, - anon_sym_this, - 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, - [91337] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1784), 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(1782), 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_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, - [91371] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1892), 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(1890), 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_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, - [91405] = 17, - ACTIONS(1312), 1, + sym_pair, + [91806] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3918), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3920), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2278), 1, - sym__lhs_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, + STATE(2428), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3007), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -165193,74 +165565,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [91467] = 4, - ACTIONS(1888), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1784), 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(1782), 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, - [91503] = 17, - ACTIONS(1312), 1, + [91868] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, + STATE(2296), 1, sym_string, - STATE(2861), 1, + STATE(2946), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -165270,42 +165610,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [91565] = 17, - ACTIONS(1312), 1, + [91930] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(1003), 1, + STATE(1007), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2865), 1, + STATE(1052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -165315,42 +165655,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [91627] = 17, - ACTIONS(1312), 1, + [91992] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4306), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(3929), 1, anon_sym_this, - STATE(1003), 1, + STATE(1010), 1, sym_member_expression, - STATE(2291), 1, - sym_string, - STATE(2324), 1, + STATE(2282), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2860), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -165360,86 +165700,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [91689] = 17, - ACTIONS(552), 1, - sym__closing_brace_marker, - ACTIONS(1312), 1, + [92054] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4760), 1, + ACTIONS(4777), 1, sym_identifier, - STATE(1518), 1, - sym__closing_brace, - STATE(2512), 1, - sym_pair, - STATE(3158), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1342), 2, - anon_sym_true, - anon_sym_false, - STATE(3345), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [91750] = 17, - ACTIONS(343), 1, + ACTIONS(4779), 1, sym__closing_brace_marker, - ACTIONS(1312), 1, - anon_sym_LBRACE, - ACTIONS(1324), 1, - anon_sym_LBRACK, - ACTIONS(1332), 1, - anon_sym_null, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(1338), 1, - aux_sym_float_token1, - ACTIONS(1340), 1, - aux_sym_float_token2, - ACTIONS(1344), 1, - aux_sym_string_token1, - ACTIONS(1346), 1, - aux_sym_string_token3, - ACTIONS(4760), 1, - sym_identifier, - STATE(1975), 1, + STATE(2430), 1, sym__closing_brace, - STATE(2464), 1, + STATE(2469), 1, sym_pair, - STATE(3158), 1, + STATE(2712), 1, + sym_structure_type_pair, + STATE(3168), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3345), 8, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -165448,42 +165746,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [91811] = 17, - ACTIONS(337), 1, - sym__closing_brace_marker, - ACTIONS(1312), 1, + [92118] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4760), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(387), 1, - sym__closing_brace, - STATE(2496), 1, - sym_pair, - STATE(3158), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, sym_string, + STATE(2412), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3345), 8, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -165492,42 +165790,43 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [91872] = 17, - ACTIONS(1312), 1, + sym_pair, + [92180] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4756), 1, - sym__closing_brace_marker, - ACTIONS(4760), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1946), 1, - sym__closing_brace, - STATE(2453), 1, - sym_pair, - STATE(3158), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, sym_string, + STATE(2405), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3345), 8, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -165536,73 +165835,43 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [91933] = 4, - ACTIONS(4734), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1772), 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(1775), 12, - anon_sym_case, - anon_sym_default, - anon_sym_this, - 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, - [91968] = 17, - ACTIONS(341), 1, - sym__closing_brace_marker, - ACTIONS(1312), 1, + sym_pair, + [92242] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4760), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(205), 1, - sym__closing_brace, - STATE(2483), 1, - sym_pair, - STATE(3158), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, sym_string, + STATE(3131), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3345), 8, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -165611,42 +165880,43 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92029] = 17, - ACTIONS(1312), 1, + sym_pair, + [92304] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4760), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(4762), 1, - sym__closing_brace_marker, - STATE(1946), 1, - sym__closing_brace, - STATE(2514), 1, - sym_pair, - STATE(3158), 1, + 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(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3345), 8, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -165655,99 +165925,106 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92090] = 5, - ACTIONS(4764), 1, - anon_sym_EQ, - STATE(204), 1, - sym__assignmentOperator, + sym_pair, + [92366] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4728), 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(4726), 11, + ACTIONS(1755), 11, + anon_sym_case, + anon_sym_default, 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, - [92126] = 6, - ACTIONS(1888), 1, - anon_sym_COLON, - ACTIONS(4766), 1, + ACTIONS(1753), 14, + sym__closing_brace_marker, anon_sym_DOT, - ACTIONS(4768), 1, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + 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, + [92400] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 8, - anon_sym_in, + 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(1782), 12, + ACTIONS(1753), 13, + sym__closing_brace_marker, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, 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, - [92164] = 14, - ACTIONS(1312), 1, + [92436] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4770), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(2658), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, sym_string, + STATE(2350), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3021), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -165757,38 +166034,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [92217] = 15, - ACTIONS(1312), 1, + [92498] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4772), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(3180), 1, - sym_string, - STATE(3246), 1, + ACTIONS(4783), 1, + sym__closing_brace_marker, + STATE(1749), 1, + sym__closing_brace, + STATE(2476), 1, sym_pair, + STATE(3168), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -165797,36 +166078,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92272] = 14, - ACTIONS(1312), 1, + [92559] = 17, + ACTIONS(209), 1, + sym__closing_brace_marker, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4770), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(2658), 1, + STATE(372), 1, + sym__closing_brace, + STATE(2514), 1, + sym_pair, + STATE(3168), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2928), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -165835,37 +166122,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [92325] = 14, - ACTIONS(1312), 1, + [92620] = 17, + ACTIONS(207), 1, + sym__closing_brace_marker, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4770), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(2658), 1, + STATE(1569), 1, + sym__closing_brace, + STATE(2519), 1, + sym_pair, + STATE(3168), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2900), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -165874,39 +166166,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [92378] = 15, - ACTIONS(1312), 1, + [92681] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4774), 1, + ACTIONS(4779), 1, + sym__closing_brace_marker, + ACTIONS(4781), 1, sym_identifier, - STATE(3180), 1, - sym_string, - STATE(3272), 1, + STATE(1749), 1, + sym__closing_brace, + STATE(2496), 1, sym_pair, + STATE(3168), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -165915,38 +166210,73 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92433] = 15, - ACTIONS(1312), 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, - ACTIONS(1324), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1332), 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, anon_sym_null, - ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1336), 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(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4770), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(2658), 1, - sym_string, - STATE(2976), 1, + STATE(1984), 1, + sym__closing_brace, + STATE(2508), 1, sym_pair, + STATE(3168), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3507), 8, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -165955,38 +166285,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92488] = 15, - ACTIONS(1312), 1, + [92838] = 17, + ACTIONS(193), 1, + sym__closing_brace_marker, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4776), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(3180), 1, - sym_string, - STATE(3286), 1, + STATE(196), 1, + sym__closing_brace, + STATE(2469), 1, sym_pair, + STATE(3168), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -165995,38 +166329,101 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92543] = 15, - ACTIONS(1312), 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, + aux_sym_integer_token1, + aux_sym_float_token1, + 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, + aux_sym_string_token1, + aux_sym_string_token3, + [92937] = 5, + ACTIONS(4789), 1, + anon_sym_EQ, + STATE(176), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4753), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACE, - ACTIONS(1324), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1332), 1, + 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, - ACTIONS(1334), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [92973] = 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(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4778), 1, + ACTIONS(4791), 1, sym_identifier, - STATE(3141), 1, - sym_pair, - STATE(3180), 1, + STATE(3171), 1, sym_string, + STATE(3282), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166035,38 +166432,36 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92598] = 15, - ACTIONS(1312), 1, + [93028] = 14, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4780), 1, + ACTIONS(4793), 1, sym_identifier, - STATE(3180), 1, + STATE(2683), 1, sym_string, - STATE(3186), 1, - sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(2859), 9, sym__literal, sym_integer, sym_float, @@ -166075,38 +166470,39 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92653] = 15, - ACTIONS(1312), 1, + sym_pair, + [93081] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4782), 1, + ACTIONS(4795), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3199), 1, + STATE(3227), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166115,38 +166511,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92708] = 15, - ACTIONS(1312), 1, + [93136] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4784), 1, + ACTIONS(4797), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3211), 1, + STATE(3229), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166155,38 +166551,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92763] = 15, - ACTIONS(1312), 1, + [93191] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4786), 1, + ACTIONS(4799), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3213), 1, + STATE(3231), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166195,38 +166591,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92818] = 15, - ACTIONS(1312), 1, + [93246] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4788), 1, + ACTIONS(4801), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3215), 1, + STATE(3232), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166235,38 +166631,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92873] = 15, - ACTIONS(1312), 1, + [93301] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4790), 1, + ACTIONS(4803), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3217), 1, + STATE(3234), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166275,38 +166671,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92928] = 15, - ACTIONS(1312), 1, + [93356] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4792), 1, + ACTIONS(4805), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3219), 1, + STATE(3235), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166315,38 +166711,76 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [92983] = 15, - ACTIONS(1312), 1, + [93411] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4794), 1, + ACTIONS(4807), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3222), 1, + STATE(3237), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + 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, + [93466] = 14, + 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(4793), 1, + sym_identifier, + STATE(2683), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -166355,38 +166789,39 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [93038] = 15, - ACTIONS(1312), 1, + sym_pair, + [93519] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4796), 1, + ACTIONS(4793), 1, sym_identifier, - STATE(3180), 1, + STATE(2683), 1, sym_string, - STATE(3223), 1, + STATE(3104), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3515), 8, sym__literal, sym_integer, sym_float, @@ -166395,38 +166830,77 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [93093] = 15, - ACTIONS(1312), 1, + [93574] = 14, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4798), 1, + ACTIONS(4793), 1, sym_identifier, - STATE(3180), 1, + STATE(2683), 1, sym_string, - STATE(3225), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2984), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [93627] = 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(4809), 1, + sym_identifier, + STATE(3150), 1, sym_pair, + STATE(3171), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166435,38 +166909,117 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [93148] = 15, - ACTIONS(1312), 1, + [93682] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4800), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(3180), 1, + STATE(2966), 1, + sym_pair, + STATE(3168), 1, sym_string, - STATE(3226), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3418), 8, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + [93737] = 14, + 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(4793), 1, + sym_identifier, + STATE(2683), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3031), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [93790] = 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(4811), 1, + sym_identifier, + STATE(3171), 1, + sym_string, + STATE(3188), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166475,38 +167028,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [93203] = 15, - ACTIONS(1312), 1, + [93845] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4802), 1, + ACTIONS(4813), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3227), 1, + STATE(3240), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166515,38 +167068,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [93258] = 15, - ACTIONS(1312), 1, + [93900] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4804), 1, + ACTIONS(4815), 1, sym_identifier, - STATE(3180), 1, + STATE(3171), 1, sym_string, - STATE(3228), 1, + STATE(3205), 1, sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166555,38 +167108,78 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [93313] = 15, - ACTIONS(1312), 1, + [93955] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4806), 1, + ACTIONS(4817), 1, sym_identifier, - STATE(3140), 1, + STATE(3171), 1, + sym_string, + STATE(3260), 1, sym_pair, - STATE(3180), 1, + 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, + [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, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3433), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166595,13 +167188,13 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [93368] = 4, - ACTIONS(4808), 1, + [94065] = 4, + ACTIONS(4821), 1, anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1772), 10, + ACTIONS(1987), 10, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACE, @@ -166612,7 +167205,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1775), 11, + ACTIONS(1990), 11, anon_sym_this, anon_sym_catch, anon_sym_else, @@ -166624,38 +167217,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [93401] = 15, - ACTIONS(1312), 1, + [94098] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4760), 1, + ACTIONS(4823), 1, sym_identifier, - STATE(3005), 1, + STATE(3171), 1, + sym_string, + STATE(3219), 1, sym_pair, - STATE(3158), 1, + 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, + [94153] = 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(4825), 1, + sym_identifier, + STATE(3171), 1, sym_string, + STATE(3222), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3345), 8, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166664,36 +167297,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - [93456] = 14, - ACTIONS(1312), 1, + [94208] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(1324), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1332), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(1338), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(1340), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(1344), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(1346), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(4770), 1, + ACTIONS(4827), 1, sym_identifier, - STATE(2658), 1, + STATE(3171), 1, sym_string, + STATE(3294), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(3053), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -166702,18 +167337,57 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, + [94263] = 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(4829), 1, + sym_identifier, + STATE(3171), 1, + sym_string, + STATE(3224), 1, sym_pair, - [93509] = 6, - ACTIONS(1888), 1, + 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, + [94318] = 6, + ACTIONS(1757), 1, anon_sym_COLON, - ACTIONS(4810), 1, + ACTIONS(4831), 1, anon_sym_DOT, - ACTIONS(4812), 1, + ACTIONS(4833), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 7, + ACTIONS(1755), 7, anon_sym_this, anon_sym_null, aux_sym_integer_token1, @@ -166721,7 +167395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 11, + ACTIONS(1753), 11, sym__closing_brace_marker, anon_sym_LPAREN, anon_sym_LBRACE, @@ -166733,51 +167407,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [93545] = 6, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_QMARK, + [94354] = 5, + ACTIONS(4835), 1, + anon_sym_EQ, + STATE(371), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1888), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1784), 7, + ACTIONS(4753), 7, + sym__closing_brace_marker, + anon_sym_LBRACE, + anon_sym_LBRACK, + 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, anon_sym_null, aux_sym_integer_token1, aux_sym_float_token1, anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 10, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_LBRACE, - 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, - [93581] = 7, + [94388] = 7, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(1782), 1, + ACTIONS(1753), 1, sym_escape_sequence, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4818), 1, + ACTIONS(4837), 1, anon_sym_DOT, - ACTIONS(4822), 1, + ACTIONS(4841), 1, anon_sym_QMARK, - ACTIONS(4820), 2, + ACTIONS(4839), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1784), 16, + ACTIONS(1755), 16, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_this, @@ -166794,44 +167467,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR, sym_identifier, - [93619] = 5, - ACTIONS(4824), 1, - anon_sym_EQ, - STATE(386), 1, - sym__assignmentOperator, + [94426] = 6, + ACTIONS(4843), 1, + anon_sym_DOT, + ACTIONS(4845), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4728), 7, - sym__closing_brace_marker, - anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(4726), 12, - anon_sym_case, - anon_sym_default, + ACTIONS(1757), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1755), 7, anon_sym_this, - 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, - [93653] = 5, - ACTIONS(4826), 1, + ACTIONS(1753), 10, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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(1072), 1, + STATE(1013), 1, sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4726), 8, + ACTIONS(4751), 8, anon_sym_this, anon_sym_new, anon_sym_null, @@ -166840,7 +167514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(4728), 10, + ACTIONS(4753), 10, sym__lookback_semicolon, anon_sym_DOT, anon_sym_LBRACE, @@ -166851,11 +167525,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [93686] = 3, + [94495] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 7, + ACTIONS(1755), 7, anon_sym_this, anon_sym_null, aux_sym_integer_token1, @@ -166863,7 +167537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 13, + ACTIONS(1753), 13, sym__lookback_semicolon, anon_sym_DOT, anon_sym_LPAREN, @@ -166877,59 +167551,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [93715] = 5, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(4828), 1, - anon_sym_DOT, + [94524] = 11, + ACTIONS(43), 1, + anon_sym_AT, + ACTIONS(45), 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, - ACTIONS(1784), 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(1782), 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, - aux_sym_string_token1, - aux_sym_string_token3, - [93748] = 11, + 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(4832), 1, + ACTIONS(4863), 1, anon_sym_final, - ACTIONS(4834), 1, + ACTIONS(4865), 1, anon_sym_class, - ACTIONS(4836), 1, + ACTIONS(4867), 1, anon_sym_typedef, - ACTIONS(4838), 1, + ACTIONS(4869), 1, anon_sym_function, - ACTIONS(4840), 1, + ACTIONS(4871), 1, anon_sym_var, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2272), 2, + STATE(2277), 2, sym_metadata, aux_sym_class_declaration_repeat1, - STATE(2282), 2, + STATE(2288), 2, sym__modifier, aux_sym_class_declaration_repeat2, - ACTIONS(4830), 9, + ACTIONS(4861), 9, anon_sym_macro, anon_sym_abstract, anon_sym_static, @@ -166939,69 +167619,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_overload, anon_sym_override, - [93793] = 5, - ACTIONS(4844), 1, - anon_sym_LPAREN, - STATE(2263), 1, - aux_sym_variable_declaration_repeat1, + [94614] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4847), 6, + ACTIONS(1875), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + 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, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(4842), 12, + [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_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, - [93826] = 5, - ACTIONS(4849), 1, - anon_sym_EQ, - STATE(1033), 1, - sym__assignmentOperator, + 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(4726), 9, - anon_sym_in, + ACTIONS(1755), 8, anon_sym_this, - anon_sym_new, + anon_sym_EQ, anon_sym_null, aux_sym_integer_token1, aux_sym_float_token1, anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(4728), 9, - anon_sym_DOT, + ACTIONS(1753), 10, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_COLON, + 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, - [93859] = 4, - ACTIONS(4808), 1, + [94707] = 4, + ACTIONS(4821), 1, anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1772), 7, + ACTIONS(1987), 7, sym__closing_brace_marker, anon_sym_LBRACE, anon_sym_LBRACK, @@ -167009,7 +167714,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1775), 12, + ACTIONS(1990), 12, anon_sym_case, anon_sym_default, anon_sym_this, @@ -167022,104 +167727,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [93890] = 4, - ACTIONS(1888), 1, - anon_sym_COLON, + [94738] = 5, + ACTIONS(4875), 1, + anon_sym_EQ, + STATE(1042), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 7, + 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, sym_identifier, - ACTIONS(1782), 12, - sym__lookback_semicolon, + ACTIONS(4753), 9, 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, - [93921] = 3, + [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(1892), 7, + ACTIONS(4882), 6, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(4877), 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, - ACTIONS(1890), 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, - [93950] = 11, - ACTIONS(43), 1, - anon_sym_AT, - ACTIONS(45), 1, - anon_sym_AT_COLON, - ACTIONS(4853), 1, - anon_sym_final, - ACTIONS(4855), 1, - anon_sym_class, - ACTIONS(4857), 1, - anon_sym_typedef, - ACTIONS(4859), 1, - anon_sym_function, - ACTIONS(4861), 1, - anon_sym_var, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2272), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - STATE(2283), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4851), 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, - [93995] = 6, - ACTIONS(1888), 1, + [94804] = 6, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(4863), 1, + ACTIONS(4884), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(4886), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 7, + ACTIONS(1755), 7, anon_sym_this, anon_sym_null, aux_sym_integer_token1, @@ -167127,7 +167801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 9, + ACTIONS(1753), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_COLON, @@ -167137,13 +167811,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [94029] = 4, - ACTIONS(4734), 1, + [94838] = 4, + ACTIONS(4749), 1, anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1775), 8, + ACTIONS(1990), 8, anon_sym_this, anon_sym_new, anon_sym_null, @@ -167152,7 +167826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1772), 10, + ACTIONS(1987), 10, sym__lookback_semicolon, anon_sym_DOT, anon_sym_LBRACE, @@ -167163,11 +167837,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [94059] = 3, + [94868] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1784), 7, + ACTIONS(1755), 7, anon_sym_this, anon_sym_null, aux_sym_integer_token1, @@ -167175,7 +167849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1782), 12, + ACTIONS(1753), 12, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACE, @@ -167188,18 +167862,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [94087] = 5, - ACTIONS(4867), 1, + [94896] = 5, + ACTIONS(4888), 1, anon_sym_AT, - ACTIONS(4870), 1, + ACTIONS(4891), 1, anon_sym_AT_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2272), 2, + STATE(2277), 2, sym_metadata, aux_sym_class_declaration_repeat1, - ACTIONS(4873), 14, + ACTIONS(4894), 14, anon_sym_macro, anon_sym_abstract, anon_sym_static, @@ -167214,26 +167888,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [94118] = 9, - ACTIONS(4832), 1, - anon_sym_final, - ACTIONS(4834), 1, - anon_sym_class, - ACTIONS(4836), 1, - anon_sym_typedef, - ACTIONS(4838), 1, - anon_sym_function, - ACTIONS(4840), 1, - anon_sym_var, - ACTIONS(4877), 1, - anon_sym_interface, + [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, + 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, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [94957] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, STATE(2279), 2, sym__modifier, aux_sym_class_declaration_repeat2, - ACTIONS(4875), 9, + 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, @@ -167243,18 +167936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_overload, anon_sym_override, - [94156] = 9, - ACTIONS(4853), 1, anon_sym_final, - ACTIONS(4855), 1, + [94985] = 9, + ACTIONS(4863), 1, + anon_sym_final, + ACTIONS(4865), 1, anon_sym_class, - ACTIONS(4857), 1, + ACTIONS(4867), 1, anon_sym_typedef, - ACTIONS(4859), 1, + ACTIONS(4869), 1, anon_sym_function, - ACTIONS(4861), 1, + ACTIONS(4871), 1, anon_sym_var, - ACTIONS(4879), 1, + ACTIONS(4905), 1, anon_sym_interface, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -167262,7 +167956,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2279), 2, sym__modifier, aux_sym_class_declaration_repeat2, - ACTIONS(4875), 9, + ACTIONS(4903), 9, anon_sym_macro, anon_sym_abstract, anon_sym_static, @@ -167272,63 +167966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_overload, anon_sym_override, - [94194] = 5, - ACTIONS(4881), 1, - anon_sym_EQ, - STATE(1072), 1, - sym__assignmentOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4728), 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(4726), 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, - [94224] = 4, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(1890), 1, - sym_escape_sequence, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(1892), 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, - [94252] = 4, + [95023] = 4, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(1782), 1, + ACTIONS(1873), 1, sym_escape_sequence, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(1784), 16, + ACTIONS(1875), 16, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_this, @@ -167345,15 +167990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR, sym_identifier, - [94280] = 4, - ACTIONS(4883), 1, + [95051] = 4, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4885), 1, + ACTIONS(4909), 1, anon_sym_AT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4887), 15, + ACTIONS(4911), 15, anon_sym_AT_COLON, anon_sym_macro, anon_sym_abstract, @@ -167369,20 +168014,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [94308] = 4, - ACTIONS(3), 2, + [95079] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(1753), 1, + sym_escape_sequence, + ACTIONS(4659), 1, sym_comment, - STATE(2279), 2, - sym__modifier, - aux_sym_class_declaration_repeat2, - ACTIONS(4892), 5, + ACTIONS(1755), 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, + [95107] = 9, + ACTIONS(4851), 1, + anon_sym_final, + ACTIONS(4853), 1, anon_sym_class, - anon_sym_interface, + ACTIONS(4855), 1, anon_sym_typedef, + ACTIONS(4857), 1, anon_sym_function, + ACTIONS(4859), 1, anon_sym_var, - ACTIONS(4889), 10, + 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, @@ -167392,14 +168067,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_overload, anon_sym_override, - anon_sym_final, - [94336] = 3, - ACTIONS(4894), 1, + [95145] = 4, + ACTIONS(4821), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + sym_identifier, + [95172] = 3, + ACTIONS(4915), 1, anon_sym_AT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4896), 15, + ACTIONS(4917), 15, anon_sym_AT_COLON, anon_sym_macro, anon_sym_abstract, @@ -167415,13 +168112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [94361] = 3, - ACTIONS(4898), 1, + [95197] = 3, + ACTIONS(4919), 1, anon_sym_AT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4900), 15, + ACTIONS(4921), 15, anon_sym_AT_COLON, anon_sym_macro, anon_sym_abstract, @@ -167437,16 +168134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typedef, anon_sym_function, anon_sym_var, - [94386] = 8, - ACTIONS(4902), 1, + [95222] = 8, + ACTIONS(4923), 1, anon_sym_final, - ACTIONS(4904), 1, + ACTIONS(4925), 1, anon_sym_class, - ACTIONS(4906), 1, + ACTIONS(4927), 1, anon_sym_typedef, - ACTIONS(4908), 1, + ACTIONS(4929), 1, anon_sym_function, - ACTIONS(4910), 1, + ACTIONS(4931), 1, anon_sym_var, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -167454,7 +168151,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2279), 2, sym__modifier, aux_sym_class_declaration_repeat2, - ACTIONS(4875), 9, + ACTIONS(4903), 9, anon_sym_macro, anon_sym_abstract, anon_sym_static, @@ -167464,16 +168161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_overload, anon_sym_override, - [94421] = 8, - ACTIONS(4912), 1, + [95257] = 8, + ACTIONS(4933), 1, anon_sym_final, - ACTIONS(4914), 1, + ACTIONS(4935), 1, anon_sym_class, - ACTIONS(4916), 1, + ACTIONS(4937), 1, anon_sym_typedef, - ACTIONS(4918), 1, + ACTIONS(4939), 1, anon_sym_function, - ACTIONS(4920), 1, + ACTIONS(4941), 1, anon_sym_var, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -167481,7 +168178,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2279), 2, sym__modifier, aux_sym_class_declaration_repeat2, - ACTIONS(4875), 9, + ACTIONS(4903), 9, anon_sym_macro, anon_sym_abstract, anon_sym_static, @@ -167491,37 +168188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_overload, anon_sym_override, - [94456] = 4, - ACTIONS(4808), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1772), 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(1775), 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, - [94483] = 3, + [95292] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(1778), 12, + ACTIONS(1785), 12, anon_sym_DOT, anon_sym_in, anon_sym_RPAREN, @@ -167534,77 +168208,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_while, anon_sym_EQ_GT, - [94506] = 6, - ACTIONS(4922), 1, + [95315] = 6, + ACTIONS(4943), 1, anon_sym_DOT, - ACTIONS(4926), 1, + ACTIONS(4947), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(4924), 2, + ACTIONS(4945), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1778), 6, + ACTIONS(1785), 6, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_COMMA, anon_sym_catch, anon_sym_else, - [94533] = 6, - ACTIONS(4598), 1, + [95342] = 6, + ACTIONS(4949), 1, anon_sym_DOT, - ACTIONS(4600), 1, + ACTIONS(4951), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(1888), 2, + ACTIONS(1757), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1778), 6, + ACTIONS(1785), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - [94560] = 6, - ACTIONS(4928), 1, + [95369] = 6, + ACTIONS(4597), 1, anon_sym_DOT, - ACTIONS(4930), 1, + ACTIONS(4599), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(1888), 2, + ACTIONS(1757), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1778), 6, + ACTIONS(1785), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - [94587] = 3, + [95396] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(1778), 9, + ACTIONS(1785), 9, sym__closing_brace_marker, anon_sym_DOT, anon_sym_case, @@ -167614,33 +168288,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_else, anon_sym_EQ_GT, - [94607] = 6, - ACTIONS(4742), 1, + [95416] = 6, + ACTIONS(4759), 1, anon_sym_DOT, - ACTIONS(4744), 1, + ACTIONS(4761), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(4924), 2, + ACTIONS(4945), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1778), 5, + ACTIONS(1785), 5, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - [94633] = 3, - ACTIONS(1888), 1, + [95442] = 3, + ACTIONS(1757), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1624), 9, + ACTIONS(1636), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -167650,13 +168324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_while, anon_sym_EQ_GT, - [94652] = 3, - ACTIONS(4924), 1, + [95461] = 3, + ACTIONS(4945), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1624), 9, + ACTIONS(1636), 9, sym__closing_brace_marker, anon_sym_DOT, anon_sym_case, @@ -167666,224 +168340,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_else, anon_sym_EQ_GT, - [94671] = 9, + [95480] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(4953), 1, aux_sym_string_token1, - ACTIONS(4934), 1, + ACTIONS(4955), 1, aux_sym_string_token2, - ACTIONS(4936), 1, + ACTIONS(4957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4959), 1, anon_sym_DOLLAR, - ACTIONS(4940), 1, + ACTIONS(4961), 1, sym_escape_sequence, - STATE(2297), 2, + STATE(2312), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [94701] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4590), 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, - [94717] = 9, + [95510] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4959), 1, anon_sym_DOLLAR, - ACTIONS(4942), 1, + ACTIONS(4963), 1, aux_sym_string_token1, - ACTIONS(4944), 1, + ACTIONS(4965), 1, aux_sym_string_token2, - ACTIONS(4946), 1, + ACTIONS(4967), 1, sym_escape_sequence, - STATE(2293), 2, + STATE(2308), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [94747] = 6, - ACTIONS(4766), 1, - anon_sym_DOT, - ACTIONS(4768), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1782), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1888), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1778), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [94771] = 9, + [95540] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4948), 1, - aux_sym_string_token1, - ACTIONS(4950), 1, - aux_sym_string_token2, - ACTIONS(4953), 1, + ACTIONS(4957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4956), 1, - anon_sym_DOLLAR, ACTIONS(4959), 1, - sym_escape_sequence, - STATE(2297), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2473), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [94801] = 9, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, anon_sym_DOLLAR, - ACTIONS(4962), 1, + ACTIONS(4969), 1, aux_sym_string_token1, - ACTIONS(4964), 1, + ACTIONS(4971), 1, aux_sym_string_token2, - ACTIONS(4966), 1, + ACTIONS(4973), 1, sym_escape_sequence, - STATE(2303), 2, + STATE(2304), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [94831] = 9, + [95570] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4959), 1, anon_sym_DOLLAR, - ACTIONS(4968), 1, + ACTIONS(4975), 1, aux_sym_string_token1, - ACTIONS(4970), 1, + ACTIONS(4977), 1, aux_sym_string_token2, - ACTIONS(4972), 1, + ACTIONS(4979), 1, sym_escape_sequence, - STATE(2309), 2, + STATE(2313), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [94861] = 5, - ACTIONS(4924), 1, + [95600] = 5, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(4974), 1, + ACTIONS(4981), 1, anon_sym_DOT, - ACTIONS(4976), 1, + ACTIONS(4983), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 6, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, + ACTIONS(1785), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_catch, anon_sym_else, - [94883] = 9, + anon_sym_while, + [95622] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4959), 1, anon_sym_DOLLAR, - ACTIONS(4978), 1, + ACTIONS(4985), 1, aux_sym_string_token1, - ACTIONS(4980), 1, + ACTIONS(4987), 1, aux_sym_string_token2, - ACTIONS(4982), 1, + ACTIONS(4989), 1, sym_escape_sequence, - STATE(2305), 2, + STATE(2311), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [94913] = 5, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(4984), 1, - anon_sym_DOT, - ACTIONS(4986), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1778), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_catch, - anon_sym_else, - anon_sym_while, - [94935] = 9, + [95652] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4934), 1, + ACTIONS(4955), 1, aux_sym_string_token2, - ACTIONS(4936), 1, + ACTIONS(4957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4959), 1, anon_sym_DOLLAR, - ACTIONS(4940), 1, + ACTIONS(4961), 1, sym_escape_sequence, - ACTIONS(4988), 1, + ACTIONS(4991), 1, aux_sym_string_token1, - STATE(2297), 2, + STATE(2312), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [94965] = 2, + [95682] = 6, + 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(1757), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1785), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [95706] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4614), 9, + ACTIONS(4639), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -167893,13536 +168515,13597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_extends, anon_sym_implements, - [94981] = 9, - ACTIONS(3), 1, + [95722] = 2, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(4680), 1, sym_comment, - ACTIONS(4934), 1, - aux_sym_string_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, - anon_sym_DOLLAR, - ACTIONS(4940), 1, - sym_escape_sequence, - ACTIONS(4990), 1, - aux_sym_string_token1, - STATE(2297), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2473), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [95011] = 9, + ACTIONS(4631), 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, + [95738] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4934), 1, + ACTIONS(4955), 1, aux_sym_string_token2, - ACTIONS(4936), 1, + ACTIONS(4957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4959), 1, anon_sym_DOLLAR, - ACTIONS(4940), 1, + ACTIONS(4961), 1, sym_escape_sequence, - ACTIONS(4992), 1, + ACTIONS(4993), 1, aux_sym_string_token1, - STATE(2297), 2, + STATE(2312), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [95041] = 5, - ACTIONS(1888), 1, + [95768] = 5, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(4994), 1, + ACTIONS(4995), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(4997), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 6, + ACTIONS(1785), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_catch, anon_sym_else, anon_sym_while, - [95063] = 9, + [95790] = 7, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(1753), 1, + sym_escape_sequence, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4837), 1, + anon_sym_DOT, + ACTIONS(4841), 1, + anon_sym_QMARK, + ACTIONS(4839), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1755), 4, + aux_sym_string_token1, + aux_sym_string_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, anon_sym_DOLLAR, - ACTIONS(4998), 1, - aux_sym_string_token1, - ACTIONS(5000), 1, + [95816] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4955), 1, aux_sym_string_token2, - ACTIONS(5002), 1, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4961), 1, sym_escape_sequence, - STATE(2306), 2, + ACTIONS(4999), 1, + aux_sym_string_token1, + STATE(2312), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [95093] = 9, + [95846] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4934), 1, + ACTIONS(5001), 1, + aux_sym_string_token1, + ACTIONS(5003), 1, aux_sym_string_token2, - ACTIONS(4936), 1, + ACTIONS(5006), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(5009), 1, anon_sym_DOLLAR, - ACTIONS(4940), 1, + ACTIONS(5012), 1, sym_escape_sequence, - ACTIONS(5004), 1, - aux_sym_string_token1, - STATE(2297), 2, + STATE(2312), 2, sym_interpolation, aux_sym_string_repeat1, - STATE(2473), 2, + STATE(2479), 2, sym__interpolated_block, sym__interpolated_identifier, - [95123] = 7, + [95876] = 9, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(1782), 1, - sym_escape_sequence, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4818), 1, - anon_sym_DOT, - ACTIONS(4822), 1, - anon_sym_QMARK, - ACTIONS(4820), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1784), 4, - aux_sym_string_token1, + ACTIONS(4955), 1, aux_sym_string_token2, + ACTIONS(4957), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, anon_sym_DOLLAR, - [95149] = 6, - ACTIONS(4810), 1, + 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(4812), 1, + ACTIONS(5019), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 2, + ACTIONS(1785), 6, sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, anon_sym_COMMA, - ACTIONS(1782), 2, + 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(4924), 2, + ACTIONS(1785), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(4945), 2, anon_sym_COLON, anon_sym_EQ_GT, - [95172] = 6, - ACTIONS(1888), 1, + [95981] = 6, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(4598), 1, + ACTIONS(4597), 1, anon_sym_DOT, - ACTIONS(4600), 1, + ACTIONS(4599), 1, anon_sym_QMARK, - ACTIONS(5006), 1, + ACTIONS(5027), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 4, + ACTIONS(1753), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LT, - [95195] = 6, - ACTIONS(1888), 1, + [96004] = 6, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(4598), 1, + ACTIONS(4597), 1, anon_sym_DOT, - ACTIONS(4600), 1, + ACTIONS(4599), 1, anon_sym_QMARK, - ACTIONS(5008), 1, + ACTIONS(5029), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 4, + ACTIONS(1753), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LT, - [95218] = 5, - ACTIONS(4924), 1, + [96027] = 5, + ACTIONS(4945), 1, anon_sym_EQ_GT, - ACTIONS(5010), 1, + ACTIONS(5031), 1, anon_sym_DOT, - ACTIONS(5012), 1, + ACTIONS(5033), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 5, + ACTIONS(1785), 5, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - [95239] = 8, - ACTIONS(5014), 1, + [96048] = 4, + ACTIONS(5035), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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(5038), 6, + anon_sym_default, + anon_sym_null, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [96082] = 8, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(5040), 1, + sym_identifier, + 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, + [96108] = 8, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, + sym_identifier, + 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, + [96134] = 8, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5046), 1, + sym_identifier, + 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, + [96160] = 8, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, + [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(5056), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [96210] = 8, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5060), 1, + sym_identifier, + 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, + [96236] = 8, + ACTIONS(5062), 1, + anon_sym_STAR, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5066), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, + STATE(2458), 1, aux_sym_package_statement_repeat1, - STATE(2428), 1, - sym__type_path, - STATE(2524), 1, + STATE(2467), 1, sym_type_name, - STATE(2854), 1, + STATE(2681), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95265] = 8, - ACTIONS(5014), 1, + [96262] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2400), 1, + STATE(2434), 1, sym__type_path, - STATE(2524), 1, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, sym_type_name, - STATE(2854), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95291] = 8, - ACTIONS(5014), 1, + [96288] = 3, + STATE(3115), 1, + sym__access_identifier, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5070), 6, + anon_sym_default, + anon_sym_null, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [96304] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2435), 1, + STATE(2431), 1, sym__type_path, - STATE(2524), 1, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, sym_type_name, - STATE(2854), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95317] = 8, - ACTIONS(5014), 1, + [96330] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2447), 1, + STATE(2442), 1, sym__type_path, - STATE(2524), 1, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, sym_type_name, - STATE(2854), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95343] = 8, - ACTIONS(5014), 1, + [96356] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2450), 1, + STATE(2406), 1, sym__type_path, - STATE(2524), 1, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, sym_type_name, - STATE(2854), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95369] = 8, - ACTIONS(5014), 1, + [96382] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2430), 1, + STATE(2424), 1, sym__type_path, - STATE(2524), 1, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, sym_type_name, - STATE(2854), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95395] = 4, - ACTIONS(5018), 1, - anon_sym_LT, - STATE(2498), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4548), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [95413] = 4, - ACTIONS(5018), 1, - anon_sym_LT, - STATE(2519), 1, - sym_type_params, + [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, - ACTIONS(4558), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [95431] = 8, - ACTIONS(5014), 1, + [96434] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, + STATE(2448), 1, aux_sym_package_statement_repeat1, - STATE(2524), 1, + STATE(2516), 1, sym_type_name, - STATE(2605), 1, + STATE(2689), 1, sym__type_path, - STATE(2854), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95457] = 8, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5022), 1, - anon_sym_extends, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(711), 1, - sym_block, - STATE(2462), 1, - sym_type_params, - STATE(2751), 1, - aux_sym_class_declaration_repeat3, + [96460] = 8, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5072), 1, + sym_identifier, + 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, - [95483] = 8, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5026), 1, - anon_sym_extends, - STATE(799), 1, - sym_block, - STATE(2502), 1, - sym_type_params, - STATE(2569), 1, - aux_sym_class_declaration_repeat3, + [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, - [95509] = 7, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5030), 1, - anon_sym_EQ, - STATE(2233), 1, - sym__assignmentOperator, - STATE(2498), 1, - sym_type_params, + 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(1327), 1, + aux_sym_integer_token2, + 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(5028), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [95533] = 6, - ACTIONS(1778), 1, - anon_sym_in, - ACTIONS(4928), 1, - anon_sym_DOT, - ACTIONS(4930), 1, - anon_sym_QMARK, + [96532] = 8, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5078), 1, + sym_identifier, + 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(1782), 2, + [96558] = 8, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(5042), 1, anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(5032), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [95555] = 6, - ACTIONS(1778), 1, - anon_sym_in, - ACTIONS(4766), 1, - anon_sym_DOT, - ACTIONS(4768), 1, - anon_sym_QMARK, + ACTIONS(5080), 1, + sym_identifier, + 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(1782), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(5032), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [95577] = 7, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5036), 1, - anon_sym_EQ, - STATE(2254), 1, - sym__assignmentOperator, - STATE(2498), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5034), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [95601] = 6, - ACTIONS(5038), 1, - anon_sym_LPAREN, - ACTIONS(5040), 1, - anon_sym_LT, - STATE(380), 1, - sym__arg_list, - STATE(2458), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4548), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [95623] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5042), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym__arg_list, - STATE(2506), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4548), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [95645] = 8, - ACTIONS(1334), 1, + [96584] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5044), 1, - sym_identifier, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(2912), 1, + ACTIONS(5082), 1, + sym_identifier, + STATE(2969), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3543), 1, + STATE(3648), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95671] = 8, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5048), 1, - sym_identifier, - STATE(3029), 1, - sym__parenthesized_expression, - STATE(3278), 1, - sym_integer, - STATE(3557), 1, - sym_range_expression, + [96610] = 8, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + 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, - [95697] = 6, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(4928), 1, + [96636] = 6, + ACTIONS(1785), 1, + anon_sym_in, + ACTIONS(4949), 1, anon_sym_DOT, - ACTIONS(4930), 1, + ACTIONS(4951), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(5050), 2, + ACTIONS(5088), 2, anon_sym_COLON, anon_sym_EQ_GT, - [95719] = 8, - ACTIONS(5014), 1, + [96658] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2394), 1, + STATE(2415), 1, sym__type_path, - STATE(2524), 1, - sym_type_name, - STATE(2854), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [95745] = 8, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5052), 1, - anon_sym_STAR, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - STATE(2340), 1, + STATE(2448), 1, aux_sym_package_statement_repeat1, - STATE(2517), 1, + STATE(2516), 1, sym_type_name, - STATE(2677), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95771] = 8, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5056), 1, - sym_identifier, - STATE(2974), 1, - sym__parenthesized_expression, - STATE(3278), 1, - sym_integer, - STATE(3457), 1, - sym_range_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [95797] = 8, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5058), 1, - anon_sym_STAR, - STATE(2452), 1, - sym_type_name, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(2687), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, + [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, - [95823] = 8, - ACTIONS(5014), 1, + 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(5054), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - ACTIONS(5060), 1, - anon_sym_STAR, - STATE(2338), 1, + STATE(2426), 1, + sym__type_path, + STATE(2448), 1, aux_sym_package_statement_repeat1, - STATE(2480), 1, - sym_type_name, - STATE(2595), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [95849] = 8, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5062), 1, - anon_sym_STAR, - STATE(2466), 1, + STATE(2516), 1, sym_type_name, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(2700), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95875] = 8, - ACTIONS(1334), 1, + [96732] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5064), 1, + ACTIONS(5096), 1, sym_identifier, - STATE(3098), 1, + STATE(2979), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3671), 1, + STATE(3348), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95901] = 8, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2385), 1, - sym__type_path, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2524), 1, - sym_type_name, - STATE(2854), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [95927] = 8, - ACTIONS(1334), 1, + [96758] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, + ACTIONS(5098), 1, sym_identifier, - STATE(2948), 1, + STATE(2980), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3328), 1, + STATE(3352), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [95953] = 3, - STATE(3337), 1, - sym__access_identifier, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5068), 6, - anon_sym_default, - anon_sym_null, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_never, - [95969] = 3, - STATE(3259), 1, - sym__access_identifier, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5070), 6, - anon_sym_default, - anon_sym_null, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_never, - [95985] = 8, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [96784] = 8, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, - anon_sym_extends, - STATE(586), 1, - sym_block, - STATE(2527), 1, - sym_type_params, - STATE(2710), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [96011] = 8, - ACTIONS(5018), 1, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5076), 1, + ACTIONS(5100), 1, anon_sym_extends, - STATE(816), 1, + STATE(561), 1, sym_block, - STATE(2471), 1, + STATE(2457), 1, sym_type_params, - STATE(2609), 1, + STATE(2734), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96037] = 6, - ACTIONS(1778), 1, - sym__lookback_semicolon, - ACTIONS(5078), 1, + [96810] = 6, + ACTIONS(1785), 1, + anon_sym_in, + ACTIONS(4785), 1, anon_sym_DOT, - ACTIONS(5082), 1, + ACTIONS(4787), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(5080), 2, + ACTIONS(5088), 2, anon_sym_COLON, anon_sym_EQ_GT, - [96059] = 8, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, - anon_sym_LPAREN, + [96832] = 8, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, ACTIONS(5084), 1, - sym_identifier, - STATE(2888), 1, - sym__parenthesized_expression, - STATE(3278), 1, - sym_integer, - STATE(3542), 1, - sym_range_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [96085] = 5, - ACTIONS(4232), 1, - sym__lookback_semicolon, - ACTIONS(5086), 1, - anon_sym_else, - STATE(606), 1, - sym_else_clause, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2608), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [96105] = 8, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2524), 1, - sym_type_name, - STATE(2562), 1, - sym__type_path, - STATE(2854), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, + anon_sym_LBRACE, + 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, - [96131] = 8, - ACTIONS(1334), 1, + [96858] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(5104), 1, sym_identifier, - STATE(2892), 1, + STATE(3113), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3566), 1, + STATE(3377), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96157] = 8, - ACTIONS(1334), 1, + [96884] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5090), 1, + ACTIONS(5106), 1, sym_identifier, - STATE(2895), 1, + STATE(2988), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3580), 1, + STATE(3380), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96183] = 8, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5092), 1, - sym_identifier, - STATE(2902), 1, - sym__parenthesized_expression, - STATE(3278), 1, - sym_integer, - STATE(3637), 1, - sym_range_expression, + [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, - [96209] = 8, - ACTIONS(5018), 1, + 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(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5094), 1, + ACTIONS(5108), 1, anon_sym_extends, - STATE(418), 1, + STATE(746), 1, sym_block, - STATE(2477), 1, + STATE(2501), 1, sym_type_params, - STATE(2740), 1, + STATE(2543), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96235] = 8, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, + [96958] = 6, + ACTIONS(5110), 1, anon_sym_LPAREN, - ACTIONS(5096), 1, - sym_identifier, - STATE(2922), 1, - sym__parenthesized_expression, - STATE(3278), 1, - sym_integer, - STATE(3342), 1, - sym_range_expression, + 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, - [96261] = 8, - ACTIONS(1334), 1, + ACTIONS(4603), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [96980] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5098), 1, + ACTIONS(5114), 1, sym_identifier, - STATE(2923), 1, + STATE(2947), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3346), 1, + STATE(3398), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96287] = 8, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5100), 1, - sym_identifier, - STATE(2931), 1, - sym__parenthesized_expression, - STATE(3278), 1, - sym_integer, - STATE(3371), 1, - sym_range_expression, + [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, - [96313] = 8, - ACTIONS(1334), 1, + 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(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5120), 1, sym_identifier, - STATE(2932), 1, + STATE(2975), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3374), 1, + STATE(3333), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96339] = 8, - ACTIONS(1334), 1, + [97126] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5104), 1, + ACTIONS(5122), 1, sym_identifier, - STATE(2866), 1, + STATE(2985), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3394), 1, + STATE(3367), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96365] = 8, - ACTIONS(5018), 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(5050), 1, anon_sym_LT, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(5106), 1, + ACTIONS(5124), 1, anon_sym_extends, - STATE(439), 1, + STATE(618), 1, sym_block, - STATE(2501), 1, + STATE(2517), 1, sym_type_params, - STATE(2779), 1, + STATE(2557), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96391] = 8, - ACTIONS(1334), 1, + [97204] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5126), 1, sym_identifier, - STATE(2914), 1, + STATE(2953), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3327), 1, + STATE(3463), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96417] = 8, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5110), 1, - sym_identifier, - STATE(2929), 1, - sym__parenthesized_expression, - STATE(3278), 1, - sym_integer, - STATE(3361), 1, - sym_range_expression, + [97230] = 3, + ACTIONS(1859), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96443] = 6, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(4598), 1, + ACTIONS(1857), 6, anon_sym_DOT, - ACTIONS(4600), 1, + 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(1782), 2, - anon_sym_LPAREN, + [97272] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5050), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [96465] = 8, - ACTIONS(5014), 1, + STATE(2527), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4609), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [97290] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, - aux_sym_package_statement_repeat1, - STATE(2388), 1, + STATE(2427), 1, sym__type_path, - STATE(2524), 1, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, sym_type_name, - STATE(2854), 1, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96491] = 8, - ACTIONS(5014), 1, + [97316] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5066), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, + ACTIONS(5130), 1, + anon_sym_STAR, + STATE(2328), 1, aux_sym_package_statement_repeat1, - STATE(2421), 1, - sym__type_path, - STATE(2524), 1, + STATE(2489), 1, sym_type_name, - STATE(2854), 1, + STATE(2650), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96517] = 6, - ACTIONS(1778), 1, - sym__lookback_semicolon, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_QMARK, + [97342] = 4, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(5080), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [96539] = 8, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5112), 1, - sym_identifier, - STATE(2986), 1, - sym__parenthesized_expression, - STATE(3278), 1, - sym_integer, - STATE(3486), 1, - sym_range_expression, + 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, - [96565] = 3, - ACTIONS(1972), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1970), 6, - anon_sym_DOT, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ_GT, - [96581] = 4, - ACTIONS(5114), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2372), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(3352), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_else, - [96599] = 4, - ACTIONS(5114), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2372), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - ACTIONS(3358), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_else, - [96617] = 4, - ACTIONS(5116), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2372), 2, + STATE(2320), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3362), 4, + ACTIONS(3357), 4, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_else, - [96635] = 4, - ACTIONS(5114), 1, + [97378] = 4, + ACTIONS(5132), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2372), 2, + STATE(2320), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3369), 4, + ACTIONS(3368), 4, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_else, - [96653] = 3, + [97396] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2372), 2, + STATE(2320), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3352), 5, + ACTIONS(2681), 5, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - [96669] = 3, + [97412] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2372), 2, + STATE(2320), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3358), 5, + ACTIONS(3357), 5, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - [96685] = 3, + [97428] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2372), 2, + STATE(2320), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3369), 5, + ACTIONS(3368), 5, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, anon_sym_else, - [96701] = 8, - ACTIONS(5014), 1, + [97444] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2381), 1, - sym__type_path, - STATE(2386), 1, + STATE(2448), 1, aux_sym_package_statement_repeat1, - STATE(2524), 1, + STATE(2516), 1, sym_type_name, - STATE(2854), 1, + STATE(2708), 1, + sym__type_path, + STATE(2878), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96727] = 8, - ACTIONS(5014), 1, + [97470] = 8, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5066), 1, sym__pascalCaseIdentifier, - STATE(2386), 1, + ACTIONS(5134), 1, + anon_sym_STAR, + STATE(2369), 1, aux_sym_package_statement_repeat1, - STATE(2432), 1, - sym__type_path, - STATE(2524), 1, + STATE(2474), 1, sym_type_name, - STATE(2854), 1, + STATE(2810), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96753] = 8, - ACTIONS(1334), 1, + [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(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(1336), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5046), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5119), 1, + ACTIONS(5138), 1, sym_identifier, - STATE(2890), 1, + STATE(3064), 1, sym__parenthesized_expression, - STATE(3278), 1, + STATE(3252), 1, sym_integer, - STATE(3551), 1, + STATE(3574), 1, sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96779] = 7, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, - STATE(2947), 1, - aux_sym__arg_list_repeat1, + [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, - [96802] = 7, - ACTIONS(5018), 1, + ACTIONS(1753), 2, + anon_sym_LPAREN, anon_sym_LT, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(776), 1, - sym_block, - STATE(2760), 1, + 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, - STATE(2770), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96825] = 6, - ACTIONS(4762), 1, + ACTIONS(4603), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [97588] = 6, + ACTIONS(209), 1, sym__closing_brace_marker, - ACTIONS(5121), 1, + ACTIONS(5142), 1, anon_sym_case, - ACTIONS(5123), 1, + ACTIONS(5144), 1, anon_sym_default, - STATE(2029), 1, + STATE(343), 1, sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2461), 2, + STATE(2449), 2, sym_case_statement, aux_sym_switch_block_repeat1, - [96846] = 7, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, - anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, - STATE(2898), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [96869] = 7, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(2507), 1, - sym_type_name, - STATE(3001), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [96892] = 7, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(715), 1, - sym_block, - STATE(2635), 1, - sym_type_params, - STATE(2636), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [96915] = 7, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2455), 1, - sym_type_name, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(3026), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [96938] = 6, - ACTIONS(343), 1, + [97609] = 6, + ACTIONS(197), 1, sym__closing_brace_marker, - ACTIONS(5121), 1, + ACTIONS(5142), 1, anon_sym_case, - ACTIONS(5123), 1, + ACTIONS(5144), 1, anon_sym_default, - STATE(401), 1, + STATE(416), 1, sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2461), 2, + STATE(2466), 2, sym_case_statement, aux_sym_switch_block_repeat1, - [96959] = 7, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(676), 1, - sym_block, - STATE(2739), 1, - sym_type_params, - STATE(2748), 1, - aux_sym_class_declaration_repeat3, + [97630] = 4, + ACTIONS(5074), 1, + anon_sym_else, + STATE(572), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [96982] = 6, - ACTIONS(552), 1, + ACTIONS(2629), 4, sym__closing_brace_marker, - ACTIONS(5121), 1, anon_sym_case, - ACTIONS(5123), 1, anon_sym_default, - STATE(265), 1, - sym__closing_brace, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2461), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [97003] = 7, - ACTIONS(5014), 1, + anon_sym_catch, + [97647] = 7, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2392), 1, + STATE(2458), 1, aux_sym_package_statement_repeat1, - STATE(2494), 1, + STATE(2507), 1, sym_type_name, - STATE(3047), 1, + STATE(3012), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97026] = 2, + [97670] = 4, + ACTIONS(5074), 1, + anon_sym_else, + STATE(587), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5125), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_extends, - anon_sym_implements, - [97039] = 7, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2472), 1, - sym_type_name, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(3052), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, + 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, - [97062] = 7, - ACTIONS(5014), 1, + ACTIONS(2679), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [97704] = 7, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5054), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2397), 1, + STATE(2458), 1, aux_sym_package_statement_repeat1, - STATE(3034), 1, + STATE(2510), 1, sym_type_name, - STATE(3078), 1, + STATE(2861), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97085] = 7, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(654), 1, - sym_block, - STATE(2639), 1, - sym_type_params, - STATE(2641), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [97108] = 6, - ACTIONS(5129), 1, - anon_sym_COLON, - ACTIONS(5131), 1, - anon_sym_QMARK, - ACTIONS(5133), 1, - anon_sym_EQ, - STATE(2232), 1, - sym__assignmentOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5127), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [97129] = 7, - ACTIONS(5014), 1, + [97727] = 7, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5066), 1, sym__pascalCaseIdentifier, - STATE(2398), 1, + STATE(2451), 1, aux_sym_package_statement_repeat1, - STATE(2503), 1, + STATE(3096), 1, sym_type_name, - STATE(3080), 1, + STATE(3112), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97152] = 7, - ACTIONS(5014), 1, + [97750] = 7, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5054), 1, + ACTIONS(5066), 1, sym__pascalCaseIdentifier, - STATE(2505), 1, + STATE(2458), 1, aux_sym_package_statement_repeat1, - STATE(2870), 1, - aux_sym__type_path_repeat1, - STATE(3101), 1, + STATE(2839), 1, sym_type_name, - STATE(3468), 1, + STATE(2872), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97175] = 7, - ACTIONS(5014), 1, + [97773] = 7, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2460), 1, - sym_type_name, - STATE(2505), 1, + STATE(2458), 1, aux_sym_package_statement_repeat1, - STATE(3083), 1, + STATE(2533), 1, + sym_type_name, + STATE(2903), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97198] = 7, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3718), 1, + [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(1785), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3842), 1, anon_sym_RBRACK, - STATE(2469), 1, - sym__rangeOperator, - STATE(2850), 1, - aux_sym_array_repeat1, + [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, - [97221] = 7, - ACTIONS(5018), 1, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97836] = 7, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5020), 1, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + 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, + [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, + 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, - STATE(683), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(771), 1, sym_block, - STATE(2544), 1, + STATE(2662), 1, sym_type_params, - STATE(2547), 1, + STATE(2663), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97244] = 7, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3720), 1, - anon_sym_RBRACK, - STATE(2469), 1, - sym__rangeOperator, - STATE(2989), 1, - aux_sym_array_repeat1, + [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, + [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, - [97267] = 7, - ACTIONS(1628), 1, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97947] = 7, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(3718), 1, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(3774), 1, + ACTIONS(3791), 1, anon_sym_RBRACK, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, - STATE(2875), 1, + STATE(2871), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97290] = 5, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5135), 1, + [97970] = 5, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(5137), 1, + ACTIONS(5154), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [97309] = 7, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2423), 1, - aux_sym_package_statement_repeat1, - STATE(2504), 1, - sym_type_name, - STATE(2887), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [97332] = 6, - ACTIONS(337), 1, + 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(5121), 1, + ACTIONS(5142), 1, anon_sym_case, - ACTIONS(5123), 1, + ACTIONS(5144), 1, anon_sym_default, - STATE(357), 1, + STATE(336), 1, sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2427), 2, + STATE(2420), 2, sym_case_statement, aux_sym_switch_block_repeat1, - [97353] = 7, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5020), 1, + [98010] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5156), 1, anon_sym_extends, - STATE(728), 1, + STATE(562), 1, sym_block, - STATE(2780), 1, + STATE(2736), 1, sym_type_params, - STATE(2795), 1, + STATE(2737), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97376] = 7, - ACTIONS(5018), 1, + [98033] = 7, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5072), 1, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(587), 1, + STATE(784), 1, sym_block, - STATE(2711), 1, + STATE(2534), 1, sym_type_params, - STATE(2712), 1, - aux_sym_interface_declaration_repeat1, + STATE(2797), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98056] = 7, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, - [97399] = 7, - ACTIONS(1628), 1, + [98079] = 7, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(3718), 1, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACK, - STATE(2469), 1, + ACTIONS(3843), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym__rangeOperator, - STATE(3011), 1, - aux_sym_array_repeat1, + STATE(3079), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97422] = 6, - ACTIONS(341), 1, - sym__closing_brace_marker, - ACTIONS(5121), 1, - anon_sym_case, - ACTIONS(5123), 1, - anon_sym_default, - STATE(227), 1, - sym__closing_brace, + [98102] = 5, + ACTIONS(4884), 1, + anon_sym_DOT, + ACTIONS(4886), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2419), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [97443] = 6, - ACTIONS(4756), 1, - sym__closing_brace_marker, - ACTIONS(5121), 1, - anon_sym_case, - ACTIONS(5123), 1, - anon_sym_default, - STATE(1989), 1, - sym__closing_brace, + 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, - STATE(2426), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [97464] = 4, - ACTIONS(5086), 1, - anon_sym_else, - STATE(606), 1, - sym_else_clause, + 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(2608), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [97481] = 7, - ACTIONS(5018), 1, + [98157] = 7, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5020), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5156), 1, anon_sym_extends, - STATE(800), 1, + STATE(658), 1, sym_block, - STATE(2578), 1, + STATE(2604), 1, sym_type_params, - STATE(2579), 1, + STATE(2628), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97504] = 4, - ACTIONS(5086), 1, + [98180] = 5, + ACTIONS(4049), 1, + sym__lookback_semicolon, + ACTIONS(5158), 1, anon_sym_else, - STATE(422), 1, + STATE(572), 1, sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2652), 4, + ACTIONS(2629), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - anon_sym_catch, - [97521] = 4, - ACTIONS(5086), 1, - anon_sym_else, - STATE(444), 1, - sym_else_clause, + [98199] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + 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(2642), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_catch, - [97538] = 7, - ACTIONS(1628), 1, + [98222] = 7, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(3718), 1, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(3832), 1, + ACTIONS(3771), 1, anon_sym_RBRACK, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, - STATE(2893), 1, + STATE(3011), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97561] = 7, - ACTIONS(1628), 1, + [98268] = 7, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3852), 1, + ACTIONS(3761), 1, anon_sym_RPAREN, - STATE(2469), 1, + ACTIONS(3763), 1, + anon_sym_COMMA, + STATE(2488), 1, sym__rangeOperator, - STATE(2955), 1, + STATE(2949), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97584] = 7, - ACTIONS(5014), 1, + [98291] = 7, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2505), 1, + STATE(2458), 1, aux_sym_package_statement_repeat1, - STATE(2516), 1, + STATE(2461), 1, sym_type_name, - STATE(3055), 1, + STATE(2868), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97607] = 7, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5072), 1, + [98314] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5156), 1, anon_sym_extends, - STATE(617), 1, + STATE(583), 1, sym_block, - STATE(2744), 1, + STATE(2817), 1, sym_type_params, - STATE(2745), 1, + STATE(2819), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97630] = 6, - ACTIONS(341), 1, + [98337] = 6, + ACTIONS(207), 1, sym__closing_brace_marker, - ACTIONS(5121), 1, + ACTIONS(5142), 1, anon_sym_case, - ACTIONS(5123), 1, + ACTIONS(5144), 1, anon_sym_default, - STATE(221), 1, + STATE(302), 1, sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2461), 2, + STATE(2466), 2, sym_case_statement, aux_sym_switch_block_repeat1, - [97651] = 5, - ACTIONS(4204), 1, - sym__lookback_semicolon, - ACTIONS(5141), 1, - anon_sym_else, - STATE(606), 1, - sym_else_clause, + [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, - ACTIONS(2608), 3, + 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, - [97670] = 7, - ACTIONS(5018), 1, + 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(5050), 1, anon_sym_LT, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(428), 1, + STATE(501), 1, sym_block, - STATE(2763), 1, + STATE(2622), 1, sym_type_params, - STATE(2764), 1, + STATE(2623), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97693] = 7, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3804), 1, - anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, - STATE(3040), 1, - aux_sym__arg_list_repeat1, + [98423] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + 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, - [97716] = 7, - ACTIONS(5014), 1, + [98446] = 7, + ACTIONS(5064), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2505), 1, + STATE(2388), 1, aux_sym_package_statement_repeat1, - STATE(2525), 1, + STATE(2486), 1, sym_type_name, - STATE(2935), 1, + STATE(2968), 1, aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97739] = 5, - ACTIONS(4863), 1, - anon_sym_DOT, - ACTIONS(4865), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1782), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(5143), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [97758] = 7, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, - STATE(2950), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [97781] = 6, - ACTIONS(4756), 1, - sym__closing_brace_marker, - ACTIONS(5121), 1, - anon_sym_case, - ACTIONS(5123), 1, - anon_sym_default, - STATE(2029), 1, - sym__closing_brace, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2461), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [97802] = 6, - ACTIONS(337), 1, - sym__closing_brace_marker, - ACTIONS(5121), 1, - anon_sym_case, - ACTIONS(5123), 1, - anon_sym_default, - STATE(359), 1, - sym__closing_brace, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2461), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [97823] = 7, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5020), 1, + [98469] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, anon_sym_implements, - STATE(770), 1, + STATE(473), 1, sym_block, - STATE(2660), 1, + STATE(2598), 1, sym_type_params, - STATE(2661), 1, + STATE(2599), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97846] = 7, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, + [98492] = 7, + ACTIONS(5050), 1, + anon_sym_LT, ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(2876), 1, - sym_type_name, - STATE(2881), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + 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, - [97869] = 7, - ACTIONS(5018), 1, + [98515] = 7, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(524), 1, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(747), 1, sym_block, - STATE(2721), 1, + STATE(2558), 1, sym_type_params, - STATE(2723), 1, - aux_sym_class_declaration_repeat3, + STATE(2561), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97892] = 4, - ACTIONS(5147), 1, + [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, + 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(5145), 2, + ACTIONS(5160), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1852), 3, + ACTIONS(1833), 3, anon_sym_DOT, anon_sym_QMARK, anon_sym_EQ_GT, - [97909] = 7, - ACTIONS(5018), 1, + [98576] = 7, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(452), 1, + STATE(435), 1, sym_block, - STATE(2800), 1, + STATE(2571), 1, sym_type_params, - STATE(2801), 1, + STATE(2572), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97932] = 7, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - STATE(2429), 1, - aux_sym_package_statement_repeat1, - STATE(2933), 1, - sym_type_name, - STATE(2968), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [97955] = 3, + [98599] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1782), 2, + ACTIONS(1753), 2, anon_sym_LPAREN, anon_sym_LT, - ACTIONS(1778), 4, + ACTIONS(1785), 4, sym__lookback_semicolon, anon_sym_DOT, anon_sym_QMARK, anon_sym_EQ_GT, - [97970] = 7, - ACTIONS(5018), 1, + [98614] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5164), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LT, - ACTIONS(5024), 1, + anon_sym_extends, anon_sym_implements, - ACTIONS(5072), 1, + [98627] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(458), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(429), 1, sym_block, - STATE(2809), 1, + STATE(2566), 1, sym_type_params, - STATE(2810), 1, + STATE(2567), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [97993] = 7, - ACTIONS(5014), 1, - sym__camelCaseIdentifier, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2417), 1, - aux_sym_package_statement_repeat1, - STATE(2509), 1, - sym_type_name, - STATE(2905), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98016] = 4, - ACTIONS(5149), 1, + [98650] = 4, + ACTIONS(5166), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2439), 2, + STATE(2437), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3352), 3, + ACTIONS(2681), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - [98033] = 4, - ACTIONS(5149), 1, + [98667] = 4, + ACTIONS(5166), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2439), 2, + STATE(2437), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3358), 3, + ACTIONS(3357), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - [98050] = 4, - ACTIONS(5151), 1, + [98684] = 4, + ACTIONS(5168), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2439), 2, + STATE(2437), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3362), 3, + ACTIONS(3361), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - [98067] = 4, - ACTIONS(5149), 1, + [98701] = 4, + ACTIONS(5166), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2439), 2, + STATE(2437), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3369), 3, + ACTIONS(3368), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - [98084] = 3, + [98718] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2439), 2, + STATE(2437), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3352), 4, + ACTIONS(2681), 4, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, - [98099] = 3, + [98733] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2439), 2, + STATE(2437), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3358), 4, + ACTIONS(3357), 4, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, - [98114] = 3, + [98748] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2439), 2, + STATE(2437), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - ACTIONS(3369), 4, + ACTIONS(3368), 4, sym__closing_brace_marker, anon_sym_case, anon_sym_default, anon_sym_catch, - [98129] = 6, - ACTIONS(343), 1, + [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, + [98786] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + 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, + [98809] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + 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, + [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, + [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, + [98878] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + 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, + [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, + [98924] = 6, + ACTIONS(209), 1, sym__closing_brace_marker, - ACTIONS(5121), 1, + ACTIONS(5142), 1, anon_sym_case, - ACTIONS(5123), 1, + ACTIONS(5144), 1, anon_sym_default, - STATE(406), 1, + STATE(347), 1, sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2387), 2, + STATE(2466), 2, sym_case_statement, aux_sym_switch_block_repeat1, - [98150] = 6, - ACTIONS(552), 1, + [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, + [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, + [98991] = 6, + ACTIONS(4779), 1, sym__closing_brace_marker, - ACTIONS(5121), 1, + ACTIONS(5142), 1, anon_sym_case, - ACTIONS(5123), 1, + ACTIONS(5144), 1, anon_sym_default, - STATE(255), 1, + STATE(1809), 1, sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2389), 2, + STATE(2466), 2, sym_case_statement, aux_sym_switch_block_repeat1, - [98171] = 2, + [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(4630), 6, + ACTIONS(5171), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - [98184] = 7, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(490), 1, - sym_block, - STATE(2564), 1, - sym_type_params, - STATE(2565), 1, - aux_sym_class_declaration_repeat3, + [99033] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + 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, - [98207] = 5, - ACTIONS(5154), 1, - anon_sym_DOT, - ACTIONS(5156), 1, - anon_sym_QMARK, + [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, - ACTIONS(1782), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(5143), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [98226] = 6, - ACTIONS(4762), 1, - sym__closing_brace_marker, - ACTIONS(5121), 1, - anon_sym_case, - ACTIONS(5123), 1, - anon_sym_default, - STATE(1989), 1, - sym__closing_brace, + [99079] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + 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, - STATE(2382), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [98247] = 7, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [99102] = 6, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(496), 1, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5179), 1, + anon_sym_extends, + STATE(576), 1, sym_block, - STATE(2574), 1, - sym_type_params, - STATE(2575), 1, + STATE(2781), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98270] = 7, - ACTIONS(5014), 1, + [99122] = 5, + ACTIONS(5183), 1, sym__camelCaseIdentifier, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2384), 1, + STATE(2458), 1, aux_sym_package_statement_repeat1, - STATE(2457), 1, - sym_type_name, - STATE(2983), 1, - aux_sym__type_path_repeat1, - STATE(3468), 1, + STATE(3541), 1, sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98293] = 5, - ACTIONS(5158), 1, + 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, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99156] = 5, + ACTIONS(5190), 1, anon_sym_DOT, - ACTIONS(5162), 1, + ACTIONS(5194), 1, sym__lookback_semicolon, - STATE(764), 1, + STATE(585), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5160), 2, + ACTIONS(5192), 2, anon_sym_as, anon_sym_in, - [98311] = 6, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(4428), 1, - anon_sym_COMMA, - ACTIONS(4756), 1, - sym__closing_brace_marker, - STATE(1950), 1, - sym__closing_brace, - STATE(2543), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98331] = 6, - ACTIONS(5164), 1, - sym__camelCaseIdentifier, - ACTIONS(5166), 1, - sym__lookback_semicolon, - STATE(574), 1, - sym__semicolon, - STATE(3019), 1, - sym_package_name, - STATE(3075), 1, - aux_sym_package_statement_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98351] = 3, - ACTIONS(5168), 1, + [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(5170), 4, + [99194] = 6, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(5198), 1, anon_sym_extends, - anon_sym_implements, - [98365] = 4, - ACTIONS(5172), 1, - anon_sym_LT, - STATE(1663), 1, - sym_type_params, + STATE(734), 1, + sym_block, + STATE(2697), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4558), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [98381] = 6, - ACTIONS(5018), 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, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99230] = 6, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5038), 1, + ACTIONS(5110), 1, anon_sym_LPAREN, - ACTIONS(5168), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(383), 1, + STATE(346), 1, sym__arg_list, - STATE(3112), 1, + STATE(3167), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98401] = 4, - ACTIONS(5038), 1, - anon_sym_LPAREN, - STATE(348), 1, - sym__arg_list, + [99250] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4544), 3, - sym__closing_brace_marker, + ACTIONS(4712), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - [98417] = 5, - ACTIONS(5174), 1, + 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, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [99282] = 5, + ACTIONS(5214), 1, anon_sym_DOT, - ACTIONS(5178), 1, + ACTIONS(5218), 1, sym__lookback_semicolon, - STATE(803), 1, + STATE(567), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5176), 2, + ACTIONS(5216), 2, anon_sym_as, anon_sym_in, - [98435] = 6, - ACTIONS(5018), 1, + [99300] = 6, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5168), 1, + ACTIONS(5196), 1, anon_sym_DOT, - ACTIONS(5180), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(1868), 1, sym__arg_list, - STATE(3238), 1, + STATE(3257), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98455] = 5, - ACTIONS(5182), 1, - anon_sym_case, - ACTIONS(5185), 1, - anon_sym_default, - ACTIONS(5188), 1, + [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, - STATE(2461), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [98473] = 6, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5190), 1, - anon_sym_extends, - STATE(781), 1, - sym_block, - STATE(2572), 1, - aux_sym_class_declaration_repeat3, + [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, - [98493] = 4, - ACTIONS(5141), 1, - anon_sym_else, - STATE(606), 1, - sym_else_clause, + [99360] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2608), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [98509] = 6, - ACTIONS(343), 1, - sym__closing_brace_marker, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(4428), 1, + ACTIONS(4613), 5, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1938), 1, - sym__closing_brace, - STATE(2815), 1, - aux_sym_map_repeat1, + 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, - [98529] = 5, - ACTIONS(1628), 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(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3936), 2, + ACTIONS(3969), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [98547] = 5, - ACTIONS(5192), 1, + [99406] = 5, + ACTIONS(5224), 1, anon_sym_DOT, - ACTIONS(5196), 1, + ACTIONS(5228), 1, sym__lookback_semicolon, - STATE(591), 1, + STATE(742), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5194), 2, + ACTIONS(5226), 2, anon_sym_as, anon_sym_in, - [98565] = 4, - ACTIONS(5141), 1, + [99424] = 4, + ACTIONS(5158), 1, anon_sym_else, - STATE(422), 1, + STATE(572), 1, sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2652), 3, + ACTIONS(2629), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - [98581] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5042), 1, - anon_sym_LPAREN, - ACTIONS(5168), 1, - anon_sym_DOT, - STATE(193), 1, - sym__arg_list, - STATE(3250), 1, - sym_type_params, + [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, - [98601] = 5, - ACTIONS(1334), 1, - aux_sym_integer_token1, - ACTIONS(1336), 1, - aux_sym_integer_token2, - ACTIONS(5046), 1, - anon_sym_LPAREN, + [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, - STATE(173), 2, - sym__parenthesized_expression, - sym_integer, - [98619] = 4, - ACTIONS(5141), 1, - anon_sym_else, - STATE(444), 1, - sym_else_clause, + ACTIONS(5230), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [99478] = 5, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(5236), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2642), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [98635] = 6, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5198), 1, - anon_sym_extends, - STATE(811), 1, - sym_block, - STATE(2685), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, + STATE(1858), 2, + sym__parenthesized_expression, + sym_integer, + [99496] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4659), 1, sym_comment, - [98655] = 6, - ACTIONS(5018), 1, + ACTIONS(5240), 1, + sym_escape_sequence, + ACTIONS(5238), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99512] = 6, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5168), 1, + ACTIONS(5196), 1, anon_sym_DOT, - ACTIONS(5200), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(1544), 1, + STATE(1903), 1, sym__arg_list, - STATE(3210), 1, + STATE(3262), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98675] = 4, + [99532] = 4, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(5204), 1, - sym_escape_sequence, - ACTIONS(5202), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [98691] = 4, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(1782), 1, + ACTIONS(5244), 1, sym_escape_sequence, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(1784), 4, + ACTIONS(5242), 4, aux_sym_string_token1, aux_sym_string_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR, - [98707] = 6, - ACTIONS(5164), 1, - sym__camelCaseIdentifier, - ACTIONS(5206), 1, - sym__lookback_semicolon, - STATE(762), 1, - sym__semicolon, - STATE(2930), 1, - sym_package_name, - STATE(2957), 1, - aux_sym_package_statement_repeat1, + [99548] = 5, + ACTIONS(2591), 1, + aux_sym_integer_token1, + ACTIONS(2593), 1, + aux_sym_integer_token2, + ACTIONS(5246), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98727] = 3, - ACTIONS(5168), 1, + STATE(1514), 2, + sym__parenthesized_expression, + sym_integer, + [99566] = 3, + ACTIONS(5196), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5208), 4, + ACTIONS(5248), 4, anon_sym_LBRACE, anon_sym_LT, anon_sym_extends, anon_sym_implements, - [98741] = 6, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(5210), 1, - anon_sym_extends, - STATE(435), 1, - sym_block, - STATE(2772), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [98761] = 5, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - STATE(2469), 1, - sym__rangeOperator, + [99580] = 4, + ACTIONS(5112), 1, + anon_sym_LT, + STATE(2973), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3888), 2, - anon_sym_RPAREN, + ACTIONS(4603), 3, + sym__closing_brace_marker, anon_sym_COMMA, - [98779] = 4, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(5214), 1, - sym_escape_sequence, - ACTIONS(5212), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [98795] = 5, - ACTIONS(5216), 1, + anon_sym_DASH_GT, + [99596] = 5, + ACTIONS(5250), 1, anon_sym_DOT, - ACTIONS(5220), 1, + ACTIONS(5254), 1, sym__lookback_semicolon, - STATE(807), 1, + STATE(719), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5218), 2, + ACTIONS(5252), 2, anon_sym_as, anon_sym_in, - [98813] = 5, - ACTIONS(1368), 1, + [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, + [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, + [99654] = 5, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(1370), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(5222), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(341), 2, + STATE(211), 2, sym__parenthesized_expression, sym_integer, - [98831] = 5, - ACTIONS(4924), 1, - anon_sym_EQ_GT, - ACTIONS(5224), 1, + [99672] = 5, + ACTIONS(5258), 1, anon_sym_DOT, - ACTIONS(5226), 1, - anon_sym_QMARK, + ACTIONS(5262), 1, + sym__lookback_semicolon, + STATE(554), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1778), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [98849] = 6, - ACTIONS(341), 1, - sym__closing_brace_marker, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(4428), 1, - anon_sym_COMMA, - STATE(210), 1, - sym__closing_brace, - STATE(2702), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, + ACTIONS(5260), 2, + anon_sym_as, + anon_sym_in, + [99690] = 4, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4659), 1, sym_comment, - [98869] = 4, - ACTIONS(5040), 1, - anon_sym_LT, - STATE(2960), 1, - sym_type_params, + ACTIONS(5266), 1, + sym_escape_sequence, + ACTIONS(5264), 4, + aux_sym_string_token1, + 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(4548), 3, - sym__closing_brace_marker, + 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, - [98885] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5038), 1, - anon_sym_LPAREN, - ACTIONS(5168), 1, - anon_sym_DOT, - STATE(350), 1, - sym__arg_list, - STATE(3168), 1, - sym_type_params, + STATE(2236), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [98905] = 4, - ACTIONS(5040), 1, - anon_sym_LT, - STATE(2961), 1, - sym_type_params, + 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, - ACTIONS(4558), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [98921] = 2, + [99758] = 6, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + 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(4582), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [98933] = 3, - ACTIONS(5032), 1, + [99778] = 3, + ACTIONS(5136), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1624), 4, + ACTIONS(1636), 4, anon_sym_DOT, - anon_sym_in, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_EQ_GT, - [98947] = 4, - ACTIONS(3), 1, + [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, - ACTIONS(4680), 1, sym_comment, - ACTIONS(5230), 1, - sym_escape_sequence, - ACTIONS(5228), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [98963] = 5, - ACTIONS(2066), 1, - aux_sym_integer_token1, - ACTIONS(2068), 1, - aux_sym_integer_token2, - ACTIONS(5232), 1, - anon_sym_LPAREN, + [99812] = 3, + ACTIONS(5196), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1973), 2, - sym__parenthesized_expression, - sym_integer, - [98981] = 4, - ACTIONS(5172), 1, + ACTIONS(5274), 4, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [99826] = 4, + ACTIONS(5276), 1, anon_sym_LT, - STATE(1585), 1, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4548), 3, + ACTIONS(4603), 3, sym__lookback_semicolon, anon_sym_LBRACE, anon_sym_DASH_GT, - [98997] = 5, - ACTIONS(5236), 1, - anon_sym_COLON, - ACTIONS(5238), 1, - anon_sym_EQ, - STATE(2230), 1, - sym__assignmentOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5234), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [99015] = 5, - ACTIONS(85), 1, - aux_sym_integer_token1, - ACTIONS(87), 1, - aux_sym_integer_token2, - ACTIONS(5240), 1, - anon_sym_LPAREN, + [99842] = 4, + ACTIONS(5158), 1, + anon_sym_else, + STATE(587), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1830), 2, - sym__parenthesized_expression, - sym_integer, - [99033] = 6, - ACTIONS(5018), 1, + ACTIONS(2669), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [99858] = 6, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5168), 1, - anon_sym_DOT, - ACTIONS(5200), 1, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(1502), 1, + ACTIONS(5278), 1, + anon_sym_RBRACE, + STATE(194), 1, sym__arg_list, - STATE(3175), 1, + STATE(3152), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99053] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5168), 1, + [99878] = 6, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + 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, + [99898] = 5, + ACTIONS(4945), 1, + anon_sym_EQ_GT, + ACTIONS(5282), 1, anon_sym_DOT, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(2007), 1, - sym__arg_list, - STATE(3279), 1, - sym_type_params, + ACTIONS(5284), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99073] = 6, - ACTIONS(337), 1, + ACTIONS(1785), 2, sym__closing_brace_marker, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(4428), 1, anon_sym_COMMA, - STATE(389), 1, - sym__closing_brace, - STATE(2607), 1, - aux_sym_map_repeat1, + [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, - [99093] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, + 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(4650), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [99107] = 2, + [99954] = 4, + ACTIONS(5110), 1, + anon_sym_LPAREN, + STATE(338), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4544), 5, - anon_sym_RPAREN, + ACTIONS(4623), 3, + sym__closing_brace_marker, anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [99119] = 2, + [99970] = 4, + ACTIONS(5158), 1, + anon_sym_else, + STATE(421), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4562), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [99131] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, + 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(4638), 4, - anon_sym_RPAREN, + [100006] = 6, + ACTIONS(197), 1, + sym__closing_brace_marker, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(4465), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [99145] = 6, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(5246), 1, - anon_sym_extends, - STATE(464), 1, - sym_block, - STATE(2825), 1, - aux_sym_class_declaration_repeat3, + STATE(2008), 1, + sym__closing_brace, + STATE(2749), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99165] = 6, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5248), 1, - anon_sym_extends, - STATE(796), 1, - sym_block, - STATE(2598), 1, - aux_sym_class_declaration_repeat3, + [100026] = 4, + ACTIONS(5276), 1, + anon_sym_LT, + STATE(1677), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99185] = 6, - ACTIONS(5018), 1, + ACTIONS(4609), 3, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [100042] = 6, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5168), 1, + ACTIONS(5196), 1, anon_sym_DOT, - ACTIONS(5180), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(1963), 1, + STATE(1814), 1, sym__arg_list, - STATE(3193), 1, + STATE(3307), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99205] = 6, - ACTIONS(5018), 1, + [100062] = 6, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5042), 1, - anon_sym_LPAREN, - ACTIONS(5168), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(216), 1, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1577), 1, sym__arg_list, - STATE(3161), 1, + STATE(3259), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99225] = 5, - ACTIONS(5252), 1, - sym__camelCaseIdentifier, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(3468), 1, - sym_package_name, + [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(5250), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [99243] = 4, - ACTIONS(5042), 1, - anon_sym_LPAREN, - STATE(225), 1, - sym__arg_list, + [100102] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4544), 3, + ACTIONS(4635), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - [99259] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5038), 1, - anon_sym_LPAREN, - ACTIONS(5168), 1, - anon_sym_DOT, - STATE(378), 1, - sym__arg_list, - STATE(3151), 1, - sym_type_params, + 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, - [99279] = 5, - ACTIONS(5036), 1, + [100134] = 5, + ACTIONS(5058), 1, anon_sym_EQ, - ACTIONS(5244), 1, + ACTIONS(5204), 1, anon_sym_DASH_GT, - STATE(2254), 1, + STATE(2246), 1, sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5034), 2, + ACTIONS(5056), 2, anon_sym_RPAREN, anon_sym_COMMA, - [99297] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5168), 1, + [100152] = 3, + ACTIONS(5196), 1, anon_sym_DOT, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(1802), 1, - sym__arg_list, - STATE(3236), 1, - sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99317] = 5, - ACTIONS(5030), 1, - anon_sym_EQ, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - STATE(2233), 1, - sym__assignmentOperator, + ACTIONS(5294), 4, + anon_sym_LBRACE, + 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, - ACTIONS(5028), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [99335] = 6, - ACTIONS(5018), 1, + [100186] = 6, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5168), 1, + ACTIONS(5196), 1, anon_sym_DOT, - ACTIONS(5180), 1, + ACTIONS(5256), 1, anon_sym_LPAREN, - STATE(2038), 1, + STATE(1812), 1, sym__arg_list, - STATE(3115), 1, + STATE(3308), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99355] = 6, - ACTIONS(552), 1, + [100206] = 6, + ACTIONS(207), 1, sym__closing_brace_marker, - ACTIONS(1624), 1, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(4428), 1, + ACTIONS(4465), 1, anon_sym_COMMA, - STATE(1521), 1, + STATE(1573), 1, sym__closing_brace, - STATE(2688), 1, + STATE(2765), 1, aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99375] = 3, - ACTIONS(5050), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1624), 4, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_EQ_GT, - [99389] = 6, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(4428), 1, - anon_sym_COMMA, - ACTIONS(4762), 1, - sym__closing_brace_marker, - STATE(1950), 1, - sym__closing_brace, - STATE(2530), 1, - aux_sym_map_repeat1, + [100226] = 6, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, - [99409] = 4, + [100246] = 4, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(5257), 1, + ACTIONS(1753), 1, sym_escape_sequence, - ACTIONS(5255), 4, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(1755), 4, aux_sym_string_token1, aux_sym_string_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR, - [99425] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5168), 1, + [100262] = 3, + ACTIONS(5088), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1636), 4, anon_sym_DOT, - ACTIONS(5242), 1, + anon_sym_in, + anon_sym_QMARK, + anon_sym_EQ_GT, + [100276] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(1768), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(230), 1, sym__arg_list, - STATE(3252), 1, + STATE(3226), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99445] = 5, - ACTIONS(5259), 1, + [100296] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, - ACTIONS(5263), 1, - sym__lookback_semicolon, - STATE(577), 1, - sym__semicolon, + STATE(378), 1, + sym__arg_list, + STATE(3297), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5261), 2, - anon_sym_as, - anon_sym_in, - [99463] = 3, - ACTIONS(5080), 1, - anon_sym_COLON, + [100330] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1624), 4, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [99477] = 2, + 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(4594), 5, + ACTIONS(4627), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_GT, anon_sym_EQ, - [99489] = 5, - ACTIONS(2564), 1, + [100354] = 5, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(2566), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(5265), 1, + ACTIONS(5300), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1533), 2, + STATE(382), 2, sym__parenthesized_expression, sym_integer, - [99507] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, + [100372] = 5, + 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(4654), 4, - anon_sym_RPAREN, + ACTIONS(3937), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [99521] = 4, - ACTIONS(3), 1, + anon_sym_RBRACK, + [100390] = 3, + ACTIONS(5092), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(4680), 1, sym_comment, - ACTIONS(5269), 1, - sym_escape_sequence, - ACTIONS(5267), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [99537] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5042), 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(2033), 1, + aux_sym_integer_token2, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5271), 1, - anon_sym_RBRACE, - STATE(201), 1, - sym__arg_list, - STATE(3147), 1, - sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99557] = 3, - ACTIONS(5168), 1, - anon_sym_DOT, + STATE(1779), 2, + sym__parenthesized_expression, + sym_integer, + [100422] = 4, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(213), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5273), 4, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_extends, - anon_sym_implements, - [99571] = 6, - ACTIONS(5018), 1, + ACTIONS(4623), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [100438] = 6, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5042), 1, - anon_sym_LPAREN, - ACTIONS(5168), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(234), 1, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1797), 1, sym__arg_list, - STATE(3201), 1, + STATE(3181), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99591] = 5, - ACTIONS(5275), 1, - anon_sym_DOT, - ACTIONS(5279), 1, - sym__lookback_semicolon, - STATE(420), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5277), 2, - anon_sym_as, - anon_sym_in, - [99609] = 6, - ACTIONS(5024), 1, + [100458] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5281), 1, - anon_sym_extends, - STATE(613), 1, + STATE(778), 1, sym_block, - STATE(2731), 1, + STATE(2595), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99629] = 6, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5168), 1, - anon_sym_DOT, - ACTIONS(5200), 1, - anon_sym_LPAREN, - STATE(1552), 1, - sym__arg_list, - STATE(3242), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99649] = 5, - ACTIONS(2616), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99666] = 5, - ACTIONS(4428), 1, + [100475] = 5, + ACTIONS(4465), 1, anon_sym_COMMA, - ACTIONS(4762), 1, + ACTIONS(4783), 1, sym__closing_brace_marker, - STATE(1990), 1, + STATE(1786), 1, sym__closing_brace, - STATE(3006), 1, + STATE(3030), 1, aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99683] = 5, - ACTIONS(1628), 1, + [100492] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(3802), 1, + ACTIONS(3793), 1, anon_sym_RBRACK, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99700] = 5, - ACTIONS(4082), 1, + [100509] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4017), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99717] = 5, - ACTIONS(1628), 1, + [100526] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(4170), 1, - anon_sym_RBRACK, - STATE(2469), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99734] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4630), 4, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - [99745] = 5, - ACTIONS(4084), 1, + ACTIONS(4147), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99762] = 5, - ACTIONS(5020), 1, + [100543] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - STATE(695), 1, + STATE(427), 1, sym_block, - STATE(2906), 1, + STATE(2565), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99779] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [100560] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(556), 1, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(428), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99796] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5287), 1, - sym__lookback_semicolon, - STATE(3386), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99813] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5289), 1, - anon_sym_COLON, - ACTIONS(5291), 1, - sym__lookback_semicolon, - STATE(3643), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99830] = 5, - ACTIONS(4042), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + [100577] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99847] = 5, - ACTIONS(4130), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + ACTIONS(4187), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99864] = 5, - ACTIONS(3952), 1, + [100594] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4143), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99881] = 5, - ACTIONS(4428), 1, - anon_sym_COMMA, - ACTIONS(4756), 1, - sym__closing_brace_marker, - STATE(1990), 1, - sym__closing_brace, - STATE(3006), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99898] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, + [100611] = 5, + ACTIONS(5054), 1, anon_sym_implements, - STATE(713), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(802), 1, sym_block, - STATE(2633), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99915] = 5, - ACTIONS(4090), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [99932] = 5, - ACTIONS(5018), 1, + [100628] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2539), 1, - sym__function_arg_list, - STATE(3192), 1, + ACTIONS(5304), 1, + sym__lookback_semicolon, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99949] = 5, - ACTIONS(5020), 1, + [100645] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(714), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5310), 1, + sym__lookback_semicolon, + STATE(3483), 1, sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99966] = 5, - ACTIONS(2630), 1, + [100662] = 4, + ACTIONS(5218), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + STATE(567), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [99983] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + ACTIONS(5216), 2, + anon_sym_as, + anon_sym_in, + [100677] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - STATE(508), 1, + ACTIONS(5312), 1, + anon_sym_COLON, + ACTIONS(5314), 1, + sym__lookback_semicolon, + STATE(3408), 1, sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100000] = 5, - ACTIONS(4294), 1, + [100694] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5015), 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, + [100713] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4151), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100017] = 5, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5172), 1, + [100730] = 5, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5295), 1, - sym__lookback_semicolon, - STATE(1585), 1, + 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, - [100034] = 5, - ACTIONS(4096), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + [100747] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [100051] = 5, - ACTIONS(4140), 1, + ACTIONS(3449), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100068] = 5, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3790), 1, - anon_sym_RBRACK, - STATE(2469), 1, - sym__rangeOperator, + [100764] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, - [100085] = 5, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(4118), 1, - anon_sym_RBRACE, - STATE(2469), 1, - sym__rangeOperator, + [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, - [100102] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5285), 1, + [100798] = 5, + ACTIONS(4603), 1, anon_sym_DASH_GT, - ACTIONS(5297), 1, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5322), 1, sym__lookback_semicolon, - STATE(3320), 1, - sym_block, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100119] = 5, - ACTIONS(4102), 1, + [100815] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5324), 1, + anon_sym_COLON, + ACTIONS(5326), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + STATE(3646), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100136] = 5, - ACTIONS(4142), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [100832] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100153] = 5, - ACTIONS(5244), 1, + ACTIONS(4689), 4, + sym__lookback_semicolon, + anon_sym_LBRACE, anon_sym_DASH_GT, - ACTIONS(5299), 1, - anon_sym_RPAREN, - ACTIONS(5302), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym__function_type_args_repeat1, + anon_sym_LT, + [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, - [100170] = 4, - ACTIONS(5036), 1, - anon_sym_EQ, - STATE(2254), 1, - sym__assignmentOperator, + [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, - ACTIONS(5034), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [100185] = 5, - ACTIONS(4044), 1, + [100877] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5328), 1, + anon_sym_COLON, + ACTIONS(5330), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [100202] = 4, - ACTIONS(5018), 1, - anon_sym_LT, - STATE(3273), 1, - sym_type_params, + STATE(3340), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5304), 2, - anon_sym_LBRACE, - anon_sym_implements, - [100217] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [100894] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(514), 1, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(444), 1, sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100234] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [100911] = 5, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(515), 1, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(723), 1, sym_block, - STATE(2683), 1, - aux_sym_class_declaration_repeat3, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100251] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(516), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, + [100928] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4659), 1, sym_comment, - [100268] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5285), 1, - anon_sym_DASH_GT, + ACTIONS(4975), 1, + aux_sym_string_token3, + 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(5336), 1, + anon_sym_COLON, + ACTIONS(5338), 1, sym__lookback_semicolon, - STATE(3649), 1, + STATE(3638), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100285] = 5, - ACTIONS(3970), 1, + [100964] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4161), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100302] = 5, - ACTIONS(3972), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [100981] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, - [100319] = 5, - ACTIONS(5020), 1, + [100998] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - STATE(802), 1, + STATE(458), 1, sym_block, - STATE(2906), 1, + STATE(2589), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100336] = 5, - ACTIONS(5308), 1, - anon_sym_COMMA, - ACTIONS(5310), 1, - sym__closing_brace_marker, - STATE(3032), 1, - sym__closing_brace, - STATE(3048), 1, - aux_sym_structure_type_repeat1, + [101015] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, - [100353] = 5, - ACTIONS(5283), 1, + [101032] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5312), 1, - anon_sym_COLON, - ACTIONS(5314), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5340), 1, sym__lookback_semicolon, - STATE(3495), 1, + STATE(3338), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100370] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, + [101049] = 5, + ACTIONS(5054), 1, anon_sym_implements, - STATE(777), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(693), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100387] = 5, - ACTIONS(4050), 1, + [101066] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4167), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100404] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [101083] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(522), 1, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(465), 1, sym_block, - STATE(2718), 1, + STATE(2591), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100421] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [101100] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(523), 1, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(466), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100438] = 5, - ACTIONS(5018), 1, + [101117] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2612), 1, - sym__function_arg_list, - STATE(3281), 1, + ACTIONS(5342), 1, + sym__lookback_semicolon, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100455] = 5, - ACTIONS(3978), 1, + [101134] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5344), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + STATE(3355), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100472] = 5, - ACTIONS(5020), 1, + [101151] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(817), 1, + STATE(694), 1, sym_block, - STATE(2613), 1, - aux_sym_interface_declaration_repeat1, + STATE(2666), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100489] = 5, - ACTIONS(5020), 1, + [101168] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(818), 1, + STATE(695), 1, sym_block, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100506] = 5, - ACTIONS(3980), 1, + [101185] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4169), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100523] = 5, - ACTIONS(4548), 1, + [101202] = 5, + ACTIONS(5204), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_LT, - ACTIONS(5316), 1, - sym__lookback_semicolon, - STATE(1585), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [100540] = 4, - ACTIONS(5320), 1, - sym__lookback_semicolon, - STATE(819), 1, - sym__semicolon, + 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(5318), 2, - anon_sym_as, - anon_sym_in, - [100555] = 5, - ACTIONS(5020), 1, + [101219] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - STATE(729), 1, + STATE(474), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100572] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4962), 1, - aux_sym_string_token3, - ACTIONS(5322), 1, - aux_sym_string_token4, - ACTIONS(5324), 1, - sym_escape_sequence, - STATE(2604), 1, - aux_sym_string_repeat2, - [100591] = 5, - ACTIONS(5018), 1, + [101236] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - ACTIONS(5038), 1, - anon_sym_LPAREN, - STATE(380), 1, - sym__arg_list, - STATE(3245), 1, + ACTIONS(5350), 1, + sym__lookback_semicolon, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100608] = 5, - ACTIONS(5283), 1, + [101253] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5326), 1, + ACTIONS(5352), 1, + anon_sym_COLON, + ACTIONS(5354), 1, sym__lookback_semicolon, - STATE(3408), 1, + STATE(3511), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100625] = 5, - ACTIONS(1778), 1, + [101270] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2637), 1, sym__lookback_semicolon, - ACTIONS(5080), 1, - anon_sym_EQ_GT, - ACTIONS(5328), 1, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101287] = 5, + ACTIONS(1785), 1, + anon_sym_RBRACE, + ACTIONS(4981), 1, anon_sym_DOT, - ACTIONS(5330), 1, + ACTIONS(4983), 1, anon_sym_QMARK, + ACTIONS(5136), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100642] = 6, - ACTIONS(3), 1, + [101304] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + 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, - ACTIONS(4680), 1, sym_comment, - ACTIONS(5332), 1, - aux_sym_string_token3, - ACTIONS(5334), 1, - aux_sym_string_token4, - ACTIONS(5337), 1, - sym_escape_sequence, - STATE(2588), 1, - aux_sym_string_repeat2, - [100661] = 5, - ACTIONS(4182), 1, + [101321] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2643), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100678] = 5, - ACTIONS(4116), 1, + [101338] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4171), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100695] = 5, - ACTIONS(1628), 1, + [101355] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(4173), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4184), 1, - anon_sym_while, - STATE(2469), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100712] = 5, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2713), 1, - sym__function_arg_list, - STATE(3237), 1, - sym_type_params, + [101372] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100729] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4992), 1, - aux_sym_string_token3, - ACTIONS(5340), 1, - aux_sym_string_token4, - ACTIONS(5342), 1, - sym_escape_sequence, - STATE(2588), 1, - aux_sym_string_repeat2, - [100748] = 5, - ACTIONS(4152), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [100765] = 5, + ACTIONS(4639), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [101383] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5058), 1, - anon_sym_STAR, - STATE(2452), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [100782] = 3, - ACTIONS(5344), 1, - anon_sym_COLON, + 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, - ACTIONS(1624), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [100795] = 5, - ACTIONS(2608), 1, - anon_sym_catch, - ACTIONS(4224), 1, + [101400] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4181), 1, sym__lookback_semicolon, - ACTIONS(5347), 1, - anon_sym_else, - STATE(773), 1, - sym_else_clause, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100812] = 5, - ACTIONS(5020), 1, + [101417] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - STATE(789), 1, + STATE(491), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100829] = 4, - ACTIONS(4210), 1, - sym__lookback_semicolon, - ACTIONS(5349), 1, - anon_sym_catch, + [101434] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, - STATE(3092), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [100844] = 5, - ACTIONS(3996), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [101451] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, - [100861] = 5, - ACTIONS(4548), 1, + [101468] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5308), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_LT, - ACTIONS(5351), 1, + ACTIONS(5358), 1, sym__lookback_semicolon, - STATE(1585), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [100878] = 5, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2741), 1, - sym__function_arg_list, - STATE(3265), 1, - sym_type_params, + STATE(3330), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100895] = 5, - ACTIONS(5283), 1, + [101485] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5353), 1, - anon_sym_COLON, - ACTIONS(5355), 1, - sym__lookback_semicolon, - STATE(3504), 1, + STATE(660), 1, sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100912] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4988), 1, - aux_sym_string_token3, - ACTIONS(5340), 1, - aux_sym_string_token4, - ACTIONS(5342), 1, - sym_escape_sequence, - STATE(2588), 1, - aux_sym_string_repeat2, - [100931] = 4, - ACTIONS(5018), 1, - anon_sym_LT, - STATE(3274), 1, - sym_type_params, + [101502] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4025), 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(5357), 2, - anon_sym_LBRACE, - anon_sym_extends, - [100946] = 5, - ACTIONS(1628), 1, + [101519] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(4189), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4144), 1, - anon_sym_RBRACK, - STATE(2469), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100963] = 5, - ACTIONS(337), 1, - sym__closing_brace_marker, - ACTIONS(4428), 1, - anon_sym_COMMA, - STATE(353), 1, - sym__closing_brace, - STATE(3006), 1, - aux_sym_map_repeat1, + [101536] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + 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, - [100980] = 5, - ACTIONS(5018), 1, + [101570] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2784), 1, - sym__function_arg_list, - STATE(3283), 1, + ACTIONS(5360), 1, + sym__lookback_semicolon, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [100997] = 5, - ACTIONS(5020), 1, + [101587] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(812), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5362), 1, + sym__lookback_semicolon, + STATE(3486), 1, sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101014] = 4, - ACTIONS(5263), 1, + [101604] = 4, + ACTIONS(5366), 1, sym__lookback_semicolon, - STATE(577), 1, + STATE(751), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5261), 2, + ACTIONS(5364), 2, anon_sym_as, anon_sym_in, - [101029] = 5, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3830), 1, - anon_sym_RBRACK, - STATE(2469), 1, - sym__rangeOperator, + [101619] = 5, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2547), 1, + sym__function_arg_list, + STATE(3319), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101046] = 5, - ACTIONS(5283), 1, + [101636] = 5, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5359), 1, - anon_sym_COLON, - ACTIONS(5361), 1, - sym__lookback_semicolon, - STATE(3435), 1, + 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, - [101063] = 5, - ACTIONS(5020), 1, + [101653] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(814), 1, + STATE(661), 1, sym_block, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, + STATE(2799), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101080] = 5, - ACTIONS(4236), 1, + [101670] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4197), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101097] = 4, - ACTIONS(5365), 1, - sym__lookback_semicolon, - STATE(649), 1, - sym__semicolon, + [101687] = 3, + ACTIONS(5368), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5363), 2, - anon_sym_as, - anon_sym_in, - [101112] = 2, + ACTIONS(1636), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [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(4630), 4, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT, - [101123] = 5, - ACTIONS(4178), 1, + [101717] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4199), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101140] = 5, - ACTIONS(3262), 1, + [101734] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3979), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101157] = 3, - ACTIONS(4146), 1, - sym__lookback_semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5367), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [101170] = 4, - ACTIONS(5196), 1, - sym__lookback_semicolon, - STATE(591), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5194), 2, - anon_sym_as, - anon_sym_in, - [101185] = 5, - ACTIONS(5020), 1, + [101751] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(778), 1, + STATE(663), 1, sym_block, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101202] = 5, - ACTIONS(4146), 1, + [101768] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4201), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101219] = 5, - ACTIONS(4058), 1, + [101785] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3995), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101236] = 5, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_QMARK, - ACTIONS(5050), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101253] = 5, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5369), 1, - anon_sym_COMMA, - ACTIONS(5371), 1, - anon_sym_GT, - STATE(3096), 1, - aux_sym_type_params_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101270] = 5, - ACTIONS(3420), 1, + [101802] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4203), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101287] = 5, - ACTIONS(1628), 1, + [101819] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(4128), 1, - anon_sym_RBRACK, - STATE(2469), 1, + ACTIONS(3997), 1, + anon_sym_while, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101304] = 4, - ACTIONS(3976), 1, - sym__lookback_semicolon, - ACTIONS(5373), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(626), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [101319] = 5, - ACTIONS(5018), 1, + [101836] = 5, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5293), 1, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(2571), 1, + STATE(2738), 1, sym__function_arg_list, - STATE(3280), 1, + STATE(3254), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101336] = 5, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5369), 1, - anon_sym_COMMA, - ACTIONS(5375), 1, - anon_sym_GT, - STATE(2907), 1, - aux_sym_type_params_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101353] = 5, - ACTIONS(4060), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101370] = 5, - ACTIONS(4168), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101387] = 5, - ACTIONS(5020), 1, + [101853] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - STATE(736), 1, + STATE(515), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101404] = 5, - ACTIONS(3976), 1, + [101870] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4205), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101421] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(737), 1, - sym_block, - STATE(2811), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101438] = 5, - ACTIONS(5020), 1, + [101887] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(738), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5375), 1, + sym__lookback_semicolon, + STATE(3621), 1, sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101455] = 4, - ACTIONS(5379), 1, + [101904] = 5, + ACTIONS(2629), 1, + anon_sym_catch, + ACTIONS(4131), 1, sym__lookback_semicolon, - STATE(801), 1, - sym__semicolon, + ACTIONS(5377), 1, + anon_sym_else, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5377), 2, - anon_sym_as, - anon_sym_in, - [101470] = 5, - ACTIONS(5020), 1, + [101921] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - STATE(663), 1, + STATE(521), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101487] = 5, - ACTIONS(5020), 1, + [101938] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - STATE(665), 1, + STATE(522), 1, sym_block, - STATE(2536), 1, + STATE(2639), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101504] = 5, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5381), 1, - anon_sym_RPAREN, - STATE(3079), 1, - aux_sym__function_type_args_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101521] = 5, - ACTIONS(5020), 1, + [101955] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, + ACTIONS(5054), 1, anon_sym_implements, - STATE(666), 1, + STATE(523), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101538] = 5, - ACTIONS(5283), 1, + [101972] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5285), 1, + ACTIONS(5308), 1, anon_sym_DASH_GT, - ACTIONS(5384), 1, + ACTIONS(5379), 1, sym__lookback_semicolon, - STATE(3687), 1, + STATE(3656), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101555] = 4, - ACTIONS(5030), 1, - anon_sym_EQ, - STATE(2233), 1, - sym__assignmentOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5028), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [101570] = 5, - ACTIONS(1778), 1, - anon_sym_in, - ACTIONS(5032), 1, - anon_sym_EQ_GT, - ACTIONS(5135), 1, - anon_sym_DOT, - ACTIONS(5137), 1, - anon_sym_QMARK, + [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, - [101587] = 4, - ACTIONS(5178), 1, + [102006] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4037), 1, sym__lookback_semicolon, - STATE(803), 1, - sym__semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5176), 2, - anon_sym_as, - anon_sym_in, - [101602] = 5, - ACTIONS(4204), 1, + [102023] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4215), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101619] = 5, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_LT, - ACTIONS(5386), 1, - sym__lookback_semicolon, - STATE(1585), 1, - sym_type_params, + [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, - [101636] = 4, - ACTIONS(5390), 1, + [102057] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4219), 1, sym__lookback_semicolon, - STATE(419), 1, - sym__semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5388), 2, - anon_sym_as, - anon_sym_in, - [101651] = 4, - ACTIONS(5279), 1, - sym__lookback_semicolon, - STATE(420), 1, - sym__semicolon, + [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(5277), 2, - anon_sym_as, - anon_sym_in, - [101666] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5392), 1, + [102091] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4221), 1, sym__lookback_semicolon, - STATE(3403), 1, - sym_block, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101683] = 5, - ACTIONS(3422), 1, + [102108] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3993), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101700] = 2, - ACTIONS(3), 2, + [102125] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4659), 1, sym_comment, - ACTIONS(4614), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [101711] = 5, - ACTIONS(4210), 1, + 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(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101728] = 4, - ACTIONS(5220), 1, + [102161] = 4, + ACTIONS(5387), 1, sym__lookback_semicolon, - STATE(807), 1, + STATE(584), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5218), 2, + ACTIONS(5385), 2, anon_sym_as, anon_sym_in, - [101743] = 5, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5394), 1, - anon_sym_RPAREN, - STATE(2903), 1, - aux_sym__function_type_args_repeat1, + [102176] = 4, + ACTIONS(5194), 1, + sym__lookback_semicolon, + STATE(585), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101760] = 5, - ACTIONS(3410), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + ACTIONS(5192), 2, + anon_sym_as, + anon_sym_in, + [102191] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [101777] = 6, - ACTIONS(3), 1, + [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, - ACTIONS(4680), 1, sym_comment, - ACTIONS(4998), 1, - aux_sym_string_token3, - ACTIONS(5396), 1, - aux_sym_string_token4, - ACTIONS(5398), 1, - sym_escape_sequence, - STATE(2593), 1, - aux_sym_string_repeat2, - [101796] = 3, - ACTIONS(5400), 1, - anon_sym_COLON, + [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(1624), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ_GT, - [101809] = 5, - ACTIONS(4180), 1, + [102242] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3461), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101826] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(674), 1, - sym_block, - STATE(2699), 1, - aux_sym_class_declaration_repeat3, + [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, sym_comment, - [101843] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(675), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, + [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, sym_comment, - [101860] = 2, + [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(4590), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [101871] = 5, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5172), 1, + [102310] = 5, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5402), 1, - sym__lookback_semicolon, - STATE(1585), 1, + 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, - [101888] = 5, - ACTIONS(4062), 1, + [102327] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4241), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101905] = 5, - ACTIONS(4068), 1, + [102344] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3444), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102361] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + ACTIONS(4245), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101922] = 5, - ACTIONS(1778), 1, + [102378] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4057), 1, sym__lookback_semicolon, - ACTIONS(5080), 1, - anon_sym_EQ_GT, - ACTIONS(5404), 1, - anon_sym_DOT, - ACTIONS(5406), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [101939] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4942), 1, - aux_sym_string_token3, - ACTIONS(5408), 1, - aux_sym_string_token4, - ACTIONS(5410), 1, - sym_escape_sequence, - STATE(2684), 1, - aux_sym_string_repeat2, - [101958] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5412), 1, - sym__lookback_semicolon, - STATE(3599), 1, - sym_block, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101975] = 5, - ACTIONS(4216), 1, + [102395] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4247), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [101992] = 5, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5200), 1, - anon_sym_LPAREN, - STATE(1516), 1, - sym__arg_list, - STATE(3297), 1, - sym_type_params, + [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, - [102009] = 4, - ACTIONS(5416), 1, + [102429] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4257), 1, sym__lookback_semicolon, - STATE(442), 1, - sym__semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5414), 2, - anon_sym_as, - anon_sym_in, - [102024] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4968), 1, - aux_sym_string_token3, - ACTIONS(5418), 1, - aux_sym_string_token4, - ACTIONS(5420), 1, - sym_escape_sequence, - STATE(2695), 1, - aux_sym_string_repeat2, - [102043] = 5, - ACTIONS(3440), 1, + [102446] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4011), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102060] = 5, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5042), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym__arg_list, - STATE(3147), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102077] = 5, - ACTIONS(1778), 1, - anon_sym_in, - ACTIONS(4984), 1, - anon_sym_DOT, - ACTIONS(4986), 1, - anon_sym_QMARK, - ACTIONS(5032), 1, - anon_sym_EQ_GT, + [102463] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(4055), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102094] = 5, - ACTIONS(4194), 1, + [102480] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3451), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102111] = 5, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5062), 1, - anon_sym_STAR, - STATE(2466), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102128] = 5, - ACTIONS(4064), 1, + [102497] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4079), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102145] = 5, - ACTIONS(3982), 1, + [102514] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4041), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102162] = 4, - ACTIONS(4216), 1, + [102531] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4013), 1, sym__lookback_semicolon, - ACTIONS(5422), 1, - anon_sym_catch, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(623), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [102177] = 4, - ACTIONS(5162), 1, - sym__lookback_semicolon, - STATE(764), 1, - sym__semicolon, + [102548] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5160), 2, - anon_sym_as, - anon_sym_in, - [102192] = 2, + ACTIONS(4689), 4, + sym__closing_brace_marker, + anon_sym_COMMA, + 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, sym_comment, - ACTIONS(5125), 4, + [102576] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4005), 1, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_as, - anon_sym_in, - [102203] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102220] = 6, - 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(4680), 1, sym_comment, - ACTIONS(4932), 1, - aux_sym_string_token3, - ACTIONS(5340), 1, - aux_sym_string_token4, - ACTIONS(5342), 1, - sym_escape_sequence, - STATE(2588), 1, - aux_sym_string_repeat2, - [102239] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, + [102610] = 5, + ACTIONS(5054), 1, anon_sym_implements, - STATE(684), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(763), 1, sym_block, - STATE(2906), 1, + STATE(2760), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102256] = 5, - ACTIONS(1778), 1, - anon_sym_COLON, - ACTIONS(5143), 1, - anon_sym_EQ_GT, - ACTIONS(5424), 1, - anon_sym_DOT, - ACTIONS(5426), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102273] = 5, + [102627] = 5, ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5428), 1, - anon_sym_STAR, - STATE(2459), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102290] = 5, - ACTIONS(552), 1, - sym__closing_brace_marker, - ACTIONS(4428), 1, - anon_sym_COMMA, - STATE(1537), 1, - sym__closing_brace, - STATE(3006), 1, - aux_sym_map_repeat1, + 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, - [102307] = 5, - ACTIONS(1778), 1, - anon_sym_COLON, - ACTIONS(5143), 1, + [102644] = 5, + ACTIONS(1785), 1, + anon_sym_in, + ACTIONS(5088), 1, anon_sym_EQ_GT, - ACTIONS(5430), 1, + ACTIONS(5146), 1, anon_sym_DOT, - ACTIONS(5432), 1, + ACTIONS(5148), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102324] = 4, - ACTIONS(4182), 1, + [102661] = 4, + ACTIONS(3995), 1, sym__lookback_semicolon, - ACTIONS(5422), 1, + ACTIONS(5394), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(633), 2, + STATE(628), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [102339] = 5, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_LT, - ACTIONS(5434), 1, - sym__lookback_semicolon, - STATE(1585), 1, - sym_type_params, + [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, - [102356] = 5, - ACTIONS(1628), 1, + [102693] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(4049), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4028), 1, - anon_sym_while, - STATE(2469), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102373] = 5, - ACTIONS(4066), 1, + [102710] = 4, + ACTIONS(5398), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + STATE(419), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102390] = 5, - ACTIONS(1628), 1, + ACTIONS(5396), 2, + anon_sym_as, + anon_sym_in, + [102725] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(3431), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(3848), 1, - anon_sym_RBRACK, - STATE(2469), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102407] = 6, + [102742] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5400), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102759] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(4680), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(4999), 1, aux_sym_string_token3, - ACTIONS(5340), 1, + ACTIONS(5316), 1, aux_sym_string_token4, - ACTIONS(5342), 1, + ACTIONS(5318), 1, sym_escape_sequence, - STATE(2588), 1, + STATE(2775), 1, aux_sym_string_repeat2, - [102426] = 5, - ACTIONS(5436), 1, - anon_sym_STAR, - ACTIONS(5438), 1, - sym__pascalCaseIdentifier, - STATE(2696), 1, - aux_sym__type_path_repeat1, - STATE(3382), 1, - sym_type_name, + [102778] = 5, + ACTIONS(5402), 1, + anon_sym_COMMA, + 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, - [102443] = 5, - ACTIONS(4224), 1, + [102795] = 4, + ACTIONS(4043), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + ACTIONS(5406), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102460] = 5, - ACTIONS(5283), 1, + STATE(636), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102810] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5441), 1, + ACTIONS(5408), 1, anon_sym_COLON, - ACTIONS(5443), 1, + ACTIONS(5410), 1, sym__lookback_semicolon, - STATE(3356), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102477] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(703), 1, + STATE(3624), 1, sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102494] = 5, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5445), 1, - anon_sym_STAR, - STATE(2526), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102511] = 5, - ACTIONS(4108), 1, + [102827] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4065), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102528] = 5, - ACTIONS(341), 1, - sym__closing_brace_marker, - ACTIONS(4428), 1, - anon_sym_COMMA, - STATE(228), 1, - sym__closing_brace, - STATE(3006), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102545] = 5, - ACTIONS(1628), 1, + [102844] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(4019), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4196), 1, - anon_sym_RPAREN, - STATE(2469), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102562] = 5, - ACTIONS(1628), 1, + [102861] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, + ACTIONS(4031), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(3800), 1, - anon_sym_RBRACK, - STATE(2469), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102579] = 5, - ACTIONS(3431), 1, + [102878] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4043), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102596] = 5, - ACTIONS(5244), 1, + [102895] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(652), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102912] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5308), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5447), 1, - anon_sym_RPAREN, - STATE(2903), 1, - aux_sym__function_type_args_repeat1, + ACTIONS(5412), 1, + sym__lookback_semicolon, + STATE(3502), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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, - [102613] = 5, - ACTIONS(2658), 1, + [102946] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4039), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102630] = 5, - ACTIONS(4040), 1, + [102963] = 3, + ACTIONS(5416), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1636), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ_GT, + [102976] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4271), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102647] = 5, - ACTIONS(2610), 1, + [102993] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4045), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102664] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(614), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, + [103010] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4659), 1, sym_comment, - [102681] = 5, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(615), 1, - sym_block, - STATE(2732), 1, - aux_sym_interface_declaration_repeat1, + 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, + ACTIONS(5110), 1, + anon_sym_LPAREN, + STATE(369), 1, + sym__arg_list, + STATE(3264), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102698] = 5, - ACTIONS(5072), 1, + [103046] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(616), 1, + STATE(670), 1, sym_block, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, + STATE(2569), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102715] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5450), 1, - anon_sym_COLON, - ACTIONS(5452), 1, - sym__lookback_semicolon, - STATE(3424), 1, - sym_block, + [103063] = 4, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(3269), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102732] = 3, - ACTIONS(2604), 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(5424), 1, + anon_sym_DOT, + ACTIONS(5426), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1852), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [102745] = 5, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(3994), 1, - anon_sym_RBRACK, - STATE(2469), 1, - sym__rangeOperator, + [103095] = 5, + ACTIONS(193), 1, + sym__closing_brace_marker, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(215), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102762] = 5, - ACTIONS(4232), 1, + [103112] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4097), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102779] = 5, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(4154), 1, - anon_sym_RBRACK, - STATE(2469), 1, - sym__rangeOperator, + [103129] = 4, + ACTIONS(4065), 1, + sym__lookback_semicolon, + ACTIONS(5428), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102796] = 5, - ACTIONS(5024), 1, + STATE(2970), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103144] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(544), 1, + STATE(735), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102813] = 5, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5369), 1, - anon_sym_COMMA, - ACTIONS(5454), 1, - anon_sym_GT, - STATE(2958), 1, - aux_sym_type_params_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [102830] = 4, - ACTIONS(5458), 1, + [103161] = 4, + ACTIONS(5432), 1, sym__lookback_semicolon, - STATE(470), 1, + STATE(447), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5456), 2, + ACTIONS(5430), 2, anon_sym_as, anon_sym_in, - [102845] = 5, - ACTIONS(5024), 1, + [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(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(545), 1, + STATE(772), 1, sym_block, - STATE(2537), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102862] = 5, - ACTIONS(3657), 1, + [103212] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3977), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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, + [103246] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [102879] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(546), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, + [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, - [102896] = 3, - ACTIONS(4200), 1, + [103280] = 3, + ACTIONS(4009), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5460), 3, + ACTIONS(5434), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - [102909] = 5, - ACTIONS(4200), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + [103293] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [102926] = 5, - ACTIONS(4110), 1, + [103310] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4035), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102943] = 5, - ACTIONS(3442), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [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, - [102960] = 5, - ACTIONS(3648), 1, + [103344] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4009), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102977] = 5, - ACTIONS(4006), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [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, + [103378] = 4, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(3118), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [102994] = 5, - ACTIONS(5283), 1, + ACTIONS(5443), 2, anon_sym_LBRACE, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5462), 1, + anon_sym_extends, + [103393] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3189), 1, sym__lookback_semicolon, - STATE(3470), 1, - sym_block, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103011] = 5, - ACTIONS(5024), 1, + [103410] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(429), 1, + STATE(671), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103028] = 5, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(430), 1, - sym_block, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, + [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, - [103045] = 5, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_LT, - ACTIONS(5464), 1, - sym__lookback_semicolon, - STATE(1585), 1, - sym_type_params, + [103444] = 5, + ACTIONS(5402), 1, + anon_sym_COMMA, + 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, - [103062] = 5, - ACTIONS(3314), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + [103461] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [103079] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5466), 1, + [103478] = 5, + ACTIONS(1785), 1, anon_sym_COLON, - ACTIONS(5468), 1, - sym__lookback_semicolon, - STATE(3526), 1, - sym_block, + ACTIONS(5152), 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, - [103096] = 5, - ACTIONS(3412), 1, + [103495] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3442), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103113] = 5, - ACTIONS(5244), 1, + [103512] = 5, + ACTIONS(5084), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(773), 1, + sym_block, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103529] = 3, + ACTIONS(2625), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1833), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [103542] = 5, + ACTIONS(5204), 1, anon_sym_DASH_GT, - ACTIONS(5302), 1, + ACTIONS(5346), 1, anon_sym_COMMA, - ACTIONS(5470), 1, - anon_sym_RPAREN, - STATE(3079), 1, - aux_sym__function_type_args_repeat1, + ACTIONS(5453), 1, + anon_sym_GT, + STATE(2951), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103130] = 5, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(2016), 1, - sym__arg_list, - STATE(3264), 1, - sym_type_params, + [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, - [103147] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(704), 1, - sym_block, - STATE(2583), 1, - aux_sym_class_declaration_repeat3, + [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, - [103164] = 5, - ACTIONS(5024), 1, + [103593] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(436), 1, + STATE(785), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103181] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5473), 1, - anon_sym_COLON, - ACTIONS(5475), 1, + [103610] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5455), 1, sym__lookback_semicolon, - STATE(3550), 1, - sym_block, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103198] = 5, - ACTIONS(3350), 1, + [103627] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4131), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103215] = 4, - ACTIONS(4242), 1, + [103644] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5457), 1, sym__lookback_semicolon, - ACTIONS(5373), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(643), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103230] = 5, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(440), 1, - sym_block, - STATE(2785), 1, - aux_sym_interface_declaration_repeat1, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103247] = 5, - ACTIONS(5072), 1, + [103661] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(441), 1, + ACTIONS(5459), 1, + anon_sym_COLON, + ACTIONS(5461), 1, + sym__lookback_semicolon, + STATE(3642), 1, sym_block, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103264] = 5, - ACTIONS(4242), 1, + [103678] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4061), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103281] = 5, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(4984), 1, - anon_sym_DOT, - ACTIONS(4986), 1, - anon_sym_QMARK, - ACTIONS(5050), 1, - anon_sym_EQ_GT, + [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, - [103298] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, + [103712] = 5, + ACTIONS(5054), 1, anon_sym_implements, - STATE(705), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(796), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103315] = 5, - ACTIONS(5283), 1, + [103729] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5466), 1, anon_sym_COLON, - ACTIONS(5479), 1, + ACTIONS(5468), 1, sym__lookback_semicolon, - STATE(3358), 1, + STATE(3550), 1, sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103332] = 5, - ACTIONS(5283), 1, + [103746] = 5, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5481), 1, - sym__lookback_semicolon, - STATE(3505), 1, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(801), 1, sym_block, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103349] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, + [103763] = 5, + ACTIONS(5054), 1, anon_sym_implements, - STATE(782), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(790), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103366] = 5, - ACTIONS(4000), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103383] = 4, - ACTIONS(4288), 1, + [103780] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5470), 1, sym__lookback_semicolon, - ACTIONS(5483), 1, - anon_sym_catch, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(960), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103398] = 5, - ACTIONS(2648), 1, + [103797] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4119), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103415] = 5, - ACTIONS(4074), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [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, - [103432] = 5, - ACTIONS(3414), 1, + [103831] = 4, + ACTIONS(5474), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + STATE(807), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103449] = 4, - ACTIONS(4248), 1, - sym__lookback_semicolon, - ACTIONS(5485), 1, - anon_sym_catch, + ACTIONS(5472), 2, + anon_sym_as, + anon_sym_in, + [103846] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(578), 1, + sym_block, + STATE(2784), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(599), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103464] = 4, - ACTIONS(4252), 1, - sym__lookback_semicolon, - ACTIONS(5487), 1, - anon_sym_catch, + [103863] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(579), 1, + sym_block, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2818), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103479] = 4, - ACTIONS(4256), 1, + [103880] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5476), 1, + anon_sym_COLON, + ACTIONS(5478), 1, sym__lookback_semicolon, - ACTIONS(5485), 1, - anon_sym_catch, + STATE(3556), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(603), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103494] = 5, - ACTIONS(5020), 1, + [103897] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(743), 1, + ACTIONS(5480), 1, + anon_sym_COLON, + ACTIONS(5482), 1, + sym__lookback_semicolon, + STATE(3582), 1, sym_block, - STATE(2638), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103511] = 5, - ACTIONS(4016), 1, + [103914] = 3, + ACTIONS(4157), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103528] = 5, - ACTIONS(4248), 1, + ACTIONS(5484), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [103927] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4157), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103545] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_block, - STATE(2793), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103562] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(451), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103579] = 5, - ACTIONS(4112), 1, + [103944] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4175), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103596] = 5, - ACTIONS(4548), 1, + [103961] = 5, + ACTIONS(4603), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, + ACTIONS(5276), 1, anon_sym_LT, - ACTIONS(5489), 1, + ACTIONS(5486), 1, sym__lookback_semicolon, - STATE(1585), 1, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103613] = 5, - ACTIONS(4252), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + [103978] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [103630] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5285), 1, + [103995] = 5, + ACTIONS(5204), 1, anon_sym_DASH_GT, - ACTIONS(5491), 1, - sym__lookback_semicolon, - STATE(3635), 1, - sym_block, + 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, - [103647] = 5, - ACTIONS(4256), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [104012] = 4, + ACTIONS(5058), 1, + anon_sym_EQ, + STATE(2246), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103664] = 5, - ACTIONS(5020), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(788), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, + 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, - [103681] = 5, - ACTIONS(4022), 1, + [104044] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4135), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103698] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(459), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, + [104061] = 5, + ACTIONS(197), 1, + sym__closing_brace_marker, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(1758), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104078] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103715] = 5, - ACTIONS(4548), 1, + ACTIONS(4631), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(5172), 1, + [104089] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + 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(5493), 1, - sym__lookback_semicolon, - STATE(1585), 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, - [103732] = 4, - ACTIONS(4260), 1, + [104125] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3671), 1, sym__lookback_semicolon, - ACTIONS(5495), 1, - anon_sym_catch, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(608), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103747] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5497), 1, - anon_sym_COLON, - ACTIONS(5499), 1, + [104142] = 4, + ACTIONS(5496), 1, sym__lookback_semicolon, - STATE(3667), 1, - sym_block, + STATE(749), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103764] = 5, - ACTIONS(4260), 1, + 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(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103781] = 5, - ACTIONS(4114), 1, + [104174] = 4, + ACTIONS(4097), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + ACTIONS(5394), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(621), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104189] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [103798] = 4, - ACTIONS(4292), 1, + [104206] = 4, + ACTIONS(5290), 1, sym__lookback_semicolon, - ACTIONS(5501), 1, - anon_sym_catch, + STATE(750), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(952), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103813] = 5, - ACTIONS(5024), 1, + 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(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(465), 1, + STATE(826), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103830] = 5, - ACTIONS(5020), 1, + [104257] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(783), 1, + STATE(827), 1, sym_block, - STATE(2621), 1, - aux_sym_interface_declaration_repeat1, + STATE(2679), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103847] = 4, - ACTIONS(4266), 1, - sym__lookback_semicolon, - ACTIONS(5149), 1, - anon_sym_catch, + [104274] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(828), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2437), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103862] = 4, - ACTIONS(4270), 1, + [104291] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3345), 1, sym__lookback_semicolon, - ACTIONS(5483), 1, - anon_sym_catch, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(969), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [103877] = 4, - ACTIONS(4274), 1, + [104308] = 4, + ACTIONS(4227), 1, sym__lookback_semicolon, - ACTIONS(5149), 1, + ACTIONS(5406), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2441), 2, + STATE(642), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [103892] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5503), 1, - anon_sym_COLON, - ACTIONS(5505), 1, - sym__lookback_semicolon, - STATE(3693), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [103909] = 5, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(467), 1, - sym_block, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, + [104323] = 5, + ACTIONS(207), 1, + sym__closing_brace_marker, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(1524), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103926] = 5, - ACTIONS(4266), 1, + [104340] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4227), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103943] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4978), 1, - aux_sym_string_token3, - ACTIONS(5507), 1, - aux_sym_string_token4, - ACTIONS(5509), 1, - sym_escape_sequence, - STATE(2823), 1, - aux_sym_string_repeat2, - [103962] = 5, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_LPAREN, - STATE(1943), 1, - sym__arg_list, - STATE(3220), 1, - sym_type_params, + [104357] = 4, + ACTIONS(5118), 1, + anon_sym_EQ, + STATE(2236), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103979] = 5, - ACTIONS(4222), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + ACTIONS(5116), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [104372] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [103996] = 5, - ACTIONS(4270), 1, + [104389] = 4, + ACTIONS(5262), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + STATE(554), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104013] = 5, - ACTIONS(4032), 1, + 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(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104030] = 5, - ACTIONS(4274), 1, + [104421] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4127), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104047] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(480), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [104064] = 4, - ACTIONS(3362), 1, - anon_sym_else, - ACTIONS(5511), 1, + [104438] = 4, + ACTIONS(4311), 1, + sym__lookback_semicolon, + ACTIONS(5498), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2794), 2, + STATE(965), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [104079] = 5, - ACTIONS(5020), 1, + [104453] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104470] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - anon_sym_extends, - STATE(785), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5500), 1, + sym__lookback_semicolon, + STATE(3450), 1, sym_block, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104096] = 5, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_LT, - ACTIONS(5514), 1, + [104487] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5502), 1, + aux_sym_string_token3, + ACTIONS(5504), 1, + aux_sym_string_token4, + ACTIONS(5507), 1, + sym_escape_sequence, + STATE(2775), 1, + aux_sym_string_repeat2, + [104506] = 4, + ACTIONS(5228), 1, sym__lookback_semicolon, - STATE(1585), 1, - sym_type_params, + STATE(742), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104113] = 4, - ACTIONS(4276), 1, + ACTIONS(5226), 2, + anon_sym_as, + anon_sym_in, + [104521] = 4, + ACTIONS(4253), 1, sym__lookback_semicolon, - ACTIONS(5114), 1, + ACTIONS(5510), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2370), 2, + STATE(598), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [104128] = 4, - ACTIONS(4280), 1, + [104536] = 4, + ACTIONS(4259), 1, sym__lookback_semicolon, - ACTIONS(5501), 1, + ACTIONS(5512), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(956), 2, + STATE(2826), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [104143] = 4, - ACTIONS(4284), 1, + [104551] = 4, + ACTIONS(4263), 1, sym__lookback_semicolon, - ACTIONS(5114), 1, + ACTIONS(5510), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2374), 2, + STATE(602), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [104158] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(481), 1, - sym_block, - STATE(2549), 1, - aux_sym_class_declaration_repeat3, + [104566] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(4111), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104175] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [104583] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(482), 1, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(606), 1, sym_block, - STATE(2906), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104192] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5285), 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, + sym_comment, + [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, + [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, + [104651] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, ACTIONS(5516), 1, sym__lookback_semicolon, - STATE(3479), 1, - sym_block, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104209] = 5, - ACTIONS(4276), 1, + [104668] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4259), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104226] = 5, - ACTIONS(4230), 1, + [104685] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5164), 4, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + anon_sym_DOT, + anon_sym_as, + anon_sym_in, + [104696] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [104243] = 5, - ACTIONS(4280), 1, + [104713] = 4, + ACTIONS(4273), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + ACTIONS(5518), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(417), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104728] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5520), 1, + anon_sym_COLON, + ACTIONS(5522), 1, + sym__lookback_semicolon, + STATE(3413), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104745] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [104260] = 5, - ACTIONS(4228), 1, + [104762] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4027), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + STATE(2478), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104277] = 5, - ACTIONS(4036), 1, + [104779] = 4, + ACTIONS(4317), 1, + sym__lookback_semicolon, + ACTIONS(5524), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + 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, + STATE(970), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104824] = 4, + ACTIONS(4287), 1, sym__lookback_semicolon, - ACTIONS(4466), 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(5084), 1, + anon_sym_LBRACE, + STATE(806), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104856] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4279), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104873] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(686), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104890] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [104294] = 5, - ACTIONS(4284), 1, + [104907] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5526), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104941] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4287), 1, sym__lookback_semicolon, - ACTIONS(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104958] = 5, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5392), 1, + anon_sym_COMMA, + ACTIONS(5528), 1, + anon_sym_RPAREN, + STATE(2892), 1, + aux_sym__function_type_args_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104975] = 4, + ACTIONS(3361), 1, + anon_sym_else, + ACTIONS(5531), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2805), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104990] = 5, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + 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, + [105007] = 4, + ACTIONS(4291), 1, + sym__lookback_semicolon, + ACTIONS(5132), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + 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, + [105069] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [104311] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [105086] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(488), 1, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(615), 1, sym_block, - STATE(2563), 1, + STATE(2905), 1, aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104328] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, + [105103] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - STATE(489), 1, + ACTIONS(5537), 1, + anon_sym_COLON, + ACTIONS(5539), 1, + sym__lookback_semicolon, + STATE(3433), 1, sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104345] = 5, - ACTIONS(5020), 1, + [105120] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4297), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105137] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_implements, - STATE(749), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5541), 1, + sym__lookback_semicolon, + STATE(3589), 1, sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104362] = 5, - ACTIONS(4548), 1, + [105154] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5308), 1, anon_sym_DASH_GT, - ACTIONS(5172), 1, + ACTIONS(5543), 1, + sym__lookback_semicolon, + STATE(3632), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105171] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(451), 1, + sym_block, + STATE(2560), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105188] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4303), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105205] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(418), 1, + sym_block, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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, + [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, + 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, + [105275] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3455), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105292] = 4, + ACTIONS(3977), 1, + sym__lookback_semicolon, ACTIONS(5518), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, - STATE(1585), 1, - sym_type_params, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105324] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, - [104379] = 5, - ACTIONS(4078), 1, + 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, + 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(4466), 1, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105380] = 5, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + 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, - [104396] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5285), 1, + [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, + [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, + [105431] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4953), 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, + [105450] = 4, + ACTIONS(5254), 1, + sym__lookback_semicolon, + STATE(719), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + [105479] = 3, + ACTIONS(5406), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + [105505] = 3, + ACTIONS(5308), 1, anon_sym_DASH_GT, - ACTIONS(5520), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4720), 2, sym__lookback_semicolon, - STATE(3473), 1, - sym_block, + anon_sym_LBRACE, + [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, - [104413] = 5, - ACTIONS(343), 1, + [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, + [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, + [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, + [105573] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4635), 3, sym__closing_brace_marker, - ACTIONS(4428), 1, anon_sym_COMMA, - STATE(1761), 1, - sym__closing_brace, - STATE(3006), 1, - aux_sym_map_repeat1, + 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(5561), 1, + anon_sym_EQ, + STATE(3448), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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, - [104430] = 4, - ACTIONS(4294), 1, + [105625] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4700), 2, sym__lookback_semicolon, - ACTIONS(5495), 1, + 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, + [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, + [105665] = 3, + ACTIONS(5394), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(595), 2, + STATE(628), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [104445] = 5, - ACTIONS(4288), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, + [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, + [105691] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5434), 3, + sym__closing_brace_marker, + 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, + anon_sym_EQ, + [105711] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - STATE(2493), 1, + ACTIONS(5573), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104462] = 3, + [105725] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + 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, + sym_comment, + [105761] = 3, + ACTIONS(5406), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + anon_sym_COMMA, + [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, + [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, + [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, + [105827] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5581), 3, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_COLON, + [105837] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5583), 3, + sym__closing_brace_marker, + 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, + [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, + [105875] = 4, + ACTIONS(5589), 1, + anon_sym_DOT, + ACTIONS(5591), 1, + sym__lookback_semicolon, + STATE(706), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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, + [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, + [105917] = 3, + ACTIONS(5595), 1, + sym__camelCaseIdentifier, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + [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, + [105957] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + [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, + [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, + [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, + [106025] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2497), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [106039] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(5605), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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, + [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, + [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, + [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, + [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, + [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, + [106137] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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(5615), 1, + anon_sym_DOT, + ACTIONS(5617), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [106179] = 3, + ACTIONS(5428), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + [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, + [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, + [106233] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + [106259] = 3, + ACTIONS(5628), 1, + sym__camelCaseIdentifier, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + 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, + 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, + [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, + [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, + [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, + [106339] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [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, + [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, + sym_comment, + [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, + [106395] = 4, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5640), 1, + anon_sym_implements, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3352), 2, + [106409] = 3, + ACTIONS(5428), 1, anon_sym_catch, - anon_sym_else, - STATE(2794), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [104475] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3358), 2, - anon_sym_catch, - anon_sym_else, - STATE(2794), 2, + STATE(2856), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [104488] = 3, + [106421] = 3, + ACTIONS(5394), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 2, - anon_sym_catch, - anon_sym_else, - STATE(2794), 2, + STATE(634), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [104501] = 5, - ACTIONS(5308), 1, - anon_sym_COMMA, - ACTIONS(5310), 1, - sym__closing_brace_marker, - STATE(2570), 1, - aux_sym_structure_type_repeat1, - STATE(2891), 1, - sym__closing_brace, + [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, - [104518] = 5, - ACTIONS(4038), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [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, - [104535] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(4680), 1, - sym_comment, - ACTIONS(4990), 1, - aux_sym_string_token3, - ACTIONS(5340), 1, - aux_sym_string_token4, - ACTIONS(5342), 1, - sym_escape_sequence, - STATE(2588), 1, - aux_sym_string_repeat2, - [104554] = 5, - ACTIONS(4292), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [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, - [104571] = 5, - ACTIONS(5024), 1, - anon_sym_implements, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(497), 1, - sym_block, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, + [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, - [104588] = 5, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(5172), 1, - anon_sym_LT, - ACTIONS(5522), 1, - sym__lookback_semicolon, - STATE(1585), 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, - [104605] = 5, - ACTIONS(5283), 1, - anon_sym_LBRACE, - ACTIONS(5524), 1, - anon_sym_COLON, - ACTIONS(5526), 1, - sym__lookback_semicolon, - STATE(3393), 1, - sym_block, + [106503] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104622] = 5, - ACTIONS(4080), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + 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, - [104639] = 5, - ACTIONS(4094), 1, - sym__lookback_semicolon, - ACTIONS(4466), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOT_DOT_DOT, - STATE(2493), 1, - sym__rangeOperator, + [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, - [104656] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(4172), 1, - anon_sym_RBRACK, - STATE(3082), 1, - aux_sym_array_repeat1, + [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, - [104670] = 4, - ACTIONS(1888), 1, + [106555] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5528), 1, + ACTIONS(5671), 1, anon_sym_DOT, - ACTIONS(5530), 1, + ACTIONS(5673), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104684] = 4, - ACTIONS(1888), 1, + [106569] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5424), 1, + ACTIONS(5675), 1, anon_sym_DOT, - ACTIONS(5426), 1, + ACTIONS(5677), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104698] = 4, - ACTIONS(1888), 1, + [106583] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5404), 1, + ACTIONS(5679), 1, anon_sym_DOT, - ACTIONS(5406), 1, + ACTIONS(5681), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104712] = 4, - ACTIONS(1888), 1, + [106597] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5532), 1, + ACTIONS(5683), 1, anon_sym_DOT, - ACTIONS(5534), 1, + ACTIONS(5685), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104726] = 4, - ACTIONS(1888), 1, + [106611] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(4984), 1, + ACTIONS(5445), 1, anon_sym_DOT, - ACTIONS(4986), 1, + ACTIONS(5447), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104740] = 4, - ACTIONS(1888), 1, + [106625] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5224), 1, + ACTIONS(5424), 1, anon_sym_DOT, - ACTIONS(5226), 1, + ACTIONS(5426), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104754] = 4, - ACTIONS(1888), 1, + [106639] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5536), 1, + ACTIONS(5687), 1, anon_sym_DOT, - ACTIONS(5538), 1, + ACTIONS(5689), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104768] = 4, - ACTIONS(1888), 1, + [106653] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5135), 1, + ACTIONS(4995), 1, anon_sym_DOT, - ACTIONS(5137), 1, + ACTIONS(4997), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104782] = 4, - ACTIONS(1888), 1, + [106667] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5540), 1, + ACTIONS(5282), 1, anon_sym_DOT, - ACTIONS(5542), 1, + ACTIONS(5284), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104796] = 4, - ACTIONS(1888), 1, + [106681] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5544), 1, + ACTIONS(5691), 1, anon_sym_DOT, - ACTIONS(5546), 1, + ACTIONS(5693), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104810] = 4, - ACTIONS(1888), 1, + [106695] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5430), 1, + ACTIONS(5146), 1, anon_sym_DOT, - ACTIONS(5432), 1, + ACTIONS(5148), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104824] = 4, - ACTIONS(1888), 1, + [106709] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(4974), 1, + ACTIONS(5695), 1, anon_sym_DOT, - ACTIONS(4976), 1, + ACTIONS(5697), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104838] = 4, - ACTIONS(1888), 1, + [106723] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5010), 1, + ACTIONS(5699), 1, anon_sym_DOT, - ACTIONS(5012), 1, + ACTIONS(5701), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104852] = 4, - ACTIONS(1888), 1, + [106737] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5548), 1, + ACTIONS(5449), 1, anon_sym_DOT, - ACTIONS(5550), 1, + ACTIONS(5451), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104866] = 4, - ACTIONS(1888), 1, + [106751] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(5552), 1, + ACTIONS(5017), 1, anon_sym_DOT, - ACTIONS(5554), 1, + ACTIONS(5019), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104880] = 3, - ACTIONS(5422), 1, - anon_sym_catch, + [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, - STATE(633), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [104892] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3848), 1, - anon_sym_RBRACK, - STATE(2915), 1, - aux_sym_array_repeat1, + [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, - [104906] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(5556), 1, + [106793] = 4, + ACTIONS(3761), 1, anon_sym_RPAREN, - STATE(2889), 1, + ACTIONS(3763), 1, + anon_sym_COMMA, + STATE(2949), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104920] = 2, + [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, - ACTIONS(4562), 3, - sym__closing_brace_marker, + [106821] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [104930] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3848), 1, + ACTIONS(4269), 1, anon_sym_RBRACK, - STATE(3082), 1, + STATE(2883), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104944] = 4, - ACTIONS(5018), 1, + [106835] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5558), 1, + ACTIONS(5707), 1, anon_sym_EQ, - STATE(3377), 1, + STATE(3381), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104958] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5560), 3, - sym__lookback_semicolon, + [106849] = 4, + ACTIONS(5709), 1, anon_sym_LBRACE, - anon_sym_COLON, - [104968] = 4, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5562), 1, - sym_identifier, - STATE(3149), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [104982] = 4, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2455), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, + ACTIONS(5711), 1, + anon_sym_extends, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [104996] = 4, - ACTIONS(5564), 1, - anon_sym_COMMA, - ACTIONS(5567), 1, - anon_sym_GT, - STATE(2855), 1, - aux_sym_type_params_repeat1, + [106863] = 3, + ACTIONS(5428), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105010] = 3, - ACTIONS(5569), 1, + 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, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [105022] = 3, - ACTIONS(5573), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4650), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [105034] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1970), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [105044] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, - anon_sym_RPAREN, - STATE(2898), 1, - aux_sym__arg_list_repeat1, + [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, - [105058] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_QMARK, + [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, - [105072] = 4, - ACTIONS(5018), 1, + [106915] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5575), 1, + ACTIONS(5722), 1, anon_sym_EQ, - STATE(3391), 1, + STATE(3396), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105086] = 4, - ACTIONS(4494), 1, + [106929] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(5577), 1, + ACTIONS(3771), 1, anon_sym_RBRACK, - STATE(2978), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105100] = 4, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5579), 1, - anon_sym_EQ, - STATE(3537), 1, - sym_type_params, + STATE(3011), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105114] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_RBRACK, - STATE(3061), 1, - aux_sym_array_repeat1, + [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, - [105128] = 4, - ACTIONS(5018), 1, + [106957] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(5581), 1, + ACTIONS(5724), 1, anon_sym_EQ, - STATE(3398), 1, + STATE(3402), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105142] = 4, - ACTIONS(1628), 1, + [106971] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5583), 1, + ACTIONS(5726), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105156] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5585), 1, - sym__camelCaseIdentifier, - STATE(3188), 1, - sym_type_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105170] = 3, - ACTIONS(5587), 1, - sym__camelCaseIdentifier, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [105182] = 3, - ACTIONS(5373), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(631), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105194] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - STATE(2696), 1, - aux_sym__type_path_repeat1, - STATE(2963), 1, - sym_type_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105208] = 3, - ACTIONS(5422), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(624), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105220] = 4, - ACTIONS(5589), 1, - anon_sym_LBRACE, - ACTIONS(5591), 1, - anon_sym_extends, - STATE(2872), 1, - aux_sym_interface_declaration_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105234] = 4, - ACTIONS(3744), 1, + [106985] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(5594), 1, + ACTIONS(3765), 1, anon_sym_RPAREN, - STATE(2889), 1, + STATE(2954), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105248] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACK, - STATE(2918), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105262] = 4, - ACTIONS(3718), 1, + [106999] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACK, - STATE(3082), 1, - aux_sym_array_repeat1, + ACTIONS(3765), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105276] = 4, - ACTIONS(5168), 1, + [107013] = 4, + ACTIONS(5589), 1, anon_sym_DOT, - ACTIONS(5596), 1, + ACTIONS(5728), 1, sym__lookback_semicolon, - STATE(767), 1, + STATE(566), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105290] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACK, - STATE(3011), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105304] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(4132), 1, - anon_sym_RBRACK, - STATE(3082), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105318] = 4, - ACTIONS(4494), 1, + [107027] = 4, + ACTIONS(5346), 1, anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_RBRACK, - STATE(2978), 1, - aux_sym_map_repeat1, + ACTIONS(5730), 1, + anon_sym_GT, + STATE(2894), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105332] = 3, - ACTIONS(5422), 1, - anon_sym_catch, + [107041] = 3, + ACTIONS(5732), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(640), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105344] = 4, - ACTIONS(5054), 1, + ACTIONS(5438), 2, + anon_sym_STAR, sym__pascalCaseIdentifier, - STATE(2696), 1, - aux_sym__type_path_repeat1, - STATE(2979), 1, - sym_type_name, + [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, - [105358] = 3, - ACTIONS(5373), 1, - anon_sym_catch, + [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, - STATE(638), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105370] = 4, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_EQ, - STATE(3319), 1, - sym_type_params, + [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, - [105384] = 4, - ACTIONS(5054), 1, + [107095] = 4, + ACTIONS(5066), 1, sym__pascalCaseIdentifier, - ACTIONS(5602), 1, + ACTIONS(5738), 1, sym__camelCaseIdentifier, - STATE(3170), 1, + STATE(3239), 1, sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105398] = 3, - ACTIONS(5373), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(626), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105410] = 3, - ACTIONS(5349), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(2977), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105422] = 4, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2525), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, + [107109] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105436] = 4, - ACTIONS(1628), 1, + ACTIONS(4613), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [107119] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5604), 1, + ACTIONS(5740), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105450] = 4, - ACTIONS(3888), 1, - anon_sym_RPAREN, - ACTIONS(5606), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym__arg_list_repeat1, + [107133] = 3, + ACTIONS(5630), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105464] = 4, - ACTIONS(1628), 1, + ACTIONS(4712), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [107145] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5609), 1, + ACTIONS(5742), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105478] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5611), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [105488] = 4, - ACTIONS(1628), 1, + [107159] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5613), 1, + ACTIONS(5744), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105502] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_RBRACK, - STATE(3082), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105516] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5615), 1, - sym__camelCaseIdentifier, - STATE(3126), 1, - sym_type_name, + [107173] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105530] = 4, - ACTIONS(1628), 1, + ACTIONS(5746), 3, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_COLON, + [107183] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5617), 1, + ACTIONS(5748), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105544] = 4, - ACTIONS(3742), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym__arg_list_repeat1, + [107197] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105558] = 4, - ACTIONS(5619), 1, - anon_sym_RPAREN, - ACTIONS(5621), 1, + ACTIONS(5484), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [107207] = 4, + ACTIONS(5587), 1, anon_sym_COMMA, - STATE(3013), 1, - aux_sym__function_arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105572] = 4, - ACTIONS(3742), 1, + ACTIONS(5750), 1, anon_sym_RPAREN, - ACTIONS(3744), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105586] = 3, - ACTIONS(3358), 1, - anon_sym_catch, + STATE(2866), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2953), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105598] = 3, - ACTIONS(5400), 1, + [107221] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5623), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [105610] = 4, - ACTIONS(3744), 1, + ACTIONS(5752), 2, + sym__closing_brace_marker, anon_sym_COMMA, - ACTIONS(3852), 1, - anon_sym_RPAREN, - STATE(2955), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105624] = 4, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5625), 1, - anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, + [107233] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105638] = 4, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5627), 1, + ACTIONS(5754), 3, anon_sym_RPAREN, - STATE(2993), 1, - aux_sym__function_type_args_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105652] = 4, - ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RPAREN, - STATE(2950), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105666] = 4, - ACTIONS(5016), 1, + anon_sym_EQ, + [107243] = 4, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2516), 1, + STATE(2507), 1, sym_type_name, - STATE(2696), 1, + STATE(2707), 1, aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105680] = 4, - ACTIONS(5629), 1, - anon_sym_LBRACE, - ACTIONS(5631), 1, - anon_sym_implements, - STATE(2906), 1, - aux_sym_class_declaration_repeat3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105694] = 4, - ACTIONS(5369), 1, - anon_sym_COMMA, - ACTIONS(5634), 1, - anon_sym_GT, - STATE(2855), 1, - aux_sym_type_params_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105708] = 3, - ACTIONS(5636), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5571), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [105720] = 3, - ACTIONS(5638), 1, - sym__camelCaseIdentifier, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [105732] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5640), 1, - anon_sym_DOT, - ACTIONS(5642), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105746] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5460), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [105756] = 4, - ACTIONS(1628), 1, + [107257] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5644), 1, + ACTIONS(5756), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105770] = 3, - ACTIONS(5349), 1, + [107271] = 3, + ACTIONS(2681), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(3092), 2, + STATE(3008), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [105782] = 4, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5646), 1, - anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, + [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, - [105796] = 4, - ACTIONS(3718), 1, + [107297] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(4158), 1, - anon_sym_RBRACK, - STATE(3082), 1, - aux_sym_array_repeat1, + ACTIONS(3843), 1, + anon_sym_RPAREN, + STATE(3079), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105810] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5648), 1, - sym__camelCaseIdentifier, - STATE(3260), 1, - sym_type_name, + [107311] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105824] = 3, - ACTIONS(5650), 1, - sym__camelCaseIdentifier, + ACTIONS(4623), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [107321] = 3, + ACTIONS(5758), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [105836] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3998), 1, - anon_sym_RBRACK, - STATE(3082), 1, - aux_sym_array_repeat1, + 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(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105850] = 4, - ACTIONS(2608), 1, - anon_sym_catch, - ACTIONS(5347), 1, - anon_sym_else, - STATE(773), 1, - sym_else_clause, + [107347] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105864] = 3, - ACTIONS(5244), 1, + ACTIONS(4627), 3, + sym__closing_brace_marker, + anon_sym_COMMA, 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, - ACTIONS(5652), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [105876] = 3, - ACTIONS(5422), 1, - anon_sym_catch, + [107371] = 3, + ACTIONS(5764), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(630), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105888] = 4, - ACTIONS(1628), 1, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [107383] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5654), 1, + ACTIONS(5766), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105902] = 4, - ACTIONS(1628), 1, + [107397] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5656), 1, + ACTIONS(5768), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105916] = 4, - ACTIONS(3744), 1, + [107411] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(5658), 1, - anon_sym_RPAREN, - STATE(2889), 1, - aux_sym__arg_list_repeat1, + ACTIONS(4115), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105930] = 3, - ACTIONS(5422), 1, - anon_sym_catch, + [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, - STATE(625), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [105942] = 3, - ACTIONS(5660), 1, + [107439] = 3, + ACTIONS(5775), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [105954] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5662), 1, - anon_sym_DOT, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [105968] = 3, - ACTIONS(5400), 1, + [107451] = 3, + ACTIONS(5416), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5666), 2, + ACTIONS(5777), 2, anon_sym_RPAREN, anon_sym_COMMA, - [105980] = 4, - ACTIONS(1628), 1, + [107463] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5668), 1, + ACTIONS(5779), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [105994] = 4, - ACTIONS(5670), 1, - anon_sym_DOT, - ACTIONS(5672), 1, - sym__lookback_semicolon, - STATE(798), 1, - sym__semicolon, + [107477] = 3, + ACTIONS(5781), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106008] = 4, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5674), 1, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107489] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(5783), 1, anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106022] = 4, - ACTIONS(1628), 1, + [107503] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5676), 1, + ACTIONS(5785), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106036] = 4, - ACTIONS(5168), 1, - anon_sym_DOT, - ACTIONS(5678), 1, - sym__lookback_semicolon, - STATE(808), 1, - sym__semicolon, + [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, - [106050] = 3, - ACTIONS(5680), 1, + [107531] = 3, + ACTIONS(5789), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106062] = 4, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2468), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, + [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, - [106076] = 3, - ACTIONS(5682), 1, + [107557] = 3, + ACTIONS(5791), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106088] = 3, - ACTIONS(5684), 1, + [107569] = 3, + ACTIONS(5793), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106100] = 3, - ACTIONS(5686), 1, + [107581] = 3, + ACTIONS(5795), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106112] = 3, - ACTIONS(5688), 1, + [107593] = 3, + ACTIONS(5797), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106124] = 3, - ACTIONS(5690), 1, + [107605] = 3, + ACTIONS(5799), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106136] = 3, - ACTIONS(5692), 1, + [107617] = 3, + ACTIONS(5801), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106148] = 3, - ACTIONS(5694), 1, + [107629] = 3, + ACTIONS(5803), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106160] = 3, - ACTIONS(5696), 1, + [107641] = 3, + ACTIONS(5805), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106172] = 3, - ACTIONS(5698), 1, + [107653] = 3, + ACTIONS(5807), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106184] = 3, - ACTIONS(5700), 1, + [107665] = 3, + ACTIONS(5809), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [106196] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5702), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [106206] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3750), 1, - anon_sym_RPAREN, - STATE(2889), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106220] = 4, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5704), 1, - anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106234] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3872), 1, - anon_sym_RPAREN, - STATE(2975), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106248] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3872), 1, - anon_sym_RPAREN, - STATE(2889), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106262] = 4, - ACTIONS(5706), 1, - anon_sym_RPAREN, - ACTIONS(5708), 1, - anon_sym_COMMA, - STATE(2951), 1, - aux_sym__function_arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106276] = 3, - ACTIONS(5483), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(961), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106288] = 3, - ACTIONS(5711), 1, + [107677] = 3, + ACTIONS(5394), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2953), 2, + STATE(638), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [106300] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3806), 1, - anon_sym_RPAREN, - STATE(3014), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106314] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3806), 1, - anon_sym_RPAREN, - STATE(2889), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106328] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3804), 1, - anon_sym_RPAREN, - STATE(3040), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106342] = 4, - ACTIONS(5164), 1, + [107689] = 3, + ACTIONS(5811), 1, sym__camelCaseIdentifier, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(3015), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106356] = 4, - ACTIONS(5369), 1, - anon_sym_COMMA, - ACTIONS(5714), 1, - anon_sym_GT, - STATE(2855), 1, - aux_sym_type_params_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106370] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5716), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [106380] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4544), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [106390] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4594), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [106400] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3802), 1, - anon_sym_RBRACK, - STATE(2830), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106414] = 4, - ACTIONS(5168), 1, - anon_sym_DOT, - ACTIONS(5718), 1, - sym__lookback_semicolon, - STATE(421), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106428] = 3, - ACTIONS(5373), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(643), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106440] = 4, - ACTIONS(4494), 1, - anon_sym_COMMA, - ACTIONS(5720), 1, - anon_sym_RBRACK, - STATE(2978), 1, - aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106454] = 3, - ACTIONS(5373), 1, + 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, - STATE(644), 2, + STATE(621), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [106466] = 3, - ACTIONS(5373), 1, + [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, - STATE(645), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106478] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - STATE(2696), 1, - aux_sym__type_path_repeat1, - STATE(2876), 1, - sym_type_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106492] = 4, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5722), 1, - sym_identifier, - STATE(3159), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106506] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5724), 1, - sym__camelCaseIdentifier, - STATE(3172), 1, - sym_type_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106520] = 3, - ACTIONS(5573), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5726), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [106532] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5728), 1, - sym__camelCaseIdentifier, - STATE(3178), 1, - sym_type_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106546] = 3, - ACTIONS(5730), 1, - sym__camelCaseIdentifier, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [106558] = 4, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5732), 1, - anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106572] = 4, - ACTIONS(3744), 1, + [107727] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(5734), 1, + ACTIONS(3855), 1, anon_sym_RPAREN, - STATE(2889), 1, + STATE(2879), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106586] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5736), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106598] = 3, - ACTIONS(3369), 1, + [107741] = 3, + ACTIONS(5498), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2953), 2, + STATE(961), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [106610] = 4, - ACTIONS(5736), 1, - anon_sym_RBRACK, - ACTIONS(5738), 1, - anon_sym_COMMA, - STATE(2978), 1, - aux_sym_map_repeat1, + [107753] = 3, + ACTIONS(5813), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106624] = 4, - ACTIONS(5168), 1, + STATE(3008), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107765] = 4, + ACTIONS(5589), 1, anon_sym_DOT, - ACTIONS(5741), 1, + ACTIONS(5816), 1, sym__lookback_semicolon, - STATE(806), 1, + STATE(732), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106638] = 4, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5743), 1, - anon_sym_EQ, - STATE(3574), 1, - sym_type_params, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106652] = 3, - ACTIONS(5573), 1, - anon_sym_DASH_GT, + [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, - ACTIONS(4654), 2, - sym__closing_brace_marker, + [107793] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - [106664] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5747), 1, - anon_sym_QMARK, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106678] = 4, - ACTIONS(5016), 1, + [107807] = 4, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2507), 1, + STATE(2523), 1, sym_type_name, - STATE(2696), 1, + STATE(2707), 1, aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106692] = 3, - ACTIONS(5749), 1, - anon_sym_in, + [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, - ACTIONS(5571), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [106704] = 3, - ACTIONS(5483), 1, + [107835] = 3, + ACTIONS(5406), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(962), 2, + STATE(642), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [106716] = 4, - ACTIONS(1628), 1, + [107847] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5751), 1, + ACTIONS(5818), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106730] = 4, - ACTIONS(2642), 1, + [107861] = 3, + ACTIONS(5406), 1, anon_sym_catch, - ACTIONS(5347), 1, - anon_sym_else, - STATE(822), 1, - sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106744] = 3, - ACTIONS(5495), 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, sym_comment, - STATE(598), 2, + STATE(644), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [106756] = 4, - ACTIONS(3718), 1, + [107885] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(3802), 1, + ACTIONS(3779), 1, anon_sym_RBRACK, - STATE(3082), 1, + STATE(3051), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106770] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5753), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [106780] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5755), 2, - anon_sym_RPAREN, + [107899] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - [106792] = 3, - ACTIONS(5485), 1, - anon_sym_catch, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(599), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106804] = 4, - ACTIONS(5755), 1, - anon_sym_RPAREN, - ACTIONS(5757), 1, - anon_sym_COMMA, - STATE(2993), 1, - aux_sym__function_type_args_repeat1, + [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, - [106818] = 3, - ACTIONS(5485), 1, - anon_sym_catch, + [107927] = 3, + ACTIONS(5630), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(600), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106830] = 3, - ACTIONS(5485), 1, - anon_sym_catch, + 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, - STATE(602), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106842] = 3, - ACTIONS(5487), 1, - anon_sym_catch, + [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, - STATE(2818), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106854] = 4, - ACTIONS(2652), 1, - anon_sym_catch, - ACTIONS(5347), 1, - anon_sym_else, - STATE(824), 1, - sym_else_clause, + [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, - [106868] = 3, - ACTIONS(5487), 1, + [107981] = 3, + ACTIONS(5394), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2819), 2, + STATE(622), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [106880] = 3, - ACTIONS(5487), 1, - anon_sym_catch, + [107993] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3797), 1, + anon_sym_RPAREN, + STATE(3103), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2820), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106892] = 3, - ACTIONS(5485), 1, + [108007] = 3, + ACTIONS(5498), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(603), 2, + STATE(965), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [106904] = 4, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2485), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106918] = 3, - ACTIONS(5485), 1, - anon_sym_catch, + [108019] = 3, + ACTIONS(5826), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(604), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [106930] = 3, - ACTIONS(5485), 1, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [108031] = 3, + ACTIONS(5498), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(605), 2, + STATE(969), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [106942] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(4582), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [106952] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5736), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [106964] = 4, - ACTIONS(5736), 1, + [108043] = 4, + ACTIONS(5752), 1, sym__closing_brace_marker, - ACTIONS(5760), 1, + ACTIONS(5828), 1, anon_sym_COMMA, - STATE(3006), 1, + STATE(3030), 1, aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [106978] = 4, - ACTIONS(1888), 1, + [108057] = 3, + ACTIONS(5416), 1, anon_sym_EQ_GT, - ACTIONS(5763), 1, - anon_sym_DOT, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [106992] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5767), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [107002] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5250), 3, - anon_sym_STAR, - sym__camelCaseIdentifier, - sym__pascalCaseIdentifier, - [107012] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACK, - STATE(2878), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107026] = 4, - ACTIONS(3718), 1, + ACTIONS(5831), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACK, - STATE(3082), 1, - aux_sym_array_repeat1, + [108069] = 3, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107040] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, + STATE(597), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108081] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4638), 2, + ACTIONS(5833), 3, sym__lookback_semicolon, anon_sym_LBRACE, - [107052] = 4, - ACTIONS(5621), 1, - anon_sym_COMMA, - ACTIONS(5769), 1, + anon_sym_COLON, + [108091] = 4, + ACTIONS(5835), 1, anon_sym_RPAREN, - STATE(2951), 1, + ACTIONS(5837), 1, + anon_sym_COMMA, + STATE(3034), 1, aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107066] = 4, - ACTIONS(3744), 1, + [108105] = 4, + ACTIONS(4523), 1, anon_sym_COMMA, - ACTIONS(5771), 1, - anon_sym_RPAREN, - STATE(2889), 1, - aux_sym__arg_list_repeat1, + ACTIONS(5840), 1, + anon_sym_RBRACK, + STATE(3106), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107080] = 4, - ACTIONS(5670), 1, - anon_sym_DOT, - ACTIONS(5773), 1, - sym__lookback_semicolon, - STATE(763), 1, - sym__semicolon, + [108119] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107094] = 3, - ACTIONS(5501), 1, + 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, - STATE(955), 2, + STATE(599), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107106] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3828), 1, - anon_sym_RPAREN, - STATE(2848), 1, - aux_sym__arg_list_repeat1, + [108143] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107120] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5775), 1, - anon_sym_DOT, - ACTIONS(5777), 1, - anon_sym_QMARK, + 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, - [107134] = 4, - ACTIONS(5670), 1, - anon_sym_DOT, - ACTIONS(5779), 1, - sym__lookback_semicolon, - STATE(576), 1, - sym__semicolon, + STATE(2826), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108167] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3797), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107148] = 3, - ACTIONS(5495), 1, + [108181] = 3, + ACTIONS(5512), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(608), 2, + STATE(2827), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107160] = 3, - ACTIONS(5400), 1, - anon_sym_EQ_GT, + [108193] = 3, + ACTIONS(5512), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5781), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107172] = 3, - ACTIONS(5495), 1, + 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, - STATE(609), 2, + STATE(602), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107184] = 3, - ACTIONS(5495), 1, + [108217] = 3, + ACTIONS(5510), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(610), 2, + STATE(603), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107196] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, + [108229] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4654), 2, - sym__lookback_semicolon, - anon_sym_LBRACE, - [107208] = 4, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5783), 1, - sym_identifier, - STATE(3269), 1, - sym__parenthesized_expression, + 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, - [107222] = 4, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2476), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, + [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, - [107236] = 3, - ACTIONS(5285), 1, + [108269] = 3, + ACTIONS(5308), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4650), 2, + ACTIONS(4712), 2, sym__lookback_semicolon, anon_sym_LBRACE, - [107248] = 3, - ACTIONS(5501), 1, - anon_sym_catch, + [108281] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(952), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [107260] = 4, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5785), 1, + ACTIONS(5842), 2, anon_sym_RPAREN, - STATE(2469), 1, - sym__rangeOperator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [107274] = 3, - ACTIONS(5787), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5571), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [107286] = 3, - ACTIONS(5501), 1, - anon_sym_catch, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - STATE(949), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [107298] = 2, + anon_sym_COMMA, + [108293] = 4, + ACTIONS(5842), 1, + anon_sym_RPAREN, + ACTIONS(5844), 1, + anon_sym_COMMA, + STATE(3050), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5789), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [107308] = 4, - ACTIONS(3718), 1, + [108307] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(3832), 1, + ACTIONS(4117), 1, anon_sym_RBRACK, - STATE(2893), 1, + STATE(2883), 1, aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107322] = 4, - ACTIONS(5168), 1, + [108321] = 4, + ACTIONS(5196), 1, anon_sym_DOT, - ACTIONS(5791), 1, + ACTIONS(5847), 1, sym__lookback_semicolon, - STATE(579), 1, + STATE(555), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107336] = 3, - ACTIONS(5149), 1, + [108335] = 3, + ACTIONS(5394), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2437), 2, + STATE(623), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107348] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5793), 1, - sym__camelCaseIdentifier, - STATE(3292), 1, - sym_type_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [107362] = 3, - ACTIONS(5149), 1, + [108347] = 3, + ACTIONS(5406), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2438), 2, + STATE(624), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107374] = 3, - ACTIONS(5149), 1, + [108359] = 3, + ACTIONS(5524), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2440), 2, + STATE(951), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107386] = 3, - ACTIONS(5483), 1, + [108371] = 3, + ACTIONS(5518), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(969), 2, + STATE(417), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107398] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3828), 1, - anon_sym_RPAREN, - STATE(2889), 1, - aux_sym__arg_list_repeat1, + [108383] = 3, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107412] = 3, - ACTIONS(5483), 1, + 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, - STATE(966), 2, + STATE(610), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107424] = 3, - ACTIONS(5483), 1, + [108407] = 3, + ACTIONS(5524), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(970), 2, + STATE(955), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107436] = 3, - ACTIONS(5149), 1, + [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, - STATE(2441), 2, + STATE(956), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107448] = 4, - ACTIONS(4494), 1, + [108443] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(5795), 1, - anon_sym_RBRACK, - STATE(2978), 1, - aux_sym_map_repeat1, + ACTIONS(3783), 1, + anon_sym_RPAREN, + STATE(3075), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108457] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108471] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5851), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107462] = 3, - ACTIONS(5149), 1, + [108485] = 3, + ACTIONS(5166), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2442), 2, + STATE(2435), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107474] = 3, - ACTIONS(5149), 1, + [108497] = 3, + ACTIONS(5166), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2443), 2, + STATE(2436), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107486] = 4, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2472), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, + [108509] = 3, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107500] = 4, - ACTIONS(5797), 1, - anon_sym_COMMA, - ACTIONS(5800), 1, - sym__closing_brace_marker, - STATE(3048), 1, - aux_sym_structure_type_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, - [107514] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5802), 1, - sym__camelCaseIdentifier, - STATE(3299), 1, - sym_type_name, + 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, - [107528] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5804), 1, - sym__camelCaseIdentifier, - STATE(3298), 1, - sym_type_name, + 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, - [107542] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5806), 1, - sym__camelCaseIdentifier, - STATE(3153), 1, - sym_type_name, + 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, - [107556] = 4, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2528), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, + STATE(2439), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108569] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107570] = 3, - ACTIONS(5400), 1, - anon_sym_EQ_GT, + 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, - ACTIONS(5808), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107582] = 4, - ACTIONS(3744), 1, + 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, + STATE(2441), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108603] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(5855), 1, anon_sym_RPAREN, - STATE(2947), 1, + STATE(2881), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107596] = 4, - ACTIONS(5016), 1, - sym__pascalCaseIdentifier, - STATE(2495), 1, - sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, + [108617] = 3, + ACTIONS(1823), 1, + aux_sym_integer_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107610] = 4, - ACTIONS(3718), 1, + ACTIONS(1821), 2, + anon_sym_LPAREN, + aux_sym_integer_token2, + [108629] = 4, + ACTIONS(4523), 1, anon_sym_COMMA, - ACTIONS(3842), 1, + ACTIONS(5857), 1, anon_sym_RBRACK, - STATE(2850), 1, - aux_sym_array_repeat1, + STATE(3106), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107624] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5810), 1, - sym__camelCaseIdentifier, - STATE(3156), 1, - sym_type_name, + [108643] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3853), 1, + anon_sym_RPAREN, + STATE(2987), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107638] = 3, - ACTIONS(5812), 1, - sym__camelCaseIdentifier, + [108657] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3853), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [107650] = 3, - ACTIONS(5814), 1, + [108671] = 3, + ACTIONS(5859), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, + ACTIONS(5716), 2, anon_sym_COLON, anon_sym_EQ_GT, - [107662] = 3, - ACTIONS(5816), 1, - sym__camelCaseIdentifier, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [107674] = 4, - ACTIONS(3718), 1, - anon_sym_COMMA, - ACTIONS(4192), 1, - anon_sym_RBRACK, - STATE(3082), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [107688] = 4, - ACTIONS(3718), 1, + [108683] = 4, + ACTIONS(5346), 1, anon_sym_COMMA, - ACTIONS(3720), 1, - anon_sym_RBRACK, - STATE(2989), 1, - aux_sym_array_repeat1, + ACTIONS(5861), 1, + anon_sym_GT, + STATE(2894), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107702] = 3, - ACTIONS(5114), 1, - anon_sym_catch, + [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, - STATE(2370), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [107714] = 4, - ACTIONS(4494), 1, + [108711] = 4, + ACTIONS(5346), 1, anon_sym_COMMA, - ACTIONS(5818), 1, - anon_sym_RBRACK, - STATE(2978), 1, - aux_sym_map_repeat1, + ACTIONS(5865), 1, + anon_sym_GT, + STATE(2894), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107728] = 3, - ACTIONS(5114), 1, + [108725] = 3, + ACTIONS(5132), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2371), 2, + STATE(2373), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107740] = 3, - ACTIONS(5114), 1, + [108737] = 3, + ACTIONS(5132), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2373), 2, + STATE(2374), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107752] = 3, - ACTIONS(5501), 1, + [108749] = 3, + ACTIONS(5132), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(956), 2, + STATE(2375), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107764] = 3, - ACTIONS(5349), 1, + [108761] = 3, + ACTIONS(5524), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2899), 2, + STATE(958), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107776] = 3, - ACTIONS(5501), 1, + [108773] = 3, + ACTIONS(5524), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(954), 2, + STATE(959), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107788] = 3, - ACTIONS(5501), 1, + [108785] = 3, + ACTIONS(5524), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(950), 2, + STATE(952), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107800] = 3, - ACTIONS(5114), 1, + [108797] = 3, + ACTIONS(5132), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2374), 2, + STATE(2376), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107812] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5328), 1, - anon_sym_DOT, - ACTIONS(5330), 1, - anon_sym_QMARK, + [108809] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5867), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107826] = 3, - ACTIONS(5114), 1, + [108823] = 3, + ACTIONS(5132), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2375), 2, + STATE(2377), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107838] = 3, - ACTIONS(5114), 1, + [108835] = 3, + ACTIONS(5132), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2376), 2, + STATE(2378), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [107850] = 4, - ACTIONS(5164), 1, - sym__camelCaseIdentifier, - STATE(2505), 1, - aux_sym_package_statement_repeat1, - STATE(3087), 1, - sym_package_name, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [107864] = 4, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5820), 1, - sym_identifier, - STATE(3288), 1, - sym__parenthesized_expression, + [108847] = 4, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5869), 1, + anon_sym_EQ, + STATE(3494), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107878] = 3, - ACTIONS(5573), 1, - anon_sym_DASH_GT, + [108861] = 3, + ACTIONS(5416), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4638), 2, - sym__closing_brace_marker, + ACTIONS(5871), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [107890] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - STATE(2696), 1, - aux_sym__type_path_repeat1, - STATE(3101), 1, - sym_type_name, + [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, - [107904] = 4, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5822), 1, - anon_sym_RPAREN, - STATE(2993), 1, - aux_sym__function_type_args_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, - [107918] = 4, - ACTIONS(5016), 1, + [108901] = 4, + ACTIONS(5066), 1, sym__pascalCaseIdentifier, - STATE(2460), 1, + ACTIONS(5877), 1, + sym__camelCaseIdentifier, + STATE(3249), 1, sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [107932] = 3, - ACTIONS(5422), 1, - anon_sym_catch, + [108915] = 3, + ACTIONS(5630), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(623), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [107944] = 4, - ACTIONS(3936), 1, - anon_sym_RBRACK, - ACTIONS(5824), 1, + ACTIONS(5879), 2, + sym__closing_brace_marker, anon_sym_COMMA, - STATE(3082), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [107958] = 4, - ACTIONS(5016), 1, + [108927] = 4, + ACTIONS(5066), 1, sym__pascalCaseIdentifier, - STATE(2511), 1, + ACTIONS(5881), 1, + sym__camelCaseIdentifier, + STATE(3255), 1, sym_type_name, - STATE(2696), 1, - aux_sym__type_path_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [107972] = 3, - ACTIONS(5827), 1, - anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5571), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [107984] = 4, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5829), 1, - sym_identifier, - STATE(3290), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [107998] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5367), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [108008] = 4, - ACTIONS(5670), 1, - anon_sym_DOT, - ACTIONS(5831), 1, - sym__lookback_semicolon, - STATE(590), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108022] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(5567), 2, - anon_sym_COMMA, - anon_sym_GT, - [108034] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5833), 1, - anon_sym_DOT, - ACTIONS(5835), 1, - anon_sym_QMARK, + [108941] = 3, + ACTIONS(5883), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108048] = 3, - ACTIONS(5495), 1, + 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, - STATE(595), 2, + STATE(594), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [108060] = 4, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5837), 1, - sym_identifier, - STATE(3195), 1, - sym__parenthesized_expression, + [108965] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(5885), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108074] = 3, - ACTIONS(3352), 1, - anon_sym_catch, + [108979] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2953), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [108086] = 4, - ACTIONS(3718), 1, + ACTIONS(5752), 2, anon_sym_COMMA, - ACTIONS(3774), 1, anon_sym_RBRACK, - STATE(2875), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108100] = 3, - ACTIONS(5495), 1, + [108991] = 3, + ACTIONS(5518), 1, anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(596), 2, + STATE(595), 2, sym_catch_statement, aux_sym_try_statement_repeat1, - [108112] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5839), 1, - anon_sym_DOT, - ACTIONS(5841), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108126] = 4, - ACTIONS(5369), 1, + [109003] = 4, + ACTIONS(5752), 1, + anon_sym_RBRACK, + ACTIONS(5887), 1, anon_sym_COMMA, - ACTIONS(5843), 1, - anon_sym_GT, - STATE(2855), 1, - aux_sym_type_params_repeat1, + STATE(3106), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108140] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5845), 1, - anon_sym_DOT, - ACTIONS(5847), 1, - anon_sym_QMARK, + [109017] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3791), 1, + anon_sym_RBRACK, + STATE(2871), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108154] = 4, - ACTIONS(1628), 1, + [109031] = 4, + ACTIONS(1640), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5849), 1, + ACTIONS(5890), 1, anon_sym_RPAREN, - STATE(2469), 1, + STATE(2488), 1, sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108168] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5851), 1, - anon_sym_DOT, - ACTIONS(5853), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108182] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5855), 1, - anon_sym_DOT, - ACTIONS(5857), 1, - anon_sym_QMARK, + [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, - [108196] = 4, - ACTIONS(5168), 1, - anon_sym_DOT, - ACTIONS(5859), 1, - sym__lookback_semicolon, - STATE(592), 1, - sym__semicolon, + [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, - [108210] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5861), 1, - anon_sym_DOT, - ACTIONS(5863), 1, - anon_sym_QMARK, + [109073] = 3, + ACTIONS(3368), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108224] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5865), 1, - anon_sym_DOT, - ACTIONS(5867), 1, - anon_sym_QMARK, + 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, - [108238] = 4, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3750), 1, + [109099] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5894), 1, anon_sym_RPAREN, - STATE(2873), 1, - aux_sym__arg_list_repeat1, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108252] = 4, - ACTIONS(5054), 1, - sym__pascalCaseIdentifier, - ACTIONS(5869), 1, - sym__camelCaseIdentifier, - STATE(3224), 1, - sym_type_name, + [109113] = 3, + ACTIONS(5236), 1, + anon_sym_LPAREN, + STATE(3244), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108266] = 4, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - ACTIONS(5871), 1, + [109124] = 3, + ACTIONS(5896), 1, + anon_sym_RPAREN, + ACTIONS(5898), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109135] = 3, + ACTIONS(5900), 1, anon_sym_DOT, - ACTIONS(5873), 1, + ACTIONS(5902), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108280] = 3, - ACTIONS(5483), 1, - anon_sym_catch, + [109146] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(72), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(960), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [108292] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5434), 1, - sym__lookback_semicolon, + [109157] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108303] = 3, - ACTIONS(5875), 1, + ACTIONS(5904), 2, + anon_sym_LBRACE, + anon_sym_extends, + [109166] = 3, + ACTIONS(5906), 1, anon_sym_DOT, - ACTIONS(5877), 1, + ACTIONS(5908), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108314] = 3, - ACTIONS(5046), 1, + [109177] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(73), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108325] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5295), 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, - [108336] = 3, - ACTIONS(5038), 1, + [109199] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(375), 1, - sym__arg_list, + STATE(43), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108347] = 3, - ACTIONS(5879), 1, + [109210] = 3, + ACTIONS(5910), 1, anon_sym_DOT, - ACTIONS(5881), 1, + ACTIONS(5912), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108358] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(63), 1, - sym__parenthesized_expression, + [109221] = 3, + ACTIONS(4873), 1, + anon_sym_DOT, + ACTIONS(5914), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108369] = 3, - ACTIONS(5180), 1, - anon_sym_LPAREN, - STATE(2043), 1, - sym__arg_list, + [109232] = 3, + ACTIONS(5916), 1, + sym__lookback_semicolon, + STATE(590), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108380] = 3, - ACTIONS(5883), 1, + [109243] = 3, + ACTIONS(5918), 1, anon_sym_DOT, - ACTIONS(5885), 1, + ACTIONS(5920), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108391] = 3, - ACTIONS(4828), 1, + [109254] = 3, + ACTIONS(5922), 1, anon_sym_DOT, - ACTIONS(5887), 1, + ACTIONS(5924), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108402] = 3, - ACTIONS(5889), 1, + [109265] = 3, + ACTIONS(4884), 1, anon_sym_DOT, - ACTIONS(5891), 1, + ACTIONS(4886), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108413] = 3, - ACTIONS(5893), 1, + [109276] = 3, + ACTIONS(5090), 1, anon_sym_DOT, - ACTIONS(5895), 1, + ACTIONS(5094), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108424] = 3, - ACTIONS(4863), 1, + [109287] = 3, + ACTIONS(5926), 1, anon_sym_DOT, - ACTIONS(4865), 1, + ACTIONS(5928), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108435] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5316), 1, - sym__lookback_semicolon, + [109298] = 3, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(563), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108446] = 3, - ACTIONS(5078), 1, + [109309] = 3, + ACTIONS(4949), 1, anon_sym_DOT, - ACTIONS(5082), 1, + ACTIONS(4951), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108457] = 3, - ACTIONS(5897), 1, + [109320] = 3, + ACTIONS(4831), 1, anon_sym_DOT, - ACTIONS(5899), 1, + ACTIONS(4833), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108468] = 3, - ACTIONS(5320), 1, - sym__lookback_semicolon, - STATE(819), 1, - sym__semicolon, + [109331] = 3, + ACTIONS(5930), 1, + anon_sym_LBRACE, + STATE(1761), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108479] = 3, - ACTIONS(4928), 1, + [109342] = 3, + ACTIONS(5932), 1, anon_sym_DOT, - ACTIONS(4930), 1, + ACTIONS(5934), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108490] = 3, - ACTIONS(5901), 1, - sym__lookback_semicolon, - STATE(820), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108501] = 3, - ACTIONS(4810), 1, + [109353] = 3, + ACTIONS(4785), 1, anon_sym_DOT, - ACTIONS(4812), 1, + ACTIONS(4787), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108512] = 3, - ACTIONS(5903), 1, - anon_sym_DOT, - ACTIONS(5905), 1, - anon_sym_QMARK, + [109364] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5400), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108523] = 3, - ACTIONS(4766), 1, + [109375] = 3, + ACTIONS(5936), 1, anon_sym_DOT, - ACTIONS(4768), 1, + ACTIONS(5938), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108534] = 3, - ACTIONS(5907), 1, + [109386] = 3, + ACTIONS(5940), 1, anon_sym_DOT, - ACTIONS(5909), 1, + ACTIONS(5942), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108545] = 3, - ACTIONS(5911), 1, + [109397] = 3, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(5913), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108556] = 3, ACTIONS(5154), 1, - anon_sym_DOT, - ACTIONS(5156), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108567] = 3, - ACTIONS(4922), 1, + [109408] = 3, + ACTIONS(4943), 1, anon_sym_DOT, - ACTIONS(4926), 1, + ACTIONS(4947), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108578] = 3, - ACTIONS(4742), 1, + [109419] = 3, + ACTIONS(4759), 1, anon_sym_DOT, - ACTIONS(4744), 1, + ACTIONS(4761), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108589] = 3, - ACTIONS(5915), 1, + [109430] = 3, + ACTIONS(5944), 1, anon_sym_DOT, - ACTIONS(5917), 1, + ACTIONS(5946), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108600] = 3, - ACTIONS(5046), 1, + [109441] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(54), 1, + STATE(65), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108611] = 3, - ACTIONS(5046), 1, + [109452] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(25), 1, + STATE(28), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108622] = 3, - ACTIONS(5919), 1, - anon_sym_RPAREN, - ACTIONS(5921), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108633] = 3, - ACTIONS(5923), 1, - aux_sym_preprocessor_statement_token1, - ACTIONS(5925), 1, - aux_sym_preprocessor_statement_token2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108644] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(5827), 1, - anon_sym_in, + [109463] = 3, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1782), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108655] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(5569), 1, - anon_sym_in, + [109474] = 3, + ACTIONS(4843), 1, + anon_sym_DOT, + ACTIONS(4845), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108666] = 3, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(588), 1, - sym_block, + [109485] = 3, + ACTIONS(5948), 1, + sym__lookback_semicolon, + STATE(743), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108677] = 3, - ACTIONS(5927), 1, - anon_sym_DOT, - ACTIONS(5929), 1, - anon_sym_QMARK, + [109496] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108688] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym__parenthesized_expression, + [109507] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5714), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108699] = 3, - ACTIONS(5046), 1, + [109518] = 3, + ACTIONS(5236), 1, anon_sym_LPAREN, - STATE(55), 1, + STATE(3125), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108710] = 3, - ACTIONS(5042), 1, + [109529] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(3556), 1, + STATE(213), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108721] = 3, + [109540] = 3, ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(225), 1, - sym__arg_list, + STATE(69), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108732] = 2, + [109551] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5455), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5436), 2, - anon_sym_STAR, - sym__pascalCaseIdentifier, - [108741] = 3, - ACTIONS(5931), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_switch_block, + [109562] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3591), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108752] = 3, - ACTIONS(5379), 1, + [109573] = 3, + ACTIONS(5950), 1, sym__lookback_semicolon, - STATE(801), 1, + STATE(423), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108763] = 3, - ACTIONS(5038), 1, + [109584] = 3, + ACTIONS(5110), 1, anon_sym_LPAREN, - STATE(347), 1, + STATE(345), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108774] = 2, + [109595] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5400), 2, + ACTIONS(5952), 2, anon_sym_COLON, anon_sym_EQ_GT, - [108783] = 3, - ACTIONS(5178), 1, - sym__lookback_semicolon, - STATE(803), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108794] = 3, - ACTIONS(5933), 1, - anon_sym_RPAREN, - ACTIONS(5935), 1, - anon_sym_COMMA, + [109604] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(220), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108805] = 3, - ACTIONS(5937), 1, + [109615] = 3, + ACTIONS(5954), 1, sym__lookback_semicolon, - STATE(688), 1, + STATE(478), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108816] = 3, - ACTIONS(5939), 1, + [109626] = 3, + ACTIONS(5956), 1, sym__lookback_semicolon, - STATE(689), 1, + STATE(479), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108827] = 3, - ACTIONS(5941), 1, + [109637] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5457), 1, sym__lookback_semicolon, - STATE(719), 1, - sym__semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108838] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(5943), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [108849] = 3, - ACTIONS(5945), 1, - anon_sym_LBRACE, - STATE(241), 1, - sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108860] = 3, - ACTIONS(5240), 1, + [109648] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(3232), 1, - sym__parenthesized_expression, + STATE(3599), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108871] = 3, - ACTIONS(5042), 1, - anon_sym_LPAREN, - STATE(233), 1, - sym__arg_list, + [109659] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108882] = 3, - ACTIONS(5244), 1, + ACTIONS(3937), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109668] = 3, + ACTIONS(5204), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(5958), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108893] = 3, - ACTIONS(5042), 1, + [109679] = 3, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(3612), 1, - sym__arg_list, + STATE(2563), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108904] = 3, - ACTIONS(5222), 1, + [109690] = 3, + ACTIONS(5110), 1, anon_sym_LPAREN, - STATE(29), 1, - sym__parenthesized_expression, + STATE(353), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108915] = 3, - ACTIONS(5949), 1, - sym__lookback_semicolon, - STATE(468), 1, - sym__semicolon, + [109701] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5952), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108926] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym__parenthesized_expression, + [109712] = 3, + ACTIONS(5960), 1, + sym__lookback_semicolon, + STATE(803), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108937] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym__parenthesized_expression, + [109723] = 3, + ACTIONS(5962), 1, + sym__lookback_semicolon, + STATE(804), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108948] = 3, - ACTIONS(5038), 1, - anon_sym_LPAREN, - STATE(340), 1, - sym__arg_list, + [109734] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5716), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108959] = 3, - ACTIONS(5222), 1, - anon_sym_LPAREN, - STATE(6), 1, - sym__parenthesized_expression, + [109745] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5470), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108970] = 3, - ACTIONS(5951), 1, + [109756] = 3, + ACTIONS(5474), 1, sym__lookback_semicolon, - STATE(720), 1, + STATE(807), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108981] = 3, - ACTIONS(5953), 1, - aux_sym_preprocessor_statement_token1, - ACTIONS(5955), 1, - aux_sym_preprocessor_statement_token2, + [109767] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(31), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [108992] = 3, - ACTIONS(5957), 1, + [109778] = 3, + ACTIONS(5964), 1, sym__lookback_semicolon, - STATE(469), 1, + STATE(813), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109003] = 2, + [109789] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5943), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [109012] = 3, - ACTIONS(5046), 1, + [109800] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(77), 1, + STATE(35), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109023] = 3, - ACTIONS(5200), 1, + [109811] = 3, + ACTIONS(5300), 1, anon_sym_LPAREN, - STATE(1543), 1, - sym__arg_list, + STATE(7), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109034] = 3, - ACTIONS(5458), 1, - sym__lookback_semicolon, - STATE(470), 1, - sym__semicolon, + [109822] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109045] = 3, - ACTIONS(5046), 1, + ACTIONS(5773), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [109831] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(36), 1, + STATE(80), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109056] = 3, - ACTIONS(5959), 1, - sym__lookback_semicolon, - STATE(471), 1, - sym__semicolon, + [109842] = 3, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1811), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109067] = 3, - ACTIONS(5046), 1, + [109853] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(107), 1, + STATE(36), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109078] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(5571), 1, - anon_sym_COLON, + [109864] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109089] = 3, - ACTIONS(5046), 1, + [109875] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(83), 1, + STATE(86), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109100] = 3, - ACTIONS(5046), 1, + [109886] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(84), 1, + STATE(87), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109111] = 3, - ACTIONS(5046), 1, + [109897] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(26), 1, + STATE(29), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109122] = 2, + [109908] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5706), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109131] = 3, - ACTIONS(5925), 1, - aux_sym_preprocessor_statement_token2, - ACTIONS(5961), 1, - aux_sym_preprocessor_statement_token1, + 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, - [109142] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(5636), 1, - anon_sym_in, + [109928] = 3, + ACTIONS(5496), 1, + sym__lookback_semicolon, + STATE(749), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [109939] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3334), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109153] = 3, - ACTIONS(5390), 1, + [109950] = 3, + ACTIONS(5966), 1, sym__lookback_semicolon, - STATE(419), 1, + STATE(505), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109164] = 3, - ACTIONS(5279), 1, + [109961] = 3, + ACTIONS(5968), 1, sym__lookback_semicolon, - STATE(420), 1, + STATE(506), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109175] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(39), 1, - sym__parenthesized_expression, + [109972] = 3, + ACTIONS(5970), 1, + sym__lookback_semicolon, + STATE(810), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109186] = 3, - ACTIONS(5042), 1, - anon_sym_LPAREN, - STATE(3448), 1, - sym__arg_list, + [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, - [109197] = 3, - ACTIONS(5963), 1, - sym__lookback_semicolon, - STATE(528), 1, - sym__semicolon, + [109994] = 3, + ACTIONS(5976), 1, + anon_sym_DOT, + ACTIONS(5978), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109208] = 3, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2749), 1, - sym__function_arg_list, + [110005] = 3, + ACTIONS(5980), 1, + anon_sym_RPAREN, + ACTIONS(5982), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109219] = 3, - ACTIONS(5180), 1, + [110016] = 3, + ACTIONS(5300), 1, anon_sym_LPAREN, - STATE(2004), 1, - sym__arg_list, + STATE(34), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109230] = 3, - ACTIONS(5222), 1, + [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(32), 1, + STATE(5), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109241] = 3, - ACTIONS(5965), 1, - anon_sym_LBRACE, - STATE(1949), 1, - sym_switch_block, + [110049] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5322), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109252] = 3, - ACTIONS(5222), 1, + [110060] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(7), 1, + STATE(41), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109263] = 3, - ACTIONS(5967), 1, - anon_sym_RPAREN, - ACTIONS(5969), 1, - anon_sym_COMMA, + [110071] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(19), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109274] = 3, - ACTIONS(5046), 1, + [110082] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(8), 1, + STATE(78), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109285] = 3, - ACTIONS(1624), 1, + [110093] = 3, + ACTIONS(5988), 1, + anon_sym_RPAREN, + ACTIONS(5990), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110104] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5660), 1, + ACTIONS(5775), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109296] = 3, - ACTIONS(5240), 1, - anon_sym_LPAREN, - STATE(3287), 1, - sym__parenthesized_expression, + [110115] = 3, + ACTIONS(5992), 1, + sym__lookback_semicolon, + STATE(676), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109307] = 3, - ACTIONS(5042), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym__arg_list, + [110126] = 3, + ACTIONS(5290), 1, + sym__lookback_semicolon, + STATE(750), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109318] = 3, - ACTIONS(5042), 1, - anon_sym_LPAREN, - STATE(3609), 1, - sym__arg_list, + [110137] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109329] = 3, - ACTIONS(5240), 1, + ACTIONS(3969), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110146] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(3233), 1, - sym__parenthesized_expression, + STATE(3606), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109340] = 3, - ACTIONS(5046), 1, + [110157] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(91), 1, + STATE(40), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109351] = 3, - ACTIONS(5222), 1, - anon_sym_LPAREN, - STATE(22), 1, - sym__parenthesized_expression, + [110168] = 3, + ACTIONS(5994), 1, + anon_sym_LBRACE, + STATE(358), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109362] = 3, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_QMARK, + [110179] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5996), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109373] = 3, - ACTIONS(5222), 1, + [110190] = 3, + ACTIONS(5300), 1, anon_sym_LPAREN, - STATE(3), 1, + STATE(22), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109384] = 2, + [110201] = 3, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1794), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5971), 2, - sym__lookback_semicolon, - anon_sym_DOT, - [109393] = 3, - ACTIONS(5046), 1, + [110212] = 3, + ACTIONS(5300), 1, anon_sym_LPAREN, - STATE(90), 1, + STATE(3), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109404] = 3, - ACTIONS(5200), 1, - anon_sym_LPAREN, - STATE(1551), 1, - sym__arg_list, + [110223] = 3, + ACTIONS(5998), 1, + anon_sym_LBRACE, + STATE(200), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109415] = 3, - ACTIONS(1624), 1, + [110234] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5680), 1, + ACTIONS(5789), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109426] = 3, - ACTIONS(5042), 1, + [110245] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(3554), 1, + STATE(3497), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109437] = 3, - ACTIONS(1624), 1, + [110256] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5682), 1, + ACTIONS(5791), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109448] = 3, - ACTIONS(5042), 1, + [110267] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(3651), 1, + STATE(3657), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109459] = 3, - ACTIONS(1624), 1, + [110278] = 3, + ACTIONS(6000), 1, + anon_sym_LBRACE, + STATE(331), 1, + sym_switch_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110289] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5684), 1, + ACTIONS(5793), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109470] = 3, - ACTIONS(5042), 1, + [110300] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(3608), 1, + STATE(3576), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109481] = 3, - ACTIONS(1624), 1, + [110311] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5686), 1, + ACTIONS(5795), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109492] = 3, - ACTIONS(5042), 1, + [110322] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3676), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110333] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(3672), 1, + STATE(235), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109503] = 3, - ACTIONS(1624), 1, + [110344] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5688), 1, + ACTIONS(5797), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109514] = 3, - ACTIONS(5180), 1, + [110355] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(1981), 1, + STATE(3687), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109525] = 2, + [110366] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5799), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110377] = 3, + ACTIONS(4469), 1, + anon_sym_DOT, + ACTIONS(4471), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3916), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109534] = 3, - ACTIONS(1624), 1, + [110388] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5690), 1, + ACTIONS(5801), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109545] = 3, - ACTIONS(1624), 1, + [110399] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5692), 1, + ACTIONS(5803), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109556] = 3, - ACTIONS(5973), 1, - sym__lookback_semicolon, - STATE(529), 1, - sym__semicolon, + [110410] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109567] = 3, - ACTIONS(1624), 1, + [110421] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5694), 1, + ACTIONS(5805), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109578] = 3, - ACTIONS(1624), 1, + [110432] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5696), 1, + ACTIONS(5807), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109589] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(5698), 1, - anon_sym_in, + [110443] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5350), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109600] = 3, - ACTIONS(1624), 1, + [110454] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5700), 1, + ACTIONS(5809), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109611] = 3, - ACTIONS(5925), 1, + [110465] = 3, + ACTIONS(5986), 1, aux_sym_preprocessor_statement_token2, - ACTIONS(5975), 1, + ACTIONS(6002), 1, aux_sym_preprocessor_statement_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109622] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5464), 1, + [110476] = 3, + ACTIONS(6004), 1, sym__lookback_semicolon, + STATE(811), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109633] = 3, - ACTIONS(5042), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym__arg_list, + [110487] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5781), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109644] = 3, - ACTIONS(5977), 1, - sym__lookback_semicolon, - STATE(425), 1, - sym__semicolon, + [110498] = 3, + ACTIONS(6006), 1, + anon_sym_RPAREN, + ACTIONS(6008), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110509] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109655] = 3, - ACTIONS(5979), 1, + ACTIONS(6010), 2, sym__lookback_semicolon, - STATE(793), 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, - [109666] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5726), 1, - anon_sym_RPAREN, + [110529] = 3, + ACTIONS(6012), 1, + sym__lookback_semicolon, + STATE(765), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109677] = 3, - ACTIONS(5981), 1, - anon_sym_DOT, - ACTIONS(5983), 1, - anon_sym_QMARK, + [110540] = 3, + ACTIONS(6014), 1, + sym__lookback_semicolon, + STATE(445), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109688] = 3, - ACTIONS(5242), 1, + [110551] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(1748), 1, + STATE(1523), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109699] = 3, - ACTIONS(5293), 1, + [110562] = 3, + ACTIONS(5236), 1, anon_sym_LPAREN, - STATE(2735), 1, - sym__function_arg_list, + STATE(3156), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109710] = 3, - ACTIONS(5180), 1, + [110573] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(2037), 1, + STATE(229), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109721] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5351), 1, + [110584] = 3, + ACTIONS(6016), 1, sym__lookback_semicolon, + STATE(446), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109732] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5985), 1, - anon_sym_RPAREN, + [110595] = 3, + ACTIONS(5236), 1, + anon_sym_LPAREN, + STATE(3148), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109743] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5987), 1, + [110606] = 3, + ACTIONS(6018), 1, anon_sym_RPAREN, + ACTIONS(6020), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109754] = 3, - ACTIONS(5200), 1, - anon_sym_LPAREN, - STATE(1556), 1, - sym__arg_list, + [110617] = 3, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109765] = 3, - ACTIONS(5989), 1, + [110628] = 3, + ACTIONS(5432), 1, sym__lookback_semicolon, - STATE(825), 1, + STATE(447), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109776] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5402), 1, + [110639] = 3, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2790), 1, + sym__function_arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110650] = 3, + ACTIONS(6022), 1, sym__lookback_semicolon, + STATE(448), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109787] = 3, - ACTIONS(5038), 1, + [110661] = 3, + ACTIONS(5952), 1, + anon_sym_EQ_GT, + ACTIONS(6024), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110672] = 3, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(1805), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109798] = 3, - ACTIONS(1624), 1, - anon_sym_EQ_GT, - ACTIONS(5749), 1, - anon_sym_in, + [110683] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109809] = 3, - ACTIONS(5991), 1, - anon_sym_RPAREN, - ACTIONS(5993), 1, + 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, - [109820] = 3, - ACTIONS(5240), 1, - anon_sym_LPAREN, - STATE(3243), 1, - sym__parenthesized_expression, + [110703] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5826), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109831] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(45), 1, - sym__parenthesized_expression, + [110714] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5360), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109842] = 3, - ACTIONS(5042), 1, + [110725] = 3, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(175), 1, + STATE(2011), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109853] = 3, - ACTIONS(4442), 1, - anon_sym_DOT, - ACTIONS(4444), 1, - anon_sym_QMARK, + [110736] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109864] = 3, - ACTIONS(5242), 1, + ACTIONS(5835), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110745] = 3, + ACTIONS(5110), 1, anon_sym_LPAREN, - STATE(1980), 1, + STATE(338), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109875] = 2, + [110756] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(5800), 2, - sym__closing_brace_marker, + ACTIONS(3955), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [109884] = 3, - ACTIONS(5046), 1, + [110765] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5486), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110776] = 3, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(58), 1, - sym__parenthesized_expression, + STATE(2739), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109895] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(5995), 1, - anon_sym_RPAREN, + [110787] = 3, + ACTIONS(6026), 1, + anon_sym_LBRACE, + STATE(410), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109906] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym__parenthesized_expression, + [110798] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109917] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5386), 1, - sym__lookback_semicolon, + ACTIONS(6028), 2, + anon_sym_LBRACE, + anon_sym_implements, + [110807] = 3, + ACTIONS(6030), 1, + anon_sym_DOT, + ACTIONS(6032), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109928] = 3, - ACTIONS(5416), 1, + [110818] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110829] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5516), 1, sym__lookback_semicolon, - STATE(442), 1, - sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109939] = 3, - ACTIONS(5997), 1, + [110840] = 3, + ACTIONS(6034), 1, anon_sym_RPAREN, - ACTIONS(5999), 1, + ACTIONS(6036), 1, anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109950] = 3, - ACTIONS(6001), 1, + [110851] = 3, + ACTIONS(6038), 1, sym__lookback_semicolon, - STATE(443), 1, + STATE(677), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109961] = 3, - ACTIONS(6003), 1, + [110862] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5879), 1, anon_sym_RPAREN, - ACTIONS(6005), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109972] = 3, - ACTIONS(5955), 1, + [110873] = 3, + ACTIONS(5974), 1, aux_sym_preprocessor_statement_token2, - ACTIONS(6007), 1, + ACTIONS(6040), 1, aux_sym_preprocessor_statement_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109983] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5489), 1, - sym__lookback_semicolon, + [110884] = 3, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(667), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [109994] = 3, - ACTIONS(5242), 1, + [110895] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(1972), 1, + STATE(1538), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110005] = 3, - ACTIONS(5293), 1, + [110906] = 3, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(2775), 1, - sym__function_arg_list, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [110016] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5493), 1, - sym__lookback_semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [110027] = 2, + STATE(1926), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [110036] = 3, - ACTIONS(5222), 1, + [110917] = 3, + ACTIONS(5300), 1, anon_sym_LPAREN, - STATE(40), 1, + STATE(48), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110047] = 3, - ACTIONS(6009), 1, - anon_sym_LBRACE, - STATE(349), 1, - sym_switch_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [110058] = 3, - ACTIONS(6011), 1, + [110928] = 3, + ACTIONS(6042), 1, sym_identifier, - STATE(3253), 1, + STATE(3179), 1, sym_structure_type_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110069] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3888), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [110078] = 3, - ACTIONS(1624), 1, + [110939] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5787), 1, + ACTIONS(5849), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110089] = 2, + [110950] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(6044), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(6013), 2, - anon_sym_LBRACE, - anon_sym_implements, - [110098] = 2, + [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, - ACTIONS(6015), 2, - anon_sym_LBRACE, - anon_sym_extends, - [110107] = 3, - ACTIONS(5222), 1, + [110972] = 3, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(9), 1, - sym__parenthesized_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [110118] = 3, - ACTIONS(6017), 1, - anon_sym_DOT, - ACTIONS(6019), 1, - anon_sym_QMARK, + STATE(2555), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110129] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(67), 1, - sym__parenthesized_expression, + [110983] = 3, + ACTIONS(5366), 1, + sym__lookback_semicolon, + STATE(751), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110140] = 3, - ACTIONS(1628), 1, - anon_sym_DOT_DOT_DOT, - STATE(2469), 1, - sym__rangeOperator, + [110994] = 3, + ACTIONS(6048), 1, + sym__lookback_semicolon, + STATE(662), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110151] = 3, - ACTIONS(5242), 1, + [111005] = 3, + ACTIONS(5222), 1, anon_sym_LPAREN, - STATE(1891), 1, + STATE(1550), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110162] = 3, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2603), 1, - sym__function_arg_list, + [111016] = 3, + ACTIONS(4597), 1, + anon_sym_DOT, + ACTIONS(4599), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110173] = 3, - ACTIONS(5293), 1, + [111027] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(2698), 1, - sym__function_arg_list, + STATE(59), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110184] = 3, - ACTIONS(5943), 1, - anon_sym_EQ_GT, - ACTIONS(6021), 1, - anon_sym_COLON, + [111038] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5526), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110195] = 3, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2827), 1, - sym__function_arg_list, + [111049] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(6050), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110206] = 3, - ACTIONS(6023), 1, + [111060] = 3, + ACTIONS(5398), 1, sym__lookback_semicolon, - STATE(501), 1, + STATE(419), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110217] = 2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3928), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [110226] = 3, - ACTIONS(1624), 1, + [111071] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(5814), 1, + ACTIONS(5859), 1, anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110237] = 3, - ACTIONS(6025), 1, + [111082] = 3, + ACTIONS(5387), 1, sym__lookback_semicolon, - STATE(446), 1, + STATE(584), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110248] = 3, - ACTIONS(6027), 1, - anon_sym_LBRACE, - STATE(1949), 1, - sym_switch_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [110259] = 3, - ACTIONS(6029), 1, - sym__lookback_semicolon, - STATE(830), 1, - sym__semicolon, + [111093] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110270] = 3, - ACTIONS(6031), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_switch_block, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [111102] = 3, + ACTIONS(5110), 1, + anon_sym_LPAREN, + STATE(390), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110281] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5514), 1, + [111113] = 3, + ACTIONS(6052), 1, sym__lookback_semicolon, + STATE(420), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110292] = 3, - ACTIONS(6033), 1, + [111124] = 3, + ACTIONS(5194), 1, sym__lookback_semicolon, - STATE(833), 1, + STATE(585), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110303] = 3, - ACTIONS(5020), 1, - anon_sym_LBRACE, - STATE(733), 1, - sym_block, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [110314] = 3, - ACTIONS(4598), 1, + [111135] = 3, + ACTIONS(6054), 1, anon_sym_DOT, - ACTIONS(4600), 1, + ACTIONS(6056), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110325] = 3, - ACTIONS(5046), 1, + [111146] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(85), 1, + STATE(60), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110336] = 3, - ACTIONS(5365), 1, - sym__lookback_semicolon, - STATE(649), 1, - sym__semicolon, + [111157] = 3, + ACTIONS(6058), 1, + anon_sym_DOT, + ACTIONS(6060), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [111168] = 3, + ACTIONS(6062), 1, + anon_sym_DOT, + ACTIONS(6064), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110347] = 3, - ACTIONS(5200), 1, + [111179] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(1535), 1, - sym__arg_list, + STATE(61), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110358] = 3, - ACTIONS(6035), 1, + [111190] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5342), 1, sym__lookback_semicolon, - STATE(650), 1, - sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110369] = 3, - ACTIONS(6037), 1, - sym__lookback_semicolon, - STATE(502), 1, - sym__semicolon, + [111201] = 3, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2581), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110380] = 3, - ACTIONS(6039), 1, - anon_sym_DOT, - ACTIONS(6041), 1, - anon_sym_QMARK, + [111212] = 3, + ACTIONS(5220), 1, + anon_sym_LPAREN, + STATE(1902), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110391] = 3, - ACTIONS(5046), 1, + [111223] = 3, + ACTIONS(5256), 1, anon_sym_LPAREN, - STATE(89), 1, - sym__parenthesized_expression, + STATE(1819), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110402] = 3, - ACTIONS(5244), 1, - anon_sym_DASH_GT, - ACTIONS(6043), 1, - anon_sym_RPAREN, + [111234] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(14), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110413] = 3, - ACTIONS(6045), 1, + [111245] = 3, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(6047), 1, + ACTIONS(6068), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110424] = 3, - ACTIONS(5046), 1, + [111256] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(50), 1, + STATE(62), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110435] = 3, - ACTIONS(5285), 1, - anon_sym_DASH_GT, - ACTIONS(5518), 1, - sym__lookback_semicolon, + [111267] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(88), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110446] = 3, - ACTIONS(6049), 1, + [111278] = 3, + ACTIONS(6070), 1, anon_sym_DOT, - ACTIONS(6051), 1, + ACTIONS(6072), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110457] = 3, - ACTIONS(5046), 1, + [111289] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(51), 1, + STATE(63), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110468] = 3, - ACTIONS(6053), 1, - anon_sym_DOT, - ACTIONS(6055), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [110479] = 3, - ACTIONS(5046), 1, - anon_sym_LPAREN, - STATE(52), 1, - sym__parenthesized_expression, + [111300] = 3, + ACTIONS(6074), 1, + anon_sym_LBRACE, + STATE(1761), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110490] = 3, - ACTIONS(5285), 1, + [111311] = 3, + ACTIONS(5204), 1, anon_sym_DASH_GT, - ACTIONS(5522), 1, - sym__lookback_semicolon, + ACTIONS(6076), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110501] = 3, - ACTIONS(6057), 1, + [111322] = 3, + ACTIONS(6078), 1, anon_sym_DOT, - ACTIONS(6059), 1, + ACTIONS(6080), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110512] = 3, - ACTIONS(5046), 1, + [111333] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - STATE(60), 1, + STATE(70), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110523] = 3, - ACTIONS(5042), 1, + [111344] = 3, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(3689), 1, - sym__arg_list, + STATE(2725), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110534] = 2, - ACTIONS(6061), 1, + [111355] = 2, + ACTIONS(6082), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110542] = 2, - ACTIONS(6063), 1, + [111363] = 2, + ACTIONS(6084), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110550] = 2, - ACTIONS(6065), 1, + [111371] = 2, + ACTIONS(6086), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110558] = 2, - ACTIONS(6067), 1, - anon_sym_LPAREN, + [111379] = 2, + ACTIONS(6088), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110566] = 2, - ACTIONS(6069), 1, - anon_sym_DOT, + [111387] = 2, + ACTIONS(6090), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110574] = 2, - ACTIONS(6071), 1, - anon_sym_EQ, + [111395] = 2, + ACTIONS(6092), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110582] = 2, - ACTIONS(6073), 1, - sym__lookback_semicolon, + [111403] = 2, + ACTIONS(6094), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110590] = 2, - ACTIONS(4164), 1, + [111411] = 2, + ACTIONS(5304), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110598] = 2, - ACTIONS(3657), 1, + [111419] = 2, + ACTIONS(3691), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110606] = 2, - ACTIONS(6075), 1, - anon_sym_DOT, + [111427] = 2, + ACTIONS(4165), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110614] = 2, - ACTIONS(4184), 1, - anon_sym_while, + [111435] = 2, + ACTIONS(6096), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110622] = 2, - ACTIONS(4086), 1, - sym__lookback_semicolon, + [111443] = 2, + ACTIONS(6098), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110630] = 2, - ACTIONS(6077), 1, - anon_sym_RPAREN, + [111451] = 2, + ACTIONS(6100), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110638] = 2, - ACTIONS(5646), 1, + [111459] = 2, + ACTIONS(5760), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110646] = 2, - ACTIONS(5704), 1, + [111467] = 2, + ACTIONS(6102), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110654] = 2, - ACTIONS(4044), 1, - sym__lookback_semicolon, + [111475] = 2, + ACTIONS(5716), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110662] = 2, - ACTIONS(3960), 1, + [111483] = 2, + ACTIONS(4197), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110670] = 2, - ACTIONS(5316), 1, - sym__lookback_semicolon, + [111491] = 2, + ACTIONS(6104), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110678] = 2, - ACTIONS(4158), 1, - anon_sym_RBRACK, + [111499] = 2, + ACTIONS(6106), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110686] = 2, - ACTIONS(4088), 1, + [111507] = 2, + ACTIONS(4045), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110694] = 2, - ACTIONS(3998), 1, - anon_sym_RBRACK, + [111515] = 2, + ACTIONS(6108), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110702] = 2, - ACTIONS(6079), 1, - anon_sym_RBRACE, + [111523] = 2, + ACTIONS(4093), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110710] = 2, - ACTIONS(3420), 1, + [111531] = 2, + ACTIONS(4205), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110718] = 2, - ACTIONS(6081), 1, - anon_sym_RPAREN, + [111539] = 2, + ACTIONS(4301), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110726] = 2, - ACTIONS(3964), 1, - sym__lookback_semicolon, + [111547] = 2, + ACTIONS(6110), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110734] = 2, - ACTIONS(4002), 1, - sym__lookback_semicolon, + [111555] = 2, + ACTIONS(6112), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110742] = 2, - ACTIONS(6083), 1, - anon_sym_DOT, + [111563] = 2, + ACTIONS(4207), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110750] = 2, - ACTIONS(4198), 1, - sym__lookback_semicolon, + [111571] = 2, + ACTIONS(4113), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110758] = 2, - ACTIONS(5654), 1, + [111579] = 2, + ACTIONS(5766), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110766] = 2, - ACTIONS(6085), 1, - anon_sym_DOT, + [111587] = 2, + ACTIONS(2665), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110774] = 2, - ACTIONS(4156), 1, - anon_sym_RBRACK, + [111595] = 2, + ACTIONS(2625), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110782] = 2, - ACTIONS(5943), 1, - anon_sym_EQ_GT, + [111603] = 2, + ACTIONS(6114), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110790] = 2, - ACTIONS(5656), 1, + [111611] = 2, + ACTIONS(5768), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110798] = 2, - ACTIONS(6087), 1, - anon_sym_RBRACE, + [111619] = 2, + ACTIONS(4267), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110806] = 2, - ACTIONS(4060), 1, + [111627] = 2, + ACTIONS(4257), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110814] = 2, - ACTIONS(6089), 1, - anon_sym_DOT, + [111635] = 2, + ACTIONS(6116), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110822] = 2, - ACTIONS(6091), 1, + [111643] = 2, + ACTIONS(6118), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110830] = 2, - ACTIONS(4168), 1, - sym__lookback_semicolon, + [111651] = 2, + ACTIONS(4269), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110838] = 2, - ACTIONS(4004), 1, + [111659] = 2, + ACTIONS(4061), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110846] = 2, - ACTIONS(3966), 1, - sym__lookback_semicolon, + [111667] = 2, + ACTIONS(6120), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110854] = 2, - ACTIONS(3848), 1, - anon_sym_RBRACK, + [111675] = 2, + ACTIONS(4159), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110862] = 2, - ACTIONS(4172), 1, - anon_sym_RBRACK, + [111683] = 2, + ACTIONS(6122), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110870] = 2, - ACTIONS(6093), 1, - sym__lookback_semicolon, + [111691] = 2, + ACTIONS(4115), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110878] = 2, - ACTIONS(3648), 1, + [111699] = 2, + ACTIONS(3671), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110886] = 2, - ACTIONS(6095), 1, + [111707] = 2, + ACTIONS(4029), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110894] = 2, - ACTIONS(3410), 1, - sym__lookback_semicolon, + [111715] = 2, + ACTIONS(6124), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110902] = 2, - ACTIONS(2630), 1, + [111723] = 2, + ACTIONS(3981), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110910] = 2, - ACTIONS(5668), 1, + [111731] = 2, + ACTIONS(5779), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110918] = 2, - ACTIONS(6097), 1, - anon_sym_DOT, + [111739] = 2, + ACTIONS(6126), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110926] = 2, - ACTIONS(4160), 1, - sym__lookback_semicolon, + [111747] = 2, + ACTIONS(6128), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110934] = 2, - ACTIONS(3412), 1, + [111755] = 2, + ACTIONS(4001), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110942] = 2, - ACTIONS(4202), 1, + [111763] = 2, + ACTIONS(4315), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110950] = 2, - ACTIONS(4006), 1, + [111771] = 2, + ACTIONS(4131), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110958] = 2, - ACTIONS(4084), 1, - sym__lookback_semicolon, + [111779] = 2, + ACTIONS(6130), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110966] = 2, - ACTIONS(3996), 1, + [111787] = 2, + ACTIONS(4199), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110974] = 2, - ACTIONS(4000), 1, + [111795] = 2, + ACTIONS(5322), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110982] = 2, - ACTIONS(4224), 1, - sym__lookback_semicolon, + [111803] = 2, + ACTIONS(6132), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110990] = 2, - ACTIONS(5674), 1, + [111811] = 2, + ACTIONS(5894), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [110998] = 2, - ACTIONS(6099), 1, + [111819] = 2, + ACTIONS(6134), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111006] = 2, - ACTIONS(5434), 1, + [111827] = 2, + ACTIONS(4019), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111014] = 2, - ACTIONS(5676), 1, + [111835] = 2, + ACTIONS(5785), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111022] = 2, - ACTIONS(4132), 1, - anon_sym_RBRACK, + [111843] = 2, + ACTIONS(6136), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111030] = 2, - ACTIONS(4142), 1, - sym__lookback_semicolon, + [111851] = 2, + ACTIONS(6138), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111038] = 2, - ACTIONS(6101), 1, - anon_sym_EQ, + [111859] = 2, + ACTIONS(4189), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111046] = 2, - ACTIONS(6103), 1, + [111867] = 2, + ACTIONS(6140), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111054] = 2, - ACTIONS(3992), 1, - anon_sym_while, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [111062] = 2, - ACTIONS(3974), 1, - anon_sym_RPAREN, + [111875] = 2, + ACTIONS(6142), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111070] = 2, - ACTIONS(6105), 1, - anon_sym_DOT, + [111883] = 2, + ACTIONS(4031), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111078] = 2, - ACTIONS(5168), 1, - anon_sym_DOT, + [111891] = 2, + ACTIONS(4139), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111086] = 2, - ACTIONS(6107), 1, - anon_sym_DOT, + [111899] = 2, + ACTIONS(6144), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111094] = 2, - ACTIONS(5295), 1, + [111907] = 2, + ACTIONS(2643), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111102] = 2, - ACTIONS(6109), 1, + [111915] = 2, + ACTIONS(6146), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111110] = 2, - ACTIONS(6111), 1, - sym__lookback_semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [111118] = 2, - ACTIONS(6113), 1, - anon_sym_DOT, + [111923] = 2, + ACTIONS(5573), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111126] = 2, - ACTIONS(4226), 1, + [111931] = 2, + ACTIONS(5455), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111134] = 2, - ACTIONS(4186), 1, + [111939] = 2, + ACTIONS(4137), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111142] = 2, - ACTIONS(4134), 1, + [111947] = 2, + ACTIONS(4181), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111150] = 2, - ACTIONS(6115), 1, - anon_sym_EQ, + [111955] = 2, + ACTIONS(6148), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111158] = 2, - ACTIONS(4046), 1, - sym__lookback_semicolon, + [111963] = 2, + ACTIONS(6150), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111166] = 2, - ACTIONS(6117), 1, - sym__lookback_semicolon, + [111971] = 2, + ACTIONS(6152), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111174] = 2, - ACTIONS(5583), 1, + [111979] = 2, + ACTIONS(5726), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111182] = 2, - ACTIONS(4104), 1, - sym__lookback_semicolon, + [111987] = 2, + ACTIONS(6154), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111190] = 2, - ACTIONS(6119), 1, + [111995] = 2, + ACTIONS(6156), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111198] = 2, - ACTIONS(6121), 1, - anon_sym_DOT, + [112003] = 2, + ACTIONS(4151), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111206] = 2, - ACTIONS(6123), 1, + [112011] = 2, + ACTIONS(6158), 1, anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111214] = 2, - ACTIONS(6125), 1, - anon_sym_DOT, + [112019] = 2, + ACTIONS(4201), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111222] = 2, - ACTIONS(6127), 1, + [112027] = 2, + ACTIONS(6160), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111230] = 2, - ACTIONS(4210), 1, + [112035] = 2, + ACTIONS(4091), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111238] = 2, - ACTIONS(6129), 1, + [112043] = 2, + ACTIONS(6162), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111246] = 2, - ACTIONS(6131), 1, - sym__lookback_semicolon, + [112051] = 2, + ACTIONS(4047), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111254] = 2, - ACTIONS(3980), 1, + [112059] = 2, + ACTIONS(6164), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111262] = 2, - ACTIONS(3968), 1, + [112067] = 2, + ACTIONS(4209), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111270] = 2, - ACTIONS(4176), 1, - sym__lookback_semicolon, + [112075] = 2, + ACTIONS(3983), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112083] = 2, + ACTIONS(6166), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111278] = 2, - ACTIONS(6133), 1, + [112091] = 2, + ACTIONS(6168), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111286] = 2, - ACTIONS(6135), 1, + [112099] = 2, + ACTIONS(6170), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111294] = 2, - ACTIONS(4162), 1, - anon_sym_RBRACK, + [112107] = 2, + ACTIONS(4015), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111302] = 2, - ACTIONS(4072), 1, + [112115] = 2, + ACTIONS(4121), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111310] = 2, - ACTIONS(6137), 1, - anon_sym_LPAREN, + [112123] = 2, + ACTIONS(6172), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111318] = 2, - ACTIONS(4048), 1, - sym__lookback_semicolon, + [112131] = 2, + ACTIONS(6174), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111326] = 2, - ACTIONS(4090), 1, - sym__lookback_semicolon, + [112139] = 2, + ACTIONS(5952), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111334] = 2, - ACTIONS(4062), 1, + [112147] = 2, + ACTIONS(4171), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111342] = 2, - ACTIONS(3314), 1, + [112155] = 2, + ACTIONS(4065), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111350] = 2, - ACTIONS(5464), 1, + [112163] = 2, + ACTIONS(3273), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111358] = 2, - ACTIONS(4166), 1, + [112171] = 2, + ACTIONS(4017), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111366] = 2, - ACTIONS(4188), 1, - anon_sym_while, + [112179] = 2, + ACTIONS(6176), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111374] = 2, - ACTIONS(6139), 1, - anon_sym_DOT, + [112187] = 2, + ACTIONS(4271), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111382] = 2, - ACTIONS(6141), 1, - anon_sym_DOT, + [112195] = 2, + ACTIONS(4123), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111390] = 2, - ACTIONS(4068), 1, + [112203] = 2, + ACTIONS(4179), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111398] = 2, - ACTIONS(6143), 1, + [112211] = 2, + ACTIONS(6178), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111406] = 2, - ACTIONS(4212), 1, - sym__lookback_semicolon, + [112219] = 2, + ACTIONS(6180), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112227] = 2, + ACTIONS(6182), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111414] = 2, - ACTIONS(6145), 1, + [112235] = 2, + ACTIONS(4097), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111422] = 2, - ACTIONS(4008), 1, + [112243] = 2, + ACTIONS(4235), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111430] = 2, - ACTIONS(4208), 1, - sym__lookback_semicolon, + [112251] = 2, + ACTIONS(6184), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111438] = 2, - ACTIONS(3970), 1, + [112259] = 2, + ACTIONS(6186), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111446] = 2, - ACTIONS(3802), 1, - anon_sym_RBRACK, + [112267] = 2, + ACTIONS(4081), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111454] = 2, - ACTIONS(4170), 1, - anon_sym_RBRACK, + [112275] = 2, + ACTIONS(4211), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111462] = 2, - ACTIONS(6147), 1, - anon_sym_DASH_GT, + [112283] = 2, + ACTIONS(6010), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111470] = 2, - ACTIONS(4028), 1, + [112291] = 2, + ACTIONS(4003), 1, anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111478] = 2, - ACTIONS(3790), 1, - anon_sym_RBRACK, + [112299] = 2, + ACTIONS(6188), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111486] = 2, - ACTIONS(5571), 1, - anon_sym_EQ_GT, + [112307] = 2, + ACTIONS(5457), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111494] = 2, - ACTIONS(3986), 1, - sym__lookback_semicolon, + [112315] = 2, + ACTIONS(3789), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111502] = 2, - ACTIONS(6149), 1, - sym__lookback_semicolon, + [112323] = 2, + ACTIONS(5818), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111510] = 2, - ACTIONS(4196), 1, - anon_sym_RPAREN, + [112331] = 2, + ACTIONS(4187), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111518] = 2, - ACTIONS(3350), 1, + [112339] = 2, + ACTIONS(3345), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111526] = 2, - ACTIONS(6151), 1, - anon_sym_COLON, + [112347] = 2, + ACTIONS(6190), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111534] = 2, - ACTIONS(4146), 1, + [112355] = 2, + ACTIONS(3987), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111542] = 2, - ACTIONS(4240), 1, + [112363] = 2, + ACTIONS(4223), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111550] = 2, - ACTIONS(3414), 1, - sym__lookback_semicolon, + [112371] = 2, + ACTIONS(6192), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111558] = 2, - ACTIONS(4180), 1, - sym__lookback_semicolon, + [112379] = 2, + ACTIONS(6194), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111566] = 2, - ACTIONS(4214), 1, - sym__lookback_semicolon, + [112387] = 2, + ACTIONS(6196), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111574] = 2, - ACTIONS(6153), 1, - ts_builtin_sym_end, + [112395] = 2, + ACTIONS(6198), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111582] = 2, - ACTIONS(4054), 1, + [112403] = 2, + ACTIONS(4247), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111590] = 2, - ACTIONS(6155), 1, - anon_sym_DASH_GT, + [112411] = 2, + ACTIONS(3449), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111598] = 2, - ACTIONS(6157), 1, - anon_sym_RPAREN, + [112419] = 2, + ACTIONS(6200), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111606] = 2, - ACTIONS(6159), 1, - anon_sym_RPAREN, + [112427] = 2, + ACTIONS(6202), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111614] = 2, - ACTIONS(4242), 1, + [112435] = 2, + ACTIONS(4227), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111622] = 2, - ACTIONS(6161), 1, - anon_sym_DASH_GT, + [112443] = 2, + ACTIONS(6204), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111630] = 2, - ACTIONS(6163), 1, - anon_sym_RPAREN, + [112451] = 2, + ACTIONS(6206), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111638] = 2, - ACTIONS(4244), 1, + [112459] = 2, + ACTIONS(4229), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111646] = 2, - ACTIONS(4136), 1, - anon_sym_RBRACK, + [112467] = 2, + ACTIONS(4101), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111654] = 2, - ACTIONS(6165), 1, - anon_sym_DOT, + [112475] = 2, + ACTIONS(4145), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111662] = 2, - ACTIONS(6167), 1, - anon_sym_RPAREN, + [112483] = 2, + ACTIONS(4149), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111670] = 2, - ACTIONS(6169), 1, + [112491] = 2, + ACTIONS(6208), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111678] = 2, - ACTIONS(5732), 1, + [112499] = 2, + ACTIONS(5734), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111686] = 2, - ACTIONS(3976), 1, + [112507] = 2, + ACTIONS(2637), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111694] = 2, - ACTIONS(4236), 1, - sym__lookback_semicolon, + [112515] = 2, + ACTIONS(3779), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111702] = 2, - ACTIONS(6171), 1, + [112523] = 2, + ACTIONS(6210), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111710] = 2, - ACTIONS(3422), 1, - sym__lookback_semicolon, + [112531] = 2, + ACTIONS(6212), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111718] = 2, - ACTIONS(5351), 1, + [112539] = 2, + ACTIONS(3229), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111726] = 2, - ACTIONS(6173), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [111734] = 2, - ACTIONS(6175), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [111742] = 2, - ACTIONS(6177), 1, + [112547] = 2, + ACTIONS(6214), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111750] = 2, - ACTIONS(4074), 1, + [112555] = 2, + ACTIONS(4245), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111758] = 2, - ACTIONS(6179), 1, + [112563] = 2, + ACTIONS(6216), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111766] = 2, - ACTIONS(5670), 1, + [112571] = 2, + ACTIONS(6218), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111774] = 2, - ACTIONS(6181), 1, + [112579] = 2, + ACTIONS(6220), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111782] = 2, - ACTIONS(6183), 1, - sym__lookback_semicolon, + [112587] = 2, + ACTIONS(3793), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111790] = 2, - ACTIONS(6185), 1, + [112595] = 2, + ACTIONS(6222), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111798] = 2, - ACTIONS(4174), 1, - anon_sym_RBRACK, + [112603] = 2, + ACTIONS(4127), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111806] = 2, - ACTIONS(6187), 1, - sym__lookback_semicolon, + [112611] = 2, + ACTIONS(6224), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111814] = 2, - ACTIONS(3962), 1, + [112619] = 2, + ACTIONS(2631), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111822] = 2, - ACTIONS(4112), 1, + [112627] = 2, + ACTIONS(4037), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111830] = 2, - ACTIONS(4056), 1, + [112635] = 2, + ACTIONS(3463), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111838] = 2, - ACTIONS(4144), 1, - anon_sym_RBRACK, + [112643] = 2, + ACTIONS(6226), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111846] = 2, - ACTIONS(6189), 1, - anon_sym_LPAREN, + [112651] = 2, + ACTIONS(5196), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111854] = 2, - ACTIONS(6191), 1, + [112659] = 2, + ACTIONS(6228), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111862] = 2, - ACTIONS(6193), 1, - anon_sym_RPAREN, + [112667] = 2, + ACTIONS(6230), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111870] = 2, - ACTIONS(3800), 1, + [112675] = 2, + ACTIONS(3835), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111878] = 2, - ACTIONS(6195), 1, - anon_sym_DOT, + [112683] = 2, + ACTIONS(6232), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111886] = 2, - ACTIONS(5402), 1, - sym__lookback_semicolon, + [112691] = 2, + ACTIONS(6234), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111894] = 2, - ACTIONS(4246), 1, - sym__lookback_semicolon, + [112699] = 2, + ACTIONS(6236), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111902] = 2, - ACTIONS(6197), 1, - anon_sym_LPAREN, + [112707] = 2, + ACTIONS(6238), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111910] = 2, - ACTIONS(5751), 1, - anon_sym_RPAREN, + [112715] = 2, + ACTIONS(4233), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111918] = 2, - ACTIONS(3972), 1, + [112723] = 2, + ACTIONS(6240), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112731] = 2, + ACTIONS(4103), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111926] = 2, - ACTIONS(6199), 1, - anon_sym_DASH_GT, + [112739] = 2, + ACTIONS(4111), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111934] = 2, - ACTIONS(6201), 1, - anon_sym_COLON, + [112747] = 2, + ACTIONS(6242), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111942] = 2, - ACTIONS(6203), 1, + [112755] = 2, + ACTIONS(6244), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111950] = 2, - ACTIONS(2648), 1, + [112763] = 2, + ACTIONS(4161), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111958] = 2, - ACTIONS(6205), 1, - anon_sym_DOT, + [112771] = 2, + ACTIONS(6246), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111966] = 2, - ACTIONS(4190), 1, + [112779] = 2, + ACTIONS(4009), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111974] = 2, - ACTIONS(2610), 1, + [112787] = 2, + ACTIONS(4213), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111982] = 2, - ACTIONS(6207), 1, - sym__lookback_semicolon, + [112795] = 2, + ACTIONS(4055), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111990] = 2, - ACTIONS(4100), 1, + [112803] = 2, + ACTIONS(3995), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [111998] = 2, - ACTIONS(4016), 1, + [112811] = 2, + ACTIONS(6248), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112006] = 2, - ACTIONS(6209), 1, - anon_sym_DASH_GT, + [112819] = 2, + ACTIONS(6250), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112014] = 2, - ACTIONS(3431), 1, + [112827] = 2, + ACTIONS(4215), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112022] = 2, - ACTIONS(6211), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [112030] = 2, - ACTIONS(4092), 1, + [112835] = 2, + ACTIONS(4119), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112038] = 2, - ACTIONS(6213), 1, + [112843] = 2, + ACTIONS(6252), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112046] = 2, - ACTIONS(4148), 1, + [112851] = 2, + ACTIONS(4025), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112054] = 2, - ACTIONS(6215), 1, + [112859] = 2, + ACTIONS(6254), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112867] = 2, + ACTIONS(4011), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112062] = 2, - ACTIONS(6217), 1, + [112875] = 2, + ACTIONS(5360), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112070] = 2, - ACTIONS(2658), 1, + [112883] = 2, + ACTIONS(6256), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112078] = 2, - ACTIONS(5400), 1, - anon_sym_EQ_GT, + [112891] = 2, + ACTIONS(6258), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112086] = 2, - ACTIONS(6219), 1, + [112899] = 2, + ACTIONS(6260), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112094] = 2, - ACTIONS(4058), 1, + [112907] = 2, + ACTIONS(3993), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112102] = 2, - ACTIONS(4216), 1, - sym__lookback_semicolon, + [112915] = 2, + ACTIONS(5416), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112110] = 2, - ACTIONS(6221), 1, + [112923] = 2, + ACTIONS(6262), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112118] = 2, - ACTIONS(6223), 1, - anon_sym_RBRACE, + [112931] = 2, + ACTIONS(6264), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112126] = 2, - ACTIONS(4248), 1, + [112939] = 2, + ACTIONS(4007), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112134] = 2, - ACTIONS(4138), 1, + [112947] = 2, + ACTIONS(4253), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112142] = 2, - ACTIONS(6225), 1, - anon_sym_DOT, + [112955] = 2, + ACTIONS(4023), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112150] = 2, - ACTIONS(4250), 1, + [112963] = 2, + ACTIONS(4167), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112158] = 2, - ACTIONS(4128), 1, - anon_sym_RBRACK, + [112971] = 2, + ACTIONS(4255), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112166] = 2, - ACTIONS(6227), 1, + [112979] = 2, + ACTIONS(3985), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112174] = 2, - ACTIONS(3952), 1, + [112987] = 2, + ACTIONS(4217), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112182] = 2, - ACTIONS(4252), 1, + [112995] = 2, + ACTIONS(5350), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112190] = 2, - ACTIONS(6229), 1, - anon_sym_DOT, + [113003] = 2, + ACTIONS(4259), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112198] = 2, - ACTIONS(6231), 1, + [113011] = 2, + ACTIONS(5740), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112206] = 2, - ACTIONS(4254), 1, + [113019] = 2, + ACTIONS(4219), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112214] = 2, - ACTIONS(6233), 1, - anon_sym_DOT, + [113027] = 2, + ACTIONS(4261), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112222] = 2, - ACTIONS(5489), 1, + [113035] = 2, + ACTIONS(4191), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112230] = 2, - ACTIONS(6235), 1, + [113043] = 2, + ACTIONS(4033), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112238] = 2, - ACTIONS(4256), 1, + [113051] = 2, + ACTIONS(5516), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112246] = 2, - ACTIONS(4218), 1, + [113059] = 2, + ACTIONS(4263), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112254] = 2, - ACTIONS(4064), 1, + [113067] = 2, + ACTIONS(4073), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112262] = 2, - ACTIONS(4066), 1, + [113075] = 2, + ACTIONS(3461), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112270] = 2, - ACTIONS(6237), 1, - anon_sym_RPAREN, + [113083] = 2, + ACTIONS(4059), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112278] = 2, - ACTIONS(6239), 1, - anon_sym_DASH_GT, + [113091] = 2, + ACTIONS(6266), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112286] = 2, - ACTIONS(6241), 1, - anon_sym_LPAREN, + [113099] = 2, + ACTIONS(4117), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112294] = 2, - ACTIONS(4222), 1, + [113107] = 2, + ACTIONS(4249), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112302] = 2, - ACTIONS(4022), 1, - sym__lookback_semicolon, + [113115] = 2, + ACTIONS(6268), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112310] = 2, - ACTIONS(4076), 1, - sym__lookback_semicolon, + [113123] = 2, + ACTIONS(5589), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112318] = 2, - ACTIONS(6243), 1, - anon_sym_EQ, + [113131] = 2, + ACTIONS(4043), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112326] = 2, - ACTIONS(6245), 1, - anon_sym_DOT, + [113139] = 2, + ACTIONS(5742), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112334] = 2, - ACTIONS(4114), 1, + [113147] = 2, + ACTIONS(4295), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112342] = 2, - ACTIONS(4126), 1, + [113155] = 2, + ACTIONS(4027), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112350] = 2, - ACTIONS(3440), 1, + [113163] = 2, + ACTIONS(6270), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113171] = 2, + ACTIONS(4125), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112358] = 2, - ACTIONS(5604), 1, - anon_sym_RPAREN, + [113179] = 2, + ACTIONS(4079), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112366] = 2, - ACTIONS(5644), 1, - anon_sym_RPAREN, + [113187] = 2, + ACTIONS(4035), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112374] = 2, - ACTIONS(4052), 1, + [113195] = 2, + ACTIONS(6272), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112382] = 2, - ACTIONS(6247), 1, + [113203] = 2, + ACTIONS(6274), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112390] = 2, - ACTIONS(6249), 1, - anon_sym_RBRACE, + [113211] = 2, + ACTIONS(4083), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112398] = 2, - ACTIONS(5493), 1, - sym__lookback_semicolon, + [113219] = 2, + ACTIONS(6276), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112406] = 2, - ACTIONS(4220), 1, + [113227] = 2, + ACTIONS(4075), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112414] = 2, - ACTIONS(4260), 1, + [113235] = 2, + ACTIONS(4273), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112422] = 2, - ACTIONS(6251), 1, + [113243] = 2, + ACTIONS(6278), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112430] = 2, - ACTIONS(5609), 1, - anon_sym_RPAREN, + [113251] = 2, + ACTIONS(4085), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112438] = 2, - ACTIONS(4262), 1, + [113259] = 2, + ACTIONS(4275), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112446] = 2, - ACTIONS(6253), 1, - anon_sym_RPAREN, + [113267] = 2, + ACTIONS(6280), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112454] = 2, - ACTIONS(6255), 1, - anon_sym_RPAREN, + [113275] = 2, + ACTIONS(4133), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112462] = 2, - ACTIONS(6257), 1, + [113283] = 2, + ACTIONS(6282), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112470] = 2, - ACTIONS(6259), 1, - anon_sym_RPAREN, + [113291] = 2, + ACTIONS(3991), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112478] = 2, - ACTIONS(5785), 1, + [113299] = 2, + ACTIONS(5744), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112486] = 2, - ACTIONS(6261), 1, - anon_sym_DOT, + [113307] = 2, + ACTIONS(4185), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112494] = 2, - ACTIONS(4150), 1, + [113315] = 2, + ACTIONS(4021), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112502] = 2, - ACTIONS(5971), 1, - anon_sym_DOT, + [113323] = 2, + ACTIONS(3759), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112510] = 2, - ACTIONS(4264), 1, + [113331] = 2, + ACTIONS(4277), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112518] = 2, - ACTIONS(6263), 1, - anon_sym_RBRACE, + [113339] = 2, + ACTIONS(6284), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112526] = 2, - ACTIONS(6265), 1, - anon_sym_DOT, + [113347] = 2, + ACTIONS(4053), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112534] = 2, - ACTIONS(4194), 1, + [113355] = 2, + ACTIONS(4193), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112542] = 2, - ACTIONS(4078), 1, - sym__lookback_semicolon, + [113363] = 2, + ACTIONS(4129), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112550] = 2, - ACTIONS(5613), 1, - anon_sym_RPAREN, + [113371] = 2, + ACTIONS(6286), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112558] = 2, - ACTIONS(4178), 1, - sym__lookback_semicolon, + [113379] = 2, + ACTIONS(6288), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112566] = 2, - ACTIONS(4040), 1, - sym__lookback_semicolon, + [113387] = 2, + ACTIONS(5851), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112574] = 2, - ACTIONS(6267), 1, - anon_sym_LPAREN, + [113395] = 2, + ACTIONS(4041), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112582] = 2, - ACTIONS(4120), 1, - sym__lookback_semicolon, + [113403] = 2, + ACTIONS(6290), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112590] = 2, - ACTIONS(4094), 1, + [113411] = 2, + ACTIONS(4221), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112598] = 2, - ACTIONS(3830), 1, - anon_sym_RBRACK, + [113419] = 2, + ACTIONS(4251), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112606] = 2, - ACTIONS(4050), 1, + [113427] = 2, + ACTIONS(3979), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112614] = 2, - ACTIONS(6269), 1, - anon_sym_EQ, + [113435] = 2, + ACTIONS(4203), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112622] = 2, - ACTIONS(6271), 1, - anon_sym_DOT, + [113443] = 2, + ACTIONS(5748), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112630] = 2, - ACTIONS(3306), 1, + [113451] = 2, + ACTIONS(6292), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112638] = 2, - ACTIONS(4106), 1, + [113459] = 2, + ACTIONS(3989), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112646] = 2, - ACTIONS(5386), 1, + [113467] = 2, + ACTIONS(4049), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112654] = 2, - ACTIONS(6273), 1, - anon_sym_DOT, + [113475] = 2, + ACTIONS(4141), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112662] = 2, - ACTIONS(5617), 1, - anon_sym_RPAREN, + [113483] = 2, + ACTIONS(4173), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112670] = 2, - ACTIONS(6275), 1, - anon_sym_DASH_GT, + [113491] = 2, + ACTIONS(4051), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112678] = 2, - ACTIONS(6277), 1, - anon_sym_DOT, + [113499] = 2, + ACTIONS(4157), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112686] = 2, - ACTIONS(6279), 1, - anon_sym_DOT, + [113507] = 2, + ACTIONS(6294), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112694] = 2, - ACTIONS(4266), 1, + [113515] = 2, + ACTIONS(4279), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112702] = 2, - ACTIONS(6281), 1, - anon_sym_DOT, + [113523] = 2, + ACTIONS(6296), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112710] = 2, - ACTIONS(3442), 1, - sym__lookback_semicolon, + [113531] = 2, + ACTIONS(4067), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112718] = 2, - ACTIONS(4268), 1, + [113539] = 2, + ACTIONS(4281), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112726] = 2, - ACTIONS(6283), 1, + [113547] = 2, + ACTIONS(6298), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112734] = 2, - ACTIONS(4030), 1, - sym__lookback_semicolon, + [113555] = 2, + ACTIONS(6300), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112742] = 2, - ACTIONS(4042), 1, - sym__lookback_semicolon, + [113563] = 2, + ACTIONS(6302), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112750] = 2, - ACTIONS(4270), 1, + [113571] = 2, + ACTIONS(4283), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112758] = 2, - ACTIONS(3982), 1, - sym__lookback_semicolon, + [113579] = 2, + ACTIONS(6304), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112766] = 2, - ACTIONS(6285), 1, + [113587] = 2, + ACTIONS(6306), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112774] = 2, - ACTIONS(4272), 1, - sym__lookback_semicolon, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [112782] = 2, - ACTIONS(4032), 1, + [113595] = 2, + ACTIONS(4285), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112790] = 2, - ACTIONS(4230), 1, + [113603] = 2, + ACTIONS(3455), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112798] = 2, - ACTIONS(4192), 1, - anon_sym_RBRACK, + [113611] = 2, + ACTIONS(6308), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112806] = 2, - ACTIONS(4274), 1, + [113619] = 2, + ACTIONS(4225), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112814] = 2, - ACTIONS(6287), 1, + [113627] = 2, + ACTIONS(4287), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112822] = 2, - ACTIONS(4014), 1, - sym__lookback_semicolon, + [113635] = 2, + ACTIONS(6310), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112830] = 2, - ACTIONS(3944), 1, - sym__lookback_semicolon, + [113643] = 2, + ACTIONS(6312), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112838] = 2, - ACTIONS(4228), 1, + [113651] = 2, + ACTIONS(4289), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112846] = 2, - ACTIONS(4034), 1, + [113659] = 2, + ACTIONS(5526), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112854] = 2, - ACTIONS(6289), 1, + [113667] = 2, + ACTIONS(6314), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112862] = 2, - ACTIONS(6291), 1, - anon_sym_RPAREN, + [113675] = 2, + ACTIONS(3189), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112870] = 2, - ACTIONS(6293), 1, - anon_sym_DOT, + [113683] = 2, + ACTIONS(4057), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112878] = 2, - ACTIONS(6295), 1, - anon_sym_LPAREN, + [113691] = 2, + ACTIONS(5867), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112886] = 2, - ACTIONS(6297), 1, - anon_sym_RPAREN, + [113699] = 2, + ACTIONS(6316), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112894] = 2, - ACTIONS(6299), 1, - anon_sym_RPAREN, + [113707] = 2, + ACTIONS(5470), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112902] = 2, - ACTIONS(6301), 1, - anon_sym_RPAREN, + [113715] = 2, + ACTIONS(4039), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112910] = 2, - ACTIONS(4070), 1, + [113723] = 2, + ACTIONS(4099), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112918] = 2, - ACTIONS(6303), 1, - anon_sym_RPAREN, + [113731] = 2, + ACTIONS(6318), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112926] = 2, - ACTIONS(6305), 1, - anon_sym_RBRACE, + [113739] = 2, + ACTIONS(3997), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112934] = 2, - ACTIONS(4154), 1, - anon_sym_RBRACK, + [113747] = 2, + ACTIONS(4143), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112942] = 2, - ACTIONS(4182), 1, + [113755] = 2, + ACTIONS(4195), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112950] = 2, - ACTIONS(3994), 1, - anon_sym_RBRACK, + [113763] = 2, + ACTIONS(6320), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112958] = 2, - ACTIONS(6307), 1, - anon_sym_RBRACE, + [113771] = 2, + ACTIONS(4109), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112966] = 2, - ACTIONS(4200), 1, - sym__lookback_semicolon, + [113779] = 2, + ACTIONS(6322), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112974] = 2, - ACTIONS(3946), 1, + [113787] = 2, + ACTIONS(6324), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112982] = 2, - ACTIONS(3978), 1, + [113795] = 2, + ACTIONS(4175), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112990] = 2, - ACTIONS(6309), 1, + [113803] = 2, + ACTIONS(6326), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [112998] = 2, - ACTIONS(4116), 1, - sym__lookback_semicolon, + [113811] = 2, + ACTIONS(6328), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113006] = 2, - ACTIONS(4232), 1, + [113819] = 2, + ACTIONS(4319), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113014] = 2, - ACTIONS(6311), 1, + [113827] = 2, + ACTIONS(6330), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113022] = 2, - ACTIONS(6313), 1, - anon_sym_DOT, + [113835] = 2, + ACTIONS(3451), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113030] = 2, - ACTIONS(6315), 1, - anon_sym_DOT, + [113843] = 2, + ACTIONS(3442), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113038] = 2, - ACTIONS(4204), 1, + [113851] = 2, + ACTIONS(6332), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113046] = 2, - ACTIONS(3984), 1, + [113859] = 2, + ACTIONS(4177), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113054] = 2, - ACTIONS(4108), 1, + [113867] = 2, + ACTIONS(4005), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113062] = 2, - ACTIONS(6317), 1, + [113875] = 2, + ACTIONS(6334), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113070] = 2, - ACTIONS(4276), 1, - sym__lookback_semicolon, + [113883] = 2, + ACTIONS(6336), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113078] = 2, - ACTIONS(4234), 1, + [113891] = 2, + ACTIONS(4291), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113086] = 2, - ACTIONS(4130), 1, + [113899] = 2, + ACTIONS(6338), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113094] = 2, - ACTIONS(4278), 1, + [113907] = 2, + ACTIONS(4231), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113102] = 2, - ACTIONS(6319), 1, + [113915] = 2, + ACTIONS(4293), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113110] = 2, - ACTIONS(4102), 1, - sym__lookback_semicolon, + [113923] = 2, + ACTIONS(6340), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113118] = 2, - ACTIONS(5625), 1, - anon_sym_RPAREN, + [113931] = 2, + ACTIONS(6342), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113126] = 2, - ACTIONS(4280), 1, + [113939] = 2, + ACTIONS(5342), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113134] = 2, - ACTIONS(4036), 1, + [113947] = 2, + ACTIONS(4297), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113142] = 2, - ACTIONS(4152), 1, + [113955] = 2, + ACTIONS(6344), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113963] = 2, + ACTIONS(6346), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113150] = 2, - ACTIONS(4282), 1, + [113971] = 2, + ACTIONS(4299), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113158] = 2, - ACTIONS(6321), 1, - anon_sym_DOT, + [113979] = 2, + ACTIONS(5756), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113166] = 2, - ACTIONS(6323), 1, + [113987] = 2, + ACTIONS(4243), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113174] = 2, - ACTIONS(4296), 1, + [113995] = 2, + ACTIONS(3999), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113182] = 2, - ACTIONS(4284), 1, + [114003] = 2, + ACTIONS(4303), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113190] = 2, - ACTIONS(6325), 1, - anon_sym_DOT, + [114011] = 2, + ACTIONS(6348), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113198] = 2, - ACTIONS(4140), 1, + [114019] = 2, + ACTIONS(4063), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113206] = 2, - ACTIONS(4286), 1, + [114027] = 2, + ACTIONS(4305), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113214] = 2, - ACTIONS(6327), 1, + [114035] = 2, + ACTIONS(3444), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113222] = 2, - ACTIONS(4206), 1, + [114043] = 2, + ACTIONS(6350), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113230] = 2, - ACTIONS(6329), 1, + [114051] = 2, + ACTIONS(6352), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113238] = 2, - ACTIONS(4098), 1, - sym__lookback_semicolon, + [114059] = 2, + ACTIONS(4095), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113246] = 2, - ACTIONS(4110), 1, + [114067] = 2, + ACTIONS(4013), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113254] = 2, - ACTIONS(6331), 1, + [114075] = 2, + ACTIONS(6354), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113262] = 2, - ACTIONS(6333), 1, + [114083] = 2, + ACTIONS(6356), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113270] = 2, - ACTIONS(6335), 1, + [114091] = 2, + ACTIONS(6358), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113278] = 2, - ACTIONS(6337), 1, + [114099] = 2, + ACTIONS(6360), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113286] = 2, - ACTIONS(6339), 1, + [114107] = 2, + ACTIONS(6362), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113294] = 2, - ACTIONS(6341), 1, + [114115] = 2, + ACTIONS(6364), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113302] = 2, - ACTIONS(6343), 1, + [114123] = 2, + ACTIONS(6366), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113310] = 2, - ACTIONS(6345), 1, + [114131] = 2, + ACTIONS(6368), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113318] = 2, - ACTIONS(6347), 1, + [114139] = 2, + ACTIONS(6370), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113326] = 2, - ACTIONS(6349), 1, + [114147] = 2, + ACTIONS(6372), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113334] = 2, - ACTIONS(6351), 1, + [114155] = 2, + ACTIONS(6374), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113342] = 2, - ACTIONS(5518), 1, - sym__lookback_semicolon, + [114163] = 2, + ACTIONS(6376), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113350] = 2, - ACTIONS(4082), 1, - sym__lookback_semicolon, + [114171] = 2, + ACTIONS(6378), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113358] = 2, - ACTIONS(6353), 1, - sym__lookback_semicolon, + [114179] = 2, + ACTIONS(6380), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113366] = 2, - ACTIONS(6355), 1, + [114187] = 2, + ACTIONS(6382), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113374] = 2, - ACTIONS(4288), 1, + [114195] = 2, + ACTIONS(4311), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113382] = 2, - ACTIONS(4118), 1, - anon_sym_RBRACE, + [114203] = 2, + ACTIONS(6384), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113390] = 2, - ACTIONS(5849), 1, - anon_sym_RPAREN, + [114211] = 2, + ACTIONS(4237), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113398] = 2, - ACTIONS(6357), 1, - anon_sym_RPAREN, + [114219] = 2, + ACTIONS(6386), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113406] = 2, - ACTIONS(6359), 1, - anon_sym_DOT, + [114227] = 2, + ACTIONS(5400), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113414] = 2, - ACTIONS(6361), 1, - anon_sym_DOT, + [114235] = 2, + ACTIONS(4077), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113422] = 2, - ACTIONS(4290), 1, + [114243] = 2, + ACTIONS(4313), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113430] = 2, - ACTIONS(5514), 1, + [114251] = 2, + ACTIONS(4147), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113438] = 2, - ACTIONS(6363), 1, - anon_sym_DOT, + [114259] = 2, + ACTIONS(4239), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113446] = 2, - ACTIONS(6365), 1, + [114267] = 2, + ACTIONS(6388), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113454] = 2, - ACTIONS(3262), 1, - sym__lookback_semicolon, + [114275] = 2, + ACTIONS(6390), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113462] = 2, - ACTIONS(4038), 1, - sym__lookback_semicolon, + [114283] = 2, + ACTIONS(6392), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113470] = 2, - ACTIONS(2604), 1, - sym__lookback_semicolon, + [114291] = 2, + ACTIONS(6394), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113478] = 2, - ACTIONS(4080), 1, - sym__lookback_semicolon, + [114299] = 2, + ACTIONS(6396), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113486] = 2, - ACTIONS(6367), 1, - anon_sym_DOT, + [114307] = 2, + ACTIONS(5890), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113494] = 2, - ACTIONS(4292), 1, + [114315] = 2, + ACTIONS(4317), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113502] = 2, - ACTIONS(6369), 1, - anon_sym_DOT, + [114323] = 2, + ACTIONS(4183), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113510] = 2, - ACTIONS(6371), 1, - anon_sym_DOT, + [114331] = 2, + ACTIONS(5486), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113518] = 2, - ACTIONS(6373), 1, + [114339] = 2, + ACTIONS(4163), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113526] = 2, - ACTIONS(4096), 1, + [114347] = 2, + ACTIONS(4135), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113534] = 2, - ACTIONS(6375), 1, - anon_sym_RPAREN, + [114355] = 2, + ACTIONS(4169), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113542] = 2, - ACTIONS(4238), 1, - anon_sym_RBRACE, + [114363] = 2, + ACTIONS(6398), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113550] = 2, - ACTIONS(5522), 1, + [114371] = 2, + ACTIONS(2675), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113558] = 2, - ACTIONS(6377), 1, - anon_sym_COLON, + [114379] = 2, + ACTIONS(4241), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113566] = 2, - ACTIONS(6379), 1, + [114387] = 2, + ACTIONS(3431), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113574] = 2, - ACTIONS(6381), 1, + [114395] = 2, + ACTIONS(6400), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113582] = 2, - ACTIONS(6383), 1, + [114403] = 2, + ACTIONS(6402), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113590] = 2, - ACTIONS(6385), 1, + [114411] = 2, + ACTIONS(6404), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113598] = 2, - ACTIONS(2616), 1, - sym__lookback_semicolon, + [114419] = 2, + ACTIONS(6406), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113606] = 2, - ACTIONS(4294), 1, + [114427] = 2, + ACTIONS(3977), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113614] = 2, - ACTIONS(6387), 1, + [114435] = 2, + ACTIONS(6408), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113622] = 2, - ACTIONS(6389), 1, - anon_sym_DOT, + [114443] = 2, + ACTIONS(6410), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113630] = 2, - ACTIONS(6391), 1, + [114451] = 2, + ACTIONS(6412), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113638] = 2, - ACTIONS(6393), 1, + [114459] = 2, + ACTIONS(6414), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [113646] = 2, - ACTIONS(4258), 1, + [114467] = 2, + ACTIONS(4265), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, @@ -181430,2832 +182113,2836 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(878)] = 0, - [SMALL_STATE(879)] = 111, - [SMALL_STATE(880)] = 222, - [SMALL_STATE(881)] = 331, - [SMALL_STATE(882)] = 440, - [SMALL_STATE(883)] = 549, - [SMALL_STATE(884)] = 658, - [SMALL_STATE(885)] = 727, - [SMALL_STATE(886)] = 836, - [SMALL_STATE(887)] = 945, - [SMALL_STATE(888)] = 1054, - [SMALL_STATE(889)] = 1163, - [SMALL_STATE(890)] = 1237, - [SMALL_STATE(891)] = 1339, - [SMALL_STATE(892)] = 1441, - [SMALL_STATE(893)] = 1543, - [SMALL_STATE(894)] = 1645, - [SMALL_STATE(895)] = 1747, - [SMALL_STATE(896)] = 1847, - [SMALL_STATE(897)] = 1947, - [SMALL_STATE(898)] = 2047, - [SMALL_STATE(899)] = 2147, - [SMALL_STATE(900)] = 2247, - [SMALL_STATE(901)] = 2347, - [SMALL_STATE(902)] = 2447, - [SMALL_STATE(903)] = 2547, - [SMALL_STATE(904)] = 2647, - [SMALL_STATE(905)] = 2747, - [SMALL_STATE(906)] = 2847, - [SMALL_STATE(907)] = 2947, - [SMALL_STATE(908)] = 3047, - [SMALL_STATE(909)] = 3147, - [SMALL_STATE(910)] = 3247, - [SMALL_STATE(911)] = 3347, - [SMALL_STATE(912)] = 3447, - [SMALL_STATE(913)] = 3547, - [SMALL_STATE(914)] = 3647, - [SMALL_STATE(915)] = 3747, - [SMALL_STATE(916)] = 3846, - [SMALL_STATE(917)] = 3945, - [SMALL_STATE(918)] = 4044, - [SMALL_STATE(919)] = 4143, - [SMALL_STATE(920)] = 4242, - [SMALL_STATE(921)] = 4341, - [SMALL_STATE(922)] = 4440, - [SMALL_STATE(923)] = 4539, - [SMALL_STATE(924)] = 4638, - [SMALL_STATE(925)] = 4737, - [SMALL_STATE(926)] = 4813, - [SMALL_STATE(927)] = 4887, - [SMALL_STATE(928)] = 4953, - [SMALL_STATE(929)] = 5019, - [SMALL_STATE(930)] = 5117, - [SMALL_STATE(931)] = 5215, - [SMALL_STATE(932)] = 5313, - [SMALL_STATE(933)] = 5387, - [SMALL_STATE(934)] = 5463, - [SMALL_STATE(935)] = 5561, - [SMALL_STATE(936)] = 5659, - [SMALL_STATE(937)] = 5757, - [SMALL_STATE(938)] = 5855, - [SMALL_STATE(939)] = 5925, - [SMALL_STATE(940)] = 6023, - [SMALL_STATE(941)] = 6121, - [SMALL_STATE(942)] = 6219, - [SMALL_STATE(943)] = 6295, - [SMALL_STATE(944)] = 6373, - [SMALL_STATE(945)] = 6442, - [SMALL_STATE(946)] = 6511, - [SMALL_STATE(947)] = 6574, - [SMALL_STATE(948)] = 6637, - [SMALL_STATE(949)] = 6706, - [SMALL_STATE(950)] = 6772, - [SMALL_STATE(951)] = 6836, - [SMALL_STATE(952)] = 6904, - [SMALL_STATE(953)] = 6970, - [SMALL_STATE(954)] = 7046, - [SMALL_STATE(955)] = 7110, - [SMALL_STATE(956)] = 7176, - [SMALL_STATE(957)] = 7240, - [SMALL_STATE(958)] = 7306, - [SMALL_STATE(959)] = 7373, - [SMALL_STATE(960)] = 7438, - [SMALL_STATE(961)] = 7503, - [SMALL_STATE(962)] = 7568, - [SMALL_STATE(963)] = 7633, - [SMALL_STATE(964)] = 7698, - [SMALL_STATE(965)] = 7765, - [SMALL_STATE(966)] = 7830, - [SMALL_STATE(967)] = 7893, - [SMALL_STATE(968)] = 7958, - [SMALL_STATE(969)] = 8025, - [SMALL_STATE(970)] = 8088, - [SMALL_STATE(971)] = 8151, - [SMALL_STATE(972)] = 8215, - [SMALL_STATE(973)] = 8279, - [SMALL_STATE(974)] = 8343, - [SMALL_STATE(975)] = 8409, - [SMALL_STATE(976)] = 8468, - [SMALL_STATE(977)] = 8546, - [SMALL_STATE(978)] = 8618, - [SMALL_STATE(979)] = 8696, - [SMALL_STATE(980)] = 8774, - [SMALL_STATE(981)] = 8852, - [SMALL_STATE(982)] = 8930, - [SMALL_STATE(983)] = 9008, - [SMALL_STATE(984)] = 9080, - [SMALL_STATE(985)] = 9138, - [SMALL_STATE(986)] = 9212, - [SMALL_STATE(987)] = 9274, - [SMALL_STATE(988)] = 9348, - [SMALL_STATE(989)] = 9403, - [SMALL_STATE(990)] = 9458, - [SMALL_STATE(991)] = 9533, - [SMALL_STATE(992)] = 9588, - [SMALL_STATE(993)] = 9661, - [SMALL_STATE(994)] = 9716, - [SMALL_STATE(995)] = 9791, - [SMALL_STATE(996)] = 9846, - [SMALL_STATE(997)] = 9919, - [SMALL_STATE(998)] = 9980, - [SMALL_STATE(999)] = 10035, - [SMALL_STATE(1000)] = 10104, - [SMALL_STATE(1001)] = 10164, - [SMALL_STATE(1002)] = 10220, - [SMALL_STATE(1003)] = 10276, - [SMALL_STATE(1004)] = 10330, - [SMALL_STATE(1005)] = 10388, - [SMALL_STATE(1006)] = 10442, - [SMALL_STATE(1007)] = 10502, - [SMALL_STATE(1008)] = 10556, - [SMALL_STATE(1009)] = 10631, - [SMALL_STATE(1010)] = 10704, - [SMALL_STATE(1011)] = 10773, - [SMALL_STATE(1012)] = 10842, - [SMALL_STATE(1013)] = 10911, - [SMALL_STATE(1014)] = 10980, - [SMALL_STATE(1015)] = 11055, - [SMALL_STATE(1016)] = 11128, - [SMALL_STATE(1017)] = 11197, - [SMALL_STATE(1018)] = 11272, - [SMALL_STATE(1019)] = 11341, - [SMALL_STATE(1020)] = 11410, - [SMALL_STATE(1021)] = 11479, - [SMALL_STATE(1022)] = 11532, - [SMALL_STATE(1023)] = 11605, - [SMALL_STATE(1024)] = 11678, - [SMALL_STATE(1025)] = 11751, - [SMALL_STATE(1026)] = 11804, - [SMALL_STATE(1027)] = 11857, - [SMALL_STATE(1028)] = 11932, - [SMALL_STATE(1029)] = 12005, - [SMALL_STATE(1030)] = 12072, - [SMALL_STATE(1031)] = 12125, - [SMALL_STATE(1032)] = 12194, - [SMALL_STATE(1033)] = 12247, - [SMALL_STATE(1034)] = 12300, - [SMALL_STATE(1035)] = 12375, - [SMALL_STATE(1036)] = 12450, - [SMALL_STATE(1037)] = 12519, - [SMALL_STATE(1038)] = 12588, - [SMALL_STATE(1039)] = 12641, - [SMALL_STATE(1040)] = 12714, - [SMALL_STATE(1041)] = 12767, - [SMALL_STATE(1042)] = 12820, - [SMALL_STATE(1043)] = 12895, - [SMALL_STATE(1044)] = 12970, - [SMALL_STATE(1045)] = 13045, - [SMALL_STATE(1046)] = 13120, - [SMALL_STATE(1047)] = 13189, - [SMALL_STATE(1048)] = 13258, - [SMALL_STATE(1049)] = 13325, - [SMALL_STATE(1050)] = 13394, - [SMALL_STATE(1051)] = 13465, - [SMALL_STATE(1052)] = 13518, - [SMALL_STATE(1053)] = 13591, - [SMALL_STATE(1054)] = 13666, - [SMALL_STATE(1055)] = 13741, - [SMALL_STATE(1056)] = 13816, - [SMALL_STATE(1057)] = 13889, - [SMALL_STATE(1058)] = 13958, - [SMALL_STATE(1059)] = 14031, - [SMALL_STATE(1060)] = 14100, - [SMALL_STATE(1061)] = 14175, - [SMALL_STATE(1062)] = 14244, - [SMALL_STATE(1063)] = 14311, - [SMALL_STATE(1064)] = 14364, - [SMALL_STATE(1065)] = 14437, - [SMALL_STATE(1066)] = 14512, - [SMALL_STATE(1067)] = 14587, - [SMALL_STATE(1068)] = 14658, - [SMALL_STATE(1069)] = 14733, - [SMALL_STATE(1070)] = 14806, - [SMALL_STATE(1071)] = 14875, - [SMALL_STATE(1072)] = 14944, - [SMALL_STATE(1073)] = 14997, - [SMALL_STATE(1074)] = 15066, - [SMALL_STATE(1075)] = 15133, - [SMALL_STATE(1076)] = 15208, - [SMALL_STATE(1077)] = 15277, - [SMALL_STATE(1078)] = 15352, - [SMALL_STATE(1079)] = 15421, - [SMALL_STATE(1080)] = 15496, - [SMALL_STATE(1081)] = 15565, - [SMALL_STATE(1082)] = 15634, - [SMALL_STATE(1083)] = 15704, - [SMALL_STATE(1084)] = 15756, - [SMALL_STATE(1085)] = 15822, - [SMALL_STATE(1086)] = 15888, - [SMALL_STATE(1087)] = 15954, - [SMALL_STATE(1088)] = 16040, - [SMALL_STATE(1089)] = 16110, - [SMALL_STATE(1090)] = 16176, - [SMALL_STATE(1091)] = 16242, - [SMALL_STATE(1092)] = 16308, - [SMALL_STATE(1093)] = 16374, - [SMALL_STATE(1094)] = 16440, - [SMALL_STATE(1095)] = 16492, - [SMALL_STATE(1096)] = 16558, - [SMALL_STATE(1097)] = 16628, - [SMALL_STATE(1098)] = 16714, - [SMALL_STATE(1099)] = 16780, - [SMALL_STATE(1100)] = 16850, - [SMALL_STATE(1101)] = 16916, - [SMALL_STATE(1102)] = 16982, - [SMALL_STATE(1103)] = 17052, - [SMALL_STATE(1104)] = 17118, - [SMALL_STATE(1105)] = 17204, - [SMALL_STATE(1106)] = 17270, - [SMALL_STATE(1107)] = 17336, - [SMALL_STATE(1108)] = 17422, - [SMALL_STATE(1109)] = 17492, - [SMALL_STATE(1110)] = 17558, - [SMALL_STATE(1111)] = 17628, - [SMALL_STATE(1112)] = 17694, - [SMALL_STATE(1113)] = 17760, - [SMALL_STATE(1114)] = 17846, - [SMALL_STATE(1115)] = 17916, - [SMALL_STATE(1116)] = 17985, - [SMALL_STATE(1117)] = 18054, - [SMALL_STATE(1118)] = 18117, - [SMALL_STATE(1119)] = 18186, - [SMALL_STATE(1120)] = 18255, - [SMALL_STATE(1121)] = 18324, - [SMALL_STATE(1122)] = 18393, - [SMALL_STATE(1123)] = 18462, - [SMALL_STATE(1124)] = 18531, - [SMALL_STATE(1125)] = 18600, - [SMALL_STATE(1126)] = 18669, - [SMALL_STATE(1127)] = 18738, - [SMALL_STATE(1128)] = 18807, - [SMALL_STATE(1129)] = 18876, - [SMALL_STATE(1130)] = 18945, - [SMALL_STATE(1131)] = 19014, - [SMALL_STATE(1132)] = 19083, - [SMALL_STATE(1133)] = 19152, - [SMALL_STATE(1134)] = 19221, - [SMALL_STATE(1135)] = 19290, - [SMALL_STATE(1136)] = 19359, - [SMALL_STATE(1137)] = 19428, - [SMALL_STATE(1138)] = 19497, - [SMALL_STATE(1139)] = 19566, - [SMALL_STATE(1140)] = 19635, - [SMALL_STATE(1141)] = 19704, - [SMALL_STATE(1142)] = 19773, - [SMALL_STATE(1143)] = 19842, - [SMALL_STATE(1144)] = 19911, - [SMALL_STATE(1145)] = 19974, - [SMALL_STATE(1146)] = 20043, - [SMALL_STATE(1147)] = 20112, - [SMALL_STATE(1148)] = 20181, - [SMALL_STATE(1149)] = 20250, - [SMALL_STATE(1150)] = 20319, - [SMALL_STATE(1151)] = 20388, - [SMALL_STATE(1152)] = 20457, - [SMALL_STATE(1153)] = 20526, - [SMALL_STATE(1154)] = 20595, - [SMALL_STATE(1155)] = 20658, - [SMALL_STATE(1156)] = 20727, - [SMALL_STATE(1157)] = 20796, - [SMALL_STATE(1158)] = 20865, - [SMALL_STATE(1159)] = 20934, - [SMALL_STATE(1160)] = 21003, - [SMALL_STATE(1161)] = 21066, - [SMALL_STATE(1162)] = 21135, - [SMALL_STATE(1163)] = 21198, - [SMALL_STATE(1164)] = 21267, - [SMALL_STATE(1165)] = 21336, - [SMALL_STATE(1166)] = 21405, - [SMALL_STATE(1167)] = 21474, - [SMALL_STATE(1168)] = 21543, - [SMALL_STATE(1169)] = 21612, - [SMALL_STATE(1170)] = 21681, - [SMALL_STATE(1171)] = 21750, - [SMALL_STATE(1172)] = 21819, - [SMALL_STATE(1173)] = 21888, - [SMALL_STATE(1174)] = 21957, - [SMALL_STATE(1175)] = 22026, - [SMALL_STATE(1176)] = 22095, - [SMALL_STATE(1177)] = 22164, - [SMALL_STATE(1178)] = 22233, - [SMALL_STATE(1179)] = 22302, - [SMALL_STATE(1180)] = 22371, - [SMALL_STATE(1181)] = 22440, - [SMALL_STATE(1182)] = 22509, - [SMALL_STATE(1183)] = 22578, - [SMALL_STATE(1184)] = 22647, - [SMALL_STATE(1185)] = 22716, - [SMALL_STATE(1186)] = 22785, - [SMALL_STATE(1187)] = 22854, - [SMALL_STATE(1188)] = 22923, - [SMALL_STATE(1189)] = 22992, - [SMALL_STATE(1190)] = 23061, - [SMALL_STATE(1191)] = 23130, - [SMALL_STATE(1192)] = 23199, - [SMALL_STATE(1193)] = 23268, - [SMALL_STATE(1194)] = 23337, - [SMALL_STATE(1195)] = 23406, - [SMALL_STATE(1196)] = 23475, - [SMALL_STATE(1197)] = 23544, - [SMALL_STATE(1198)] = 23613, - [SMALL_STATE(1199)] = 23682, - [SMALL_STATE(1200)] = 23751, - [SMALL_STATE(1201)] = 23820, - [SMALL_STATE(1202)] = 23889, - [SMALL_STATE(1203)] = 23958, - [SMALL_STATE(1204)] = 24027, - [SMALL_STATE(1205)] = 24096, - [SMALL_STATE(1206)] = 24165, - [SMALL_STATE(1207)] = 24234, - [SMALL_STATE(1208)] = 24303, - [SMALL_STATE(1209)] = 24372, - [SMALL_STATE(1210)] = 24441, - [SMALL_STATE(1211)] = 24510, - [SMALL_STATE(1212)] = 24579, - [SMALL_STATE(1213)] = 24648, - [SMALL_STATE(1214)] = 24717, - [SMALL_STATE(1215)] = 24786, - [SMALL_STATE(1216)] = 24855, - [SMALL_STATE(1217)] = 24924, - [SMALL_STATE(1218)] = 24993, - [SMALL_STATE(1219)] = 25062, - [SMALL_STATE(1220)] = 25131, - [SMALL_STATE(1221)] = 25200, - [SMALL_STATE(1222)] = 25269, - [SMALL_STATE(1223)] = 25338, - [SMALL_STATE(1224)] = 25407, - [SMALL_STATE(1225)] = 25476, - [SMALL_STATE(1226)] = 25545, - [SMALL_STATE(1227)] = 25614, - [SMALL_STATE(1228)] = 25677, - [SMALL_STATE(1229)] = 25746, - [SMALL_STATE(1230)] = 25815, - [SMALL_STATE(1231)] = 25884, - [SMALL_STATE(1232)] = 25953, - [SMALL_STATE(1233)] = 26022, - [SMALL_STATE(1234)] = 26091, - [SMALL_STATE(1235)] = 26160, - [SMALL_STATE(1236)] = 26229, - [SMALL_STATE(1237)] = 26298, - [SMALL_STATE(1238)] = 26367, - [SMALL_STATE(1239)] = 26436, - [SMALL_STATE(1240)] = 26505, - [SMALL_STATE(1241)] = 26574, - [SMALL_STATE(1242)] = 26643, - [SMALL_STATE(1243)] = 26712, - [SMALL_STATE(1244)] = 26781, - [SMALL_STATE(1245)] = 26850, - [SMALL_STATE(1246)] = 26919, - [SMALL_STATE(1247)] = 26988, - [SMALL_STATE(1248)] = 27057, - [SMALL_STATE(1249)] = 27126, - [SMALL_STATE(1250)] = 27195, - [SMALL_STATE(1251)] = 27264, - [SMALL_STATE(1252)] = 27333, - [SMALL_STATE(1253)] = 27402, - [SMALL_STATE(1254)] = 27471, - [SMALL_STATE(1255)] = 27540, - [SMALL_STATE(1256)] = 27609, - [SMALL_STATE(1257)] = 27678, - [SMALL_STATE(1258)] = 27747, - [SMALL_STATE(1259)] = 27816, - [SMALL_STATE(1260)] = 27885, - [SMALL_STATE(1261)] = 27954, - [SMALL_STATE(1262)] = 28023, - [SMALL_STATE(1263)] = 28092, - [SMALL_STATE(1264)] = 28161, - [SMALL_STATE(1265)] = 28230, - [SMALL_STATE(1266)] = 28299, - [SMALL_STATE(1267)] = 28368, - [SMALL_STATE(1268)] = 28437, - [SMALL_STATE(1269)] = 28506, - [SMALL_STATE(1270)] = 28575, - [SMALL_STATE(1271)] = 28644, - [SMALL_STATE(1272)] = 28713, - [SMALL_STATE(1273)] = 28782, - [SMALL_STATE(1274)] = 28851, - [SMALL_STATE(1275)] = 28920, - [SMALL_STATE(1276)] = 28989, - [SMALL_STATE(1277)] = 29058, - [SMALL_STATE(1278)] = 29127, - [SMALL_STATE(1279)] = 29196, - [SMALL_STATE(1280)] = 29265, - [SMALL_STATE(1281)] = 29334, - [SMALL_STATE(1282)] = 29403, - [SMALL_STATE(1283)] = 29472, - [SMALL_STATE(1284)] = 29541, - [SMALL_STATE(1285)] = 29610, - [SMALL_STATE(1286)] = 29679, - [SMALL_STATE(1287)] = 29748, - [SMALL_STATE(1288)] = 29817, - [SMALL_STATE(1289)] = 29886, - [SMALL_STATE(1290)] = 29955, - [SMALL_STATE(1291)] = 30024, - [SMALL_STATE(1292)] = 30093, - [SMALL_STATE(1293)] = 30162, - [SMALL_STATE(1294)] = 30231, - [SMALL_STATE(1295)] = 30300, - [SMALL_STATE(1296)] = 30369, - [SMALL_STATE(1297)] = 30438, - [SMALL_STATE(1298)] = 30507, - [SMALL_STATE(1299)] = 30576, - [SMALL_STATE(1300)] = 30645, - [SMALL_STATE(1301)] = 30714, - [SMALL_STATE(1302)] = 30783, - [SMALL_STATE(1303)] = 30852, - [SMALL_STATE(1304)] = 30921, - [SMALL_STATE(1305)] = 30990, - [SMALL_STATE(1306)] = 31059, - [SMALL_STATE(1307)] = 31128, - [SMALL_STATE(1308)] = 31197, - [SMALL_STATE(1309)] = 31266, - [SMALL_STATE(1310)] = 31335, - [SMALL_STATE(1311)] = 31404, - [SMALL_STATE(1312)] = 31473, - [SMALL_STATE(1313)] = 31542, - [SMALL_STATE(1314)] = 31611, - [SMALL_STATE(1315)] = 31680, - [SMALL_STATE(1316)] = 31749, - [SMALL_STATE(1317)] = 31818, - [SMALL_STATE(1318)] = 31887, - [SMALL_STATE(1319)] = 31956, - [SMALL_STATE(1320)] = 32025, - [SMALL_STATE(1321)] = 32094, - [SMALL_STATE(1322)] = 32163, - [SMALL_STATE(1323)] = 32232, - [SMALL_STATE(1324)] = 32301, - [SMALL_STATE(1325)] = 32370, - [SMALL_STATE(1326)] = 32439, - [SMALL_STATE(1327)] = 32508, - [SMALL_STATE(1328)] = 32577, - [SMALL_STATE(1329)] = 32646, - [SMALL_STATE(1330)] = 32715, - [SMALL_STATE(1331)] = 32784, - [SMALL_STATE(1332)] = 32853, - [SMALL_STATE(1333)] = 32922, - [SMALL_STATE(1334)] = 32991, - [SMALL_STATE(1335)] = 33060, - [SMALL_STATE(1336)] = 33129, - [SMALL_STATE(1337)] = 33208, - [SMALL_STATE(1338)] = 33291, - [SMALL_STATE(1339)] = 33374, - [SMALL_STATE(1340)] = 33457, - [SMALL_STATE(1341)] = 33540, - [SMALL_STATE(1342)] = 33623, - [SMALL_STATE(1343)] = 33702, - [SMALL_STATE(1344)] = 33781, - [SMALL_STATE(1345)] = 33860, - [SMALL_STATE(1346)] = 33938, - [SMALL_STATE(1347)] = 34026, - [SMALL_STATE(1348)] = 34108, - [SMALL_STATE(1349)] = 34196, - [SMALL_STATE(1350)] = 34278, - [SMALL_STATE(1351)] = 34360, - [SMALL_STATE(1352)] = 34438, - [SMALL_STATE(1353)] = 34520, - [SMALL_STATE(1354)] = 34602, - [SMALL_STATE(1355)] = 34661, - [SMALL_STATE(1356)] = 34720, - [SMALL_STATE(1357)] = 34779, - [SMALL_STATE(1358)] = 34838, - [SMALL_STATE(1359)] = 34894, - [SMALL_STATE(1360)] = 34950, - [SMALL_STATE(1361)] = 35036, - [SMALL_STATE(1362)] = 35092, - [SMALL_STATE(1363)] = 35148, - [SMALL_STATE(1364)] = 35228, - [SMALL_STATE(1365)] = 35308, - [SMALL_STATE(1366)] = 35388, - [SMALL_STATE(1367)] = 35468, - [SMALL_STATE(1368)] = 35554, - [SMALL_STATE(1369)] = 35634, - [SMALL_STATE(1370)] = 35681, - [SMALL_STATE(1371)] = 35768, - [SMALL_STATE(1372)] = 35855, - [SMALL_STATE(1373)] = 35942, - [SMALL_STATE(1374)] = 36029, - [SMALL_STATE(1375)] = 36116, - [SMALL_STATE(1376)] = 36163, - [SMALL_STATE(1377)] = 36213, - [SMALL_STATE(1378)] = 36297, - [SMALL_STATE(1379)] = 36381, - [SMALL_STATE(1380)] = 36465, - [SMALL_STATE(1381)] = 36521, - [SMALL_STATE(1382)] = 36599, - [SMALL_STATE(1383)] = 36683, - [SMALL_STATE(1384)] = 36767, - [SMALL_STATE(1385)] = 36851, - [SMALL_STATE(1386)] = 36901, - [SMALL_STATE(1387)] = 36979, - [SMALL_STATE(1388)] = 37029, - [SMALL_STATE(1389)] = 37107, - [SMALL_STATE(1390)] = 37185, - [SMALL_STATE(1391)] = 37263, - [SMALL_STATE(1392)] = 37313, - [SMALL_STATE(1393)] = 37397, - [SMALL_STATE(1394)] = 37481, - [SMALL_STATE(1395)] = 37565, - [SMALL_STATE(1396)] = 37649, - [SMALL_STATE(1397)] = 37733, - [SMALL_STATE(1398)] = 37817, - [SMALL_STATE(1399)] = 37901, - [SMALL_STATE(1400)] = 37985, - [SMALL_STATE(1401)] = 38069, - [SMALL_STATE(1402)] = 38153, - [SMALL_STATE(1403)] = 38209, - [SMALL_STATE(1404)] = 38293, - [SMALL_STATE(1405)] = 38377, - [SMALL_STATE(1406)] = 38461, - [SMALL_STATE(1407)] = 38545, - [SMALL_STATE(1408)] = 38629, - [SMALL_STATE(1409)] = 38713, - [SMALL_STATE(1410)] = 38797, - [SMALL_STATE(1411)] = 38853, - [SMALL_STATE(1412)] = 38937, - [SMALL_STATE(1413)] = 39021, - [SMALL_STATE(1414)] = 39105, - [SMALL_STATE(1415)] = 39189, - [SMALL_STATE(1416)] = 39273, - [SMALL_STATE(1417)] = 39357, - [SMALL_STATE(1418)] = 39441, - [SMALL_STATE(1419)] = 39525, - [SMALL_STATE(1420)] = 39609, - [SMALL_STATE(1421)] = 39693, - [SMALL_STATE(1422)] = 39777, - [SMALL_STATE(1423)] = 39861, - [SMALL_STATE(1424)] = 39945, - [SMALL_STATE(1425)] = 40029, - [SMALL_STATE(1426)] = 40113, - [SMALL_STATE(1427)] = 40197, - [SMALL_STATE(1428)] = 40278, - [SMALL_STATE(1429)] = 40359, - [SMALL_STATE(1430)] = 40440, - [SMALL_STATE(1431)] = 40491, - [SMALL_STATE(1432)] = 40572, - [SMALL_STATE(1433)] = 40653, - [SMALL_STATE(1434)] = 40702, - [SMALL_STATE(1435)] = 40783, - [SMALL_STATE(1436)] = 40864, - [SMALL_STATE(1437)] = 40945, - [SMALL_STATE(1438)] = 41026, - [SMALL_STATE(1439)] = 41075, - [SMALL_STATE(1440)] = 41156, - [SMALL_STATE(1441)] = 41237, - [SMALL_STATE(1442)] = 41318, - [SMALL_STATE(1443)] = 41399, - [SMALL_STATE(1444)] = 41480, - [SMALL_STATE(1445)] = 41561, - [SMALL_STATE(1446)] = 41642, - [SMALL_STATE(1447)] = 41723, - [SMALL_STATE(1448)] = 41804, - [SMALL_STATE(1449)] = 41885, - [SMALL_STATE(1450)] = 41934, - [SMALL_STATE(1451)] = 42015, - [SMALL_STATE(1452)] = 42068, - [SMALL_STATE(1453)] = 42149, - [SMALL_STATE(1454)] = 42230, - [SMALL_STATE(1455)] = 42311, - [SMALL_STATE(1456)] = 42392, - [SMALL_STATE(1457)] = 42473, - [SMALL_STATE(1458)] = 42524, - [SMALL_STATE(1459)] = 42605, - [SMALL_STATE(1460)] = 42686, - [SMALL_STATE(1461)] = 42767, - [SMALL_STATE(1462)] = 42848, - [SMALL_STATE(1463)] = 42929, - [SMALL_STATE(1464)] = 43010, - [SMALL_STATE(1465)] = 43091, - [SMALL_STATE(1466)] = 43172, - [SMALL_STATE(1467)] = 43255, - [SMALL_STATE(1468)] = 43336, - [SMALL_STATE(1469)] = 43417, - [SMALL_STATE(1470)] = 43498, - [SMALL_STATE(1471)] = 43579, - [SMALL_STATE(1472)] = 43660, - [SMALL_STATE(1473)] = 43741, - [SMALL_STATE(1474)] = 43825, - [SMALL_STATE(1475)] = 43879, - [SMALL_STATE(1476)] = 43933, - [SMALL_STATE(1477)] = 43987, - [SMALL_STATE(1478)] = 44033, - [SMALL_STATE(1479)] = 44087, - [SMALL_STATE(1480)] = 44171, - [SMALL_STATE(1481)] = 44255, - [SMALL_STATE(1482)] = 44309, - [SMALL_STATE(1483)] = 44355, - [SMALL_STATE(1484)] = 44399, - [SMALL_STATE(1485)] = 44483, - [SMALL_STATE(1486)] = 44525, - [SMALL_STATE(1487)] = 44567, - [SMALL_STATE(1488)] = 44609, - [SMALL_STATE(1489)] = 44685, - [SMALL_STATE(1490)] = 44761, - [SMALL_STATE(1491)] = 44837, - [SMALL_STATE(1492)] = 44913, - [SMALL_STATE(1493)] = 44989, - [SMALL_STATE(1494)] = 45073, - [SMALL_STATE(1495)] = 45157, - [SMALL_STATE(1496)] = 45241, - [SMALL_STATE(1497)] = 45325, - [SMALL_STATE(1498)] = 45379, - [SMALL_STATE(1499)] = 45463, - [SMALL_STATE(1500)] = 45547, - [SMALL_STATE(1501)] = 45627, - [SMALL_STATE(1502)] = 45681, - [SMALL_STATE(1503)] = 45722, - [SMALL_STATE(1504)] = 45763, - [SMALL_STATE(1505)] = 45804, - [SMALL_STATE(1506)] = 45845, - [SMALL_STATE(1507)] = 45886, - [SMALL_STATE(1508)] = 45927, - [SMALL_STATE(1509)] = 45968, - [SMALL_STATE(1510)] = 46041, - [SMALL_STATE(1511)] = 46120, - [SMALL_STATE(1512)] = 46171, - [SMALL_STATE(1513)] = 46212, - [SMALL_STATE(1514)] = 46263, - [SMALL_STATE(1515)] = 46304, - [SMALL_STATE(1516)] = 46351, - [SMALL_STATE(1517)] = 46392, - [SMALL_STATE(1518)] = 46433, - [SMALL_STATE(1519)] = 46474, - [SMALL_STATE(1520)] = 46515, - [SMALL_STATE(1521)] = 46562, - [SMALL_STATE(1522)] = 46603, - [SMALL_STATE(1523)] = 46644, - [SMALL_STATE(1524)] = 46685, - [SMALL_STATE(1525)] = 46736, - [SMALL_STATE(1526)] = 46787, - [SMALL_STATE(1527)] = 46828, - [SMALL_STATE(1528)] = 46901, - [SMALL_STATE(1529)] = 46980, - [SMALL_STATE(1530)] = 47053, - [SMALL_STATE(1531)] = 47094, - [SMALL_STATE(1532)] = 47147, - [SMALL_STATE(1533)] = 47228, - [SMALL_STATE(1534)] = 47269, - [SMALL_STATE(1535)] = 47310, - [SMALL_STATE(1536)] = 47351, - [SMALL_STATE(1537)] = 47398, - [SMALL_STATE(1538)] = 47439, - [SMALL_STATE(1539)] = 47480, - [SMALL_STATE(1540)] = 47521, - [SMALL_STATE(1541)] = 47562, - [SMALL_STATE(1542)] = 47609, - [SMALL_STATE(1543)] = 47660, - [SMALL_STATE(1544)] = 47701, - [SMALL_STATE(1545)] = 47742, - [SMALL_STATE(1546)] = 47783, - [SMALL_STATE(1547)] = 47824, - [SMALL_STATE(1548)] = 47865, - [SMALL_STATE(1549)] = 47912, - [SMALL_STATE(1550)] = 47953, - [SMALL_STATE(1551)] = 48000, - [SMALL_STATE(1552)] = 48041, - [SMALL_STATE(1553)] = 48082, - [SMALL_STATE(1554)] = 48123, - [SMALL_STATE(1555)] = 48164, - [SMALL_STATE(1556)] = 48205, - [SMALL_STATE(1557)] = 48246, - [SMALL_STATE(1558)] = 48287, - [SMALL_STATE(1559)] = 48334, - [SMALL_STATE(1560)] = 48407, - [SMALL_STATE(1561)] = 48454, - [SMALL_STATE(1562)] = 48501, - [SMALL_STATE(1563)] = 48582, - [SMALL_STATE(1564)] = 48655, - [SMALL_STATE(1565)] = 48728, - [SMALL_STATE(1566)] = 48775, - [SMALL_STATE(1567)] = 48848, - [SMALL_STATE(1568)] = 48921, - [SMALL_STATE(1569)] = 48994, - [SMALL_STATE(1570)] = 49045, - [SMALL_STATE(1571)] = 49092, - [SMALL_STATE(1572)] = 49171, - [SMALL_STATE(1573)] = 49218, - [SMALL_STATE(1574)] = 49291, - [SMALL_STATE(1575)] = 49332, - [SMALL_STATE(1576)] = 49410, - [SMALL_STATE(1577)] = 49488, - [SMALL_STATE(1578)] = 49566, - [SMALL_STATE(1579)] = 49638, - [SMALL_STATE(1580)] = 49716, - [SMALL_STATE(1581)] = 49760, - [SMALL_STATE(1582)] = 49838, - [SMALL_STATE(1583)] = 49916, - [SMALL_STATE(1584)] = 49994, - [SMALL_STATE(1585)] = 50072, - [SMALL_STATE(1586)] = 50112, - [SMALL_STATE(1587)] = 50184, - [SMALL_STATE(1588)] = 50262, - [SMALL_STATE(1589)] = 50340, - [SMALL_STATE(1590)] = 50384, - [SMALL_STATE(1591)] = 50426, - [SMALL_STATE(1592)] = 50504, - [SMALL_STATE(1593)] = 50582, - [SMALL_STATE(1594)] = 50660, - [SMALL_STATE(1595)] = 50738, - [SMALL_STATE(1596)] = 50816, - [SMALL_STATE(1597)] = 50894, - [SMALL_STATE(1598)] = 50972, - [SMALL_STATE(1599)] = 51016, - [SMALL_STATE(1600)] = 51056, - [SMALL_STATE(1601)] = 51098, - [SMALL_STATE(1602)] = 51176, - [SMALL_STATE(1603)] = 51254, - [SMALL_STATE(1604)] = 51332, - [SMALL_STATE(1605)] = 51410, - [SMALL_STATE(1606)] = 51482, - [SMALL_STATE(1607)] = 51560, - [SMALL_STATE(1608)] = 51638, - [SMALL_STATE(1609)] = 51716, - [SMALL_STATE(1610)] = 51788, - [SMALL_STATE(1611)] = 51866, - [SMALL_STATE(1612)] = 51938, - [SMALL_STATE(1613)] = 52016, - [SMALL_STATE(1614)] = 52094, - [SMALL_STATE(1615)] = 52138, - [SMALL_STATE(1616)] = 52216, - [SMALL_STATE(1617)] = 52294, - [SMALL_STATE(1618)] = 52372, - [SMALL_STATE(1619)] = 52450, - [SMALL_STATE(1620)] = 52528, - [SMALL_STATE(1621)] = 52606, - [SMALL_STATE(1622)] = 52684, - [SMALL_STATE(1623)] = 52762, - [SMALL_STATE(1624)] = 52840, - [SMALL_STATE(1625)] = 52918, - [SMALL_STATE(1626)] = 52968, - [SMALL_STATE(1627)] = 53046, - [SMALL_STATE(1628)] = 53092, - [SMALL_STATE(1629)] = 53170, - [SMALL_STATE(1630)] = 53248, - [SMALL_STATE(1631)] = 53288, - [SMALL_STATE(1632)] = 53366, - [SMALL_STATE(1633)] = 53444, - [SMALL_STATE(1634)] = 53522, - [SMALL_STATE(1635)] = 53600, - [SMALL_STATE(1636)] = 53678, - [SMALL_STATE(1637)] = 53756, - [SMALL_STATE(1638)] = 53834, - [SMALL_STATE(1639)] = 53912, - [SMALL_STATE(1640)] = 53954, - [SMALL_STATE(1641)] = 54032, - [SMALL_STATE(1642)] = 54110, - [SMALL_STATE(1643)] = 54188, - [SMALL_STATE(1644)] = 54266, - [SMALL_STATE(1645)] = 54344, - [SMALL_STATE(1646)] = 54422, - [SMALL_STATE(1647)] = 54462, - [SMALL_STATE(1648)] = 54540, - [SMALL_STATE(1649)] = 54618, - [SMALL_STATE(1650)] = 54696, - [SMALL_STATE(1651)] = 54774, - [SMALL_STATE(1652)] = 54852, - [SMALL_STATE(1653)] = 54930, - [SMALL_STATE(1654)] = 55008, - [SMALL_STATE(1655)] = 55086, - [SMALL_STATE(1656)] = 55164, - [SMALL_STATE(1657)] = 55242, - [SMALL_STATE(1658)] = 55320, - [SMALL_STATE(1659)] = 55360, - [SMALL_STATE(1660)] = 55438, - [SMALL_STATE(1661)] = 55516, - [SMALL_STATE(1662)] = 55594, - [SMALL_STATE(1663)] = 55634, - [SMALL_STATE(1664)] = 55674, - [SMALL_STATE(1665)] = 55720, - [SMALL_STATE(1666)] = 55798, - [SMALL_STATE(1667)] = 55876, - [SMALL_STATE(1668)] = 55954, - [SMALL_STATE(1669)] = 56032, - [SMALL_STATE(1670)] = 56110, - [SMALL_STATE(1671)] = 56188, - [SMALL_STATE(1672)] = 56266, - [SMALL_STATE(1673)] = 56344, - [SMALL_STATE(1674)] = 56422, - [SMALL_STATE(1675)] = 56500, - [SMALL_STATE(1676)] = 56578, - [SMALL_STATE(1677)] = 56650, - [SMALL_STATE(1678)] = 56728, - [SMALL_STATE(1679)] = 56806, - [SMALL_STATE(1680)] = 56878, - [SMALL_STATE(1681)] = 56950, - [SMALL_STATE(1682)] = 57028, - [SMALL_STATE(1683)] = 57106, - [SMALL_STATE(1684)] = 57184, - [SMALL_STATE(1685)] = 57262, - [SMALL_STATE(1686)] = 57306, - [SMALL_STATE(1687)] = 57384, - [SMALL_STATE(1688)] = 57462, - [SMALL_STATE(1689)] = 57504, - [SMALL_STATE(1690)] = 57576, - [SMALL_STATE(1691)] = 57616, - [SMALL_STATE(1692)] = 57694, - [SMALL_STATE(1693)] = 57734, - [SMALL_STATE(1694)] = 57812, - [SMALL_STATE(1695)] = 57890, - [SMALL_STATE(1696)] = 57968, - [SMALL_STATE(1697)] = 58046, - [SMALL_STATE(1698)] = 58118, - [SMALL_STATE(1699)] = 58196, - [SMALL_STATE(1700)] = 58236, - [SMALL_STATE(1701)] = 58276, - [SMALL_STATE(1702)] = 58354, - [SMALL_STATE(1703)] = 58432, - [SMALL_STATE(1704)] = 58510, - [SMALL_STATE(1705)] = 58588, - [SMALL_STATE(1706)] = 58666, - [SMALL_STATE(1707)] = 58744, - [SMALL_STATE(1708)] = 58822, - [SMALL_STATE(1709)] = 58900, - [SMALL_STATE(1710)] = 58978, - [SMALL_STATE(1711)] = 59056, - [SMALL_STATE(1712)] = 59134, - [SMALL_STATE(1713)] = 59212, - [SMALL_STATE(1714)] = 59290, - [SMALL_STATE(1715)] = 59368, - [SMALL_STATE(1716)] = 59412, - [SMALL_STATE(1717)] = 59490, - [SMALL_STATE(1718)] = 59568, - [SMALL_STATE(1719)] = 59646, - [SMALL_STATE(1720)] = 59724, - [SMALL_STATE(1721)] = 59802, - [SMALL_STATE(1722)] = 59880, - [SMALL_STATE(1723)] = 59958, - [SMALL_STATE(1724)] = 60036, - [SMALL_STATE(1725)] = 60114, - [SMALL_STATE(1726)] = 60192, - [SMALL_STATE(1727)] = 60270, - [SMALL_STATE(1728)] = 60348, - [SMALL_STATE(1729)] = 60426, - [SMALL_STATE(1730)] = 60504, - [SMALL_STATE(1731)] = 60582, - [SMALL_STATE(1732)] = 60622, - [SMALL_STATE(1733)] = 60700, - [SMALL_STATE(1734)] = 60778, - [SMALL_STATE(1735)] = 60856, - [SMALL_STATE(1736)] = 60934, - [SMALL_STATE(1737)] = 61012, - [SMALL_STATE(1738)] = 61090, - [SMALL_STATE(1739)] = 61168, - [SMALL_STATE(1740)] = 61246, - [SMALL_STATE(1741)] = 61324, - [SMALL_STATE(1742)] = 61402, - [SMALL_STATE(1743)] = 61480, - [SMALL_STATE(1744)] = 61558, - [SMALL_STATE(1745)] = 61597, - [SMALL_STATE(1746)] = 61672, - [SMALL_STATE(1747)] = 61747, - [SMALL_STATE(1748)] = 61822, - [SMALL_STATE(1749)] = 61861, - [SMALL_STATE(1750)] = 61906, - [SMALL_STATE(1751)] = 61981, - [SMALL_STATE(1752)] = 62056, - [SMALL_STATE(1753)] = 62131, - [SMALL_STATE(1754)] = 62206, - [SMALL_STATE(1755)] = 62281, - [SMALL_STATE(1756)] = 62356, - [SMALL_STATE(1757)] = 62401, - [SMALL_STATE(1758)] = 62440, - [SMALL_STATE(1759)] = 62515, - [SMALL_STATE(1760)] = 62590, - [SMALL_STATE(1761)] = 62665, - [SMALL_STATE(1762)] = 62704, - [SMALL_STATE(1763)] = 62779, - [SMALL_STATE(1764)] = 62854, - [SMALL_STATE(1765)] = 62929, - [SMALL_STATE(1766)] = 63004, - [SMALL_STATE(1767)] = 63079, - [SMALL_STATE(1768)] = 63154, - [SMALL_STATE(1769)] = 63193, - [SMALL_STATE(1770)] = 63232, - [SMALL_STATE(1771)] = 63271, - [SMALL_STATE(1772)] = 63310, - [SMALL_STATE(1773)] = 63385, - [SMALL_STATE(1774)] = 63460, - [SMALL_STATE(1775)] = 63499, - [SMALL_STATE(1776)] = 63538, - [SMALL_STATE(1777)] = 63613, - [SMALL_STATE(1778)] = 63658, - [SMALL_STATE(1779)] = 63733, - [SMALL_STATE(1780)] = 63808, - [SMALL_STATE(1781)] = 63883, - [SMALL_STATE(1782)] = 63958, - [SMALL_STATE(1783)] = 64033, - [SMALL_STATE(1784)] = 64074, - [SMALL_STATE(1785)] = 64149, - [SMALL_STATE(1786)] = 64224, - [SMALL_STATE(1787)] = 64299, - [SMALL_STATE(1788)] = 64374, - [SMALL_STATE(1789)] = 64449, - [SMALL_STATE(1790)] = 64524, - [SMALL_STATE(1791)] = 64599, - [SMALL_STATE(1792)] = 64674, - [SMALL_STATE(1793)] = 64713, - [SMALL_STATE(1794)] = 64788, - [SMALL_STATE(1795)] = 64863, - [SMALL_STATE(1796)] = 64938, - [SMALL_STATE(1797)] = 65009, - [SMALL_STATE(1798)] = 65084, - [SMALL_STATE(1799)] = 65159, - [SMALL_STATE(1800)] = 65234, - [SMALL_STATE(1801)] = 65309, - [SMALL_STATE(1802)] = 65354, - [SMALL_STATE(1803)] = 65393, - [SMALL_STATE(1804)] = 65468, - [SMALL_STATE(1805)] = 65543, - [SMALL_STATE(1806)] = 65618, - [SMALL_STATE(1807)] = 65693, - [SMALL_STATE(1808)] = 65768, - [SMALL_STATE(1809)] = 65843, - [SMALL_STATE(1810)] = 65918, - [SMALL_STATE(1811)] = 65993, - [SMALL_STATE(1812)] = 66068, - [SMALL_STATE(1813)] = 66143, - [SMALL_STATE(1814)] = 66218, - [SMALL_STATE(1815)] = 66293, - [SMALL_STATE(1816)] = 66368, - [SMALL_STATE(1817)] = 66443, - [SMALL_STATE(1818)] = 66518, - [SMALL_STATE(1819)] = 66593, - [SMALL_STATE(1820)] = 66668, - [SMALL_STATE(1821)] = 66743, - [SMALL_STATE(1822)] = 66818, - [SMALL_STATE(1823)] = 66893, - [SMALL_STATE(1824)] = 66968, - [SMALL_STATE(1825)] = 67043, - [SMALL_STATE(1826)] = 67118, - [SMALL_STATE(1827)] = 67193, - [SMALL_STATE(1828)] = 67268, - [SMALL_STATE(1829)] = 67307, - [SMALL_STATE(1830)] = 67382, - [SMALL_STATE(1831)] = 67421, - [SMALL_STATE(1832)] = 67496, - [SMALL_STATE(1833)] = 67535, - [SMALL_STATE(1834)] = 67580, - [SMALL_STATE(1835)] = 67655, - [SMALL_STATE(1836)] = 67700, - [SMALL_STATE(1837)] = 67775, - [SMALL_STATE(1838)] = 67814, - [SMALL_STATE(1839)] = 67889, - [SMALL_STATE(1840)] = 67964, - [SMALL_STATE(1841)] = 68003, - [SMALL_STATE(1842)] = 68078, - [SMALL_STATE(1843)] = 68153, - [SMALL_STATE(1844)] = 68228, - [SMALL_STATE(1845)] = 68303, - [SMALL_STATE(1846)] = 68378, - [SMALL_STATE(1847)] = 68453, - [SMALL_STATE(1848)] = 68528, - [SMALL_STATE(1849)] = 68603, - [SMALL_STATE(1850)] = 68678, - [SMALL_STATE(1851)] = 68717, - [SMALL_STATE(1852)] = 68758, - [SMALL_STATE(1853)] = 68833, - [SMALL_STATE(1854)] = 68908, - [SMALL_STATE(1855)] = 68983, - [SMALL_STATE(1856)] = 69022, - [SMALL_STATE(1857)] = 69097, - [SMALL_STATE(1858)] = 69172, - [SMALL_STATE(1859)] = 69247, - [SMALL_STATE(1860)] = 69322, - [SMALL_STATE(1861)] = 69397, - [SMALL_STATE(1862)] = 69472, - [SMALL_STATE(1863)] = 69547, - [SMALL_STATE(1864)] = 69622, - [SMALL_STATE(1865)] = 69661, - [SMALL_STATE(1866)] = 69702, - [SMALL_STATE(1867)] = 69777, - [SMALL_STATE(1868)] = 69852, - [SMALL_STATE(1869)] = 69891, - [SMALL_STATE(1870)] = 69966, - [SMALL_STATE(1871)] = 70005, - [SMALL_STATE(1872)] = 70080, - [SMALL_STATE(1873)] = 70125, - [SMALL_STATE(1874)] = 70200, - [SMALL_STATE(1875)] = 70275, - [SMALL_STATE(1876)] = 70314, - [SMALL_STATE(1877)] = 70389, - [SMALL_STATE(1878)] = 70464, - [SMALL_STATE(1879)] = 70503, - [SMALL_STATE(1880)] = 70578, - [SMALL_STATE(1881)] = 70617, - [SMALL_STATE(1882)] = 70692, - [SMALL_STATE(1883)] = 70767, - [SMALL_STATE(1884)] = 70842, - [SMALL_STATE(1885)] = 70917, - [SMALL_STATE(1886)] = 70992, - [SMALL_STATE(1887)] = 71067, - [SMALL_STATE(1888)] = 71106, - [SMALL_STATE(1889)] = 71181, - [SMALL_STATE(1890)] = 71252, - [SMALL_STATE(1891)] = 71327, - [SMALL_STATE(1892)] = 71366, - [SMALL_STATE(1893)] = 71441, - [SMALL_STATE(1894)] = 71516, - [SMALL_STATE(1895)] = 71591, - [SMALL_STATE(1896)] = 71666, - [SMALL_STATE(1897)] = 71741, - [SMALL_STATE(1898)] = 71816, - [SMALL_STATE(1899)] = 71861, - [SMALL_STATE(1900)] = 71936, - [SMALL_STATE(1901)] = 72011, - [SMALL_STATE(1902)] = 72086, - [SMALL_STATE(1903)] = 72161, - [SMALL_STATE(1904)] = 72236, - [SMALL_STATE(1905)] = 72311, - [SMALL_STATE(1906)] = 72386, - [SMALL_STATE(1907)] = 72461, - [SMALL_STATE(1908)] = 72536, - [SMALL_STATE(1909)] = 72575, - [SMALL_STATE(1910)] = 72614, - [SMALL_STATE(1911)] = 72689, - [SMALL_STATE(1912)] = 72728, - [SMALL_STATE(1913)] = 72767, - [SMALL_STATE(1914)] = 72842, - [SMALL_STATE(1915)] = 72881, - [SMALL_STATE(1916)] = 72956, - [SMALL_STATE(1917)] = 73031, - [SMALL_STATE(1918)] = 73106, - [SMALL_STATE(1919)] = 73181, - [SMALL_STATE(1920)] = 73220, - [SMALL_STATE(1921)] = 73259, - [SMALL_STATE(1922)] = 73334, - [SMALL_STATE(1923)] = 73409, - [SMALL_STATE(1924)] = 73484, - [SMALL_STATE(1925)] = 73559, - [SMALL_STATE(1926)] = 73634, - [SMALL_STATE(1927)] = 73709, - [SMALL_STATE(1928)] = 73784, - [SMALL_STATE(1929)] = 73855, - [SMALL_STATE(1930)] = 73926, - [SMALL_STATE(1931)] = 74001, - [SMALL_STATE(1932)] = 74040, - [SMALL_STATE(1933)] = 74115, - [SMALL_STATE(1934)] = 74154, - [SMALL_STATE(1935)] = 74229, - [SMALL_STATE(1936)] = 74304, - [SMALL_STATE(1937)] = 74379, - [SMALL_STATE(1938)] = 74454, - [SMALL_STATE(1939)] = 74493, - [SMALL_STATE(1940)] = 74568, - [SMALL_STATE(1941)] = 74643, - [SMALL_STATE(1942)] = 74718, - [SMALL_STATE(1943)] = 74757, - [SMALL_STATE(1944)] = 74796, - [SMALL_STATE(1945)] = 74835, - [SMALL_STATE(1946)] = 74910, - [SMALL_STATE(1947)] = 74949, - [SMALL_STATE(1948)] = 74988, - [SMALL_STATE(1949)] = 75063, - [SMALL_STATE(1950)] = 75102, - [SMALL_STATE(1951)] = 75141, - [SMALL_STATE(1952)] = 75216, - [SMALL_STATE(1953)] = 75291, - [SMALL_STATE(1954)] = 75366, - [SMALL_STATE(1955)] = 75441, - [SMALL_STATE(1956)] = 75480, - [SMALL_STATE(1957)] = 75555, - [SMALL_STATE(1958)] = 75630, - [SMALL_STATE(1959)] = 75705, - [SMALL_STATE(1960)] = 75780, - [SMALL_STATE(1961)] = 75819, - [SMALL_STATE(1962)] = 75890, - [SMALL_STATE(1963)] = 75965, - [SMALL_STATE(1964)] = 76004, - [SMALL_STATE(1965)] = 76043, - [SMALL_STATE(1966)] = 76118, - [SMALL_STATE(1967)] = 76193, - [SMALL_STATE(1968)] = 76232, - [SMALL_STATE(1969)] = 76271, - [SMALL_STATE(1970)] = 76346, - [SMALL_STATE(1971)] = 76385, - [SMALL_STATE(1972)] = 76460, - [SMALL_STATE(1973)] = 76499, - [SMALL_STATE(1974)] = 76538, - [SMALL_STATE(1975)] = 76609, - [SMALL_STATE(1976)] = 76648, - [SMALL_STATE(1977)] = 76691, - [SMALL_STATE(1978)] = 76730, - [SMALL_STATE(1979)] = 76805, - [SMALL_STATE(1980)] = 76880, - [SMALL_STATE(1981)] = 76919, - [SMALL_STATE(1982)] = 76958, - [SMALL_STATE(1983)] = 76997, - [SMALL_STATE(1984)] = 77072, - [SMALL_STATE(1985)] = 77147, - [SMALL_STATE(1986)] = 77222, - [SMALL_STATE(1987)] = 77297, - [SMALL_STATE(1988)] = 77372, - [SMALL_STATE(1989)] = 77443, - [SMALL_STATE(1990)] = 77482, - [SMALL_STATE(1991)] = 77521, - [SMALL_STATE(1992)] = 77560, - [SMALL_STATE(1993)] = 77599, - [SMALL_STATE(1994)] = 77638, - [SMALL_STATE(1995)] = 77677, - [SMALL_STATE(1996)] = 77748, - [SMALL_STATE(1997)] = 77823, - [SMALL_STATE(1998)] = 77898, - [SMALL_STATE(1999)] = 77973, - [SMALL_STATE(2000)] = 78048, - [SMALL_STATE(2001)] = 78123, - [SMALL_STATE(2002)] = 78194, - [SMALL_STATE(2003)] = 78235, - [SMALL_STATE(2004)] = 78310, - [SMALL_STATE(2005)] = 78349, - [SMALL_STATE(2006)] = 78424, - [SMALL_STATE(2007)] = 78499, - [SMALL_STATE(2008)] = 78538, - [SMALL_STATE(2009)] = 78577, - [SMALL_STATE(2010)] = 78652, - [SMALL_STATE(2011)] = 78691, - [SMALL_STATE(2012)] = 78766, - [SMALL_STATE(2013)] = 78841, - [SMALL_STATE(2014)] = 78916, - [SMALL_STATE(2015)] = 78991, - [SMALL_STATE(2016)] = 79066, - [SMALL_STATE(2017)] = 79105, - [SMALL_STATE(2018)] = 79180, - [SMALL_STATE(2019)] = 79219, - [SMALL_STATE(2020)] = 79294, - [SMALL_STATE(2021)] = 79333, - [SMALL_STATE(2022)] = 79408, - [SMALL_STATE(2023)] = 79447, - [SMALL_STATE(2024)] = 79486, - [SMALL_STATE(2025)] = 79561, - [SMALL_STATE(2026)] = 79636, - [SMALL_STATE(2027)] = 79711, - [SMALL_STATE(2028)] = 79786, - [SMALL_STATE(2029)] = 79857, - [SMALL_STATE(2030)] = 79896, - [SMALL_STATE(2031)] = 79935, - [SMALL_STATE(2032)] = 80010, - [SMALL_STATE(2033)] = 80085, - [SMALL_STATE(2034)] = 80124, - [SMALL_STATE(2035)] = 80163, - [SMALL_STATE(2036)] = 80238, - [SMALL_STATE(2037)] = 80313, - [SMALL_STATE(2038)] = 80352, - [SMALL_STATE(2039)] = 80391, - [SMALL_STATE(2040)] = 80430, - [SMALL_STATE(2041)] = 80469, - [SMALL_STATE(2042)] = 80508, - [SMALL_STATE(2043)] = 80547, - [SMALL_STATE(2044)] = 80586, - [SMALL_STATE(2045)] = 80661, - [SMALL_STATE(2046)] = 80736, - [SMALL_STATE(2047)] = 80811, - [SMALL_STATE(2048)] = 80849, - [SMALL_STATE(2049)] = 80919, - [SMALL_STATE(2050)] = 80957, - [SMALL_STATE(2051)] = 81027, - [SMALL_STATE(2052)] = 81097, - [SMALL_STATE(2053)] = 81135, - [SMALL_STATE(2054)] = 81205, - [SMALL_STATE(2055)] = 81249, - [SMALL_STATE(2056)] = 81319, - [SMALL_STATE(2057)] = 81359, - [SMALL_STATE(2058)] = 81427, - [SMALL_STATE(2059)] = 81463, - [SMALL_STATE(2060)] = 81499, - [SMALL_STATE(2061)] = 81537, - [SMALL_STATE(2062)] = 81575, - [SMALL_STATE(2063)] = 81640, - [SMALL_STATE(2064)] = 81705, - [SMALL_STATE(2065)] = 81770, - [SMALL_STATE(2066)] = 81835, - [SMALL_STATE(2067)] = 81900, - [SMALL_STATE(2068)] = 81965, - [SMALL_STATE(2069)] = 82030, - [SMALL_STATE(2070)] = 82095, - [SMALL_STATE(2071)] = 82160, - [SMALL_STATE(2072)] = 82225, - [SMALL_STATE(2073)] = 82290, - [SMALL_STATE(2074)] = 82355, - [SMALL_STATE(2075)] = 82420, - [SMALL_STATE(2076)] = 82485, - [SMALL_STATE(2077)] = 82550, - [SMALL_STATE(2078)] = 82615, - [SMALL_STATE(2079)] = 82680, - [SMALL_STATE(2080)] = 82745, - [SMALL_STATE(2081)] = 82810, - [SMALL_STATE(2082)] = 82875, - [SMALL_STATE(2083)] = 82940, - [SMALL_STATE(2084)] = 83005, - [SMALL_STATE(2085)] = 83070, - [SMALL_STATE(2086)] = 83135, - [SMALL_STATE(2087)] = 83200, - [SMALL_STATE(2088)] = 83265, - [SMALL_STATE(2089)] = 83330, - [SMALL_STATE(2090)] = 83395, - [SMALL_STATE(2091)] = 83460, - [SMALL_STATE(2092)] = 83525, - [SMALL_STATE(2093)] = 83590, - [SMALL_STATE(2094)] = 83655, - [SMALL_STATE(2095)] = 83720, - [SMALL_STATE(2096)] = 83785, - [SMALL_STATE(2097)] = 83850, - [SMALL_STATE(2098)] = 83915, - [SMALL_STATE(2099)] = 83980, - [SMALL_STATE(2100)] = 84045, - [SMALL_STATE(2101)] = 84110, - [SMALL_STATE(2102)] = 84175, - [SMALL_STATE(2103)] = 84240, - [SMALL_STATE(2104)] = 84305, - [SMALL_STATE(2105)] = 84370, - [SMALL_STATE(2106)] = 84435, - [SMALL_STATE(2107)] = 84500, - [SMALL_STATE(2108)] = 84565, - [SMALL_STATE(2109)] = 84630, - [SMALL_STATE(2110)] = 84695, - [SMALL_STATE(2111)] = 84760, - [SMALL_STATE(2112)] = 84825, - [SMALL_STATE(2113)] = 84890, - [SMALL_STATE(2114)] = 84955, - [SMALL_STATE(2115)] = 85020, - [SMALL_STATE(2116)] = 85085, - [SMALL_STATE(2117)] = 85150, - [SMALL_STATE(2118)] = 85215, - [SMALL_STATE(2119)] = 85280, - [SMALL_STATE(2120)] = 85345, - [SMALL_STATE(2121)] = 85410, - [SMALL_STATE(2122)] = 85475, - [SMALL_STATE(2123)] = 85540, - [SMALL_STATE(2124)] = 85605, - [SMALL_STATE(2125)] = 85670, - [SMALL_STATE(2126)] = 85735, - [SMALL_STATE(2127)] = 85800, - [SMALL_STATE(2128)] = 85865, - [SMALL_STATE(2129)] = 85930, - [SMALL_STATE(2130)] = 85995, - [SMALL_STATE(2131)] = 86060, - [SMALL_STATE(2132)] = 86125, - [SMALL_STATE(2133)] = 86190, - [SMALL_STATE(2134)] = 86255, - [SMALL_STATE(2135)] = 86320, - [SMALL_STATE(2136)] = 86385, - [SMALL_STATE(2137)] = 86450, - [SMALL_STATE(2138)] = 86515, - [SMALL_STATE(2139)] = 86580, - [SMALL_STATE(2140)] = 86645, - [SMALL_STATE(2141)] = 86710, - [SMALL_STATE(2142)] = 86775, - [SMALL_STATE(2143)] = 86840, - [SMALL_STATE(2144)] = 86905, - [SMALL_STATE(2145)] = 86970, - [SMALL_STATE(2146)] = 87035, - [SMALL_STATE(2147)] = 87100, - [SMALL_STATE(2148)] = 87165, - [SMALL_STATE(2149)] = 87230, - [SMALL_STATE(2150)] = 87295, - [SMALL_STATE(2151)] = 87360, - [SMALL_STATE(2152)] = 87425, - [SMALL_STATE(2153)] = 87490, - [SMALL_STATE(2154)] = 87555, - [SMALL_STATE(2155)] = 87620, - [SMALL_STATE(2156)] = 87685, - [SMALL_STATE(2157)] = 87750, - [SMALL_STATE(2158)] = 87815, - [SMALL_STATE(2159)] = 87880, - [SMALL_STATE(2160)] = 87945, - [SMALL_STATE(2161)] = 88010, - [SMALL_STATE(2162)] = 88075, - [SMALL_STATE(2163)] = 88140, - [SMALL_STATE(2164)] = 88205, - [SMALL_STATE(2165)] = 88270, - [SMALL_STATE(2166)] = 88335, - [SMALL_STATE(2167)] = 88400, - [SMALL_STATE(2168)] = 88465, - [SMALL_STATE(2169)] = 88530, - [SMALL_STATE(2170)] = 88595, - [SMALL_STATE(2171)] = 88660, - [SMALL_STATE(2172)] = 88725, - [SMALL_STATE(2173)] = 88790, - [SMALL_STATE(2174)] = 88855, - [SMALL_STATE(2175)] = 88920, - [SMALL_STATE(2176)] = 88985, - [SMALL_STATE(2177)] = 89050, - [SMALL_STATE(2178)] = 89115, - [SMALL_STATE(2179)] = 89180, - [SMALL_STATE(2180)] = 89245, - [SMALL_STATE(2181)] = 89310, - [SMALL_STATE(2182)] = 89375, - [SMALL_STATE(2183)] = 89416, - [SMALL_STATE(2184)] = 89481, - [SMALL_STATE(2185)] = 89546, - [SMALL_STATE(2186)] = 89611, - [SMALL_STATE(2187)] = 89676, - [SMALL_STATE(2188)] = 89741, - [SMALL_STATE(2189)] = 89806, - [SMALL_STATE(2190)] = 89871, - [SMALL_STATE(2191)] = 89933, - [SMALL_STATE(2192)] = 89995, - [SMALL_STATE(2193)] = 90057, - [SMALL_STATE(2194)] = 90119, - [SMALL_STATE(2195)] = 90181, - [SMALL_STATE(2196)] = 90243, - [SMALL_STATE(2197)] = 90305, - [SMALL_STATE(2198)] = 90367, - [SMALL_STATE(2199)] = 90429, - [SMALL_STATE(2200)] = 90491, - [SMALL_STATE(2201)] = 90553, - [SMALL_STATE(2202)] = 90615, - [SMALL_STATE(2203)] = 90677, - [SMALL_STATE(2204)] = 90739, - [SMALL_STATE(2205)] = 90801, - [SMALL_STATE(2206)] = 90863, - [SMALL_STATE(2207)] = 90925, - [SMALL_STATE(2208)] = 90987, - [SMALL_STATE(2209)] = 91049, - [SMALL_STATE(2210)] = 91111, - [SMALL_STATE(2211)] = 91173, - [SMALL_STATE(2212)] = 91235, - [SMALL_STATE(2213)] = 91299, - [SMALL_STATE(2214)] = 91337, - [SMALL_STATE(2215)] = 91371, - [SMALL_STATE(2216)] = 91405, - [SMALL_STATE(2217)] = 91467, - [SMALL_STATE(2218)] = 91503, - [SMALL_STATE(2219)] = 91565, - [SMALL_STATE(2220)] = 91627, - [SMALL_STATE(2221)] = 91689, - [SMALL_STATE(2222)] = 91750, - [SMALL_STATE(2223)] = 91811, - [SMALL_STATE(2224)] = 91872, - [SMALL_STATE(2225)] = 91933, - [SMALL_STATE(2226)] = 91968, - [SMALL_STATE(2227)] = 92029, - [SMALL_STATE(2228)] = 92090, - [SMALL_STATE(2229)] = 92126, - [SMALL_STATE(2230)] = 92164, - [SMALL_STATE(2231)] = 92217, - [SMALL_STATE(2232)] = 92272, - [SMALL_STATE(2233)] = 92325, - [SMALL_STATE(2234)] = 92378, - [SMALL_STATE(2235)] = 92433, - [SMALL_STATE(2236)] = 92488, - [SMALL_STATE(2237)] = 92543, - [SMALL_STATE(2238)] = 92598, - [SMALL_STATE(2239)] = 92653, - [SMALL_STATE(2240)] = 92708, - [SMALL_STATE(2241)] = 92763, - [SMALL_STATE(2242)] = 92818, - [SMALL_STATE(2243)] = 92873, - [SMALL_STATE(2244)] = 92928, - [SMALL_STATE(2245)] = 92983, - [SMALL_STATE(2246)] = 93038, - [SMALL_STATE(2247)] = 93093, - [SMALL_STATE(2248)] = 93148, - [SMALL_STATE(2249)] = 93203, - [SMALL_STATE(2250)] = 93258, - [SMALL_STATE(2251)] = 93313, - [SMALL_STATE(2252)] = 93368, - [SMALL_STATE(2253)] = 93401, - [SMALL_STATE(2254)] = 93456, - [SMALL_STATE(2255)] = 93509, - [SMALL_STATE(2256)] = 93545, - [SMALL_STATE(2257)] = 93581, - [SMALL_STATE(2258)] = 93619, - [SMALL_STATE(2259)] = 93653, - [SMALL_STATE(2260)] = 93686, - [SMALL_STATE(2261)] = 93715, - [SMALL_STATE(2262)] = 93748, - [SMALL_STATE(2263)] = 93793, - [SMALL_STATE(2264)] = 93826, - [SMALL_STATE(2265)] = 93859, - [SMALL_STATE(2266)] = 93890, - [SMALL_STATE(2267)] = 93921, - [SMALL_STATE(2268)] = 93950, - [SMALL_STATE(2269)] = 93995, - [SMALL_STATE(2270)] = 94029, - [SMALL_STATE(2271)] = 94059, - [SMALL_STATE(2272)] = 94087, - [SMALL_STATE(2273)] = 94118, - [SMALL_STATE(2274)] = 94156, - [SMALL_STATE(2275)] = 94194, - [SMALL_STATE(2276)] = 94224, - [SMALL_STATE(2277)] = 94252, - [SMALL_STATE(2278)] = 94280, - [SMALL_STATE(2279)] = 94308, - [SMALL_STATE(2280)] = 94336, - [SMALL_STATE(2281)] = 94361, - [SMALL_STATE(2282)] = 94386, - [SMALL_STATE(2283)] = 94421, - [SMALL_STATE(2284)] = 94456, - [SMALL_STATE(2285)] = 94483, - [SMALL_STATE(2286)] = 94506, - [SMALL_STATE(2287)] = 94533, - [SMALL_STATE(2288)] = 94560, - [SMALL_STATE(2289)] = 94587, - [SMALL_STATE(2290)] = 94607, - [SMALL_STATE(2291)] = 94633, - [SMALL_STATE(2292)] = 94652, - [SMALL_STATE(2293)] = 94671, - [SMALL_STATE(2294)] = 94701, - [SMALL_STATE(2295)] = 94717, - [SMALL_STATE(2296)] = 94747, - [SMALL_STATE(2297)] = 94771, - [SMALL_STATE(2298)] = 94801, - [SMALL_STATE(2299)] = 94831, - [SMALL_STATE(2300)] = 94861, - [SMALL_STATE(2301)] = 94883, - [SMALL_STATE(2302)] = 94913, - [SMALL_STATE(2303)] = 94935, - [SMALL_STATE(2304)] = 94965, - [SMALL_STATE(2305)] = 94981, - [SMALL_STATE(2306)] = 95011, - [SMALL_STATE(2307)] = 95041, - [SMALL_STATE(2308)] = 95063, - [SMALL_STATE(2309)] = 95093, - [SMALL_STATE(2310)] = 95123, - [SMALL_STATE(2311)] = 95149, - [SMALL_STATE(2312)] = 95172, - [SMALL_STATE(2313)] = 95195, - [SMALL_STATE(2314)] = 95218, - [SMALL_STATE(2315)] = 95239, - [SMALL_STATE(2316)] = 95265, - [SMALL_STATE(2317)] = 95291, - [SMALL_STATE(2318)] = 95317, - [SMALL_STATE(2319)] = 95343, - [SMALL_STATE(2320)] = 95369, - [SMALL_STATE(2321)] = 95395, - [SMALL_STATE(2322)] = 95413, - [SMALL_STATE(2323)] = 95431, - [SMALL_STATE(2324)] = 95457, - [SMALL_STATE(2325)] = 95483, - [SMALL_STATE(2326)] = 95509, - [SMALL_STATE(2327)] = 95533, - [SMALL_STATE(2328)] = 95555, - [SMALL_STATE(2329)] = 95577, - [SMALL_STATE(2330)] = 95601, - [SMALL_STATE(2331)] = 95623, - [SMALL_STATE(2332)] = 95645, - [SMALL_STATE(2333)] = 95671, - [SMALL_STATE(2334)] = 95697, - [SMALL_STATE(2335)] = 95719, - [SMALL_STATE(2336)] = 95745, - [SMALL_STATE(2337)] = 95771, - [SMALL_STATE(2338)] = 95797, - [SMALL_STATE(2339)] = 95823, - [SMALL_STATE(2340)] = 95849, - [SMALL_STATE(2341)] = 95875, - [SMALL_STATE(2342)] = 95901, - [SMALL_STATE(2343)] = 95927, - [SMALL_STATE(2344)] = 95953, - [SMALL_STATE(2345)] = 95969, - [SMALL_STATE(2346)] = 95985, - [SMALL_STATE(2347)] = 96011, - [SMALL_STATE(2348)] = 96037, - [SMALL_STATE(2349)] = 96059, - [SMALL_STATE(2350)] = 96085, - [SMALL_STATE(2351)] = 96105, - [SMALL_STATE(2352)] = 96131, - [SMALL_STATE(2353)] = 96157, - [SMALL_STATE(2354)] = 96183, - [SMALL_STATE(2355)] = 96209, - [SMALL_STATE(2356)] = 96235, - [SMALL_STATE(2357)] = 96261, - [SMALL_STATE(2358)] = 96287, - [SMALL_STATE(2359)] = 96313, - [SMALL_STATE(2360)] = 96339, - [SMALL_STATE(2361)] = 96365, - [SMALL_STATE(2362)] = 96391, - [SMALL_STATE(2363)] = 96417, - [SMALL_STATE(2364)] = 96443, - [SMALL_STATE(2365)] = 96465, - [SMALL_STATE(2366)] = 96491, - [SMALL_STATE(2367)] = 96517, - [SMALL_STATE(2368)] = 96539, - [SMALL_STATE(2369)] = 96565, - [SMALL_STATE(2370)] = 96581, - [SMALL_STATE(2371)] = 96599, - [SMALL_STATE(2372)] = 96617, - [SMALL_STATE(2373)] = 96635, - [SMALL_STATE(2374)] = 96653, - [SMALL_STATE(2375)] = 96669, - [SMALL_STATE(2376)] = 96685, - [SMALL_STATE(2377)] = 96701, - [SMALL_STATE(2378)] = 96727, - [SMALL_STATE(2379)] = 96753, - [SMALL_STATE(2380)] = 96779, - [SMALL_STATE(2381)] = 96802, - [SMALL_STATE(2382)] = 96825, - [SMALL_STATE(2383)] = 96846, - [SMALL_STATE(2384)] = 96869, - [SMALL_STATE(2385)] = 96892, - [SMALL_STATE(2386)] = 96915, - [SMALL_STATE(2387)] = 96938, - [SMALL_STATE(2388)] = 96959, - [SMALL_STATE(2389)] = 96982, - [SMALL_STATE(2390)] = 97003, - [SMALL_STATE(2391)] = 97026, - [SMALL_STATE(2392)] = 97039, - [SMALL_STATE(2393)] = 97062, - [SMALL_STATE(2394)] = 97085, - [SMALL_STATE(2395)] = 97108, - [SMALL_STATE(2396)] = 97129, - [SMALL_STATE(2397)] = 97152, - [SMALL_STATE(2398)] = 97175, - [SMALL_STATE(2399)] = 97198, - [SMALL_STATE(2400)] = 97221, - [SMALL_STATE(2401)] = 97244, - [SMALL_STATE(2402)] = 97267, - [SMALL_STATE(2403)] = 97290, - [SMALL_STATE(2404)] = 97309, - [SMALL_STATE(2405)] = 97332, - [SMALL_STATE(2406)] = 97353, - [SMALL_STATE(2407)] = 97376, - [SMALL_STATE(2408)] = 97399, - [SMALL_STATE(2409)] = 97422, - [SMALL_STATE(2410)] = 97443, - [SMALL_STATE(2411)] = 97464, - [SMALL_STATE(2412)] = 97481, - [SMALL_STATE(2413)] = 97504, - [SMALL_STATE(2414)] = 97521, - [SMALL_STATE(2415)] = 97538, - [SMALL_STATE(2416)] = 97561, - [SMALL_STATE(2417)] = 97584, - [SMALL_STATE(2418)] = 97607, - [SMALL_STATE(2419)] = 97630, - [SMALL_STATE(2420)] = 97651, - [SMALL_STATE(2421)] = 97670, - [SMALL_STATE(2422)] = 97693, - [SMALL_STATE(2423)] = 97716, - [SMALL_STATE(2424)] = 97739, - [SMALL_STATE(2425)] = 97758, - [SMALL_STATE(2426)] = 97781, - [SMALL_STATE(2427)] = 97802, - [SMALL_STATE(2428)] = 97823, - [SMALL_STATE(2429)] = 97846, - [SMALL_STATE(2430)] = 97869, - [SMALL_STATE(2431)] = 97892, - [SMALL_STATE(2432)] = 97909, - [SMALL_STATE(2433)] = 97932, - [SMALL_STATE(2434)] = 97955, - [SMALL_STATE(2435)] = 97970, - [SMALL_STATE(2436)] = 97993, - [SMALL_STATE(2437)] = 98016, - [SMALL_STATE(2438)] = 98033, - [SMALL_STATE(2439)] = 98050, - [SMALL_STATE(2440)] = 98067, - [SMALL_STATE(2441)] = 98084, - [SMALL_STATE(2442)] = 98099, - [SMALL_STATE(2443)] = 98114, - [SMALL_STATE(2444)] = 98129, - [SMALL_STATE(2445)] = 98150, - [SMALL_STATE(2446)] = 98171, - [SMALL_STATE(2447)] = 98184, - [SMALL_STATE(2448)] = 98207, - [SMALL_STATE(2449)] = 98226, - [SMALL_STATE(2450)] = 98247, - [SMALL_STATE(2451)] = 98270, - [SMALL_STATE(2452)] = 98293, - [SMALL_STATE(2453)] = 98311, - [SMALL_STATE(2454)] = 98331, - [SMALL_STATE(2455)] = 98351, - [SMALL_STATE(2456)] = 98365, - [SMALL_STATE(2457)] = 98381, - [SMALL_STATE(2458)] = 98401, - [SMALL_STATE(2459)] = 98417, - [SMALL_STATE(2460)] = 98435, - [SMALL_STATE(2461)] = 98455, - [SMALL_STATE(2462)] = 98473, - [SMALL_STATE(2463)] = 98493, - [SMALL_STATE(2464)] = 98509, - [SMALL_STATE(2465)] = 98529, - [SMALL_STATE(2466)] = 98547, - [SMALL_STATE(2467)] = 98565, - [SMALL_STATE(2468)] = 98581, - [SMALL_STATE(2469)] = 98601, - [SMALL_STATE(2470)] = 98619, - [SMALL_STATE(2471)] = 98635, - [SMALL_STATE(2472)] = 98655, - [SMALL_STATE(2473)] = 98675, - [SMALL_STATE(2474)] = 98691, - [SMALL_STATE(2475)] = 98707, - [SMALL_STATE(2476)] = 98727, - [SMALL_STATE(2477)] = 98741, - [SMALL_STATE(2478)] = 98761, - [SMALL_STATE(2479)] = 98779, - [SMALL_STATE(2480)] = 98795, - [SMALL_STATE(2481)] = 98813, - [SMALL_STATE(2482)] = 98831, - [SMALL_STATE(2483)] = 98849, - [SMALL_STATE(2484)] = 98869, - [SMALL_STATE(2485)] = 98885, - [SMALL_STATE(2486)] = 98905, - [SMALL_STATE(2487)] = 98921, - [SMALL_STATE(2488)] = 98933, - [SMALL_STATE(2489)] = 98947, - [SMALL_STATE(2490)] = 98963, - [SMALL_STATE(2491)] = 98981, - [SMALL_STATE(2492)] = 98997, - [SMALL_STATE(2493)] = 99015, - [SMALL_STATE(2494)] = 99033, - [SMALL_STATE(2495)] = 99053, - [SMALL_STATE(2496)] = 99073, - [SMALL_STATE(2497)] = 99093, - [SMALL_STATE(2498)] = 99107, - [SMALL_STATE(2499)] = 99119, - [SMALL_STATE(2500)] = 99131, - [SMALL_STATE(2501)] = 99145, - [SMALL_STATE(2502)] = 99165, - [SMALL_STATE(2503)] = 99185, - [SMALL_STATE(2504)] = 99205, - [SMALL_STATE(2505)] = 99225, - [SMALL_STATE(2506)] = 99243, - [SMALL_STATE(2507)] = 99259, - [SMALL_STATE(2508)] = 99279, - [SMALL_STATE(2509)] = 99297, - [SMALL_STATE(2510)] = 99317, - [SMALL_STATE(2511)] = 99335, - [SMALL_STATE(2512)] = 99355, - [SMALL_STATE(2513)] = 99375, - [SMALL_STATE(2514)] = 99389, - [SMALL_STATE(2515)] = 99409, - [SMALL_STATE(2516)] = 99425, - [SMALL_STATE(2517)] = 99445, - [SMALL_STATE(2518)] = 99463, - [SMALL_STATE(2519)] = 99477, - [SMALL_STATE(2520)] = 99489, - [SMALL_STATE(2521)] = 99507, - [SMALL_STATE(2522)] = 99521, - [SMALL_STATE(2523)] = 99537, - [SMALL_STATE(2524)] = 99557, - [SMALL_STATE(2525)] = 99571, - [SMALL_STATE(2526)] = 99591, - [SMALL_STATE(2527)] = 99609, - [SMALL_STATE(2528)] = 99629, - [SMALL_STATE(2529)] = 99649, - [SMALL_STATE(2530)] = 99666, - [SMALL_STATE(2531)] = 99683, - [SMALL_STATE(2532)] = 99700, - [SMALL_STATE(2533)] = 99717, - [SMALL_STATE(2534)] = 99734, - [SMALL_STATE(2535)] = 99745, - [SMALL_STATE(2536)] = 99762, - [SMALL_STATE(2537)] = 99779, - [SMALL_STATE(2538)] = 99796, - [SMALL_STATE(2539)] = 99813, - [SMALL_STATE(2540)] = 99830, - [SMALL_STATE(2541)] = 99847, - [SMALL_STATE(2542)] = 99864, - [SMALL_STATE(2543)] = 99881, - [SMALL_STATE(2544)] = 99898, - [SMALL_STATE(2545)] = 99915, - [SMALL_STATE(2546)] = 99932, - [SMALL_STATE(2547)] = 99949, - [SMALL_STATE(2548)] = 99966, - [SMALL_STATE(2549)] = 99983, - [SMALL_STATE(2550)] = 100000, - [SMALL_STATE(2551)] = 100017, - [SMALL_STATE(2552)] = 100034, - [SMALL_STATE(2553)] = 100051, - [SMALL_STATE(2554)] = 100068, - [SMALL_STATE(2555)] = 100085, - [SMALL_STATE(2556)] = 100102, - [SMALL_STATE(2557)] = 100119, - [SMALL_STATE(2558)] = 100136, - [SMALL_STATE(2559)] = 100153, - [SMALL_STATE(2560)] = 100170, - [SMALL_STATE(2561)] = 100185, - [SMALL_STATE(2562)] = 100202, - [SMALL_STATE(2563)] = 100217, - [SMALL_STATE(2564)] = 100234, - [SMALL_STATE(2565)] = 100251, - [SMALL_STATE(2566)] = 100268, - [SMALL_STATE(2567)] = 100285, - [SMALL_STATE(2568)] = 100302, - [SMALL_STATE(2569)] = 100319, - [SMALL_STATE(2570)] = 100336, - [SMALL_STATE(2571)] = 100353, - [SMALL_STATE(2572)] = 100370, - [SMALL_STATE(2573)] = 100387, - [SMALL_STATE(2574)] = 100404, - [SMALL_STATE(2575)] = 100421, - [SMALL_STATE(2576)] = 100438, - [SMALL_STATE(2577)] = 100455, - [SMALL_STATE(2578)] = 100472, - [SMALL_STATE(2579)] = 100489, - [SMALL_STATE(2580)] = 100506, - [SMALL_STATE(2581)] = 100523, - [SMALL_STATE(2582)] = 100540, - [SMALL_STATE(2583)] = 100555, - [SMALL_STATE(2584)] = 100572, - [SMALL_STATE(2585)] = 100591, - [SMALL_STATE(2586)] = 100608, - [SMALL_STATE(2587)] = 100625, - [SMALL_STATE(2588)] = 100642, - [SMALL_STATE(2589)] = 100661, - [SMALL_STATE(2590)] = 100678, - [SMALL_STATE(2591)] = 100695, - [SMALL_STATE(2592)] = 100712, - [SMALL_STATE(2593)] = 100729, - [SMALL_STATE(2594)] = 100748, - [SMALL_STATE(2595)] = 100765, - [SMALL_STATE(2596)] = 100782, - [SMALL_STATE(2597)] = 100795, - [SMALL_STATE(2598)] = 100812, - [SMALL_STATE(2599)] = 100829, - [SMALL_STATE(2600)] = 100844, - [SMALL_STATE(2601)] = 100861, - [SMALL_STATE(2602)] = 100878, - [SMALL_STATE(2603)] = 100895, - [SMALL_STATE(2604)] = 100912, - [SMALL_STATE(2605)] = 100931, - [SMALL_STATE(2606)] = 100946, - [SMALL_STATE(2607)] = 100963, - [SMALL_STATE(2608)] = 100980, - [SMALL_STATE(2609)] = 100997, - [SMALL_STATE(2610)] = 101014, - [SMALL_STATE(2611)] = 101029, - [SMALL_STATE(2612)] = 101046, - [SMALL_STATE(2613)] = 101063, - [SMALL_STATE(2614)] = 101080, - [SMALL_STATE(2615)] = 101097, - [SMALL_STATE(2616)] = 101112, - [SMALL_STATE(2617)] = 101123, - [SMALL_STATE(2618)] = 101140, - [SMALL_STATE(2619)] = 101157, - [SMALL_STATE(2620)] = 101170, - [SMALL_STATE(2621)] = 101185, - [SMALL_STATE(2622)] = 101202, - [SMALL_STATE(2623)] = 101219, - [SMALL_STATE(2624)] = 101236, - [SMALL_STATE(2625)] = 101253, - [SMALL_STATE(2626)] = 101270, - [SMALL_STATE(2627)] = 101287, - [SMALL_STATE(2628)] = 101304, - [SMALL_STATE(2629)] = 101319, - [SMALL_STATE(2630)] = 101336, - [SMALL_STATE(2631)] = 101353, - [SMALL_STATE(2632)] = 101370, - [SMALL_STATE(2633)] = 101387, - [SMALL_STATE(2634)] = 101404, - [SMALL_STATE(2635)] = 101421, - [SMALL_STATE(2636)] = 101438, - [SMALL_STATE(2637)] = 101455, - [SMALL_STATE(2638)] = 101470, - [SMALL_STATE(2639)] = 101487, - [SMALL_STATE(2640)] = 101504, - [SMALL_STATE(2641)] = 101521, - [SMALL_STATE(2642)] = 101538, - [SMALL_STATE(2643)] = 101555, - [SMALL_STATE(2644)] = 101570, - [SMALL_STATE(2645)] = 101587, - [SMALL_STATE(2646)] = 101602, - [SMALL_STATE(2647)] = 101619, - [SMALL_STATE(2648)] = 101636, - [SMALL_STATE(2649)] = 101651, - [SMALL_STATE(2650)] = 101666, - [SMALL_STATE(2651)] = 101683, - [SMALL_STATE(2652)] = 101700, - [SMALL_STATE(2653)] = 101711, - [SMALL_STATE(2654)] = 101728, - [SMALL_STATE(2655)] = 101743, - [SMALL_STATE(2656)] = 101760, - [SMALL_STATE(2657)] = 101777, - [SMALL_STATE(2658)] = 101796, - [SMALL_STATE(2659)] = 101809, - [SMALL_STATE(2660)] = 101826, - [SMALL_STATE(2661)] = 101843, - [SMALL_STATE(2662)] = 101860, - [SMALL_STATE(2663)] = 101871, - [SMALL_STATE(2664)] = 101888, - [SMALL_STATE(2665)] = 101905, - [SMALL_STATE(2666)] = 101922, - [SMALL_STATE(2667)] = 101939, - [SMALL_STATE(2668)] = 101958, - [SMALL_STATE(2669)] = 101975, - [SMALL_STATE(2670)] = 101992, - [SMALL_STATE(2671)] = 102009, - [SMALL_STATE(2672)] = 102024, - [SMALL_STATE(2673)] = 102043, - [SMALL_STATE(2674)] = 102060, - [SMALL_STATE(2675)] = 102077, - [SMALL_STATE(2676)] = 102094, - [SMALL_STATE(2677)] = 102111, - [SMALL_STATE(2678)] = 102128, - [SMALL_STATE(2679)] = 102145, - [SMALL_STATE(2680)] = 102162, - [SMALL_STATE(2681)] = 102177, - [SMALL_STATE(2682)] = 102192, - [SMALL_STATE(2683)] = 102203, - [SMALL_STATE(2684)] = 102220, - [SMALL_STATE(2685)] = 102239, - [SMALL_STATE(2686)] = 102256, - [SMALL_STATE(2687)] = 102273, - [SMALL_STATE(2688)] = 102290, - [SMALL_STATE(2689)] = 102307, - [SMALL_STATE(2690)] = 102324, - [SMALL_STATE(2691)] = 102339, - [SMALL_STATE(2692)] = 102356, - [SMALL_STATE(2693)] = 102373, - [SMALL_STATE(2694)] = 102390, - [SMALL_STATE(2695)] = 102407, - [SMALL_STATE(2696)] = 102426, - [SMALL_STATE(2697)] = 102443, - [SMALL_STATE(2698)] = 102460, - [SMALL_STATE(2699)] = 102477, - [SMALL_STATE(2700)] = 102494, - [SMALL_STATE(2701)] = 102511, - [SMALL_STATE(2702)] = 102528, - [SMALL_STATE(2703)] = 102545, - [SMALL_STATE(2704)] = 102562, - [SMALL_STATE(2705)] = 102579, - [SMALL_STATE(2706)] = 102596, - [SMALL_STATE(2707)] = 102613, - [SMALL_STATE(2708)] = 102630, - [SMALL_STATE(2709)] = 102647, - [SMALL_STATE(2710)] = 102664, - [SMALL_STATE(2711)] = 102681, - [SMALL_STATE(2712)] = 102698, - [SMALL_STATE(2713)] = 102715, - [SMALL_STATE(2714)] = 102732, - [SMALL_STATE(2715)] = 102745, - [SMALL_STATE(2716)] = 102762, - [SMALL_STATE(2717)] = 102779, - [SMALL_STATE(2718)] = 102796, - [SMALL_STATE(2719)] = 102813, - [SMALL_STATE(2720)] = 102830, - [SMALL_STATE(2721)] = 102845, - [SMALL_STATE(2722)] = 102862, - [SMALL_STATE(2723)] = 102879, - [SMALL_STATE(2724)] = 102896, - [SMALL_STATE(2725)] = 102909, - [SMALL_STATE(2726)] = 102926, - [SMALL_STATE(2727)] = 102943, - [SMALL_STATE(2728)] = 102960, - [SMALL_STATE(2729)] = 102977, - [SMALL_STATE(2730)] = 102994, - [SMALL_STATE(2731)] = 103011, - [SMALL_STATE(2732)] = 103028, - [SMALL_STATE(2733)] = 103045, - [SMALL_STATE(2734)] = 103062, - [SMALL_STATE(2735)] = 103079, - [SMALL_STATE(2736)] = 103096, - [SMALL_STATE(2737)] = 103113, - [SMALL_STATE(2738)] = 103130, - [SMALL_STATE(2739)] = 103147, - [SMALL_STATE(2740)] = 103164, - [SMALL_STATE(2741)] = 103181, - [SMALL_STATE(2742)] = 103198, - [SMALL_STATE(2743)] = 103215, - [SMALL_STATE(2744)] = 103230, - [SMALL_STATE(2745)] = 103247, - [SMALL_STATE(2746)] = 103264, - [SMALL_STATE(2747)] = 103281, - [SMALL_STATE(2748)] = 103298, - [SMALL_STATE(2749)] = 103315, - [SMALL_STATE(2750)] = 103332, - [SMALL_STATE(2751)] = 103349, - [SMALL_STATE(2752)] = 103366, - [SMALL_STATE(2753)] = 103383, - [SMALL_STATE(2754)] = 103398, - [SMALL_STATE(2755)] = 103415, - [SMALL_STATE(2756)] = 103432, - [SMALL_STATE(2757)] = 103449, - [SMALL_STATE(2758)] = 103464, - [SMALL_STATE(2759)] = 103479, - [SMALL_STATE(2760)] = 103494, - [SMALL_STATE(2761)] = 103511, - [SMALL_STATE(2762)] = 103528, - [SMALL_STATE(2763)] = 103545, - [SMALL_STATE(2764)] = 103562, - [SMALL_STATE(2765)] = 103579, - [SMALL_STATE(2766)] = 103596, - [SMALL_STATE(2767)] = 103613, - [SMALL_STATE(2768)] = 103630, - [SMALL_STATE(2769)] = 103647, - [SMALL_STATE(2770)] = 103664, - [SMALL_STATE(2771)] = 103681, - [SMALL_STATE(2772)] = 103698, - [SMALL_STATE(2773)] = 103715, - [SMALL_STATE(2774)] = 103732, - [SMALL_STATE(2775)] = 103747, - [SMALL_STATE(2776)] = 103764, - [SMALL_STATE(2777)] = 103781, - [SMALL_STATE(2778)] = 103798, - [SMALL_STATE(2779)] = 103813, - [SMALL_STATE(2780)] = 103830, - [SMALL_STATE(2781)] = 103847, - [SMALL_STATE(2782)] = 103862, - [SMALL_STATE(2783)] = 103877, - [SMALL_STATE(2784)] = 103892, - [SMALL_STATE(2785)] = 103909, - [SMALL_STATE(2786)] = 103926, - [SMALL_STATE(2787)] = 103943, - [SMALL_STATE(2788)] = 103962, - [SMALL_STATE(2789)] = 103979, - [SMALL_STATE(2790)] = 103996, - [SMALL_STATE(2791)] = 104013, - [SMALL_STATE(2792)] = 104030, - [SMALL_STATE(2793)] = 104047, - [SMALL_STATE(2794)] = 104064, - [SMALL_STATE(2795)] = 104079, - [SMALL_STATE(2796)] = 104096, - [SMALL_STATE(2797)] = 104113, - [SMALL_STATE(2798)] = 104128, - [SMALL_STATE(2799)] = 104143, - [SMALL_STATE(2800)] = 104158, - [SMALL_STATE(2801)] = 104175, - [SMALL_STATE(2802)] = 104192, - [SMALL_STATE(2803)] = 104209, - [SMALL_STATE(2804)] = 104226, - [SMALL_STATE(2805)] = 104243, - [SMALL_STATE(2806)] = 104260, - [SMALL_STATE(2807)] = 104277, - [SMALL_STATE(2808)] = 104294, - [SMALL_STATE(2809)] = 104311, - [SMALL_STATE(2810)] = 104328, - [SMALL_STATE(2811)] = 104345, - [SMALL_STATE(2812)] = 104362, - [SMALL_STATE(2813)] = 104379, - [SMALL_STATE(2814)] = 104396, - [SMALL_STATE(2815)] = 104413, - [SMALL_STATE(2816)] = 104430, - [SMALL_STATE(2817)] = 104445, - [SMALL_STATE(2818)] = 104462, - [SMALL_STATE(2819)] = 104475, - [SMALL_STATE(2820)] = 104488, - [SMALL_STATE(2821)] = 104501, - [SMALL_STATE(2822)] = 104518, - [SMALL_STATE(2823)] = 104535, - [SMALL_STATE(2824)] = 104554, - [SMALL_STATE(2825)] = 104571, - [SMALL_STATE(2826)] = 104588, - [SMALL_STATE(2827)] = 104605, - [SMALL_STATE(2828)] = 104622, - [SMALL_STATE(2829)] = 104639, - [SMALL_STATE(2830)] = 104656, - [SMALL_STATE(2831)] = 104670, - [SMALL_STATE(2832)] = 104684, - [SMALL_STATE(2833)] = 104698, - [SMALL_STATE(2834)] = 104712, - [SMALL_STATE(2835)] = 104726, - [SMALL_STATE(2836)] = 104740, - [SMALL_STATE(2837)] = 104754, - [SMALL_STATE(2838)] = 104768, - [SMALL_STATE(2839)] = 104782, - [SMALL_STATE(2840)] = 104796, - [SMALL_STATE(2841)] = 104810, - [SMALL_STATE(2842)] = 104824, - [SMALL_STATE(2843)] = 104838, - [SMALL_STATE(2844)] = 104852, - [SMALL_STATE(2845)] = 104866, - [SMALL_STATE(2846)] = 104880, - [SMALL_STATE(2847)] = 104892, - [SMALL_STATE(2848)] = 104906, - [SMALL_STATE(2849)] = 104920, - [SMALL_STATE(2850)] = 104930, - [SMALL_STATE(2851)] = 104944, - [SMALL_STATE(2852)] = 104958, - [SMALL_STATE(2853)] = 104968, - [SMALL_STATE(2854)] = 104982, - [SMALL_STATE(2855)] = 104996, - [SMALL_STATE(2856)] = 105010, - [SMALL_STATE(2857)] = 105022, - [SMALL_STATE(2858)] = 105034, - [SMALL_STATE(2859)] = 105044, - [SMALL_STATE(2860)] = 105058, - [SMALL_STATE(2861)] = 105072, - [SMALL_STATE(2862)] = 105086, - [SMALL_STATE(2863)] = 105100, - [SMALL_STATE(2864)] = 105114, - [SMALL_STATE(2865)] = 105128, - [SMALL_STATE(2866)] = 105142, - [SMALL_STATE(2867)] = 105156, - [SMALL_STATE(2868)] = 105170, - [SMALL_STATE(2869)] = 105182, - [SMALL_STATE(2870)] = 105194, - [SMALL_STATE(2871)] = 105208, - [SMALL_STATE(2872)] = 105220, - [SMALL_STATE(2873)] = 105234, - [SMALL_STATE(2874)] = 105248, - [SMALL_STATE(2875)] = 105262, - [SMALL_STATE(2876)] = 105276, - [SMALL_STATE(2877)] = 105290, - [SMALL_STATE(2878)] = 105304, - [SMALL_STATE(2879)] = 105318, - [SMALL_STATE(2880)] = 105332, - [SMALL_STATE(2881)] = 105344, - [SMALL_STATE(2882)] = 105358, - [SMALL_STATE(2883)] = 105370, - [SMALL_STATE(2884)] = 105384, - [SMALL_STATE(2885)] = 105398, - [SMALL_STATE(2886)] = 105410, - [SMALL_STATE(2887)] = 105422, - [SMALL_STATE(2888)] = 105436, - [SMALL_STATE(2889)] = 105450, - [SMALL_STATE(2890)] = 105464, - [SMALL_STATE(2891)] = 105478, - [SMALL_STATE(2892)] = 105488, - [SMALL_STATE(2893)] = 105502, - [SMALL_STATE(2894)] = 105516, - [SMALL_STATE(2895)] = 105530, - [SMALL_STATE(2896)] = 105544, - [SMALL_STATE(2897)] = 105558, - [SMALL_STATE(2898)] = 105572, - [SMALL_STATE(2899)] = 105586, - [SMALL_STATE(2900)] = 105598, - [SMALL_STATE(2901)] = 105610, - [SMALL_STATE(2902)] = 105624, - [SMALL_STATE(2903)] = 105638, - [SMALL_STATE(2904)] = 105652, - [SMALL_STATE(2905)] = 105666, - [SMALL_STATE(2906)] = 105680, - [SMALL_STATE(2907)] = 105694, - [SMALL_STATE(2908)] = 105708, - [SMALL_STATE(2909)] = 105720, - [SMALL_STATE(2910)] = 105732, - [SMALL_STATE(2911)] = 105746, - [SMALL_STATE(2912)] = 105756, - [SMALL_STATE(2913)] = 105770, - [SMALL_STATE(2914)] = 105782, - [SMALL_STATE(2915)] = 105796, - [SMALL_STATE(2916)] = 105810, - [SMALL_STATE(2917)] = 105824, - [SMALL_STATE(2918)] = 105836, - [SMALL_STATE(2919)] = 105850, - [SMALL_STATE(2920)] = 105864, - [SMALL_STATE(2921)] = 105876, - [SMALL_STATE(2922)] = 105888, - [SMALL_STATE(2923)] = 105902, - [SMALL_STATE(2924)] = 105916, - [SMALL_STATE(2925)] = 105930, - [SMALL_STATE(2926)] = 105942, - [SMALL_STATE(2927)] = 105954, - [SMALL_STATE(2928)] = 105968, - [SMALL_STATE(2929)] = 105980, - [SMALL_STATE(2930)] = 105994, - [SMALL_STATE(2931)] = 106008, - [SMALL_STATE(2932)] = 106022, - [SMALL_STATE(2933)] = 106036, - [SMALL_STATE(2934)] = 106050, - [SMALL_STATE(2935)] = 106062, - [SMALL_STATE(2936)] = 106076, - [SMALL_STATE(2937)] = 106088, - [SMALL_STATE(2938)] = 106100, - [SMALL_STATE(2939)] = 106112, - [SMALL_STATE(2940)] = 106124, - [SMALL_STATE(2941)] = 106136, - [SMALL_STATE(2942)] = 106148, - [SMALL_STATE(2943)] = 106160, - [SMALL_STATE(2944)] = 106172, - [SMALL_STATE(2945)] = 106184, - [SMALL_STATE(2946)] = 106196, - [SMALL_STATE(2947)] = 106206, - [SMALL_STATE(2948)] = 106220, - [SMALL_STATE(2949)] = 106234, - [SMALL_STATE(2950)] = 106248, - [SMALL_STATE(2951)] = 106262, - [SMALL_STATE(2952)] = 106276, - [SMALL_STATE(2953)] = 106288, - [SMALL_STATE(2954)] = 106300, - [SMALL_STATE(2955)] = 106314, - [SMALL_STATE(2956)] = 106328, - [SMALL_STATE(2957)] = 106342, - [SMALL_STATE(2958)] = 106356, - [SMALL_STATE(2959)] = 106370, - [SMALL_STATE(2960)] = 106380, - [SMALL_STATE(2961)] = 106390, - [SMALL_STATE(2962)] = 106400, - [SMALL_STATE(2963)] = 106414, - [SMALL_STATE(2964)] = 106428, - [SMALL_STATE(2965)] = 106440, - [SMALL_STATE(2966)] = 106454, - [SMALL_STATE(2967)] = 106466, - [SMALL_STATE(2968)] = 106478, - [SMALL_STATE(2969)] = 106492, - [SMALL_STATE(2970)] = 106506, - [SMALL_STATE(2971)] = 106520, - [SMALL_STATE(2972)] = 106532, - [SMALL_STATE(2973)] = 106546, - [SMALL_STATE(2974)] = 106558, - [SMALL_STATE(2975)] = 106572, - [SMALL_STATE(2976)] = 106586, - [SMALL_STATE(2977)] = 106598, - [SMALL_STATE(2978)] = 106610, - [SMALL_STATE(2979)] = 106624, - [SMALL_STATE(2980)] = 106638, - [SMALL_STATE(2981)] = 106652, - [SMALL_STATE(2982)] = 106664, - [SMALL_STATE(2983)] = 106678, - [SMALL_STATE(2984)] = 106692, - [SMALL_STATE(2985)] = 106704, - [SMALL_STATE(2986)] = 106716, - [SMALL_STATE(2987)] = 106730, - [SMALL_STATE(2988)] = 106744, - [SMALL_STATE(2989)] = 106756, - [SMALL_STATE(2990)] = 106770, - [SMALL_STATE(2991)] = 106780, - [SMALL_STATE(2992)] = 106792, - [SMALL_STATE(2993)] = 106804, - [SMALL_STATE(2994)] = 106818, - [SMALL_STATE(2995)] = 106830, - [SMALL_STATE(2996)] = 106842, - [SMALL_STATE(2997)] = 106854, - [SMALL_STATE(2998)] = 106868, - [SMALL_STATE(2999)] = 106880, - [SMALL_STATE(3000)] = 106892, - [SMALL_STATE(3001)] = 106904, - [SMALL_STATE(3002)] = 106918, - [SMALL_STATE(3003)] = 106930, - [SMALL_STATE(3004)] = 106942, - [SMALL_STATE(3005)] = 106952, - [SMALL_STATE(3006)] = 106964, - [SMALL_STATE(3007)] = 106978, - [SMALL_STATE(3008)] = 106992, - [SMALL_STATE(3009)] = 107002, - [SMALL_STATE(3010)] = 107012, - [SMALL_STATE(3011)] = 107026, - [SMALL_STATE(3012)] = 107040, - [SMALL_STATE(3013)] = 107052, - [SMALL_STATE(3014)] = 107066, - [SMALL_STATE(3015)] = 107080, - [SMALL_STATE(3016)] = 107094, - [SMALL_STATE(3017)] = 107106, - [SMALL_STATE(3018)] = 107120, - [SMALL_STATE(3019)] = 107134, - [SMALL_STATE(3020)] = 107148, - [SMALL_STATE(3021)] = 107160, - [SMALL_STATE(3022)] = 107172, - [SMALL_STATE(3023)] = 107184, - [SMALL_STATE(3024)] = 107196, - [SMALL_STATE(3025)] = 107208, - [SMALL_STATE(3026)] = 107222, - [SMALL_STATE(3027)] = 107236, - [SMALL_STATE(3028)] = 107248, - [SMALL_STATE(3029)] = 107260, - [SMALL_STATE(3030)] = 107274, - [SMALL_STATE(3031)] = 107286, - [SMALL_STATE(3032)] = 107298, - [SMALL_STATE(3033)] = 107308, - [SMALL_STATE(3034)] = 107322, - [SMALL_STATE(3035)] = 107336, - [SMALL_STATE(3036)] = 107348, - [SMALL_STATE(3037)] = 107362, - [SMALL_STATE(3038)] = 107374, - [SMALL_STATE(3039)] = 107386, - [SMALL_STATE(3040)] = 107398, - [SMALL_STATE(3041)] = 107412, - [SMALL_STATE(3042)] = 107424, - [SMALL_STATE(3043)] = 107436, - [SMALL_STATE(3044)] = 107448, - [SMALL_STATE(3045)] = 107462, - [SMALL_STATE(3046)] = 107474, - [SMALL_STATE(3047)] = 107486, - [SMALL_STATE(3048)] = 107500, - [SMALL_STATE(3049)] = 107514, - [SMALL_STATE(3050)] = 107528, - [SMALL_STATE(3051)] = 107542, - [SMALL_STATE(3052)] = 107556, - [SMALL_STATE(3053)] = 107570, - [SMALL_STATE(3054)] = 107582, - [SMALL_STATE(3055)] = 107596, - [SMALL_STATE(3056)] = 107610, - [SMALL_STATE(3057)] = 107624, - [SMALL_STATE(3058)] = 107638, - [SMALL_STATE(3059)] = 107650, - [SMALL_STATE(3060)] = 107662, - [SMALL_STATE(3061)] = 107674, - [SMALL_STATE(3062)] = 107688, - [SMALL_STATE(3063)] = 107702, - [SMALL_STATE(3064)] = 107714, - [SMALL_STATE(3065)] = 107728, - [SMALL_STATE(3066)] = 107740, - [SMALL_STATE(3067)] = 107752, - [SMALL_STATE(3068)] = 107764, - [SMALL_STATE(3069)] = 107776, - [SMALL_STATE(3070)] = 107788, - [SMALL_STATE(3071)] = 107800, - [SMALL_STATE(3072)] = 107812, - [SMALL_STATE(3073)] = 107826, - [SMALL_STATE(3074)] = 107838, - [SMALL_STATE(3075)] = 107850, - [SMALL_STATE(3076)] = 107864, - [SMALL_STATE(3077)] = 107878, - [SMALL_STATE(3078)] = 107890, - [SMALL_STATE(3079)] = 107904, - [SMALL_STATE(3080)] = 107918, - [SMALL_STATE(3081)] = 107932, - [SMALL_STATE(3082)] = 107944, - [SMALL_STATE(3083)] = 107958, - [SMALL_STATE(3084)] = 107972, - [SMALL_STATE(3085)] = 107984, - [SMALL_STATE(3086)] = 107998, - [SMALL_STATE(3087)] = 108008, - [SMALL_STATE(3088)] = 108022, - [SMALL_STATE(3089)] = 108034, - [SMALL_STATE(3090)] = 108048, - [SMALL_STATE(3091)] = 108060, - [SMALL_STATE(3092)] = 108074, - [SMALL_STATE(3093)] = 108086, - [SMALL_STATE(3094)] = 108100, - [SMALL_STATE(3095)] = 108112, - [SMALL_STATE(3096)] = 108126, - [SMALL_STATE(3097)] = 108140, - [SMALL_STATE(3098)] = 108154, - [SMALL_STATE(3099)] = 108168, - [SMALL_STATE(3100)] = 108182, - [SMALL_STATE(3101)] = 108196, - [SMALL_STATE(3102)] = 108210, - [SMALL_STATE(3103)] = 108224, - [SMALL_STATE(3104)] = 108238, - [SMALL_STATE(3105)] = 108252, - [SMALL_STATE(3106)] = 108266, - [SMALL_STATE(3107)] = 108280, - [SMALL_STATE(3108)] = 108292, - [SMALL_STATE(3109)] = 108303, - [SMALL_STATE(3110)] = 108314, - [SMALL_STATE(3111)] = 108325, - [SMALL_STATE(3112)] = 108336, - [SMALL_STATE(3113)] = 108347, - [SMALL_STATE(3114)] = 108358, - [SMALL_STATE(3115)] = 108369, - [SMALL_STATE(3116)] = 108380, - [SMALL_STATE(3117)] = 108391, - [SMALL_STATE(3118)] = 108402, - [SMALL_STATE(3119)] = 108413, - [SMALL_STATE(3120)] = 108424, - [SMALL_STATE(3121)] = 108435, - [SMALL_STATE(3122)] = 108446, - [SMALL_STATE(3123)] = 108457, - [SMALL_STATE(3124)] = 108468, - [SMALL_STATE(3125)] = 108479, - [SMALL_STATE(3126)] = 108490, - [SMALL_STATE(3127)] = 108501, - [SMALL_STATE(3128)] = 108512, - [SMALL_STATE(3129)] = 108523, - [SMALL_STATE(3130)] = 108534, - [SMALL_STATE(3131)] = 108545, - [SMALL_STATE(3132)] = 108556, - [SMALL_STATE(3133)] = 108567, - [SMALL_STATE(3134)] = 108578, - [SMALL_STATE(3135)] = 108589, - [SMALL_STATE(3136)] = 108600, - [SMALL_STATE(3137)] = 108611, - [SMALL_STATE(3138)] = 108622, - [SMALL_STATE(3139)] = 108633, - [SMALL_STATE(3140)] = 108644, - [SMALL_STATE(3141)] = 108655, - [SMALL_STATE(3142)] = 108666, - [SMALL_STATE(3143)] = 108677, - [SMALL_STATE(3144)] = 108688, - [SMALL_STATE(3145)] = 108699, - [SMALL_STATE(3146)] = 108710, - [SMALL_STATE(3147)] = 108721, - [SMALL_STATE(3148)] = 108732, - [SMALL_STATE(3149)] = 108741, - [SMALL_STATE(3150)] = 108752, - [SMALL_STATE(3151)] = 108763, - [SMALL_STATE(3152)] = 108774, - [SMALL_STATE(3153)] = 108783, - [SMALL_STATE(3154)] = 108794, - [SMALL_STATE(3155)] = 108805, - [SMALL_STATE(3156)] = 108816, - [SMALL_STATE(3157)] = 108827, - [SMALL_STATE(3158)] = 108838, - [SMALL_STATE(3159)] = 108849, - [SMALL_STATE(3160)] = 108860, - [SMALL_STATE(3161)] = 108871, - [SMALL_STATE(3162)] = 108882, - [SMALL_STATE(3163)] = 108893, - [SMALL_STATE(3164)] = 108904, - [SMALL_STATE(3165)] = 108915, - [SMALL_STATE(3166)] = 108926, - [SMALL_STATE(3167)] = 108937, - [SMALL_STATE(3168)] = 108948, - [SMALL_STATE(3169)] = 108959, - [SMALL_STATE(3170)] = 108970, - [SMALL_STATE(3171)] = 108981, - [SMALL_STATE(3172)] = 108992, - [SMALL_STATE(3173)] = 109003, - [SMALL_STATE(3174)] = 109012, - [SMALL_STATE(3175)] = 109023, - [SMALL_STATE(3176)] = 109034, - [SMALL_STATE(3177)] = 109045, - [SMALL_STATE(3178)] = 109056, - [SMALL_STATE(3179)] = 109067, - [SMALL_STATE(3180)] = 109078, - [SMALL_STATE(3181)] = 109089, - [SMALL_STATE(3182)] = 109100, - [SMALL_STATE(3183)] = 109111, - [SMALL_STATE(3184)] = 109122, - [SMALL_STATE(3185)] = 109131, - [SMALL_STATE(3186)] = 109142, - [SMALL_STATE(3187)] = 109153, - [SMALL_STATE(3188)] = 109164, - [SMALL_STATE(3189)] = 109175, - [SMALL_STATE(3190)] = 109186, - [SMALL_STATE(3191)] = 109197, - [SMALL_STATE(3192)] = 109208, - [SMALL_STATE(3193)] = 109219, - [SMALL_STATE(3194)] = 109230, - [SMALL_STATE(3195)] = 109241, - [SMALL_STATE(3196)] = 109252, - [SMALL_STATE(3197)] = 109263, - [SMALL_STATE(3198)] = 109274, - [SMALL_STATE(3199)] = 109285, - [SMALL_STATE(3200)] = 109296, - [SMALL_STATE(3201)] = 109307, - [SMALL_STATE(3202)] = 109318, - [SMALL_STATE(3203)] = 109329, - [SMALL_STATE(3204)] = 109340, - [SMALL_STATE(3205)] = 109351, - [SMALL_STATE(3206)] = 109362, - [SMALL_STATE(3207)] = 109373, - [SMALL_STATE(3208)] = 109384, - [SMALL_STATE(3209)] = 109393, - [SMALL_STATE(3210)] = 109404, - [SMALL_STATE(3211)] = 109415, - [SMALL_STATE(3212)] = 109426, - [SMALL_STATE(3213)] = 109437, - [SMALL_STATE(3214)] = 109448, - [SMALL_STATE(3215)] = 109459, - [SMALL_STATE(3216)] = 109470, - [SMALL_STATE(3217)] = 109481, - [SMALL_STATE(3218)] = 109492, - [SMALL_STATE(3219)] = 109503, - [SMALL_STATE(3220)] = 109514, - [SMALL_STATE(3221)] = 109525, - [SMALL_STATE(3222)] = 109534, - [SMALL_STATE(3223)] = 109545, - [SMALL_STATE(3224)] = 109556, - [SMALL_STATE(3225)] = 109567, - [SMALL_STATE(3226)] = 109578, - [SMALL_STATE(3227)] = 109589, - [SMALL_STATE(3228)] = 109600, - [SMALL_STATE(3229)] = 109611, - [SMALL_STATE(3230)] = 109622, - [SMALL_STATE(3231)] = 109633, - [SMALL_STATE(3232)] = 109644, - [SMALL_STATE(3233)] = 109655, - [SMALL_STATE(3234)] = 109666, - [SMALL_STATE(3235)] = 109677, - [SMALL_STATE(3236)] = 109688, - [SMALL_STATE(3237)] = 109699, - [SMALL_STATE(3238)] = 109710, - [SMALL_STATE(3239)] = 109721, - [SMALL_STATE(3240)] = 109732, - [SMALL_STATE(3241)] = 109743, - [SMALL_STATE(3242)] = 109754, - [SMALL_STATE(3243)] = 109765, - [SMALL_STATE(3244)] = 109776, - [SMALL_STATE(3245)] = 109787, - [SMALL_STATE(3246)] = 109798, - [SMALL_STATE(3247)] = 109809, - [SMALL_STATE(3248)] = 109820, - [SMALL_STATE(3249)] = 109831, - [SMALL_STATE(3250)] = 109842, - [SMALL_STATE(3251)] = 109853, - [SMALL_STATE(3252)] = 109864, - [SMALL_STATE(3253)] = 109875, - [SMALL_STATE(3254)] = 109884, - [SMALL_STATE(3255)] = 109895, - [SMALL_STATE(3256)] = 109906, - [SMALL_STATE(3257)] = 109917, - [SMALL_STATE(3258)] = 109928, - [SMALL_STATE(3259)] = 109939, - [SMALL_STATE(3260)] = 109950, - [SMALL_STATE(3261)] = 109961, - [SMALL_STATE(3262)] = 109972, - [SMALL_STATE(3263)] = 109983, - [SMALL_STATE(3264)] = 109994, - [SMALL_STATE(3265)] = 110005, - [SMALL_STATE(3266)] = 110016, - [SMALL_STATE(3267)] = 110027, - [SMALL_STATE(3268)] = 110036, - [SMALL_STATE(3269)] = 110047, - [SMALL_STATE(3270)] = 110058, - [SMALL_STATE(3271)] = 110069, - [SMALL_STATE(3272)] = 110078, - [SMALL_STATE(3273)] = 110089, - [SMALL_STATE(3274)] = 110098, - [SMALL_STATE(3275)] = 110107, - [SMALL_STATE(3276)] = 110118, - [SMALL_STATE(3277)] = 110129, - [SMALL_STATE(3278)] = 110140, - [SMALL_STATE(3279)] = 110151, - [SMALL_STATE(3280)] = 110162, - [SMALL_STATE(3281)] = 110173, - [SMALL_STATE(3282)] = 110184, - [SMALL_STATE(3283)] = 110195, - [SMALL_STATE(3284)] = 110206, - [SMALL_STATE(3285)] = 110217, - [SMALL_STATE(3286)] = 110226, - [SMALL_STATE(3287)] = 110237, - [SMALL_STATE(3288)] = 110248, - [SMALL_STATE(3289)] = 110259, - [SMALL_STATE(3290)] = 110270, - [SMALL_STATE(3291)] = 110281, - [SMALL_STATE(3292)] = 110292, - [SMALL_STATE(3293)] = 110303, - [SMALL_STATE(3294)] = 110314, - [SMALL_STATE(3295)] = 110325, - [SMALL_STATE(3296)] = 110336, - [SMALL_STATE(3297)] = 110347, - [SMALL_STATE(3298)] = 110358, - [SMALL_STATE(3299)] = 110369, - [SMALL_STATE(3300)] = 110380, - [SMALL_STATE(3301)] = 110391, - [SMALL_STATE(3302)] = 110402, - [SMALL_STATE(3303)] = 110413, - [SMALL_STATE(3304)] = 110424, - [SMALL_STATE(3305)] = 110435, - [SMALL_STATE(3306)] = 110446, - [SMALL_STATE(3307)] = 110457, - [SMALL_STATE(3308)] = 110468, - [SMALL_STATE(3309)] = 110479, - [SMALL_STATE(3310)] = 110490, - [SMALL_STATE(3311)] = 110501, - [SMALL_STATE(3312)] = 110512, - [SMALL_STATE(3313)] = 110523, - [SMALL_STATE(3314)] = 110534, - [SMALL_STATE(3315)] = 110542, - [SMALL_STATE(3316)] = 110550, - [SMALL_STATE(3317)] = 110558, - [SMALL_STATE(3318)] = 110566, - [SMALL_STATE(3319)] = 110574, - [SMALL_STATE(3320)] = 110582, - [SMALL_STATE(3321)] = 110590, - [SMALL_STATE(3322)] = 110598, - [SMALL_STATE(3323)] = 110606, - [SMALL_STATE(3324)] = 110614, - [SMALL_STATE(3325)] = 110622, - [SMALL_STATE(3326)] = 110630, - [SMALL_STATE(3327)] = 110638, - [SMALL_STATE(3328)] = 110646, - [SMALL_STATE(3329)] = 110654, - [SMALL_STATE(3330)] = 110662, - [SMALL_STATE(3331)] = 110670, - [SMALL_STATE(3332)] = 110678, - [SMALL_STATE(3333)] = 110686, - [SMALL_STATE(3334)] = 110694, - [SMALL_STATE(3335)] = 110702, - [SMALL_STATE(3336)] = 110710, - [SMALL_STATE(3337)] = 110718, - [SMALL_STATE(3338)] = 110726, - [SMALL_STATE(3339)] = 110734, - [SMALL_STATE(3340)] = 110742, - [SMALL_STATE(3341)] = 110750, - [SMALL_STATE(3342)] = 110758, - [SMALL_STATE(3343)] = 110766, - [SMALL_STATE(3344)] = 110774, - [SMALL_STATE(3345)] = 110782, - [SMALL_STATE(3346)] = 110790, - [SMALL_STATE(3347)] = 110798, - [SMALL_STATE(3348)] = 110806, - [SMALL_STATE(3349)] = 110814, - [SMALL_STATE(3350)] = 110822, - [SMALL_STATE(3351)] = 110830, - [SMALL_STATE(3352)] = 110838, - [SMALL_STATE(3353)] = 110846, - [SMALL_STATE(3354)] = 110854, - [SMALL_STATE(3355)] = 110862, - [SMALL_STATE(3356)] = 110870, - [SMALL_STATE(3357)] = 110878, - [SMALL_STATE(3358)] = 110886, - [SMALL_STATE(3359)] = 110894, - [SMALL_STATE(3360)] = 110902, - [SMALL_STATE(3361)] = 110910, - [SMALL_STATE(3362)] = 110918, - [SMALL_STATE(3363)] = 110926, - [SMALL_STATE(3364)] = 110934, - [SMALL_STATE(3365)] = 110942, - [SMALL_STATE(3366)] = 110950, - [SMALL_STATE(3367)] = 110958, - [SMALL_STATE(3368)] = 110966, - [SMALL_STATE(3369)] = 110974, - [SMALL_STATE(3370)] = 110982, - [SMALL_STATE(3371)] = 110990, - [SMALL_STATE(3372)] = 110998, - [SMALL_STATE(3373)] = 111006, - [SMALL_STATE(3374)] = 111014, - [SMALL_STATE(3375)] = 111022, - [SMALL_STATE(3376)] = 111030, - [SMALL_STATE(3377)] = 111038, - [SMALL_STATE(3378)] = 111046, - [SMALL_STATE(3379)] = 111054, - [SMALL_STATE(3380)] = 111062, - [SMALL_STATE(3381)] = 111070, - [SMALL_STATE(3382)] = 111078, - [SMALL_STATE(3383)] = 111086, - [SMALL_STATE(3384)] = 111094, - [SMALL_STATE(3385)] = 111102, - [SMALL_STATE(3386)] = 111110, - [SMALL_STATE(3387)] = 111118, - [SMALL_STATE(3388)] = 111126, - [SMALL_STATE(3389)] = 111134, - [SMALL_STATE(3390)] = 111142, - [SMALL_STATE(3391)] = 111150, - [SMALL_STATE(3392)] = 111158, - [SMALL_STATE(3393)] = 111166, - [SMALL_STATE(3394)] = 111174, - [SMALL_STATE(3395)] = 111182, - [SMALL_STATE(3396)] = 111190, - [SMALL_STATE(3397)] = 111198, - [SMALL_STATE(3398)] = 111206, - [SMALL_STATE(3399)] = 111214, - [SMALL_STATE(3400)] = 111222, - [SMALL_STATE(3401)] = 111230, - [SMALL_STATE(3402)] = 111238, - [SMALL_STATE(3403)] = 111246, - [SMALL_STATE(3404)] = 111254, - [SMALL_STATE(3405)] = 111262, - [SMALL_STATE(3406)] = 111270, - [SMALL_STATE(3407)] = 111278, - [SMALL_STATE(3408)] = 111286, - [SMALL_STATE(3409)] = 111294, - [SMALL_STATE(3410)] = 111302, - [SMALL_STATE(3411)] = 111310, - [SMALL_STATE(3412)] = 111318, - [SMALL_STATE(3413)] = 111326, - [SMALL_STATE(3414)] = 111334, - [SMALL_STATE(3415)] = 111342, - [SMALL_STATE(3416)] = 111350, - [SMALL_STATE(3417)] = 111358, - [SMALL_STATE(3418)] = 111366, - [SMALL_STATE(3419)] = 111374, - [SMALL_STATE(3420)] = 111382, - [SMALL_STATE(3421)] = 111390, - [SMALL_STATE(3422)] = 111398, - [SMALL_STATE(3423)] = 111406, - [SMALL_STATE(3424)] = 111414, - [SMALL_STATE(3425)] = 111422, - [SMALL_STATE(3426)] = 111430, - [SMALL_STATE(3427)] = 111438, - [SMALL_STATE(3428)] = 111446, - [SMALL_STATE(3429)] = 111454, - [SMALL_STATE(3430)] = 111462, - [SMALL_STATE(3431)] = 111470, - [SMALL_STATE(3432)] = 111478, - [SMALL_STATE(3433)] = 111486, - [SMALL_STATE(3434)] = 111494, - [SMALL_STATE(3435)] = 111502, - [SMALL_STATE(3436)] = 111510, - [SMALL_STATE(3437)] = 111518, - [SMALL_STATE(3438)] = 111526, - [SMALL_STATE(3439)] = 111534, - [SMALL_STATE(3440)] = 111542, - [SMALL_STATE(3441)] = 111550, - [SMALL_STATE(3442)] = 111558, - [SMALL_STATE(3443)] = 111566, - [SMALL_STATE(3444)] = 111574, - [SMALL_STATE(3445)] = 111582, - [SMALL_STATE(3446)] = 111590, - [SMALL_STATE(3447)] = 111598, - [SMALL_STATE(3448)] = 111606, - [SMALL_STATE(3449)] = 111614, - [SMALL_STATE(3450)] = 111622, - [SMALL_STATE(3451)] = 111630, - [SMALL_STATE(3452)] = 111638, - [SMALL_STATE(3453)] = 111646, - [SMALL_STATE(3454)] = 111654, - [SMALL_STATE(3455)] = 111662, - [SMALL_STATE(3456)] = 111670, - [SMALL_STATE(3457)] = 111678, - [SMALL_STATE(3458)] = 111686, - [SMALL_STATE(3459)] = 111694, - [SMALL_STATE(3460)] = 111702, - [SMALL_STATE(3461)] = 111710, - [SMALL_STATE(3462)] = 111718, - [SMALL_STATE(3463)] = 111726, - [SMALL_STATE(3464)] = 111734, - [SMALL_STATE(3465)] = 111742, - [SMALL_STATE(3466)] = 111750, - [SMALL_STATE(3467)] = 111758, - [SMALL_STATE(3468)] = 111766, - [SMALL_STATE(3469)] = 111774, - [SMALL_STATE(3470)] = 111782, - [SMALL_STATE(3471)] = 111790, - [SMALL_STATE(3472)] = 111798, - [SMALL_STATE(3473)] = 111806, - [SMALL_STATE(3474)] = 111814, - [SMALL_STATE(3475)] = 111822, - [SMALL_STATE(3476)] = 111830, - [SMALL_STATE(3477)] = 111838, - [SMALL_STATE(3478)] = 111846, - [SMALL_STATE(3479)] = 111854, - [SMALL_STATE(3480)] = 111862, - [SMALL_STATE(3481)] = 111870, - [SMALL_STATE(3482)] = 111878, - [SMALL_STATE(3483)] = 111886, - [SMALL_STATE(3484)] = 111894, - [SMALL_STATE(3485)] = 111902, - [SMALL_STATE(3486)] = 111910, - [SMALL_STATE(3487)] = 111918, - [SMALL_STATE(3488)] = 111926, - [SMALL_STATE(3489)] = 111934, - [SMALL_STATE(3490)] = 111942, - [SMALL_STATE(3491)] = 111950, - [SMALL_STATE(3492)] = 111958, - [SMALL_STATE(3493)] = 111966, - [SMALL_STATE(3494)] = 111974, - [SMALL_STATE(3495)] = 111982, - [SMALL_STATE(3496)] = 111990, - [SMALL_STATE(3497)] = 111998, - [SMALL_STATE(3498)] = 112006, - [SMALL_STATE(3499)] = 112014, - [SMALL_STATE(3500)] = 112022, - [SMALL_STATE(3501)] = 112030, - [SMALL_STATE(3502)] = 112038, - [SMALL_STATE(3503)] = 112046, - [SMALL_STATE(3504)] = 112054, - [SMALL_STATE(3505)] = 112062, - [SMALL_STATE(3506)] = 112070, - [SMALL_STATE(3507)] = 112078, - [SMALL_STATE(3508)] = 112086, - [SMALL_STATE(3509)] = 112094, - [SMALL_STATE(3510)] = 112102, - [SMALL_STATE(3511)] = 112110, - [SMALL_STATE(3512)] = 112118, - [SMALL_STATE(3513)] = 112126, - [SMALL_STATE(3514)] = 112134, - [SMALL_STATE(3515)] = 112142, - [SMALL_STATE(3516)] = 112150, - [SMALL_STATE(3517)] = 112158, - [SMALL_STATE(3518)] = 112166, - [SMALL_STATE(3519)] = 112174, - [SMALL_STATE(3520)] = 112182, - [SMALL_STATE(3521)] = 112190, - [SMALL_STATE(3522)] = 112198, - [SMALL_STATE(3523)] = 112206, - [SMALL_STATE(3524)] = 112214, - [SMALL_STATE(3525)] = 112222, - [SMALL_STATE(3526)] = 112230, - [SMALL_STATE(3527)] = 112238, - [SMALL_STATE(3528)] = 112246, - [SMALL_STATE(3529)] = 112254, - [SMALL_STATE(3530)] = 112262, - [SMALL_STATE(3531)] = 112270, - [SMALL_STATE(3532)] = 112278, - [SMALL_STATE(3533)] = 112286, - [SMALL_STATE(3534)] = 112294, - [SMALL_STATE(3535)] = 112302, - [SMALL_STATE(3536)] = 112310, - [SMALL_STATE(3537)] = 112318, - [SMALL_STATE(3538)] = 112326, - [SMALL_STATE(3539)] = 112334, - [SMALL_STATE(3540)] = 112342, - [SMALL_STATE(3541)] = 112350, - [SMALL_STATE(3542)] = 112358, - [SMALL_STATE(3543)] = 112366, - [SMALL_STATE(3544)] = 112374, - [SMALL_STATE(3545)] = 112382, - [SMALL_STATE(3546)] = 112390, - [SMALL_STATE(3547)] = 112398, - [SMALL_STATE(3548)] = 112406, - [SMALL_STATE(3549)] = 112414, - [SMALL_STATE(3550)] = 112422, - [SMALL_STATE(3551)] = 112430, - [SMALL_STATE(3552)] = 112438, - [SMALL_STATE(3553)] = 112446, - [SMALL_STATE(3554)] = 112454, - [SMALL_STATE(3555)] = 112462, - [SMALL_STATE(3556)] = 112470, - [SMALL_STATE(3557)] = 112478, - [SMALL_STATE(3558)] = 112486, - [SMALL_STATE(3559)] = 112494, - [SMALL_STATE(3560)] = 112502, - [SMALL_STATE(3561)] = 112510, - [SMALL_STATE(3562)] = 112518, - [SMALL_STATE(3563)] = 112526, - [SMALL_STATE(3564)] = 112534, - [SMALL_STATE(3565)] = 112542, - [SMALL_STATE(3566)] = 112550, - [SMALL_STATE(3567)] = 112558, - [SMALL_STATE(3568)] = 112566, - [SMALL_STATE(3569)] = 112574, - [SMALL_STATE(3570)] = 112582, - [SMALL_STATE(3571)] = 112590, - [SMALL_STATE(3572)] = 112598, - [SMALL_STATE(3573)] = 112606, - [SMALL_STATE(3574)] = 112614, - [SMALL_STATE(3575)] = 112622, - [SMALL_STATE(3576)] = 112630, - [SMALL_STATE(3577)] = 112638, - [SMALL_STATE(3578)] = 112646, - [SMALL_STATE(3579)] = 112654, - [SMALL_STATE(3580)] = 112662, - [SMALL_STATE(3581)] = 112670, - [SMALL_STATE(3582)] = 112678, - [SMALL_STATE(3583)] = 112686, - [SMALL_STATE(3584)] = 112694, - [SMALL_STATE(3585)] = 112702, - [SMALL_STATE(3586)] = 112710, - [SMALL_STATE(3587)] = 112718, - [SMALL_STATE(3588)] = 112726, - [SMALL_STATE(3589)] = 112734, - [SMALL_STATE(3590)] = 112742, - [SMALL_STATE(3591)] = 112750, - [SMALL_STATE(3592)] = 112758, - [SMALL_STATE(3593)] = 112766, - [SMALL_STATE(3594)] = 112774, - [SMALL_STATE(3595)] = 112782, - [SMALL_STATE(3596)] = 112790, - [SMALL_STATE(3597)] = 112798, - [SMALL_STATE(3598)] = 112806, - [SMALL_STATE(3599)] = 112814, - [SMALL_STATE(3600)] = 112822, - [SMALL_STATE(3601)] = 112830, - [SMALL_STATE(3602)] = 112838, - [SMALL_STATE(3603)] = 112846, - [SMALL_STATE(3604)] = 112854, - [SMALL_STATE(3605)] = 112862, - [SMALL_STATE(3606)] = 112870, - [SMALL_STATE(3607)] = 112878, - [SMALL_STATE(3608)] = 112886, - [SMALL_STATE(3609)] = 112894, - [SMALL_STATE(3610)] = 112902, - [SMALL_STATE(3611)] = 112910, - [SMALL_STATE(3612)] = 112918, - [SMALL_STATE(3613)] = 112926, - [SMALL_STATE(3614)] = 112934, - [SMALL_STATE(3615)] = 112942, - [SMALL_STATE(3616)] = 112950, - [SMALL_STATE(3617)] = 112958, - [SMALL_STATE(3618)] = 112966, - [SMALL_STATE(3619)] = 112974, - [SMALL_STATE(3620)] = 112982, - [SMALL_STATE(3621)] = 112990, - [SMALL_STATE(3622)] = 112998, - [SMALL_STATE(3623)] = 113006, - [SMALL_STATE(3624)] = 113014, - [SMALL_STATE(3625)] = 113022, - [SMALL_STATE(3626)] = 113030, - [SMALL_STATE(3627)] = 113038, - [SMALL_STATE(3628)] = 113046, - [SMALL_STATE(3629)] = 113054, - [SMALL_STATE(3630)] = 113062, - [SMALL_STATE(3631)] = 113070, - [SMALL_STATE(3632)] = 113078, - [SMALL_STATE(3633)] = 113086, - [SMALL_STATE(3634)] = 113094, - [SMALL_STATE(3635)] = 113102, - [SMALL_STATE(3636)] = 113110, - [SMALL_STATE(3637)] = 113118, - [SMALL_STATE(3638)] = 113126, - [SMALL_STATE(3639)] = 113134, - [SMALL_STATE(3640)] = 113142, - [SMALL_STATE(3641)] = 113150, - [SMALL_STATE(3642)] = 113158, - [SMALL_STATE(3643)] = 113166, - [SMALL_STATE(3644)] = 113174, - [SMALL_STATE(3645)] = 113182, - [SMALL_STATE(3646)] = 113190, - [SMALL_STATE(3647)] = 113198, - [SMALL_STATE(3648)] = 113206, - [SMALL_STATE(3649)] = 113214, - [SMALL_STATE(3650)] = 113222, - [SMALL_STATE(3651)] = 113230, - [SMALL_STATE(3652)] = 113238, - [SMALL_STATE(3653)] = 113246, - [SMALL_STATE(3654)] = 113254, - [SMALL_STATE(3655)] = 113262, - [SMALL_STATE(3656)] = 113270, - [SMALL_STATE(3657)] = 113278, - [SMALL_STATE(3658)] = 113286, - [SMALL_STATE(3659)] = 113294, - [SMALL_STATE(3660)] = 113302, - [SMALL_STATE(3661)] = 113310, - [SMALL_STATE(3662)] = 113318, - [SMALL_STATE(3663)] = 113326, - [SMALL_STATE(3664)] = 113334, - [SMALL_STATE(3665)] = 113342, - [SMALL_STATE(3666)] = 113350, - [SMALL_STATE(3667)] = 113358, - [SMALL_STATE(3668)] = 113366, - [SMALL_STATE(3669)] = 113374, - [SMALL_STATE(3670)] = 113382, - [SMALL_STATE(3671)] = 113390, - [SMALL_STATE(3672)] = 113398, - [SMALL_STATE(3673)] = 113406, - [SMALL_STATE(3674)] = 113414, - [SMALL_STATE(3675)] = 113422, - [SMALL_STATE(3676)] = 113430, - [SMALL_STATE(3677)] = 113438, - [SMALL_STATE(3678)] = 113446, - [SMALL_STATE(3679)] = 113454, - [SMALL_STATE(3680)] = 113462, - [SMALL_STATE(3681)] = 113470, - [SMALL_STATE(3682)] = 113478, - [SMALL_STATE(3683)] = 113486, - [SMALL_STATE(3684)] = 113494, - [SMALL_STATE(3685)] = 113502, - [SMALL_STATE(3686)] = 113510, - [SMALL_STATE(3687)] = 113518, - [SMALL_STATE(3688)] = 113526, - [SMALL_STATE(3689)] = 113534, - [SMALL_STATE(3690)] = 113542, - [SMALL_STATE(3691)] = 113550, - [SMALL_STATE(3692)] = 113558, - [SMALL_STATE(3693)] = 113566, - [SMALL_STATE(3694)] = 113574, - [SMALL_STATE(3695)] = 113582, - [SMALL_STATE(3696)] = 113590, - [SMALL_STATE(3697)] = 113598, - [SMALL_STATE(3698)] = 113606, - [SMALL_STATE(3699)] = 113614, - [SMALL_STATE(3700)] = 113622, - [SMALL_STATE(3701)] = 113630, - [SMALL_STATE(3702)] = 113638, - [SMALL_STATE(3703)] = 113646, + [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[] = { @@ -184263,2983 +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(1476), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [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(3235), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1476), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3185), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2475), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2339), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2228), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2433), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(310), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(172), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2853), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(16), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1651), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3678), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3702), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1607), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1903), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3461), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(158), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3235), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2216), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2216), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(96), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3312), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3198), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(195), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2436), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(199), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(199), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2252), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(174), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2228), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2033), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2274), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1342), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2220), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2208), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2191), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2192), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2071), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2203), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1771), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1771), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1868), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1868), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2030), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2308), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2657), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1476), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3185), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2475), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2339), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2228), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2433), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(310), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(172), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2853), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(16), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1651), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3678), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3702), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1657), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2000), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3364), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(158), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3235), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2216), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2216), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(96), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3312), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3198), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(195), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2436), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(199), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(199), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2252), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(174), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2228), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2033), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2274), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1342), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2220), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2208), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2191), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2192), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2071), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2203), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1771), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1771), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1868), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1868), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2030), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2308), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2657), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3262), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2454), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2336), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2393), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(264), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2969), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(20), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3660), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1588), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1892), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3697), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(95), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3179), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3205), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(194), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2273), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1344), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2193), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2194), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2195), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2190), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2184), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2196), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3262), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2454), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2336), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2393), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(264), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2969), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(20), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3660), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1603), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1806), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3506), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(95), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3179), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3205), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(194), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2273), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1344), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2193), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2194), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2195), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2190), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2184), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2196), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3694), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(106), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3254), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3137), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3694), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(106), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3254), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3137), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3701), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(92), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3136), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3183), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3701), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(92), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3136), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3183), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3654), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(93), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3277), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3164), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2853), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3235), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2436), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2033), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2208), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2192), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3659), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(68), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3174), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3194), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3659), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(68), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3174), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3194), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3654), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(93), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3277), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3164), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2454), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(20), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3268), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2273), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2196), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3478), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(53), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3144), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3268), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3478), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(53), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3144), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3268), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3569), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(78), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3204), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3249), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3569), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(78), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3204), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3249), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 0), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 0), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 8), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 8), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 16), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 16), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(326), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2226), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(156), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3128), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(182), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(184), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(184), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(185), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(185), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(186), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2299), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2672), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 19), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 19), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 31), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 31), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 4, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 4, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(325), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3109), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(214), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3118), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(403), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3300), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3085), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2404), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2672), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 6, 0, 55), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 6, 0, 55), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 5, 0, 0), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 5, 0, 0), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rhs_expression, 1, 0, 0), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rhs_expression, 1, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs_expression, 1, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lhs_expression, 1, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 1), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 1), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 2), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 2), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 40), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 40), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 0), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 2, 0, 5), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 2, 0, 5), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 6), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 6), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 39), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 39), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 44), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 44), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 7), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 7), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 3, 0, 11), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 3, 0, 11), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 4, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 4, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 6, 0, 52), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 6, 0, 52), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 2, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 2, 0, 0), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 3, 0, 15), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 3, 0, 15), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_trace_expression, 4, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_trace_expression, 4, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 23), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 23), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 24), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 24), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 30), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 30), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 3, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 3, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_brace, 2, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_brace, 2, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3, 0, 10), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3, 0, 10), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 70), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 70), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 71), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 71), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 37), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 37), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 21), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 21), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 10), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 10), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 114), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 114), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 3), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 3), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 32), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 32), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 33), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 33), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 34), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 34), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 0), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 0), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 36), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 36), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 37), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 37), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 38), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 38), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 41), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 41), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 3), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 3), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 42), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 42), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 43), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 43), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 43), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 43), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 3), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 3), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 3), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 3), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 26), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 26), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 32), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 32), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 47), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 47), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 48), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 48), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 32), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 32), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 49), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 49), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 50), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 50), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 47), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 47), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 48), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 48), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 51), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 51), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 0), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 0), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 6, 0, 53), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 6, 0, 53), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 0), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 54), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 54), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 41), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 41), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 56), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 56), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 3), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 3), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 57), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 57), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 58), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 58), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 59), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 59), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 3), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 3), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 61), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 61), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 62), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 62), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 63), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 63), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 32), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 32), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 64), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 64), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 65), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 65), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 32), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 32), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 32), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 32), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 49), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 49), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 66), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 66), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 67), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 67), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 49), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 49), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 65), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 65), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 68), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 68), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 34), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 34), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 69), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 69), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 0), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 0), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 71), REDUCE(sym_catch_statement, 5, 0, 71), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 71), REDUCE(sym_catch_statement, 5, 0, 71), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 0), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 0), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 41), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 41), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 56), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 56), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 72), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 72), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 3), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 3), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 73), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 73), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 74), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 74), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 75), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 75), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 77), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 77), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 78), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 78), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 63), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 63), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 79), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 79), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 32), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 32), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 80), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 80), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 81), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 81), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 82), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 82), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 32), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 32), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 83), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 83), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 84), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 84), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 85), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 85), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 49), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 49), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 86), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 86), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 87), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 87), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 49), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 49), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 49), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 49), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 66), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 66), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 88), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 88), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 51), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 51), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 89), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 89), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 6, 0, 90), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, 0, 90), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 41), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 41), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 56), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 56), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 72), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 72), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 91), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 91), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 92), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 92), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 63), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 63), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 79), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 79), - [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 93), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 93), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 32), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 32), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 94), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 94), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 95), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 95), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 96), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 96), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 97), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 97), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 98), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 98), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 85), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 85), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 99), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 99), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 49), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 49), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 100), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 100), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 101), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 101), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 102), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 102), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 8, 0, 49), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 8, 0, 49), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 103), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 103), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 104), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 104), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 105), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 105), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 69), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 69), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 106), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 106), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, 0, 107), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, 0, 107), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 41), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 41), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 56), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 56), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 72), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 72), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 63), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 63), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 79), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 79), - [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 93), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 93), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 108), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 108), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 109), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 109), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 85), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 85), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 99), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 99), - [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 110), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 110), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 49), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 49), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 111), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 111), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 112), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 112), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 113), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 113), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 115), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 115), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 56), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 56), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 72), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 72), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 63), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 63), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 79), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 79), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 93), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 93), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 85), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 85), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 99), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 99), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 110), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 110), - [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 116), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 116), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 117), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 117), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 72), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 72), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 79), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 79), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 93), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 93), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 85), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 85), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 99), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 99), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 110), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 110), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 93), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 93), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 99), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 99), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 110), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 110), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 13, 0, 110), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 13, 0, 110), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 2, 0, 0), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 2, 0, 0), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 3, 0, 3), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 3, 0, 3), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3, 0, 0), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3, 0, 0), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 3), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 3), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 12), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 12), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 12), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 12), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 12), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 12), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 4, 0, 17), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 4, 0, 17), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 4, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 4, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 4, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 4, 0, 0), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 20), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 20), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 35), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 35), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 22), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 22), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 21), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 21), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 3), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 3), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 26), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 26), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 27), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 27), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 26), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 26), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 27), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 27), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 33), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 33), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), - [3450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3311), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(889), - [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3143), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(927), - [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3308), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(932), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), - [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2226), - [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(156), - [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(3143), - [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2404), - [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(182), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(184), - [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(184), - [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(185), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(185), - [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(186), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2299), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2672), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(938), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3119), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(984), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3113), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(986), - [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3135), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1051), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3130), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1001), - [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3306), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1002), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3131), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(997), - [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3116), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1004), - [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3276), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1000), - [3615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3123), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1006), - [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3235), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1449), - [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3251), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 3, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 3, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1, 0, 0), - [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(1664), - [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3294), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2061), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3125), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2217), - [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3133), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2313), - [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1370), - [4356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2226), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(156), - [4362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(3294), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2446), - [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(182), - [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(184), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(184), - [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(185), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(185), - [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(186), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2299), - [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2672), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [4400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2182), - [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3134), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2229), - [4483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3129), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2266), - [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3122), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2271), - [4531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3132), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 13), - [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 13), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 13), - [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 13), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 14), - [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 14), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2261), - [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3117), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 45), - [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 45), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 4, 0, 0), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 4, 0, 0), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 14), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 14), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [4606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2255), - [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3127), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 3, 0, 0), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 3, 0, 0), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 46), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 46), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 0), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2256), - [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3206), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [4689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2257), - [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2226), - [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(156), - [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3303), - [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2299), - [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2672), - [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(256), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 3, 0, 0), - [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 3, 0, 0), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 5, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 5, 0, 0), - [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(2269), - [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 18), SHIFT_REPEAT(3120), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binaryOperator, 1, 0, 0), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binaryOperator, 1, 0, 0), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [4867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 2, 0, 3), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 2, 0, 3), - [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2279), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 5, 0, 3), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 5, 0, 3), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 6, 0, 3), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 6, 0, 3), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [4950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), - [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2197), - [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 60), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 76), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 1, 0, 29), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 2, 0, 0), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_type, 2, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 2, 0, 0), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), - [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 1, 0, 0), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 1, 0, 0), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 3, 0, 0), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 3, 0, 0), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 3, 0, 0), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), - [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 2, 0, 29), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), - [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 4, 0, 0), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 4, 0, 0), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 1, 0, 0), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2487), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 25), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2588), - [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2588), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(250), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 25), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(3004), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), - [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), REDUCE(sym_structure_type_pair, 3, 0, 0), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(1646), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 2, 0, 0), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [5564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 28), - [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 28), SHIFT_REPEAT(2323), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 3, 0, 0), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 5, 0, 60), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 4, 0, 0), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 28), - [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 28), SHIFT_REPEAT(2351), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 4, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 29), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 4, 0, 0), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), - [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type_pair, 3, 0, 0), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), - [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), - [5760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 3, 0, 0), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 29), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 4, 0, 0), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3270), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 6, 0, 76), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 2, 0, 0), - [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(332), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_name, 1, 0, 0), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 3, 0, 25), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 3, 0, 25), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6153] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [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 {